22.55/10.20 YES 25.79/11.04 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 25.79/11.04 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 25.79/11.04 25.79/11.04 25.79/11.04 H-Termination with start terms of the given HASKELL could be proven: 25.79/11.04 25.79/11.04 (0) HASKELL 25.79/11.04 (1) LR [EQUIVALENT, 0 ms] 25.79/11.04 (2) HASKELL 25.79/11.04 (3) CR [EQUIVALENT, 0 ms] 25.79/11.04 (4) HASKELL 25.79/11.04 (5) IFR [EQUIVALENT, 0 ms] 25.79/11.04 (6) HASKELL 25.79/11.04 (7) BR [EQUIVALENT, 0 ms] 25.79/11.04 (8) HASKELL 25.79/11.04 (9) COR [EQUIVALENT, 2 ms] 25.79/11.04 (10) HASKELL 25.79/11.04 (11) LetRed [EQUIVALENT, 0 ms] 25.79/11.04 (12) HASKELL 25.79/11.04 (13) NumRed [SOUND, 13 ms] 25.79/11.04 (14) HASKELL 25.79/11.04 (15) Narrow [SOUND, 0 ms] 25.79/11.04 (16) AND 25.79/11.04 (17) QDP 25.79/11.04 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.79/11.04 (19) YES 25.79/11.04 (20) QDP 25.79/11.04 (21) QDPSizeChangeProof [EQUIVALENT, 78 ms] 25.79/11.04 (22) YES 25.79/11.04 (23) QDP 25.79/11.04 (24) TransformationProof [EQUIVALENT, 1639 ms] 25.79/11.04 (25) QDP 25.79/11.04 (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.79/11.04 (27) YES 25.79/11.04 (28) QDP 25.79/11.04 (29) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.79/11.04 (30) YES 25.79/11.04 (31) QDP 25.79/11.04 (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.79/11.04 (33) YES 25.79/11.04 (34) QDP 25.79/11.04 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.79/11.04 (36) YES 25.79/11.04 (37) QDP 25.79/11.04 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 25.79/11.04 (39) YES 25.79/11.04 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (0) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap a b -> [(a,b)]; 25.79/11.04 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 25.79/11.04 25.79/11.04 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.79/11.04 lookupFM EmptyFM key = Nothing; 25.79/11.04 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.79/11.04 | key_to_find > key = lookupFM fm_r key_to_find 25.79/11.04 | otherwise = Just elt; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap b a -> Int; 25.79/11.04 sizeFM EmptyFM = 0; 25.79/11.04 sizeFM (Branch _ _ size _ _) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (1) LR (EQUIVALENT) 25.79/11.04 Lambda Reductions: 25.79/11.04 The following Lambda expression 25.79/11.04 "\keyeltrest->(key,elt) : rest" 25.79/11.04 is transformed to 25.79/11.04 "fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 " 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (2) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap a b -> [(a,b)]; 25.79/11.04 fmToList fm = foldFM fmToList0 [] fm; 25.79/11.04 25.79/11.04 fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 25.79/11.04 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.79/11.04 lookupFM EmptyFM key = Nothing; 25.79/11.04 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.79/11.04 | key_to_find > key = lookupFM fm_r key_to_find 25.79/11.04 | otherwise = Just elt; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap a b -> Int; 25.79/11.04 sizeFM EmptyFM = 0; 25.79/11.04 sizeFM (Branch _ _ size _ _) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (3) CR (EQUIVALENT) 25.79/11.04 Case Reductions: 25.79/11.04 The following Case expression 25.79/11.04 "case compare x y of { 25.79/11.04 EQ -> o; 25.79/11.04 LT -> LT; 25.79/11.04 GT -> GT} 25.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "primCompAux0 o EQ = o; 25.79/11.04 primCompAux0 o LT = LT; 25.79/11.04 primCompAux0 o GT = GT; 25.79/11.04 " 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (4) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap b a -> [(b,a)]; 25.79/11.04 fmToList fm = foldFM fmToList0 [] fm; 25.79/11.04 25.79/11.04 fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 25.79/11.04 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.79/11.04 lookupFM EmptyFM key = Nothing; 25.79/11.04 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.79/11.04 | key_to_find > key = lookupFM fm_r key_to_find 25.79/11.04 | otherwise = Just elt; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap a b -> Int; 25.79/11.04 sizeFM EmptyFM = 0; 25.79/11.04 sizeFM (Branch _ _ size _ _) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (5) IFR (EQUIVALENT) 25.79/11.04 If Reductions: 25.79/11.04 The following If expression 25.79/11.04 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 25.79/11.04 is transformed to 25.79/11.04 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 25.79/11.04 primDivNatS0 x y False = Zero; 25.79/11.04 " 25.79/11.04 The following If expression 25.79/11.04 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 25.79/11.04 is transformed to 25.79/11.04 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 25.79/11.04 primModNatS0 x y False = Succ x; 25.79/11.04 " 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (6) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap a b -> [(a,b)]; 25.79/11.04 fmToList fm = foldFM fmToList0 [] fm; 25.79/11.04 25.79/11.04 fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 25.79/11.04 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.79/11.04 lookupFM EmptyFM key = Nothing; 25.79/11.04 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.79/11.04 | key_to_find > key = lookupFM fm_r key_to_find 25.79/11.04 | otherwise = Just elt; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap a b -> Int; 25.79/11.04 sizeFM EmptyFM = 0; 25.79/11.04 sizeFM (Branch _ _ size _ _) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (7) BR (EQUIVALENT) 25.79/11.04 Replaced joker patterns by fresh variables and removed binding patterns. 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (8) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap a b -> [(a,b)]; 25.79/11.04 fmToList fm = foldFM fmToList0 [] fm; 25.79/11.04 25.79/11.04 fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 25.79/11.04 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.79/11.04 lookupFM EmptyFM key = Nothing; 25.79/11.04 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 25.79/11.04 | key_to_find > key = lookupFM fm_r key_to_find 25.79/11.04 | otherwise = Just elt; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap b a -> Int; 25.79/11.04 sizeFM EmptyFM = 0; 25.79/11.04 sizeFM (Branch zz vuu size vuv vuw) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (9) COR (EQUIVALENT) 25.79/11.04 Cond Reductions: 25.79/11.04 The following Function with conditions 25.79/11.04 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 25.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "compare x y = compare3 x y; 25.79/11.04 " 25.79/11.04 "compare2 x y True = EQ; 25.79/11.04 compare2 x y False = compare1 x y (x <= y); 25.79/11.04 " 25.79/11.04 "compare1 x y True = LT; 25.79/11.04 compare1 x y False = compare0 x y otherwise; 25.79/11.04 " 25.79/11.04 "compare0 x y True = GT; 25.79/11.04 " 25.79/11.04 "compare3 x y = compare2 x y (x == y); 25.79/11.04 " 25.79/11.04 The following Function with conditions 25.79/11.04 "absReal x|x >= 0x|otherwise`negate` x; 25.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "absReal x = absReal2 x; 25.79/11.04 " 25.79/11.04 "absReal1 x True = x; 25.79/11.04 absReal1 x False = absReal0 x otherwise; 25.79/11.04 " 25.79/11.04 "absReal0 x True = `negate` x; 25.79/11.04 " 25.79/11.04 "absReal2 x = absReal1 x (x >= 0); 25.79/11.04 " 25.79/11.04 The following Function with conditions 25.79/11.04 "gcd' x 0 = x; 25.79/11.04 gcd' x y = gcd' y (x `rem` y); 25.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "gcd' x vuy = gcd'2 x vuy; 25.79/11.04 gcd' x y = gcd'0 x y; 25.79/11.04 " 25.79/11.04 "gcd'0 x y = gcd' y (x `rem` y); 25.79/11.04 " 25.79/11.04 "gcd'1 True x vuy = x; 25.79/11.04 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 25.79/11.04 " 25.79/11.04 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 25.79/11.04 gcd'2 vvw vvx = gcd'0 vvw vvx; 25.79/11.04 " 25.79/11.04 The following Function with conditions 25.79/11.04 "gcd 0 0 = error []; 25.79/11.04 gcd x y = gcd' (abs x) (abs y) where { 25.79/11.04 gcd' x 0 = x; 25.79/11.04 gcd' x y = gcd' y (x `rem` y); 25.79/11.04 } 25.79/11.04 ; 25.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "gcd vvy vvz = gcd3 vvy vvz; 25.79/11.04 gcd x y = gcd0 x y; 25.79/11.04 " 25.79/11.04 "gcd0 x y = gcd' (abs x) (abs y) where { 25.79/11.04 gcd' x vuy = gcd'2 x vuy; 25.79/11.04 gcd' x y = gcd'0 x y; 25.79/11.04 ; 25.79/11.04 gcd'0 x y = gcd' y (x `rem` y); 25.79/11.04 ; 25.79/11.04 gcd'1 True x vuy = x; 25.79/11.04 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 25.79/11.04 ; 25.79/11.04 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 25.79/11.04 gcd'2 vvw vvx = gcd'0 vvw vvx; 25.79/11.04 } 25.79/11.04 ; 25.79/11.04 " 25.79/11.04 "gcd1 True vvy vvz = error []; 25.79/11.04 gcd1 vwu vwv vww = gcd0 vwv vww; 25.79/11.04 " 25.79/11.04 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 25.79/11.04 gcd2 vwx vwy vwz = gcd0 vwy vwz; 25.79/11.04 " 25.79/11.04 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 25.79/11.04 gcd3 vxu vxv = gcd0 vxu vxv; 25.79/11.04 " 25.79/11.04 The following Function with conditions 25.79/11.04 "undefined |Falseundefined; 25.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "undefined = undefined1; 25.79/11.04 " 25.79/11.04 "undefined0 True = undefined; 25.79/11.04 " 25.79/11.04 "undefined1 = undefined0 False; 25.79/11.04 " 25.79/11.04 The following Function with conditions 25.79/11.04 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 25.79/11.04 d = gcd x y; 25.79/11.04 } 25.79/11.04 ; 25.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "reduce x y = reduce2 x y; 25.79/11.04 " 25.79/11.04 "reduce2 x y = reduce1 x y (y == 0) where { 25.79/11.04 d = gcd x y; 25.79/11.04 ; 25.79/11.04 reduce0 x y True = x `quot` d :% (y `quot` d); 25.79/11.04 ; 25.79/11.04 reduce1 x y True = error []; 25.79/11.04 reduce1 x y False = reduce0 x y otherwise; 25.79/11.04 } 25.79/11.04 ; 25.79/11.04 " 25.79/11.04 The following Function with conditions 25.79/11.04 "lookupFM EmptyFM key = Nothing; 25.79/11.04 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.79/11.04 " 25.79/11.04 is transformed to 25.79/11.04 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.79/11.04 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.79/11.04 " 25.79/11.04 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.79/11.04 " 25.79/11.04 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.79/11.04 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.79/11.04 " 25.79/11.04 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.79/11.04 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.79/11.04 " 25.79/11.04 "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.79/11.04 " 25.79/11.04 "lookupFM4 EmptyFM key = Nothing; 25.79/11.04 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.79/11.04 " 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (10) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap a b where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap b a -> [(b,a)]; 25.79/11.04 fmToList fm = foldFM fmToList0 [] fm; 25.79/11.04 25.79/11.04 fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 25.79/11.04 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 25.79/11.04 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.79/11.04 25.79/11.04 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.79/11.04 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.79/11.04 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM4 EmptyFM key = Nothing; 25.79/11.04 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap b a -> Int; 25.79/11.04 sizeFM EmptyFM = 0; 25.79/11.04 sizeFM (Branch zz vuu size vuv vuw) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (11) LetRed (EQUIVALENT) 25.79/11.04 Let/Where Reductions: 25.79/11.04 The bindings of the following Let/Where expression 25.79/11.04 "gcd' (abs x) (abs y) where { 25.79/11.04 gcd' x vuy = gcd'2 x vuy; 25.79/11.04 gcd' x y = gcd'0 x y; 25.79/11.04 ; 25.79/11.04 gcd'0 x y = gcd' y (x `rem` y); 25.79/11.04 ; 25.79/11.04 gcd'1 True x vuy = x; 25.79/11.04 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 25.79/11.04 ; 25.79/11.04 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 25.79/11.04 gcd'2 vvw vvx = gcd'0 vvw vvx; 25.79/11.04 } 25.79/11.04 " 25.79/11.04 are unpacked to the following functions on top level 25.79/11.04 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 25.79/11.04 " 25.79/11.04 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 25.79/11.04 gcd0Gcd' x y = gcd0Gcd'0 x y; 25.79/11.04 " 25.79/11.04 "gcd0Gcd'1 True x vuy = x; 25.79/11.04 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 25.79/11.04 " 25.79/11.04 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 25.79/11.04 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 25.79/11.04 " 25.79/11.04 The bindings of the following Let/Where expression 25.79/11.04 "reduce1 x y (y == 0) where { 25.79/11.04 d = gcd x y; 25.79/11.04 ; 25.79/11.04 reduce0 x y True = x `quot` d :% (y `quot` d); 25.79/11.04 ; 25.79/11.04 reduce1 x y True = error []; 25.79/11.04 reduce1 x y False = reduce0 x y otherwise; 25.79/11.04 } 25.79/11.04 " 25.79/11.04 are unpacked to the following functions on top level 25.79/11.04 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 25.79/11.04 " 25.79/11.04 "reduce2Reduce1 vyu vyv x y True = error []; 25.79/11.04 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 25.79/11.04 " 25.79/11.04 "reduce2D vyu vyv = gcd vyu vyv; 25.79/11.04 " 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (12) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap b a -> [(b,a)]; 25.79/11.04 fmToList fm = foldFM fmToList0 [] fm; 25.79/11.04 25.79/11.04 fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 25.79/11.04 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.79/11.04 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.79/11.04 25.79/11.04 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.79/11.04 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.79/11.04 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM4 EmptyFM key = Nothing; 25.79/11.04 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap a b -> Int; 25.79/11.04 sizeFM EmptyFM = 0; 25.79/11.04 sizeFM (Branch zz vuu size vuv vuw) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (13) NumRed (SOUND) 25.79/11.04 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (14) 25.79/11.04 Obligation: 25.79/11.04 mainModule Main 25.79/11.04 module FiniteMap where { 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 25.79/11.04 25.79/11.04 instance (Eq a, Eq b) => Eq FiniteMap b a where { 25.79/11.04 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 25.79/11.04 } 25.79/11.04 fmToList :: FiniteMap b a -> [(b,a)]; 25.79/11.04 fmToList fm = foldFM fmToList0 [] fm; 25.79/11.04 25.79/11.04 fmToList0 key elt rest = (key,elt) : rest; 25.79/11.04 25.79/11.04 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 25.79/11.04 foldFM k z EmptyFM = z; 25.79/11.04 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 25.79/11.04 25.79/11.04 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 25.79/11.04 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 25.79/11.04 25.79/11.04 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 25.79/11.04 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.79/11.04 25.79/11.04 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.79/11.04 25.79/11.04 lookupFM4 EmptyFM key = Nothing; 25.79/11.04 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 25.79/11.04 25.79/11.04 sizeFM :: FiniteMap b a -> Int; 25.79/11.04 sizeFM EmptyFM = Pos Zero; 25.79/11.04 sizeFM (Branch zz vuu size vuv vuw) = size; 25.79/11.04 25.79/11.04 } 25.79/11.04 module Maybe where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Main; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 module Main where { 25.79/11.04 import qualified FiniteMap; 25.79/11.04 import qualified Maybe; 25.79/11.04 import qualified Prelude; 25.79/11.04 } 25.79/11.04 25.79/11.04 ---------------------------------------- 25.79/11.04 25.79/11.04 (15) Narrow (SOUND) 25.79/11.04 Haskell To QDPs 25.79/11.04 25.79/11.04 digraph dp_graph { 25.79/11.04 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 25.79/11.04 3[label="FiniteMap.lookupFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 25.79/11.04 4[label="FiniteMap.lookupFM vyw3 vyw4",fontsize=16,color="burlywood",shape="triangle"];2285[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 2285[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2285 -> 5[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2286[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];4 -> 2286[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2286 -> 6[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 5[label="FiniteMap.lookupFM FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 25.79/11.04 6[label="FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 25.79/11.04 7[label="FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 25.79/11.04 8[label="FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 25.79/11.04 9[label="Nothing",fontsize=16,color="green",shape="box"];10[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (vyw4 < vyw30)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 25.79/11.04 11[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 25.79/11.04 12[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare3 vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 25.79/11.04 13[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare2 vyw4 vyw30 (vyw4 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];2287[label="vyw4/(vyw40,vyw41)",fontsize=10,color="white",style="solid",shape="box"];13 -> 2287[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2287 -> 14[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 14[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (vyw40,vyw41) (compare2 (vyw40,vyw41) vyw30 ((vyw40,vyw41) == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];2288[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];14 -> 2288[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2288 -> 15[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 15[label="FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw40,vyw41) (compare2 (vyw40,vyw41) (vyw300,vyw301) ((vyw40,vyw41) == (vyw300,vyw301)) == LT)",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 25.79/11.04 16 -> 100[label="",style="dashed", color="red", weight=0]; 25.79/11.04 16[label="FiniteMap.lookupFM2 (vyw300,vyw301) vyw31 vyw32 vyw33 vyw34 (vyw40,vyw41) (compare2 (vyw40,vyw41) (vyw300,vyw301) (vyw40 == vyw300 && vyw41 == vyw301) == LT)",fontsize=16,color="magenta"];16 -> 101[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 102[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 103[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 104[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 105[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 106[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 107[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 108[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 16 -> 109[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 101[label="vyw31",fontsize=16,color="green",shape="box"];102[label="vyw33",fontsize=16,color="green",shape="box"];103[label="vyw301",fontsize=16,color="green",shape="box"];104[label="vyw32",fontsize=16,color="green",shape="box"];105[label="vyw300",fontsize=16,color="green",shape="box"];106[label="vyw34",fontsize=16,color="green",shape="box"];107[label="vyw41",fontsize=16,color="green",shape="box"];108[label="vyw40",fontsize=16,color="green",shape="box"];109 -> 113[label="",style="dashed", color="red", weight=0]; 25.79/11.04 109[label="compare2 (vyw40,vyw41) (vyw300,vyw301) (vyw40 == vyw300 && vyw41 == vyw301) == LT",fontsize=16,color="magenta"];109 -> 114[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 109 -> 115[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 109 -> 116[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 109 -> 117[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 109 -> 118[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 100[label="FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw24",fontsize=16,color="burlywood",shape="triangle"];2289[label="vyw24/False",fontsize=10,color="white",style="solid",shape="box"];100 -> 2289[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2289 -> 119[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2290[label="vyw24/True",fontsize=10,color="white",style="solid",shape="box"];100 -> 2290[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2290 -> 120[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 114[label="vyw40",fontsize=16,color="green",shape="box"];115[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];2291[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2291[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2291 -> 121[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2292[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2292[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2292 -> 122[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2293[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2293[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2293 -> 123[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2294[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2294[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2294 -> 124[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2295[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2295[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2295 -> 125[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2296[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2296[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2296 -> 126[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2297[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2297[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2297 -> 127[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2298[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2298[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2298 -> 128[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2299[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2299[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2299 -> 129[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2300[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2300[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2300 -> 130[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2301[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2301[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2301 -> 131[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2302[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2302[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2302 -> 132[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2303[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2303[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2303 -> 133[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2304[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];115 -> 2304[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2304 -> 134[label="",style="solid", color="blue", weight=3]; 25.79/11.04 116[label="vyw41",fontsize=16,color="green",shape="box"];117[label="vyw300",fontsize=16,color="green",shape="box"];118[label="vyw301",fontsize=16,color="green",shape="box"];113[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw35 && vyw32 == vyw34) == LT",fontsize=16,color="burlywood",shape="triangle"];2305[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];113 -> 2305[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2305 -> 135[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2306[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];113 -> 2306[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2306 -> 136[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 119[label="FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False",fontsize=16,color="black",shape="box"];119 -> 137[label="",style="solid", color="black", weight=3]; 25.79/11.04 120[label="FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True",fontsize=16,color="black",shape="box"];120 -> 138[label="",style="solid", color="black", weight=3]; 25.79/11.04 121[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2307[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];121 -> 2307[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2307 -> 139[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 122[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2308[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];122 -> 2308[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2308 -> 140[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 123[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];123 -> 141[label="",style="solid", color="black", weight=3]; 25.79/11.04 124[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2309[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];124 -> 2309[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2309 -> 142[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2310[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];124 -> 2310[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2310 -> 143[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 125[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];125 -> 144[label="",style="solid", color="black", weight=3]; 25.79/11.04 126[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];126 -> 145[label="",style="solid", color="black", weight=3]; 25.79/11.04 127[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2311[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];127 -> 2311[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2311 -> 146[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2312[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];127 -> 2312[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2312 -> 147[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2313[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];127 -> 2313[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2313 -> 148[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 128[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2314[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];128 -> 2314[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2314 -> 149[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 129[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];129 -> 150[label="",style="solid", color="black", weight=3]; 25.79/11.04 130[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2315[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];130 -> 2315[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2315 -> 151[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2316[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];130 -> 2316[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2316 -> 152[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 131[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2317[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];131 -> 2317[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2317 -> 153[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2318[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];131 -> 2318[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2318 -> 154[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 132[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2319[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];132 -> 2319[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2319 -> 155[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 133[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2320[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];133 -> 2320[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2320 -> 156[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 134[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];2321[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];134 -> 2321[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2321 -> 157[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2322[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];134 -> 2322[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2322 -> 158[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 135[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (False && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];135 -> 159[label="",style="solid", color="black", weight=3]; 25.79/11.04 136[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (True && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];136 -> 160[label="",style="solid", color="black", weight=3]; 25.79/11.04 137 -> 203[label="",style="dashed", color="red", weight=0]; 25.79/11.04 137[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) ((vyw21,vyw22) > (vyw15,vyw16))",fontsize=16,color="magenta"];137 -> 204[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 138 -> 4[label="",style="dashed", color="red", weight=0]; 25.79/11.04 138[label="FiniteMap.lookupFM vyw19 (vyw21,vyw22)",fontsize=16,color="magenta"];138 -> 162[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 138 -> 163[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 139[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];2323[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];139 -> 2323[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2323 -> 164[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 140[label="(vyw400,vyw401) == vyw300",fontsize=16,color="burlywood",shape="box"];2324[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];140 -> 2324[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2324 -> 165[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 141[label="primEqChar vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];2325[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];141 -> 2325[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2325 -> 166[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 142[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];2326[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];142 -> 2326[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2326 -> 167[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2327[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];142 -> 2327[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2327 -> 168[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 143[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];2328[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];143 -> 2328[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2328 -> 169[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2329[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];143 -> 2329[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2329 -> 170[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 144[label="primEqDouble vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];2330[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];144 -> 2330[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2330 -> 171[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 145[label="primEqFloat vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];2331[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];145 -> 2331[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2331 -> 172[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 146[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];2332[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];146 -> 2332[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2332 -> 173[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2333[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];146 -> 2333[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2333 -> 174[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2334[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];146 -> 2334[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2334 -> 175[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 147[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];2335[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];147 -> 2335[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2335 -> 176[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2336[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];147 -> 2336[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2336 -> 177[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2337[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];147 -> 2337[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2337 -> 178[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 148[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];2338[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2338[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2338 -> 179[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2339[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];148 -> 2339[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2339 -> 180[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2340[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2340[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2340 -> 181[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 149[label="(vyw400,vyw401,vyw402) == vyw300",fontsize=16,color="burlywood",shape="box"];2341[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];149 -> 2341[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2341 -> 182[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 150[label="primEqInt vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];2342[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];150 -> 2342[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2342 -> 183[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2343[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];150 -> 2343[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2343 -> 184[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 151[label="vyw400 : vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];2344[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];151 -> 2344[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2344 -> 185[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2345[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];151 -> 2345[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2345 -> 186[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 152[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];2346[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];152 -> 2346[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2346 -> 187[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2347[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];152 -> 2347[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2347 -> 188[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 153[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];2348[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];153 -> 2348[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2348 -> 189[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2349[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];153 -> 2349[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2349 -> 190[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 154[label="Just vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2350[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];154 -> 2350[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2350 -> 191[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2351[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];154 -> 2351[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2351 -> 192[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 155[label="Integer vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2352[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];155 -> 2352[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2352 -> 193[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 156[label="vyw400 :% vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];2353[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];156 -> 2353[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2353 -> 194[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 157[label="Left vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2354[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];157 -> 2354[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2354 -> 195[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2355[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];157 -> 2355[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2355 -> 196[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 158[label="Right vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];2356[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];158 -> 2356[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2356 -> 197[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2357[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];158 -> 2357[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2357 -> 198[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 159 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.04 159[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False == LT",fontsize=16,color="magenta"];159 -> 199[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 159 -> 200[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 160 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.04 160[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34) == LT",fontsize=16,color="magenta"];160 -> 201[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 160 -> 202[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 204[label="(vyw21,vyw22) > (vyw15,vyw16)",fontsize=16,color="black",shape="box"];204 -> 206[label="",style="solid", color="black", weight=3]; 25.79/11.04 203[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw36",fontsize=16,color="burlywood",shape="triangle"];2358[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];203 -> 2358[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2358 -> 207[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2359[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];203 -> 2359[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2359 -> 208[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 162[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];163[label="vyw19",fontsize=16,color="green",shape="box"];164[label="() == ()",fontsize=16,color="black",shape="box"];164 -> 209[label="",style="solid", color="black", weight=3]; 25.79/11.04 165[label="(vyw400,vyw401) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];165 -> 210[label="",style="solid", color="black", weight=3]; 25.79/11.04 166[label="primEqChar (Char vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];2360[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];166 -> 2360[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2360 -> 211[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 167[label="False == False",fontsize=16,color="black",shape="box"];167 -> 212[label="",style="solid", color="black", weight=3]; 25.79/11.04 168[label="False == True",fontsize=16,color="black",shape="box"];168 -> 213[label="",style="solid", color="black", weight=3]; 25.79/11.04 169[label="True == False",fontsize=16,color="black",shape="box"];169 -> 214[label="",style="solid", color="black", weight=3]; 25.79/11.04 170[label="True == True",fontsize=16,color="black",shape="box"];170 -> 215[label="",style="solid", color="black", weight=3]; 25.79/11.04 171[label="primEqDouble (Double vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];2361[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];171 -> 2361[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2361 -> 216[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 172[label="primEqFloat (Float vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];2362[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];172 -> 2362[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2362 -> 217[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 173[label="LT == LT",fontsize=16,color="black",shape="box"];173 -> 218[label="",style="solid", color="black", weight=3]; 25.79/11.04 174[label="LT == EQ",fontsize=16,color="black",shape="box"];174 -> 219[label="",style="solid", color="black", weight=3]; 25.79/11.04 175[label="LT == GT",fontsize=16,color="black",shape="box"];175 -> 220[label="",style="solid", color="black", weight=3]; 25.79/11.04 176[label="EQ == LT",fontsize=16,color="black",shape="box"];176 -> 221[label="",style="solid", color="black", weight=3]; 25.79/11.04 177[label="EQ == EQ",fontsize=16,color="black",shape="box"];177 -> 222[label="",style="solid", color="black", weight=3]; 25.79/11.04 178[label="EQ == GT",fontsize=16,color="black",shape="box"];178 -> 223[label="",style="solid", color="black", weight=3]; 25.79/11.04 179[label="GT == LT",fontsize=16,color="black",shape="box"];179 -> 224[label="",style="solid", color="black", weight=3]; 25.79/11.04 180[label="GT == EQ",fontsize=16,color="black",shape="box"];180 -> 225[label="",style="solid", color="black", weight=3]; 25.79/11.04 181[label="GT == GT",fontsize=16,color="black",shape="box"];181 -> 226[label="",style="solid", color="black", weight=3]; 25.79/11.04 182[label="(vyw400,vyw401,vyw402) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];182 -> 227[label="",style="solid", color="black", weight=3]; 25.79/11.04 183[label="primEqInt (Pos vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];2363[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];183 -> 2363[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2363 -> 228[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2364[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];183 -> 2364[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2364 -> 229[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 184[label="primEqInt (Neg vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];2365[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];184 -> 2365[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2365 -> 230[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2366[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];184 -> 2366[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2366 -> 231[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 185[label="vyw400 : vyw401 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];185 -> 232[label="",style="solid", color="black", weight=3]; 25.79/11.04 186[label="vyw400 : vyw401 == []",fontsize=16,color="black",shape="box"];186 -> 233[label="",style="solid", color="black", weight=3]; 25.79/11.04 187[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];187 -> 234[label="",style="solid", color="black", weight=3]; 25.79/11.04 188[label="[] == []",fontsize=16,color="black",shape="box"];188 -> 235[label="",style="solid", color="black", weight=3]; 25.79/11.04 189[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];189 -> 236[label="",style="solid", color="black", weight=3]; 25.79/11.04 190[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];190 -> 237[label="",style="solid", color="black", weight=3]; 25.79/11.04 191[label="Just vyw400 == Nothing",fontsize=16,color="black",shape="box"];191 -> 238[label="",style="solid", color="black", weight=3]; 25.79/11.04 192[label="Just vyw400 == Just vyw3000",fontsize=16,color="black",shape="box"];192 -> 239[label="",style="solid", color="black", weight=3]; 25.79/11.04 193[label="Integer vyw400 == Integer vyw3000",fontsize=16,color="black",shape="box"];193 -> 240[label="",style="solid", color="black", weight=3]; 25.79/11.04 194[label="vyw400 :% vyw401 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];194 -> 241[label="",style="solid", color="black", weight=3]; 25.79/11.04 195[label="Left vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];195 -> 242[label="",style="solid", color="black", weight=3]; 25.79/11.04 196[label="Left vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];196 -> 243[label="",style="solid", color="black", weight=3]; 25.79/11.04 197[label="Right vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];197 -> 244[label="",style="solid", color="black", weight=3]; 25.79/11.04 198[label="Right vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];198 -> 245[label="",style="solid", color="black", weight=3]; 25.79/11.04 199[label="LT",fontsize=16,color="green",shape="box"];200 -> 1132[label="",style="dashed", color="red", weight=0]; 25.79/11.04 200[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False",fontsize=16,color="magenta"];200 -> 1133[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 200 -> 1134[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 200 -> 1135[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 201[label="LT",fontsize=16,color="green",shape="box"];202 -> 1132[label="",style="dashed", color="red", weight=0]; 25.79/11.04 202[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34)",fontsize=16,color="magenta"];202 -> 1136[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 202 -> 1137[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 202 -> 1138[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 206 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.04 206[label="compare (vyw21,vyw22) (vyw15,vyw16) == GT",fontsize=16,color="magenta"];206 -> 258[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 206 -> 259[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 207[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False",fontsize=16,color="black",shape="box"];207 -> 260[label="",style="solid", color="black", weight=3]; 25.79/11.04 208[label="FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True",fontsize=16,color="black",shape="box"];208 -> 261[label="",style="solid", color="black", weight=3]; 25.79/11.04 209[label="True",fontsize=16,color="green",shape="box"];210 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.04 210[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];210 -> 373[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 210 -> 374[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 211[label="primEqChar (Char vyw400) (Char vyw3000)",fontsize=16,color="black",shape="box"];211 -> 272[label="",style="solid", color="black", weight=3]; 25.79/11.04 212[label="True",fontsize=16,color="green",shape="box"];213[label="False",fontsize=16,color="green",shape="box"];214[label="False",fontsize=16,color="green",shape="box"];215[label="True",fontsize=16,color="green",shape="box"];216[label="primEqDouble (Double vyw400 vyw401) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];216 -> 273[label="",style="solid", color="black", weight=3]; 25.79/11.04 217[label="primEqFloat (Float vyw400 vyw401) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];217 -> 274[label="",style="solid", color="black", weight=3]; 25.79/11.04 218[label="True",fontsize=16,color="green",shape="box"];219[label="False",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="True",fontsize=16,color="green",shape="box"];223[label="False",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="True",fontsize=16,color="green",shape="box"];227 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.04 227[label="vyw400 == vyw3000 && vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];227 -> 375[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 227 -> 376[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 228[label="primEqInt (Pos (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];2367[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2367[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2367 -> 286[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2368[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2368[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2368 -> 287[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 229[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2369[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];229 -> 2369[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2369 -> 288[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2370[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];229 -> 2370[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2370 -> 289[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 230[label="primEqInt (Neg (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];2371[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];230 -> 2371[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2371 -> 290[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2372[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];230 -> 2372[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2372 -> 291[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 231[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];2373[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];231 -> 2373[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2373 -> 292[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2374[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];231 -> 2374[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2374 -> 293[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 232 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.04 232[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];232 -> 377[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 232 -> 378[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 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="True",fontsize=16,color="green",shape="box"];237[label="False",fontsize=16,color="green",shape="box"];238[label="False",fontsize=16,color="green",shape="box"];239[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2375[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2375[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2375 -> 294[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2376[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2376[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2376 -> 295[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2377[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2377[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2377 -> 296[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2378[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2378[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2378 -> 297[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2379[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2379[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2379 -> 298[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2380[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2380[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2380 -> 299[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2381[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2381[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2381 -> 300[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2382[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2382[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2382 -> 301[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2383[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2383[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2383 -> 302[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2384[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2384[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2384 -> 303[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2385[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2385[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2385 -> 304[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2386[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2386[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2386 -> 305[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2387[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2387[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2387 -> 306[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2388[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];239 -> 2388[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2388 -> 307[label="",style="solid", color="blue", weight=3]; 25.79/11.04 240 -> 150[label="",style="dashed", color="red", weight=0]; 25.79/11.04 240[label="primEqInt vyw400 vyw3000",fontsize=16,color="magenta"];240 -> 308[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 240 -> 309[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 241 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.04 241[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];241 -> 379[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 241 -> 380[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 242[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2389[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2389[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2389 -> 310[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2390[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2390[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2390 -> 311[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2391[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2391[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2391 -> 312[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2392[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2392[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2392 -> 313[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2393[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2393[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2393 -> 314[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2394[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2394[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2394 -> 315[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2395[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2395[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2395 -> 316[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2396[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2396[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2396 -> 317[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2397[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2397[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2397 -> 318[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2398[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2398[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2398 -> 319[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2399[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2399[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2399 -> 320[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2400[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2400[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2400 -> 321[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2401[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2401[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2401 -> 322[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2402[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];242 -> 2402[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2402 -> 323[label="",style="solid", color="blue", weight=3]; 25.79/11.04 243[label="False",fontsize=16,color="green",shape="box"];244[label="False",fontsize=16,color="green",shape="box"];245[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2403[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2403[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2403 -> 324[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2404[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2404[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2404 -> 325[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2405[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2405[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2405 -> 326[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2406[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2406[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2406 -> 327[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2407[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2407[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2407 -> 328[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2408[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2408[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2408 -> 329[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2409[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2409[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2409 -> 330[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2410[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2410[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2410 -> 331[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2411[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2411[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2411 -> 332[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2412[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2412[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2412 -> 333[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2413[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2413[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2413 -> 334[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2414[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2414[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2414 -> 335[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2415[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2415[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2415 -> 336[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2416[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];245 -> 2416[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2416 -> 337[label="",style="solid", color="blue", weight=3]; 25.79/11.04 1133[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];1134[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1135[label="False",fontsize=16,color="green",shape="box"];1132[label="compare2 vyw43 vyw45 vyw76",fontsize=16,color="burlywood",shape="triangle"];2417[label="vyw76/False",fontsize=10,color="white",style="solid",shape="box"];1132 -> 2417[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2417 -> 1146[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2418[label="vyw76/True",fontsize=10,color="white",style="solid",shape="box"];1132 -> 2418[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2418 -> 1147[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 1136[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];1137[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1138[label="vyw32 == vyw34",fontsize=16,color="blue",shape="box"];2419[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2419[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2419 -> 1148[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2420[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2420[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2420 -> 1149[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2421[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2421[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2421 -> 1150[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2422[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2422[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2422 -> 1151[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2423[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2423[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2423 -> 1152[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2424[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2424[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2424 -> 1153[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2425[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2425[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2425 -> 1154[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2426[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2426[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2426 -> 1155[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2427[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2427[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2427 -> 1156[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2428[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2428[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2428 -> 1157[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2429[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2429[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2429 -> 1158[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2430[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2430[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2430 -> 1159[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2431[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2431[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2431 -> 1160[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2432[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1138 -> 2432[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2432 -> 1161[label="",style="solid", color="blue", weight=3]; 25.79/11.04 258[label="GT",fontsize=16,color="green",shape="box"];259[label="compare (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];259 -> 354[label="",style="solid", color="black", weight=3]; 25.79/11.04 260[label="FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) otherwise",fontsize=16,color="black",shape="box"];260 -> 355[label="",style="solid", color="black", weight=3]; 25.79/11.04 261 -> 4[label="",style="dashed", color="red", weight=0]; 25.79/11.04 261[label="FiniteMap.lookupFM vyw20 (vyw21,vyw22)",fontsize=16,color="magenta"];261 -> 356[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 261 -> 357[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 373[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];2433[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2433[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2433 -> 385[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2434[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2434[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2434 -> 386[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2435[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2435[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2435 -> 387[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2436[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2436[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2436 -> 388[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2437[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2437[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2437 -> 389[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2438[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2438[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2438 -> 390[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2439[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2439[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2439 -> 391[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2440[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2440[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2440 -> 392[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2441[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2441[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2441 -> 393[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2442[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2442[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2442 -> 394[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2443[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2443[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2443 -> 395[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2444[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2444[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2444 -> 396[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2445[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2445[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2445 -> 397[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2446[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];373 -> 2446[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2446 -> 398[label="",style="solid", color="blue", weight=3]; 25.79/11.04 374[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2447[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2447[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2447 -> 399[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2448[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2448[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2448 -> 400[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2449[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2449[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2449 -> 401[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2450[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2450[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2450 -> 402[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2451[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2451[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2451 -> 403[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2452[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2452[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2452 -> 404[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2453[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2453[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2453 -> 405[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2454[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2454[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2454 -> 406[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2455[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2455[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2455 -> 407[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2456[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2456[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2456 -> 408[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2457[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2457[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2457 -> 409[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2458[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2458[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2458 -> 410[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2459[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2459[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2459 -> 411[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2460[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];374 -> 2460[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2460 -> 412[label="",style="solid", color="blue", weight=3]; 25.79/11.04 372[label="vyw59 && vyw60",fontsize=16,color="burlywood",shape="triangle"];2461[label="vyw59/False",fontsize=10,color="white",style="solid",shape="box"];372 -> 2461[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2461 -> 413[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2462[label="vyw59/True",fontsize=10,color="white",style="solid",shape="box"];372 -> 2462[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2462 -> 414[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 272[label="primEqNat vyw400 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2463[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];272 -> 2463[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2463 -> 415[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2464[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];272 -> 2464[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2464 -> 416[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 273 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.04 273[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];273 -> 417[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 273 -> 418[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 274 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.04 274[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];274 -> 419[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 274 -> 420[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 375 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.04 375[label="vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];375 -> 421[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 375 -> 422[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 376[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2465[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2465[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2465 -> 423[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2466[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2466[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2466 -> 424[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2467[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2467[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2467 -> 425[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2468[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2468[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2468 -> 426[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2469[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2469[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2469 -> 427[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2470[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2470[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2470 -> 428[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2471[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2471[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2471 -> 429[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2472[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2472[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2472 -> 430[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2473[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2473[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2473 -> 431[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2474[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2474[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2474 -> 432[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2475[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2475[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2475 -> 433[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2476[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2476[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2476 -> 434[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2477[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2477[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2477 -> 435[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2478[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];376 -> 2478[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2478 -> 436[label="",style="solid", color="blue", weight=3]; 25.79/11.04 286[label="primEqInt (Pos (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2479[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];286 -> 2479[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2479 -> 437[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2480[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];286 -> 2480[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2480 -> 438[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 287[label="primEqInt (Pos (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];287 -> 439[label="",style="solid", color="black", weight=3]; 25.79/11.04 288[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2481[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];288 -> 2481[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2481 -> 440[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2482[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];288 -> 2482[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2482 -> 441[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 289[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2483[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];289 -> 2483[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2483 -> 442[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2484[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];289 -> 2484[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2484 -> 443[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 290[label="primEqInt (Neg (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];290 -> 444[label="",style="solid", color="black", weight=3]; 25.79/11.04 291[label="primEqInt (Neg (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2485[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];291 -> 2485[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2485 -> 445[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2486[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];291 -> 2486[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2486 -> 446[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 292[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];2487[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];292 -> 2487[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2487 -> 447[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2488[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];292 -> 2488[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2488 -> 448[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 293[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];2489[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];293 -> 2489[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2489 -> 449[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 2490[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];293 -> 2490[label="",style="solid", color="burlywood", weight=9]; 25.79/11.04 2490 -> 450[label="",style="solid", color="burlywood", weight=3]; 25.79/11.04 377 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.04 377[label="vyw401 == vyw3001",fontsize=16,color="magenta"];377 -> 451[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 377 -> 452[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 378[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2491[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2491[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2491 -> 453[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2492[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2492[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2492 -> 454[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2493[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2493[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2493 -> 455[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2494[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2494[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2494 -> 456[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2495[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2495[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2495 -> 457[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2496[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2496[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2496 -> 458[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2497[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2497[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2497 -> 459[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2498[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2498[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2498 -> 460[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2499[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2499[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2499 -> 461[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2500[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2500[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2500 -> 462[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2501[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2501[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2501 -> 463[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2502[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2502[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2502 -> 464[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2503[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2503[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2503 -> 465[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2504[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];378 -> 2504[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2504 -> 466[label="",style="solid", color="blue", weight=3]; 25.79/11.04 294 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.04 294[label="vyw400 == vyw3000",fontsize=16,color="magenta"];294 -> 467[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 294 -> 468[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 295 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.04 295[label="vyw400 == vyw3000",fontsize=16,color="magenta"];295 -> 469[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 295 -> 470[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 296 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.04 296[label="vyw400 == vyw3000",fontsize=16,color="magenta"];296 -> 471[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 296 -> 472[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 297 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.04 297[label="vyw400 == vyw3000",fontsize=16,color="magenta"];297 -> 473[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 297 -> 474[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 298 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.04 298[label="vyw400 == vyw3000",fontsize=16,color="magenta"];298 -> 475[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 298 -> 476[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 299 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.04 299[label="vyw400 == vyw3000",fontsize=16,color="magenta"];299 -> 477[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 299 -> 478[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 300 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.04 300[label="vyw400 == vyw3000",fontsize=16,color="magenta"];300 -> 479[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 300 -> 480[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 301 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.04 301[label="vyw400 == vyw3000",fontsize=16,color="magenta"];301 -> 481[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 301 -> 482[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 302 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.04 302[label="vyw400 == vyw3000",fontsize=16,color="magenta"];302 -> 483[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 302 -> 484[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 303 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.04 303[label="vyw400 == vyw3000",fontsize=16,color="magenta"];303 -> 485[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 303 -> 486[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 304 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.04 304[label="vyw400 == vyw3000",fontsize=16,color="magenta"];304 -> 487[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 304 -> 488[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 305 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.04 305[label="vyw400 == vyw3000",fontsize=16,color="magenta"];305 -> 489[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 305 -> 490[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 306 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.04 306[label="vyw400 == vyw3000",fontsize=16,color="magenta"];306 -> 491[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 306 -> 492[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 307 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.04 307[label="vyw400 == vyw3000",fontsize=16,color="magenta"];307 -> 493[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 307 -> 494[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 308[label="vyw3000",fontsize=16,color="green",shape="box"];309[label="vyw400",fontsize=16,color="green",shape="box"];379[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];2505[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 2505[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2505 -> 495[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2506[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];379 -> 2506[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2506 -> 496[label="",style="solid", color="blue", weight=3]; 25.79/11.04 380[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];2507[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 2507[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2507 -> 497[label="",style="solid", color="blue", weight=3]; 25.79/11.04 2508[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];380 -> 2508[label="",style="solid", color="blue", weight=9]; 25.79/11.04 2508 -> 498[label="",style="solid", color="blue", weight=3]; 25.79/11.04 310 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.04 310[label="vyw400 == vyw3000",fontsize=16,color="magenta"];310 -> 499[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 310 -> 500[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 311 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.04 311[label="vyw400 == vyw3000",fontsize=16,color="magenta"];311 -> 501[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 311 -> 502[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 312 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.04 312[label="vyw400 == vyw3000",fontsize=16,color="magenta"];312 -> 503[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 312 -> 504[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 313 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.04 313[label="vyw400 == vyw3000",fontsize=16,color="magenta"];313 -> 505[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 313 -> 506[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 314 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.04 314[label="vyw400 == vyw3000",fontsize=16,color="magenta"];314 -> 507[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 314 -> 508[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 315 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.04 315[label="vyw400 == vyw3000",fontsize=16,color="magenta"];315 -> 509[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 315 -> 510[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 316 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.04 316[label="vyw400 == vyw3000",fontsize=16,color="magenta"];316 -> 511[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 316 -> 512[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 317 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.04 317[label="vyw400 == vyw3000",fontsize=16,color="magenta"];317 -> 513[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 317 -> 514[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 318 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.04 318[label="vyw400 == vyw3000",fontsize=16,color="magenta"];318 -> 515[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 318 -> 516[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 319 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.04 319[label="vyw400 == vyw3000",fontsize=16,color="magenta"];319 -> 517[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 319 -> 518[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 320 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.04 320[label="vyw400 == vyw3000",fontsize=16,color="magenta"];320 -> 519[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 320 -> 520[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 321 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.04 321[label="vyw400 == vyw3000",fontsize=16,color="magenta"];321 -> 521[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 321 -> 522[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 322 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.04 322[label="vyw400 == vyw3000",fontsize=16,color="magenta"];322 -> 523[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 322 -> 524[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 323 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.04 323[label="vyw400 == vyw3000",fontsize=16,color="magenta"];323 -> 525[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 323 -> 526[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 324 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.04 324[label="vyw400 == vyw3000",fontsize=16,color="magenta"];324 -> 527[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 324 -> 528[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 325 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.04 325[label="vyw400 == vyw3000",fontsize=16,color="magenta"];325 -> 529[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 325 -> 530[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 326 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.04 326[label="vyw400 == vyw3000",fontsize=16,color="magenta"];326 -> 531[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 326 -> 532[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 327 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.04 327[label="vyw400 == vyw3000",fontsize=16,color="magenta"];327 -> 533[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 327 -> 534[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 328 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.04 328[label="vyw400 == vyw3000",fontsize=16,color="magenta"];328 -> 535[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 328 -> 536[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 329 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.04 329[label="vyw400 == vyw3000",fontsize=16,color="magenta"];329 -> 537[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 329 -> 538[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 330 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.04 330[label="vyw400 == vyw3000",fontsize=16,color="magenta"];330 -> 539[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 330 -> 540[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 331 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.04 331[label="vyw400 == vyw3000",fontsize=16,color="magenta"];331 -> 541[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 331 -> 542[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 332 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.04 332[label="vyw400 == vyw3000",fontsize=16,color="magenta"];332 -> 543[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 332 -> 544[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 333 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.04 333[label="vyw400 == vyw3000",fontsize=16,color="magenta"];333 -> 545[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 333 -> 546[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 334 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.04 334[label="vyw400 == vyw3000",fontsize=16,color="magenta"];334 -> 547[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 334 -> 548[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 335 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.04 335[label="vyw400 == vyw3000",fontsize=16,color="magenta"];335 -> 549[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 335 -> 550[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 336 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.04 336[label="vyw400 == vyw3000",fontsize=16,color="magenta"];336 -> 551[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 336 -> 552[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 337 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.04 337[label="vyw400 == vyw3000",fontsize=16,color="magenta"];337 -> 553[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 337 -> 554[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1146[label="compare2 vyw43 vyw45 False",fontsize=16,color="black",shape="box"];1146 -> 1166[label="",style="solid", color="black", weight=3]; 25.79/11.04 1147[label="compare2 vyw43 vyw45 True",fontsize=16,color="black",shape="box"];1147 -> 1167[label="",style="solid", color="black", weight=3]; 25.79/11.04 1148 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1148[label="vyw32 == vyw34",fontsize=16,color="magenta"];1148 -> 1168[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1148 -> 1169[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1149 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1149[label="vyw32 == vyw34",fontsize=16,color="magenta"];1149 -> 1170[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1149 -> 1171[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1150 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1150[label="vyw32 == vyw34",fontsize=16,color="magenta"];1150 -> 1172[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1150 -> 1173[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1151 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1151[label="vyw32 == vyw34",fontsize=16,color="magenta"];1151 -> 1174[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1151 -> 1175[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1152 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1152[label="vyw32 == vyw34",fontsize=16,color="magenta"];1152 -> 1176[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1152 -> 1177[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1153 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1153[label="vyw32 == vyw34",fontsize=16,color="magenta"];1153 -> 1178[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1153 -> 1179[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1154 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1154[label="vyw32 == vyw34",fontsize=16,color="magenta"];1154 -> 1180[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1154 -> 1181[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1155 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1155[label="vyw32 == vyw34",fontsize=16,color="magenta"];1155 -> 1182[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1155 -> 1183[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1156 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1156[label="vyw32 == vyw34",fontsize=16,color="magenta"];1156 -> 1184[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1156 -> 1185[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1157 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1157[label="vyw32 == vyw34",fontsize=16,color="magenta"];1157 -> 1186[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1157 -> 1187[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1158 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1158[label="vyw32 == vyw34",fontsize=16,color="magenta"];1158 -> 1188[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1158 -> 1189[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1159 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1159[label="vyw32 == vyw34",fontsize=16,color="magenta"];1159 -> 1190[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1159 -> 1191[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1160 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1160[label="vyw32 == vyw34",fontsize=16,color="magenta"];1160 -> 1192[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1160 -> 1193[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1161 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.04 1161[label="vyw32 == vyw34",fontsize=16,color="magenta"];1161 -> 1194[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 1161 -> 1195[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 354[label="compare3 (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];354 -> 585[label="",style="solid", color="black", weight=3]; 25.79/11.04 355[label="FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True",fontsize=16,color="black",shape="box"];355 -> 586[label="",style="solid", color="black", weight=3]; 25.79/11.04 356[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];357[label="vyw20",fontsize=16,color="green",shape="box"];385 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.04 385[label="vyw401 == vyw3001",fontsize=16,color="magenta"];385 -> 587[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 385 -> 588[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 386 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.04 386[label="vyw401 == vyw3001",fontsize=16,color="magenta"];386 -> 589[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 386 -> 590[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 387 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.04 387[label="vyw401 == vyw3001",fontsize=16,color="magenta"];387 -> 591[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 387 -> 592[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 388 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.04 388[label="vyw401 == vyw3001",fontsize=16,color="magenta"];388 -> 593[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 388 -> 594[label="",style="dashed", color="magenta", weight=3]; 25.79/11.04 389 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.04 389[label="vyw401 == vyw3001",fontsize=16,color="magenta"];389 -> 595[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 389 -> 596[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 390 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 390[label="vyw401 == vyw3001",fontsize=16,color="magenta"];390 -> 597[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 390 -> 598[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 391 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 391[label="vyw401 == vyw3001",fontsize=16,color="magenta"];391 -> 599[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 391 -> 600[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 392 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 392[label="vyw401 == vyw3001",fontsize=16,color="magenta"];392 -> 601[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 392 -> 602[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 393 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 393[label="vyw401 == vyw3001",fontsize=16,color="magenta"];393 -> 603[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 393 -> 604[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 394 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 394[label="vyw401 == vyw3001",fontsize=16,color="magenta"];394 -> 605[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 394 -> 606[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 395 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 395[label="vyw401 == vyw3001",fontsize=16,color="magenta"];395 -> 607[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 395 -> 608[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 396 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 396[label="vyw401 == vyw3001",fontsize=16,color="magenta"];396 -> 609[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 396 -> 610[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 397 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.05 397[label="vyw401 == vyw3001",fontsize=16,color="magenta"];397 -> 611[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 397 -> 612[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 398 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 398[label="vyw401 == vyw3001",fontsize=16,color="magenta"];398 -> 613[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 398 -> 614[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 399 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.05 399[label="vyw400 == vyw3000",fontsize=16,color="magenta"];399 -> 615[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 399 -> 616[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 400 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 400[label="vyw400 == vyw3000",fontsize=16,color="magenta"];400 -> 617[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 400 -> 618[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 401 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.05 401[label="vyw400 == vyw3000",fontsize=16,color="magenta"];401 -> 619[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 401 -> 620[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 402 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.05 402[label="vyw400 == vyw3000",fontsize=16,color="magenta"];402 -> 621[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 402 -> 622[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 403 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.05 403[label="vyw400 == vyw3000",fontsize=16,color="magenta"];403 -> 623[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 403 -> 624[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 404 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 404[label="vyw400 == vyw3000",fontsize=16,color="magenta"];404 -> 625[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 404 -> 626[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 405 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 405[label="vyw400 == vyw3000",fontsize=16,color="magenta"];405 -> 627[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 405 -> 628[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 406 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 406[label="vyw400 == vyw3000",fontsize=16,color="magenta"];406 -> 629[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 406 -> 630[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 407 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 407[label="vyw400 == vyw3000",fontsize=16,color="magenta"];407 -> 631[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 407 -> 632[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 408 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 408[label="vyw400 == vyw3000",fontsize=16,color="magenta"];408 -> 633[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 408 -> 634[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 409 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 409[label="vyw400 == vyw3000",fontsize=16,color="magenta"];409 -> 635[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 409 -> 636[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 410 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 410[label="vyw400 == vyw3000",fontsize=16,color="magenta"];410 -> 637[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 410 -> 638[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 411 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.05 411[label="vyw400 == vyw3000",fontsize=16,color="magenta"];411 -> 639[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 411 -> 640[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 412 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 412[label="vyw400 == vyw3000",fontsize=16,color="magenta"];412 -> 641[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 412 -> 642[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 413[label="False && vyw60",fontsize=16,color="black",shape="box"];413 -> 643[label="",style="solid", color="black", weight=3]; 25.79/11.05 414[label="True && vyw60",fontsize=16,color="black",shape="box"];414 -> 644[label="",style="solid", color="black", weight=3]; 25.79/11.05 415[label="primEqNat (Succ vyw4000) vyw3000",fontsize=16,color="burlywood",shape="box"];2509[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];415 -> 2509[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2509 -> 645[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2510[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];415 -> 2510[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2510 -> 646[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 416[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];2511[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];416 -> 2511[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2511 -> 647[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2512[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];416 -> 2512[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2512 -> 648[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 417[label="vyw401 * vyw3000",fontsize=16,color="black",shape="triangle"];417 -> 649[label="",style="solid", color="black", weight=3]; 25.79/11.05 418 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.05 418[label="vyw400 * vyw3001",fontsize=16,color="magenta"];418 -> 650[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 418 -> 651[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 419 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.05 419[label="vyw401 * vyw3000",fontsize=16,color="magenta"];419 -> 652[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 419 -> 653[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 420 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.05 420[label="vyw400 * vyw3001",fontsize=16,color="magenta"];420 -> 654[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 420 -> 655[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 421[label="vyw402 == vyw3002",fontsize=16,color="blue",shape="box"];2513[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2513[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2513 -> 656[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2514[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2514[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2514 -> 657[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2515[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2515[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2515 -> 658[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2516[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2516[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2516 -> 659[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2517[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2517[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2517 -> 660[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2518[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2518[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2518 -> 661[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2519[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2519[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2519 -> 662[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2520[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2520[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2520 -> 663[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2521[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2521[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2521 -> 664[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2522[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2522[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2522 -> 665[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2523[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2523[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2523 -> 666[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2524[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2524[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2524 -> 667[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2525[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2525[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2525 -> 668[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2526[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];421 -> 2526[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2526 -> 669[label="",style="solid", color="blue", weight=3]; 25.79/11.05 422[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];2527[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2527[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2527 -> 670[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2528[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2528[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2528 -> 671[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2529[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2529[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2529 -> 672[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2530[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2530[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2530 -> 673[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2531[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2531[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2531 -> 674[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2532[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2532[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2532 -> 675[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2533[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2533[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2533 -> 676[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2534[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2534[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2534 -> 677[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2535[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2535[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2535 -> 678[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2536[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2536[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2536 -> 679[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2537[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2537[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2537 -> 680[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2538[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2538[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2538 -> 681[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2539[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2539[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2539 -> 682[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2540[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];422 -> 2540[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2540 -> 683[label="",style="solid", color="blue", weight=3]; 25.79/11.05 423 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.05 423[label="vyw400 == vyw3000",fontsize=16,color="magenta"];423 -> 684[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 423 -> 685[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 424 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 424[label="vyw400 == vyw3000",fontsize=16,color="magenta"];424 -> 686[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 424 -> 687[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 425 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.05 425[label="vyw400 == vyw3000",fontsize=16,color="magenta"];425 -> 688[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 425 -> 689[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 426 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.05 426[label="vyw400 == vyw3000",fontsize=16,color="magenta"];426 -> 690[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 426 -> 691[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 427 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.05 427[label="vyw400 == vyw3000",fontsize=16,color="magenta"];427 -> 692[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 427 -> 693[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 428 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 428[label="vyw400 == vyw3000",fontsize=16,color="magenta"];428 -> 694[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 428 -> 695[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 429 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 429[label="vyw400 == vyw3000",fontsize=16,color="magenta"];429 -> 696[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 429 -> 697[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 430 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 430[label="vyw400 == vyw3000",fontsize=16,color="magenta"];430 -> 698[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 430 -> 699[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 431 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 431[label="vyw400 == vyw3000",fontsize=16,color="magenta"];431 -> 700[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 431 -> 701[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 432 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 432[label="vyw400 == vyw3000",fontsize=16,color="magenta"];432 -> 702[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 432 -> 703[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 433 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 433[label="vyw400 == vyw3000",fontsize=16,color="magenta"];433 -> 704[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 433 -> 705[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 434 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 434[label="vyw400 == vyw3000",fontsize=16,color="magenta"];434 -> 706[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 434 -> 707[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 435 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.05 435[label="vyw400 == vyw3000",fontsize=16,color="magenta"];435 -> 708[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 435 -> 709[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 436 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 436[label="vyw400 == vyw3000",fontsize=16,color="magenta"];436 -> 710[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 436 -> 711[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 437[label="primEqInt (Pos (Succ vyw4000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];437 -> 712[label="",style="solid", color="black", weight=3]; 25.79/11.05 438[label="primEqInt (Pos (Succ vyw4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];438 -> 713[label="",style="solid", color="black", weight=3]; 25.79/11.05 439[label="False",fontsize=16,color="green",shape="box"];440[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];440 -> 714[label="",style="solid", color="black", weight=3]; 25.79/11.05 441[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];441 -> 715[label="",style="solid", color="black", weight=3]; 25.79/11.05 442[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];442 -> 716[label="",style="solid", color="black", weight=3]; 25.79/11.05 443[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];443 -> 717[label="",style="solid", color="black", weight=3]; 25.79/11.05 444[label="False",fontsize=16,color="green",shape="box"];445[label="primEqInt (Neg (Succ vyw4000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];445 -> 718[label="",style="solid", color="black", weight=3]; 25.79/11.05 446[label="primEqInt (Neg (Succ vyw4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];446 -> 719[label="",style="solid", color="black", weight=3]; 25.79/11.05 447[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];447 -> 720[label="",style="solid", color="black", weight=3]; 25.79/11.05 448[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];448 -> 721[label="",style="solid", color="black", weight=3]; 25.79/11.05 449[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];449 -> 722[label="",style="solid", color="black", weight=3]; 25.79/11.05 450[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];450 -> 723[label="",style="solid", color="black", weight=3]; 25.79/11.05 451[label="vyw3001",fontsize=16,color="green",shape="box"];452[label="vyw401",fontsize=16,color="green",shape="box"];453 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.05 453[label="vyw400 == vyw3000",fontsize=16,color="magenta"];453 -> 724[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 453 -> 725[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 454 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 454[label="vyw400 == vyw3000",fontsize=16,color="magenta"];454 -> 726[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 454 -> 727[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 455 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.05 455[label="vyw400 == vyw3000",fontsize=16,color="magenta"];455 -> 728[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 455 -> 729[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 456 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.05 456[label="vyw400 == vyw3000",fontsize=16,color="magenta"];456 -> 730[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 456 -> 731[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 457 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.05 457[label="vyw400 == vyw3000",fontsize=16,color="magenta"];457 -> 732[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 457 -> 733[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 458 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 458[label="vyw400 == vyw3000",fontsize=16,color="magenta"];458 -> 734[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 458 -> 735[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 459 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 459[label="vyw400 == vyw3000",fontsize=16,color="magenta"];459 -> 736[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 459 -> 737[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 460 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 460[label="vyw400 == vyw3000",fontsize=16,color="magenta"];460 -> 738[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 460 -> 739[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 461 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 461[label="vyw400 == vyw3000",fontsize=16,color="magenta"];461 -> 740[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 461 -> 741[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 462 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 462[label="vyw400 == vyw3000",fontsize=16,color="magenta"];462 -> 742[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 462 -> 743[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 463 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 463[label="vyw400 == vyw3000",fontsize=16,color="magenta"];463 -> 744[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 463 -> 745[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 464 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 464[label="vyw400 == vyw3000",fontsize=16,color="magenta"];464 -> 746[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 464 -> 747[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 465 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.05 465[label="vyw400 == vyw3000",fontsize=16,color="magenta"];465 -> 748[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 465 -> 749[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 466 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 466[label="vyw400 == vyw3000",fontsize=16,color="magenta"];466 -> 750[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 466 -> 751[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 467[label="vyw3000",fontsize=16,color="green",shape="box"];468[label="vyw400",fontsize=16,color="green",shape="box"];469[label="vyw3000",fontsize=16,color="green",shape="box"];470[label="vyw400",fontsize=16,color="green",shape="box"];471[label="vyw3000",fontsize=16,color="green",shape="box"];472[label="vyw400",fontsize=16,color="green",shape="box"];473[label="vyw3000",fontsize=16,color="green",shape="box"];474[label="vyw400",fontsize=16,color="green",shape="box"];475[label="vyw3000",fontsize=16,color="green",shape="box"];476[label="vyw400",fontsize=16,color="green",shape="box"];477[label="vyw3000",fontsize=16,color="green",shape="box"];478[label="vyw400",fontsize=16,color="green",shape="box"];479[label="vyw3000",fontsize=16,color="green",shape="box"];480[label="vyw400",fontsize=16,color="green",shape="box"];481[label="vyw3000",fontsize=16,color="green",shape="box"];482[label="vyw400",fontsize=16,color="green",shape="box"];483[label="vyw3000",fontsize=16,color="green",shape="box"];484[label="vyw400",fontsize=16,color="green",shape="box"];485[label="vyw3000",fontsize=16,color="green",shape="box"];486[label="vyw400",fontsize=16,color="green",shape="box"];487[label="vyw3000",fontsize=16,color="green",shape="box"];488[label="vyw400",fontsize=16,color="green",shape="box"];489[label="vyw3000",fontsize=16,color="green",shape="box"];490[label="vyw400",fontsize=16,color="green",shape="box"];491[label="vyw3000",fontsize=16,color="green",shape="box"];492[label="vyw400",fontsize=16,color="green",shape="box"];493[label="vyw3000",fontsize=16,color="green",shape="box"];494[label="vyw400",fontsize=16,color="green",shape="box"];495 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 495[label="vyw401 == vyw3001",fontsize=16,color="magenta"];495 -> 752[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 495 -> 753[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 496 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 496[label="vyw401 == vyw3001",fontsize=16,color="magenta"];496 -> 754[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 496 -> 755[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 497 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 497[label="vyw400 == vyw3000",fontsize=16,color="magenta"];497 -> 756[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 497 -> 757[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 498 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 498[label="vyw400 == vyw3000",fontsize=16,color="magenta"];498 -> 758[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 498 -> 759[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 499[label="vyw3000",fontsize=16,color="green",shape="box"];500[label="vyw400",fontsize=16,color="green",shape="box"];501[label="vyw3000",fontsize=16,color="green",shape="box"];502[label="vyw400",fontsize=16,color="green",shape="box"];503[label="vyw3000",fontsize=16,color="green",shape="box"];504[label="vyw400",fontsize=16,color="green",shape="box"];505[label="vyw3000",fontsize=16,color="green",shape="box"];506[label="vyw400",fontsize=16,color="green",shape="box"];507[label="vyw3000",fontsize=16,color="green",shape="box"];508[label="vyw400",fontsize=16,color="green",shape="box"];509[label="vyw3000",fontsize=16,color="green",shape="box"];510[label="vyw400",fontsize=16,color="green",shape="box"];511[label="vyw3000",fontsize=16,color="green",shape="box"];512[label="vyw400",fontsize=16,color="green",shape="box"];513[label="vyw3000",fontsize=16,color="green",shape="box"];514[label="vyw400",fontsize=16,color="green",shape="box"];515[label="vyw3000",fontsize=16,color="green",shape="box"];516[label="vyw400",fontsize=16,color="green",shape="box"];517[label="vyw3000",fontsize=16,color="green",shape="box"];518[label="vyw400",fontsize=16,color="green",shape="box"];519[label="vyw3000",fontsize=16,color="green",shape="box"];520[label="vyw400",fontsize=16,color="green",shape="box"];521[label="vyw3000",fontsize=16,color="green",shape="box"];522[label="vyw400",fontsize=16,color="green",shape="box"];523[label="vyw3000",fontsize=16,color="green",shape="box"];524[label="vyw400",fontsize=16,color="green",shape="box"];525[label="vyw3000",fontsize=16,color="green",shape="box"];526[label="vyw400",fontsize=16,color="green",shape="box"];527[label="vyw3000",fontsize=16,color="green",shape="box"];528[label="vyw400",fontsize=16,color="green",shape="box"];529[label="vyw3000",fontsize=16,color="green",shape="box"];530[label="vyw400",fontsize=16,color="green",shape="box"];531[label="vyw3000",fontsize=16,color="green",shape="box"];532[label="vyw400",fontsize=16,color="green",shape="box"];533[label="vyw3000",fontsize=16,color="green",shape="box"];534[label="vyw400",fontsize=16,color="green",shape="box"];535[label="vyw3000",fontsize=16,color="green",shape="box"];536[label="vyw400",fontsize=16,color="green",shape="box"];537[label="vyw3000",fontsize=16,color="green",shape="box"];538[label="vyw400",fontsize=16,color="green",shape="box"];539[label="vyw3000",fontsize=16,color="green",shape="box"];540[label="vyw400",fontsize=16,color="green",shape="box"];541[label="vyw3000",fontsize=16,color="green",shape="box"];542[label="vyw400",fontsize=16,color="green",shape="box"];543[label="vyw3000",fontsize=16,color="green",shape="box"];544[label="vyw400",fontsize=16,color="green",shape="box"];545[label="vyw3000",fontsize=16,color="green",shape="box"];546[label="vyw400",fontsize=16,color="green",shape="box"];547[label="vyw3000",fontsize=16,color="green",shape="box"];548[label="vyw400",fontsize=16,color="green",shape="box"];549[label="vyw3000",fontsize=16,color="green",shape="box"];550[label="vyw400",fontsize=16,color="green",shape="box"];551[label="vyw3000",fontsize=16,color="green",shape="box"];552[label="vyw400",fontsize=16,color="green",shape="box"];553[label="vyw3000",fontsize=16,color="green",shape="box"];554[label="vyw400",fontsize=16,color="green",shape="box"];1166[label="compare1 vyw43 vyw45 (vyw43 <= vyw45)",fontsize=16,color="burlywood",shape="box"];2541[label="vyw43/(vyw430,vyw431)",fontsize=10,color="white",style="solid",shape="box"];1166 -> 2541[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2541 -> 1200[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1167[label="EQ",fontsize=16,color="green",shape="box"];1168[label="vyw34",fontsize=16,color="green",shape="box"];1169[label="vyw32",fontsize=16,color="green",shape="box"];1170[label="vyw34",fontsize=16,color="green",shape="box"];1171[label="vyw32",fontsize=16,color="green",shape="box"];1172[label="vyw34",fontsize=16,color="green",shape="box"];1173[label="vyw32",fontsize=16,color="green",shape="box"];1174[label="vyw34",fontsize=16,color="green",shape="box"];1175[label="vyw32",fontsize=16,color="green",shape="box"];1176[label="vyw34",fontsize=16,color="green",shape="box"];1177[label="vyw32",fontsize=16,color="green",shape="box"];1178[label="vyw34",fontsize=16,color="green",shape="box"];1179[label="vyw32",fontsize=16,color="green",shape="box"];1180[label="vyw34",fontsize=16,color="green",shape="box"];1181[label="vyw32",fontsize=16,color="green",shape="box"];1182[label="vyw34",fontsize=16,color="green",shape="box"];1183[label="vyw32",fontsize=16,color="green",shape="box"];1184[label="vyw34",fontsize=16,color="green",shape="box"];1185[label="vyw32",fontsize=16,color="green",shape="box"];1186[label="vyw34",fontsize=16,color="green",shape="box"];1187[label="vyw32",fontsize=16,color="green",shape="box"];1188[label="vyw34",fontsize=16,color="green",shape="box"];1189[label="vyw32",fontsize=16,color="green",shape="box"];1190[label="vyw34",fontsize=16,color="green",shape="box"];1191[label="vyw32",fontsize=16,color="green",shape="box"];1192[label="vyw34",fontsize=16,color="green",shape="box"];1193[label="vyw32",fontsize=16,color="green",shape="box"];1194[label="vyw34",fontsize=16,color="green",shape="box"];1195[label="vyw32",fontsize=16,color="green",shape="box"];585 -> 1132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 585[label="compare2 (vyw21,vyw22) (vyw15,vyw16) ((vyw21,vyw22) == (vyw15,vyw16))",fontsize=16,color="magenta"];585 -> 1142[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 585 -> 1143[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 585 -> 1144[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 586[label="Just vyw17",fontsize=16,color="green",shape="box"];587[label="vyw3001",fontsize=16,color="green",shape="box"];588[label="vyw401",fontsize=16,color="green",shape="box"];589[label="vyw3001",fontsize=16,color="green",shape="box"];590[label="vyw401",fontsize=16,color="green",shape="box"];591[label="vyw3001",fontsize=16,color="green",shape="box"];592[label="vyw401",fontsize=16,color="green",shape="box"];593[label="vyw3001",fontsize=16,color="green",shape="box"];594[label="vyw401",fontsize=16,color="green",shape="box"];595[label="vyw3001",fontsize=16,color="green",shape="box"];596[label="vyw401",fontsize=16,color="green",shape="box"];597[label="vyw3001",fontsize=16,color="green",shape="box"];598[label="vyw401",fontsize=16,color="green",shape="box"];599[label="vyw3001",fontsize=16,color="green",shape="box"];600[label="vyw401",fontsize=16,color="green",shape="box"];601[label="vyw3001",fontsize=16,color="green",shape="box"];602[label="vyw401",fontsize=16,color="green",shape="box"];603[label="vyw3001",fontsize=16,color="green",shape="box"];604[label="vyw401",fontsize=16,color="green",shape="box"];605[label="vyw3001",fontsize=16,color="green",shape="box"];606[label="vyw401",fontsize=16,color="green",shape="box"];607[label="vyw3001",fontsize=16,color="green",shape="box"];608[label="vyw401",fontsize=16,color="green",shape="box"];609[label="vyw3001",fontsize=16,color="green",shape="box"];610[label="vyw401",fontsize=16,color="green",shape="box"];611[label="vyw3001",fontsize=16,color="green",shape="box"];612[label="vyw401",fontsize=16,color="green",shape="box"];613[label="vyw3001",fontsize=16,color="green",shape="box"];614[label="vyw401",fontsize=16,color="green",shape="box"];615[label="vyw3000",fontsize=16,color="green",shape="box"];616[label="vyw400",fontsize=16,color="green",shape="box"];617[label="vyw3000",fontsize=16,color="green",shape="box"];618[label="vyw400",fontsize=16,color="green",shape="box"];619[label="vyw3000",fontsize=16,color="green",shape="box"];620[label="vyw400",fontsize=16,color="green",shape="box"];621[label="vyw3000",fontsize=16,color="green",shape="box"];622[label="vyw400",fontsize=16,color="green",shape="box"];623[label="vyw3000",fontsize=16,color="green",shape="box"];624[label="vyw400",fontsize=16,color="green",shape="box"];625[label="vyw3000",fontsize=16,color="green",shape="box"];626[label="vyw400",fontsize=16,color="green",shape="box"];627[label="vyw3000",fontsize=16,color="green",shape="box"];628[label="vyw400",fontsize=16,color="green",shape="box"];629[label="vyw3000",fontsize=16,color="green",shape="box"];630[label="vyw400",fontsize=16,color="green",shape="box"];631[label="vyw3000",fontsize=16,color="green",shape="box"];632[label="vyw400",fontsize=16,color="green",shape="box"];633[label="vyw3000",fontsize=16,color="green",shape="box"];634[label="vyw400",fontsize=16,color="green",shape="box"];635[label="vyw3000",fontsize=16,color="green",shape="box"];636[label="vyw400",fontsize=16,color="green",shape="box"];637[label="vyw3000",fontsize=16,color="green",shape="box"];638[label="vyw400",fontsize=16,color="green",shape="box"];639[label="vyw3000",fontsize=16,color="green",shape="box"];640[label="vyw400",fontsize=16,color="green",shape="box"];641[label="vyw3000",fontsize=16,color="green",shape="box"];642[label="vyw400",fontsize=16,color="green",shape="box"];643[label="False",fontsize=16,color="green",shape="box"];644[label="vyw60",fontsize=16,color="green",shape="box"];645[label="primEqNat (Succ vyw4000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];645 -> 766[label="",style="solid", color="black", weight=3]; 25.79/11.05 646[label="primEqNat (Succ vyw4000) Zero",fontsize=16,color="black",shape="box"];646 -> 767[label="",style="solid", color="black", weight=3]; 25.79/11.05 647[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];647 -> 768[label="",style="solid", color="black", weight=3]; 25.79/11.05 648[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];648 -> 769[label="",style="solid", color="black", weight=3]; 25.79/11.05 649[label="primMulInt vyw401 vyw3000",fontsize=16,color="burlywood",shape="triangle"];2542[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];649 -> 2542[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2542 -> 770[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2543[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];649 -> 2543[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2543 -> 771[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 650[label="vyw400",fontsize=16,color="green",shape="box"];651[label="vyw3001",fontsize=16,color="green",shape="box"];652[label="vyw401",fontsize=16,color="green",shape="box"];653[label="vyw3000",fontsize=16,color="green",shape="box"];654[label="vyw400",fontsize=16,color="green",shape="box"];655[label="vyw3001",fontsize=16,color="green",shape="box"];656 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.05 656[label="vyw402 == vyw3002",fontsize=16,color="magenta"];656 -> 772[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 656 -> 773[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 657 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 657[label="vyw402 == vyw3002",fontsize=16,color="magenta"];657 -> 774[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 657 -> 775[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 658 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.05 658[label="vyw402 == vyw3002",fontsize=16,color="magenta"];658 -> 776[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 658 -> 777[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 659 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.05 659[label="vyw402 == vyw3002",fontsize=16,color="magenta"];659 -> 778[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 659 -> 779[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 660 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.05 660[label="vyw402 == vyw3002",fontsize=16,color="magenta"];660 -> 780[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 660 -> 781[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 661 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 661[label="vyw402 == vyw3002",fontsize=16,color="magenta"];661 -> 782[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 661 -> 783[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 662 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 662[label="vyw402 == vyw3002",fontsize=16,color="magenta"];662 -> 784[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 662 -> 785[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 663 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 663[label="vyw402 == vyw3002",fontsize=16,color="magenta"];663 -> 786[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 663 -> 787[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 664 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 664[label="vyw402 == vyw3002",fontsize=16,color="magenta"];664 -> 788[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 664 -> 789[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 665 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 665[label="vyw402 == vyw3002",fontsize=16,color="magenta"];665 -> 790[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 665 -> 791[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 666 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 666[label="vyw402 == vyw3002",fontsize=16,color="magenta"];666 -> 792[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 666 -> 793[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 667 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 667[label="vyw402 == vyw3002",fontsize=16,color="magenta"];667 -> 794[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 667 -> 795[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 668 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.05 668[label="vyw402 == vyw3002",fontsize=16,color="magenta"];668 -> 796[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 668 -> 797[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 669 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 669[label="vyw402 == vyw3002",fontsize=16,color="magenta"];669 -> 798[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 669 -> 799[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 670 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.05 670[label="vyw401 == vyw3001",fontsize=16,color="magenta"];670 -> 800[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 670 -> 801[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 671 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 671[label="vyw401 == vyw3001",fontsize=16,color="magenta"];671 -> 802[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 671 -> 803[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 672 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.05 672[label="vyw401 == vyw3001",fontsize=16,color="magenta"];672 -> 804[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 672 -> 805[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 673 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.05 673[label="vyw401 == vyw3001",fontsize=16,color="magenta"];673 -> 806[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 673 -> 807[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 674 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.05 674[label="vyw401 == vyw3001",fontsize=16,color="magenta"];674 -> 808[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 674 -> 809[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 675 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 675[label="vyw401 == vyw3001",fontsize=16,color="magenta"];675 -> 810[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 675 -> 811[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 676 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 676[label="vyw401 == vyw3001",fontsize=16,color="magenta"];676 -> 812[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 676 -> 813[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 677 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 677[label="vyw401 == vyw3001",fontsize=16,color="magenta"];677 -> 814[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 677 -> 815[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 678 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 678[label="vyw401 == vyw3001",fontsize=16,color="magenta"];678 -> 816[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 678 -> 817[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 679 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 679[label="vyw401 == vyw3001",fontsize=16,color="magenta"];679 -> 818[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 679 -> 819[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 680 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 680[label="vyw401 == vyw3001",fontsize=16,color="magenta"];680 -> 820[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 680 -> 821[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 681 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 681[label="vyw401 == vyw3001",fontsize=16,color="magenta"];681 -> 822[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 681 -> 823[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 682 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.05 682[label="vyw401 == vyw3001",fontsize=16,color="magenta"];682 -> 824[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 682 -> 825[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 683 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 683[label="vyw401 == vyw3001",fontsize=16,color="magenta"];683 -> 826[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 683 -> 827[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 684[label="vyw3000",fontsize=16,color="green",shape="box"];685[label="vyw400",fontsize=16,color="green",shape="box"];686[label="vyw3000",fontsize=16,color="green",shape="box"];687[label="vyw400",fontsize=16,color="green",shape="box"];688[label="vyw3000",fontsize=16,color="green",shape="box"];689[label="vyw400",fontsize=16,color="green",shape="box"];690[label="vyw3000",fontsize=16,color="green",shape="box"];691[label="vyw400",fontsize=16,color="green",shape="box"];692[label="vyw3000",fontsize=16,color="green",shape="box"];693[label="vyw400",fontsize=16,color="green",shape="box"];694[label="vyw3000",fontsize=16,color="green",shape="box"];695[label="vyw400",fontsize=16,color="green",shape="box"];696[label="vyw3000",fontsize=16,color="green",shape="box"];697[label="vyw400",fontsize=16,color="green",shape="box"];698[label="vyw3000",fontsize=16,color="green",shape="box"];699[label="vyw400",fontsize=16,color="green",shape="box"];700[label="vyw3000",fontsize=16,color="green",shape="box"];701[label="vyw400",fontsize=16,color="green",shape="box"];702[label="vyw3000",fontsize=16,color="green",shape="box"];703[label="vyw400",fontsize=16,color="green",shape="box"];704[label="vyw3000",fontsize=16,color="green",shape="box"];705[label="vyw400",fontsize=16,color="green",shape="box"];706[label="vyw3000",fontsize=16,color="green",shape="box"];707[label="vyw400",fontsize=16,color="green",shape="box"];708[label="vyw3000",fontsize=16,color="green",shape="box"];709[label="vyw400",fontsize=16,color="green",shape="box"];710[label="vyw3000",fontsize=16,color="green",shape="box"];711[label="vyw400",fontsize=16,color="green",shape="box"];712 -> 272[label="",style="dashed", color="red", weight=0]; 25.79/11.05 712[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];712 -> 828[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 712 -> 829[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 713[label="False",fontsize=16,color="green",shape="box"];714[label="False",fontsize=16,color="green",shape="box"];715[label="True",fontsize=16,color="green",shape="box"];716[label="False",fontsize=16,color="green",shape="box"];717[label="True",fontsize=16,color="green",shape="box"];718 -> 272[label="",style="dashed", color="red", weight=0]; 25.79/11.05 718[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];718 -> 830[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 718 -> 831[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 719[label="False",fontsize=16,color="green",shape="box"];720[label="False",fontsize=16,color="green",shape="box"];721[label="True",fontsize=16,color="green",shape="box"];722[label="False",fontsize=16,color="green",shape="box"];723[label="True",fontsize=16,color="green",shape="box"];724[label="vyw3000",fontsize=16,color="green",shape="box"];725[label="vyw400",fontsize=16,color="green",shape="box"];726[label="vyw3000",fontsize=16,color="green",shape="box"];727[label="vyw400",fontsize=16,color="green",shape="box"];728[label="vyw3000",fontsize=16,color="green",shape="box"];729[label="vyw400",fontsize=16,color="green",shape="box"];730[label="vyw3000",fontsize=16,color="green",shape="box"];731[label="vyw400",fontsize=16,color="green",shape="box"];732[label="vyw3000",fontsize=16,color="green",shape="box"];733[label="vyw400",fontsize=16,color="green",shape="box"];734[label="vyw3000",fontsize=16,color="green",shape="box"];735[label="vyw400",fontsize=16,color="green",shape="box"];736[label="vyw3000",fontsize=16,color="green",shape="box"];737[label="vyw400",fontsize=16,color="green",shape="box"];738[label="vyw3000",fontsize=16,color="green",shape="box"];739[label="vyw400",fontsize=16,color="green",shape="box"];740[label="vyw3000",fontsize=16,color="green",shape="box"];741[label="vyw400",fontsize=16,color="green",shape="box"];742[label="vyw3000",fontsize=16,color="green",shape="box"];743[label="vyw400",fontsize=16,color="green",shape="box"];744[label="vyw3000",fontsize=16,color="green",shape="box"];745[label="vyw400",fontsize=16,color="green",shape="box"];746[label="vyw3000",fontsize=16,color="green",shape="box"];747[label="vyw400",fontsize=16,color="green",shape="box"];748[label="vyw3000",fontsize=16,color="green",shape="box"];749[label="vyw400",fontsize=16,color="green",shape="box"];750[label="vyw3000",fontsize=16,color="green",shape="box"];751[label="vyw400",fontsize=16,color="green",shape="box"];752[label="vyw3001",fontsize=16,color="green",shape="box"];753[label="vyw401",fontsize=16,color="green",shape="box"];754[label="vyw3001",fontsize=16,color="green",shape="box"];755[label="vyw401",fontsize=16,color="green",shape="box"];756[label="vyw3000",fontsize=16,color="green",shape="box"];757[label="vyw400",fontsize=16,color="green",shape="box"];758[label="vyw3000",fontsize=16,color="green",shape="box"];759[label="vyw400",fontsize=16,color="green",shape="box"];1200[label="compare1 (vyw430,vyw431) vyw45 ((vyw430,vyw431) <= vyw45)",fontsize=16,color="burlywood",shape="box"];2544[label="vyw45/(vyw450,vyw451)",fontsize=10,color="white",style="solid",shape="box"];1200 -> 2544[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2544 -> 1203[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1142[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];1143[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1144 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1144[label="(vyw21,vyw22) == (vyw15,vyw16)",fontsize=16,color="magenta"];1144 -> 1162[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1144 -> 1163[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 766 -> 272[label="",style="dashed", color="red", weight=0]; 25.79/11.05 766[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];766 -> 836[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 766 -> 837[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 767[label="False",fontsize=16,color="green",shape="box"];768[label="False",fontsize=16,color="green",shape="box"];769[label="True",fontsize=16,color="green",shape="box"];770[label="primMulInt (Pos vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];2545[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];770 -> 2545[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2545 -> 838[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2546[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];770 -> 2546[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2546 -> 839[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 771[label="primMulInt (Neg vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];2547[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];771 -> 2547[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2547 -> 840[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2548[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];771 -> 2548[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2548 -> 841[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 772[label="vyw3002",fontsize=16,color="green",shape="box"];773[label="vyw402",fontsize=16,color="green",shape="box"];774[label="vyw3002",fontsize=16,color="green",shape="box"];775[label="vyw402",fontsize=16,color="green",shape="box"];776[label="vyw3002",fontsize=16,color="green",shape="box"];777[label="vyw402",fontsize=16,color="green",shape="box"];778[label="vyw3002",fontsize=16,color="green",shape="box"];779[label="vyw402",fontsize=16,color="green",shape="box"];780[label="vyw3002",fontsize=16,color="green",shape="box"];781[label="vyw402",fontsize=16,color="green",shape="box"];782[label="vyw3002",fontsize=16,color="green",shape="box"];783[label="vyw402",fontsize=16,color="green",shape="box"];784[label="vyw3002",fontsize=16,color="green",shape="box"];785[label="vyw402",fontsize=16,color="green",shape="box"];786[label="vyw3002",fontsize=16,color="green",shape="box"];787[label="vyw402",fontsize=16,color="green",shape="box"];788[label="vyw3002",fontsize=16,color="green",shape="box"];789[label="vyw402",fontsize=16,color="green",shape="box"];790[label="vyw3002",fontsize=16,color="green",shape="box"];791[label="vyw402",fontsize=16,color="green",shape="box"];792[label="vyw3002",fontsize=16,color="green",shape="box"];793[label="vyw402",fontsize=16,color="green",shape="box"];794[label="vyw3002",fontsize=16,color="green",shape="box"];795[label="vyw402",fontsize=16,color="green",shape="box"];796[label="vyw3002",fontsize=16,color="green",shape="box"];797[label="vyw402",fontsize=16,color="green",shape="box"];798[label="vyw3002",fontsize=16,color="green",shape="box"];799[label="vyw402",fontsize=16,color="green",shape="box"];800[label="vyw3001",fontsize=16,color="green",shape="box"];801[label="vyw401",fontsize=16,color="green",shape="box"];802[label="vyw3001",fontsize=16,color="green",shape="box"];803[label="vyw401",fontsize=16,color="green",shape="box"];804[label="vyw3001",fontsize=16,color="green",shape="box"];805[label="vyw401",fontsize=16,color="green",shape="box"];806[label="vyw3001",fontsize=16,color="green",shape="box"];807[label="vyw401",fontsize=16,color="green",shape="box"];808[label="vyw3001",fontsize=16,color="green",shape="box"];809[label="vyw401",fontsize=16,color="green",shape="box"];810[label="vyw3001",fontsize=16,color="green",shape="box"];811[label="vyw401",fontsize=16,color="green",shape="box"];812[label="vyw3001",fontsize=16,color="green",shape="box"];813[label="vyw401",fontsize=16,color="green",shape="box"];814[label="vyw3001",fontsize=16,color="green",shape="box"];815[label="vyw401",fontsize=16,color="green",shape="box"];816[label="vyw3001",fontsize=16,color="green",shape="box"];817[label="vyw401",fontsize=16,color="green",shape="box"];818[label="vyw3001",fontsize=16,color="green",shape="box"];819[label="vyw401",fontsize=16,color="green",shape="box"];820[label="vyw3001",fontsize=16,color="green",shape="box"];821[label="vyw401",fontsize=16,color="green",shape="box"];822[label="vyw3001",fontsize=16,color="green",shape="box"];823[label="vyw401",fontsize=16,color="green",shape="box"];824[label="vyw3001",fontsize=16,color="green",shape="box"];825[label="vyw401",fontsize=16,color="green",shape="box"];826[label="vyw3001",fontsize=16,color="green",shape="box"];827[label="vyw401",fontsize=16,color="green",shape="box"];828[label="vyw4000",fontsize=16,color="green",shape="box"];829[label="vyw30000",fontsize=16,color="green",shape="box"];830[label="vyw4000",fontsize=16,color="green",shape="box"];831[label="vyw30000",fontsize=16,color="green",shape="box"];1203[label="compare1 (vyw430,vyw431) (vyw450,vyw451) ((vyw430,vyw431) <= (vyw450,vyw451))",fontsize=16,color="black",shape="box"];1203 -> 1205[label="",style="solid", color="black", weight=3]; 25.79/11.05 1162[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1163[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];836[label="vyw4000",fontsize=16,color="green",shape="box"];837[label="vyw30000",fontsize=16,color="green",shape="box"];838[label="primMulInt (Pos vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];838 -> 875[label="",style="solid", color="black", weight=3]; 25.79/11.05 839[label="primMulInt (Pos vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];839 -> 876[label="",style="solid", color="black", weight=3]; 25.79/11.05 840[label="primMulInt (Neg vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];840 -> 877[label="",style="solid", color="black", weight=3]; 25.79/11.05 841[label="primMulInt (Neg vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];841 -> 878[label="",style="solid", color="black", weight=3]; 25.79/11.05 1205 -> 1212[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1205[label="compare1 (vyw430,vyw431) (vyw450,vyw451) (vyw430 < vyw450 || vyw430 == vyw450 && vyw431 <= vyw451)",fontsize=16,color="magenta"];1205 -> 1213[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1205 -> 1214[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1205 -> 1215[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1205 -> 1216[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1205 -> 1217[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1205 -> 1218[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 875[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];875 -> 923[label="",style="dashed", color="green", weight=3]; 25.79/11.05 876[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];876 -> 924[label="",style="dashed", color="green", weight=3]; 25.79/11.05 877[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];877 -> 925[label="",style="dashed", color="green", weight=3]; 25.79/11.05 878[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];878 -> 926[label="",style="dashed", color="green", weight=3]; 25.79/11.05 1213[label="vyw430",fontsize=16,color="green",shape="box"];1214[label="vyw451",fontsize=16,color="green",shape="box"];1215[label="vyw430 < vyw450",fontsize=16,color="blue",shape="box"];2549[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2549[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2549 -> 1225[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2550[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2550[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2550 -> 1226[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2551[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2551[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2551 -> 1227[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2552[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2552[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2552 -> 1228[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2553[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2553[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2553 -> 1229[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2554[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2554[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2554 -> 1230[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2555[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2555[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2555 -> 1231[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2556[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2556[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2556 -> 1232[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2557[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2557[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2557 -> 1233[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2558[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2558[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2558 -> 1234[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2559[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2559[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2559 -> 1235[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2560[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2560[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2560 -> 1236[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2561[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2561[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2561 -> 1237[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2562[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1215 -> 2562[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2562 -> 1238[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1216 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1216[label="vyw430 == vyw450 && vyw431 <= vyw451",fontsize=16,color="magenta"];1216 -> 1239[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1216 -> 1240[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1217[label="vyw431",fontsize=16,color="green",shape="box"];1218[label="vyw450",fontsize=16,color="green",shape="box"];1212[label="compare1 (vyw86,vyw87) (vyw88,vyw89) (vyw90 || vyw91)",fontsize=16,color="burlywood",shape="triangle"];2563[label="vyw90/False",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2563[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2563 -> 1241[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2564[label="vyw90/True",fontsize=10,color="white",style="solid",shape="box"];1212 -> 2564[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2564 -> 1242[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 923[label="primMulNat vyw4010 vyw30000",fontsize=16,color="burlywood",shape="triangle"];2565[label="vyw4010/Succ vyw40100",fontsize=10,color="white",style="solid",shape="box"];923 -> 2565[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2565 -> 1005[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2566[label="vyw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];923 -> 2566[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2566 -> 1006[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 924 -> 923[label="",style="dashed", color="red", weight=0]; 25.79/11.05 924[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];924 -> 1007[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 925 -> 923[label="",style="dashed", color="red", weight=0]; 25.79/11.05 925[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];925 -> 1008[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 926 -> 923[label="",style="dashed", color="red", weight=0]; 25.79/11.05 926[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];926 -> 1009[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 926 -> 1010[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1225[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1225 -> 1247[label="",style="solid", color="black", weight=3]; 25.79/11.05 1226[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1226 -> 1248[label="",style="solid", color="black", weight=3]; 25.79/11.05 1227[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1227 -> 1249[label="",style="solid", color="black", weight=3]; 25.79/11.05 1228[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1228 -> 1250[label="",style="solid", color="black", weight=3]; 25.79/11.05 1229[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1229 -> 1251[label="",style="solid", color="black", weight=3]; 25.79/11.05 1230[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1230 -> 1252[label="",style="solid", color="black", weight=3]; 25.79/11.05 1231[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1231 -> 1253[label="",style="solid", color="black", weight=3]; 25.79/11.05 1232[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1232 -> 1254[label="",style="solid", color="black", weight=3]; 25.79/11.05 1233[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1233 -> 1255[label="",style="solid", color="black", weight=3]; 25.79/11.05 1234[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1234 -> 1256[label="",style="solid", color="black", weight=3]; 25.79/11.05 1235[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1235 -> 1257[label="",style="solid", color="black", weight=3]; 25.79/11.05 1236[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1236 -> 1258[label="",style="solid", color="black", weight=3]; 25.79/11.05 1237[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1237 -> 1259[label="",style="solid", color="black", weight=3]; 25.79/11.05 1238[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1238 -> 1260[label="",style="solid", color="black", weight=3]; 25.79/11.05 1239[label="vyw431 <= vyw451",fontsize=16,color="blue",shape="box"];2567[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2567[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2567 -> 1261[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2568[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2568[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2568 -> 1262[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2569[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2569[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2569 -> 1263[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2570[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2570[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2570 -> 1264[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2571[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2571[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2571 -> 1265[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2572[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2572[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2572 -> 1266[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2573[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2573[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2573 -> 1267[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2574[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2574[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2574 -> 1268[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2575[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2575[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2575 -> 1269[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2576[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2576[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2576 -> 1270[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2577[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2577[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2577 -> 1271[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2578[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2578[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2578 -> 1272[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2579[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2579[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2579 -> 1273[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2580[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2580[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2580 -> 1274[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1240[label="vyw430 == vyw450",fontsize=16,color="blue",shape="box"];2581[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2581[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2581 -> 1275[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2582[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2582[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2582 -> 1276[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2583[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2583[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2583 -> 1277[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2584[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2584[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2584 -> 1278[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2585[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2585[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2585 -> 1279[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2586[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2586[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2586 -> 1280[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2587[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2587[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2587 -> 1281[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2588[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2588[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2588 -> 1282[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2589[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2589[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2589 -> 1283[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2590[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2590[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2590 -> 1284[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2591[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2591[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2591 -> 1285[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2592[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2592[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2592 -> 1286[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2593[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2593[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2593 -> 1287[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2594[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1240 -> 2594[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2594 -> 1288[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1241[label="compare1 (vyw86,vyw87) (vyw88,vyw89) (False || vyw91)",fontsize=16,color="black",shape="box"];1241 -> 1289[label="",style="solid", color="black", weight=3]; 25.79/11.05 1242[label="compare1 (vyw86,vyw87) (vyw88,vyw89) (True || vyw91)",fontsize=16,color="black",shape="box"];1242 -> 1290[label="",style="solid", color="black", weight=3]; 25.79/11.05 1005[label="primMulNat (Succ vyw40100) vyw30000",fontsize=16,color="burlywood",shape="box"];2595[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];1005 -> 2595[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2595 -> 1060[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2596[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1005 -> 2596[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2596 -> 1061[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1006[label="primMulNat Zero vyw30000",fontsize=16,color="burlywood",shape="box"];2597[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2597[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2597 -> 1062[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2598[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];1006 -> 2598[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2598 -> 1063[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1007[label="vyw30000",fontsize=16,color="green",shape="box"];1008[label="vyw4010",fontsize=16,color="green",shape="box"];1009[label="vyw30000",fontsize=16,color="green",shape="box"];1010[label="vyw4010",fontsize=16,color="green",shape="box"];1247 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1247[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1247 -> 1295[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1247 -> 1296[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1248 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1248[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1248 -> 1297[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1248 -> 1298[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1249 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1249[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1249 -> 1299[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1249 -> 1300[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1250 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1250[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1250 -> 1301[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1250 -> 1302[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1251 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1251[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1251 -> 1303[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1251 -> 1304[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1252 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1252[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1252 -> 1305[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1252 -> 1306[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1253 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1253[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1253 -> 1307[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1253 -> 1308[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1254 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1254[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1254 -> 1309[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1254 -> 1310[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1255 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1255[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1255 -> 1311[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1255 -> 1312[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1256 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1256[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1256 -> 1313[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1256 -> 1314[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1257 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1257[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1257 -> 1315[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1257 -> 1316[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1258 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1258[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1258 -> 1317[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1258 -> 1318[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1259 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1259[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1259 -> 1319[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1259 -> 1320[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1260 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1260[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1260 -> 1321[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1260 -> 1322[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1261[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1261 -> 1323[label="",style="solid", color="black", weight=3]; 25.79/11.05 1262[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1262 -> 1324[label="",style="solid", color="black", weight=3]; 25.79/11.05 1263[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2599[label="vyw431/(vyw4310,vyw4311)",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2599[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2599 -> 1325[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1264[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1264 -> 1326[label="",style="solid", color="black", weight=3]; 25.79/11.05 1265[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1265 -> 1327[label="",style="solid", color="black", weight=3]; 25.79/11.05 1266[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1266 -> 1328[label="",style="solid", color="black", weight=3]; 25.79/11.05 1267[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2600[label="vyw431/Left vyw4310",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2600[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2600 -> 1329[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2601[label="vyw431/Right vyw4310",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2601[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2601 -> 1330[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1268[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2602[label="vyw431/LT",fontsize=10,color="white",style="solid",shape="box"];1268 -> 2602[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2602 -> 1331[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2603[label="vyw431/EQ",fontsize=10,color="white",style="solid",shape="box"];1268 -> 2603[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2603 -> 1332[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2604[label="vyw431/GT",fontsize=10,color="white",style="solid",shape="box"];1268 -> 2604[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2604 -> 1333[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1269[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1269 -> 1334[label="",style="solid", color="black", weight=3]; 25.79/11.05 1270[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1270 -> 1335[label="",style="solid", color="black", weight=3]; 25.79/11.05 1271[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2605[label="vyw431/Nothing",fontsize=10,color="white",style="solid",shape="box"];1271 -> 2605[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2605 -> 1336[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2606[label="vyw431/Just vyw4310",fontsize=10,color="white",style="solid",shape="box"];1271 -> 2606[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2606 -> 1337[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1272[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1272 -> 1338[label="",style="solid", color="black", weight=3]; 25.79/11.05 1273[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2607[label="vyw431/(vyw4310,vyw4311,vyw4312)",fontsize=10,color="white",style="solid",shape="box"];1273 -> 2607[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2607 -> 1339[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1274[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2608[label="vyw431/False",fontsize=10,color="white",style="solid",shape="box"];1274 -> 2608[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2608 -> 1340[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2609[label="vyw431/True",fontsize=10,color="white",style="solid",shape="box"];1274 -> 2609[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2609 -> 1341[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1275 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1275[label="vyw430 == vyw450",fontsize=16,color="magenta"];1275 -> 1342[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1275 -> 1343[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1276 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1276[label="vyw430 == vyw450",fontsize=16,color="magenta"];1276 -> 1344[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1276 -> 1345[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1277 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1277[label="vyw430 == vyw450",fontsize=16,color="magenta"];1277 -> 1346[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1277 -> 1347[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1278 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1278[label="vyw430 == vyw450",fontsize=16,color="magenta"];1278 -> 1348[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1278 -> 1349[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1279 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1279[label="vyw430 == vyw450",fontsize=16,color="magenta"];1279 -> 1350[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1279 -> 1351[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1280 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1280[label="vyw430 == vyw450",fontsize=16,color="magenta"];1280 -> 1352[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1280 -> 1353[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1281 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1281[label="vyw430 == vyw450",fontsize=16,color="magenta"];1281 -> 1354[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1281 -> 1355[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1282 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1282[label="vyw430 == vyw450",fontsize=16,color="magenta"];1282 -> 1356[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1282 -> 1357[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1283 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1283[label="vyw430 == vyw450",fontsize=16,color="magenta"];1283 -> 1358[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1283 -> 1359[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1284 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1284[label="vyw430 == vyw450",fontsize=16,color="magenta"];1284 -> 1360[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1284 -> 1361[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1285 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1285[label="vyw430 == vyw450",fontsize=16,color="magenta"];1285 -> 1362[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1285 -> 1363[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1286 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1286[label="vyw430 == vyw450",fontsize=16,color="magenta"];1286 -> 1364[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1286 -> 1365[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1287 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1287[label="vyw430 == vyw450",fontsize=16,color="magenta"];1287 -> 1366[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1287 -> 1367[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1288 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1288[label="vyw430 == vyw450",fontsize=16,color="magenta"];1288 -> 1368[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1288 -> 1369[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1289[label="compare1 (vyw86,vyw87) (vyw88,vyw89) vyw91",fontsize=16,color="burlywood",shape="triangle"];2610[label="vyw91/False",fontsize=10,color="white",style="solid",shape="box"];1289 -> 2610[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2610 -> 1370[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2611[label="vyw91/True",fontsize=10,color="white",style="solid",shape="box"];1289 -> 2611[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2611 -> 1371[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1290 -> 1289[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1290[label="compare1 (vyw86,vyw87) (vyw88,vyw89) True",fontsize=16,color="magenta"];1290 -> 1372[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1060[label="primMulNat (Succ vyw40100) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1060 -> 1123[label="",style="solid", color="black", weight=3]; 25.79/11.05 1061[label="primMulNat (Succ vyw40100) Zero",fontsize=16,color="black",shape="box"];1061 -> 1124[label="",style="solid", color="black", weight=3]; 25.79/11.05 1062[label="primMulNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1062 -> 1125[label="",style="solid", color="black", weight=3]; 25.79/11.05 1063[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1063 -> 1126[label="",style="solid", color="black", weight=3]; 25.79/11.05 1295[label="LT",fontsize=16,color="green",shape="box"];1296[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2612[label="vyw430/vyw4300 : vyw4301",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2612[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2612 -> 1374[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2613[label="vyw430/[]",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2613[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2613 -> 1375[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1297[label="LT",fontsize=16,color="green",shape="box"];1298[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1298 -> 1376[label="",style="solid", color="black", weight=3]; 25.79/11.05 1299[label="LT",fontsize=16,color="green",shape="box"];1300[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1300 -> 1377[label="",style="solid", color="black", weight=3]; 25.79/11.05 1301[label="LT",fontsize=16,color="green",shape="box"];1302[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1302 -> 1378[label="",style="solid", color="black", weight=3]; 25.79/11.05 1303[label="LT",fontsize=16,color="green",shape="box"];1304[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1304 -> 1379[label="",style="solid", color="black", weight=3]; 25.79/11.05 1305[label="LT",fontsize=16,color="green",shape="box"];1306[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1306 -> 1380[label="",style="solid", color="black", weight=3]; 25.79/11.05 1307[label="LT",fontsize=16,color="green",shape="box"];1308[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1308 -> 1381[label="",style="solid", color="black", weight=3]; 25.79/11.05 1309[label="LT",fontsize=16,color="green",shape="box"];1310[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1310 -> 1382[label="",style="solid", color="black", weight=3]; 25.79/11.05 1311[label="LT",fontsize=16,color="green",shape="box"];1312[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2614[label="vyw430/()",fontsize=10,color="white",style="solid",shape="box"];1312 -> 2614[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2614 -> 1383[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1313[label="LT",fontsize=16,color="green",shape="box"];1314[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2615[label="vyw430/Integer vyw4300",fontsize=10,color="white",style="solid",shape="box"];1314 -> 2615[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2615 -> 1384[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1315[label="LT",fontsize=16,color="green",shape="box"];1316[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1316 -> 1385[label="",style="solid", color="black", weight=3]; 25.79/11.05 1317[label="LT",fontsize=16,color="green",shape="box"];1318[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2616[label="vyw430/vyw4300 :% vyw4301",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2616[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2616 -> 1386[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1319[label="LT",fontsize=16,color="green",shape="box"];1320[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1320 -> 1387[label="",style="solid", color="black", weight=3]; 25.79/11.05 1321[label="LT",fontsize=16,color="green",shape="box"];1322[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1322 -> 1388[label="",style="solid", color="black", weight=3]; 25.79/11.05 1323 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1323[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1323 -> 1390[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1324 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1324[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1324 -> 1391[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1325[label="(vyw4310,vyw4311) <= vyw451",fontsize=16,color="burlywood",shape="box"];2617[label="vyw451/(vyw4510,vyw4511)",fontsize=10,color="white",style="solid",shape="box"];1325 -> 2617[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2617 -> 1398[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1326 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1326[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1326 -> 1392[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1327 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1327[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1327 -> 1393[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1328 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1328[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1328 -> 1394[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1329[label="Left vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2618[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2618[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2618 -> 1399[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2619[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2619[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2619 -> 1400[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1330[label="Right vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2620[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2620[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2620 -> 1401[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2621[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1330 -> 2621[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2621 -> 1402[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1331[label="LT <= vyw451",fontsize=16,color="burlywood",shape="box"];2622[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2622[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2622 -> 1403[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2623[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2623[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2623 -> 1404[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2624[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2624[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2624 -> 1405[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1332[label="EQ <= vyw451",fontsize=16,color="burlywood",shape="box"];2625[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1332 -> 2625[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2625 -> 1406[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2626[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1332 -> 2626[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2626 -> 1407[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2627[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1332 -> 2627[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2627 -> 1408[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1333[label="GT <= vyw451",fontsize=16,color="burlywood",shape="box"];2628[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1333 -> 2628[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2628 -> 1409[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2629[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1333 -> 2629[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2629 -> 1410[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2630[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1333 -> 2630[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2630 -> 1411[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1334 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1334[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1334 -> 1395[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1335 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1335[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1335 -> 1396[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1336[label="Nothing <= vyw451",fontsize=16,color="burlywood",shape="box"];2631[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1336 -> 2631[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2631 -> 1412[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2632[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1336 -> 2632[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2632 -> 1413[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1337[label="Just vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2633[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1337 -> 2633[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2633 -> 1414[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2634[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1337 -> 2634[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2634 -> 1415[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1338 -> 1389[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1338[label="compare vyw431 vyw451 /= GT",fontsize=16,color="magenta"];1338 -> 1397[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1339[label="(vyw4310,vyw4311,vyw4312) <= vyw451",fontsize=16,color="burlywood",shape="box"];2635[label="vyw451/(vyw4510,vyw4511,vyw4512)",fontsize=10,color="white",style="solid",shape="box"];1339 -> 2635[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2635 -> 1416[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1340[label="False <= vyw451",fontsize=16,color="burlywood",shape="box"];2636[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1340 -> 2636[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2636 -> 1417[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2637[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1340 -> 2637[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2637 -> 1418[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1341[label="True <= vyw451",fontsize=16,color="burlywood",shape="box"];2638[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1341 -> 2638[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2638 -> 1419[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2639[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1341 -> 2639[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2639 -> 1420[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1342[label="vyw450",fontsize=16,color="green",shape="box"];1343[label="vyw430",fontsize=16,color="green",shape="box"];1344[label="vyw450",fontsize=16,color="green",shape="box"];1345[label="vyw430",fontsize=16,color="green",shape="box"];1346[label="vyw450",fontsize=16,color="green",shape="box"];1347[label="vyw430",fontsize=16,color="green",shape="box"];1348[label="vyw450",fontsize=16,color="green",shape="box"];1349[label="vyw430",fontsize=16,color="green",shape="box"];1350[label="vyw450",fontsize=16,color="green",shape="box"];1351[label="vyw430",fontsize=16,color="green",shape="box"];1352[label="vyw450",fontsize=16,color="green",shape="box"];1353[label="vyw430",fontsize=16,color="green",shape="box"];1354[label="vyw450",fontsize=16,color="green",shape="box"];1355[label="vyw430",fontsize=16,color="green",shape="box"];1356[label="vyw450",fontsize=16,color="green",shape="box"];1357[label="vyw430",fontsize=16,color="green",shape="box"];1358[label="vyw450",fontsize=16,color="green",shape="box"];1359[label="vyw430",fontsize=16,color="green",shape="box"];1360[label="vyw450",fontsize=16,color="green",shape="box"];1361[label="vyw430",fontsize=16,color="green",shape="box"];1362[label="vyw450",fontsize=16,color="green",shape="box"];1363[label="vyw430",fontsize=16,color="green",shape="box"];1364[label="vyw450",fontsize=16,color="green",shape="box"];1365[label="vyw430",fontsize=16,color="green",shape="box"];1366[label="vyw450",fontsize=16,color="green",shape="box"];1367[label="vyw430",fontsize=16,color="green",shape="box"];1368[label="vyw450",fontsize=16,color="green",shape="box"];1369[label="vyw430",fontsize=16,color="green",shape="box"];1370[label="compare1 (vyw86,vyw87) (vyw88,vyw89) False",fontsize=16,color="black",shape="box"];1370 -> 1421[label="",style="solid", color="black", weight=3]; 25.79/11.05 1371[label="compare1 (vyw86,vyw87) (vyw88,vyw89) True",fontsize=16,color="black",shape="box"];1371 -> 1422[label="",style="solid", color="black", weight=3]; 25.79/11.05 1372[label="True",fontsize=16,color="green",shape="box"];1123 -> 1164[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1123[label="primPlusNat (primMulNat vyw40100 (Succ vyw300000)) (Succ vyw300000)",fontsize=16,color="magenta"];1123 -> 1165[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1124[label="Zero",fontsize=16,color="green",shape="box"];1125[label="Zero",fontsize=16,color="green",shape="box"];1126[label="Zero",fontsize=16,color="green",shape="box"];1374[label="compare (vyw4300 : vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2640[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2640[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2640 -> 1423[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2641[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2641[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2641 -> 1424[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1375[label="compare [] vyw450",fontsize=16,color="burlywood",shape="box"];2642[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2642[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2642 -> 1425[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2643[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2643[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2643 -> 1426[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1376[label="primCmpChar vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2644[label="vyw430/Char vyw4300",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2644[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2644 -> 1427[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1377[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1377 -> 1428[label="",style="solid", color="black", weight=3]; 25.79/11.05 1378[label="primCmpInt vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2645[label="vyw430/Pos vyw4300",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2645[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2645 -> 1429[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2646[label="vyw430/Neg vyw4300",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2646[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2646 -> 1430[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1379[label="primCmpFloat vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2647[label="vyw430/Float vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1379 -> 2647[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2647 -> 1431[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1380[label="primCmpDouble vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2648[label="vyw430/Double vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2648[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2648 -> 1432[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1381[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1381 -> 1433[label="",style="solid", color="black", weight=3]; 25.79/11.05 1382[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1382 -> 1434[label="",style="solid", color="black", weight=3]; 25.79/11.05 1383[label="compare () vyw450",fontsize=16,color="burlywood",shape="box"];2649[label="vyw450/()",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2649[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2649 -> 1435[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1384[label="compare (Integer vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2650[label="vyw450/Integer vyw4500",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2650[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2650 -> 1436[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1385[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1385 -> 1437[label="",style="solid", color="black", weight=3]; 25.79/11.05 1386[label="compare (vyw4300 :% vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2651[label="vyw450/vyw4500 :% vyw4501",fontsize=10,color="white",style="solid",shape="box"];1386 -> 2651[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2651 -> 1438[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1387[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1387 -> 1439[label="",style="solid", color="black", weight=3]; 25.79/11.05 1388[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1388 -> 1440[label="",style="solid", color="black", weight=3]; 25.79/11.05 1390 -> 1296[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1390[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1390 -> 1441[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1390 -> 1442[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1389[label="vyw92 /= GT",fontsize=16,color="black",shape="triangle"];1389 -> 1443[label="",style="solid", color="black", weight=3]; 25.79/11.05 1391 -> 1298[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1391[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1391 -> 1444[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1391 -> 1445[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1398[label="(vyw4310,vyw4311) <= (vyw4510,vyw4511)",fontsize=16,color="black",shape="box"];1398 -> 1460[label="",style="solid", color="black", weight=3]; 25.79/11.05 1392 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1392[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1392 -> 1446[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1392 -> 1447[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1393 -> 1304[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1393[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1393 -> 1448[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1393 -> 1449[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1394 -> 1306[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1394[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1394 -> 1450[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1394 -> 1451[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1399[label="Left vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1399 -> 1461[label="",style="solid", color="black", weight=3]; 25.79/11.05 1400[label="Left vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1400 -> 1462[label="",style="solid", color="black", weight=3]; 25.79/11.05 1401[label="Right vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1401 -> 1463[label="",style="solid", color="black", weight=3]; 25.79/11.05 1402[label="Right vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1402 -> 1464[label="",style="solid", color="black", weight=3]; 25.79/11.05 1403[label="LT <= LT",fontsize=16,color="black",shape="box"];1403 -> 1465[label="",style="solid", color="black", weight=3]; 25.79/11.05 1404[label="LT <= EQ",fontsize=16,color="black",shape="box"];1404 -> 1466[label="",style="solid", color="black", weight=3]; 25.79/11.05 1405[label="LT <= GT",fontsize=16,color="black",shape="box"];1405 -> 1467[label="",style="solid", color="black", weight=3]; 25.79/11.05 1406[label="EQ <= LT",fontsize=16,color="black",shape="box"];1406 -> 1468[label="",style="solid", color="black", weight=3]; 25.79/11.05 1407[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1407 -> 1469[label="",style="solid", color="black", weight=3]; 25.79/11.05 1408[label="EQ <= GT",fontsize=16,color="black",shape="box"];1408 -> 1470[label="",style="solid", color="black", weight=3]; 25.79/11.05 1409[label="GT <= LT",fontsize=16,color="black",shape="box"];1409 -> 1471[label="",style="solid", color="black", weight=3]; 25.79/11.05 1410[label="GT <= EQ",fontsize=16,color="black",shape="box"];1410 -> 1472[label="",style="solid", color="black", weight=3]; 25.79/11.05 1411[label="GT <= GT",fontsize=16,color="black",shape="box"];1411 -> 1473[label="",style="solid", color="black", weight=3]; 25.79/11.05 1395 -> 1312[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1395[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1395 -> 1452[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1395 -> 1453[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1396 -> 1314[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1396[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1396 -> 1454[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1396 -> 1455[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1412[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1412 -> 1474[label="",style="solid", color="black", weight=3]; 25.79/11.05 1413[label="Nothing <= Just vyw4510",fontsize=16,color="black",shape="box"];1413 -> 1475[label="",style="solid", color="black", weight=3]; 25.79/11.05 1414[label="Just vyw4310 <= Nothing",fontsize=16,color="black",shape="box"];1414 -> 1476[label="",style="solid", color="black", weight=3]; 25.79/11.05 1415[label="Just vyw4310 <= Just vyw4510",fontsize=16,color="black",shape="box"];1415 -> 1477[label="",style="solid", color="black", weight=3]; 25.79/11.05 1397 -> 1318[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1397[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1397 -> 1456[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1397 -> 1457[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1416[label="(vyw4310,vyw4311,vyw4312) <= (vyw4510,vyw4511,vyw4512)",fontsize=16,color="black",shape="box"];1416 -> 1478[label="",style="solid", color="black", weight=3]; 25.79/11.05 1417[label="False <= False",fontsize=16,color="black",shape="box"];1417 -> 1479[label="",style="solid", color="black", weight=3]; 25.79/11.05 1418[label="False <= True",fontsize=16,color="black",shape="box"];1418 -> 1480[label="",style="solid", color="black", weight=3]; 25.79/11.05 1419[label="True <= False",fontsize=16,color="black",shape="box"];1419 -> 1481[label="",style="solid", color="black", weight=3]; 25.79/11.05 1420[label="True <= True",fontsize=16,color="black",shape="box"];1420 -> 1482[label="",style="solid", color="black", weight=3]; 25.79/11.05 1421[label="compare0 (vyw86,vyw87) (vyw88,vyw89) otherwise",fontsize=16,color="black",shape="box"];1421 -> 1483[label="",style="solid", color="black", weight=3]; 25.79/11.05 1422[label="LT",fontsize=16,color="green",shape="box"];1165 -> 923[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1165[label="primMulNat vyw40100 (Succ vyw300000)",fontsize=16,color="magenta"];1165 -> 1196[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1165 -> 1197[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1164[label="primPlusNat vyw77 (Succ vyw300000)",fontsize=16,color="burlywood",shape="triangle"];2652[label="vyw77/Succ vyw770",fontsize=10,color="white",style="solid",shape="box"];1164 -> 2652[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2652 -> 1198[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2653[label="vyw77/Zero",fontsize=10,color="white",style="solid",shape="box"];1164 -> 2653[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2653 -> 1199[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1423[label="compare (vyw4300 : vyw4301) (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1423 -> 1484[label="",style="solid", color="black", weight=3]; 25.79/11.05 1424[label="compare (vyw4300 : vyw4301) []",fontsize=16,color="black",shape="box"];1424 -> 1485[label="",style="solid", color="black", weight=3]; 25.79/11.05 1425[label="compare [] (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1425 -> 1486[label="",style="solid", color="black", weight=3]; 25.79/11.05 1426[label="compare [] []",fontsize=16,color="black",shape="box"];1426 -> 1487[label="",style="solid", color="black", weight=3]; 25.79/11.05 1427[label="primCmpChar (Char vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2654[label="vyw450/Char vyw4500",fontsize=10,color="white",style="solid",shape="box"];1427 -> 2654[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2654 -> 1488[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1428 -> 1132[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1428[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1428 -> 1489[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1428 -> 1490[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1428 -> 1491[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1429[label="primCmpInt (Pos vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2655[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2655[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2655 -> 1492[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2656[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2656[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2656 -> 1493[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1430[label="primCmpInt (Neg vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2657[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2657[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2657 -> 1494[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2658[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2658[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2658 -> 1495[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1431[label="primCmpFloat (Float vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2659[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1431 -> 2659[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2659 -> 1496[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2660[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1431 -> 2660[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2660 -> 1497[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1432[label="primCmpDouble (Double vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2661[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1432 -> 2661[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2661 -> 1498[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2662[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1432 -> 2662[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2662 -> 1499[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1433 -> 1500[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1433[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1433 -> 1501[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1434 -> 1502[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1434[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1434 -> 1503[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1435[label="compare () ()",fontsize=16,color="black",shape="box"];1435 -> 1504[label="",style="solid", color="black", weight=3]; 25.79/11.05 1436[label="compare (Integer vyw4300) (Integer vyw4500)",fontsize=16,color="black",shape="box"];1436 -> 1505[label="",style="solid", color="black", weight=3]; 25.79/11.05 1437 -> 1506[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1437[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1437 -> 1507[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1438[label="compare (vyw4300 :% vyw4301) (vyw4500 :% vyw4501)",fontsize=16,color="black",shape="box"];1438 -> 1508[label="",style="solid", color="black", weight=3]; 25.79/11.05 1439 -> 1509[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1439[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1439 -> 1510[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1440 -> 1511[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1440[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1440 -> 1512[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1441[label="vyw451",fontsize=16,color="green",shape="box"];1442[label="vyw431",fontsize=16,color="green",shape="box"];1443 -> 1513[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1443[label="not (vyw92 == GT)",fontsize=16,color="magenta"];1443 -> 1514[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1444[label="vyw451",fontsize=16,color="green",shape="box"];1445[label="vyw431",fontsize=16,color="green",shape="box"];1460 -> 1610[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1460[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1460 -> 1611[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1460 -> 1612[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1446[label="vyw451",fontsize=16,color="green",shape="box"];1447[label="vyw431",fontsize=16,color="green",shape="box"];1448[label="vyw451",fontsize=16,color="green",shape="box"];1449[label="vyw431",fontsize=16,color="green",shape="box"];1450[label="vyw451",fontsize=16,color="green",shape="box"];1451[label="vyw431",fontsize=16,color="green",shape="box"];1461[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2663[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2663[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2663 -> 1520[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2664[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2664[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2664 -> 1521[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2665[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2665[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2665 -> 1522[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2666[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2666[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2666 -> 1523[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2667[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2667[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2667 -> 1524[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2668[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2668[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2668 -> 1525[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2669[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2669[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2669 -> 1526[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2670[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2670[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2670 -> 1527[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2671[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2671[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2671 -> 1528[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2672[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2672[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2672 -> 1529[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2673[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2673[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2673 -> 1530[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2674[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2674[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2674 -> 1531[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2675[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2675[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2675 -> 1532[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2676[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2676[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2676 -> 1533[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1462[label="True",fontsize=16,color="green",shape="box"];1463[label="False",fontsize=16,color="green",shape="box"];1464[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2677[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2677[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2677 -> 1534[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2678[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2678[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2678 -> 1535[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2679[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2679[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2679 -> 1536[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2680[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2680[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2680 -> 1537[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2681[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2681[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2681 -> 1538[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2682[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2682[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2682 -> 1539[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2683[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2683[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2683 -> 1540[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2684[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2684[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2684 -> 1541[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2685[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2685[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2685 -> 1542[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2686[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2686[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2686 -> 1543[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2687[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2687[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2687 -> 1544[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2688[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2688[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2688 -> 1545[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2689[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2689[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2689 -> 1546[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2690[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2690[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2690 -> 1547[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1465[label="True",fontsize=16,color="green",shape="box"];1466[label="True",fontsize=16,color="green",shape="box"];1467[label="True",fontsize=16,color="green",shape="box"];1468[label="False",fontsize=16,color="green",shape="box"];1469[label="True",fontsize=16,color="green",shape="box"];1470[label="True",fontsize=16,color="green",shape="box"];1471[label="False",fontsize=16,color="green",shape="box"];1472[label="False",fontsize=16,color="green",shape="box"];1473[label="True",fontsize=16,color="green",shape="box"];1452[label="vyw451",fontsize=16,color="green",shape="box"];1453[label="vyw431",fontsize=16,color="green",shape="box"];1454[label="vyw451",fontsize=16,color="green",shape="box"];1455[label="vyw431",fontsize=16,color="green",shape="box"];1474[label="True",fontsize=16,color="green",shape="box"];1475[label="True",fontsize=16,color="green",shape="box"];1476[label="False",fontsize=16,color="green",shape="box"];1477[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2691[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2691[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2691 -> 1548[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2692[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2692[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2692 -> 1549[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2693[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2693[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2693 -> 1550[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2694[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2694[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2694 -> 1551[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2695[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2695[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2695 -> 1552[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2696[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2696[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2696 -> 1553[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2697[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2697[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2697 -> 1554[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2698[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2698[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2698 -> 1555[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2699[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2699[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2699 -> 1556[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2700[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2700[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2700 -> 1557[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2701[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2701[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2701 -> 1558[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2702[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2702[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2702 -> 1559[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2703[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2703[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2703 -> 1560[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2704[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2704[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2704 -> 1561[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1456[label="vyw451",fontsize=16,color="green",shape="box"];1457[label="vyw431",fontsize=16,color="green",shape="box"];1478 -> 1610[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1478[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1478 -> 1613[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1478 -> 1614[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1479[label="True",fontsize=16,color="green",shape="box"];1480[label="True",fontsize=16,color="green",shape="box"];1481[label="False",fontsize=16,color="green",shape="box"];1482[label="True",fontsize=16,color="green",shape="box"];1483[label="compare0 (vyw86,vyw87) (vyw88,vyw89) True",fontsize=16,color="black",shape="box"];1483 -> 1562[label="",style="solid", color="black", weight=3]; 25.79/11.05 1196[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1197[label="vyw40100",fontsize=16,color="green",shape="box"];1198[label="primPlusNat (Succ vyw770) (Succ vyw300000)",fontsize=16,color="black",shape="box"];1198 -> 1201[label="",style="solid", color="black", weight=3]; 25.79/11.05 1199[label="primPlusNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];1199 -> 1202[label="",style="solid", color="black", weight=3]; 25.79/11.05 1484 -> 1563[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1484[label="primCompAux vyw4300 vyw4500 (compare vyw4301 vyw4501)",fontsize=16,color="magenta"];1484 -> 1564[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 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="primCmpChar (Char vyw4300) (Char vyw4500)",fontsize=16,color="black",shape="box"];1488 -> 1565[label="",style="solid", color="black", weight=3]; 25.79/11.05 1489[label="vyw430",fontsize=16,color="green",shape="box"];1490[label="vyw450",fontsize=16,color="green",shape="box"];1491 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1491[label="vyw430 == vyw450",fontsize=16,color="magenta"];1491 -> 1566[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1491 -> 1567[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1492[label="primCmpInt (Pos (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2705[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2705[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2705 -> 1568[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2706[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2706[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2706 -> 1569[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1493[label="primCmpInt (Pos Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2707[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2707[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2707 -> 1570[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2708[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1493 -> 2708[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2708 -> 1571[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1494[label="primCmpInt (Neg (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2709[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2709[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2709 -> 1572[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2710[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1494 -> 2710[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2710 -> 1573[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1495[label="primCmpInt (Neg Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2711[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2711[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2711 -> 1574[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2712[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2712[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2712 -> 1575[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1496[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2713[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1496 -> 2713[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2713 -> 1576[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1497[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2714[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2714[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2714 -> 1577[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1498[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2715[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2715[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2715 -> 1578[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1499[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2716[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2716[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2716 -> 1579[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1501 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1501[label="vyw430 == vyw450",fontsize=16,color="magenta"];1501 -> 1580[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1501 -> 1581[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1500[label="compare2 vyw430 vyw450 vyw93",fontsize=16,color="burlywood",shape="triangle"];2717[label="vyw93/False",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2717[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2717 -> 1582[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2718[label="vyw93/True",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2718[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2718 -> 1583[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1503 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1503[label="vyw430 == vyw450",fontsize=16,color="magenta"];1503 -> 1584[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1503 -> 1585[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1502[label="compare2 vyw430 vyw450 vyw94",fontsize=16,color="burlywood",shape="triangle"];2719[label="vyw94/False",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2719[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2719 -> 1586[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2720[label="vyw94/True",fontsize=10,color="white",style="solid",shape="box"];1502 -> 2720[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2720 -> 1587[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1504[label="EQ",fontsize=16,color="green",shape="box"];1505 -> 1378[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1505[label="primCmpInt vyw4300 vyw4500",fontsize=16,color="magenta"];1505 -> 1588[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1505 -> 1589[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1507 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1507[label="vyw430 == vyw450",fontsize=16,color="magenta"];1507 -> 1590[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1507 -> 1591[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1506[label="compare2 vyw430 vyw450 vyw95",fontsize=16,color="burlywood",shape="triangle"];2721[label="vyw95/False",fontsize=10,color="white",style="solid",shape="box"];1506 -> 2721[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2721 -> 1592[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2722[label="vyw95/True",fontsize=10,color="white",style="solid",shape="box"];1506 -> 2722[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2722 -> 1593[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1508[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="blue",shape="box"];2723[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2723[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2723 -> 1594[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2724[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2724[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2724 -> 1595[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1510 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1510[label="vyw430 == vyw450",fontsize=16,color="magenta"];1510 -> 1596[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1510 -> 1597[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1509[label="compare2 vyw430 vyw450 vyw96",fontsize=16,color="burlywood",shape="triangle"];2725[label="vyw96/False",fontsize=10,color="white",style="solid",shape="box"];1509 -> 2725[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2725 -> 1598[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2726[label="vyw96/True",fontsize=10,color="white",style="solid",shape="box"];1509 -> 2726[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2726 -> 1599[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1512 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1512[label="vyw430 == vyw450",fontsize=16,color="magenta"];1512 -> 1600[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1512 -> 1601[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1511[label="compare2 vyw430 vyw450 vyw97",fontsize=16,color="burlywood",shape="triangle"];2727[label="vyw97/False",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2727[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2727 -> 1602[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2728[label="vyw97/True",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2728[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2728 -> 1603[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1514 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1514[label="vyw92 == GT",fontsize=16,color="magenta"];1514 -> 1604[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1514 -> 1605[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1513[label="not vyw98",fontsize=16,color="burlywood",shape="triangle"];2729[label="vyw98/False",fontsize=10,color="white",style="solid",shape="box"];1513 -> 2729[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2729 -> 1606[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2730[label="vyw98/True",fontsize=10,color="white",style="solid",shape="box"];1513 -> 2730[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2730 -> 1607[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1611 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1611[label="vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1611 -> 1617[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1611 -> 1618[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1612[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2731[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2731[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2731 -> 1619[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2732[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2732[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2732 -> 1620[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2733[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2733[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2733 -> 1621[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2734[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2734[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2734 -> 1622[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2735[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2735[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2735 -> 1623[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2736[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2736[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2736 -> 1624[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2737[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2737[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2737 -> 1625[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2738[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2738[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2738 -> 1626[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2739[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2739[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2739 -> 1627[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2740[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2740[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2740 -> 1628[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2741[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2741[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2741 -> 1629[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2742[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2742[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2742 -> 1630[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2743[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2743[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2743 -> 1631[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2744[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2744[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2744 -> 1632[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1610[label="vyw104 || vyw105",fontsize=16,color="burlywood",shape="triangle"];2745[label="vyw104/False",fontsize=10,color="white",style="solid",shape="box"];1610 -> 2745[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2745 -> 1633[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2746[label="vyw104/True",fontsize=10,color="white",style="solid",shape="box"];1610 -> 2746[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2746 -> 1634[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1520 -> 1261[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1520[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1520 -> 1635[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1520 -> 1636[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1521 -> 1262[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1521[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1521 -> 1637[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1521 -> 1638[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1522 -> 1263[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1522[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1522 -> 1639[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1522 -> 1640[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1523 -> 1264[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1523[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1523 -> 1641[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1523 -> 1642[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1524 -> 1265[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1524[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1524 -> 1643[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1524 -> 1644[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1525 -> 1266[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1525[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1525 -> 1645[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1525 -> 1646[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1526 -> 1267[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1526[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1526 -> 1647[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1526 -> 1648[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1527 -> 1268[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1527[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1527 -> 1649[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1527 -> 1650[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1528 -> 1269[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1528[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1528 -> 1651[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1528 -> 1652[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1529 -> 1270[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1529[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1529 -> 1653[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1529 -> 1654[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1530 -> 1271[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1530[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1530 -> 1655[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1530 -> 1656[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1531 -> 1272[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1531[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1531 -> 1657[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1531 -> 1658[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1532 -> 1273[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1532[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1532 -> 1659[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1532 -> 1660[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1533 -> 1274[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1533[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1533 -> 1661[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1533 -> 1662[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1534 -> 1261[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1534[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1534 -> 1663[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1534 -> 1664[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1535 -> 1262[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1535[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1535 -> 1665[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1535 -> 1666[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1536 -> 1263[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1536[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1536 -> 1667[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1536 -> 1668[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1537 -> 1264[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1537[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1537 -> 1669[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1537 -> 1670[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1538 -> 1265[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1538[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1538 -> 1671[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1538 -> 1672[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1539 -> 1266[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1539[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1539 -> 1673[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1539 -> 1674[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1540 -> 1267[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1540[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1540 -> 1675[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1540 -> 1676[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1541 -> 1268[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1541[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1541 -> 1677[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1541 -> 1678[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1542 -> 1269[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1542[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1542 -> 1679[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1542 -> 1680[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1543 -> 1270[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1543[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1543 -> 1681[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1543 -> 1682[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1544 -> 1271[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1544[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1544 -> 1683[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1544 -> 1684[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1545 -> 1272[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1545[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1545 -> 1685[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1545 -> 1686[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1546 -> 1273[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1546[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1546 -> 1687[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1546 -> 1688[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1547 -> 1274[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1547[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1547 -> 1689[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1547 -> 1690[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1548 -> 1261[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1548[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1548 -> 1691[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1548 -> 1692[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1549 -> 1262[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1549[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1549 -> 1693[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1549 -> 1694[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1550 -> 1263[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1550[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1550 -> 1695[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1550 -> 1696[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1551 -> 1264[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1551[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1551 -> 1697[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1551 -> 1698[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1552 -> 1265[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1552[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1552 -> 1699[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1552 -> 1700[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1553 -> 1266[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1553[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1553 -> 1701[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1553 -> 1702[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1554 -> 1267[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1554[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1554 -> 1703[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1554 -> 1704[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1555 -> 1268[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1555[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1555 -> 1705[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1555 -> 1706[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1556 -> 1269[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1556[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1556 -> 1707[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1556 -> 1708[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1557 -> 1270[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1557[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1557 -> 1709[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1557 -> 1710[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1558 -> 1271[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1558[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1558 -> 1711[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1558 -> 1712[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1559 -> 1272[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1559[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1559 -> 1713[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1559 -> 1714[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1560 -> 1273[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1560[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1560 -> 1715[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1560 -> 1716[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1561 -> 1274[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1561[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1561 -> 1717[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1561 -> 1718[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1613 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1613[label="vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1613 -> 1719[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1613 -> 1720[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1614[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2747[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2747[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2747 -> 1721[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2748[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2748[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2748 -> 1722[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2749[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2749[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2749 -> 1723[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2750[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2750[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2750 -> 1724[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2751[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2751[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2751 -> 1725[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2752[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2752[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2752 -> 1726[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2753[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2753[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2753 -> 1727[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2754[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2754[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2754 -> 1728[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2755[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2755[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2755 -> 1729[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2756[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2756[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2756 -> 1730[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2757[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2757[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2757 -> 1731[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2758[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2758[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2758 -> 1732[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2759[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2759[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2759 -> 1733[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2760[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2760[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2760 -> 1734[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1562[label="GT",fontsize=16,color="green",shape="box"];1201[label="Succ (Succ (primPlusNat vyw770 vyw300000))",fontsize=16,color="green",shape="box"];1201 -> 1204[label="",style="dashed", color="green", weight=3]; 25.79/11.05 1202[label="Succ vyw300000",fontsize=16,color="green",shape="box"];1564 -> 1296[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1564[label="compare vyw4301 vyw4501",fontsize=16,color="magenta"];1564 -> 1735[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1564 -> 1736[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1563[label="primCompAux vyw4300 vyw4500 vyw100",fontsize=16,color="black",shape="triangle"];1563 -> 1737[label="",style="solid", color="black", weight=3]; 25.79/11.05 1565[label="primCmpNat vyw4300 vyw4500",fontsize=16,color="burlywood",shape="triangle"];2761[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2761[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2761 -> 1738[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2762[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1565 -> 2762[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2762 -> 1739[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1566[label="vyw450",fontsize=16,color="green",shape="box"];1567[label="vyw430",fontsize=16,color="green",shape="box"];1568[label="primCmpInt (Pos (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1568 -> 1740[label="",style="solid", color="black", weight=3]; 25.79/11.05 1569[label="primCmpInt (Pos (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1569 -> 1741[label="",style="solid", color="black", weight=3]; 25.79/11.05 1570[label="primCmpInt (Pos Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2763[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2763[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2763 -> 1742[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2764[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2764[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2764 -> 1743[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1571[label="primCmpInt (Pos Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2765[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2765[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2765 -> 1744[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2766[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1571 -> 2766[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2766 -> 1745[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1572[label="primCmpInt (Neg (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1572 -> 1746[label="",style="solid", color="black", weight=3]; 25.79/11.05 1573[label="primCmpInt (Neg (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1573 -> 1747[label="",style="solid", color="black", weight=3]; 25.79/11.05 1574[label="primCmpInt (Neg Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2767[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1574 -> 2767[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2767 -> 1748[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2768[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1574 -> 2768[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2768 -> 1749[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1575[label="primCmpInt (Neg Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2769[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2769[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2769 -> 1750[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2770[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1575 -> 2770[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2770 -> 1751[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1576[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2771[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2771[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2771 -> 1752[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2772[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2772[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2772 -> 1753[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1577[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2773[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1577 -> 2773[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2773 -> 1754[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2774[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1577 -> 2774[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2774 -> 1755[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1578[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2775[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1578 -> 2775[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2775 -> 1756[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2776[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1578 -> 2776[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2776 -> 1757[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1579[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2777[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1579 -> 2777[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2777 -> 1758[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2778[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1579 -> 2778[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2778 -> 1759[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1580[label="vyw450",fontsize=16,color="green",shape="box"];1581[label="vyw430",fontsize=16,color="green",shape="box"];1582[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1582 -> 1760[label="",style="solid", color="black", weight=3]; 25.79/11.05 1583[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1583 -> 1761[label="",style="solid", color="black", weight=3]; 25.79/11.05 1584[label="vyw450",fontsize=16,color="green",shape="box"];1585[label="vyw430",fontsize=16,color="green",shape="box"];1586[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1586 -> 1762[label="",style="solid", color="black", weight=3]; 25.79/11.05 1587[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1587 -> 1763[label="",style="solid", color="black", weight=3]; 25.79/11.05 1588[label="vyw4500",fontsize=16,color="green",shape="box"];1589[label="vyw4300",fontsize=16,color="green",shape="box"];1590[label="vyw450",fontsize=16,color="green",shape="box"];1591[label="vyw430",fontsize=16,color="green",shape="box"];1592[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1592 -> 1764[label="",style="solid", color="black", weight=3]; 25.79/11.05 1593[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1593 -> 1765[label="",style="solid", color="black", weight=3]; 25.79/11.05 1594 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1594[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1594 -> 1766[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1594 -> 1767[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1595 -> 1314[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1595[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1595 -> 1768[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1595 -> 1769[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1596[label="vyw450",fontsize=16,color="green",shape="box"];1597[label="vyw430",fontsize=16,color="green",shape="box"];1598[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1598 -> 1770[label="",style="solid", color="black", weight=3]; 25.79/11.05 1599[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1599 -> 1771[label="",style="solid", color="black", weight=3]; 25.79/11.05 1600[label="vyw450",fontsize=16,color="green",shape="box"];1601[label="vyw430",fontsize=16,color="green",shape="box"];1602[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1602 -> 1772[label="",style="solid", color="black", weight=3]; 25.79/11.05 1603[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1603 -> 1773[label="",style="solid", color="black", weight=3]; 25.79/11.05 1604[label="GT",fontsize=16,color="green",shape="box"];1605[label="vyw92",fontsize=16,color="green",shape="box"];1606[label="not False",fontsize=16,color="black",shape="box"];1606 -> 1774[label="",style="solid", color="black", weight=3]; 25.79/11.05 1607[label="not True",fontsize=16,color="black",shape="box"];1607 -> 1775[label="",style="solid", color="black", weight=3]; 25.79/11.05 1617[label="vyw4311 <= vyw4511",fontsize=16,color="blue",shape="box"];2779[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2779[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2779 -> 1776[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2780[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2780[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2780 -> 1777[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2781[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2781[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2781 -> 1778[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2782[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2782[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2782 -> 1779[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2783[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2783[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2783 -> 1780[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2784[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2784[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2784 -> 1781[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2785[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2785[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2785 -> 1782[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2786[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2786[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2786 -> 1783[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2787[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2787[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2787 -> 1784[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2788[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2788[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2788 -> 1785[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2789[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2789[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2789 -> 1786[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2790[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2790[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2790 -> 1787[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2791[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2791[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2791 -> 1788[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2792[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2792[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2792 -> 1789[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1618[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2793[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2793[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2793 -> 1790[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2794[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2794[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2794 -> 1791[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2795[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2795[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2795 -> 1792[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2796[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2796[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2796 -> 1793[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2797[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2797[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2797 -> 1794[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2798[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2798[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2798 -> 1795[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2799[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2799[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2799 -> 1796[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2800[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2800[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2800 -> 1797[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2801[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2801[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2801 -> 1798[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2802[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2802[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2802 -> 1799[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2803[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2803[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2803 -> 1800[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2804[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2804[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2804 -> 1801[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2805[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2805[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2805 -> 1802[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2806[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2806[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2806 -> 1803[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1619 -> 1225[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1619[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1619 -> 1804[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1619 -> 1805[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1620 -> 1226[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1620[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1620 -> 1806[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1620 -> 1807[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1621 -> 1227[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1621[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1621 -> 1808[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1621 -> 1809[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1622 -> 1228[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1622[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1622 -> 1810[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1622 -> 1811[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1623 -> 1229[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1623[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1623 -> 1812[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1623 -> 1813[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1624 -> 1230[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1624[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1624 -> 1814[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1624 -> 1815[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1625 -> 1231[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1625[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1625 -> 1816[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1625 -> 1817[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1626 -> 1232[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1626[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1626 -> 1818[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1626 -> 1819[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1627 -> 1233[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1627[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1627 -> 1820[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1627 -> 1821[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1628 -> 1234[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1628[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1628 -> 1822[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1628 -> 1823[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1629 -> 1235[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1629[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1629 -> 1824[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1629 -> 1825[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1630 -> 1236[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1630[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1630 -> 1826[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1630 -> 1827[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1631 -> 1237[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1631[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1631 -> 1828[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1631 -> 1829[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1632 -> 1238[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1632[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1632 -> 1830[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1632 -> 1831[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1633[label="False || vyw105",fontsize=16,color="black",shape="box"];1633 -> 1832[label="",style="solid", color="black", weight=3]; 25.79/11.05 1634[label="True || vyw105",fontsize=16,color="black",shape="box"];1634 -> 1833[label="",style="solid", color="black", weight=3]; 25.79/11.05 1635[label="vyw4310",fontsize=16,color="green",shape="box"];1636[label="vyw4510",fontsize=16,color="green",shape="box"];1637[label="vyw4310",fontsize=16,color="green",shape="box"];1638[label="vyw4510",fontsize=16,color="green",shape="box"];1639[label="vyw4310",fontsize=16,color="green",shape="box"];1640[label="vyw4510",fontsize=16,color="green",shape="box"];1641[label="vyw4310",fontsize=16,color="green",shape="box"];1642[label="vyw4510",fontsize=16,color="green",shape="box"];1643[label="vyw4310",fontsize=16,color="green",shape="box"];1644[label="vyw4510",fontsize=16,color="green",shape="box"];1645[label="vyw4310",fontsize=16,color="green",shape="box"];1646[label="vyw4510",fontsize=16,color="green",shape="box"];1647[label="vyw4310",fontsize=16,color="green",shape="box"];1648[label="vyw4510",fontsize=16,color="green",shape="box"];1649[label="vyw4310",fontsize=16,color="green",shape="box"];1650[label="vyw4510",fontsize=16,color="green",shape="box"];1651[label="vyw4310",fontsize=16,color="green",shape="box"];1652[label="vyw4510",fontsize=16,color="green",shape="box"];1653[label="vyw4310",fontsize=16,color="green",shape="box"];1654[label="vyw4510",fontsize=16,color="green",shape="box"];1655[label="vyw4310",fontsize=16,color="green",shape="box"];1656[label="vyw4510",fontsize=16,color="green",shape="box"];1657[label="vyw4310",fontsize=16,color="green",shape="box"];1658[label="vyw4510",fontsize=16,color="green",shape="box"];1659[label="vyw4310",fontsize=16,color="green",shape="box"];1660[label="vyw4510",fontsize=16,color="green",shape="box"];1661[label="vyw4310",fontsize=16,color="green",shape="box"];1662[label="vyw4510",fontsize=16,color="green",shape="box"];1663[label="vyw4310",fontsize=16,color="green",shape="box"];1664[label="vyw4510",fontsize=16,color="green",shape="box"];1665[label="vyw4310",fontsize=16,color="green",shape="box"];1666[label="vyw4510",fontsize=16,color="green",shape="box"];1667[label="vyw4310",fontsize=16,color="green",shape="box"];1668[label="vyw4510",fontsize=16,color="green",shape="box"];1669[label="vyw4310",fontsize=16,color="green",shape="box"];1670[label="vyw4510",fontsize=16,color="green",shape="box"];1671[label="vyw4310",fontsize=16,color="green",shape="box"];1672[label="vyw4510",fontsize=16,color="green",shape="box"];1673[label="vyw4310",fontsize=16,color="green",shape="box"];1674[label="vyw4510",fontsize=16,color="green",shape="box"];1675[label="vyw4310",fontsize=16,color="green",shape="box"];1676[label="vyw4510",fontsize=16,color="green",shape="box"];1677[label="vyw4310",fontsize=16,color="green",shape="box"];1678[label="vyw4510",fontsize=16,color="green",shape="box"];1679[label="vyw4310",fontsize=16,color="green",shape="box"];1680[label="vyw4510",fontsize=16,color="green",shape="box"];1681[label="vyw4310",fontsize=16,color="green",shape="box"];1682[label="vyw4510",fontsize=16,color="green",shape="box"];1683[label="vyw4310",fontsize=16,color="green",shape="box"];1684[label="vyw4510",fontsize=16,color="green",shape="box"];1685[label="vyw4310",fontsize=16,color="green",shape="box"];1686[label="vyw4510",fontsize=16,color="green",shape="box"];1687[label="vyw4310",fontsize=16,color="green",shape="box"];1688[label="vyw4510",fontsize=16,color="green",shape="box"];1689[label="vyw4310",fontsize=16,color="green",shape="box"];1690[label="vyw4510",fontsize=16,color="green",shape="box"];1691[label="vyw4310",fontsize=16,color="green",shape="box"];1692[label="vyw4510",fontsize=16,color="green",shape="box"];1693[label="vyw4310",fontsize=16,color="green",shape="box"];1694[label="vyw4510",fontsize=16,color="green",shape="box"];1695[label="vyw4310",fontsize=16,color="green",shape="box"];1696[label="vyw4510",fontsize=16,color="green",shape="box"];1697[label="vyw4310",fontsize=16,color="green",shape="box"];1698[label="vyw4510",fontsize=16,color="green",shape="box"];1699[label="vyw4310",fontsize=16,color="green",shape="box"];1700[label="vyw4510",fontsize=16,color="green",shape="box"];1701[label="vyw4310",fontsize=16,color="green",shape="box"];1702[label="vyw4510",fontsize=16,color="green",shape="box"];1703[label="vyw4310",fontsize=16,color="green",shape="box"];1704[label="vyw4510",fontsize=16,color="green",shape="box"];1705[label="vyw4310",fontsize=16,color="green",shape="box"];1706[label="vyw4510",fontsize=16,color="green",shape="box"];1707[label="vyw4310",fontsize=16,color="green",shape="box"];1708[label="vyw4510",fontsize=16,color="green",shape="box"];1709[label="vyw4310",fontsize=16,color="green",shape="box"];1710[label="vyw4510",fontsize=16,color="green",shape="box"];1711[label="vyw4310",fontsize=16,color="green",shape="box"];1712[label="vyw4510",fontsize=16,color="green",shape="box"];1713[label="vyw4310",fontsize=16,color="green",shape="box"];1714[label="vyw4510",fontsize=16,color="green",shape="box"];1715[label="vyw4310",fontsize=16,color="green",shape="box"];1716[label="vyw4510",fontsize=16,color="green",shape="box"];1717[label="vyw4310",fontsize=16,color="green",shape="box"];1718[label="vyw4510",fontsize=16,color="green",shape="box"];1719 -> 1610[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1719[label="vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1719 -> 1834[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1719 -> 1835[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1720[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2807[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2807[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2807 -> 1836[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2808[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2808[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2808 -> 1837[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2809[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2809[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2809 -> 1838[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2810[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2810[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2810 -> 1839[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2811[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2811[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2811 -> 1840[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2812[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2812[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2812 -> 1841[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2813[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2813[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2813 -> 1842[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2814[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2814[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2814 -> 1843[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2815[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2815[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2815 -> 1844[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2816[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2816[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2816 -> 1845[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2817[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2817[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2817 -> 1846[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2818[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2818[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2818 -> 1847[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2819[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2819[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2819 -> 1848[label="",style="solid", color="blue", weight=3]; 25.79/11.05 2820[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1720 -> 2820[label="",style="solid", color="blue", weight=9]; 25.79/11.05 2820 -> 1849[label="",style="solid", color="blue", weight=3]; 25.79/11.05 1721 -> 1225[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1721[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1721 -> 1850[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1721 -> 1851[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1722 -> 1226[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1722[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1722 -> 1852[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1722 -> 1853[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1723 -> 1227[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1723[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1723 -> 1854[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1723 -> 1855[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1724 -> 1228[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1724[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1724 -> 1856[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1724 -> 1857[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1725 -> 1229[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1725[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1725 -> 1858[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1725 -> 1859[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1726 -> 1230[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1726[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1726 -> 1860[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1726 -> 1861[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1727 -> 1231[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1727[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1727 -> 1862[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1727 -> 1863[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1728 -> 1232[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1728[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1728 -> 1864[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1728 -> 1865[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1729 -> 1233[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1729[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1729 -> 1866[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1729 -> 1867[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1730 -> 1234[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1730[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1730 -> 1868[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1730 -> 1869[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1731 -> 1235[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1731[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1731 -> 1870[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1731 -> 1871[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1732 -> 1236[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1732[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1732 -> 1872[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1732 -> 1873[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1733 -> 1237[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1733[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1733 -> 1874[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1733 -> 1875[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1734 -> 1238[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1734[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1734 -> 1876[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1734 -> 1877[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1204[label="primPlusNat vyw770 vyw300000",fontsize=16,color="burlywood",shape="triangle"];2821[label="vyw770/Succ vyw7700",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2821[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2821 -> 1206[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2822[label="vyw770/Zero",fontsize=10,color="white",style="solid",shape="box"];1204 -> 2822[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2822 -> 1207[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1735[label="vyw4501",fontsize=16,color="green",shape="box"];1736[label="vyw4301",fontsize=16,color="green",shape="box"];1737 -> 1878[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1737[label="primCompAux0 vyw100 (compare vyw4300 vyw4500)",fontsize=16,color="magenta"];1737 -> 1879[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1737 -> 1880[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1738[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="burlywood",shape="box"];2823[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1738 -> 2823[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2823 -> 1881[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2824[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1738 -> 2824[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2824 -> 1882[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1739[label="primCmpNat Zero vyw4500",fontsize=16,color="burlywood",shape="box"];2825[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2825[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2825 -> 1883[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 2826[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1739 -> 2826[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2826 -> 1884[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1740 -> 1565[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1740[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="magenta"];1740 -> 1885[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1740 -> 1886[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1741[label="GT",fontsize=16,color="green",shape="box"];1742[label="primCmpInt (Pos Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1742 -> 1887[label="",style="solid", color="black", weight=3]; 25.79/11.05 1743[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1743 -> 1888[label="",style="solid", color="black", weight=3]; 25.79/11.05 1744[label="primCmpInt (Pos Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1744 -> 1889[label="",style="solid", color="black", weight=3]; 25.79/11.05 1745[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1745 -> 1890[label="",style="solid", color="black", weight=3]; 25.79/11.05 1746[label="LT",fontsize=16,color="green",shape="box"];1747 -> 1565[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1747[label="primCmpNat vyw4500 (Succ vyw43000)",fontsize=16,color="magenta"];1747 -> 1891[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1747 -> 1892[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1748[label="primCmpInt (Neg Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1748 -> 1893[label="",style="solid", color="black", weight=3]; 25.79/11.05 1749[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1749 -> 1894[label="",style="solid", color="black", weight=3]; 25.79/11.05 1750[label="primCmpInt (Neg Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1750 -> 1895[label="",style="solid", color="black", weight=3]; 25.79/11.05 1751[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1751 -> 1896[label="",style="solid", color="black", weight=3]; 25.79/11.05 1752[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1752 -> 1897[label="",style="solid", color="black", weight=3]; 25.79/11.05 1753[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1753 -> 1898[label="",style="solid", color="black", weight=3]; 25.79/11.05 1754[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1754 -> 1899[label="",style="solid", color="black", weight=3]; 25.79/11.05 1755[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1755 -> 1900[label="",style="solid", color="black", weight=3]; 25.79/11.05 1756[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1756 -> 1901[label="",style="solid", color="black", weight=3]; 25.79/11.05 1757[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1757 -> 1902[label="",style="solid", color="black", weight=3]; 25.79/11.05 1758[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1758 -> 1903[label="",style="solid", color="black", weight=3]; 25.79/11.05 1759[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1759 -> 1904[label="",style="solid", color="black", weight=3]; 25.79/11.05 1760 -> 1905[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1760[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1760 -> 1906[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1761[label="EQ",fontsize=16,color="green",shape="box"];1762 -> 1907[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1762[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1762 -> 1908[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1763[label="EQ",fontsize=16,color="green",shape="box"];1764 -> 1909[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1764[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1764 -> 1910[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1765[label="EQ",fontsize=16,color="green",shape="box"];1766 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1766[label="vyw4500 * vyw4301",fontsize=16,color="magenta"];1766 -> 1911[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1766 -> 1912[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1767 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1767[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1767 -> 1913[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1767 -> 1914[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1768[label="vyw4500 * vyw4301",fontsize=16,color="burlywood",shape="triangle"];2827[label="vyw4500/Integer vyw45000",fontsize=10,color="white",style="solid",shape="box"];1768 -> 2827[label="",style="solid", color="burlywood", weight=9]; 25.79/11.05 2827 -> 1915[label="",style="solid", color="burlywood", weight=3]; 25.79/11.05 1769 -> 1768[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1769[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1769 -> 1916[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1769 -> 1917[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1770 -> 1918[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1770[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1770 -> 1919[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1771[label="EQ",fontsize=16,color="green",shape="box"];1772 -> 1920[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1772[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1772 -> 1921[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1773[label="EQ",fontsize=16,color="green",shape="box"];1774[label="True",fontsize=16,color="green",shape="box"];1775[label="False",fontsize=16,color="green",shape="box"];1776 -> 1261[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1776[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1776 -> 1922[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1776 -> 1923[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1777 -> 1262[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1777[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1777 -> 1924[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1777 -> 1925[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1778 -> 1263[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1778[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1778 -> 1926[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1778 -> 1927[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1779 -> 1264[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1779[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1779 -> 1928[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1779 -> 1929[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1780 -> 1265[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1780[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1780 -> 1930[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1780 -> 1931[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1781 -> 1266[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1781[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1781 -> 1932[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1781 -> 1933[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1782 -> 1267[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1782[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1782 -> 1934[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1782 -> 1935[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1783 -> 1268[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1783[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1783 -> 1936[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1783 -> 1937[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1784 -> 1269[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1784[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1784 -> 1938[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1784 -> 1939[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1785 -> 1270[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1785[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1785 -> 1940[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1785 -> 1941[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1786 -> 1271[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1786[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1786 -> 1942[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1786 -> 1943[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1787 -> 1272[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1787[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1787 -> 1944[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1787 -> 1945[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1788 -> 1273[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1788[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1788 -> 1946[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1788 -> 1947[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1789 -> 1274[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1789[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1789 -> 1948[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1789 -> 1949[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1790 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1790[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1790 -> 1950[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1790 -> 1951[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1791 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1791[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1791 -> 1952[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1791 -> 1953[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1792 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1792[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1792 -> 1954[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1792 -> 1955[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1793 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1793[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1793 -> 1956[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1793 -> 1957[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1794 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1794[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1794 -> 1958[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1794 -> 1959[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1795 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1795[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1795 -> 1960[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1795 -> 1961[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1796 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.05 1796[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1796 -> 1962[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1796 -> 1963[label="",style="dashed", color="magenta", weight=3]; 25.79/11.05 1797 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1797[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1797 -> 1964[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1797 -> 1965[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1798 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1798[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1798 -> 1966[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1798 -> 1967[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1799 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1799[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1799 -> 1968[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1799 -> 1969[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1800 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1800[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1800 -> 1970[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1800 -> 1971[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1801 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1801[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1801 -> 1972[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1801 -> 1973[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1802 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1802[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1802 -> 1974[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1802 -> 1975[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1803 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1803[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1803 -> 1976[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1803 -> 1977[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1804[label="vyw4510",fontsize=16,color="green",shape="box"];1805[label="vyw4310",fontsize=16,color="green",shape="box"];1806[label="vyw4510",fontsize=16,color="green",shape="box"];1807[label="vyw4310",fontsize=16,color="green",shape="box"];1808[label="vyw4510",fontsize=16,color="green",shape="box"];1809[label="vyw4310",fontsize=16,color="green",shape="box"];1810[label="vyw4510",fontsize=16,color="green",shape="box"];1811[label="vyw4310",fontsize=16,color="green",shape="box"];1812[label="vyw4510",fontsize=16,color="green",shape="box"];1813[label="vyw4310",fontsize=16,color="green",shape="box"];1814[label="vyw4510",fontsize=16,color="green",shape="box"];1815[label="vyw4310",fontsize=16,color="green",shape="box"];1816[label="vyw4510",fontsize=16,color="green",shape="box"];1817[label="vyw4310",fontsize=16,color="green",shape="box"];1818[label="vyw4510",fontsize=16,color="green",shape="box"];1819[label="vyw4310",fontsize=16,color="green",shape="box"];1820[label="vyw4510",fontsize=16,color="green",shape="box"];1821[label="vyw4310",fontsize=16,color="green",shape="box"];1822[label="vyw4510",fontsize=16,color="green",shape="box"];1823[label="vyw4310",fontsize=16,color="green",shape="box"];1824[label="vyw4510",fontsize=16,color="green",shape="box"];1825[label="vyw4310",fontsize=16,color="green",shape="box"];1826[label="vyw4510",fontsize=16,color="green",shape="box"];1827[label="vyw4310",fontsize=16,color="green",shape="box"];1828[label="vyw4510",fontsize=16,color="green",shape="box"];1829[label="vyw4310",fontsize=16,color="green",shape="box"];1830[label="vyw4510",fontsize=16,color="green",shape="box"];1831[label="vyw4310",fontsize=16,color="green",shape="box"];1832[label="vyw105",fontsize=16,color="green",shape="box"];1833[label="True",fontsize=16,color="green",shape="box"];1834 -> 372[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1834[label="vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1834 -> 1978[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1834 -> 1979[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1835[label="vyw4311 < vyw4511",fontsize=16,color="blue",shape="box"];2828[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2828[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2828 -> 1980[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2829[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2829[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2829 -> 1981[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2830[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2830[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2830 -> 1982[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2831[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2831[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2831 -> 1983[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2832[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2832[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2832 -> 1984[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2833[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2833[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2833 -> 1985[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2834[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2834[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2834 -> 1986[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2835[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2835[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2835 -> 1987[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2836[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2836[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2836 -> 1988[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2837[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2837[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2837 -> 1989[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2838[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2838[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2838 -> 1990[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2839[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2839[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2839 -> 1991[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2840[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2840[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2840 -> 1992[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2841[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1835 -> 2841[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2841 -> 1993[label="",style="solid", color="blue", weight=3]; 25.79/11.06 1836 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1836[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1836 -> 1994[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1836 -> 1995[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1837 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1837[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1837 -> 1996[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1837 -> 1997[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1838 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1838[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1838 -> 1998[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1838 -> 1999[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1839 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1839[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1839 -> 2000[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1839 -> 2001[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1840 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1840[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1840 -> 2002[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1840 -> 2003[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1841 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1841[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1841 -> 2004[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1841 -> 2005[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1842 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1842[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1842 -> 2006[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1842 -> 2007[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1843 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1843[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1843 -> 2008[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1843 -> 2009[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1844 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1844[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1844 -> 2010[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1844 -> 2011[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1845 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1845[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1845 -> 2012[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1845 -> 2013[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1846 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1846[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1846 -> 2014[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1846 -> 2015[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1847 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1847[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1847 -> 2016[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1847 -> 2017[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1848 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1848[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1848 -> 2018[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1848 -> 2019[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1849 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1849[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1849 -> 2020[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1849 -> 2021[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1850[label="vyw4510",fontsize=16,color="green",shape="box"];1851[label="vyw4310",fontsize=16,color="green",shape="box"];1852[label="vyw4510",fontsize=16,color="green",shape="box"];1853[label="vyw4310",fontsize=16,color="green",shape="box"];1854[label="vyw4510",fontsize=16,color="green",shape="box"];1855[label="vyw4310",fontsize=16,color="green",shape="box"];1856[label="vyw4510",fontsize=16,color="green",shape="box"];1857[label="vyw4310",fontsize=16,color="green",shape="box"];1858[label="vyw4510",fontsize=16,color="green",shape="box"];1859[label="vyw4310",fontsize=16,color="green",shape="box"];1860[label="vyw4510",fontsize=16,color="green",shape="box"];1861[label="vyw4310",fontsize=16,color="green",shape="box"];1862[label="vyw4510",fontsize=16,color="green",shape="box"];1863[label="vyw4310",fontsize=16,color="green",shape="box"];1864[label="vyw4510",fontsize=16,color="green",shape="box"];1865[label="vyw4310",fontsize=16,color="green",shape="box"];1866[label="vyw4510",fontsize=16,color="green",shape="box"];1867[label="vyw4310",fontsize=16,color="green",shape="box"];1868[label="vyw4510",fontsize=16,color="green",shape="box"];1869[label="vyw4310",fontsize=16,color="green",shape="box"];1870[label="vyw4510",fontsize=16,color="green",shape="box"];1871[label="vyw4310",fontsize=16,color="green",shape="box"];1872[label="vyw4510",fontsize=16,color="green",shape="box"];1873[label="vyw4310",fontsize=16,color="green",shape="box"];1874[label="vyw4510",fontsize=16,color="green",shape="box"];1875[label="vyw4310",fontsize=16,color="green",shape="box"];1876[label="vyw4510",fontsize=16,color="green",shape="box"];1877[label="vyw4310",fontsize=16,color="green",shape="box"];1206[label="primPlusNat (Succ vyw7700) vyw300000",fontsize=16,color="burlywood",shape="box"];2842[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1206 -> 2842[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2842 -> 1243[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2843[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1206 -> 2843[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2843 -> 1244[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1207[label="primPlusNat Zero vyw300000",fontsize=16,color="burlywood",shape="box"];2844[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];1207 -> 2844[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2844 -> 1245[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2845[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];1207 -> 2845[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2845 -> 1246[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1879[label="vyw100",fontsize=16,color="green",shape="box"];1880[label="compare vyw4300 vyw4500",fontsize=16,color="blue",shape="box"];2846[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2846[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2846 -> 2022[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2847[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2847[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2847 -> 2023[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2848[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2848[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2848 -> 2024[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2849[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2849[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2849 -> 2025[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2850[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2850[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2850 -> 2026[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2851[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2851[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2851 -> 2027[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2852[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2852[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2852 -> 2028[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2853[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2853[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2853 -> 2029[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2854[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2854[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2854 -> 2030[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2855[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2855[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2855 -> 2031[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2856[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2856[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2856 -> 2032[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2857[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2857[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2857 -> 2033[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2858[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2858[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2858 -> 2034[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2859[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1880 -> 2859[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2859 -> 2035[label="",style="solid", color="blue", weight=3]; 25.79/11.06 1878[label="primCompAux0 vyw109 vyw110",fontsize=16,color="burlywood",shape="triangle"];2860[label="vyw110/LT",fontsize=10,color="white",style="solid",shape="box"];1878 -> 2860[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2860 -> 2036[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2861[label="vyw110/EQ",fontsize=10,color="white",style="solid",shape="box"];1878 -> 2861[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2861 -> 2037[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2862[label="vyw110/GT",fontsize=10,color="white",style="solid",shape="box"];1878 -> 2862[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2862 -> 2038[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1881[label="primCmpNat (Succ vyw43000) (Succ vyw45000)",fontsize=16,color="black",shape="box"];1881 -> 2039[label="",style="solid", color="black", weight=3]; 25.79/11.06 1882[label="primCmpNat (Succ vyw43000) Zero",fontsize=16,color="black",shape="box"];1882 -> 2040[label="",style="solid", color="black", weight=3]; 25.79/11.06 1883[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="black",shape="box"];1883 -> 2041[label="",style="solid", color="black", weight=3]; 25.79/11.06 1884[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1884 -> 2042[label="",style="solid", color="black", weight=3]; 25.79/11.06 1885[label="vyw4500",fontsize=16,color="green",shape="box"];1886[label="Succ vyw43000",fontsize=16,color="green",shape="box"];1887 -> 1565[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1887[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="magenta"];1887 -> 2043[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1887 -> 2044[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1888[label="EQ",fontsize=16,color="green",shape="box"];1889[label="GT",fontsize=16,color="green",shape="box"];1890[label="EQ",fontsize=16,color="green",shape="box"];1891[label="Succ vyw43000",fontsize=16,color="green",shape="box"];1892[label="vyw4500",fontsize=16,color="green",shape="box"];1893[label="LT",fontsize=16,color="green",shape="box"];1894[label="EQ",fontsize=16,color="green",shape="box"];1895 -> 1565[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1895[label="primCmpNat (Succ vyw45000) Zero",fontsize=16,color="magenta"];1895 -> 2045[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1895 -> 2046[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1896[label="EQ",fontsize=16,color="green",shape="box"];1897 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1897[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];1897 -> 2047[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1897 -> 2048[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1898 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1898[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];1898 -> 2049[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1898 -> 2050[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1899 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1899[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];1899 -> 2051[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1899 -> 2052[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1900 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1900[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];1900 -> 2053[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1900 -> 2054[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1901 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1901[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];1901 -> 2055[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1901 -> 2056[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1902 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1902[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];1902 -> 2057[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1902 -> 2058[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1903 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1903[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];1903 -> 2059[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1903 -> 2060[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1904 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1904[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];1904 -> 2061[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1904 -> 2062[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1906 -> 1267[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1906[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1906 -> 2063[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1906 -> 2064[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1905[label="compare1 vyw430 vyw450 vyw111",fontsize=16,color="burlywood",shape="triangle"];2863[label="vyw111/False",fontsize=10,color="white",style="solid",shape="box"];1905 -> 2863[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2863 -> 2065[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2864[label="vyw111/True",fontsize=10,color="white",style="solid",shape="box"];1905 -> 2864[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2864 -> 2066[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1908 -> 1268[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1908[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1908 -> 2067[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1908 -> 2068[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1907[label="compare1 vyw430 vyw450 vyw112",fontsize=16,color="burlywood",shape="triangle"];2865[label="vyw112/False",fontsize=10,color="white",style="solid",shape="box"];1907 -> 2865[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2865 -> 2069[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2866[label="vyw112/True",fontsize=10,color="white",style="solid",shape="box"];1907 -> 2866[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2866 -> 2070[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1910 -> 1271[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1910[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1910 -> 2071[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1910 -> 2072[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1909[label="compare1 vyw430 vyw450 vyw113",fontsize=16,color="burlywood",shape="triangle"];2867[label="vyw113/False",fontsize=10,color="white",style="solid",shape="box"];1909 -> 2867[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2867 -> 2073[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2868[label="vyw113/True",fontsize=10,color="white",style="solid",shape="box"];1909 -> 2868[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2868 -> 2074[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1911[label="vyw4500",fontsize=16,color="green",shape="box"];1912[label="vyw4301",fontsize=16,color="green",shape="box"];1913[label="vyw4300",fontsize=16,color="green",shape="box"];1914[label="vyw4501",fontsize=16,color="green",shape="box"];1915[label="Integer vyw45000 * vyw4301",fontsize=16,color="burlywood",shape="box"];2869[label="vyw4301/Integer vyw43010",fontsize=10,color="white",style="solid",shape="box"];1915 -> 2869[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2869 -> 2075[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1916[label="vyw4501",fontsize=16,color="green",shape="box"];1917[label="vyw4300",fontsize=16,color="green",shape="box"];1919 -> 1273[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1919[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1919 -> 2076[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1919 -> 2077[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1918[label="compare1 vyw430 vyw450 vyw114",fontsize=16,color="burlywood",shape="triangle"];2870[label="vyw114/False",fontsize=10,color="white",style="solid",shape="box"];1918 -> 2870[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2870 -> 2078[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2871[label="vyw114/True",fontsize=10,color="white",style="solid",shape="box"];1918 -> 2871[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2871 -> 2079[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1921 -> 1274[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1921[label="vyw430 <= vyw450",fontsize=16,color="magenta"];1921 -> 2080[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1921 -> 2081[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1920[label="compare1 vyw430 vyw450 vyw115",fontsize=16,color="burlywood",shape="triangle"];2872[label="vyw115/False",fontsize=10,color="white",style="solid",shape="box"];1920 -> 2872[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2872 -> 2082[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 2873[label="vyw115/True",fontsize=10,color="white",style="solid",shape="box"];1920 -> 2873[label="",style="solid", color="burlywood", weight=9]; 25.79/11.06 2873 -> 2083[label="",style="solid", color="burlywood", weight=3]; 25.79/11.06 1922[label="vyw4311",fontsize=16,color="green",shape="box"];1923[label="vyw4511",fontsize=16,color="green",shape="box"];1924[label="vyw4311",fontsize=16,color="green",shape="box"];1925[label="vyw4511",fontsize=16,color="green",shape="box"];1926[label="vyw4311",fontsize=16,color="green",shape="box"];1927[label="vyw4511",fontsize=16,color="green",shape="box"];1928[label="vyw4311",fontsize=16,color="green",shape="box"];1929[label="vyw4511",fontsize=16,color="green",shape="box"];1930[label="vyw4311",fontsize=16,color="green",shape="box"];1931[label="vyw4511",fontsize=16,color="green",shape="box"];1932[label="vyw4311",fontsize=16,color="green",shape="box"];1933[label="vyw4511",fontsize=16,color="green",shape="box"];1934[label="vyw4311",fontsize=16,color="green",shape="box"];1935[label="vyw4511",fontsize=16,color="green",shape="box"];1936[label="vyw4311",fontsize=16,color="green",shape="box"];1937[label="vyw4511",fontsize=16,color="green",shape="box"];1938[label="vyw4311",fontsize=16,color="green",shape="box"];1939[label="vyw4511",fontsize=16,color="green",shape="box"];1940[label="vyw4311",fontsize=16,color="green",shape="box"];1941[label="vyw4511",fontsize=16,color="green",shape="box"];1942[label="vyw4311",fontsize=16,color="green",shape="box"];1943[label="vyw4511",fontsize=16,color="green",shape="box"];1944[label="vyw4311",fontsize=16,color="green",shape="box"];1945[label="vyw4511",fontsize=16,color="green",shape="box"];1946[label="vyw4311",fontsize=16,color="green",shape="box"];1947[label="vyw4511",fontsize=16,color="green",shape="box"];1948[label="vyw4311",fontsize=16,color="green",shape="box"];1949[label="vyw4511",fontsize=16,color="green",shape="box"];1950[label="vyw4510",fontsize=16,color="green",shape="box"];1951[label="vyw4310",fontsize=16,color="green",shape="box"];1952[label="vyw4510",fontsize=16,color="green",shape="box"];1953[label="vyw4310",fontsize=16,color="green",shape="box"];1954[label="vyw4510",fontsize=16,color="green",shape="box"];1955[label="vyw4310",fontsize=16,color="green",shape="box"];1956[label="vyw4510",fontsize=16,color="green",shape="box"];1957[label="vyw4310",fontsize=16,color="green",shape="box"];1958[label="vyw4510",fontsize=16,color="green",shape="box"];1959[label="vyw4310",fontsize=16,color="green",shape="box"];1960[label="vyw4510",fontsize=16,color="green",shape="box"];1961[label="vyw4310",fontsize=16,color="green",shape="box"];1962[label="vyw4510",fontsize=16,color="green",shape="box"];1963[label="vyw4310",fontsize=16,color="green",shape="box"];1964[label="vyw4510",fontsize=16,color="green",shape="box"];1965[label="vyw4310",fontsize=16,color="green",shape="box"];1966[label="vyw4510",fontsize=16,color="green",shape="box"];1967[label="vyw4310",fontsize=16,color="green",shape="box"];1968[label="vyw4510",fontsize=16,color="green",shape="box"];1969[label="vyw4310",fontsize=16,color="green",shape="box"];1970[label="vyw4510",fontsize=16,color="green",shape="box"];1971[label="vyw4310",fontsize=16,color="green",shape="box"];1972[label="vyw4510",fontsize=16,color="green",shape="box"];1973[label="vyw4310",fontsize=16,color="green",shape="box"];1974[label="vyw4510",fontsize=16,color="green",shape="box"];1975[label="vyw4310",fontsize=16,color="green",shape="box"];1976[label="vyw4510",fontsize=16,color="green",shape="box"];1977[label="vyw4310",fontsize=16,color="green",shape="box"];1978[label="vyw4312 <= vyw4512",fontsize=16,color="blue",shape="box"];2874[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2874[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2874 -> 2084[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2875[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2875[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2875 -> 2085[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2876[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2876[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2876 -> 2086[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2877[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2877[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2877 -> 2087[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2878[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2878[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2878 -> 2088[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2879[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2879[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2879 -> 2089[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2880[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2880[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2880 -> 2090[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2881[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2881[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2881 -> 2091[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2882[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2882[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2882 -> 2092[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2883[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2883[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2883 -> 2093[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2884[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2884[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2884 -> 2094[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2885[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2885[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2885 -> 2095[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2886[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2886[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2886 -> 2096[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2887[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1978 -> 2887[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2887 -> 2097[label="",style="solid", color="blue", weight=3]; 25.79/11.06 1979[label="vyw4311 == vyw4511",fontsize=16,color="blue",shape="box"];2888[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2888[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2888 -> 2098[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2889[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2889[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2889 -> 2099[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2890[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2890[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2890 -> 2100[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2891[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2891[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2891 -> 2101[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2892[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2892[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2892 -> 2102[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2893[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2893[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2893 -> 2103[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2894[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2894[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2894 -> 2104[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2895[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2895[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2895 -> 2105[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2896[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2896[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2896 -> 2106[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2897[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2897[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2897 -> 2107[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2898[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2898[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2898 -> 2108[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2899[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2899[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2899 -> 2109[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2900[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2900[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2900 -> 2110[label="",style="solid", color="blue", weight=3]; 25.79/11.06 2901[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1979 -> 2901[label="",style="solid", color="blue", weight=9]; 25.79/11.06 2901 -> 2111[label="",style="solid", color="blue", weight=3]; 25.79/11.06 1980 -> 1225[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1980[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1980 -> 2112[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1980 -> 2113[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1981 -> 1226[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1981[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1981 -> 2114[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1981 -> 2115[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1982 -> 1227[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1982[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1982 -> 2116[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1982 -> 2117[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1983 -> 1228[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1983[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1983 -> 2118[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1983 -> 2119[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1984 -> 1229[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1984[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1984 -> 2120[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1984 -> 2121[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1985 -> 1230[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1985[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1985 -> 2122[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1985 -> 2123[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1986 -> 1231[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1986[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1986 -> 2124[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1986 -> 2125[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1987 -> 1232[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1987[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1987 -> 2126[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1987 -> 2127[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1988 -> 1233[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1988[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1988 -> 2128[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1988 -> 2129[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1989 -> 1234[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1989[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1989 -> 2130[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1989 -> 2131[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1990 -> 1235[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1990[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1990 -> 2132[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1990 -> 2133[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1991 -> 1236[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1991[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1991 -> 2134[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1991 -> 2135[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1992 -> 1237[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1992[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1992 -> 2136[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1992 -> 2137[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1993 -> 1238[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1993[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1993 -> 2138[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1993 -> 2139[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1994[label="vyw4510",fontsize=16,color="green",shape="box"];1995[label="vyw4310",fontsize=16,color="green",shape="box"];1996[label="vyw4510",fontsize=16,color="green",shape="box"];1997[label="vyw4310",fontsize=16,color="green",shape="box"];1998[label="vyw4510",fontsize=16,color="green",shape="box"];1999[label="vyw4310",fontsize=16,color="green",shape="box"];2000[label="vyw4510",fontsize=16,color="green",shape="box"];2001[label="vyw4310",fontsize=16,color="green",shape="box"];2002[label="vyw4510",fontsize=16,color="green",shape="box"];2003[label="vyw4310",fontsize=16,color="green",shape="box"];2004[label="vyw4510",fontsize=16,color="green",shape="box"];2005[label="vyw4310",fontsize=16,color="green",shape="box"];2006[label="vyw4510",fontsize=16,color="green",shape="box"];2007[label="vyw4310",fontsize=16,color="green",shape="box"];2008[label="vyw4510",fontsize=16,color="green",shape="box"];2009[label="vyw4310",fontsize=16,color="green",shape="box"];2010[label="vyw4510",fontsize=16,color="green",shape="box"];2011[label="vyw4310",fontsize=16,color="green",shape="box"];2012[label="vyw4510",fontsize=16,color="green",shape="box"];2013[label="vyw4310",fontsize=16,color="green",shape="box"];2014[label="vyw4510",fontsize=16,color="green",shape="box"];2015[label="vyw4310",fontsize=16,color="green",shape="box"];2016[label="vyw4510",fontsize=16,color="green",shape="box"];2017[label="vyw4310",fontsize=16,color="green",shape="box"];2018[label="vyw4510",fontsize=16,color="green",shape="box"];2019[label="vyw4310",fontsize=16,color="green",shape="box"];2020[label="vyw4510",fontsize=16,color="green",shape="box"];2021[label="vyw4310",fontsize=16,color="green",shape="box"];1243[label="primPlusNat (Succ vyw7700) (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1243 -> 1291[label="",style="solid", color="black", weight=3]; 25.79/11.06 1244[label="primPlusNat (Succ vyw7700) Zero",fontsize=16,color="black",shape="box"];1244 -> 1292[label="",style="solid", color="black", weight=3]; 25.79/11.06 1245[label="primPlusNat Zero (Succ vyw3000000)",fontsize=16,color="black",shape="box"];1245 -> 1293[label="",style="solid", color="black", weight=3]; 25.79/11.06 1246[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1246 -> 1294[label="",style="solid", color="black", weight=3]; 25.79/11.06 2022 -> 1296[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2022[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2022 -> 2140[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2022 -> 2141[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2023 -> 1298[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2023[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2023 -> 2142[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2023 -> 2143[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2024 -> 1300[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2024[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2024 -> 2144[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2024 -> 2145[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2025 -> 1302[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2025[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2025 -> 2146[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2025 -> 2147[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2026 -> 1304[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2026[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2026 -> 2148[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2026 -> 2149[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2027 -> 1306[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2027[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2027 -> 2150[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2027 -> 2151[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2028 -> 1308[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2028[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2028 -> 2152[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2028 -> 2153[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2029 -> 1310[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2029[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2029 -> 2154[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2029 -> 2155[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2030 -> 1312[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2030[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2030 -> 2156[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2030 -> 2157[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2031 -> 1314[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2031[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2031 -> 2158[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2031 -> 2159[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2032 -> 1316[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2032[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2032 -> 2160[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2032 -> 2161[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2033 -> 1318[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2033[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2033 -> 2162[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2033 -> 2163[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2034 -> 1320[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2034[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2034 -> 2164[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2034 -> 2165[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2035 -> 1322[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2035[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2035 -> 2166[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2035 -> 2167[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2036[label="primCompAux0 vyw109 LT",fontsize=16,color="black",shape="box"];2036 -> 2168[label="",style="solid", color="black", weight=3]; 25.79/11.06 2037[label="primCompAux0 vyw109 EQ",fontsize=16,color="black",shape="box"];2037 -> 2169[label="",style="solid", color="black", weight=3]; 25.79/11.06 2038[label="primCompAux0 vyw109 GT",fontsize=16,color="black",shape="box"];2038 -> 2170[label="",style="solid", color="black", weight=3]; 25.79/11.06 2039 -> 1565[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2039[label="primCmpNat vyw43000 vyw45000",fontsize=16,color="magenta"];2039 -> 2171[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2039 -> 2172[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2040[label="GT",fontsize=16,color="green",shape="box"];2041[label="LT",fontsize=16,color="green",shape="box"];2042[label="EQ",fontsize=16,color="green",shape="box"];2043[label="Succ vyw45000",fontsize=16,color="green",shape="box"];2044[label="Zero",fontsize=16,color="green",shape="box"];2045[label="Zero",fontsize=16,color="green",shape="box"];2046[label="Succ vyw45000",fontsize=16,color="green",shape="box"];2047 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2047[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2047 -> 2173[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2047 -> 2174[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2048 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2048[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2048 -> 2175[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2048 -> 2176[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2049 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2049[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2049 -> 2177[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2049 -> 2178[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2050 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2050[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2050 -> 2179[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2050 -> 2180[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2051 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2051[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2051 -> 2181[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2051 -> 2182[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2052 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2052[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2052 -> 2183[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2052 -> 2184[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2053 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2053[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2053 -> 2185[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2053 -> 2186[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2054 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2054[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2054 -> 2187[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2054 -> 2188[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2055 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2055[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2055 -> 2189[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2055 -> 2190[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2056 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2056[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2056 -> 2191[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2056 -> 2192[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2057 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2057[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2057 -> 2193[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2057 -> 2194[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2058 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2058[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2058 -> 2195[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2058 -> 2196[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2059 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2059[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2059 -> 2197[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2059 -> 2198[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2060 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2060[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2060 -> 2199[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2060 -> 2200[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2061 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2061[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2061 -> 2201[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2061 -> 2202[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2062 -> 417[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2062[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2062 -> 2203[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2062 -> 2204[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2063[label="vyw430",fontsize=16,color="green",shape="box"];2064[label="vyw450",fontsize=16,color="green",shape="box"];2065[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2065 -> 2205[label="",style="solid", color="black", weight=3]; 25.79/11.06 2066[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2066 -> 2206[label="",style="solid", color="black", weight=3]; 25.79/11.06 2067[label="vyw430",fontsize=16,color="green",shape="box"];2068[label="vyw450",fontsize=16,color="green",shape="box"];2069[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2069 -> 2207[label="",style="solid", color="black", weight=3]; 25.79/11.06 2070[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2070 -> 2208[label="",style="solid", color="black", weight=3]; 25.79/11.06 2071[label="vyw430",fontsize=16,color="green",shape="box"];2072[label="vyw450",fontsize=16,color="green",shape="box"];2073[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2073 -> 2209[label="",style="solid", color="black", weight=3]; 25.79/11.06 2074[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2074 -> 2210[label="",style="solid", color="black", weight=3]; 25.79/11.06 2075[label="Integer vyw45000 * Integer vyw43010",fontsize=16,color="black",shape="box"];2075 -> 2211[label="",style="solid", color="black", weight=3]; 25.79/11.06 2076[label="vyw430",fontsize=16,color="green",shape="box"];2077[label="vyw450",fontsize=16,color="green",shape="box"];2078[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2078 -> 2212[label="",style="solid", color="black", weight=3]; 25.79/11.06 2079[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2079 -> 2213[label="",style="solid", color="black", weight=3]; 25.79/11.06 2080[label="vyw430",fontsize=16,color="green",shape="box"];2081[label="vyw450",fontsize=16,color="green",shape="box"];2082[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2082 -> 2214[label="",style="solid", color="black", weight=3]; 25.79/11.06 2083[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2083 -> 2215[label="",style="solid", color="black", weight=3]; 25.79/11.06 2084 -> 1261[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2084[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2084 -> 2216[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2084 -> 2217[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2085 -> 1262[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2085[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2085 -> 2218[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2085 -> 2219[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2086 -> 1263[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2086[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2086 -> 2220[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2086 -> 2221[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2087 -> 1264[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2087[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2087 -> 2222[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2087 -> 2223[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2088 -> 1265[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2088[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2088 -> 2224[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2088 -> 2225[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2089 -> 1266[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2089[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2089 -> 2226[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2089 -> 2227[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2090 -> 1267[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2090[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2090 -> 2228[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2090 -> 2229[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2091 -> 1268[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2091[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2091 -> 2230[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2091 -> 2231[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2092 -> 1269[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2092[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2092 -> 2232[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2092 -> 2233[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2093 -> 1270[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2093[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2093 -> 2234[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2093 -> 2235[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2094 -> 1271[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2094[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2094 -> 2236[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2094 -> 2237[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2095 -> 1272[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2095[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2095 -> 2238[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2095 -> 2239[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2096 -> 1273[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2096[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2096 -> 2240[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2096 -> 2241[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2097 -> 1274[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2097[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2097 -> 2242[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2097 -> 2243[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2098 -> 130[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2098[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2098 -> 2244[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2098 -> 2245[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2099 -> 123[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2099[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2099 -> 2246[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2099 -> 2247[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2100 -> 122[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2100[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2100 -> 2248[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2100 -> 2249[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2101 -> 129[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2101[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2101 -> 2250[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2101 -> 2251[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2102 -> 126[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2102[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2102 -> 2252[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2102 -> 2253[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2103 -> 125[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2103[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2103 -> 2254[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2103 -> 2255[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2104 -> 134[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2104[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2104 -> 2256[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2104 -> 2257[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2105 -> 127[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2105[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2105 -> 2258[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2105 -> 2259[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2106 -> 121[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2106[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2106 -> 2260[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2106 -> 2261[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2107 -> 132[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2107[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2107 -> 2262[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2107 -> 2263[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2108 -> 131[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2108[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2108 -> 2264[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2108 -> 2265[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2109 -> 133[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2109[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2109 -> 2266[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2109 -> 2267[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2110 -> 128[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2110[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2110 -> 2268[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2110 -> 2269[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2111 -> 124[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2111[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2111 -> 2270[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2111 -> 2271[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2112[label="vyw4511",fontsize=16,color="green",shape="box"];2113[label="vyw4311",fontsize=16,color="green",shape="box"];2114[label="vyw4511",fontsize=16,color="green",shape="box"];2115[label="vyw4311",fontsize=16,color="green",shape="box"];2116[label="vyw4511",fontsize=16,color="green",shape="box"];2117[label="vyw4311",fontsize=16,color="green",shape="box"];2118[label="vyw4511",fontsize=16,color="green",shape="box"];2119[label="vyw4311",fontsize=16,color="green",shape="box"];2120[label="vyw4511",fontsize=16,color="green",shape="box"];2121[label="vyw4311",fontsize=16,color="green",shape="box"];2122[label="vyw4511",fontsize=16,color="green",shape="box"];2123[label="vyw4311",fontsize=16,color="green",shape="box"];2124[label="vyw4511",fontsize=16,color="green",shape="box"];2125[label="vyw4311",fontsize=16,color="green",shape="box"];2126[label="vyw4511",fontsize=16,color="green",shape="box"];2127[label="vyw4311",fontsize=16,color="green",shape="box"];2128[label="vyw4511",fontsize=16,color="green",shape="box"];2129[label="vyw4311",fontsize=16,color="green",shape="box"];2130[label="vyw4511",fontsize=16,color="green",shape="box"];2131[label="vyw4311",fontsize=16,color="green",shape="box"];2132[label="vyw4511",fontsize=16,color="green",shape="box"];2133[label="vyw4311",fontsize=16,color="green",shape="box"];2134[label="vyw4511",fontsize=16,color="green",shape="box"];2135[label="vyw4311",fontsize=16,color="green",shape="box"];2136[label="vyw4511",fontsize=16,color="green",shape="box"];2137[label="vyw4311",fontsize=16,color="green",shape="box"];2138[label="vyw4511",fontsize=16,color="green",shape="box"];2139[label="vyw4311",fontsize=16,color="green",shape="box"];1291[label="Succ (Succ (primPlusNat vyw7700 vyw3000000))",fontsize=16,color="green",shape="box"];1291 -> 1373[label="",style="dashed", color="green", weight=3]; 25.79/11.06 1292[label="Succ vyw7700",fontsize=16,color="green",shape="box"];1293[label="Succ vyw3000000",fontsize=16,color="green",shape="box"];1294[label="Zero",fontsize=16,color="green",shape="box"];2140[label="vyw4500",fontsize=16,color="green",shape="box"];2141[label="vyw4300",fontsize=16,color="green",shape="box"];2142[label="vyw4500",fontsize=16,color="green",shape="box"];2143[label="vyw4300",fontsize=16,color="green",shape="box"];2144[label="vyw4500",fontsize=16,color="green",shape="box"];2145[label="vyw4300",fontsize=16,color="green",shape="box"];2146[label="vyw4500",fontsize=16,color="green",shape="box"];2147[label="vyw4300",fontsize=16,color="green",shape="box"];2148[label="vyw4500",fontsize=16,color="green",shape="box"];2149[label="vyw4300",fontsize=16,color="green",shape="box"];2150[label="vyw4500",fontsize=16,color="green",shape="box"];2151[label="vyw4300",fontsize=16,color="green",shape="box"];2152[label="vyw4500",fontsize=16,color="green",shape="box"];2153[label="vyw4300",fontsize=16,color="green",shape="box"];2154[label="vyw4500",fontsize=16,color="green",shape="box"];2155[label="vyw4300",fontsize=16,color="green",shape="box"];2156[label="vyw4500",fontsize=16,color="green",shape="box"];2157[label="vyw4300",fontsize=16,color="green",shape="box"];2158[label="vyw4500",fontsize=16,color="green",shape="box"];2159[label="vyw4300",fontsize=16,color="green",shape="box"];2160[label="vyw4500",fontsize=16,color="green",shape="box"];2161[label="vyw4300",fontsize=16,color="green",shape="box"];2162[label="vyw4500",fontsize=16,color="green",shape="box"];2163[label="vyw4300",fontsize=16,color="green",shape="box"];2164[label="vyw4500",fontsize=16,color="green",shape="box"];2165[label="vyw4300",fontsize=16,color="green",shape="box"];2166[label="vyw4500",fontsize=16,color="green",shape="box"];2167[label="vyw4300",fontsize=16,color="green",shape="box"];2168[label="LT",fontsize=16,color="green",shape="box"];2169[label="vyw109",fontsize=16,color="green",shape="box"];2170[label="GT",fontsize=16,color="green",shape="box"];2171[label="vyw45000",fontsize=16,color="green",shape="box"];2172[label="vyw43000",fontsize=16,color="green",shape="box"];2173[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2174[label="vyw4500",fontsize=16,color="green",shape="box"];2175[label="vyw4300",fontsize=16,color="green",shape="box"];2176[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2177[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2178[label="vyw4500",fontsize=16,color="green",shape="box"];2179[label="vyw4300",fontsize=16,color="green",shape="box"];2180[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2181[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2182[label="vyw4500",fontsize=16,color="green",shape="box"];2183[label="vyw4300",fontsize=16,color="green",shape="box"];2184[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2185[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2186[label="vyw4500",fontsize=16,color="green",shape="box"];2187[label="vyw4300",fontsize=16,color="green",shape="box"];2188[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2189[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2190[label="vyw4500",fontsize=16,color="green",shape="box"];2191[label="vyw4300",fontsize=16,color="green",shape="box"];2192[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2193[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2194[label="vyw4500",fontsize=16,color="green",shape="box"];2195[label="vyw4300",fontsize=16,color="green",shape="box"];2196[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2197[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2198[label="vyw4500",fontsize=16,color="green",shape="box"];2199[label="vyw4300",fontsize=16,color="green",shape="box"];2200[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2201[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2202[label="vyw4500",fontsize=16,color="green",shape="box"];2203[label="vyw4300",fontsize=16,color="green",shape="box"];2204[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2205[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2205 -> 2272[label="",style="solid", color="black", weight=3]; 25.79/11.06 2206[label="LT",fontsize=16,color="green",shape="box"];2207[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2207 -> 2273[label="",style="solid", color="black", weight=3]; 25.79/11.06 2208[label="LT",fontsize=16,color="green",shape="box"];2209[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2209 -> 2274[label="",style="solid", color="black", weight=3]; 25.79/11.06 2210[label="LT",fontsize=16,color="green",shape="box"];2211[label="Integer (primMulInt vyw45000 vyw43010)",fontsize=16,color="green",shape="box"];2211 -> 2275[label="",style="dashed", color="green", weight=3]; 25.79/11.06 2212[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2212 -> 2276[label="",style="solid", color="black", weight=3]; 25.79/11.06 2213[label="LT",fontsize=16,color="green",shape="box"];2214[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2214 -> 2277[label="",style="solid", color="black", weight=3]; 25.79/11.06 2215[label="LT",fontsize=16,color="green",shape="box"];2216[label="vyw4312",fontsize=16,color="green",shape="box"];2217[label="vyw4512",fontsize=16,color="green",shape="box"];2218[label="vyw4312",fontsize=16,color="green",shape="box"];2219[label="vyw4512",fontsize=16,color="green",shape="box"];2220[label="vyw4312",fontsize=16,color="green",shape="box"];2221[label="vyw4512",fontsize=16,color="green",shape="box"];2222[label="vyw4312",fontsize=16,color="green",shape="box"];2223[label="vyw4512",fontsize=16,color="green",shape="box"];2224[label="vyw4312",fontsize=16,color="green",shape="box"];2225[label="vyw4512",fontsize=16,color="green",shape="box"];2226[label="vyw4312",fontsize=16,color="green",shape="box"];2227[label="vyw4512",fontsize=16,color="green",shape="box"];2228[label="vyw4312",fontsize=16,color="green",shape="box"];2229[label="vyw4512",fontsize=16,color="green",shape="box"];2230[label="vyw4312",fontsize=16,color="green",shape="box"];2231[label="vyw4512",fontsize=16,color="green",shape="box"];2232[label="vyw4312",fontsize=16,color="green",shape="box"];2233[label="vyw4512",fontsize=16,color="green",shape="box"];2234[label="vyw4312",fontsize=16,color="green",shape="box"];2235[label="vyw4512",fontsize=16,color="green",shape="box"];2236[label="vyw4312",fontsize=16,color="green",shape="box"];2237[label="vyw4512",fontsize=16,color="green",shape="box"];2238[label="vyw4312",fontsize=16,color="green",shape="box"];2239[label="vyw4512",fontsize=16,color="green",shape="box"];2240[label="vyw4312",fontsize=16,color="green",shape="box"];2241[label="vyw4512",fontsize=16,color="green",shape="box"];2242[label="vyw4312",fontsize=16,color="green",shape="box"];2243[label="vyw4512",fontsize=16,color="green",shape="box"];2244[label="vyw4511",fontsize=16,color="green",shape="box"];2245[label="vyw4311",fontsize=16,color="green",shape="box"];2246[label="vyw4511",fontsize=16,color="green",shape="box"];2247[label="vyw4311",fontsize=16,color="green",shape="box"];2248[label="vyw4511",fontsize=16,color="green",shape="box"];2249[label="vyw4311",fontsize=16,color="green",shape="box"];2250[label="vyw4511",fontsize=16,color="green",shape="box"];2251[label="vyw4311",fontsize=16,color="green",shape="box"];2252[label="vyw4511",fontsize=16,color="green",shape="box"];2253[label="vyw4311",fontsize=16,color="green",shape="box"];2254[label="vyw4511",fontsize=16,color="green",shape="box"];2255[label="vyw4311",fontsize=16,color="green",shape="box"];2256[label="vyw4511",fontsize=16,color="green",shape="box"];2257[label="vyw4311",fontsize=16,color="green",shape="box"];2258[label="vyw4511",fontsize=16,color="green",shape="box"];2259[label="vyw4311",fontsize=16,color="green",shape="box"];2260[label="vyw4511",fontsize=16,color="green",shape="box"];2261[label="vyw4311",fontsize=16,color="green",shape="box"];2262[label="vyw4511",fontsize=16,color="green",shape="box"];2263[label="vyw4311",fontsize=16,color="green",shape="box"];2264[label="vyw4511",fontsize=16,color="green",shape="box"];2265[label="vyw4311",fontsize=16,color="green",shape="box"];2266[label="vyw4511",fontsize=16,color="green",shape="box"];2267[label="vyw4311",fontsize=16,color="green",shape="box"];2268[label="vyw4511",fontsize=16,color="green",shape="box"];2269[label="vyw4311",fontsize=16,color="green",shape="box"];2270[label="vyw4511",fontsize=16,color="green",shape="box"];2271[label="vyw4311",fontsize=16,color="green",shape="box"];1373 -> 1204[label="",style="dashed", color="red", weight=0]; 25.79/11.06 1373[label="primPlusNat vyw7700 vyw3000000",fontsize=16,color="magenta"];1373 -> 1458[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 1373 -> 1459[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2272[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2272 -> 2278[label="",style="solid", color="black", weight=3]; 25.79/11.06 2273[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2273 -> 2279[label="",style="solid", color="black", weight=3]; 25.79/11.06 2274[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2274 -> 2280[label="",style="solid", color="black", weight=3]; 25.79/11.06 2275 -> 649[label="",style="dashed", color="red", weight=0]; 25.79/11.06 2275[label="primMulInt vyw45000 vyw43010",fontsize=16,color="magenta"];2275 -> 2281[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2275 -> 2282[label="",style="dashed", color="magenta", weight=3]; 25.79/11.06 2276[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2276 -> 2283[label="",style="solid", color="black", weight=3]; 25.79/11.06 2277[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2277 -> 2284[label="",style="solid", color="black", weight=3]; 25.79/11.06 1458[label="vyw7700",fontsize=16,color="green",shape="box"];1459[label="vyw3000000",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="GT",fontsize=16,color="green",shape="box"];2281[label="vyw45000",fontsize=16,color="green",shape="box"];2282[label="vyw43010",fontsize=16,color="green",shape="box"];2283[label="GT",fontsize=16,color="green",shape="box"];2284[label="GT",fontsize=16,color="green",shape="box"];} 25.79/11.06 25.79/11.06 ---------------------------------------- 25.79/11.06 25.79/11.06 (16) 25.79/11.06 Complex Obligation (AND) 25.79/11.06 25.79/11.06 ---------------------------------------- 25.79/11.06 25.79/11.06 (17) 25.79/11.06 Obligation: 25.79/11.06 Q DP problem: 25.79/11.06 The TRS P consists of the following rules: 25.79/11.06 25.79/11.06 new_primCmpNat(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) 25.79/11.06 25.79/11.06 R is empty. 25.79/11.06 Q is empty. 25.79/11.06 We have to consider all minimal (P,Q,R)-chains. 25.79/11.06 ---------------------------------------- 25.79/11.06 25.79/11.06 (18) QDPSizeChangeProof (EQUIVALENT) 25.79/11.06 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.79/11.06 25.79/11.06 From the DPs we obtained the following set of size-change graphs: 25.79/11.06 *new_primCmpNat(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2 25.79/11.06 25.79/11.06 25.79/11.06 ---------------------------------------- 25.79/11.06 25.79/11.06 (19) 25.79/11.06 YES 25.79/11.06 25.79/11.06 ---------------------------------------- 25.79/11.06 25.79/11.06 (20) 25.79/11.06 Obligation: 25.79/11.06 Q DP problem: 25.79/11.06 The TRS P consists of the following rules: 25.79/11.06 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(app(app(ty_@3, bfc), bfd), bfe)), bca), bdd)) -> new_lt3(vyw4310, vyw4510, bfc, bfd, bfe) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(app(ty_@2, dh), ea))) -> new_ltEs0(vyw4311, vyw4511, dh, ea) 25.79/11.06 new_ltEs(vyw431, vyw451, de) -> new_compare(vyw431, vyw451, de) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bef), beg), bca, bdd) -> new_lt0(vyw4310, vyw4510, bef, beg) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(app(app(ty_@3, beb), bec), bed)), bdd)) -> new_lt3(vyw4311, vyw4511, beb, bec, bed) 25.79/11.06 new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, da), db), dc), cd) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(app(app(ty_@3, ee), ef), eg))) -> new_ltEs3(vyw4311, vyw4511, ee, ef, eg) 25.79/11.06 new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(app(ty_Either, baa), bab))) -> new_ltEs1(vyw4310, vyw4510, baa, bab) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(ty_[], bdc), bdd) -> new_lt(vyw4311, vyw4511, bdc) 25.79/11.06 new_lt2(vyw430, vyw450, cg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, cg), cg) 25.79/11.06 new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(app(ty_@2, ge), gf)), gd)) -> new_ltEs0(vyw4310, vyw4510, ge, gf) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(ty_Maybe, bfb)), bca), bdd)) -> new_lt2(vyw4310, vyw4510, bfb) 25.79/11.06 new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, dd, app(ty_[], de)) -> new_compare(vyw431, vyw451, de) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(ty_Maybe, bcg)) -> new_ltEs2(vyw4312, vyw4512, bcg) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(ty_Maybe, bea), bdd) -> new_lt2(vyw4311, vyw4511, bea) 25.79/11.06 new_ltEs2(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bah), bba)) -> new_ltEs0(vyw4310, vyw4510, bah, bba) 25.79/11.06 new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(ty_[], hf)) -> new_ltEs(vyw4310, vyw4510, hf) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(ty_[], eh)), fa)) -> new_lt(vyw4310, vyw4510, eh) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(app(ty_@2, dh), ea)) -> new_ltEs0(vyw4311, vyw4511, dh, ea) 25.79/11.06 new_ltEs1(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ha), gd) -> new_ltEs2(vyw4310, vyw4510, ha) 25.79/11.06 new_ltEs1(Left(vyw4310), Left(vyw4510), app(ty_[], gc), gd) -> new_ltEs(vyw4310, vyw4510, gc) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(ty_[], dg))) -> new_ltEs(vyw4311, vyw4511, dg) 25.79/11.06 new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(app(ty_@2, bah), bba))) -> new_ltEs0(vyw4310, vyw4510, bah, bba) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(app(ty_@2, bcc), bcd))) -> new_ltEs0(vyw4312, vyw4512, bcc, bcd) 25.79/11.06 new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(app(ty_Either, baa), bab)) -> new_ltEs1(vyw4310, vyw4510, baa, bab) 25.79/11.06 new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_ltEs3(vyw4310, vyw4510, hb, hc, hd) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs3(vyw4312, vyw4512, bch, bda, bdb) 25.79/11.06 new_ltEs2(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(vyw4310, vyw4510, bbe, bbf, bbg) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, fh), ga), gb), fa) -> new_lt3(vyw4310, vyw4510, fh, ga, gb) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(app(ty_@2, bcc), bcd)) -> new_ltEs0(vyw4312, vyw4512, bcc, bcd) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(app(ty_@2, bde), bdf), bdd) -> new_lt0(vyw4311, vyw4511, bde, bdf) 25.79/11.06 new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, cb), cc), cd) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, cb, cc), cb, cc) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(app(ty_Either, bce), bcf)) -> new_ltEs1(vyw4312, vyw4512, bce, bcf) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(ty_Maybe, bcg))) -> new_ltEs2(vyw4312, vyw4512, bcg) 25.79/11.06 new_compare2(vyw430, vyw450, ce, cf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(ty_Maybe, bac)) -> new_ltEs2(vyw4310, vyw4510, bac) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(app(ty_Either, beh), bfa)), bca), bdd)) -> new_lt1(vyw4310, vyw4510, beh, bfa) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(app(ty_Either, eb), ec)) -> new_ltEs1(vyw4311, vyw4511, eb, ec) 25.79/11.06 new_ltEs1(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, hb), hc), hd), gd) -> new_ltEs3(vyw4310, vyw4510, hb, hc, hd) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, fb), fc), fa) -> new_lt0(vyw4310, vyw4510, fb, fc) 25.79/11.06 new_compare22(vyw430, vyw450, False, cg) -> new_ltEs2(vyw430, vyw450, cg) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(ty_Maybe, ed))) -> new_ltEs2(vyw4311, vyw4511, ed) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(app(ty_Either, eb), ec))) -> new_ltEs1(vyw4311, vyw4511, eb, ec) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs3(vyw4311, vyw4511, ee, ef, eg) 25.79/11.06 new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs3(vyw4310, vyw4510, bbe, bbf, bbg) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bfc), bfd), bfe), bca, bdd) -> new_lt3(vyw4310, vyw4510, bfc, bfd, bfe) 25.79/11.06 new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(ty_[], hf))) -> new_ltEs(vyw4310, vyw4510, hf) 25.79/11.06 new_lt(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_compare(vyw4301, vyw4501, h) 25.79/11.06 new_ltEs2(Just(vyw4310), Just(vyw4510), app(ty_[], bag)) -> new_ltEs(vyw4310, vyw4510, bag) 25.79/11.06 new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(vyw4310, vyw4510, bbd) 25.79/11.06 new_ltEs2(Just(vyw4310), Just(vyw4510), app(ty_Maybe, bbd)) -> new_ltEs2(vyw4310, vyw4510, bbd) 25.79/11.06 new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(ty_Maybe, ha)), gd)) -> new_ltEs2(vyw4310, vyw4510, ha) 25.79/11.06 new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, ce), cf), cd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(ty_Maybe, ed)) -> new_ltEs2(vyw4311, vyw4511, ed) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(ty_Maybe, bea)), bdd)) -> new_lt2(vyw4311, vyw4511, bea) 25.79/11.06 new_compare21(vyw430, vyw450, False, ce, cf) -> new_ltEs1(vyw430, vyw450, ce, cf) 25.79/11.06 new_primCompAux(vyw4300, vyw4500, vyw100, app(ty_Maybe, bf)) -> new_compare3(vyw4300, vyw4500, bf) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(app(app(ty_@3, bch), bda), bdb))) -> new_ltEs3(vyw4312, vyw4512, bch, bda, bdb) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], eh), fa) -> new_lt(vyw4310, vyw4510, eh) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bee), bca, bdd) -> new_lt(vyw4310, vyw4510, bee) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(app(app(ty_@3, fh), ga), gb)), fa)) -> new_lt3(vyw4310, vyw4510, fh, ga, gb) 25.79/11.06 new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(ty_[], gc)), gd)) -> new_ltEs(vyw4310, vyw4510, gc) 25.79/11.06 new_lt0(vyw430, vyw450, cb, cc) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, cb, cc), cb, cc) 25.79/11.06 new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, cg), cd) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, cg), cg) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(app(ty_Either, bce), bcf))) -> new_ltEs1(vyw4312, vyw4512, bce, bcf) 25.79/11.06 new_ltEs1(Left(vyw4310), Left(vyw4510), app(app(ty_@2, ge), gf), gd) -> new_ltEs0(vyw4310, vyw4510, ge, gf) 25.79/11.06 new_primCompAux(vyw4300, vyw4500, vyw100, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(vyw4300, vyw4500, bg, bh, ca) 25.79/11.06 new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(app(ty_@2, hg), hh)) -> new_ltEs0(vyw4310, vyw4510, hg, hh) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bfb), bca, bdd) -> new_lt2(vyw4310, vyw4510, bfb) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(app(ty_Either, fd), ff)), fa)) -> new_lt1(vyw4310, vyw4510, fd, ff) 25.79/11.06 new_ltEs2(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bbb), bbc)) -> new_ltEs1(vyw4310, vyw4510, bbb, bbc) 25.79/11.06 new_primCompAux(vyw4300, vyw4500, vyw100, app(app(ty_Either, bd), be)) -> new_compare2(vyw4300, vyw4500, bd, be) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(ty_Maybe, fg)), fa)) -> new_lt2(vyw4310, vyw4510, fg) 25.79/11.06 new_compare3(vyw430, vyw450, cg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, cg), cg) 25.79/11.06 new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(ty_Maybe, bac))) -> new_ltEs2(vyw4310, vyw4510, bac) 25.79/11.06 new_compare20(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], h), cd) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, h), h) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, beh), bfa), bca, bdd) -> new_lt1(vyw4310, vyw4510, beh, bfa) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(ty_[], bee)), bca), bdd)) -> new_lt(vyw4310, vyw4510, bee) 25.79/11.06 new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, h), h) 25.79/11.06 new_compare4(vyw430, vyw450, da, db, dc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.06 new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(ty_[], bag))) -> new_ltEs(vyw4310, vyw4510, bag) 25.79/11.06 new_lt3(vyw430, vyw450, da, db, dc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.06 new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(app(ty_@2, hg), hh))) -> new_ltEs0(vyw4310, vyw4510, hg, hh) 25.79/11.06 new_compare20(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], h), cd) -> new_compare(vyw4301, vyw4501, h) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(ty_[], bcb))) -> new_ltEs(vyw4312, vyw4512, bcb) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(ty_[], dg)) -> new_ltEs(vyw4311, vyw4511, dg) 25.79/11.06 new_ltEs1(Left(vyw4310), Left(vyw4510), app(app(ty_Either, gg), gh), gd) -> new_ltEs1(vyw4310, vyw4510, gg, gh) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(app(ty_Either, bdg), bdh)), bdd)) -> new_lt1(vyw4311, vyw4511, bdg, bdh) 25.79/11.06 new_primCompAux(vyw4300, vyw4500, vyw100, app(ty_[], ba)) -> new_compare(vyw4300, vyw4500, ba) 25.79/11.06 new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vyw4310, vyw4510, bad, bae, baf) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(ty_[], bcb)) -> new_ltEs(vyw4312, vyw4512, bcb) 25.79/11.06 new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(app(ty_Either, gg), gh)), gd)) -> new_ltEs1(vyw4310, vyw4510, gg, gh) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, fd), ff), fa) -> new_lt1(vyw4310, vyw4510, fd, ff) 25.79/11.06 new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_compare(vyw4301, vyw4501, h) 25.79/11.06 new_compare1(vyw430, vyw450, cb, cc) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, cb, cc), cb, cc) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(app(ty_Either, bdg), bdh), bdd) -> new_lt1(vyw4311, vyw4511, bdg, bdh) 25.79/11.06 new_lt(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, h), h) 25.79/11.06 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, fg), fa) -> new_lt2(vyw4310, vyw4510, fg) 25.79/11.06 new_lt1(vyw430, vyw450, ce, cf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs1(vyw4310, vyw4510, bbb, bbc) 25.79/11.06 new_primCompAux(vyw4300, vyw4500, vyw100, app(app(ty_@2, bb), bc)) -> new_compare1(vyw4300, vyw4500, bb, bc) 25.79/11.06 new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vyw4310, vyw4510, bad, bae, baf) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(app(ty_@2, bef), beg)), bca), bdd)) -> new_lt0(vyw4310, vyw4510, bef, beg) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(ty_[], bdc)), bdd)) -> new_lt(vyw4311, vyw4511, bdc) 25.79/11.06 new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(app(ty_@2, bde), bdf)), bdd)) -> new_lt0(vyw4311, vyw4511, bde, bdf) 25.79/11.06 new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(app(ty_@2, fb), fc)), fa)) -> new_lt0(vyw4310, vyw4510, fb, fc) 25.79/11.06 new_compare23(vyw430, vyw450, False, da, db, dc) -> new_ltEs3(vyw430, vyw450, da, db, dc) 25.79/11.06 new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(app(app(ty_@3, beb), bec), bed), bdd) -> new_lt3(vyw4311, vyw4511, beb, bec, bed) 25.79/11.06 25.79/11.06 The TRS R consists of the following rules: 25.79/11.06 25.79/11.06 new_lt21(vyw430, vyw450, app(app(ty_@2, cb), cc)) -> new_lt15(vyw430, vyw450, cb, cc) 25.79/11.06 new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT 25.79/11.06 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.79/11.06 new_pePe(True, vyw105) -> True 25.79/11.06 new_esEs23(vyw4311, vyw4511, app(ty_Maybe, bea)) -> new_esEs6(vyw4311, vyw4511, bea) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_Float) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.06 new_compare111(vyw430, vyw450, True, da, db, dc) -> LT 25.79/11.06 new_esEs19(False, True) -> False 25.79/11.06 new_esEs19(True, False) -> False 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_Double, cdf) -> new_esEs20(vyw400, vyw3000) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.06 new_esEs10(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.06 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.79/11.06 new_esEs27(vyw402, vyw3002, app(app(ty_Either, dbb), dbc)) -> new_esEs5(vyw402, vyw3002, dbb, dbc) 25.79/11.06 new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT 25.79/11.06 new_lt20(vyw4310, vyw4510, app(app(ty_Either, fd), ff)) -> new_lt17(vyw4310, vyw4510, fd, ff) 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_Int) -> new_esEs11(vyw4310, vyw4510) 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs13(vyw4311, vyw4511) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) 25.79/11.06 new_esEs15(vyw401, vyw3001, app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs7(vyw401, vyw3001, bgh, bha, bhb) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, app(ty_[], dg)) -> new_ltEs5(vyw4311, vyw4511, dg) 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_Integer) -> new_esEs12(vyw4310, vyw4510) 25.79/11.06 new_esEs21(:(vyw400, vyw401), :(vyw3000, vyw3001), cbb) -> new_asAs(new_esEs22(vyw400, vyw3000, cbb), new_esEs21(vyw401, vyw3001, cbb)) 25.79/11.06 new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) 25.79/11.06 new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_primCompAux1(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, h), h) 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_Integer) -> new_lt18(vyw4310, vyw4510) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_Ratio, ccf)) -> new_ltEs15(vyw4310, vyw4510, ccf) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs16(vyw4310, vyw4510, bad, bae, baf) 25.79/11.06 new_esEs24(vyw4310, vyw4510, app(ty_[], bee)) -> new_esEs21(vyw4310, vyw4510, bee) 25.79/11.06 new_ltEs11(GT, EQ) -> False 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_Int, cdf) -> new_esEs11(vyw400, vyw3000) 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs19(vyw4311, vyw4511) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_Either, che), chf)) -> new_esEs5(vyw400, vyw3000, che, chf) 25.79/11.06 new_compare28(vyw4300, vyw4500, app(ty_Ratio, cde)) -> new_compare5(vyw4300, vyw4500, cde) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_[], bag)) -> new_ltEs5(vyw4310, vyw4510, bag) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_Ordering) -> new_esEs13(vyw402, vyw3002) 25.79/11.06 new_lt12(vyw4311, vyw4511, app(ty_Ratio, cch)) -> new_lt4(vyw4311, vyw4511, cch) 25.79/11.06 new_primCompAux0(vyw109, GT) -> GT 25.79/11.06 new_lt9(vyw430, vyw450) -> new_esEs13(new_compare17(vyw430, vyw450), LT) 25.79/11.06 new_esEs23(vyw4311, vyw4511, app(app(ty_Either, bdg), bdh)) -> new_esEs5(vyw4311, vyw4511, bdg, bdh) 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_Double) -> new_lt6(vyw4311, vyw4511) 25.79/11.06 new_ltEs14(Nothing, Just(vyw4510), cce) -> True 25.79/11.06 new_compare29(vyw430, vyw450, cb, cc) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, cb, cc), cb, cc) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_Float) -> new_lt11(vyw4311, vyw4511) 25.79/11.06 new_compare26(vyw430, vyw450, True) -> EQ 25.79/11.06 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 25.79/11.06 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.79/11.06 new_esEs29(vyw400, vyw3000, app(ty_[], ddc)) -> new_esEs21(vyw400, vyw3000, ddc) 25.79/11.06 new_esEs24(vyw4310, vyw4510, app(app(ty_@2, bef), beg)) -> new_esEs4(vyw4310, vyw4510, bef, beg) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_@0) -> new_ltEs12(vyw4311, vyw4511) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Maybe, cee), cdf) -> new_esEs6(vyw400, vyw3000, cee) 25.79/11.06 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, app(app(ty_@2, cfb), cfc)) -> new_esEs4(vyw400, vyw3000, cfb, cfc) 25.79/11.06 new_esEs28(vyw401, vyw3001, app(ty_Ratio, dcc)) -> new_esEs8(vyw401, vyw3001, dcc) 25.79/11.06 new_primCompAux0(vyw109, LT) -> LT 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_Char) -> new_lt9(vyw4310, vyw4510) 25.79/11.06 new_not(True) -> False 25.79/11.06 new_lt21(vyw430, vyw450, app(ty_Maybe, cg)) -> new_lt8(vyw430, vyw450, cg) 25.79/11.06 new_primCmpNat0(Zero, Zero) -> EQ 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs18(vyw4311, vyw4511) 25.79/11.06 new_lt21(vyw430, vyw450, ty_Bool) -> new_lt5(vyw430, vyw450) 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_@0) -> new_lt10(vyw4311, vyw4511) 25.79/11.06 new_esEs25(vyw4310, vyw4510, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs7(vyw4310, vyw4510, fh, ga, gb) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_Float, cdf) -> new_esEs14(vyw400, vyw3000) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_Char) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.06 new_lt10(vyw430, vyw450) -> new_esEs13(new_compare12(vyw430, vyw450), LT) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_Bool) -> new_esEs19(vyw402, vyw3002) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Double, gd) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.06 new_primEqNat0(Succ(vyw4000), Zero) -> False 25.79/11.06 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.79/11.06 new_compare26(vyw430, vyw450, False) -> new_compare110(vyw430, vyw450, new_ltEs11(vyw430, vyw450)) 25.79/11.06 new_esEs18(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.06 new_esEs12(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 25.79/11.06 new_compare112(vyw430, vyw450, False) -> GT 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_Double) -> new_lt6(vyw4310, vyw4510) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_Char) -> new_ltEs6(vyw4311, vyw4511) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_Integer, cdf) -> new_esEs12(vyw400, vyw3000) 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.06 new_lt12(vyw4311, vyw4511, app(app(app(ty_@3, beb), bec), bed)) -> new_lt19(vyw4311, vyw4511, beb, bec, bed) 25.79/11.06 new_lt20(vyw4310, vyw4510, app(ty_[], eh)) -> new_lt14(vyw4310, vyw4510, eh) 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) 25.79/11.06 new_compare110(vyw430, vyw450, True) -> LT 25.79/11.06 new_esEs13(LT, LT) -> True 25.79/11.06 new_compare8(vyw430, vyw450, da, db, dc) -> new_compare24(vyw430, vyw450, new_esEs7(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs11(vyw4311, vyw4511) 25.79/11.06 new_compare15(vyw430, vyw450, True, ce, cf) -> LT 25.79/11.06 new_compare6(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_Char) -> new_lt9(vyw4310, vyw4510) 25.79/11.06 new_esEs19(False, False) -> True 25.79/11.06 new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_Integer) -> new_lt18(vyw4311, vyw4511) 25.79/11.06 new_lt13(vyw4310, vyw4510, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_lt19(vyw4310, vyw4510, bfc, bfd, bfe) 25.79/11.06 new_compare9(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_Int) -> new_lt16(vyw4311, vyw4511) 25.79/11.06 new_ltEs11(GT, LT) -> False 25.79/11.06 new_lt20(vyw4310, vyw4510, app(ty_Maybe, fg)) -> new_lt8(vyw4310, vyw4510, fg) 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_Double) -> new_ltEs10(vyw431, vyw451) 25.79/11.06 new_esEs25(vyw4310, vyw4510, app(ty_[], eh)) -> new_esEs21(vyw4310, vyw4510, eh) 25.79/11.06 new_compare11(vyw86, vyw87, vyw88, vyw89, True, bgb, bgc) -> LT 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_Int) -> new_compare9(vyw4300, vyw4500) 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_Ordering) -> new_esEs13(vyw401, vyw3001) 25.79/11.06 new_primPlusNat1(Succ(vyw7700), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw7700, vyw3000000))) 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs17(vyw4311, vyw4511) 25.79/11.06 new_compare210(vyw430, vyw450, False, cg) -> new_compare19(vyw430, vyw450, new_ltEs14(vyw430, vyw450, cg), cg) 25.79/11.06 new_ltEs11(LT, LT) -> True 25.79/11.06 new_primCmpNat0(Zero, Succ(vyw45000)) -> LT 25.79/11.06 new_esEs26(vyw430, vyw450, app(app(app(ty_@3, da), db), dc)) -> new_esEs7(vyw430, vyw450, da, db, dc) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_Double) -> new_ltEs10(vyw4311, vyw4511) 25.79/11.06 new_ltEs10(vyw431, vyw451) -> new_fsEs(new_compare13(vyw431, vyw451)) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.06 new_primCmpNat0(Succ(vyw43000), Zero) -> GT 25.79/11.06 new_compare13(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.06 new_compare13(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.06 new_pePe(False, vyw105) -> vyw105 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, hb), hc), hd), gd) -> new_ltEs16(vyw4310, vyw4510, hb, hc, hd) 25.79/11.06 new_esEs17(@0, @0) -> True 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_Double) -> new_esEs20(vyw401, vyw3001) 25.79/11.06 new_esEs26(vyw430, vyw450, ty_Integer) -> new_esEs12(vyw430, vyw450) 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_Bool) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.06 new_compare25(vyw430, vyw450, True, ce, cf) -> EQ 25.79/11.06 new_compare7(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.06 new_compare7(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.06 new_compare210(vyw430, vyw450, True, cg) -> EQ 25.79/11.06 new_lt11(vyw430, vyw450) -> new_esEs13(new_compare7(vyw430, vyw450), LT) 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.06 new_lt8(vyw430, vyw450, cg) -> new_esEs13(new_compare18(vyw430, vyw450, cg), LT) 25.79/11.06 new_esEs15(vyw401, vyw3001, app(ty_[], bhc)) -> new_esEs21(vyw401, vyw3001, bhc) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, app(ty_Maybe, ed)) -> new_ltEs14(vyw4311, vyw4511, ed) 25.79/11.06 new_esEs26(vyw430, vyw450, ty_Ordering) -> new_esEs13(vyw430, vyw450) 25.79/11.06 new_esEs13(GT, GT) -> True 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_Bool) -> new_ltEs17(vyw4312, vyw4512) 25.79/11.06 new_esEs22(vyw400, vyw3000, app(ty_Maybe, cca)) -> new_esEs6(vyw400, vyw3000, cca) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_@2, cdg), cdh), cdf) -> new_esEs4(vyw400, vyw3000, cdg, cdh) 25.79/11.06 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.79/11.06 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.79/11.06 new_compare19(vyw430, vyw450, True, cg) -> LT 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.06 new_esEs25(vyw4310, vyw4510, app(app(ty_@2, fb), fc)) -> new_esEs4(vyw4310, vyw4510, fb, fc) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bah), bba)) -> new_ltEs7(vyw4310, vyw4510, bah, bba) 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_@0) -> new_ltEs12(vyw431, vyw451) 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.06 new_esEs24(vyw4310, vyw4510, app(app(ty_Either, beh), bfa)) -> new_esEs5(vyw4310, vyw4510, beh, bfa) 25.79/11.06 new_lt5(vyw430, vyw450) -> new_esEs13(new_compare14(vyw430, vyw450), LT) 25.79/11.06 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_Integer) -> new_esEs12(vyw4310, vyw4510) 25.79/11.06 new_compare14(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs19(vyw430, vyw450)) 25.79/11.06 new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT 25.79/11.06 new_ltEs18(vyw4312, vyw4512, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs16(vyw4312, vyw4512, bch, bda, bdb) 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.06 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.06 new_esEs10(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.06 new_esEs21(:(vyw400, vyw401), [], cbb) -> False 25.79/11.06 new_esEs21([], :(vyw3000, vyw3001), cbb) -> False 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.06 new_esEs13(EQ, GT) -> False 25.79/11.06 new_esEs13(GT, EQ) -> False 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_Double) -> new_ltEs10(vyw4312, vyw4512) 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_Double) -> new_esEs20(vyw401, vyw3001) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.06 new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs7(vyw400, vyw3000, cbe, cbf, cbg) 25.79/11.06 new_esEs24(vyw4310, vyw4510, app(ty_Maybe, bfb)) -> new_esEs6(vyw4310, vyw4510, bfb) 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) 25.79/11.06 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 25.79/11.06 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 25.79/11.06 new_compare211(@2(vyw430, vyw431), @2(vyw450, vyw451), False, dd, cd) -> new_compare10(vyw430, vyw431, vyw450, vyw451, new_lt21(vyw430, vyw450, dd), new_asAs(new_esEs26(vyw430, vyw450, dd), new_ltEs20(vyw431, vyw451, cd)), dd, cd) 25.79/11.06 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_Ordering) -> new_esEs13(vyw4310, vyw4510) 25.79/11.06 new_compare24(vyw430, vyw450, False, da, db, dc) -> new_compare111(vyw430, vyw450, new_ltEs16(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_Ordering, cdf) -> new_esEs13(vyw400, vyw3000) 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_Integer) -> new_ltEs13(vyw4311, vyw4511) 25.79/11.06 new_lt13(vyw4310, vyw4510, app(app(ty_Either, beh), bfa)) -> new_lt17(vyw4310, vyw4510, beh, bfa) 25.79/11.06 new_compare28(vyw4300, vyw4500, app(ty_[], ba)) -> new_compare0(vyw4300, vyw4500, ba) 25.79/11.06 new_fsEs(vyw92) -> new_not(new_esEs13(vyw92, GT)) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) 25.79/11.06 new_lt21(vyw430, vyw450, app(ty_[], h)) -> new_lt14(vyw430, vyw450, h) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_Either, ceg), ceh), cdf) -> new_esEs5(vyw400, vyw3000, ceg, ceh) 25.79/11.06 new_ltEs20(vyw431, vyw451, app(ty_Maybe, cce)) -> new_ltEs14(vyw431, vyw451, cce) 25.79/11.06 new_lt21(vyw430, vyw450, ty_Int) -> new_lt16(vyw430, vyw450) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, app(ty_Maybe, cfh)) -> new_esEs6(vyw400, vyw3000, cfh) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, app(app(app(ty_@3, cfd), cfe), cff)) -> new_esEs7(vyw400, vyw3000, cfd, cfe, cff) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_Maybe, bbd)) -> new_ltEs14(vyw4310, vyw4510, bbd) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cgg), cgh), cha)) -> new_esEs7(vyw400, vyw3000, cgg, cgh, cha) 25.79/11.06 new_esEs27(vyw402, vyw3002, app(ty_[], dag)) -> new_esEs21(vyw402, vyw3002, dag) 25.79/11.06 new_esEs29(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs8(vyw400, vyw3000, dde) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_@0) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.06 new_esEs24(vyw4310, vyw4510, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs7(vyw4310, vyw4510, bfc, bfd, bfe) 25.79/11.06 new_primPlusNat1(Succ(vyw7700), Zero) -> Succ(vyw7700) 25.79/11.06 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_Int) -> new_lt16(vyw4310, vyw4510) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.06 new_esEs28(vyw401, vyw3001, app(ty_[], dca)) -> new_esEs21(vyw401, vyw3001, dca) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.06 new_ltEs20(vyw431, vyw451, app(app(ty_@2, df), fa)) -> new_ltEs7(vyw431, vyw451, df, fa) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_@2, cge), cgf)) -> new_esEs4(vyw400, vyw3000, cge, cgf) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.06 new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs7(vyw4311, vyw4511, beb, bec, bed) 25.79/11.06 new_ltEs20(vyw431, vyw451, app(app(app(ty_@3, bbh), bca), bdd)) -> new_ltEs16(vyw431, vyw451, bbh, bca, bdd) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_@0) -> new_ltEs12(vyw4312, vyw4512) 25.79/11.06 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.06 new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Ratio, cef), cdf) -> new_esEs8(vyw400, vyw3000, cef) 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_Bool) -> new_ltEs17(vyw431, vyw451) 25.79/11.06 new_compare11(vyw86, vyw87, vyw88, vyw89, False, bgb, bgc) -> GT 25.79/11.06 new_lt14(vyw430, vyw450, h) -> new_esEs13(new_compare0(vyw430, vyw450, h), LT) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Maybe, chc)) -> new_esEs6(vyw400, vyw3000, chc) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ha), gd) -> new_ltEs14(vyw4310, vyw4510, ha) 25.79/11.06 new_esEs6(Nothing, Just(vyw3000), cgd) -> False 25.79/11.06 new_esEs6(Just(vyw400), Nothing, cgd) -> False 25.79/11.06 new_ltEs19(vyw4311, vyw4511, app(app(ty_@2, dh), ea)) -> new_ltEs7(vyw4311, vyw4511, dh, ea) 25.79/11.06 new_lt21(vyw430, vyw450, ty_@0) -> new_lt10(vyw430, vyw450) 25.79/11.06 new_esEs6(Nothing, Nothing, cgd) -> True 25.79/11.06 new_esEs22(vyw400, vyw3000, app(app(ty_Either, ccc), ccd)) -> new_esEs5(vyw400, vyw3000, ccc, ccd) 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_Bool) -> new_lt5(vyw4310, vyw4510) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, app(ty_Maybe, bcg)) -> new_ltEs14(vyw4312, vyw4512, bcg) 25.79/11.06 new_ltEs8(vyw431, vyw451) -> new_fsEs(new_compare9(vyw431, vyw451)) 25.79/11.06 new_lt18(vyw430, vyw450) -> new_esEs13(new_compare6(vyw430, vyw450), LT) 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_Float) -> new_lt11(vyw4310, vyw4510) 25.79/11.06 new_esEs23(vyw4311, vyw4511, app(app(ty_@2, bde), bdf)) -> new_esEs4(vyw4311, vyw4511, bde, bdf) 25.79/11.06 new_compare112(vyw430, vyw450, True) -> LT 25.79/11.06 new_esEs14(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs11(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 25.79/11.06 new_esEs16(vyw400, vyw3000, app(ty_[], cae)) -> new_esEs21(vyw400, vyw3000, cae) 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.06 new_compare12(@0, @0) -> EQ 25.79/11.06 new_esEs16(vyw400, vyw3000, app(app(ty_@2, bhh), caa)) -> new_esEs4(vyw400, vyw3000, bhh, caa) 25.79/11.06 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.06 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.06 new_ltEs11(EQ, GT) -> True 25.79/11.06 new_compare25(vyw430, vyw450, False, ce, cf) -> new_compare15(vyw430, vyw450, new_ltEs4(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, app(app(ty_Either, baa), bab)) -> new_ltEs4(vyw4310, vyw4510, baa, bab) 25.79/11.06 new_esEs22(vyw400, vyw3000, app(app(ty_@2, cbc), cbd)) -> new_esEs4(vyw400, vyw3000, cbc, cbd) 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_Ordering) -> new_lt7(vyw4311, vyw4511) 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_Ordering) -> new_esEs13(vyw4310, vyw4510) 25.79/11.06 new_ltEs13(vyw431, vyw451) -> new_fsEs(new_compare6(vyw431, vyw451)) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_[], gc), gd) -> new_ltEs5(vyw4310, vyw4510, gc) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_Integer) -> new_ltEs13(vyw4312, vyw4512) 25.79/11.06 new_lt12(vyw4311, vyw4511, app(app(ty_Either, bdg), bdh)) -> new_lt17(vyw4311, vyw4511, bdg, bdh) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_Float) -> new_lt11(vyw4310, vyw4510) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bbb), bbc)) -> new_ltEs4(vyw4310, vyw4510, bbb, bbc) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Integer, gd) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.06 new_compare111(vyw430, vyw450, False, da, db, dc) -> GT 25.79/11.06 new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Int, gd) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs16(vyw4311, vyw4511, ee, ef, eg) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_Bool) -> new_ltEs17(vyw4311, vyw4511) 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_Ordering) -> new_ltEs11(vyw431, vyw451) 25.79/11.06 new_ltEs20(vyw431, vyw451, app(app(ty_Either, he), gd)) -> new_ltEs4(vyw431, vyw451, he, gd) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, app(ty_[], hf)) -> new_ltEs5(vyw4310, vyw4510, hf) 25.79/11.06 new_ltEs11(EQ, EQ) -> True 25.79/11.06 new_compare24(vyw430, vyw450, True, da, db, dc) -> EQ 25.79/11.06 new_ltEs18(vyw4312, vyw4512, app(app(ty_@2, bcc), bcd)) -> new_ltEs7(vyw4312, vyw4512, bcc, bcd) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.06 new_esEs28(vyw401, vyw3001, app(app(app(ty_@3, dbf), dbg), dbh)) -> new_esEs7(vyw401, vyw3001, dbf, dbg, dbh) 25.79/11.06 new_ltEs16(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, bdd) -> new_pePe(new_lt13(vyw4310, vyw4510, bbh), new_asAs(new_esEs24(vyw4310, vyw4510, bbh), new_pePe(new_lt12(vyw4311, vyw4511, bca), new_asAs(new_esEs23(vyw4311, vyw4511, bca), new_ltEs18(vyw4312, vyw4512, bdd))))) 25.79/11.06 new_esEs26(vyw430, vyw450, app(ty_Ratio, bga)) -> new_esEs8(vyw430, vyw450, bga) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, app(ty_Ratio, bfg)) -> new_ltEs15(vyw4310, vyw4510, bfg) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_Int) -> new_ltEs8(vyw4312, vyw4512) 25.79/11.06 new_esEs16(vyw400, vyw3000, app(ty_Ratio, cag)) -> new_esEs8(vyw400, vyw3000, cag) 25.79/11.06 new_compare0([], :(vyw4500, vyw4501), h) -> LT 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_Bool) -> new_lt5(vyw4311, vyw4511) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.06 new_asAs(True, vyw60) -> vyw60 25.79/11.06 new_esEs7(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), chg, chh, daa) -> new_asAs(new_esEs29(vyw400, vyw3000, chg), new_asAs(new_esEs28(vyw401, vyw3001, chh), new_esEs27(vyw402, vyw3002, daa))) 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_Ordering) -> new_esEs13(vyw401, vyw3001) 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_Float) -> new_compare7(vyw4300, vyw4500) 25.79/11.06 new_lt20(vyw4310, vyw4510, app(ty_Ratio, cdd)) -> new_lt4(vyw4310, vyw4510, cdd) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs16(vyw4310, vyw4510, bbe, bbf, bbg) 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_Ordering) -> new_compare16(vyw4300, vyw4500) 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_Integer) -> new_esEs12(vyw402, vyw3002) 25.79/11.06 new_esEs26(vyw430, vyw450, ty_Char) -> new_esEs18(vyw430, vyw450) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_Float) -> new_esEs14(vyw402, vyw3002) 25.79/11.06 new_esEs15(vyw401, vyw3001, app(ty_Maybe, bhd)) -> new_esEs6(vyw401, vyw3001, bhd) 25.79/11.06 new_esEs15(vyw401, vyw3001, app(app(ty_Either, bhf), bhg)) -> new_esEs5(vyw401, vyw3001, bhf, bhg) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_Float) -> new_ltEs9(vyw4312, vyw4512) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Float, gd) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.06 new_lt19(vyw430, vyw450, da, db, dc) -> new_esEs13(new_compare8(vyw430, vyw450, da, db, dc), LT) 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 25.79/11.06 new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) 25.79/11.06 new_lt12(vyw4311, vyw4511, app(ty_[], bdc)) -> new_lt14(vyw4311, vyw4511, bdc) 25.79/11.06 new_compare110(vyw430, vyw450, False) -> GT 25.79/11.06 new_esEs29(vyw400, vyw3000, app(app(ty_Either, ddf), ddg)) -> new_esEs5(vyw400, vyw3000, ddf, ddg) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.06 new_esEs9(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.06 new_ltEs11(GT, GT) -> True 25.79/11.06 new_lt13(vyw4310, vyw4510, ty_Int) -> new_lt16(vyw4310, vyw4510) 25.79/11.06 new_compare5(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare6(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) 25.79/11.06 new_compare0([], [], h) -> EQ 25.79/11.06 new_esEs26(vyw430, vyw450, app(ty_[], h)) -> new_esEs21(vyw430, vyw450, h) 25.79/11.06 new_lt6(vyw430, vyw450) -> new_esEs13(new_compare13(vyw430, vyw450), LT) 25.79/11.06 new_lt13(vyw4310, vyw4510, app(app(ty_@2, bef), beg)) -> new_lt15(vyw4310, vyw4510, bef, beg) 25.79/11.06 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 25.79/11.06 new_lt7(vyw430, vyw450) -> new_esEs13(new_compare16(vyw430, vyw450), LT) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_Ordering) -> new_ltEs11(vyw4312, vyw4512) 25.79/11.06 new_esEs21([], [], cbb) -> True 25.79/11.06 new_primMulNat0(Zero, Zero) -> Zero 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs14(vyw4311, vyw4511) 25.79/11.06 new_lt4(vyw430, vyw450, bga) -> new_esEs13(new_compare5(vyw430, vyw450, bga), LT) 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.06 new_esEs26(vyw430, vyw450, ty_Double) -> new_esEs20(vyw430, vyw450) 25.79/11.06 new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 25.79/11.06 new_compare28(vyw4300, vyw4500, app(app(ty_@2, bb), bc)) -> new_compare29(vyw4300, vyw4500, bb, bc) 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_Integer) -> new_ltEs13(vyw431, vyw451) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, app(app(ty_Either, bce), bcf)) -> new_ltEs4(vyw4312, vyw4512, bce, bcf) 25.79/11.06 new_compare13(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_[], ced), cdf) -> new_esEs21(vyw400, vyw3000, ced) 25.79/11.06 new_lt13(vyw4310, vyw4510, app(ty_Maybe, bfb)) -> new_lt8(vyw4310, vyw4510, bfb) 25.79/11.06 new_compare30(vyw430, vyw450, ce, cf) -> new_compare25(vyw430, vyw450, new_esEs5(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, app(app(ty_Either, cgb), cgc)) -> new_esEs5(vyw400, vyw3000, cgb, cgc) 25.79/11.06 new_primCompAux1(vyw4300, vyw4500, vyw100, h) -> new_primCompAux0(vyw100, new_compare28(vyw4300, vyw4500, h)) 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Ordering, gd) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.06 new_esEs26(vyw430, vyw450, app(ty_Maybe, cg)) -> new_esEs6(vyw430, vyw450, cg) 25.79/11.06 new_lt21(vyw430, vyw450, ty_Char) -> new_lt9(vyw430, vyw450) 25.79/11.06 new_esEs8(:%(vyw400, vyw401), :%(vyw3000, vyw3001), bfh) -> new_asAs(new_esEs10(vyw400, vyw3000, bfh), new_esEs9(vyw401, vyw3001, bfh)) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_Double) -> new_esEs20(vyw402, vyw3002) 25.79/11.06 new_esEs22(vyw400, vyw3000, app(ty_Ratio, ccb)) -> new_esEs8(vyw400, vyw3000, ccb) 25.79/11.06 new_lt21(vyw430, vyw450, app(ty_Ratio, bga)) -> new_lt4(vyw430, vyw450, bga) 25.79/11.06 new_primCompAux0(vyw109, EQ) -> vyw109 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.06 new_ltEs17(False, False) -> True 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Char, gd) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs12(vyw4311, vyw4511) 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_Bool) -> new_compare14(vyw4300, vyw4500) 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.06 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 25.79/11.06 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.79/11.06 new_esEs25(vyw4310, vyw4510, app(ty_Maybe, fg)) -> new_esEs6(vyw4310, vyw4510, fg) 25.79/11.06 new_esEs15(vyw401, vyw3001, app(ty_Ratio, bhe)) -> new_esEs8(vyw401, vyw3001, bhe) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_Double) -> new_lt6(vyw4310, vyw4510) 25.79/11.06 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, ty_Char) -> new_ltEs6(vyw4312, vyw4512) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_Double) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.06 new_esEs27(vyw402, vyw3002, app(ty_Ratio, dba)) -> new_esEs8(vyw402, vyw3002, dba) 25.79/11.06 new_lt12(vyw4311, vyw4511, app(app(ty_@2, bde), bdf)) -> new_lt15(vyw4311, vyw4511, bde, bdf) 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_@0) -> new_compare12(vyw4300, vyw4500) 25.79/11.06 new_esEs26(vyw430, vyw450, app(app(ty_@2, cb), cc)) -> new_esEs4(vyw430, vyw450, cb, cc) 25.79/11.06 new_compare19(vyw430, vyw450, False, cg) -> GT 25.79/11.06 new_compare16(vyw430, vyw450) -> new_compare26(vyw430, vyw450, new_esEs13(vyw430, vyw450)) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(ty_Either, gg), gh), gd) -> new_ltEs4(vyw4310, vyw4510, gg, gh) 25.79/11.06 new_lt13(vyw4310, vyw4510, app(ty_[], bee)) -> new_lt14(vyw4310, vyw4510, bee) 25.79/11.06 new_esEs25(vyw4310, vyw4510, app(app(ty_Either, fd), ff)) -> new_esEs5(vyw4310, vyw4510, fd, ff) 25.79/11.06 new_ltEs14(Just(vyw4310), Nothing, cce) -> False 25.79/11.06 new_esEs4(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bgd, bge) -> new_asAs(new_esEs16(vyw400, vyw3000, bgd), new_esEs15(vyw401, vyw3001, bge)) 25.79/11.06 new_ltEs14(Nothing, Nothing, cce) -> True 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_Float) -> new_ltEs9(vyw431, vyw451) 25.79/11.06 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 25.79/11.06 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 25.79/11.06 new_compare10(vyw86, vyw87, vyw88, vyw89, True, vyw91, bgb, bgc) -> new_compare11(vyw86, vyw87, vyw88, vyw89, True, bgb, bgc) 25.79/11.06 new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.06 new_esEs13(LT, GT) -> False 25.79/11.06 new_esEs13(GT, LT) -> False 25.79/11.06 new_compare211(vyw43, vyw45, True, dd, cd) -> EQ 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.06 new_compare27(vyw430, vyw450, False) -> new_compare112(vyw430, vyw450, new_ltEs17(vyw430, vyw450)) 25.79/11.06 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.79/11.06 new_ltEs17(True, False) -> False 25.79/11.06 new_esEs28(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_Int) -> new_esEs11(vyw4310, vyw4510) 25.79/11.06 new_lt21(vyw430, vyw450, ty_Float) -> new_lt11(vyw430, vyw450) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_Char) -> new_esEs18(vyw402, vyw3002) 25.79/11.06 new_esEs16(vyw400, vyw3000, app(ty_Maybe, caf)) -> new_esEs6(vyw400, vyw3000, caf) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.06 new_esEs26(vyw430, vyw450, app(app(ty_Either, ce), cf)) -> new_esEs5(vyw430, vyw450, ce, cf) 25.79/11.06 new_ltEs17(False, True) -> True 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Ratio, chd)) -> new_esEs8(vyw400, vyw3000, chd) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_Float) -> new_ltEs9(vyw4311, vyw4511) 25.79/11.06 new_esEs20(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs11(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 25.79/11.06 new_lt20(vyw4310, vyw4510, app(app(ty_@2, fb), fc)) -> new_lt15(vyw4310, vyw4510, fb, fc) 25.79/11.06 new_compare28(vyw4300, vyw4500, app(app(ty_Either, bd), be)) -> new_compare30(vyw4300, vyw4500, bd, be) 25.79/11.06 new_ltEs7(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, fa) -> new_pePe(new_lt20(vyw4310, vyw4510, df), new_asAs(new_esEs25(vyw4310, vyw4510, df), new_ltEs19(vyw4311, vyw4511, fa))) 25.79/11.06 new_esEs23(vyw4311, vyw4511, app(ty_[], bdc)) -> new_esEs21(vyw4311, vyw4511, bdc) 25.79/11.06 new_esEs25(vyw4310, vyw4510, app(ty_Ratio, cdd)) -> new_esEs8(vyw4310, vyw4510, cdd) 25.79/11.06 new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs7(vyw400, vyw3000, dch, dda, ddb) 25.79/11.06 new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs20(vyw4311, vyw4511) 25.79/11.06 new_not(False) -> True 25.79/11.06 new_ltEs6(vyw431, vyw451) -> new_fsEs(new_compare17(vyw431, vyw451)) 25.79/11.06 new_esEs15(vyw401, vyw3001, app(app(ty_@2, bgf), bgg)) -> new_esEs4(vyw401, vyw3001, bgf, bgg) 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_Integer) -> new_compare6(vyw4300, vyw4500) 25.79/11.06 new_esEs16(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.06 new_lt21(vyw430, vyw450, app(app(ty_Either, ce), cf)) -> new_lt17(vyw430, vyw450, ce, cf) 25.79/11.06 new_compare0(:(vyw4300, vyw4301), [], h) -> GT 25.79/11.06 new_esEs5(Left(vyw400), Right(vyw3000), cfa, cdf) -> False 25.79/11.06 new_esEs5(Right(vyw400), Left(vyw3000), cfa, cdf) -> False 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, app(ty_Ratio, cga)) -> new_esEs8(vyw400, vyw3000, cga) 25.79/11.06 new_lt15(vyw430, vyw450, cb, cc) -> new_esEs13(new_compare29(vyw430, vyw450, cb, cc), LT) 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_Double) -> new_compare13(vyw4300, vyw4500) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.06 new_ltEs4(Left(vyw4310), Right(vyw4510), he, gd) -> True 25.79/11.06 new_esEs16(vyw400, vyw3000, app(app(app(ty_@3, cab), cac), cad)) -> new_esEs7(vyw400, vyw3000, cab, cac, cad) 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_@0) -> new_esEs17(vyw4310, vyw4510) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, app(ty_[], bcb)) -> new_ltEs5(vyw4312, vyw4512, bcb) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_Integer) -> new_lt18(vyw4310, vyw4510) 25.79/11.06 new_esEs27(vyw402, vyw3002, app(app(app(ty_@3, dad), dae), daf)) -> new_esEs7(vyw402, vyw3002, dad, dae, daf) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_[], chb)) -> new_esEs21(vyw400, vyw3000, chb) 25.79/11.06 new_primPlusNat0(Succ(vyw770), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw770, vyw300000))) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_@0, cdf) -> new_esEs17(vyw400, vyw3000) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_Bool, cdf) -> new_esEs19(vyw400, vyw3000) 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_Bool) -> new_esEs19(vyw4310, vyw4510) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_Int) -> new_esEs11(vyw402, vyw3002) 25.79/11.06 new_esEs23(vyw4311, vyw4511, app(ty_Ratio, cch)) -> new_esEs8(vyw4311, vyw4511, cch) 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_Char) -> new_ltEs6(vyw431, vyw451) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Bool, gd) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.06 new_ltEs11(LT, EQ) -> True 25.79/11.06 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.06 new_esEs29(vyw400, vyw3000, app(ty_Maybe, ddd)) -> new_esEs6(vyw400, vyw3000, ddd) 25.79/11.06 new_compare18(vyw430, vyw450, cg) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, cg), cg) 25.79/11.06 new_compare28(vyw4300, vyw4500, app(ty_Maybe, bf)) -> new_compare18(vyw4300, vyw4500, bf) 25.79/11.06 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.79/11.06 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.79/11.06 new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.06 new_esEs27(vyw402, vyw3002, ty_@0) -> new_esEs17(vyw402, vyw3002) 25.79/11.06 new_compare13(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.06 new_primPlusNat1(Zero, Zero) -> Zero 25.79/11.06 new_lt20(vyw4310, vyw4510, app(app(app(ty_@3, fh), ga), gb)) -> new_lt19(vyw4310, vyw4510, fh, ga, gb) 25.79/11.06 new_esEs9(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.06 new_lt16(vyw430, vyw450) -> new_esEs13(new_compare9(vyw430, vyw450), LT) 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_Double) -> new_esEs20(vyw4310, vyw4510) 25.79/11.06 new_compare7(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.06 new_ltEs9(vyw431, vyw451) -> new_fsEs(new_compare7(vyw431, vyw451)) 25.79/11.06 new_lt21(vyw430, vyw450, ty_Double) -> new_lt6(vyw430, vyw450) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, app(ty_[], cfg)) -> new_esEs21(vyw400, vyw3000, cfg) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_Ordering) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.06 new_esEs27(vyw402, vyw3002, app(app(ty_@2, dab), dac)) -> new_esEs4(vyw402, vyw3002, dab, dac) 25.79/11.06 new_esEs5(Right(vyw400), Right(vyw3000), cfa, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.06 new_esEs26(vyw430, vyw450, ty_Bool) -> new_esEs19(vyw430, vyw450) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, app(app(ty_Either, eb), ec)) -> new_ltEs4(vyw4311, vyw4511, eb, ec) 25.79/11.06 new_esEs28(vyw401, vyw3001, app(ty_Maybe, dcb)) -> new_esEs6(vyw401, vyw3001, dcb) 25.79/11.06 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.79/11.06 new_esEs26(vyw430, vyw450, ty_@0) -> new_esEs17(vyw430, vyw450) 25.79/11.06 new_lt17(vyw430, vyw450, ce, cf) -> new_esEs13(new_compare30(vyw430, vyw450, ce, cf), LT) 25.79/11.06 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 25.79/11.06 new_esEs28(vyw401, vyw3001, app(app(ty_@2, dbd), dbe)) -> new_esEs4(vyw401, vyw3001, dbd, dbe) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(ty_@2, ge), gf), gd) -> new_ltEs7(vyw4310, vyw4510, ge, gf) 25.79/11.06 new_lt12(vyw4311, vyw4511, app(ty_Maybe, bea)) -> new_lt8(vyw4311, vyw4511, bea) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_Ordering) -> new_ltEs11(vyw4311, vyw4511) 25.79/11.06 new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, app(ty_Ratio, cdc)) -> new_ltEs15(vyw4311, vyw4511, cdc) 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_@0) -> new_esEs17(vyw4310, vyw4510) 25.79/11.06 new_ltEs11(LT, GT) -> True 25.79/11.06 new_compare7(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.06 new_esEs27(vyw402, vyw3002, app(ty_Maybe, dah)) -> new_esEs6(vyw402, vyw3002, dah) 25.79/11.06 new_ltEs12(vyw431, vyw451) -> new_fsEs(new_compare12(vyw431, vyw451)) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_Ratio, bff), gd) -> new_ltEs15(vyw4310, vyw4510, bff) 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) 25.79/11.06 new_compare15(vyw430, vyw450, False, ce, cf) -> GT 25.79/11.06 new_esEs15(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), ty_Char, cdf) -> new_esEs18(vyw400, vyw3000) 25.79/11.06 new_lt20(vyw4310, vyw4510, ty_Bool) -> new_lt5(vyw4310, vyw4510) 25.79/11.06 new_ltEs15(vyw431, vyw451, cdb) -> new_fsEs(new_compare5(vyw431, vyw451, cdb)) 25.79/11.06 new_ltEs20(vyw431, vyw451, ty_Int) -> new_ltEs8(vyw431, vyw451) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, app(ty_Maybe, bac)) -> new_ltEs14(vyw4310, vyw4510, bac) 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_Char) -> new_esEs18(vyw4310, vyw4510) 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) 25.79/11.06 new_esEs6(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.06 new_compare28(vyw4300, vyw4500, app(app(app(ty_@3, bg), bh), ca)) -> new_compare8(vyw4300, vyw4500, bg, bh, ca) 25.79/11.06 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.79/11.06 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.79/11.06 new_esEs29(vyw400, vyw3000, app(app(ty_@2, dcf), dcg)) -> new_esEs4(vyw400, vyw3000, dcf, dcg) 25.79/11.06 new_ltEs18(vyw4312, vyw4512, app(ty_Ratio, ccg)) -> new_ltEs15(vyw4312, vyw4512, ccg) 25.79/11.06 new_lt21(vyw430, vyw450, ty_Ordering) -> new_lt7(vyw430, vyw450) 25.79/11.06 new_ltEs20(vyw431, vyw451, app(ty_Ratio, cdb)) -> new_ltEs15(vyw431, vyw451, cdb) 25.79/11.06 new_ltEs5(vyw431, vyw451, de) -> new_fsEs(new_compare0(vyw431, vyw451, de)) 25.79/11.06 new_compare17(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) 25.79/11.06 new_primEqNat0(Zero, Zero) -> True 25.79/11.06 new_esEs28(vyw401, vyw3001, app(app(ty_Either, dcd), dce)) -> new_esEs5(vyw401, vyw3001, dcd, dce) 25.79/11.06 new_compare28(vyw4300, vyw4500, ty_Char) -> new_compare17(vyw4300, vyw4500) 25.79/11.06 new_lt12(vyw4311, vyw4511, ty_Char) -> new_lt9(vyw4311, vyw4511) 25.79/11.06 new_ltEs20(vyw431, vyw451, app(ty_[], de)) -> new_ltEs5(vyw431, vyw451, de) 25.79/11.06 new_lt21(vyw430, vyw450, app(app(app(ty_@3, da), db), dc)) -> new_lt19(vyw430, vyw450, da, db, dc) 25.79/11.06 new_compare5(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare9(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) 25.79/11.06 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_@0, gd) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_Char) -> new_esEs18(vyw4310, vyw4510) 25.79/11.06 new_esEs13(EQ, EQ) -> True 25.79/11.06 new_ltEs17(True, True) -> True 25.79/11.06 new_esEs24(vyw4310, vyw4510, ty_Double) -> new_esEs20(vyw4310, vyw4510) 25.79/11.06 new_esEs26(vyw430, vyw450, ty_Float) -> new_esEs14(vyw430, vyw450) 25.79/11.06 new_asAs(False, vyw60) -> False 25.79/11.06 new_esEs13(LT, EQ) -> False 25.79/11.06 new_esEs13(EQ, LT) -> False 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, app(app(ty_@2, hg), hh)) -> new_ltEs7(vyw4310, vyw4510, hg, hh) 25.79/11.06 new_esEs24(vyw4310, vyw4510, app(ty_Ratio, cda)) -> new_esEs8(vyw4310, vyw4510, cda) 25.79/11.06 new_esEs22(vyw400, vyw3000, app(ty_[], cbh)) -> new_esEs21(vyw400, vyw3000, cbh) 25.79/11.06 new_esEs26(vyw430, vyw450, ty_Int) -> new_esEs11(vyw430, vyw450) 25.79/11.06 new_ltEs19(vyw4311, vyw4511, ty_Int) -> new_ltEs8(vyw4311, vyw4511) 25.79/11.06 new_ltEs4(Right(vyw4310), Right(vyw4510), he, ty_Int) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.06 new_ltEs4(Right(vyw4310), Left(vyw4510), he, gd) -> False 25.79/11.06 new_lt21(vyw430, vyw450, ty_Integer) -> new_lt18(vyw430, vyw450) 25.79/11.06 new_lt13(vyw4310, vyw4510, app(ty_Ratio, cda)) -> new_lt4(vyw4310, vyw4510, cda) 25.79/11.06 new_compare10(vyw86, vyw87, vyw88, vyw89, False, vyw91, bgb, bgc) -> new_compare11(vyw86, vyw87, vyw88, vyw89, vyw91, bgb, bgc) 25.79/11.06 new_compare27(vyw430, vyw450, True) -> EQ 25.79/11.06 new_esEs16(vyw400, vyw3000, app(app(ty_Either, cah), cba)) -> new_esEs5(vyw400, vyw3000, cah, cba) 25.79/11.06 new_esEs11(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 25.79/11.06 new_esEs19(True, True) -> True 25.79/11.06 new_esEs25(vyw4310, vyw4510, ty_Bool) -> new_esEs19(vyw4310, vyw4510) 25.79/11.06 new_esEs5(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, cea), ceb), cec), cdf) -> new_esEs7(vyw400, vyw3000, cea, ceb, cec) 25.79/11.06 new_ltEs11(EQ, LT) -> False 25.79/11.06 25.79/11.06 The set Q consists of the following terms: 25.79/11.06 25.79/11.06 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.79/11.06 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.79/11.06 new_esEs6(Nothing, Nothing, x0) 25.79/11.06 new_esEs5(Left(x0), Right(x1), x2, x3) 25.79/11.06 new_esEs5(Right(x0), Left(x1), x2, x3) 25.79/11.06 new_lt14(x0, x1, x2) 25.79/11.06 new_esEs27(x0, x1, ty_Float) 25.79/11.06 new_esEs20(Double(x0, x1), Double(x2, x3)) 25.79/11.06 new_ltEs20(x0, x1, ty_Double) 25.79/11.06 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_compare15(x0, x1, False, x2, x3) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_Ordering) 25.79/11.06 new_lt13(x0, x1, ty_Int) 25.79/11.06 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.79/11.06 new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 25.79/11.06 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_Double) 25.79/11.06 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.79/11.06 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_lt13(x0, x1, ty_Ordering) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_Char) 25.79/11.06 new_primPlusNat1(Zero, Zero) 25.79/11.06 new_esEs29(x0, x1, ty_Integer) 25.79/11.06 new_ltEs15(x0, x1, x2) 25.79/11.06 new_esEs26(x0, x1, app(ty_[], x2)) 25.79/11.06 new_ltEs20(x0, x1, ty_Ordering) 25.79/11.06 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs19(False, False) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_Int) 25.79/11.06 new_compare18(x0, x1, x2) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 25.79/11.06 new_esEs23(x0, x1, ty_Integer) 25.79/11.06 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_sr0(Integer(x0), Integer(x1)) 25.79/11.06 new_primEqInt(Pos(Zero), Pos(Zero)) 25.79/11.06 new_esEs24(x0, x1, ty_Bool) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.79/11.06 new_compare111(x0, x1, True, x2, x3, x4) 25.79/11.06 new_compare11(x0, x1, x2, x3, True, x4, x5) 25.79/11.06 new_lt12(x0, x1, ty_Char) 25.79/11.06 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_esEs23(x0, x1, ty_Float) 25.79/11.06 new_esEs13(LT, LT) 25.79/11.06 new_esEs22(x0, x1, ty_Double) 25.79/11.06 new_lt5(x0, x1) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_Int) 25.79/11.06 new_primEqInt(Neg(Zero), Neg(Zero)) 25.79/11.06 new_esEs29(x0, x1, ty_@0) 25.79/11.06 new_lt21(x0, x1, app(ty_[], x2)) 25.79/11.06 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_compare25(x0, x1, False, x2, x3) 25.79/11.06 new_esEs23(x0, x1, app(ty_[], x2)) 25.79/11.06 new_compare210(x0, x1, False, x2) 25.79/11.06 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_lt7(x0, x1) 25.79/11.06 new_esEs15(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.79/11.06 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.79/11.06 new_esEs23(x0, x1, ty_Bool) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 25.79/11.06 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.79/11.06 new_ltEs6(x0, x1) 25.79/11.06 new_fsEs(x0) 25.79/11.06 new_lt11(x0, x1) 25.79/11.06 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_ltEs19(x0, x1, app(ty_[], x2)) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.79/11.06 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs6(Just(x0), Nothing, x1) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.79/11.06 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs12(Integer(x0), Integer(x1)) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 25.79/11.06 new_ltEs8(x0, x1) 25.79/11.06 new_esEs23(x0, x1, ty_@0) 25.79/11.06 new_esEs26(x0, x1, ty_Double) 25.79/11.06 new_esEs28(x0, x1, ty_Bool) 25.79/11.06 new_ltEs17(True, True) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 25.79/11.06 new_ltEs14(Just(x0), Nothing, x1) 25.79/11.06 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_lt13(x0, x1, ty_@0) 25.79/11.06 new_esEs28(x0, x1, ty_Float) 25.79/11.06 new_lt12(x0, x1, ty_Int) 25.79/11.06 new_esEs15(x0, x1, ty_Double) 25.79/11.06 new_lt13(x0, x1, ty_Double) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 25.79/11.06 new_primEqInt(Pos(Zero), Neg(Zero)) 25.79/11.06 new_primEqInt(Neg(Zero), Pos(Zero)) 25.79/11.06 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 25.79/11.06 new_ltEs18(x0, x1, app(ty_[], x2)) 25.79/11.06 new_lt13(x0, x1, ty_Char) 25.79/11.06 new_compare28(x0, x1, ty_Ordering) 25.79/11.06 new_lt13(x0, x1, ty_Bool) 25.79/11.06 new_primPlusNat0(Succ(x0), x1) 25.79/11.06 new_compare29(x0, x1, x2, x3) 25.79/11.06 new_lt12(x0, x1, ty_@0) 25.79/11.06 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.79/11.06 new_esEs21([], [], x0) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.79/11.06 new_esEs28(x0, x1, ty_@0) 25.79/11.06 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_ltEs14(Nothing, Just(x0), x1) 25.79/11.06 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.79/11.06 new_esEs29(x0, x1, ty_Bool) 25.79/11.06 new_esEs24(x0, x1, ty_Integer) 25.79/11.06 new_pePe(True, x0) 25.79/11.06 new_compare28(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.79/11.06 new_esEs14(Float(x0, x1), Float(x2, x3)) 25.79/11.06 new_compare0(:(x0, x1), [], x2) 25.79/11.06 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_lt21(x0, x1, ty_Double) 25.79/11.06 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.79/11.06 new_compare0([], [], x0) 25.79/11.06 new_ltEs11(LT, EQ) 25.79/11.06 new_ltEs11(EQ, LT) 25.79/11.06 new_esEs27(x0, x1, ty_Bool) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_Integer) 25.79/11.06 new_esEs9(x0, x1, ty_Int) 25.79/11.06 new_esEs26(x0, x1, ty_Int) 25.79/11.06 new_compare6(Integer(x0), Integer(x1)) 25.79/11.06 new_lt21(x0, x1, ty_Ordering) 25.79/11.06 new_primCompAux0(x0, EQ) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_Bool) 25.79/11.06 new_ltEs11(GT, GT) 25.79/11.06 new_compare112(x0, x1, True) 25.79/11.06 new_ltEs18(x0, x1, ty_Int) 25.79/11.06 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.79/11.06 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.79/11.06 new_compare15(x0, x1, True, x2, x3) 25.79/11.06 new_compare28(x0, x1, ty_Int) 25.79/11.06 new_esEs15(x0, x1, ty_Int) 25.79/11.06 new_ltEs20(x0, x1, ty_Bool) 25.79/11.06 new_esEs17(@0, @0) 25.79/11.06 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.79/11.06 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_compare0(:(x0, x1), :(x2, x3), x4) 25.79/11.06 new_esEs24(x0, x1, ty_Ordering) 25.79/11.06 new_esEs26(x0, x1, ty_Char) 25.79/11.06 new_esEs16(x0, x1, ty_Double) 25.79/11.06 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs19(x0, x1, ty_Float) 25.79/11.06 new_compare28(x0, x1, ty_Char) 25.79/11.06 new_esEs25(x0, x1, ty_Double) 25.79/11.06 new_lt18(x0, x1) 25.79/11.06 new_compare111(x0, x1, False, x2, x3, x4) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.79/11.06 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_compare17(Char(x0), Char(x1)) 25.79/11.06 new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.79/11.06 new_ltEs18(x0, x1, ty_Ordering) 25.79/11.06 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.79/11.06 new_esEs15(x0, x1, ty_Char) 25.79/11.06 new_esEs29(x0, x1, ty_Double) 25.79/11.06 new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.79/11.06 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs22(x0, x1, ty_Int) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 25.79/11.06 new_ltEs20(x0, x1, ty_Integer) 25.79/11.06 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_compare14(x0, x1) 25.79/11.06 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs19(False, True) 25.79/11.06 new_esEs19(True, False) 25.79/11.06 new_lt4(x0, x1, x2) 25.79/11.06 new_esEs15(x0, x1, ty_Float) 25.79/11.06 new_compare8(x0, x1, x2, x3, x4) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.79/11.06 new_pePe(False, x0) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_compare19(x0, x1, True, x2) 25.79/11.06 new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) 25.79/11.06 new_esEs22(x0, x1, ty_Char) 25.79/11.06 new_primEqNat0(Zero, Succ(x0)) 25.79/11.06 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.79/11.06 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.79/11.06 new_ltEs18(x0, x1, ty_Char) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.79/11.06 new_esEs29(x0, x1, app(ty_[], x2)) 25.79/11.06 new_lt20(x0, x1, ty_Double) 25.79/11.06 new_esEs29(x0, x1, ty_Ordering) 25.79/11.06 new_compare211(x0, x1, True, x2, x3) 25.79/11.06 new_esEs24(x0, x1, ty_Double) 25.79/11.06 new_esEs22(x0, x1, ty_Ordering) 25.79/11.06 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.79/11.06 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_lt12(x0, x1, ty_Ordering) 25.79/11.06 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.79/11.06 new_lt12(x0, x1, ty_Bool) 25.79/11.06 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.79/11.06 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.79/11.06 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.79/11.06 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_Char) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 25.79/11.06 new_ltEs12(x0, x1) 25.79/11.06 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.79/11.06 new_ltEs17(True, False) 25.79/11.06 new_ltEs17(False, True) 25.79/11.06 new_esEs16(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 25.79/11.06 new_esEs25(x0, x1, app(ty_[], x2)) 25.79/11.06 new_asAs(False, x0) 25.79/11.06 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs24(x0, x1, ty_@0) 25.79/11.06 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.79/11.06 new_esEs22(x0, x1, ty_Bool) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_Integer) 25.79/11.06 new_lt6(x0, x1) 25.79/11.06 new_compare26(x0, x1, False) 25.79/11.06 new_ltEs20(x0, x1, ty_Int) 25.79/11.06 new_lt12(x0, x1, ty_Integer) 25.79/11.06 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_primPlusNat1(Succ(x0), Zero) 25.79/11.06 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs11(EQ, EQ) 25.79/11.06 new_esEs26(x0, x1, ty_Ordering) 25.79/11.06 new_esEs27(x0, x1, ty_Integer) 25.79/11.06 new_esEs24(x0, x1, app(ty_[], x2)) 25.79/11.06 new_esEs22(x0, x1, ty_Integer) 25.79/11.06 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 25.79/11.06 new_compare28(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_Bool) 25.79/11.06 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 25.79/11.06 new_esEs16(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_primPlusNat0(Zero, x0) 25.79/11.06 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_primCmpNat0(Zero, Succ(x0)) 25.79/11.06 new_lt20(x0, x1, app(ty_[], x2)) 25.79/11.06 new_esEs18(Char(x0), Char(x1)) 25.79/11.06 new_ltEs18(x0, x1, ty_Integer) 25.79/11.06 new_compare28(x0, x1, ty_Float) 25.79/11.06 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_ltEs20(x0, x1, ty_Char) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 25.79/11.06 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.79/11.06 new_esEs13(GT, GT) 25.79/11.06 new_esEs13(LT, EQ) 25.79/11.06 new_esEs13(EQ, LT) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 25.79/11.06 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_primMulNat0(Succ(x0), Zero) 25.79/11.06 new_lt20(x0, x1, ty_@0) 25.79/11.06 new_primPlusNat1(Zero, Succ(x0)) 25.79/11.06 new_esEs26(x0, x1, ty_Integer) 25.79/11.06 new_esEs13(EQ, EQ) 25.79/11.06 new_esEs27(x0, x1, ty_Ordering) 25.79/11.06 new_ltEs20(x0, x1, ty_Float) 25.79/11.06 new_compare28(x0, x1, ty_Integer) 25.79/11.06 new_lt21(x0, x1, ty_Bool) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.79/11.06 new_esEs15(x0, x1, app(ty_[], x2)) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.79/11.06 new_esEs27(x0, x1, ty_Double) 25.79/11.06 new_lt17(x0, x1, x2, x3) 25.79/11.06 new_esEs16(x0, x1, ty_@0) 25.79/11.06 new_esEs15(x0, x1, ty_Integer) 25.79/11.06 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_lt21(x0, x1, ty_@0) 25.79/11.06 new_lt20(x0, x1, ty_Bool) 25.79/11.06 new_primEqNat0(Succ(x0), Succ(x1)) 25.79/11.06 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) 25.79/11.06 new_primMulNat0(Zero, Zero) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 25.79/11.06 new_ltEs19(x0, x1, ty_@0) 25.79/11.06 new_ltEs19(x0, x1, ty_Bool) 25.79/11.06 new_primCompAux0(x0, LT) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_Float) 25.79/11.06 new_esEs27(x0, x1, ty_Int) 25.79/11.06 new_ltEs11(LT, LT) 25.79/11.06 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_ltEs4(Left(x0), Right(x1), x2, x3) 25.79/11.06 new_ltEs4(Right(x0), Left(x1), x2, x3) 25.79/11.06 new_esEs25(x0, x1, ty_@0) 25.79/11.06 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_esEs25(x0, x1, ty_Integer) 25.79/11.06 new_esEs16(x0, x1, app(ty_[], x2)) 25.79/11.06 new_lt13(x0, x1, ty_Float) 25.79/11.06 new_compare27(x0, x1, False) 25.79/11.06 new_ltEs18(x0, x1, ty_Bool) 25.79/11.06 new_lt21(x0, x1, ty_Integer) 25.79/11.06 new_compare110(x0, x1, False) 25.79/11.06 new_primMulNat0(Succ(x0), Succ(x1)) 25.79/11.06 new_esEs27(x0, x1, ty_Char) 25.79/11.06 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.79/11.06 new_lt19(x0, x1, x2, x3, x4) 25.79/11.06 new_esEs9(x0, x1, ty_Integer) 25.79/11.06 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 25.79/11.06 new_esEs16(x0, x1, ty_Bool) 25.79/11.06 new_compare28(x0, x1, ty_Bool) 25.79/11.06 new_ltEs9(x0, x1) 25.79/11.06 new_esEs11(x0, x1) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.79/11.06 new_esEs15(x0, x1, ty_@0) 25.79/11.06 new_ltEs13(x0, x1) 25.79/11.06 new_lt20(x0, x1, ty_Char) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 25.79/11.06 new_ltEs14(Nothing, Nothing, x0) 25.79/11.06 new_esEs26(x0, x1, ty_Bool) 25.79/11.06 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_esEs16(x0, x1, ty_Integer) 25.79/11.06 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_not(True) 25.79/11.06 new_compare25(x0, x1, True, x2, x3) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 25.79/11.06 new_primEqNat0(Succ(x0), Zero) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 25.79/11.06 new_lt13(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_compare210(x0, x1, True, x2) 25.79/11.06 new_primMulNat0(Zero, Succ(x0)) 25.79/11.06 new_compare24(x0, x1, False, x2, x3, x4) 25.79/11.06 new_lt10(x0, x1) 25.79/11.06 new_esEs21(:(x0, x1), [], x2) 25.79/11.06 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.79/11.06 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 25.79/11.06 new_compare9(x0, x1) 25.79/11.06 new_ltEs19(x0, x1, ty_Int) 25.79/11.06 new_esEs28(x0, x1, app(ty_[], x2)) 25.79/11.06 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_lt20(x0, x1, ty_Int) 25.79/11.06 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 25.79/11.06 new_esEs22(x0, x1, ty_@0) 25.79/11.06 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_esEs22(x0, x1, ty_Float) 25.79/11.06 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.79/11.06 new_ltEs18(x0, x1, ty_@0) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_Float) 25.79/11.06 new_esEs23(x0, x1, ty_Int) 25.79/11.06 new_compare16(x0, x1) 25.79/11.06 new_compare27(x0, x1, True) 25.79/11.06 new_esEs16(x0, x1, ty_Ordering) 25.79/11.06 new_ltEs18(x0, x1, ty_Float) 25.79/11.06 new_primCmpNat0(Succ(x0), Succ(x1)) 25.79/11.06 new_lt16(x0, x1) 25.79/11.06 new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs15(x0, x1, ty_Bool) 25.79/11.06 new_esEs26(x0, x1, ty_Float) 25.79/11.06 new_lt21(x0, x1, ty_Int) 25.79/11.06 new_esEs28(x0, x1, ty_Double) 25.79/11.06 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_esEs28(x0, x1, ty_Char) 25.79/11.06 new_sr(x0, x1) 25.79/11.06 new_esEs10(x0, x1, ty_Integer) 25.79/11.06 new_esEs28(x0, x1, ty_Int) 25.79/11.06 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs19(x0, x1, ty_Double) 25.79/11.06 new_esEs6(Nothing, Just(x0), x1) 25.79/11.06 new_esEs23(x0, x1, ty_Double) 25.79/11.06 new_esEs26(x0, x1, ty_@0) 25.79/11.06 new_compare28(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_esEs23(x0, x1, ty_Char) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_ltEs5(x0, x1, x2) 25.79/11.06 new_esEs19(True, True) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 25.79/11.06 new_primCmpNat0(Succ(x0), Zero) 25.79/11.06 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 25.79/11.06 new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_compare12(@0, @0) 25.79/11.06 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.79/11.06 new_ltEs20(x0, x1, app(ty_[], x2)) 25.79/11.06 new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_primMulInt(Pos(x0), Pos(x1)) 25.79/11.06 new_compare112(x0, x1, False) 25.79/11.06 new_lt12(x0, x1, ty_Float) 25.79/11.06 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs19(x0, x1, ty_Char) 25.79/11.06 new_lt8(x0, x1, x2) 25.79/11.06 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.79/11.06 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 25.79/11.06 new_lt21(x0, x1, ty_Char) 25.79/11.06 new_lt12(x0, x1, app(ty_[], x2)) 25.79/11.06 new_compare30(x0, x1, x2, x3) 25.79/11.06 new_esEs8(:%(x0, x1), :%(x2, x3), x4) 25.79/11.06 new_lt15(x0, x1, x2, x3) 25.79/11.06 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.79/11.06 new_compare0([], :(x0, x1), x2) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.79/11.06 new_esEs29(x0, x1, ty_Int) 25.79/11.06 new_esEs24(x0, x1, ty_Int) 25.79/11.06 new_lt21(x0, x1, ty_Float) 25.79/11.06 new_esEs21([], :(x0, x1), x2) 25.79/11.06 new_esEs6(Just(x0), Just(x1), ty_@0) 25.79/11.06 new_lt20(x0, x1, ty_Float) 25.79/11.06 new_esEs25(x0, x1, ty_Int) 25.79/11.06 new_ltEs20(x0, x1, ty_@0) 25.79/11.06 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_compare110(x0, x1, True) 25.79/11.06 new_esEs27(x0, x1, ty_@0) 25.79/11.06 new_esEs29(x0, x1, ty_Char) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.79/11.06 new_lt20(x0, x1, ty_Ordering) 25.79/11.06 new_esEs13(LT, GT) 25.79/11.06 new_esEs13(GT, LT) 25.79/11.06 new_compare211(@2(x0, x1), @2(x2, x3), False, x4, x5) 25.79/11.06 new_primMulInt(Neg(x0), Neg(x1)) 25.79/11.06 new_esEs29(x0, x1, ty_Float) 25.79/11.06 new_primMulInt(Pos(x0), Neg(x1)) 25.79/11.06 new_primMulInt(Neg(x0), Pos(x1)) 25.79/11.06 new_esEs24(x0, x1, ty_Char) 25.79/11.06 new_lt13(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_ltEs18(x0, x1, ty_Double) 25.79/11.06 new_compare26(x0, x1, True) 25.79/11.06 new_primCompAux1(x0, x1, x2, x3) 25.79/11.06 new_esEs10(x0, x1, ty_Int) 25.79/11.06 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.79/11.06 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.79/11.06 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 25.79/11.06 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_lt12(x0, x1, ty_Double) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 25.79/11.06 new_lt13(x0, x1, ty_Integer) 25.79/11.06 new_esEs15(x0, x1, ty_Ordering) 25.79/11.06 new_esEs25(x0, x1, ty_Float) 25.79/11.06 new_esEs25(x0, x1, ty_Ordering) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_@0) 25.79/11.06 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 25.79/11.06 new_primEqNat0(Zero, Zero) 25.79/11.06 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 25.79/11.06 new_ltEs19(x0, x1, ty_Integer) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 25.79/11.06 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_ltEs10(x0, x1) 25.79/11.06 new_esEs23(x0, x1, ty_Ordering) 25.79/11.06 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.79/11.06 new_not(False) 25.79/11.06 new_esEs27(x0, x1, app(ty_[], x2)) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 25.79/11.06 new_esEs13(EQ, GT) 25.79/11.06 new_esEs13(GT, EQ) 25.79/11.06 new_esEs16(x0, x1, ty_Int) 25.79/11.06 new_lt9(x0, x1) 25.79/11.06 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.79/11.06 new_esEs28(x0, x1, ty_Ordering) 25.79/11.06 new_compare24(x0, x1, True, x2, x3, x4) 25.79/11.06 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_ltEs11(GT, LT) 25.79/11.06 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_ltEs11(LT, GT) 25.79/11.06 new_ltEs17(False, False) 25.79/11.06 new_lt20(x0, x1, ty_Integer) 25.79/11.06 new_esEs15(x0, x1, app(ty_Ratio, x2)) 25.79/11.06 new_primCompAux0(x0, GT) 25.79/11.06 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_asAs(True, x0) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 25.79/11.06 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_ltEs14(Just(x0), Just(x1), ty_Double) 25.79/11.06 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_esEs16(x0, x1, ty_Char) 25.79/11.06 new_compare28(x0, x1, ty_Double) 25.79/11.06 new_esEs28(x0, x1, ty_Integer) 25.79/11.06 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_lt13(x0, x1, app(ty_[], x2)) 25.79/11.06 new_primPlusNat1(Succ(x0), Succ(x1)) 25.79/11.06 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 25.79/11.06 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_compare28(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.79/11.06 new_ltEs19(x0, x1, ty_Ordering) 25.79/11.06 new_esEs25(x0, x1, ty_Char) 25.79/11.06 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.79/11.06 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.79/11.06 new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.06 new_compare11(x0, x1, x2, x3, False, x4, x5) 25.79/11.06 new_esEs22(x0, x1, app(ty_[], x2)) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 25.79/11.06 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 25.79/11.06 new_esEs24(x0, x1, ty_Float) 25.79/11.06 new_compare19(x0, x1, False, x2) 25.79/11.06 new_ltEs11(GT, EQ) 25.79/11.06 new_ltEs11(EQ, GT) 25.79/11.06 new_esEs25(x0, x1, ty_Bool) 25.79/11.06 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.79/11.06 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.79/11.06 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.79/11.06 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 25.79/11.06 new_compare28(x0, x1, app(ty_[], x2)) 25.79/11.06 new_esEs16(x0, x1, ty_Float) 25.79/11.06 new_compare28(x0, x1, ty_@0) 25.79/11.06 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.06 new_esEs21(:(x0, x1), :(x2, x3), x4) 25.79/11.06 new_primCmpNat0(Zero, Zero) 25.79/11.06 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.06 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 25.79/11.06 25.79/11.06 We have to consider all minimal (P,Q,R)-chains. 25.79/11.06 ---------------------------------------- 25.79/11.06 25.79/11.06 (21) QDPSizeChangeProof (EQUIVALENT) 25.79/11.06 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.79/11.06 25.79/11.06 From the DPs we obtained the following set of size-change graphs: 25.79/11.06 *new_lt3(vyw430, vyw450, da, db, dc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(ty_[], dg)) -> new_ltEs(vyw4311, vyw4511, dg) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_lt0(vyw430, vyw450, cb, cc) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, cb, cc), cb, cc) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(app(app(ty_@3, ee), ef), eg)) -> new_ltEs3(vyw4311, vyw4511, ee, ef, eg) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare23(vyw430, vyw450, False, da, db, dc) -> new_ltEs3(vyw430, vyw450, da, db, dc) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(ty_[], bcb)) -> new_ltEs(vyw4312, vyw4512, bcb) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(app(app(ty_@3, bch), bda), bdb)) -> new_ltEs3(vyw4312, vyw4512, bch, bda, bdb) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, fg), fa) -> new_lt2(vyw4310, vyw4510, fg) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare22(vyw430, vyw450, False, cg) -> new_ltEs2(vyw430, vyw450, cg) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_lt2(vyw430, vyw450, cg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, cg), cg) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs2(Just(vyw4310), Just(vyw4510), app(ty_[], bag)) -> new_ltEs(vyw4310, vyw4510, bag) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs2(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(vyw4310, vyw4510, bbe, bbf, bbg) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(ty_Maybe, ed)) -> new_ltEs2(vyw4311, vyw4511, ed) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(ty_Maybe, bcg)) -> new_ltEs2(vyw4312, vyw4512, bcg) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs2(Just(vyw4310), Just(vyw4510), app(ty_Maybe, bbd)) -> new_ltEs2(vyw4310, vyw4510, bbd) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(app(ty_Either, eb), ec)) -> new_ltEs1(vyw4311, vyw4511, eb, ec) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(app(ty_Either, bce), bcf)) -> new_ltEs1(vyw4312, vyw4512, bce, bcf) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs2(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bbb), bbc)) -> new_ltEs1(vyw4310, vyw4510, bbb, bbc) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs2(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bah), bba)) -> new_ltEs0(vyw4310, vyw4510, bah, bba) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs(vyw431, vyw451, de) -> new_compare(vyw431, vyw451, de) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), df, app(app(ty_@2, dh), ea)) -> new_ltEs0(vyw4311, vyw4511, dh, ea) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, bca, app(app(ty_@2, bcc), bcd)) -> new_ltEs0(vyw4312, vyw4512, bcc, bcd) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, cb), cc), cd) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, cb, cc), cb, cc) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare1(vyw430, vyw450, cb, cc) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, cb, cc), cb, cc) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare21(vyw430, vyw450, False, ce, cf) -> new_ltEs1(vyw430, vyw450, ce, cf) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_primCompAux(vyw4300, vyw4500, vyw100, app(app(ty_Either, bd), be)) -> new_compare2(vyw4300, vyw4500, bd, be) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_lt1(vyw430, vyw450, ce, cf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, cg), cd) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, cg), cg) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare3(vyw430, vyw450, cg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, cg), cg) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], eh), fa) -> new_lt(vyw4310, vyw4510, eh) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, ce), cf), cd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare2(vyw430, vyw450, ce, cf) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, ce, cf), ce, cf) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, h), h) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_compare(vyw4301, vyw4501, h) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_lt(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, h), h) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_lt(:(vyw4300, vyw4301), :(vyw4500, vyw4501), h) -> new_compare(vyw4301, vyw4501, h) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare20(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], h), cd) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, h), h) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, fb), fc), fa) -> new_lt0(vyw4310, vyw4510, fb, fc) 25.79/11.06 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.06 25.79/11.06 25.79/11.06 *new_compare4(vyw430, vyw450, da, db, dc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 25.79/11.06 25.79/11.06 25.79/11.06 *new_primCompAux(vyw4300, vyw4500, vyw100, app(ty_Maybe, bf)) -> new_compare3(vyw4300, vyw4500, bf) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_primCompAux(vyw4300, vyw4500, vyw100, app(ty_[], ba)) -> new_compare(vyw4300, vyw4500, ba) 25.79/11.06 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 25.79/11.06 25.79/11.06 25.79/11.06 *new_primCompAux(vyw4300, vyw4500, vyw100, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(vyw4300, vyw4500, bg, bh, ca) 25.79/11.07 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_primCompAux(vyw4300, vyw4500, vyw100, app(app(ty_@2, bb), bc)) -> new_compare1(vyw4300, vyw4500, bb, bc) 25.79/11.07 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, fh), ga), gb), fa) -> new_lt3(vyw4310, vyw4510, fh, ga, gb) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, fd), ff), fa) -> new_lt1(vyw4310, vyw4510, fd, ff) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, da), db), dc), cd) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, da, db, dc), da, db, dc) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(ty_[], hf)) -> new_ltEs(vyw4310, vyw4510, hf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Left(vyw4310), Left(vyw4510), app(ty_[], gc), gd) -> new_ltEs(vyw4310, vyw4510, gc) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(ty_[], dg))) -> new_ltEs(vyw4311, vyw4511, dg) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(ty_[], hf))) -> new_ltEs(vyw4310, vyw4510, hf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(ty_[], gc)), gd)) -> new_ltEs(vyw4310, vyw4510, gc) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(ty_[], bag))) -> new_ltEs(vyw4310, vyw4510, bag) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(ty_[], bcb))) -> new_ltEs(vyw4312, vyw4512, bcb) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, hb), hc), hd), gd) -> new_ltEs3(vyw4310, vyw4510, hb, hc, hd) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(app(app(ty_@3, bad), bae), baf)) -> new_ltEs3(vyw4310, vyw4510, bad, bae, baf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(app(app(ty_@3, ee), ef), eg))) -> new_ltEs3(vyw4311, vyw4511, ee, ef, eg) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(app(app(ty_@3, hb), hc), hd)), gd)) -> new_ltEs3(vyw4310, vyw4510, hb, hc, hd) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(app(app(ty_@3, bbe), bbf), bbg))) -> new_ltEs3(vyw4310, vyw4510, bbe, bbf, bbg) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(app(app(ty_@3, bch), bda), bdb))) -> new_ltEs3(vyw4312, vyw4512, bch, bda, bdb) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(app(app(ty_@3, bad), bae), baf))) -> new_ltEs3(vyw4310, vyw4510, bad, bae, baf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(ty_Maybe, bea), bdd) -> new_lt2(vyw4311, vyw4511, bea) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bfb), bca, bdd) -> new_lt2(vyw4310, vyw4510, bfb) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(ty_[], bdc), bdd) -> new_lt(vyw4311, vyw4511, bdc) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bee), bca, bdd) -> new_lt(vyw4310, vyw4510, bee) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bef), beg), bca, bdd) -> new_lt0(vyw4310, vyw4510, bef, beg) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(app(ty_@2, bde), bdf), bdd) -> new_lt0(vyw4311, vyw4511, bde, bdf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bfc), bfd), bfe), bca, bdd) -> new_lt3(vyw4310, vyw4510, bfc, bfd, bfe) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(app(app(ty_@3, beb), bec), bed), bdd) -> new_lt3(vyw4311, vyw4511, beb, bec, bed) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, beh), bfa), bca, bdd) -> new_lt1(vyw4310, vyw4510, beh, bfa) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs3(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bbh, app(app(ty_Either, bdg), bdh), bdd) -> new_lt1(vyw4311, vyw4511, bdg, bdh) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ha), gd) -> new_ltEs2(vyw4310, vyw4510, ha) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(ty_Maybe, bac)) -> new_ltEs2(vyw4310, vyw4510, bac) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(app(ty_Either, baa), bab)) -> new_ltEs1(vyw4310, vyw4510, baa, bab) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Left(vyw4310), Left(vyw4510), app(app(ty_Either, gg), gh), gd) -> new_ltEs1(vyw4310, vyw4510, gg, gh) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Left(vyw4310), Left(vyw4510), app(app(ty_@2, ge), gf), gd) -> new_ltEs0(vyw4310, vyw4510, ge, gf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_ltEs1(Right(vyw4310), Right(vyw4510), he, app(app(ty_@2, hg), hh)) -> new_ltEs0(vyw4310, vyw4510, hg, hh) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(ty_Maybe, bfb)), bca), bdd)) -> new_lt2(vyw4310, vyw4510, bfb) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(ty_Maybe, bea)), bdd)) -> new_lt2(vyw4311, vyw4511, bea) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(ty_Maybe, fg)), fa)) -> new_lt2(vyw4310, vyw4510, fg) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(ty_Maybe, bcg))) -> new_ltEs2(vyw4312, vyw4512, bcg) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(ty_Maybe, ed))) -> new_ltEs2(vyw4311, vyw4511, ed) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(ty_Maybe, bbd))) -> new_ltEs2(vyw4310, vyw4510, bbd) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(ty_Maybe, ha)), gd)) -> new_ltEs2(vyw4310, vyw4510, ha) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(ty_Maybe, bac))) -> new_ltEs2(vyw4310, vyw4510, bac) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(app(ty_Either, baa), bab))) -> new_ltEs1(vyw4310, vyw4510, baa, bab) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(app(ty_Either, eb), ec))) -> new_ltEs1(vyw4311, vyw4511, eb, ec) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(app(ty_Either, bce), bcf))) -> new_ltEs1(vyw4312, vyw4512, bce, bcf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(app(ty_Either, gg), gh)), gd)) -> new_ltEs1(vyw4310, vyw4510, gg, gh) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(app(ty_Either, bbb), bbc))) -> new_ltEs1(vyw4310, vyw4510, bbb, bbc) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, df), app(app(ty_@2, dh), ea))) -> new_ltEs0(vyw4311, vyw4511, dh, ea) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, dd, app(app(ty_Either, app(app(ty_@2, ge), gf)), gd)) -> new_ltEs0(vyw4310, vyw4510, ge, gf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, dd, app(ty_Maybe, app(app(ty_@2, bah), bba))) -> new_ltEs0(vyw4310, vyw4510, bah, bba) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), bca), app(app(ty_@2, bcc), bcd))) -> new_ltEs0(vyw4312, vyw4512, bcc, bcd) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, dd, app(app(ty_Either, he), app(app(ty_@2, hg), hh))) -> new_ltEs0(vyw4310, vyw4510, hg, hh) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(ty_[], eh)), fa)) -> new_lt(vyw4310, vyw4510, eh) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(ty_[], bee)), bca), bdd)) -> new_lt(vyw4310, vyw4510, bee) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(ty_[], bdc)), bdd)) -> new_lt(vyw4311, vyw4511, bdc) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(app(ty_@2, bef), beg)), bca), bdd)) -> new_lt0(vyw4310, vyw4510, bef, beg) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(app(ty_@2, bde), bdf)), bdd)) -> new_lt0(vyw4311, vyw4511, bde, bdf) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(app(ty_@2, fb), fc)), fa)) -> new_lt0(vyw4310, vyw4510, fb, fc) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, vyw431), @2(vyw450, vyw451), False, dd, app(ty_[], de)) -> new_compare(vyw431, vyw451, de) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], h), cd) -> new_compare(vyw4301, vyw4501, h) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(app(app(ty_@3, bfc), bfd), bfe)), bca), bdd)) -> new_lt3(vyw4310, vyw4510, bfc, bfd, bfe) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(app(app(ty_@3, beb), bec), bed)), bdd)) -> new_lt3(vyw4311, vyw4511, beb, bec, bed) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(app(app(ty_@3, fh), ga), gb)), fa)) -> new_lt3(vyw4310, vyw4510, fh, ga, gb) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, app(app(ty_Either, beh), bfa)), bca), bdd)) -> new_lt1(vyw4310, vyw4510, beh, bfa) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, dd, app(app(ty_@2, app(app(ty_Either, fd), ff)), fa)) -> new_lt1(vyw4310, vyw4510, fd, ff) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 *new_compare20(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, dd, app(app(app(ty_@3, bbh), app(app(ty_Either, bdg), bdh)), bdd)) -> new_lt1(vyw4311, vyw4511, bdg, bdh) 25.79/11.07 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 25.79/11.07 25.79/11.07 25.79/11.07 ---------------------------------------- 25.79/11.07 25.79/11.07 (22) 25.79/11.07 YES 25.79/11.07 25.79/11.07 ---------------------------------------- 25.79/11.07 25.79/11.07 (23) 25.79/11.07 Obligation: 25.79/11.07 Q DP problem: 25.79/11.07 The TRS P consists of the following rules: 25.79/11.07 25.79/11.07 new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs13(new_compare211(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs4(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) 25.79/11.07 new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw20, @2(vyw21, vyw22), h, ba, bb) 25.79/11.07 new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw19, @2(vyw21, vyw22), h, ba, bb) 25.79/11.07 new_lookupFM(Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw40, vyw41), bc, bd, be) -> new_lookupFM2(vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw40, vyw41, new_esEs30(vyw40, vyw41, vyw300, vyw301, new_esEs31(vyw40, vyw300, bd), bd, be), bc, bd, be) 25.79/11.07 25.79/11.07 The TRS R consists of the following rules: 25.79/11.07 25.79/11.07 new_lt21(vyw430, vyw450, app(app(ty_@2, chc), chd)) -> new_lt15(vyw430, vyw450, chc, chd) 25.79/11.07 new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT 25.79/11.07 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.79/11.07 new_pePe(True, vyw105) -> True 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(ty_Maybe, bgd)) -> new_esEs6(vyw4311, vyw4511, bgd) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Float) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.07 new_compare111(vyw430, vyw450, True, ga, gb, gc) -> LT 25.79/11.07 new_esEs19(False, True) -> False 25.79/11.07 new_esEs19(True, False) -> False 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Double, fh) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_esEs10(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.07 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.79/11.07 new_esEs27(vyw402, vyw3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(vyw402, vyw3002, ddd, dde) 25.79/11.07 new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT 25.79/11.07 new_lt20(vyw4310, vyw4510, app(app(ty_Either, ccc), ccd)) -> new_lt17(vyw4310, vyw4510, ccc, ccd) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Int) -> new_esEs11(vyw4310, vyw4510) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs13(vyw4311, vyw4511) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs7(vyw401, vyw3001, gh, ha, hb) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(ty_[], caf)) -> new_ltEs5(vyw4311, vyw4511, caf) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Integer) -> new_esEs12(vyw4310, vyw4510) 25.79/11.07 new_esEs21(:(vyw400, vyw401), :(vyw3000, vyw3001), fd) -> new_asAs(new_esEs22(vyw400, vyw3000, fd), new_esEs21(vyw401, vyw3001, fd)) 25.79/11.07 new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) 25.79/11.07 new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), cdb) -> new_primCompAux1(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, cdb), cdb) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Integer) -> new_lt18(vyw4310, vyw4510) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_Ratio, bdf)) -> new_ltEs15(vyw4310, vyw4510, bdf) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs16(vyw4310, vyw4510, ec, ed, ee) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(ty_[], bha)) -> new_esEs21(vyw4310, vyw4510, bha) 25.79/11.07 new_ltEs11(GT, EQ) -> False 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Int, fh) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs19(vyw4311, vyw4511) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_Either, dcb), dcc)) -> new_esEs5(vyw400, vyw3000, dcb, dcc) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(ty_Ratio, cea)) -> new_compare5(vyw4300, vyw4500, cea) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_[], bch)) -> new_ltEs5(vyw4310, vyw4510, bch) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Ordering) -> new_esEs13(vyw402, vyw3002) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(ty_Ratio, bge)) -> new_lt4(vyw4311, vyw4511, bge) 25.79/11.07 new_primCompAux0(vyw109, GT) -> GT 25.79/11.07 new_lt9(vyw430, vyw450) -> new_esEs13(new_compare17(vyw430, vyw450), LT) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw4311, vyw4511, bgb, bgc) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Double) -> new_lt6(vyw4311, vyw4511) 25.79/11.07 new_ltEs14(Nothing, Just(vyw4510), bcg) -> True 25.79/11.07 new_compare29(vyw430, vyw450, chc, chd) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, chc, chd), chc, chd) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs12(vyw40, vyw300) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Float) -> new_lt11(vyw4311, vyw4511) 25.79/11.07 new_compare26(vyw430, vyw450, True) -> EQ 25.79/11.07 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 25.79/11.07 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.79/11.07 new_esEs31(vyw40, vyw300, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs7(vyw40, vyw300, fa, fb, fc) 25.79/11.07 new_esEs29(vyw400, vyw3000, app(ty_[], dfe)) -> new_esEs21(vyw400, vyw3000, dfe) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(app(ty_@2, bhb), bhc)) -> new_esEs4(vyw4310, vyw4510, bhb, bhc) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_@0) -> new_ltEs12(vyw4311, vyw4511) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Maybe, cfc), fh) -> new_esEs6(vyw400, vyw3000, cfc) 25.79/11.07 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(app(ty_@2, cfg), cfh)) -> new_esEs4(vyw400, vyw3000, cfg, cfh) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(ty_Ratio, dee)) -> new_esEs8(vyw401, vyw3001, dee) 25.79/11.07 new_primCompAux0(vyw109, LT) -> LT 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Char) -> new_lt9(vyw4310, vyw4510) 25.79/11.07 new_not(True) -> False 25.79/11.07 new_lt21(vyw430, vyw450, app(ty_Maybe, bbd)) -> new_lt8(vyw430, vyw450, bbd) 25.79/11.07 new_primCmpNat0(Zero, Zero) -> EQ 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs18(vyw4311, vyw4511) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Bool) -> new_lt5(vyw430, vyw450) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_@0) -> new_lt10(vyw4311, vyw4511) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(vyw4310, vyw4510, ccg, cch, cda) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Float, fh) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Char) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.07 new_lt10(vyw430, vyw450) -> new_esEs13(new_compare12(vyw430, vyw450), LT) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Bool) -> new_esEs19(vyw402, vyw3002) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Double, bh) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.07 new_primEqNat0(Succ(vyw4000), Zero) -> False 25.79/11.07 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.79/11.07 new_compare26(vyw430, vyw450, False) -> new_compare110(vyw430, vyw450, new_ltEs11(vyw430, vyw450)) 25.79/11.07 new_esEs18(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_esEs12(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 25.79/11.07 new_compare112(vyw430, vyw450, False) -> GT 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Double) -> new_lt6(vyw4310, vyw4510) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Char) -> new_ltEs6(vyw4311, vyw4511) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Integer, fh) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt19(vyw4311, vyw4511, bgf, bgg, bgh) 25.79/11.07 new_lt20(vyw4310, vyw4510, app(ty_[], cbh)) -> new_lt14(vyw4310, vyw4510, cbh) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) 25.79/11.07 new_compare110(vyw430, vyw450, True) -> LT 25.79/11.07 new_esEs13(LT, LT) -> True 25.79/11.07 new_compare8(vyw430, vyw450, ga, gb, gc) -> new_compare24(vyw430, vyw450, new_esEs7(vyw430, vyw450, ga, gb, gc), ga, gb, gc) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs11(vyw4311, vyw4511) 25.79/11.07 new_compare15(vyw430, vyw450, True, bbb, bbc) -> LT 25.79/11.07 new_compare6(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Char) -> new_lt9(vyw4310, vyw4510) 25.79/11.07 new_esEs19(False, False) -> True 25.79/11.07 new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Integer) -> new_lt18(vyw4311, vyw4511) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(app(app(ty_@3, bhh), caa), cab)) -> new_lt19(vyw4310, vyw4510, bhh, caa, cab) 25.79/11.07 new_compare9(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Int) -> new_lt16(vyw4311, vyw4511) 25.79/11.07 new_ltEs11(GT, LT) -> False 25.79/11.07 new_lt20(vyw4310, vyw4510, app(ty_Maybe, cce)) -> new_lt8(vyw4310, vyw4510, cce) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Double) -> new_ltEs10(vyw431, vyw451) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(ty_[], cbh)) -> new_esEs21(vyw4310, vyw4510, cbh) 25.79/11.07 new_compare11(vyw86, vyw87, vyw88, vyw89, True, gd, ge) -> LT 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Int) -> new_compare9(vyw4300, vyw4500) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Ordering) -> new_esEs13(vyw401, vyw3001) 25.79/11.07 new_primPlusNat1(Succ(vyw7700), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw7700, vyw3000000))) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs17(vyw4311, vyw4511) 25.79/11.07 new_compare210(vyw430, vyw450, False, bbd) -> new_compare19(vyw430, vyw450, new_ltEs14(vyw430, vyw450, bbd), bbd) 25.79/11.07 new_ltEs11(LT, LT) -> True 25.79/11.07 new_primCmpNat0(Zero, Succ(vyw45000)) -> LT 25.79/11.07 new_esEs26(vyw430, vyw450, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs7(vyw430, vyw450, ga, gb, gc) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Double) -> new_ltEs10(vyw4311, vyw4511) 25.79/11.07 new_ltEs10(vyw431, vyw451) -> new_fsEs(new_compare13(vyw431, vyw451)) 25.79/11.07 new_esEs32(vyw32, vyw34, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(vyw32, vyw34, dab, dac, dad) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_primCmpNat0(Succ(vyw43000), Zero) -> GT 25.79/11.07 new_compare13(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.07 new_compare13(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.07 new_pePe(False, vyw105) -> vyw105 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, cg), da), db), bh) -> new_ltEs16(vyw4310, vyw4510, cg, da, db) 25.79/11.07 new_esEs17(@0, @0) -> True 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Double) -> new_esEs20(vyw401, vyw3001) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Integer) -> new_esEs12(vyw430, vyw450) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Bool) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.07 new_compare25(vyw430, vyw450, True, bbb, bbc) -> EQ 25.79/11.07 new_compare7(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.07 new_compare7(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.07 new_compare210(vyw430, vyw450, True, bbd) -> EQ 25.79/11.07 new_lt11(vyw430, vyw450) -> new_esEs13(new_compare7(vyw430, vyw450), LT) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs31(vyw40, vyw300, app(ty_Ratio, bf)) -> new_esEs8(vyw40, vyw300, bf) 25.79/11.07 new_lt8(vyw430, vyw450, bbd) -> new_esEs13(new_compare18(vyw430, vyw450, bbd), LT) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs11(vyw40, vyw300) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(ty_[], hc)) -> new_esEs21(vyw401, vyw3001, hc) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(ty_Maybe, cbc)) -> new_ltEs14(vyw4311, vyw4511, cbc) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Ordering) -> new_esEs13(vyw430, vyw450) 25.79/11.07 new_esEs13(GT, GT) -> True 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Bool) -> new_ltEs17(vyw4312, vyw4512) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(ty_Maybe, bcc)) -> new_esEs6(vyw400, vyw3000, bcc) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_@2, cee), cef), fh) -> new_esEs4(vyw400, vyw3000, cee, cef) 25.79/11.07 new_esEs32(vyw32, vyw34, app(ty_Maybe, daf)) -> new_esEs6(vyw32, vyw34, daf) 25.79/11.07 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.79/11.07 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.79/11.07 new_compare19(vyw430, vyw450, True, bbd) -> LT 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(app(ty_@2, cca), ccb)) -> new_esEs4(vyw4310, vyw4510, cca, ccb) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bda), bdb)) -> new_ltEs7(vyw4310, vyw4510, bda, bdb) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_@0) -> new_ltEs12(vyw431, vyw451) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(app(ty_Either, bhd), bhe)) -> new_esEs5(vyw4310, vyw4510, bhd, bhe) 25.79/11.07 new_lt5(vyw430, vyw450) -> new_esEs13(new_compare14(vyw430, vyw450), LT) 25.79/11.07 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Integer) -> new_esEs12(vyw4310, vyw4510) 25.79/11.07 new_compare14(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs19(vyw430, vyw450)) 25.79/11.07 new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs16(vyw4312, vyw4512, bfd, bfe, bff) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_esEs10(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs21(:(vyw400, vyw401), [], fd) -> False 25.79/11.07 new_esEs21([], :(vyw3000, vyw3001), fd) -> False 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs13(EQ, GT) -> False 25.79/11.07 new_esEs13(GT, EQ) -> False 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Double) -> new_ltEs10(vyw4312, vyw4512) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Double) -> new_esEs20(vyw401, vyw3001) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs32(vyw32, vyw34, app(app(ty_Either, dah), dba)) -> new_esEs5(vyw32, vyw34, dah, dba) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(vyw400, vyw3000, bbg, bbh, bca) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(ty_Maybe, bhf)) -> new_esEs6(vyw4310, vyw4510, bhf) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) 25.79/11.07 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 25.79/11.07 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 25.79/11.07 new_compare211(@2(vyw430, vyw431), @2(vyw450, vyw451), False, cha, chb) -> new_compare10(vyw430, vyw431, vyw450, vyw451, new_lt21(vyw430, vyw450, cha), new_asAs(new_esEs26(vyw430, vyw450, cha), new_ltEs20(vyw431, vyw451, chb)), cha, chb) 25.79/11.07 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Ordering) -> new_esEs13(vyw4310, vyw4510) 25.79/11.07 new_compare24(vyw430, vyw450, False, ga, gb, gc) -> new_compare111(vyw430, vyw450, new_ltEs16(vyw430, vyw450, ga, gb, gc), ga, gb, gc) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Ordering, fh) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Integer) -> new_ltEs13(vyw4311, vyw4511) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(app(ty_Either, bhd), bhe)) -> new_lt17(vyw4310, vyw4510, bhd, bhe) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(ty_[], cdc)) -> new_compare0(vyw4300, vyw4500, cdc) 25.79/11.07 new_fsEs(vyw92) -> new_not(new_esEs13(vyw92, GT)) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs20(vyw40, vyw300) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) 25.79/11.07 new_lt21(vyw430, vyw450, app(ty_[], cdb)) -> new_lt14(vyw430, vyw450, cdb) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_Either, cfe), cff), fh) -> new_esEs5(vyw400, vyw3000, cfe, cff) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(ty_Maybe, bcg)) -> new_ltEs14(vyw431, vyw451, bcg) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Int) -> new_lt16(vyw430, vyw450) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(ty_Maybe, cge)) -> new_esEs6(vyw400, vyw3000, cge) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs7(vyw400, vyw3000, cga, cgb, cgc) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_Maybe, bde)) -> new_ltEs14(vyw4310, vyw4510, bde) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(vyw400, vyw3000, dbd, dbe, dbf) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(ty_[], dda)) -> new_esEs21(vyw402, vyw3002, dda) 25.79/11.07 new_esEs29(vyw400, vyw3000, app(ty_Ratio, dfg)) -> new_esEs8(vyw400, vyw3000, dfg) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_@0) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(vyw4310, vyw4510, bhh, caa, cab) 25.79/11.07 new_primPlusNat1(Succ(vyw7700), Zero) -> Succ(vyw7700) 25.79/11.07 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs17(vyw32, vyw34) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Int) -> new_lt16(vyw4310, vyw4510) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs19(vyw32, vyw34) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs14(vyw40, vyw300) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(ty_[], dec)) -> new_esEs21(vyw401, vyw3001, dec) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(app(ty_@2, cad), cae)) -> new_ltEs7(vyw431, vyw451, cad, cae) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_@2, dbb), dbc)) -> new_esEs4(vyw400, vyw3000, dbb, dbc) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs7(vyw4311, vyw4511, bgf, bgg, bgh) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs16(vyw431, vyw451, beb, bec, bed) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_@0) -> new_ltEs12(vyw4312, vyw4512) 25.79/11.07 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Ratio, cfd), fh) -> new_esEs8(vyw400, vyw3000, cfd) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Bool) -> new_ltEs17(vyw431, vyw451) 25.79/11.07 new_compare11(vyw86, vyw87, vyw88, vyw89, False, gd, ge) -> GT 25.79/11.07 new_lt14(vyw430, vyw450, cdb) -> new_esEs13(new_compare0(vyw430, vyw450, cdb), LT) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs14(vyw32, vyw34) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Maybe, dbh)) -> new_esEs6(vyw400, vyw3000, dbh) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ce), bh) -> new_ltEs14(vyw4310, vyw4510, ce) 25.79/11.07 new_esEs6(Nothing, Just(vyw3000), ff) -> False 25.79/11.07 new_esEs6(Just(vyw400), Nothing, ff) -> False 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(app(ty_@2, cag), cah)) -> new_ltEs7(vyw4311, vyw4511, cag, cah) 25.79/11.07 new_lt21(vyw430, vyw450, ty_@0) -> new_lt10(vyw430, vyw450) 25.79/11.07 new_esEs6(Nothing, Nothing, ff) -> True 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(app(ty_Either, bce), bcf)) -> new_esEs5(vyw400, vyw3000, bce, bcf) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Bool) -> new_lt5(vyw4310, vyw4510) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(ty_Maybe, bfb)) -> new_ltEs14(vyw4312, vyw4512, bfb) 25.79/11.07 new_ltEs8(vyw431, vyw451) -> new_fsEs(new_compare9(vyw431, vyw451)) 25.79/11.07 new_lt18(vyw430, vyw450) -> new_esEs13(new_compare6(vyw430, vyw450), LT) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Float) -> new_lt11(vyw4310, vyw4510) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(app(ty_@2, bfh), bga)) -> new_esEs4(vyw4311, vyw4511, bfh, bga) 25.79/11.07 new_compare112(vyw430, vyw450, True) -> LT 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs11(vyw32, vyw34) 25.79/11.07 new_esEs14(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs11(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 25.79/11.07 new_esEs16(vyw400, vyw3000, app(ty_[], bae)) -> new_esEs21(vyw400, vyw3000, bae) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_compare12(@0, @0) -> EQ 25.79/11.07 new_esEs16(vyw400, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs4(vyw400, vyw3000, hh, baa) 25.79/11.07 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_ltEs11(EQ, GT) -> True 25.79/11.07 new_compare25(vyw430, vyw450, False, bbb, bbc) -> new_compare15(vyw430, vyw450, new_ltEs4(vyw430, vyw450, bbb, bbc), bbb, bbc) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(app(ty_Either, dg), dh)) -> new_ltEs4(vyw4310, vyw4510, dg, dh) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs13(vyw40, vyw300) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(app(ty_@2, bbe), bbf)) -> new_esEs4(vyw400, vyw3000, bbe, bbf) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Ordering) -> new_lt7(vyw4311, vyw4511) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Ordering) -> new_esEs13(vyw4310, vyw4510) 25.79/11.07 new_ltEs13(vyw431, vyw451) -> new_fsEs(new_compare6(vyw431, vyw451)) 25.79/11.07 new_esEs31(vyw40, vyw300, app(ty_Maybe, ff)) -> new_esEs6(vyw40, vyw300, ff) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_[], bg), bh) -> new_ltEs5(vyw4310, vyw4510, bg) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Integer) -> new_ltEs13(vyw4312, vyw4512) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(app(ty_Either, bgb), bgc)) -> new_lt17(vyw4311, vyw4511, bgb, bgc) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Float) -> new_lt11(vyw4310, vyw4510) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bdc), bdd)) -> new_ltEs4(vyw4310, vyw4510, bdc, bdd) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Integer, bh) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.07 new_compare111(vyw430, vyw450, False, ga, gb, gc) -> GT 25.79/11.07 new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Int, bh) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs16(vyw4311, vyw4511, cbe, cbf, cbg) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Bool) -> new_ltEs17(vyw4311, vyw4511) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Ordering) -> new_ltEs11(vyw431, vyw451) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(app(ty_Either, dc), bh)) -> new_ltEs4(vyw431, vyw451, dc, bh) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(ty_[], dd)) -> new_ltEs5(vyw4310, vyw4510, dd) 25.79/11.07 new_ltEs11(EQ, EQ) -> True 25.79/11.07 new_compare24(vyw430, vyw450, True, ga, gb, gc) -> EQ 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(app(ty_@2, bef), beg)) -> new_ltEs7(vyw4312, vyw4512, bef, beg) 25.79/11.07 new_esEs32(vyw32, vyw34, app(ty_Ratio, dag)) -> new_esEs8(vyw32, vyw34, dag) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs7(vyw401, vyw3001, ddh, dea, deb) 25.79/11.07 new_ltEs16(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), beb, bec, bed) -> new_pePe(new_lt13(vyw4310, vyw4510, beb), new_asAs(new_esEs24(vyw4310, vyw4510, beb), new_pePe(new_lt12(vyw4311, vyw4511, bec), new_asAs(new_esEs23(vyw4311, vyw4511, bec), new_ltEs18(vyw4312, vyw4512, bed))))) 25.79/11.07 new_esEs26(vyw430, vyw450, app(ty_Ratio, ef)) -> new_esEs8(vyw430, vyw450, ef) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(ty_Ratio, eb)) -> new_ltEs15(vyw4310, vyw4510, eb) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Int) -> new_ltEs8(vyw4312, vyw4512) 25.79/11.07 new_esEs16(vyw400, vyw3000, app(ty_Ratio, bag)) -> new_esEs8(vyw400, vyw3000, bag) 25.79/11.07 new_compare0([], :(vyw4500, vyw4501), cdb) -> LT 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Bool) -> new_lt5(vyw4311, vyw4511) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs18(vyw32, vyw34) 25.79/11.07 new_asAs(True, vyw60) -> vyw60 25.79/11.07 new_esEs7(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), fa, fb, fc) -> new_asAs(new_esEs29(vyw400, vyw3000, fa), new_asAs(new_esEs28(vyw401, vyw3001, fb), new_esEs27(vyw402, vyw3002, fc))) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Ordering) -> new_esEs13(vyw401, vyw3001) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Float) -> new_compare7(vyw4300, vyw4500) 25.79/11.07 new_lt20(vyw4310, vyw4510, app(ty_Ratio, ccf)) -> new_lt4(vyw4310, vyw4510, ccf) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs16(vyw4310, vyw4510, bdg, bdh, bea) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Ordering) -> new_compare16(vyw4300, vyw4500) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Integer) -> new_esEs12(vyw402, vyw3002) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Char) -> new_esEs18(vyw430, vyw450) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Float) -> new_esEs14(vyw402, vyw3002) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(ty_Maybe, hd)) -> new_esEs6(vyw401, vyw3001, hd) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(app(ty_Either, hf), hg)) -> new_esEs5(vyw401, vyw3001, hf, hg) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Float) -> new_ltEs9(vyw4312, vyw4512) 25.79/11.07 new_esEs32(vyw32, vyw34, app(ty_[], dae)) -> new_esEs21(vyw32, vyw34, dae) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Float, bh) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_lt19(vyw430, vyw450, ga, gb, gc) -> new_esEs13(new_compare8(vyw430, vyw450, ga, gb, gc), LT) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 25.79/11.07 new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(ty_[], bfg)) -> new_lt14(vyw4311, vyw4511, bfg) 25.79/11.07 new_compare110(vyw430, vyw450, False) -> GT 25.79/11.07 new_esEs29(vyw400, vyw3000, app(app(ty_Either, dfh), dga)) -> new_esEs5(vyw400, vyw3000, dfh, dga) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs9(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.07 new_ltEs11(GT, GT) -> True 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Int) -> new_lt16(vyw4310, vyw4510) 25.79/11.07 new_compare5(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare6(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) 25.79/11.07 new_compare0([], [], cdb) -> EQ 25.79/11.07 new_esEs26(vyw430, vyw450, app(ty_[], cdb)) -> new_esEs21(vyw430, vyw450, cdb) 25.79/11.07 new_lt6(vyw430, vyw450) -> new_esEs13(new_compare13(vyw430, vyw450), LT) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(app(ty_@2, bhb), bhc)) -> new_lt15(vyw4310, vyw4510, bhb, bhc) 25.79/11.07 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 25.79/11.07 new_lt7(vyw430, vyw450) -> new_esEs13(new_compare16(vyw430, vyw450), LT) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Ordering) -> new_ltEs11(vyw4312, vyw4512) 25.79/11.07 new_esEs21([], [], fd) -> True 25.79/11.07 new_primMulNat0(Zero, Zero) -> Zero 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs14(vyw4311, vyw4511) 25.79/11.07 new_lt4(vyw430, vyw450, ef) -> new_esEs13(new_compare5(vyw430, vyw450, ef), LT) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Double) -> new_esEs20(vyw430, vyw450) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(app(ty_@2, cdd), cde)) -> new_compare29(vyw4300, vyw4500, cdd, cde) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Integer) -> new_ltEs13(vyw431, vyw451) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(app(ty_Either, beh), bfa)) -> new_ltEs4(vyw4312, vyw4512, beh, bfa) 25.79/11.07 new_compare13(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_[], cfb), fh) -> new_esEs21(vyw400, vyw3000, cfb) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(ty_Maybe, bhf)) -> new_lt8(vyw4310, vyw4510, bhf) 25.79/11.07 new_compare30(vyw430, vyw450, bbb, bbc) -> new_compare25(vyw430, vyw450, new_esEs5(vyw430, vyw450, bbb, bbc), bbb, bbc) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(app(ty_Either, cgg), cgh)) -> new_esEs5(vyw400, vyw3000, cgg, cgh) 25.79/11.07 new_primCompAux1(vyw4300, vyw4500, vyw100, cdb) -> new_primCompAux0(vyw100, new_compare28(vyw4300, vyw4500, cdb)) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Ordering, bh) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.07 new_esEs26(vyw430, vyw450, app(ty_Maybe, bbd)) -> new_esEs6(vyw430, vyw450, bbd) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Char) -> new_lt9(vyw430, vyw450) 25.79/11.07 new_esEs8(:%(vyw400, vyw401), :%(vyw3000, vyw3001), bf) -> new_asAs(new_esEs10(vyw400, vyw3000, bf), new_esEs9(vyw401, vyw3001, bf)) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Double) -> new_esEs20(vyw402, vyw3002) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(ty_Ratio, bcd)) -> new_esEs8(vyw400, vyw3000, bcd) 25.79/11.07 new_lt21(vyw430, vyw450, app(ty_Ratio, ef)) -> new_lt4(vyw430, vyw450, ef) 25.79/11.07 new_esEs30(vyw31, vyw32, vyw33, vyw34, False, chf, chg) -> new_esEs13(new_compare211(@2(vyw31, vyw32), @2(vyw33, vyw34), False, chf, chg), LT) 25.79/11.07 new_primCompAux0(vyw109, EQ) -> vyw109 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.07 new_ltEs17(False, False) -> True 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Char, bh) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs12(vyw4311, vyw4511) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Bool) -> new_compare14(vyw4300, vyw4500) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs20(vyw32, vyw34) 25.79/11.07 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 25.79/11.07 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(ty_Maybe, cce)) -> new_esEs6(vyw4310, vyw4510, cce) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(ty_Ratio, he)) -> new_esEs8(vyw401, vyw3001, he) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Double) -> new_lt6(vyw4310, vyw4510) 25.79/11.07 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Char) -> new_ltEs6(vyw4312, vyw4512) 25.79/11.07 new_esEs32(vyw32, vyw34, app(app(ty_@2, chh), daa)) -> new_esEs4(vyw32, vyw34, chh, daa) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Double) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(ty_Ratio, ddc)) -> new_esEs8(vyw402, vyw3002, ddc) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(app(ty_@2, bfh), bga)) -> new_lt15(vyw4311, vyw4511, bfh, bga) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_@0) -> new_compare12(vyw4300, vyw4500) 25.79/11.07 new_esEs26(vyw430, vyw450, app(app(ty_@2, chc), chd)) -> new_esEs4(vyw430, vyw450, chc, chd) 25.79/11.07 new_compare19(vyw430, vyw450, False, bbd) -> GT 25.79/11.07 new_compare16(vyw430, vyw450) -> new_compare26(vyw430, vyw450, new_esEs13(vyw430, vyw450)) 25.79/11.07 new_esEs30(vyw31, vyw32, vyw33, vyw34, True, chf, chg) -> new_esEs13(new_compare211(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, chg), chf, chg), LT) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(ty_Either, cc), cd), bh) -> new_ltEs4(vyw4310, vyw4510, cc, cd) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(ty_[], bha)) -> new_lt14(vyw4310, vyw4510, bha) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(app(ty_Either, ccc), ccd)) -> new_esEs5(vyw4310, vyw4510, ccc, ccd) 25.79/11.07 new_ltEs14(Just(vyw4310), Nothing, bcg) -> False 25.79/11.07 new_esEs4(@2(vyw400, vyw401), @2(vyw3000, vyw3001), eg, eh) -> new_asAs(new_esEs16(vyw400, vyw3000, eg), new_esEs15(vyw401, vyw3001, eh)) 25.79/11.07 new_ltEs14(Nothing, Nothing, bcg) -> True 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Float) -> new_ltEs9(vyw431, vyw451) 25.79/11.07 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 25.79/11.07 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 25.79/11.07 new_compare10(vyw86, vyw87, vyw88, vyw89, True, vyw91, gd, ge) -> new_compare11(vyw86, vyw87, vyw88, vyw89, True, gd, ge) 25.79/11.07 new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs31(vyw40, vyw300, app(app(ty_Either, fg), fh)) -> new_esEs5(vyw40, vyw300, fg, fh) 25.79/11.07 new_esEs13(LT, GT) -> False 25.79/11.07 new_esEs13(GT, LT) -> False 25.79/11.07 new_compare211(vyw43, vyw45, True, cha, chb) -> EQ 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_compare27(vyw430, vyw450, False) -> new_compare112(vyw430, vyw450, new_ltEs17(vyw430, vyw450)) 25.79/11.07 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.79/11.07 new_ltEs17(True, False) -> False 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Int) -> new_esEs11(vyw4310, vyw4510) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Float) -> new_lt11(vyw430, vyw450) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Char) -> new_esEs18(vyw402, vyw3002) 25.79/11.07 new_esEs16(vyw400, vyw3000, app(ty_Maybe, baf)) -> new_esEs6(vyw400, vyw3000, baf) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs26(vyw430, vyw450, app(app(ty_Either, bbb), bbc)) -> new_esEs5(vyw430, vyw450, bbb, bbc) 25.79/11.07 new_ltEs17(False, True) -> True 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Ratio, dca)) -> new_esEs8(vyw400, vyw3000, dca) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Float) -> new_ltEs9(vyw4311, vyw4511) 25.79/11.07 new_esEs20(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs11(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 25.79/11.07 new_lt20(vyw4310, vyw4510, app(app(ty_@2, cca), ccb)) -> new_lt15(vyw4310, vyw4510, cca, ccb) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(app(ty_Either, cdf), cdg)) -> new_compare30(vyw4300, vyw4500, cdf, cdg) 25.79/11.07 new_esEs31(vyw40, vyw300, app(ty_[], fd)) -> new_esEs21(vyw40, vyw300, fd) 25.79/11.07 new_ltEs7(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), cad, cae) -> new_pePe(new_lt20(vyw4310, vyw4510, cad), new_asAs(new_esEs25(vyw4310, vyw4510, cad), new_ltEs19(vyw4311, vyw4511, cae))) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(ty_[], bfg)) -> new_esEs21(vyw4311, vyw4511, bfg) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(ty_Ratio, ccf)) -> new_esEs8(vyw4310, vyw4510, ccf) 25.79/11.07 new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs7(vyw400, vyw3000, dfb, dfc, dfd) 25.79/11.07 new_esEs31(vyw40, vyw300, app(app(ty_@2, eg), eh)) -> new_esEs4(vyw40, vyw300, eg, eh) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs20(vyw4311, vyw4511) 25.79/11.07 new_not(False) -> True 25.79/11.07 new_ltEs6(vyw431, vyw451) -> new_fsEs(new_compare17(vyw431, vyw451)) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs4(vyw401, vyw3001, gf, gg) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Integer) -> new_compare6(vyw4300, vyw4500) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_lt21(vyw430, vyw450, app(app(ty_Either, bbb), bbc)) -> new_lt17(vyw430, vyw450, bbb, bbc) 25.79/11.07 new_compare0(:(vyw4300, vyw4301), [], cdb) -> GT 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs13(vyw32, vyw34) 25.79/11.07 new_esEs5(Left(vyw400), Right(vyw3000), fg, fh) -> False 25.79/11.07 new_esEs5(Right(vyw400), Left(vyw3000), fg, fh) -> False 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(ty_Ratio, cgf)) -> new_esEs8(vyw400, vyw3000, cgf) 25.79/11.07 new_lt15(vyw430, vyw450, chc, chd) -> new_esEs13(new_compare29(vyw430, vyw450, chc, chd), LT) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Double) -> new_compare13(vyw4300, vyw4500) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Left(vyw4310), Right(vyw4510), dc, bh) -> True 25.79/11.07 new_esEs16(vyw400, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs7(vyw400, vyw3000, bab, bac, bad) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_@0) -> new_esEs17(vyw4310, vyw4510) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(ty_[], bee)) -> new_ltEs5(vyw4312, vyw4512, bee) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Integer) -> new_lt18(vyw4310, vyw4510) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(vyw402, vyw3002, dcf, dcg, dch) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_[], dbg)) -> new_esEs21(vyw400, vyw3000, dbg) 25.79/11.07 new_primPlusNat0(Succ(vyw770), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw770, vyw300000))) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_@0, fh) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Bool, fh) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Bool) -> new_esEs19(vyw4310, vyw4510) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Int) -> new_esEs11(vyw402, vyw3002) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(ty_Ratio, bge)) -> new_esEs8(vyw4311, vyw4511, bge) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Char) -> new_ltEs6(vyw431, vyw451) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Bool, bh) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.07 new_ltEs11(LT, EQ) -> True 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.07 new_esEs29(vyw400, vyw3000, app(ty_Maybe, dff)) -> new_esEs6(vyw400, vyw3000, dff) 25.79/11.07 new_compare18(vyw430, vyw450, bbd) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, bbd), bbd) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(ty_Maybe, cdh)) -> new_compare18(vyw4300, vyw4500, cdh) 25.79/11.07 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.79/11.07 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_@0) -> new_esEs17(vyw402, vyw3002) 25.79/11.07 new_compare13(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.07 new_primPlusNat1(Zero, Zero) -> Zero 25.79/11.07 new_lt20(vyw4310, vyw4510, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt19(vyw4310, vyw4510, ccg, cch, cda) 25.79/11.07 new_esEs9(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.07 new_lt16(vyw430, vyw450) -> new_esEs13(new_compare9(vyw430, vyw450), LT) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Double) -> new_esEs20(vyw4310, vyw4510) 25.79/11.07 new_compare7(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.07 new_ltEs9(vyw431, vyw451) -> new_fsEs(new_compare7(vyw431, vyw451)) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Double) -> new_lt6(vyw430, vyw450) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(ty_[], cgd)) -> new_esEs21(vyw400, vyw3000, cgd) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Ordering) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(app(ty_@2, dcd), dce)) -> new_esEs4(vyw402, vyw3002, dcd, dce) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Bool) -> new_esEs19(vyw430, vyw450) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(app(ty_Either, cba), cbb)) -> new_ltEs4(vyw4311, vyw4511, cba, cbb) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(ty_Maybe, ded)) -> new_esEs6(vyw401, vyw3001, ded) 25.79/11.07 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.79/11.07 new_esEs26(vyw430, vyw450, ty_@0) -> new_esEs17(vyw430, vyw450) 25.79/11.07 new_lt17(vyw430, vyw450, bbb, bbc) -> new_esEs13(new_compare30(vyw430, vyw450, bbb, bbc), LT) 25.79/11.07 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(vyw401, vyw3001, ddf, ddg) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(ty_@2, ca), cb), bh) -> new_ltEs7(vyw4310, vyw4510, ca, cb) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(ty_Maybe, bgd)) -> new_lt8(vyw4311, vyw4511, bgd) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Ordering) -> new_ltEs11(vyw4311, vyw4511) 25.79/11.07 new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(ty_Ratio, cbd)) -> new_ltEs15(vyw4311, vyw4511, cbd) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_@0) -> new_esEs17(vyw4310, vyw4510) 25.79/11.07 new_ltEs11(LT, GT) -> True 25.79/11.07 new_compare7(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(ty_Maybe, ddb)) -> new_esEs6(vyw402, vyw3002, ddb) 25.79/11.07 new_ltEs12(vyw431, vyw451) -> new_fsEs(new_compare12(vyw431, vyw451)) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_Ratio, cf), bh) -> new_ltEs15(vyw4310, vyw4510, cf) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) 25.79/11.07 new_compare15(vyw430, vyw450, False, bbb, bbc) -> GT 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Char, fh) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Bool) -> new_lt5(vyw4310, vyw4510) 25.79/11.07 new_ltEs15(vyw431, vyw451, cac) -> new_fsEs(new_compare5(vyw431, vyw451, cac)) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Int) -> new_ltEs8(vyw431, vyw451) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(ty_Maybe, ea)) -> new_ltEs14(vyw4310, vyw4510, ea) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Char) -> new_esEs18(vyw4310, vyw4510) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(app(app(ty_@3, ceb), cec), ced)) -> new_compare8(vyw4300, vyw4500, ceb, cec, ced) 25.79/11.07 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.79/11.07 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.79/11.07 new_esEs29(vyw400, vyw3000, app(app(ty_@2, deh), dfa)) -> new_esEs4(vyw400, vyw3000, deh, dfa) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(ty_Ratio, bfc)) -> new_ltEs15(vyw4312, vyw4512, bfc) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Ordering) -> new_lt7(vyw430, vyw450) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(ty_Ratio, cac)) -> new_ltEs15(vyw431, vyw451, cac) 25.79/11.07 new_ltEs5(vyw431, vyw451, che) -> new_fsEs(new_compare0(vyw431, vyw451, che)) 25.79/11.07 new_compare17(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) 25.79/11.07 new_primEqNat0(Zero, Zero) -> True 25.79/11.07 new_esEs28(vyw401, vyw3001, app(app(ty_Either, def), deg)) -> new_esEs5(vyw401, vyw3001, def, deg) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Char) -> new_compare17(vyw4300, vyw4500) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Char) -> new_lt9(vyw4311, vyw4511) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(ty_[], che)) -> new_ltEs5(vyw431, vyw451, che) 25.79/11.07 new_lt21(vyw430, vyw450, app(app(app(ty_@3, ga), gb), gc)) -> new_lt19(vyw430, vyw450, ga, gb, gc) 25.79/11.07 new_compare5(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare9(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_@0, bh) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Char) -> new_esEs18(vyw4310, vyw4510) 25.79/11.07 new_esEs13(EQ, EQ) -> True 25.79/11.07 new_ltEs17(True, True) -> True 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Double) -> new_esEs20(vyw4310, vyw4510) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Float) -> new_esEs14(vyw430, vyw450) 25.79/11.07 new_asAs(False, vyw60) -> False 25.79/11.07 new_esEs13(LT, EQ) -> False 25.79/11.07 new_esEs13(EQ, LT) -> False 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(app(ty_@2, de), df)) -> new_ltEs7(vyw4310, vyw4510, de, df) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(ty_Ratio, bhg)) -> new_esEs8(vyw4310, vyw4510, bhg) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(ty_[], bcb)) -> new_esEs21(vyw400, vyw3000, bcb) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Int) -> new_esEs11(vyw430, vyw450) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Int) -> new_ltEs8(vyw4311, vyw4511) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Int) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs12(vyw32, vyw34) 25.79/11.07 new_ltEs4(Right(vyw4310), Left(vyw4510), dc, bh) -> False 25.79/11.07 new_lt21(vyw430, vyw450, ty_Integer) -> new_lt18(vyw430, vyw450) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(ty_Ratio, bhg)) -> new_lt4(vyw4310, vyw4510, bhg) 25.79/11.07 new_compare10(vyw86, vyw87, vyw88, vyw89, False, vyw91, gd, ge) -> new_compare11(vyw86, vyw87, vyw88, vyw89, vyw91, gd, ge) 25.79/11.07 new_compare27(vyw430, vyw450, True) -> EQ 25.79/11.07 new_esEs16(vyw400, vyw3000, app(app(ty_Either, bah), bba)) -> new_esEs5(vyw400, vyw3000, bah, bba) 25.79/11.07 new_esEs11(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 25.79/11.07 new_esEs19(True, True) -> True 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Bool) -> new_esEs19(vyw4310, vyw4510) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fh) -> new_esEs7(vyw400, vyw3000, ceg, ceh, cfa) 25.79/11.07 new_ltEs11(EQ, LT) -> False 25.79/11.07 25.79/11.07 The set Q consists of the following terms: 25.79/11.07 25.79/11.07 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.79/11.07 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.79/11.07 new_esEs30(x0, x1, x2, x3, True, x4, x5) 25.79/11.07 new_esEs27(x0, x1, ty_Float) 25.79/11.07 new_esEs20(Double(x0, x1), Double(x2, x3)) 25.79/11.07 new_ltEs20(x0, x1, ty_Double) 25.79/11.07 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_Ordering) 25.79/11.07 new_lt13(x0, x1, ty_Int) 25.79/11.07 new_compare11(x0, x1, x2, x3, True, x4, x5) 25.79/11.07 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.79/11.07 new_esEs21(:(x0, x1), [], x2) 25.79/11.07 new_esEs6(Nothing, Nothing, x0) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_Double) 25.79/11.07 new_esEs32(x0, x1, ty_Char) 25.79/11.07 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.79/11.07 new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_ltEs19(x0, x1, app(ty_[], x2)) 25.79/11.07 new_lt13(x0, x1, ty_Ordering) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_Char) 25.79/11.07 new_compare18(x0, x1, x2) 25.79/11.07 new_lt13(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_primPlusNat1(Zero, Zero) 25.79/11.07 new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs29(x0, x1, ty_Integer) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 25.79/11.07 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_ltEs20(x0, x1, ty_Ordering) 25.79/11.07 new_esEs19(False, False) 25.79/11.07 new_esEs16(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_Int) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 25.79/11.07 new_esEs23(x0, x1, ty_Integer) 25.79/11.07 new_ltEs14(Just(x0), Nothing, x1) 25.79/11.07 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_sr0(Integer(x0), Integer(x1)) 25.79/11.07 new_primEqInt(Pos(Zero), Pos(Zero)) 25.79/11.07 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs24(x0, x1, ty_Bool) 25.79/11.07 new_lt12(x0, x1, ty_Char) 25.79/11.07 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs23(x0, x1, ty_Float) 25.79/11.07 new_esEs13(LT, LT) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs22(x0, x1, ty_Double) 25.79/11.07 new_lt5(x0, x1) 25.79/11.07 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_Int) 25.79/11.07 new_primEqInt(Neg(Zero), Neg(Zero)) 25.79/11.07 new_esEs29(x0, x1, ty_@0) 25.79/11.07 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_compare19(x0, x1, True, x2) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 25.79/11.07 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_lt7(x0, x1) 25.79/11.07 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs16(x0, x1, app(ty_[], x2)) 25.79/11.07 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.79/11.07 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.79/11.07 new_esEs23(x0, x1, ty_Bool) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.79/11.07 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.79/11.07 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_esEs32(x0, x1, ty_@0) 25.79/11.07 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.79/11.07 new_ltEs6(x0, x1) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 25.79/11.07 new_esEs32(x0, x1, ty_Double) 25.79/11.07 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_fsEs(x0) 25.79/11.07 new_primCompAux1(x0, x1, x2, x3) 25.79/11.07 new_lt11(x0, x1) 25.79/11.07 new_esEs24(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.79/11.07 new_esEs12(Integer(x0), Integer(x1)) 25.79/11.07 new_esEs21(:(x0, x1), :(x2, x3), x4) 25.79/11.07 new_ltEs8(x0, x1) 25.79/11.07 new_esEs23(x0, x1, ty_@0) 25.79/11.07 new_esEs26(x0, x1, ty_Double) 25.79/11.07 new_esEs28(x0, x1, ty_Bool) 25.79/11.07 new_ltEs17(True, True) 25.79/11.07 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_compare30(x0, x1, x2, x3) 25.79/11.07 new_lt13(x0, x1, ty_@0) 25.79/11.07 new_esEs28(x0, x1, ty_Float) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 25.79/11.07 new_esEs29(x0, x1, app(ty_[], x2)) 25.79/11.07 new_lt12(x0, x1, ty_Int) 25.79/11.07 new_ltEs18(x0, x1, app(ty_[], x2)) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 25.79/11.07 new_esEs15(x0, x1, ty_Double) 25.79/11.07 new_esEs32(x0, x1, ty_Int) 25.79/11.07 new_lt13(x0, x1, ty_Double) 25.79/11.07 new_primEqInt(Pos(Zero), Neg(Zero)) 25.79/11.07 new_primEqInt(Neg(Zero), Pos(Zero)) 25.79/11.07 new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 25.79/11.07 new_lt13(x0, x1, ty_Char) 25.79/11.07 new_compare28(x0, x1, ty_Ordering) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 25.79/11.07 new_lt13(x0, x1, ty_Bool) 25.79/11.07 new_primPlusNat0(Succ(x0), x1) 25.79/11.07 new_lt12(x0, x1, ty_@0) 25.79/11.07 new_esEs28(x0, x1, ty_@0) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 25.79/11.07 new_esEs6(Just(x0), Nothing, x1) 25.79/11.07 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.79/11.07 new_compare28(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_esEs29(x0, x1, ty_Bool) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 25.79/11.07 new_esEs24(x0, x1, ty_Integer) 25.79/11.07 new_pePe(True, x0) 25.79/11.07 new_ltEs20(x0, x1, app(ty_[], x2)) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 25.79/11.07 new_esEs31(x0, x1, ty_Integer) 25.79/11.07 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.79/11.07 new_esEs14(Float(x0, x1), Float(x2, x3)) 25.79/11.07 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.79/11.07 new_lt21(x0, x1, ty_Double) 25.79/11.07 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare11(x0, x1, x2, x3, False, x4, x5) 25.79/11.07 new_ltEs5(x0, x1, x2) 25.79/11.07 new_compare210(x0, x1, False, x2) 25.79/11.07 new_esEs22(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_compare28(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs31(x0, x1, ty_@0) 25.79/11.07 new_ltEs11(LT, EQ) 25.79/11.07 new_ltEs11(EQ, LT) 25.79/11.07 new_esEs27(x0, x1, ty_Bool) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_Integer) 25.79/11.07 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs9(x0, x1, ty_Int) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.79/11.07 new_esEs26(x0, x1, ty_Int) 25.79/11.07 new_compare6(Integer(x0), Integer(x1)) 25.79/11.07 new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_lt21(x0, x1, ty_Ordering) 25.79/11.07 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_primCompAux0(x0, EQ) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_Bool) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 25.79/11.07 new_ltEs11(GT, GT) 25.79/11.07 new_compare112(x0, x1, True) 25.79/11.07 new_ltEs18(x0, x1, ty_Int) 25.79/11.07 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.79/11.07 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.79/11.07 new_lt8(x0, x1, x2) 25.79/11.07 new_lt14(x0, x1, x2) 25.79/11.07 new_compare28(x0, x1, ty_Int) 25.79/11.07 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 25.79/11.07 new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.79/11.07 new_esEs15(x0, x1, ty_Int) 25.79/11.07 new_ltEs20(x0, x1, ty_Bool) 25.79/11.07 new_esEs17(@0, @0) 25.79/11.07 new_esEs24(x0, x1, ty_Ordering) 25.79/11.07 new_esEs26(x0, x1, ty_Char) 25.79/11.07 new_esEs16(x0, x1, ty_Double) 25.79/11.07 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_ltEs19(x0, x1, ty_Float) 25.79/11.07 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_compare28(x0, x1, ty_Char) 25.79/11.07 new_esEs25(x0, x1, ty_Double) 25.79/11.07 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.79/11.07 new_lt18(x0, x1) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.79/11.07 new_compare17(Char(x0), Char(x1)) 25.79/11.07 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_ltEs18(x0, x1, ty_Ordering) 25.79/11.07 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.79/11.07 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs15(x0, x1, ty_Char) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 25.79/11.07 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_compare0(:(x0, x1), [], x2) 25.79/11.07 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.79/11.07 new_esEs29(x0, x1, ty_Double) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 25.79/11.07 new_lt15(x0, x1, x2, x3) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.79/11.07 new_esEs22(x0, x1, ty_Int) 25.79/11.07 new_ltEs20(x0, x1, ty_Integer) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare14(x0, x1) 25.79/11.07 new_esEs19(False, True) 25.79/11.07 new_esEs19(True, False) 25.79/11.07 new_esEs15(x0, x1, ty_Float) 25.79/11.07 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_pePe(False, x0) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 25.79/11.07 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) 25.79/11.07 new_esEs22(x0, x1, ty_Char) 25.79/11.07 new_esEs8(:%(x0, x1), :%(x2, x3), x4) 25.79/11.07 new_primEqNat0(Zero, Succ(x0)) 25.79/11.07 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 25.79/11.07 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.79/11.07 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.79/11.07 new_ltEs18(x0, x1, ty_Char) 25.79/11.07 new_lt20(x0, x1, ty_Double) 25.79/11.07 new_esEs28(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_esEs29(x0, x1, ty_Ordering) 25.79/11.07 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.79/11.07 new_compare111(x0, x1, True, x2, x3, x4) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.79/11.07 new_esEs24(x0, x1, ty_Double) 25.79/11.07 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 25.79/11.07 new_esEs22(x0, x1, ty_Ordering) 25.79/11.07 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.79/11.07 new_lt20(x0, x1, app(ty_[], x2)) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.79/11.07 new_lt12(x0, x1, ty_Ordering) 25.79/11.07 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 25.79/11.07 new_esEs32(x0, x1, ty_Bool) 25.79/11.07 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_lt12(x0, x1, ty_Bool) 25.79/11.07 new_esEs32(x0, x1, ty_Ordering) 25.79/11.07 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.79/11.07 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.79/11.07 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_Char) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 25.79/11.07 new_ltEs12(x0, x1) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.79/11.07 new_ltEs17(True, False) 25.79/11.07 new_ltEs17(False, True) 25.79/11.07 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.79/11.07 new_asAs(False, x0) 25.79/11.07 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs24(x0, x1, ty_@0) 25.79/11.07 new_esEs22(x0, x1, ty_Bool) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_Integer) 25.79/11.07 new_lt6(x0, x1) 25.79/11.07 new_compare26(x0, x1, False) 25.79/11.07 new_ltEs20(x0, x1, ty_Int) 25.79/11.07 new_lt12(x0, x1, ty_Integer) 25.79/11.07 new_esEs25(x0, x1, app(ty_[], x2)) 25.79/11.07 new_primPlusNat1(Succ(x0), Zero) 25.79/11.07 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_ltEs11(EQ, EQ) 25.79/11.07 new_esEs26(x0, x1, ty_Ordering) 25.79/11.07 new_esEs27(x0, x1, ty_Integer) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.79/11.07 new_esEs22(x0, x1, ty_Integer) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_Bool) 25.79/11.07 new_primPlusNat0(Zero, x0) 25.79/11.07 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_primCmpNat0(Zero, Succ(x0)) 25.79/11.07 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 25.79/11.07 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs18(Char(x0), Char(x1)) 25.79/11.07 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_ltEs18(x0, x1, ty_Integer) 25.79/11.07 new_compare28(x0, x1, ty_Float) 25.79/11.07 new_ltEs20(x0, x1, ty_Char) 25.79/11.07 new_ltEs15(x0, x1, x2) 25.79/11.07 new_esEs13(GT, GT) 25.79/11.07 new_compare15(x0, x1, True, x2, x3) 25.79/11.07 new_esEs13(LT, EQ) 25.79/11.07 new_esEs13(EQ, LT) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 25.79/11.07 new_compare0([], :(x0, x1), x2) 25.79/11.07 new_compare28(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs32(x0, x1, ty_Integer) 25.79/11.07 new_primMulNat0(Succ(x0), Zero) 25.79/11.07 new_lt20(x0, x1, ty_@0) 25.79/11.07 new_primPlusNat1(Zero, Succ(x0)) 25.79/11.07 new_esEs26(x0, x1, ty_Integer) 25.79/11.07 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 25.79/11.07 new_esEs13(EQ, EQ) 25.79/11.07 new_esEs27(x0, x1, app(ty_[], x2)) 25.79/11.07 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs27(x0, x1, ty_Ordering) 25.79/11.07 new_compare211(@2(x0, x1), @2(x2, x3), False, x4, x5) 25.79/11.07 new_esEs31(x0, x1, ty_Double) 25.79/11.07 new_ltEs20(x0, x1, ty_Float) 25.79/11.07 new_compare28(x0, x1, ty_Integer) 25.79/11.07 new_lt21(x0, x1, ty_Bool) 25.79/11.07 new_esEs27(x0, x1, ty_Double) 25.79/11.07 new_esEs16(x0, x1, ty_@0) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.79/11.07 new_esEs15(x0, x1, ty_Integer) 25.79/11.07 new_lt21(x0, x1, app(ty_[], x2)) 25.79/11.07 new_lt21(x0, x1, ty_@0) 25.79/11.07 new_lt20(x0, x1, ty_Bool) 25.79/11.07 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 25.79/11.07 new_compare28(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_primEqNat0(Succ(x0), Succ(x1)) 25.79/11.07 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) 25.79/11.07 new_primMulNat0(Zero, Zero) 25.79/11.07 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.79/11.07 new_ltEs19(x0, x1, ty_@0) 25.79/11.07 new_ltEs19(x0, x1, ty_Bool) 25.79/11.07 new_primCompAux0(x0, LT) 25.79/11.07 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_Float) 25.79/11.07 new_esEs26(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs27(x0, x1, ty_Int) 25.79/11.07 new_lt4(x0, x1, x2) 25.79/11.07 new_ltEs11(LT, LT) 25.79/11.07 new_esEs25(x0, x1, ty_@0) 25.79/11.07 new_esEs5(Left(x0), Right(x1), x2, x3) 25.79/11.07 new_esEs5(Right(x0), Left(x1), x2, x3) 25.79/11.07 new_lt12(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs25(x0, x1, ty_Integer) 25.79/11.07 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_lt13(x0, x1, ty_Float) 25.79/11.07 new_compare27(x0, x1, False) 25.79/11.07 new_ltEs18(x0, x1, ty_Bool) 25.79/11.07 new_lt21(x0, x1, ty_Integer) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.79/11.07 new_compare110(x0, x1, False) 25.79/11.07 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 25.79/11.07 new_primMulNat0(Succ(x0), Succ(x1)) 25.79/11.07 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare210(x0, x1, True, x2) 25.79/11.07 new_esEs27(x0, x1, ty_Char) 25.79/11.07 new_esEs9(x0, x1, ty_Integer) 25.79/11.07 new_esEs16(x0, x1, ty_Bool) 25.79/11.07 new_compare28(x0, x1, ty_Bool) 25.79/11.07 new_ltEs9(x0, x1) 25.79/11.07 new_compare25(x0, x1, True, x2, x3) 25.79/11.07 new_esEs11(x0, x1) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 25.79/11.07 new_esEs15(x0, x1, ty_@0) 25.79/11.07 new_ltEs13(x0, x1) 25.79/11.07 new_compare8(x0, x1, x2, x3, x4) 25.79/11.07 new_lt20(x0, x1, ty_Char) 25.79/11.07 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs26(x0, x1, ty_Bool) 25.79/11.07 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs32(x0, x1, ty_Float) 25.79/11.07 new_esEs16(x0, x1, ty_Integer) 25.79/11.07 new_not(True) 25.79/11.07 new_compare211(x0, x1, True, x2, x3) 25.79/11.07 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_primEqNat0(Succ(x0), Zero) 25.79/11.07 new_primMulNat0(Zero, Succ(x0)) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.79/11.07 new_lt10(x0, x1) 25.79/11.07 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.79/11.07 new_compare9(x0, x1) 25.79/11.07 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs6(Nothing, Just(x0), x1) 25.79/11.07 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_esEs21([], :(x0, x1), x2) 25.79/11.07 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_ltEs19(x0, x1, ty_Int) 25.79/11.07 new_lt20(x0, x1, ty_Int) 25.79/11.07 new_esEs22(x0, x1, ty_@0) 25.79/11.07 new_lt17(x0, x1, x2, x3) 25.79/11.07 new_esEs22(x0, x1, ty_Float) 25.79/11.07 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare24(x0, x1, False, x2, x3, x4) 25.79/11.07 new_ltEs18(x0, x1, ty_@0) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_Float) 25.79/11.07 new_esEs23(x0, x1, ty_Int) 25.79/11.07 new_compare16(x0, x1) 25.79/11.07 new_compare27(x0, x1, True) 25.79/11.07 new_esEs16(x0, x1, ty_Ordering) 25.79/11.07 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_ltEs18(x0, x1, ty_Float) 25.79/11.07 new_primCmpNat0(Succ(x0), Succ(x1)) 25.79/11.07 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_lt16(x0, x1) 25.79/11.07 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.79/11.07 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs15(x0, x1, ty_Bool) 25.79/11.07 new_esEs26(x0, x1, ty_Float) 25.79/11.07 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_compare111(x0, x1, False, x2, x3, x4) 25.79/11.07 new_ltEs4(Left(x0), Right(x1), x2, x3) 25.79/11.07 new_ltEs4(Right(x0), Left(x1), x2, x3) 25.79/11.07 new_lt21(x0, x1, ty_Int) 25.79/11.07 new_ltEs14(Nothing, Nothing, x0) 25.79/11.07 new_compare25(x0, x1, False, x2, x3) 25.79/11.07 new_esEs28(x0, x1, ty_Double) 25.79/11.07 new_esEs28(x0, x1, ty_Char) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 25.79/11.07 new_sr(x0, x1) 25.79/11.07 new_esEs10(x0, x1, ty_Integer) 25.79/11.07 new_esEs28(x0, x1, ty_Int) 25.79/11.07 new_ltEs19(x0, x1, ty_Double) 25.79/11.07 new_esEs15(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs23(x0, x1, ty_Double) 25.79/11.07 new_esEs26(x0, x1, ty_@0) 25.79/11.07 new_compare28(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs31(x0, x1, ty_Ordering) 25.79/11.07 new_esEs23(x0, x1, ty_Char) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 25.79/11.07 new_esEs19(True, True) 25.79/11.07 new_primCmpNat0(Succ(x0), Zero) 25.79/11.07 new_compare12(@0, @0) 25.79/11.07 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.79/11.07 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_primMulInt(Pos(x0), Pos(x1)) 25.79/11.07 new_compare112(x0, x1, False) 25.79/11.07 new_lt13(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_lt12(x0, x1, ty_Float) 25.79/11.07 new_ltEs19(x0, x1, ty_Char) 25.79/11.07 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.79/11.07 new_lt21(x0, x1, ty_Char) 25.79/11.07 new_esEs31(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs30(x0, x1, x2, x3, False, x4, x5) 25.79/11.07 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.79/11.07 new_esEs29(x0, x1, ty_Int) 25.79/11.07 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 25.79/11.07 new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_esEs16(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs24(x0, x1, ty_Int) 25.79/11.07 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_lt21(x0, x1, ty_Float) 25.79/11.07 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs6(Just(x0), Just(x1), ty_@0) 25.79/11.07 new_lt20(x0, x1, ty_Float) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.79/11.07 new_esEs25(x0, x1, ty_Int) 25.79/11.07 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_ltEs20(x0, x1, ty_@0) 25.79/11.07 new_compare110(x0, x1, True) 25.79/11.07 new_esEs27(x0, x1, ty_@0) 25.79/11.07 new_esEs29(x0, x1, ty_Char) 25.79/11.07 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_lt20(x0, x1, ty_Ordering) 25.79/11.07 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_esEs13(LT, GT) 25.79/11.07 new_esEs13(GT, LT) 25.79/11.07 new_primMulInt(Neg(x0), Neg(x1)) 25.79/11.07 new_esEs29(x0, x1, ty_Float) 25.79/11.07 new_primMulInt(Pos(x0), Neg(x1)) 25.79/11.07 new_primMulInt(Neg(x0), Pos(x1)) 25.79/11.07 new_esEs24(x0, x1, ty_Char) 25.79/11.07 new_ltEs18(x0, x1, ty_Double) 25.79/11.07 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_compare26(x0, x1, True) 25.79/11.07 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_lt19(x0, x1, x2, x3, x4) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.79/11.07 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare15(x0, x1, False, x2, x3) 25.79/11.07 new_esEs10(x0, x1, ty_Int) 25.79/11.07 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.79/11.07 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.79/11.07 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.79/11.07 new_lt12(x0, x1, ty_Double) 25.79/11.07 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_compare29(x0, x1, x2, x3) 25.79/11.07 new_lt13(x0, x1, ty_Integer) 25.79/11.07 new_esEs15(x0, x1, ty_Ordering) 25.79/11.07 new_esEs25(x0, x1, ty_Float) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 25.79/11.07 new_esEs25(x0, x1, ty_Ordering) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_@0) 25.79/11.07 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.07 new_ltEs14(Nothing, Just(x0), x1) 25.79/11.07 new_esEs32(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs31(x0, x1, ty_Bool) 25.79/11.07 new_primEqNat0(Zero, Zero) 25.79/11.07 new_ltEs19(x0, x1, ty_Integer) 25.79/11.07 new_ltEs10(x0, x1) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 25.79/11.07 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 25.79/11.07 new_esEs23(x0, x1, ty_Ordering) 25.79/11.07 new_esEs31(x0, x1, ty_Char) 25.79/11.07 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.79/11.07 new_not(False) 25.79/11.07 new_esEs13(EQ, GT) 25.79/11.07 new_esEs13(GT, EQ) 25.79/11.07 new_esEs16(x0, x1, ty_Int) 25.79/11.07 new_lt9(x0, x1) 25.79/11.07 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.79/11.07 new_esEs28(x0, x1, ty_Ordering) 25.79/11.07 new_ltEs11(GT, LT) 25.79/11.07 new_ltEs11(LT, GT) 25.79/11.07 new_ltEs17(False, False) 25.79/11.07 new_lt20(x0, x1, ty_Integer) 25.79/11.07 new_primCompAux0(x0, GT) 25.79/11.07 new_lt13(x0, x1, app(ty_[], x2)) 25.79/11.07 new_asAs(True, x0) 25.79/11.07 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare0([], [], x0) 25.79/11.07 new_esEs31(x0, x1, ty_Int) 25.79/11.07 new_ltEs14(Just(x0), Just(x1), ty_Double) 25.79/11.07 new_esEs16(x0, x1, ty_Char) 25.79/11.07 new_compare28(x0, x1, ty_Double) 25.79/11.07 new_esEs28(x0, x1, ty_Integer) 25.79/11.07 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.07 new_compare24(x0, x1, True, x2, x3, x4) 25.79/11.07 new_esEs15(x0, x1, app(ty_Maybe, x2)) 25.79/11.07 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 25.79/11.07 new_primPlusNat1(Succ(x0), Succ(x1)) 25.79/11.07 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_ltEs19(x0, x1, ty_Ordering) 25.79/11.07 new_esEs25(x0, x1, ty_Char) 25.79/11.07 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.79/11.07 new_esEs21([], [], x0) 25.79/11.07 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.79/11.07 new_esEs24(x0, x1, ty_Float) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 25.79/11.07 new_ltEs11(GT, EQ) 25.79/11.07 new_ltEs11(EQ, GT) 25.79/11.07 new_esEs25(x0, x1, ty_Bool) 25.79/11.07 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 25.79/11.07 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.79/11.07 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.79/11.07 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.79/11.07 new_esEs16(x0, x1, ty_Float) 25.79/11.07 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.79/11.07 new_esEs31(x0, x1, ty_Float) 25.79/11.07 new_compare28(x0, x1, ty_@0) 25.79/11.07 new_esEs23(x0, x1, app(ty_[], x2)) 25.79/11.07 new_esEs15(x0, x1, app(ty_Ratio, x2)) 25.79/11.07 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 25.79/11.07 new_primCmpNat0(Zero, Zero) 25.79/11.07 new_compare0(:(x0, x1), :(x2, x3), x4) 25.79/11.07 new_compare19(x0, x1, False, x2) 25.79/11.07 25.79/11.07 We have to consider all minimal (P,Q,R)-chains. 25.79/11.07 ---------------------------------------- 25.79/11.07 25.79/11.07 (24) TransformationProof (EQUIVALENT) 25.79/11.07 By rewriting [LPAR04] the rule new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs13(new_compare211(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs4(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) at position [8,0,2] we obtained the following new rules [LPAR04]: 25.79/11.07 25.79/11.07 (new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs13(new_compare211(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs16(vyw21, vyw15, ba), new_esEs15(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb),new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs13(new_compare211(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs16(vyw21, vyw15, ba), new_esEs15(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb)) 25.79/11.07 25.79/11.07 25.79/11.07 ---------------------------------------- 25.79/11.07 25.79/11.07 (25) 25.79/11.07 Obligation: 25.79/11.07 Q DP problem: 25.79/11.07 The TRS P consists of the following rules: 25.79/11.07 25.79/11.07 new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw20, @2(vyw21, vyw22), h, ba, bb) 25.79/11.07 new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw19, @2(vyw21, vyw22), h, ba, bb) 25.79/11.07 new_lookupFM(Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw40, vyw41), bc, bd, be) -> new_lookupFM2(vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw40, vyw41, new_esEs30(vyw40, vyw41, vyw300, vyw301, new_esEs31(vyw40, vyw300, bd), bd, be), bc, bd, be) 25.79/11.07 new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs13(new_compare211(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs16(vyw21, vyw15, ba), new_esEs15(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) 25.79/11.07 25.79/11.07 The TRS R consists of the following rules: 25.79/11.07 25.79/11.07 new_lt21(vyw430, vyw450, app(app(ty_@2, chc), chd)) -> new_lt15(vyw430, vyw450, chc, chd) 25.79/11.07 new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT 25.79/11.07 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 25.79/11.07 new_pePe(True, vyw105) -> True 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(ty_Maybe, bgd)) -> new_esEs6(vyw4311, vyw4511, bgd) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Float) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.07 new_compare111(vyw430, vyw450, True, ga, gb, gc) -> LT 25.79/11.07 new_esEs19(False, True) -> False 25.79/11.07 new_esEs19(True, False) -> False 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Double, fh) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_esEs10(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.07 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 25.79/11.07 new_esEs27(vyw402, vyw3002, app(app(ty_Either, ddd), dde)) -> new_esEs5(vyw402, vyw3002, ddd, dde) 25.79/11.07 new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT 25.79/11.07 new_lt20(vyw4310, vyw4510, app(app(ty_Either, ccc), ccd)) -> new_lt17(vyw4310, vyw4510, ccc, ccd) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Int) -> new_esEs11(vyw4310, vyw4510) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs13(vyw4311, vyw4511) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs7(vyw401, vyw3001, gh, ha, hb) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(ty_[], caf)) -> new_ltEs5(vyw4311, vyw4511, caf) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Integer) -> new_esEs12(vyw4310, vyw4510) 25.79/11.07 new_esEs21(:(vyw400, vyw401), :(vyw3000, vyw3001), fd) -> new_asAs(new_esEs22(vyw400, vyw3000, fd), new_esEs21(vyw401, vyw3001, fd)) 25.79/11.07 new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) 25.79/11.07 new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), cdb) -> new_primCompAux1(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, cdb), cdb) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Integer) -> new_lt18(vyw4310, vyw4510) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_Ratio, bdf)) -> new_ltEs15(vyw4310, vyw4510, bdf) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(app(app(ty_@3, ec), ed), ee)) -> new_ltEs16(vyw4310, vyw4510, ec, ed, ee) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(ty_[], bha)) -> new_esEs21(vyw4310, vyw4510, bha) 25.79/11.07 new_ltEs11(GT, EQ) -> False 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Int, fh) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs19(vyw4311, vyw4511) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_Either, dcb), dcc)) -> new_esEs5(vyw400, vyw3000, dcb, dcc) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(ty_Ratio, cea)) -> new_compare5(vyw4300, vyw4500, cea) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_[], bch)) -> new_ltEs5(vyw4310, vyw4510, bch) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Ordering) -> new_esEs13(vyw402, vyw3002) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(ty_Ratio, bge)) -> new_lt4(vyw4311, vyw4511, bge) 25.79/11.07 new_primCompAux0(vyw109, GT) -> GT 25.79/11.07 new_lt9(vyw430, vyw450) -> new_esEs13(new_compare17(vyw430, vyw450), LT) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(app(ty_Either, bgb), bgc)) -> new_esEs5(vyw4311, vyw4511, bgb, bgc) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Double) -> new_lt6(vyw4311, vyw4511) 25.79/11.07 new_ltEs14(Nothing, Just(vyw4510), bcg) -> True 25.79/11.07 new_compare29(vyw430, vyw450, chc, chd) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, chc, chd), chc, chd) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs12(vyw40, vyw300) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Float) -> new_lt11(vyw4311, vyw4511) 25.79/11.07 new_compare26(vyw430, vyw450, True) -> EQ 25.79/11.07 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 25.79/11.07 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 25.79/11.07 new_esEs31(vyw40, vyw300, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs7(vyw40, vyw300, fa, fb, fc) 25.79/11.07 new_esEs29(vyw400, vyw3000, app(ty_[], dfe)) -> new_esEs21(vyw400, vyw3000, dfe) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(app(ty_@2, bhb), bhc)) -> new_esEs4(vyw4310, vyw4510, bhb, bhc) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_@0) -> new_ltEs12(vyw4311, vyw4511) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Maybe, cfc), fh) -> new_esEs6(vyw400, vyw3000, cfc) 25.79/11.07 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(app(ty_@2, cfg), cfh)) -> new_esEs4(vyw400, vyw3000, cfg, cfh) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(ty_Ratio, dee)) -> new_esEs8(vyw401, vyw3001, dee) 25.79/11.07 new_primCompAux0(vyw109, LT) -> LT 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Char) -> new_lt9(vyw4310, vyw4510) 25.79/11.07 new_not(True) -> False 25.79/11.07 new_lt21(vyw430, vyw450, app(ty_Maybe, bbd)) -> new_lt8(vyw430, vyw450, bbd) 25.79/11.07 new_primCmpNat0(Zero, Zero) -> EQ 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs18(vyw4311, vyw4511) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Bool) -> new_lt5(vyw430, vyw450) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_@0) -> new_lt10(vyw4311, vyw4511) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs7(vyw4310, vyw4510, ccg, cch, cda) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Float, fh) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Char) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.07 new_lt10(vyw430, vyw450) -> new_esEs13(new_compare12(vyw430, vyw450), LT) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Bool) -> new_esEs19(vyw402, vyw3002) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Double, bh) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.07 new_primEqNat0(Succ(vyw4000), Zero) -> False 25.79/11.07 new_primEqNat0(Zero, Succ(vyw30000)) -> False 25.79/11.07 new_compare26(vyw430, vyw450, False) -> new_compare110(vyw430, vyw450, new_ltEs11(vyw430, vyw450)) 25.79/11.07 new_esEs18(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_esEs12(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 25.79/11.07 new_compare112(vyw430, vyw450, False) -> GT 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Double) -> new_lt6(vyw4310, vyw4510) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Char) -> new_ltEs6(vyw4311, vyw4511) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Integer, fh) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_lt19(vyw4311, vyw4511, bgf, bgg, bgh) 25.79/11.07 new_lt20(vyw4310, vyw4510, app(ty_[], cbh)) -> new_lt14(vyw4310, vyw4510, cbh) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) 25.79/11.07 new_compare110(vyw430, vyw450, True) -> LT 25.79/11.07 new_esEs13(LT, LT) -> True 25.79/11.07 new_compare8(vyw430, vyw450, ga, gb, gc) -> new_compare24(vyw430, vyw450, new_esEs7(vyw430, vyw450, ga, gb, gc), ga, gb, gc) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs11(vyw4311, vyw4511) 25.79/11.07 new_compare15(vyw430, vyw450, True, bbb, bbc) -> LT 25.79/11.07 new_compare6(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Char) -> new_lt9(vyw4310, vyw4510) 25.79/11.07 new_esEs19(False, False) -> True 25.79/11.07 new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Integer) -> new_lt18(vyw4311, vyw4511) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(app(app(ty_@3, bhh), caa), cab)) -> new_lt19(vyw4310, vyw4510, bhh, caa, cab) 25.79/11.07 new_compare9(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Int) -> new_lt16(vyw4311, vyw4511) 25.79/11.07 new_ltEs11(GT, LT) -> False 25.79/11.07 new_lt20(vyw4310, vyw4510, app(ty_Maybe, cce)) -> new_lt8(vyw4310, vyw4510, cce) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Double) -> new_ltEs10(vyw431, vyw451) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(ty_[], cbh)) -> new_esEs21(vyw4310, vyw4510, cbh) 25.79/11.07 new_compare11(vyw86, vyw87, vyw88, vyw89, True, gd, ge) -> LT 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Int) -> new_compare9(vyw4300, vyw4500) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Ordering) -> new_esEs13(vyw401, vyw3001) 25.79/11.07 new_primPlusNat1(Succ(vyw7700), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw7700, vyw3000000))) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs17(vyw4311, vyw4511) 25.79/11.07 new_compare210(vyw430, vyw450, False, bbd) -> new_compare19(vyw430, vyw450, new_ltEs14(vyw430, vyw450, bbd), bbd) 25.79/11.07 new_ltEs11(LT, LT) -> True 25.79/11.07 new_primCmpNat0(Zero, Succ(vyw45000)) -> LT 25.79/11.07 new_esEs26(vyw430, vyw450, app(app(app(ty_@3, ga), gb), gc)) -> new_esEs7(vyw430, vyw450, ga, gb, gc) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Double) -> new_ltEs10(vyw4311, vyw4511) 25.79/11.07 new_ltEs10(vyw431, vyw451) -> new_fsEs(new_compare13(vyw431, vyw451)) 25.79/11.07 new_esEs32(vyw32, vyw34, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs7(vyw32, vyw34, dab, dac, dad) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_primCmpNat0(Succ(vyw43000), Zero) -> GT 25.79/11.07 new_compare13(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.07 new_compare13(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.07 new_pePe(False, vyw105) -> vyw105 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, cg), da), db), bh) -> new_ltEs16(vyw4310, vyw4510, cg, da, db) 25.79/11.07 new_esEs17(@0, @0) -> True 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Double) -> new_esEs20(vyw401, vyw3001) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Integer) -> new_esEs12(vyw430, vyw450) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Bool) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.07 new_compare25(vyw430, vyw450, True, bbb, bbc) -> EQ 25.79/11.07 new_compare7(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.07 new_compare7(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.07 new_compare210(vyw430, vyw450, True, bbd) -> EQ 25.79/11.07 new_lt11(vyw430, vyw450) -> new_esEs13(new_compare7(vyw430, vyw450), LT) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs31(vyw40, vyw300, app(ty_Ratio, bf)) -> new_esEs8(vyw40, vyw300, bf) 25.79/11.07 new_lt8(vyw430, vyw450, bbd) -> new_esEs13(new_compare18(vyw430, vyw450, bbd), LT) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs11(vyw40, vyw300) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(ty_[], hc)) -> new_esEs21(vyw401, vyw3001, hc) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(ty_Maybe, cbc)) -> new_ltEs14(vyw4311, vyw4511, cbc) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Ordering) -> new_esEs13(vyw430, vyw450) 25.79/11.07 new_esEs13(GT, GT) -> True 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Bool) -> new_ltEs17(vyw4312, vyw4512) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(ty_Maybe, bcc)) -> new_esEs6(vyw400, vyw3000, bcc) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_@2, cee), cef), fh) -> new_esEs4(vyw400, vyw3000, cee, cef) 25.79/11.07 new_esEs32(vyw32, vyw34, app(ty_Maybe, daf)) -> new_esEs6(vyw32, vyw34, daf) 25.79/11.07 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 25.79/11.07 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 25.79/11.07 new_compare19(vyw430, vyw450, True, bbd) -> LT 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(app(ty_@2, cca), ccb)) -> new_esEs4(vyw4310, vyw4510, cca, ccb) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bda), bdb)) -> new_ltEs7(vyw4310, vyw4510, bda, bdb) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_@0) -> new_ltEs12(vyw431, vyw451) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(app(ty_Either, bhd), bhe)) -> new_esEs5(vyw4310, vyw4510, bhd, bhe) 25.79/11.07 new_lt5(vyw430, vyw450) -> new_esEs13(new_compare14(vyw430, vyw450), LT) 25.79/11.07 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Integer) -> new_esEs12(vyw4310, vyw4510) 25.79/11.07 new_compare14(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs19(vyw430, vyw450)) 25.79/11.07 new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs16(vyw4312, vyw4512, bfd, bfe, bff) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_esEs10(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs21(:(vyw400, vyw401), [], fd) -> False 25.79/11.07 new_esEs21([], :(vyw3000, vyw3001), fd) -> False 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs13(EQ, GT) -> False 25.79/11.07 new_esEs13(GT, EQ) -> False 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Double) -> new_ltEs10(vyw4312, vyw4512) 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Double) -> new_esEs20(vyw401, vyw3001) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs32(vyw32, vyw34, app(app(ty_Either, dah), dba)) -> new_esEs5(vyw32, vyw34, dah, dba) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs7(vyw400, vyw3000, bbg, bbh, bca) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(ty_Maybe, bhf)) -> new_esEs6(vyw4310, vyw4510, bhf) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) 25.79/11.07 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 25.79/11.07 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 25.79/11.07 new_compare211(@2(vyw430, vyw431), @2(vyw450, vyw451), False, cha, chb) -> new_compare10(vyw430, vyw431, vyw450, vyw451, new_lt21(vyw430, vyw450, cha), new_asAs(new_esEs26(vyw430, vyw450, cha), new_ltEs20(vyw431, vyw451, chb)), cha, chb) 25.79/11.07 new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Ordering) -> new_esEs13(vyw4310, vyw4510) 25.79/11.07 new_compare24(vyw430, vyw450, False, ga, gb, gc) -> new_compare111(vyw430, vyw450, new_ltEs16(vyw430, vyw450, ga, gb, gc), ga, gb, gc) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Ordering, fh) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Integer) -> new_ltEs13(vyw4311, vyw4511) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(app(ty_Either, bhd), bhe)) -> new_lt17(vyw4310, vyw4510, bhd, bhe) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(ty_[], cdc)) -> new_compare0(vyw4300, vyw4500, cdc) 25.79/11.07 new_fsEs(vyw92) -> new_not(new_esEs13(vyw92, GT)) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs20(vyw40, vyw300) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) 25.79/11.07 new_lt21(vyw430, vyw450, app(ty_[], cdb)) -> new_lt14(vyw430, vyw450, cdb) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_Either, cfe), cff), fh) -> new_esEs5(vyw400, vyw3000, cfe, cff) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(ty_Maybe, bcg)) -> new_ltEs14(vyw431, vyw451, bcg) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Int) -> new_lt16(vyw430, vyw450) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(ty_Maybe, cge)) -> new_esEs6(vyw400, vyw3000, cge) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs7(vyw400, vyw3000, cga, cgb, cgc) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(ty_Maybe, bde)) -> new_ltEs14(vyw4310, vyw4510, bde) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(vyw400, vyw3000, dbd, dbe, dbf) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(ty_[], dda)) -> new_esEs21(vyw402, vyw3002, dda) 25.79/11.07 new_esEs29(vyw400, vyw3000, app(ty_Ratio, dfg)) -> new_esEs8(vyw400, vyw3000, dfg) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_@0) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.07 new_esEs24(vyw4310, vyw4510, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(vyw4310, vyw4510, bhh, caa, cab) 25.79/11.07 new_primPlusNat1(Succ(vyw7700), Zero) -> Succ(vyw7700) 25.79/11.07 new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs17(vyw32, vyw34) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Int) -> new_lt16(vyw4310, vyw4510) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs19(vyw32, vyw34) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs14(vyw40, vyw300) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(ty_[], dec)) -> new_esEs21(vyw401, vyw3001, dec) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(app(ty_@2, cad), cae)) -> new_ltEs7(vyw431, vyw451, cad, cae) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_@2, dbb), dbc)) -> new_esEs4(vyw400, vyw3000, dbb, dbc) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs7(vyw4311, vyw4511, bgf, bgg, bgh) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs16(vyw431, vyw451, beb, bec, bed) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_@0) -> new_ltEs12(vyw4312, vyw4512) 25.79/11.07 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Ratio, cfd), fh) -> new_esEs8(vyw400, vyw3000, cfd) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Bool) -> new_ltEs17(vyw431, vyw451) 25.79/11.07 new_compare11(vyw86, vyw87, vyw88, vyw89, False, gd, ge) -> GT 25.79/11.07 new_lt14(vyw430, vyw450, cdb) -> new_esEs13(new_compare0(vyw430, vyw450, cdb), LT) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs14(vyw32, vyw34) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Maybe, dbh)) -> new_esEs6(vyw400, vyw3000, dbh) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ce), bh) -> new_ltEs14(vyw4310, vyw4510, ce) 25.79/11.07 new_esEs6(Nothing, Just(vyw3000), ff) -> False 25.79/11.07 new_esEs6(Just(vyw400), Nothing, ff) -> False 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(app(ty_@2, cag), cah)) -> new_ltEs7(vyw4311, vyw4511, cag, cah) 25.79/11.07 new_lt21(vyw430, vyw450, ty_@0) -> new_lt10(vyw430, vyw450) 25.79/11.07 new_esEs6(Nothing, Nothing, ff) -> True 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs18(vyw40, vyw300) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(app(ty_Either, bce), bcf)) -> new_esEs5(vyw400, vyw3000, bce, bcf) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Bool) -> new_lt5(vyw4310, vyw4510) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(ty_Maybe, bfb)) -> new_ltEs14(vyw4312, vyw4512, bfb) 25.79/11.07 new_ltEs8(vyw431, vyw451) -> new_fsEs(new_compare9(vyw431, vyw451)) 25.79/11.07 new_lt18(vyw430, vyw450) -> new_esEs13(new_compare6(vyw430, vyw450), LT) 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Float) -> new_lt11(vyw4310, vyw4510) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(app(ty_@2, bfh), bga)) -> new_esEs4(vyw4311, vyw4511, bfh, bga) 25.79/11.07 new_compare112(vyw430, vyw450, True) -> LT 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs11(vyw32, vyw34) 25.79/11.07 new_esEs14(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs11(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 25.79/11.07 new_esEs16(vyw400, vyw3000, app(ty_[], bae)) -> new_esEs21(vyw400, vyw3000, bae) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_compare12(@0, @0) -> EQ 25.79/11.07 new_esEs16(vyw400, vyw3000, app(app(ty_@2, hh), baa)) -> new_esEs4(vyw400, vyw3000, hh, baa) 25.79/11.07 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 25.79/11.07 new_ltEs11(EQ, GT) -> True 25.79/11.07 new_compare25(vyw430, vyw450, False, bbb, bbc) -> new_compare15(vyw430, vyw450, new_ltEs4(vyw430, vyw450, bbb, bbc), bbb, bbc) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(app(ty_Either, dg), dh)) -> new_ltEs4(vyw4310, vyw4510, dg, dh) 25.79/11.07 new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs13(vyw40, vyw300) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(app(ty_@2, bbe), bbf)) -> new_esEs4(vyw400, vyw3000, bbe, bbf) 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Ordering) -> new_lt7(vyw4311, vyw4511) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Ordering) -> new_esEs13(vyw4310, vyw4510) 25.79/11.07 new_ltEs13(vyw431, vyw451) -> new_fsEs(new_compare6(vyw431, vyw451)) 25.79/11.07 new_esEs31(vyw40, vyw300, app(ty_Maybe, ff)) -> new_esEs6(vyw40, vyw300, ff) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_[], bg), bh) -> new_ltEs5(vyw4310, vyw4510, bg) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Integer) -> new_ltEs13(vyw4312, vyw4512) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(app(ty_Either, bgb), bgc)) -> new_lt17(vyw4311, vyw4511, bgb, bgc) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Float) -> new_lt11(vyw4310, vyw4510) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bdc), bdd)) -> new_ltEs4(vyw4310, vyw4510, bdc, bdd) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Integer, bh) -> new_ltEs13(vyw4310, vyw4510) 25.79/11.07 new_compare111(vyw430, vyw450, False, ga, gb, gc) -> GT 25.79/11.07 new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Int, bh) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_ltEs16(vyw4311, vyw4511, cbe, cbf, cbg) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Bool) -> new_ltEs17(vyw4311, vyw4511) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Ordering) -> new_ltEs11(vyw431, vyw451) 25.79/11.07 new_ltEs20(vyw431, vyw451, app(app(ty_Either, dc), bh)) -> new_ltEs4(vyw431, vyw451, dc, bh) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(ty_[], dd)) -> new_ltEs5(vyw4310, vyw4510, dd) 25.79/11.07 new_ltEs11(EQ, EQ) -> True 25.79/11.07 new_compare24(vyw430, vyw450, True, ga, gb, gc) -> EQ 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(app(ty_@2, bef), beg)) -> new_ltEs7(vyw4312, vyw4512, bef, beg) 25.79/11.07 new_esEs32(vyw32, vyw34, app(ty_Ratio, dag)) -> new_esEs8(vyw32, vyw34, dag) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.07 new_esEs28(vyw401, vyw3001, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs7(vyw401, vyw3001, ddh, dea, deb) 25.79/11.07 new_ltEs16(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), beb, bec, bed) -> new_pePe(new_lt13(vyw4310, vyw4510, beb), new_asAs(new_esEs24(vyw4310, vyw4510, beb), new_pePe(new_lt12(vyw4311, vyw4511, bec), new_asAs(new_esEs23(vyw4311, vyw4511, bec), new_ltEs18(vyw4312, vyw4512, bed))))) 25.79/11.07 new_esEs26(vyw430, vyw450, app(ty_Ratio, ef)) -> new_esEs8(vyw430, vyw450, ef) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(ty_Ratio, eb)) -> new_ltEs15(vyw4310, vyw4510, eb) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Int) -> new_ltEs8(vyw4312, vyw4512) 25.79/11.07 new_esEs16(vyw400, vyw3000, app(ty_Ratio, bag)) -> new_esEs8(vyw400, vyw3000, bag) 25.79/11.07 new_compare0([], :(vyw4500, vyw4501), cdb) -> LT 25.79/11.07 new_lt12(vyw4311, vyw4511, ty_Bool) -> new_lt5(vyw4311, vyw4511) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs18(vyw32, vyw34) 25.79/11.07 new_asAs(True, vyw60) -> vyw60 25.79/11.07 new_esEs7(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), fa, fb, fc) -> new_asAs(new_esEs29(vyw400, vyw3000, fa), new_asAs(new_esEs28(vyw401, vyw3001, fb), new_esEs27(vyw402, vyw3002, fc))) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Ordering) -> new_esEs13(vyw401, vyw3001) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Float) -> new_compare7(vyw4300, vyw4500) 25.79/11.07 new_lt20(vyw4310, vyw4510, app(ty_Ratio, ccf)) -> new_lt4(vyw4310, vyw4510, ccf) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs16(vyw4310, vyw4510, bdg, bdh, bea) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Ordering) -> new_compare16(vyw4300, vyw4500) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Integer) -> new_esEs12(vyw402, vyw3002) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Char) -> new_esEs18(vyw430, vyw450) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Float) -> new_esEs14(vyw402, vyw3002) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(ty_Maybe, hd)) -> new_esEs6(vyw401, vyw3001, hd) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(app(ty_Either, hf), hg)) -> new_esEs5(vyw401, vyw3001, hf, hg) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Float) -> new_ltEs9(vyw4312, vyw4512) 25.79/11.07 new_esEs32(vyw32, vyw34, app(ty_[], dae)) -> new_esEs21(vyw32, vyw34, dae) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Float, bh) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_lt19(vyw430, vyw450, ga, gb, gc) -> new_esEs13(new_compare8(vyw430, vyw450, ga, gb, gc), LT) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 25.79/11.07 new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(ty_[], bfg)) -> new_lt14(vyw4311, vyw4511, bfg) 25.79/11.07 new_compare110(vyw430, vyw450, False) -> GT 25.79/11.07 new_esEs29(vyw400, vyw3000, app(app(ty_Either, dfh), dga)) -> new_esEs5(vyw400, vyw3000, dfh, dga) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Int) -> new_esEs11(vyw400, vyw3000) 25.79/11.07 new_esEs9(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.07 new_ltEs11(GT, GT) -> True 25.79/11.07 new_lt13(vyw4310, vyw4510, ty_Int) -> new_lt16(vyw4310, vyw4510) 25.79/11.07 new_compare5(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare6(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) 25.79/11.07 new_compare0([], [], cdb) -> EQ 25.79/11.07 new_esEs26(vyw430, vyw450, app(ty_[], cdb)) -> new_esEs21(vyw430, vyw450, cdb) 25.79/11.07 new_lt6(vyw430, vyw450) -> new_esEs13(new_compare13(vyw430, vyw450), LT) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(app(ty_@2, bhb), bhc)) -> new_lt15(vyw4310, vyw4510, bhb, bhc) 25.79/11.07 new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 25.79/11.07 new_lt7(vyw430, vyw450) -> new_esEs13(new_compare16(vyw430, vyw450), LT) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Ordering) -> new_ltEs11(vyw4312, vyw4512) 25.79/11.07 new_esEs21([], [], fd) -> True 25.79/11.07 new_primMulNat0(Zero, Zero) -> Zero 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs14(vyw4311, vyw4511) 25.79/11.07 new_lt4(vyw430, vyw450, ef) -> new_esEs13(new_compare5(vyw430, vyw450, ef), LT) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs26(vyw430, vyw450, ty_Double) -> new_esEs20(vyw430, vyw450) 25.79/11.07 new_esEs29(vyw400, vyw3000, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs15(vyw401, vyw3001, ty_Char) -> new_esEs18(vyw401, vyw3001) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(app(ty_@2, cdd), cde)) -> new_compare29(vyw4300, vyw4500, cdd, cde) 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Integer) -> new_ltEs13(vyw431, vyw451) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(app(ty_Either, beh), bfa)) -> new_ltEs4(vyw4312, vyw4512, beh, bfa) 25.79/11.07 new_compare13(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_[], cfb), fh) -> new_esEs21(vyw400, vyw3000, cfb) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(ty_Maybe, bhf)) -> new_lt8(vyw4310, vyw4510, bhf) 25.79/11.07 new_compare30(vyw430, vyw450, bbb, bbc) -> new_compare25(vyw430, vyw450, new_esEs5(vyw430, vyw450, bbb, bbc), bbb, bbc) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(app(ty_Either, cgg), cgh)) -> new_esEs5(vyw400, vyw3000, cgg, cgh) 25.79/11.07 new_primCompAux1(vyw4300, vyw4500, vyw100, cdb) -> new_primCompAux0(vyw100, new_compare28(vyw4300, vyw4500, cdb)) 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Ordering, bh) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.07 new_esEs26(vyw430, vyw450, app(ty_Maybe, bbd)) -> new_esEs6(vyw430, vyw450, bbd) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Char) -> new_lt9(vyw430, vyw450) 25.79/11.07 new_esEs8(:%(vyw400, vyw401), :%(vyw3000, vyw3001), bf) -> new_asAs(new_esEs10(vyw400, vyw3000, bf), new_esEs9(vyw401, vyw3001, bf)) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Double) -> new_esEs20(vyw402, vyw3002) 25.79/11.07 new_esEs22(vyw400, vyw3000, app(ty_Ratio, bcd)) -> new_esEs8(vyw400, vyw3000, bcd) 25.79/11.07 new_lt21(vyw430, vyw450, app(ty_Ratio, ef)) -> new_lt4(vyw430, vyw450, ef) 25.79/11.07 new_esEs30(vyw31, vyw32, vyw33, vyw34, False, chf, chg) -> new_esEs13(new_compare211(@2(vyw31, vyw32), @2(vyw33, vyw34), False, chf, chg), LT) 25.79/11.07 new_primCompAux0(vyw109, EQ) -> vyw109 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.07 new_ltEs17(False, False) -> True 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Char, bh) -> new_ltEs6(vyw4310, vyw4510) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs12(vyw4311, vyw4511) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Bool) -> new_compare14(vyw4300, vyw4500) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs20(vyw32, vyw34) 25.79/11.07 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 25.79/11.07 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(ty_Maybe, cce)) -> new_esEs6(vyw4310, vyw4510, cce) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(ty_Ratio, he)) -> new_esEs8(vyw401, vyw3001, he) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Double) -> new_lt6(vyw4310, vyw4510) 25.79/11.07 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, ty_Char) -> new_ltEs6(vyw4312, vyw4512) 25.79/11.07 new_esEs32(vyw32, vyw34, app(app(ty_@2, chh), daa)) -> new_esEs4(vyw32, vyw34, chh, daa) 25.79/11.07 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Double) -> new_ltEs10(vyw4310, vyw4510) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(ty_Ratio, ddc)) -> new_esEs8(vyw402, vyw3002, ddc) 25.79/11.07 new_lt12(vyw4311, vyw4511, app(app(ty_@2, bfh), bga)) -> new_lt15(vyw4311, vyw4511, bfh, bga) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_@0) -> new_compare12(vyw4300, vyw4500) 25.79/11.07 new_esEs26(vyw430, vyw450, app(app(ty_@2, chc), chd)) -> new_esEs4(vyw430, vyw450, chc, chd) 25.79/11.07 new_compare19(vyw430, vyw450, False, bbd) -> GT 25.79/11.07 new_compare16(vyw430, vyw450) -> new_compare26(vyw430, vyw450, new_esEs13(vyw430, vyw450)) 25.79/11.07 new_esEs30(vyw31, vyw32, vyw33, vyw34, True, chf, chg) -> new_esEs13(new_compare211(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, chg), chf, chg), LT) 25.79/11.07 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(ty_Either, cc), cd), bh) -> new_ltEs4(vyw4310, vyw4510, cc, cd) 25.79/11.07 new_lt13(vyw4310, vyw4510, app(ty_[], bha)) -> new_lt14(vyw4310, vyw4510, bha) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(app(ty_Either, ccc), ccd)) -> new_esEs5(vyw4310, vyw4510, ccc, ccd) 25.79/11.07 new_ltEs14(Just(vyw4310), Nothing, bcg) -> False 25.79/11.07 new_esEs4(@2(vyw400, vyw401), @2(vyw3000, vyw3001), eg, eh) -> new_asAs(new_esEs16(vyw400, vyw3000, eg), new_esEs15(vyw401, vyw3001, eh)) 25.79/11.07 new_ltEs14(Nothing, Nothing, bcg) -> True 25.79/11.07 new_ltEs20(vyw431, vyw451, ty_Float) -> new_ltEs9(vyw431, vyw451) 25.79/11.07 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 25.79/11.07 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 25.79/11.07 new_compare10(vyw86, vyw87, vyw88, vyw89, True, vyw91, gd, ge) -> new_compare11(vyw86, vyw87, vyw88, vyw89, True, gd, ge) 25.79/11.07 new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs14(vyw400, vyw3000) 25.79/11.07 new_esEs31(vyw40, vyw300, app(app(ty_Either, fg), fh)) -> new_esEs5(vyw40, vyw300, fg, fh) 25.79/11.07 new_esEs13(LT, GT) -> False 25.79/11.07 new_esEs13(GT, LT) -> False 25.79/11.07 new_compare211(vyw43, vyw45, True, cha, chb) -> EQ 25.79/11.07 new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_compare27(vyw430, vyw450, False) -> new_compare112(vyw430, vyw450, new_ltEs17(vyw430, vyw450)) 25.79/11.07 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 25.79/11.07 new_ltEs17(True, False) -> False 25.79/11.07 new_esEs28(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) 25.79/11.07 new_esEs25(vyw4310, vyw4510, ty_Int) -> new_esEs11(vyw4310, vyw4510) 25.79/11.07 new_lt21(vyw430, vyw450, ty_Float) -> new_lt11(vyw430, vyw450) 25.79/11.07 new_esEs27(vyw402, vyw3002, ty_Char) -> new_esEs18(vyw402, vyw3002) 25.79/11.07 new_esEs16(vyw400, vyw3000, app(ty_Maybe, baf)) -> new_esEs6(vyw400, vyw3000, baf) 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Ordering) -> new_esEs13(vyw400, vyw3000) 25.79/11.07 new_esEs26(vyw430, vyw450, app(app(ty_Either, bbb), bbc)) -> new_esEs5(vyw430, vyw450, bbb, bbc) 25.79/11.07 new_ltEs17(False, True) -> True 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Ratio, dca)) -> new_esEs8(vyw400, vyw3000, dca) 25.79/11.07 new_ltEs19(vyw4311, vyw4511, ty_Float) -> new_ltEs9(vyw4311, vyw4511) 25.79/11.07 new_esEs20(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs11(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) 25.79/11.07 new_lt20(vyw4310, vyw4510, app(app(ty_@2, cca), ccb)) -> new_lt15(vyw4310, vyw4510, cca, ccb) 25.79/11.07 new_compare28(vyw4300, vyw4500, app(app(ty_Either, cdf), cdg)) -> new_compare30(vyw4300, vyw4500, cdf, cdg) 25.79/11.07 new_esEs31(vyw40, vyw300, app(ty_[], fd)) -> new_esEs21(vyw40, vyw300, fd) 25.79/11.07 new_ltEs7(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), cad, cae) -> new_pePe(new_lt20(vyw4310, vyw4510, cad), new_asAs(new_esEs25(vyw4310, vyw4510, cad), new_ltEs19(vyw4311, vyw4511, cae))) 25.79/11.07 new_esEs23(vyw4311, vyw4511, app(ty_[], bfg)) -> new_esEs21(vyw4311, vyw4511, bfg) 25.79/11.07 new_esEs25(vyw4310, vyw4510, app(ty_Ratio, ccf)) -> new_esEs8(vyw4310, vyw4510, ccf) 25.79/11.07 new_esEs29(vyw400, vyw3000, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs7(vyw400, vyw3000, dfb, dfc, dfd) 25.79/11.07 new_esEs31(vyw40, vyw300, app(app(ty_@2, eg), eh)) -> new_esEs4(vyw40, vyw300, eg, eh) 25.79/11.07 new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs20(vyw4311, vyw4511) 25.79/11.07 new_not(False) -> True 25.79/11.07 new_ltEs6(vyw431, vyw451) -> new_fsEs(new_compare17(vyw431, vyw451)) 25.79/11.07 new_esEs15(vyw401, vyw3001, app(app(ty_@2, gf), gg)) -> new_esEs4(vyw401, vyw3001, gf, gg) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Integer) -> new_compare6(vyw4300, vyw4500) 25.79/11.07 new_esEs16(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_lt21(vyw430, vyw450, app(app(ty_Either, bbb), bbc)) -> new_lt17(vyw430, vyw450, bbb, bbc) 25.79/11.07 new_compare0(:(vyw4300, vyw4301), [], cdb) -> GT 25.79/11.07 new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs13(vyw32, vyw34) 25.79/11.07 new_esEs5(Left(vyw400), Right(vyw3000), fg, fh) -> False 25.79/11.07 new_esEs5(Right(vyw400), Left(vyw3000), fg, fh) -> False 25.79/11.07 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(ty_Ratio, cgf)) -> new_esEs8(vyw400, vyw3000, cgf) 25.79/11.07 new_lt15(vyw430, vyw450, chc, chd) -> new_esEs13(new_compare29(vyw430, vyw450, chc, chd), LT) 25.79/11.07 new_compare28(vyw4300, vyw4500, ty_Double) -> new_compare13(vyw4300, vyw4500) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs18(vyw400, vyw3000) 25.79/11.07 new_ltEs4(Left(vyw4310), Right(vyw4510), dc, bh) -> True 25.79/11.07 new_esEs16(vyw400, vyw3000, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs7(vyw400, vyw3000, bab, bac, bad) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_@0) -> new_esEs17(vyw4310, vyw4510) 25.79/11.07 new_ltEs18(vyw4312, vyw4512, app(ty_[], bee)) -> new_ltEs5(vyw4312, vyw4512, bee) 25.79/11.07 new_lt20(vyw4310, vyw4510, ty_Integer) -> new_lt18(vyw4310, vyw4510) 25.79/11.07 new_esEs27(vyw402, vyw3002, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs7(vyw402, vyw3002, dcf, dcg, dch) 25.79/11.07 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_[], dbg)) -> new_esEs21(vyw400, vyw3000, dbg) 25.79/11.07 new_primPlusNat0(Succ(vyw770), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw770, vyw300000))) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_@0, fh) -> new_esEs17(vyw400, vyw3000) 25.79/11.07 new_esEs5(Left(vyw400), Left(vyw3000), ty_Bool, fh) -> new_esEs19(vyw400, vyw3000) 25.79/11.07 new_esEs24(vyw4310, vyw4510, ty_Bool) -> new_esEs19(vyw4310, vyw4510) 25.79/11.08 new_esEs27(vyw402, vyw3002, ty_Int) -> new_esEs11(vyw402, vyw3002) 25.79/11.08 new_esEs23(vyw4311, vyw4511, app(ty_Ratio, bge)) -> new_esEs8(vyw4311, vyw4511, bge) 25.79/11.08 new_ltEs20(vyw431, vyw451, ty_Char) -> new_ltEs6(vyw431, vyw451) 25.79/11.08 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_Bool, bh) -> new_ltEs17(vyw4310, vyw4510) 25.79/11.08 new_ltEs11(LT, EQ) -> True 25.79/11.08 new_ltEs14(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs9(vyw4310, vyw4510) 25.79/11.08 new_esEs29(vyw400, vyw3000, app(ty_Maybe, dff)) -> new_esEs6(vyw400, vyw3000, dff) 25.79/11.08 new_compare18(vyw430, vyw450, bbd) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, bbd), bbd) 25.79/11.08 new_compare28(vyw4300, vyw4500, app(ty_Maybe, cdh)) -> new_compare18(vyw4300, vyw4500, cdh) 25.79/11.08 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 25.79/11.08 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 25.79/11.08 new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.08 new_esEs27(vyw402, vyw3002, ty_@0) -> new_esEs17(vyw402, vyw3002) 25.79/11.08 new_compare13(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.08 new_primPlusNat1(Zero, Zero) -> Zero 25.79/11.08 new_lt20(vyw4310, vyw4510, app(app(app(ty_@3, ccg), cch), cda)) -> new_lt19(vyw4310, vyw4510, ccg, cch, cda) 25.79/11.08 new_esEs9(vyw401, vyw3001, ty_Integer) -> new_esEs12(vyw401, vyw3001) 25.79/11.08 new_lt16(vyw430, vyw450) -> new_esEs13(new_compare9(vyw430, vyw450), LT) 25.79/11.08 new_esEs25(vyw4310, vyw4510, ty_Double) -> new_esEs20(vyw4310, vyw4510) 25.79/11.08 new_compare7(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare9(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) 25.79/11.08 new_ltEs9(vyw431, vyw451) -> new_fsEs(new_compare7(vyw431, vyw451)) 25.79/11.08 new_lt21(vyw430, vyw450, ty_Double) -> new_lt6(vyw430, vyw450) 25.79/11.08 new_esEs5(Right(vyw400), Right(vyw3000), fg, app(ty_[], cgd)) -> new_esEs21(vyw400, vyw3000, cgd) 25.79/11.08 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Ordering) -> new_ltEs11(vyw4310, vyw4510) 25.79/11.08 new_esEs27(vyw402, vyw3002, app(app(ty_@2, dcd), dce)) -> new_esEs4(vyw402, vyw3002, dcd, dce) 25.79/11.08 new_esEs5(Right(vyw400), Right(vyw3000), fg, ty_Integer) -> new_esEs12(vyw400, vyw3000) 25.79/11.08 new_esEs26(vyw430, vyw450, ty_Bool) -> new_esEs19(vyw430, vyw450) 25.79/11.08 new_ltEs19(vyw4311, vyw4511, app(app(ty_Either, cba), cbb)) -> new_ltEs4(vyw4311, vyw4511, cba, cbb) 25.79/11.08 new_esEs28(vyw401, vyw3001, app(ty_Maybe, ded)) -> new_esEs6(vyw401, vyw3001, ded) 25.79/11.08 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 25.79/11.08 new_esEs26(vyw430, vyw450, ty_@0) -> new_esEs17(vyw430, vyw450) 25.79/11.08 new_lt17(vyw430, vyw450, bbb, bbc) -> new_esEs13(new_compare30(vyw430, vyw450, bbb, bbc), LT) 25.79/11.08 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 25.79/11.08 new_esEs28(vyw401, vyw3001, app(app(ty_@2, ddf), ddg)) -> new_esEs4(vyw401, vyw3001, ddf, ddg) 25.79/11.08 new_ltEs4(Left(vyw4310), Left(vyw4510), app(app(ty_@2, ca), cb), bh) -> new_ltEs7(vyw4310, vyw4510, ca, cb) 25.79/11.08 new_lt12(vyw4311, vyw4511, app(ty_Maybe, bgd)) -> new_lt8(vyw4311, vyw4511, bgd) 25.79/11.08 new_ltEs19(vyw4311, vyw4511, ty_Ordering) -> new_ltEs11(vyw4311, vyw4511) 25.79/11.08 new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) 25.79/11.08 new_ltEs19(vyw4311, vyw4511, app(ty_Ratio, cbd)) -> new_ltEs15(vyw4311, vyw4511, cbd) 25.79/11.08 new_esEs25(vyw4310, vyw4510, ty_@0) -> new_esEs17(vyw4310, vyw4510) 25.79/11.08 new_ltEs11(LT, GT) -> True 25.79/11.08 new_compare7(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare9(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) 25.79/11.08 new_esEs27(vyw402, vyw3002, app(ty_Maybe, ddb)) -> new_esEs6(vyw402, vyw3002, ddb) 25.79/11.08 new_ltEs12(vyw431, vyw451) -> new_fsEs(new_compare12(vyw431, vyw451)) 25.79/11.08 new_ltEs4(Left(vyw4310), Left(vyw4510), app(ty_Ratio, cf), bh) -> new_ltEs15(vyw4310, vyw4510, cf) 25.79/11.08 new_esEs15(vyw401, vyw3001, ty_Float) -> new_esEs14(vyw401, vyw3001) 25.79/11.08 new_compare15(vyw430, vyw450, False, bbb, bbc) -> GT 25.79/11.08 new_esEs15(vyw401, vyw3001, ty_Int) -> new_esEs11(vyw401, vyw3001) 25.79/11.08 new_esEs5(Left(vyw400), Left(vyw3000), ty_Char, fh) -> new_esEs18(vyw400, vyw3000) 25.79/11.08 new_lt20(vyw4310, vyw4510, ty_Bool) -> new_lt5(vyw4310, vyw4510) 25.79/11.08 new_ltEs15(vyw431, vyw451, cac) -> new_fsEs(new_compare5(vyw431, vyw451, cac)) 25.79/11.08 new_ltEs20(vyw431, vyw451, ty_Int) -> new_ltEs8(vyw431, vyw451) 25.79/11.08 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(ty_Maybe, ea)) -> new_ltEs14(vyw4310, vyw4510, ea) 25.79/11.08 new_esEs24(vyw4310, vyw4510, ty_Char) -> new_esEs18(vyw4310, vyw4510) 25.79/11.08 new_esEs25(vyw4310, vyw4510, ty_Float) -> new_esEs14(vyw4310, vyw4510) 25.79/11.08 new_esEs6(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs20(vyw400, vyw3000) 25.79/11.08 new_compare28(vyw4300, vyw4500, app(app(app(ty_@3, ceb), cec), ced)) -> new_compare8(vyw4300, vyw4500, ceb, cec, ced) 25.79/11.08 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 25.79/11.08 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 25.79/11.08 new_esEs29(vyw400, vyw3000, app(app(ty_@2, deh), dfa)) -> new_esEs4(vyw400, vyw3000, deh, dfa) 25.79/11.08 new_ltEs18(vyw4312, vyw4512, app(ty_Ratio, bfc)) -> new_ltEs15(vyw4312, vyw4512, bfc) 25.79/11.08 new_lt21(vyw430, vyw450, ty_Ordering) -> new_lt7(vyw430, vyw450) 25.79/11.08 new_ltEs20(vyw431, vyw451, app(ty_Ratio, cac)) -> new_ltEs15(vyw431, vyw451, cac) 25.79/11.08 new_ltEs5(vyw431, vyw451, che) -> new_fsEs(new_compare0(vyw431, vyw451, che)) 25.79/11.08 new_compare17(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) 25.79/11.08 new_primEqNat0(Zero, Zero) -> True 25.79/11.08 new_esEs28(vyw401, vyw3001, app(app(ty_Either, def), deg)) -> new_esEs5(vyw401, vyw3001, def, deg) 25.79/11.08 new_compare28(vyw4300, vyw4500, ty_Char) -> new_compare17(vyw4300, vyw4500) 25.79/11.08 new_lt12(vyw4311, vyw4511, ty_Char) -> new_lt9(vyw4311, vyw4511) 25.79/11.08 new_ltEs20(vyw431, vyw451, app(ty_[], che)) -> new_ltEs5(vyw431, vyw451, che) 25.79/11.08 new_lt21(vyw430, vyw450, app(app(app(ty_@3, ga), gb), gc)) -> new_lt19(vyw430, vyw450, ga, gb, gc) 25.79/11.08 new_compare5(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare9(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) 25.79/11.08 new_ltEs4(Left(vyw4310), Left(vyw4510), ty_@0, bh) -> new_ltEs12(vyw4310, vyw4510) 25.79/11.08 new_esEs25(vyw4310, vyw4510, ty_Char) -> new_esEs18(vyw4310, vyw4510) 25.79/11.08 new_esEs13(EQ, EQ) -> True 25.79/11.08 new_ltEs17(True, True) -> True 25.79/11.08 new_esEs24(vyw4310, vyw4510, ty_Double) -> new_esEs20(vyw4310, vyw4510) 25.79/11.08 new_esEs26(vyw430, vyw450, ty_Float) -> new_esEs14(vyw430, vyw450) 25.79/11.08 new_asAs(False, vyw60) -> False 25.79/11.08 new_esEs13(LT, EQ) -> False 25.79/11.08 new_esEs13(EQ, LT) -> False 25.79/11.08 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, app(app(ty_@2, de), df)) -> new_ltEs7(vyw4310, vyw4510, de, df) 25.79/11.08 new_esEs24(vyw4310, vyw4510, app(ty_Ratio, bhg)) -> new_esEs8(vyw4310, vyw4510, bhg) 25.79/11.08 new_esEs22(vyw400, vyw3000, app(ty_[], bcb)) -> new_esEs21(vyw400, vyw3000, bcb) 25.79/11.08 new_esEs26(vyw430, vyw450, ty_Int) -> new_esEs11(vyw430, vyw450) 25.79/11.08 new_ltEs19(vyw4311, vyw4511, ty_Int) -> new_ltEs8(vyw4311, vyw4511) 25.79/11.08 new_ltEs4(Right(vyw4310), Right(vyw4510), dc, ty_Int) -> new_ltEs8(vyw4310, vyw4510) 25.79/11.08 new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs12(vyw32, vyw34) 25.79/11.08 new_ltEs4(Right(vyw4310), Left(vyw4510), dc, bh) -> False 25.79/11.08 new_lt21(vyw430, vyw450, ty_Integer) -> new_lt18(vyw430, vyw450) 25.79/11.08 new_lt13(vyw4310, vyw4510, app(ty_Ratio, bhg)) -> new_lt4(vyw4310, vyw4510, bhg) 25.79/11.08 new_compare10(vyw86, vyw87, vyw88, vyw89, False, vyw91, gd, ge) -> new_compare11(vyw86, vyw87, vyw88, vyw89, vyw91, gd, ge) 25.79/11.08 new_compare27(vyw430, vyw450, True) -> EQ 25.79/11.08 new_esEs16(vyw400, vyw3000, app(app(ty_Either, bah), bba)) -> new_esEs5(vyw400, vyw3000, bah, bba) 25.79/11.08 new_esEs11(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 25.79/11.08 new_esEs19(True, True) -> True 25.79/11.08 new_esEs25(vyw4310, vyw4510, ty_Bool) -> new_esEs19(vyw4310, vyw4510) 25.79/11.08 new_esEs5(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, ceg), ceh), cfa), fh) -> new_esEs7(vyw400, vyw3000, ceg, ceh, cfa) 25.79/11.08 new_ltEs11(EQ, LT) -> False 25.79/11.08 25.79/11.08 The set Q consists of the following terms: 25.79/11.08 25.79/11.08 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 25.79/11.08 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 25.79/11.08 new_esEs30(x0, x1, x2, x3, True, x4, x5) 25.79/11.08 new_esEs27(x0, x1, ty_Float) 25.79/11.08 new_esEs20(Double(x0, x1), Double(x2, x3)) 25.79/11.08 new_ltEs20(x0, x1, ty_Double) 25.79/11.08 new_esEs22(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_Float) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_Ordering) 25.79/11.08 new_lt13(x0, x1, ty_Int) 25.79/11.08 new_compare11(x0, x1, x2, x3, True, x4, x5) 25.79/11.08 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 25.79/11.08 new_esEs21(:(x0, x1), [], x2) 25.79/11.08 new_esEs6(Nothing, Nothing, x0) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_Double) 25.79/11.08 new_esEs32(x0, x1, ty_Char) 25.79/11.08 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.79/11.08 new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_ltEs19(x0, x1, app(ty_[], x2)) 25.79/11.08 new_lt13(x0, x1, ty_Ordering) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_Char) 25.79/11.08 new_compare18(x0, x1, x2) 25.79/11.08 new_lt13(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_primPlusNat1(Zero, Zero) 25.79/11.08 new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs29(x0, x1, ty_Integer) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 25.79/11.08 new_esEs32(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_ltEs20(x0, x1, ty_Ordering) 25.79/11.08 new_esEs19(False, False) 25.79/11.08 new_esEs16(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_Int) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 25.79/11.08 new_esEs23(x0, x1, ty_Integer) 25.79/11.08 new_ltEs14(Just(x0), Nothing, x1) 25.79/11.08 new_lt12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_sr0(Integer(x0), Integer(x1)) 25.79/11.08 new_primEqInt(Pos(Zero), Pos(Zero)) 25.79/11.08 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs24(x0, x1, ty_Bool) 25.79/11.08 new_lt12(x0, x1, ty_Char) 25.79/11.08 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs23(x0, x1, ty_Float) 25.79/11.08 new_esEs13(LT, LT) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_Bool, x2) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs22(x0, x1, ty_Double) 25.79/11.08 new_lt5(x0, x1) 25.79/11.08 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_Int) 25.79/11.08 new_primEqInt(Neg(Zero), Neg(Zero)) 25.79/11.08 new_esEs29(x0, x1, ty_@0) 25.79/11.08 new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs24(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_compare19(x0, x1, True, x2) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 25.79/11.08 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_lt7(x0, x1) 25.79/11.08 new_esEs27(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs16(x0, x1, app(ty_[], x2)) 25.79/11.08 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 25.79/11.08 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 25.79/11.08 new_esEs23(x0, x1, ty_Bool) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.79/11.08 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.79/11.08 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_esEs32(x0, x1, ty_@0) 25.79/11.08 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 25.79/11.08 new_ltEs6(x0, x1) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_Int, x2) 25.79/11.08 new_esEs32(x0, x1, ty_Double) 25.79/11.08 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_fsEs(x0) 25.79/11.08 new_primCompAux1(x0, x1, x2, x3) 25.79/11.08 new_lt11(x0, x1) 25.79/11.08 new_esEs24(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.79/11.08 new_esEs12(Integer(x0), Integer(x1)) 25.79/11.08 new_esEs21(:(x0, x1), :(x2, x3), x4) 25.79/11.08 new_ltEs8(x0, x1) 25.79/11.08 new_esEs23(x0, x1, ty_@0) 25.79/11.08 new_esEs26(x0, x1, ty_Double) 25.79/11.08 new_esEs28(x0, x1, ty_Bool) 25.79/11.08 new_ltEs17(True, True) 25.79/11.08 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs23(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_compare30(x0, x1, x2, x3) 25.79/11.08 new_lt13(x0, x1, ty_@0) 25.79/11.08 new_esEs28(x0, x1, ty_Float) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_Double, x2) 25.79/11.08 new_esEs29(x0, x1, app(ty_[], x2)) 25.79/11.08 new_lt12(x0, x1, ty_Int) 25.79/11.08 new_ltEs18(x0, x1, app(ty_[], x2)) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_Char, x2) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_@0, x2) 25.79/11.08 new_esEs15(x0, x1, ty_Double) 25.79/11.08 new_esEs32(x0, x1, ty_Int) 25.79/11.08 new_lt13(x0, x1, ty_Double) 25.79/11.08 new_primEqInt(Pos(Zero), Neg(Zero)) 25.79/11.08 new_primEqInt(Neg(Zero), Pos(Zero)) 25.79/11.08 new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 25.79/11.08 new_lt13(x0, x1, ty_Char) 25.79/11.08 new_compare28(x0, x1, ty_Ordering) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 25.79/11.08 new_lt13(x0, x1, ty_Bool) 25.79/11.08 new_primPlusNat0(Succ(x0), x1) 25.79/11.08 new_lt12(x0, x1, ty_@0) 25.79/11.08 new_esEs28(x0, x1, ty_@0) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 25.79/11.08 new_esEs6(Just(x0), Nothing, x1) 25.79/11.08 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 25.79/11.08 new_compare28(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_esEs29(x0, x1, ty_Bool) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 25.79/11.08 new_esEs24(x0, x1, ty_Integer) 25.79/11.08 new_pePe(True, x0) 25.79/11.08 new_ltEs20(x0, x1, app(ty_[], x2)) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_Integer) 25.79/11.08 new_esEs31(x0, x1, ty_Integer) 25.79/11.08 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 25.79/11.08 new_esEs14(Float(x0, x1), Float(x2, x3)) 25.79/11.08 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 25.79/11.08 new_lt21(x0, x1, ty_Double) 25.79/11.08 new_lt12(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare11(x0, x1, x2, x3, False, x4, x5) 25.79/11.08 new_ltEs5(x0, x1, x2) 25.79/11.08 new_compare210(x0, x1, False, x2) 25.79/11.08 new_esEs22(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_compare28(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs31(x0, x1, ty_@0) 25.79/11.08 new_ltEs11(LT, EQ) 25.79/11.08 new_ltEs11(EQ, LT) 25.79/11.08 new_esEs27(x0, x1, ty_Bool) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_Integer) 25.79/11.08 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs9(x0, x1, ty_Int) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.79/11.08 new_esEs26(x0, x1, ty_Int) 25.79/11.08 new_compare6(Integer(x0), Integer(x1)) 25.79/11.08 new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_lt21(x0, x1, ty_Ordering) 25.79/11.08 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_primCompAux0(x0, EQ) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_Bool) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 25.79/11.08 new_ltEs11(GT, GT) 25.79/11.08 new_compare112(x0, x1, True) 25.79/11.08 new_ltEs18(x0, x1, ty_Int) 25.79/11.08 new_compare13(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 25.79/11.08 new_compare13(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 25.79/11.08 new_lt8(x0, x1, x2) 25.79/11.08 new_lt14(x0, x1, x2) 25.79/11.08 new_compare28(x0, x1, ty_Int) 25.79/11.08 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 25.79/11.08 new_ltEs7(@2(x0, x1), @2(x2, x3), x4, x5) 25.79/11.08 new_esEs15(x0, x1, ty_Int) 25.79/11.08 new_ltEs20(x0, x1, ty_Bool) 25.79/11.08 new_esEs17(@0, @0) 25.79/11.08 new_esEs24(x0, x1, ty_Ordering) 25.79/11.08 new_esEs26(x0, x1, ty_Char) 25.79/11.08 new_esEs16(x0, x1, ty_Double) 25.79/11.08 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_ltEs19(x0, x1, ty_Float) 25.79/11.08 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_compare28(x0, x1, ty_Char) 25.79/11.08 new_esEs25(x0, x1, ty_Double) 25.79/11.08 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.79/11.08 new_lt18(x0, x1) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 25.79/11.08 new_compare17(Char(x0), Char(x1)) 25.79/11.08 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_ltEs18(x0, x1, ty_Ordering) 25.79/11.08 new_esEs22(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 25.79/11.08 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs15(x0, x1, ty_Char) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 25.79/11.08 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_compare0(:(x0, x1), [], x2) 25.79/11.08 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 25.79/11.08 new_esEs29(x0, x1, ty_Double) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), app(ty_[], x2), x3) 25.79/11.08 new_lt15(x0, x1, x2, x3) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 25.79/11.08 new_esEs22(x0, x1, ty_Int) 25.79/11.08 new_ltEs20(x0, x1, ty_Integer) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare14(x0, x1) 25.79/11.08 new_esEs19(False, True) 25.79/11.08 new_esEs19(True, False) 25.79/11.08 new_esEs15(x0, x1, ty_Float) 25.79/11.08 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_pePe(False, x0) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_Bool) 25.79/11.08 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_compare5(:%(x0, x1), :%(x2, x3), ty_Int) 25.79/11.08 new_esEs22(x0, x1, ty_Char) 25.79/11.08 new_esEs8(:%(x0, x1), :%(x2, x3), x4) 25.79/11.08 new_primEqNat0(Zero, Succ(x0)) 25.79/11.08 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 25.79/11.08 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 25.79/11.08 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 25.79/11.08 new_ltEs18(x0, x1, ty_Char) 25.79/11.08 new_lt20(x0, x1, ty_Double) 25.79/11.08 new_esEs28(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs32(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_esEs29(x0, x1, ty_Ordering) 25.79/11.08 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.79/11.08 new_compare111(x0, x1, True, x2, x3, x4) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.79/11.08 new_esEs24(x0, x1, ty_Double) 25.79/11.08 new_lt12(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_Char) 25.79/11.08 new_esEs22(x0, x1, ty_Ordering) 25.79/11.08 new_primCmpInt(Neg(Zero), Neg(Zero)) 25.79/11.08 new_lt20(x0, x1, app(ty_[], x2)) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 25.79/11.08 new_lt12(x0, x1, ty_Ordering) 25.79/11.08 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 25.79/11.08 new_esEs32(x0, x1, ty_Bool) 25.79/11.08 new_lt13(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_lt12(x0, x1, ty_Bool) 25.79/11.08 new_esEs32(x0, x1, ty_Ordering) 25.79/11.08 new_primCmpInt(Pos(Zero), Neg(Zero)) 25.79/11.08 new_primCmpInt(Neg(Zero), Pos(Zero)) 25.79/11.08 new_esEs28(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_esEs26(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_Char) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 25.79/11.08 new_ltEs12(x0, x1) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 25.79/11.08 new_ltEs17(True, False) 25.79/11.08 new_ltEs17(False, True) 25.79/11.08 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.79/11.08 new_asAs(False, x0) 25.79/11.08 new_lt12(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_esEs28(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs24(x0, x1, ty_@0) 25.79/11.08 new_esEs22(x0, x1, ty_Bool) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_Integer) 25.79/11.08 new_lt6(x0, x1) 25.79/11.08 new_compare26(x0, x1, False) 25.79/11.08 new_ltEs20(x0, x1, ty_Int) 25.79/11.08 new_lt12(x0, x1, ty_Integer) 25.79/11.08 new_esEs25(x0, x1, app(ty_[], x2)) 25.79/11.08 new_primPlusNat1(Succ(x0), Zero) 25.79/11.08 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_ltEs11(EQ, EQ) 25.79/11.08 new_esEs26(x0, x1, ty_Ordering) 25.79/11.08 new_esEs27(x0, x1, ty_Integer) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 25.79/11.08 new_esEs22(x0, x1, ty_Integer) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_Bool) 25.79/11.08 new_primPlusNat0(Zero, x0) 25.79/11.08 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_primCmpNat0(Zero, Succ(x0)) 25.79/11.08 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_Int) 25.79/11.08 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs18(Char(x0), Char(x1)) 25.79/11.08 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_lt21(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_ltEs18(x0, x1, ty_Integer) 25.79/11.08 new_compare28(x0, x1, ty_Float) 25.79/11.08 new_ltEs20(x0, x1, ty_Char) 25.79/11.08 new_ltEs15(x0, x1, x2) 25.79/11.08 new_esEs13(GT, GT) 25.79/11.08 new_compare15(x0, x1, True, x2, x3) 25.79/11.08 new_esEs13(LT, EQ) 25.79/11.08 new_esEs13(EQ, LT) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 25.79/11.08 new_compare0([], :(x0, x1), x2) 25.79/11.08 new_compare28(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs32(x0, x1, ty_Integer) 25.79/11.08 new_primMulNat0(Succ(x0), Zero) 25.79/11.08 new_lt20(x0, x1, ty_@0) 25.79/11.08 new_primPlusNat1(Zero, Succ(x0)) 25.79/11.08 new_esEs26(x0, x1, ty_Integer) 25.79/11.08 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_Double) 25.79/11.08 new_esEs13(EQ, EQ) 25.79/11.08 new_esEs27(x0, x1, app(ty_[], x2)) 25.79/11.08 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs27(x0, x1, ty_Ordering) 25.79/11.08 new_compare211(@2(x0, x1), @2(x2, x3), False, x4, x5) 25.79/11.08 new_esEs31(x0, x1, ty_Double) 25.79/11.08 new_ltEs20(x0, x1, ty_Float) 25.79/11.08 new_compare28(x0, x1, ty_Integer) 25.79/11.08 new_lt21(x0, x1, ty_Bool) 25.79/11.08 new_esEs27(x0, x1, ty_Double) 25.79/11.08 new_esEs16(x0, x1, ty_@0) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 25.79/11.08 new_esEs15(x0, x1, ty_Integer) 25.79/11.08 new_lt21(x0, x1, app(ty_[], x2)) 25.79/11.08 new_lt21(x0, x1, ty_@0) 25.79/11.08 new_lt20(x0, x1, ty_Bool) 25.79/11.08 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 25.79/11.08 new_compare28(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_primEqNat0(Succ(x0), Succ(x1)) 25.79/11.08 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare5(:%(x0, x1), :%(x2, x3), ty_Integer) 25.79/11.08 new_primMulNat0(Zero, Zero) 25.79/11.08 new_lt21(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.79/11.08 new_ltEs19(x0, x1, ty_@0) 25.79/11.08 new_ltEs19(x0, x1, ty_Bool) 25.79/11.08 new_primCompAux0(x0, LT) 25.79/11.08 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_Float) 25.79/11.08 new_esEs26(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs27(x0, x1, ty_Int) 25.79/11.08 new_lt4(x0, x1, x2) 25.79/11.08 new_ltEs11(LT, LT) 25.79/11.08 new_esEs25(x0, x1, ty_@0) 25.79/11.08 new_esEs5(Left(x0), Right(x1), x2, x3) 25.79/11.08 new_esEs5(Right(x0), Left(x1), x2, x3) 25.79/11.08 new_lt12(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs25(x0, x1, ty_Integer) 25.79/11.08 new_esEs25(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_lt13(x0, x1, ty_Float) 25.79/11.08 new_compare27(x0, x1, False) 25.79/11.08 new_ltEs18(x0, x1, ty_Bool) 25.79/11.08 new_lt21(x0, x1, ty_Integer) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 25.79/11.08 new_compare110(x0, x1, False) 25.79/11.08 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 25.79/11.08 new_primMulNat0(Succ(x0), Succ(x1)) 25.79/11.08 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare210(x0, x1, True, x2) 25.79/11.08 new_esEs27(x0, x1, ty_Char) 25.79/11.08 new_esEs9(x0, x1, ty_Integer) 25.79/11.08 new_esEs16(x0, x1, ty_Bool) 25.79/11.08 new_compare28(x0, x1, ty_Bool) 25.79/11.08 new_ltEs9(x0, x1) 25.79/11.08 new_compare25(x0, x1, True, x2, x3) 25.79/11.08 new_esEs11(x0, x1) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 25.79/11.08 new_esEs15(x0, x1, ty_@0) 25.79/11.08 new_ltEs13(x0, x1) 25.79/11.08 new_compare8(x0, x1, x2, x3, x4) 25.79/11.08 new_lt20(x0, x1, ty_Char) 25.79/11.08 new_esEs29(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs26(x0, x1, ty_Bool) 25.79/11.08 new_esEs26(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs32(x0, x1, ty_Float) 25.79/11.08 new_esEs16(x0, x1, ty_Integer) 25.79/11.08 new_not(True) 25.79/11.08 new_compare211(x0, x1, True, x2, x3) 25.79/11.08 new_lt20(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_primEqNat0(Succ(x0), Zero) 25.79/11.08 new_primMulNat0(Zero, Succ(x0)) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 25.79/11.08 new_lt10(x0, x1) 25.79/11.08 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 25.79/11.08 new_compare9(x0, x1) 25.79/11.08 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs6(Nothing, Just(x0), x1) 25.79/11.08 new_lt20(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_esEs21([], :(x0, x1), x2) 25.79/11.08 new_esEs27(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_ltEs19(x0, x1, ty_Int) 25.79/11.08 new_lt20(x0, x1, ty_Int) 25.79/11.08 new_esEs22(x0, x1, ty_@0) 25.79/11.08 new_lt17(x0, x1, x2, x3) 25.79/11.08 new_esEs22(x0, x1, ty_Float) 25.79/11.08 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare24(x0, x1, False, x2, x3, x4) 25.79/11.08 new_ltEs18(x0, x1, ty_@0) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_Float) 25.79/11.08 new_esEs23(x0, x1, ty_Int) 25.79/11.08 new_compare16(x0, x1) 25.79/11.08 new_compare27(x0, x1, True) 25.79/11.08 new_esEs16(x0, x1, ty_Ordering) 25.79/11.08 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_ltEs18(x0, x1, ty_Float) 25.79/11.08 new_primCmpNat0(Succ(x0), Succ(x1)) 25.79/11.08 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_lt16(x0, x1) 25.79/11.08 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.79/11.08 new_esEs25(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs15(x0, x1, ty_Bool) 25.79/11.08 new_esEs26(x0, x1, ty_Float) 25.79/11.08 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_compare111(x0, x1, False, x2, x3, x4) 25.79/11.08 new_ltEs4(Left(x0), Right(x1), x2, x3) 25.79/11.08 new_ltEs4(Right(x0), Left(x1), x2, x3) 25.79/11.08 new_lt21(x0, x1, ty_Int) 25.79/11.08 new_ltEs14(Nothing, Nothing, x0) 25.79/11.08 new_compare25(x0, x1, False, x2, x3) 25.79/11.08 new_esEs28(x0, x1, ty_Double) 25.79/11.08 new_esEs28(x0, x1, ty_Char) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_Float, x2) 25.79/11.08 new_sr(x0, x1) 25.79/11.08 new_esEs10(x0, x1, ty_Integer) 25.79/11.08 new_esEs28(x0, x1, ty_Int) 25.79/11.08 new_ltEs19(x0, x1, ty_Double) 25.79/11.08 new_esEs15(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs23(x0, x1, ty_Double) 25.79/11.08 new_esEs26(x0, x1, ty_@0) 25.79/11.08 new_compare28(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs31(x0, x1, ty_Ordering) 25.79/11.08 new_esEs23(x0, x1, ty_Char) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_Ordering) 25.79/11.08 new_esEs19(True, True) 25.79/11.08 new_primCmpNat0(Succ(x0), Zero) 25.79/11.08 new_compare12(@0, @0) 25.79/11.08 new_compare13(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 25.79/11.08 new_esEs23(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_primMulInt(Pos(x0), Pos(x1)) 25.79/11.08 new_compare112(x0, x1, False) 25.79/11.08 new_lt13(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_lt12(x0, x1, ty_Float) 25.79/11.08 new_ltEs19(x0, x1, ty_Char) 25.79/11.08 new_primCmpInt(Pos(Zero), Pos(Zero)) 25.79/11.08 new_lt21(x0, x1, ty_Char) 25.79/11.08 new_esEs31(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs30(x0, x1, x2, x3, False, x4, x5) 25.79/11.08 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_compare13(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 25.79/11.08 new_esEs29(x0, x1, ty_Int) 25.79/11.08 new_ltEs4(Right(x0), Right(x1), x2, ty_@0) 25.79/11.08 new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_esEs16(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_compare28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs24(x0, x1, ty_Int) 25.79/11.08 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs31(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_lt21(x0, x1, ty_Float) 25.79/11.08 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs6(Just(x0), Just(x1), ty_@0) 25.79/11.08 new_lt20(x0, x1, ty_Float) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 25.79/11.08 new_esEs25(x0, x1, ty_Int) 25.79/11.08 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_ltEs20(x0, x1, ty_@0) 25.79/11.08 new_compare110(x0, x1, True) 25.79/11.08 new_esEs27(x0, x1, ty_@0) 25.79/11.08 new_esEs29(x0, x1, ty_Char) 25.79/11.08 new_esEs24(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_lt20(x0, x1, ty_Ordering) 25.79/11.08 new_lt13(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_esEs13(LT, GT) 25.79/11.08 new_esEs13(GT, LT) 25.79/11.08 new_primMulInt(Neg(x0), Neg(x1)) 25.79/11.08 new_esEs29(x0, x1, ty_Float) 25.79/11.08 new_primMulInt(Pos(x0), Neg(x1)) 25.79/11.08 new_primMulInt(Neg(x0), Pos(x1)) 25.79/11.08 new_esEs24(x0, x1, ty_Char) 25.79/11.08 new_ltEs18(x0, x1, ty_Double) 25.79/11.08 new_esEs29(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_compare26(x0, x1, True) 25.79/11.08 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_lt19(x0, x1, x2, x3, x4) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 25.79/11.08 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare15(x0, x1, False, x2, x3) 25.79/11.08 new_esEs10(x0, x1, ty_Int) 25.79/11.08 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 25.79/11.08 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 25.79/11.08 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 25.79/11.08 new_lt12(x0, x1, ty_Double) 25.79/11.08 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_esEs31(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_compare29(x0, x1, x2, x3) 25.79/11.08 new_lt13(x0, x1, ty_Integer) 25.79/11.08 new_esEs15(x0, x1, ty_Ordering) 25.79/11.08 new_esEs25(x0, x1, ty_Float) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 25.79/11.08 new_esEs25(x0, x1, ty_Ordering) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_@0) 25.79/11.08 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 25.79/11.08 new_ltEs14(Nothing, Just(x0), x1) 25.79/11.08 new_esEs32(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs31(x0, x1, ty_Bool) 25.79/11.08 new_primEqNat0(Zero, Zero) 25.79/11.08 new_ltEs19(x0, x1, ty_Integer) 25.79/11.08 new_ltEs10(x0, x1) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 25.79/11.08 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 25.79/11.08 new_esEs23(x0, x1, ty_Ordering) 25.79/11.08 new_esEs31(x0, x1, ty_Char) 25.79/11.08 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 25.79/11.08 new_not(False) 25.79/11.08 new_esEs13(EQ, GT) 25.79/11.08 new_esEs13(GT, EQ) 25.79/11.08 new_esEs16(x0, x1, ty_Int) 25.79/11.08 new_lt9(x0, x1) 25.79/11.08 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 25.79/11.08 new_esEs28(x0, x1, ty_Ordering) 25.79/11.08 new_ltEs11(GT, LT) 25.79/11.08 new_ltEs11(LT, GT) 25.79/11.08 new_ltEs17(False, False) 25.79/11.08 new_lt20(x0, x1, ty_Integer) 25.79/11.08 new_primCompAux0(x0, GT) 25.79/11.08 new_lt13(x0, x1, app(ty_[], x2)) 25.79/11.08 new_asAs(True, x0) 25.79/11.08 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare0([], [], x0) 25.79/11.08 new_esEs31(x0, x1, ty_Int) 25.79/11.08 new_ltEs14(Just(x0), Just(x1), ty_Double) 25.79/11.08 new_esEs16(x0, x1, ty_Char) 25.79/11.08 new_compare28(x0, x1, ty_Double) 25.79/11.08 new_esEs28(x0, x1, ty_Integer) 25.79/11.08 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 25.79/11.08 new_compare24(x0, x1, True, x2, x3, x4) 25.79/11.08 new_esEs15(x0, x1, app(ty_Maybe, x2)) 25.79/11.08 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 25.79/11.08 new_primPlusNat1(Succ(x0), Succ(x1)) 25.79/11.08 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_ltEs19(x0, x1, ty_Ordering) 25.79/11.08 new_esEs25(x0, x1, ty_Char) 25.79/11.08 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 25.79/11.08 new_esEs21([], [], x0) 25.79/11.08 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 25.79/11.08 new_esEs24(x0, x1, ty_Float) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_Integer, x2) 25.79/11.08 new_ltEs11(GT, EQ) 25.79/11.08 new_ltEs11(EQ, GT) 25.79/11.08 new_esEs25(x0, x1, ty_Bool) 25.79/11.08 new_lt12(x0, x1, app(app(ty_Either, x2), x3)) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), ty_Ordering, x2) 25.79/11.08 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 25.79/11.08 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 25.79/11.08 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 25.79/11.08 new_esEs16(x0, x1, ty_Float) 25.79/11.08 new_ltEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 25.79/11.08 new_esEs31(x0, x1, ty_Float) 25.79/11.08 new_compare28(x0, x1, ty_@0) 25.79/11.08 new_esEs23(x0, x1, app(ty_[], x2)) 25.79/11.08 new_esEs15(x0, x1, app(ty_Ratio, x2)) 25.79/11.08 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 25.79/11.08 new_primCmpNat0(Zero, Zero) 25.79/11.08 new_compare0(:(x0, x1), :(x2, x3), x4) 25.79/11.08 new_compare19(x0, x1, False, x2) 25.79/11.08 25.79/11.08 We have to consider all minimal (P,Q,R)-chains. 25.79/11.08 ---------------------------------------- 25.79/11.08 25.79/11.08 (26) QDPSizeChangeProof (EQUIVALENT) 25.79/11.08 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.79/11.08 25.79/11.08 From the DPs we obtained the following set of size-change graphs: 25.79/11.08 *new_lookupFM(Branch(@2(vyw300, vyw301), vyw31, vyw32, vyw33, vyw34), @2(vyw40, vyw41), bc, bd, be) -> new_lookupFM2(vyw300, vyw301, vyw31, vyw32, vyw33, vyw34, vyw40, vyw41, new_esEs30(vyw40, vyw41, vyw300, vyw301, new_esEs31(vyw40, vyw300, bd), bd, be), bc, bd, be) 25.79/11.08 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 10, 4 >= 11, 5 >= 12 25.79/11.08 25.79/11.08 25.79/11.08 *new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs13(new_compare211(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs16(vyw21, vyw15, ba), new_esEs15(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) 25.79/11.08 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 25.79/11.08 25.79/11.08 25.79/11.08 *new_lookupFM2(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw19, @2(vyw21, vyw22), h, ba, bb) 25.79/11.08 The graph contains the following edges 5 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 25.79/11.08 25.79/11.08 25.79/11.08 *new_lookupFM1(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_lookupFM(vyw20, @2(vyw21, vyw22), h, ba, bb) 25.79/11.08 The graph contains the following edges 6 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 25.79/11.08 25.79/11.08 25.79/11.08 ---------------------------------------- 25.79/11.08 25.79/11.08 (27) 25.79/11.08 YES 25.79/11.08 25.79/11.08 ---------------------------------------- 25.79/11.08 25.79/11.08 (28) 25.79/11.08 Obligation: 25.79/11.08 Q DP problem: 25.79/11.08 The TRS P consists of the following rules: 25.79/11.08 25.79/11.08 new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) 25.79/11.08 25.79/11.08 R is empty. 25.79/11.08 Q is empty. 25.79/11.08 We have to consider all minimal (P,Q,R)-chains. 25.79/11.08 ---------------------------------------- 25.79/11.08 25.79/11.08 (29) QDPSizeChangeProof (EQUIVALENT) 25.79/11.08 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.79/11.08 25.79/11.08 From the DPs we obtained the following set of size-change graphs: 25.79/11.08 *new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) 25.79/11.08 The graph contains the following edges 1 > 1, 2 >= 2 25.79/11.08 25.79/11.08 25.79/11.08 ---------------------------------------- 25.79/11.08 25.79/11.08 (30) 25.79/11.08 YES 25.79/11.08 25.79/11.08 ---------------------------------------- 25.79/11.08 25.79/11.08 (31) 25.79/11.08 Obligation: 25.79/11.08 Q DP problem: 25.79/11.08 The TRS P consists of the following rules: 25.79/11.08 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_[], bf)) -> new_esEs1(vyw401, vyw3001, bf) 25.79/11.08 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bbc)) -> new_esEs1(vyw400, vyw3000, bbc) 25.79/11.08 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vyw400, vyw3000, bcg, bch) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_Maybe, fh), fb) -> new_esEs2(vyw401, vyw3001, fh) 25.79/11.08 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bac)) -> new_esEs2(vyw400, vyw3000, bac) 25.79/11.08 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bdg)) -> new_esEs1(vyw400, vyw3000, bdg) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, ha), df, fb) -> new_esEs2(vyw400, vyw3000, ha) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_Either, ga), gb), fb) -> new_esEs3(vyw401, vyw3001, ga, gb) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(vyw401, vyw3001, fc, fd, ff) 25.79/11.08 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, baf), bag)) -> new_esEs(vyw400, vyw3000, baf, bag) 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, cb), cc), cd) -> new_esEs(vyw400, vyw3000, cb, cc) 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(vyw401, vyw3001, bc, bd, be) 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], da), cd) -> new_esEs1(vyw400, vyw3000, da) 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_Maybe, bg)) -> new_esEs2(vyw401, vyw3001, bg) 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, dc), dd), cd) -> new_esEs3(vyw400, vyw3000, dc, dd) 25.79/11.08 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 25.79/11.08 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, bad), bae)) -> new_esEs3(vyw400, vyw3000, bad, bae) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(vyw400, vyw3000, gc, gd) 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, db), cd) -> new_esEs2(vyw400, vyw3000, db) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_Either, ef), eg)) -> new_esEs3(vyw402, vyw3002, ef, eg) 25.79/11.08 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(vyw402, vyw3002, ea, eb, ec) 25.79/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_@2, ba), bb)) -> new_esEs(vyw401, vyw3001, ba, bb) 25.79/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_Maybe, ee)) -> new_esEs2(vyw402, vyw3002, ee) 26.03/11.08 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 26.03/11.08 new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw400, vyw3000, bcb, bcc, bcd) 26.03/11.08 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vyw400, vyw3000, bbg, bbh) 26.03/11.08 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bca) -> new_esEs2(vyw400, vyw3000, bcf) 26.03/11.08 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bce), bca) -> new_esEs1(vyw400, vyw3000, bce) 26.03/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_Either, bh), ca)) -> new_esEs3(vyw401, vyw3001, bh, ca) 26.03/11.08 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), hd) -> new_esEs1(vyw401, vyw3001, hd) 26.03/11.08 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(vyw400, vyw3000, hg, hh, baa) 26.03/11.08 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(vyw400, vyw3000, bdd, bde, bdf) 26.03/11.08 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, he), hf)) -> new_esEs(vyw400, vyw3000, he, hf) 26.03/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(vyw401, vyw3001, eh, fa) 26.03/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_[], fg), fb) -> new_esEs1(vyw401, vyw3001, fg) 26.03/11.08 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bab)) -> new_esEs1(vyw400, vyw3000, bab) 26.03/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(vyw402, vyw3002, dg, dh) 26.03/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], gh), df, fb) -> new_esEs1(vyw400, vyw3000, gh) 26.03/11.08 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) 26.03/11.08 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vyw400, vyw3000, bdb, bdc) 26.03/11.08 new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw400, vyw3000, bah, bba, bbb) 26.03/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(vyw400, vyw3000, ge, gf, gg) 26.03/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_[], ed)) -> new_esEs1(vyw402, vyw3002, ed) 26.03/11.08 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, hb), hc), df, fb) -> new_esEs3(vyw400, vyw3000, hb, hc) 26.03/11.08 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 26.03/11.08 26.03/11.08 R is empty. 26.03/11.08 Q is empty. 26.03/11.08 We have to consider all minimal (P,Q,R)-chains. 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (32) QDPSizeChangeProof (EQUIVALENT) 26.03/11.08 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. 26.03/11.08 26.03/11.08 From the DPs we obtained the following set of size-change graphs: 26.03/11.08 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, he), hf)) -> new_esEs(vyw400, vyw3000, he, hf) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bac)) -> new_esEs2(vyw400, vyw3000, bac) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, bad), bae)) -> new_esEs3(vyw400, vyw3000, bad, bae) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(vyw400, vyw3000, hg, hh, baa) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, baf), bag)) -> new_esEs(vyw400, vyw3000, baf, bag) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw400, vyw3000, bah, bba, bbb) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bbc)) -> new_esEs1(vyw400, vyw3000, bbc) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), hd) -> new_esEs1(vyw401, vyw3001, hd) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bab)) -> new_esEs1(vyw400, vyw3000, bab) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vyw400, vyw3000, bbg, bbh) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vyw400, vyw3000, bdb, bdc) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(vyw400, vyw3000, gc, gd) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(vyw401, vyw3001, eh, fa) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(vyw402, vyw3002, dg, dh) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, cb), cc), cd) -> new_esEs(vyw400, vyw3000, cb, cc) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_@2, ba), bb)) -> new_esEs(vyw401, vyw3001, ba, bb) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bca) -> new_esEs2(vyw400, vyw3000, bcf) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_Maybe, fh), fb) -> new_esEs2(vyw401, vyw3001, fh) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, ha), df, fb) -> new_esEs2(vyw400, vyw3000, ha) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_Maybe, ee)) -> new_esEs2(vyw402, vyw3002, ee) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_Maybe, bg)) -> new_esEs2(vyw401, vyw3001, bg) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, db), cd) -> new_esEs2(vyw400, vyw3000, db) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vyw400, vyw3000, bcg, bch) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw400, vyw3000, bcb, bcc, bcd) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(vyw400, vyw3000, bdd, bde, bdf) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bdg)) -> new_esEs1(vyw400, vyw3000, bdg) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bce), bca) -> new_esEs1(vyw400, vyw3000, bce) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_Either, ga), gb), fb) -> new_esEs3(vyw401, vyw3001, ga, gb) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_Either, ef), eg)) -> new_esEs3(vyw402, vyw3002, ef, eg) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, hb), hc), df, fb) -> new_esEs3(vyw400, vyw3000, hb, hc) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, dc), dd), cd) -> new_esEs3(vyw400, vyw3000, dc, dd) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_Either, bh), ca)) -> new_esEs3(vyw401, vyw3001, bh, ca) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(vyw401, vyw3001, fc, fd, ff) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(vyw402, vyw3002, ea, eb, ec) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(vyw400, vyw3000, ge, gf, gg) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(vyw401, vyw3001, bc, bd, be) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_[], fg), fb) -> new_esEs1(vyw401, vyw3001, fg) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], gh), df, fb) -> new_esEs1(vyw400, vyw3000, gh) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_[], ed)) -> new_esEs1(vyw402, vyw3002, ed) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_[], bf)) -> new_esEs1(vyw401, vyw3001, bf) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.03/11.08 26.03/11.08 26.03/11.08 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], da), cd) -> new_esEs1(vyw400, vyw3000, da) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.03/11.08 26.03/11.08 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (33) 26.03/11.08 YES 26.03/11.08 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (34) 26.03/11.08 Obligation: 26.03/11.08 Q DP problem: 26.03/11.08 The TRS P consists of the following rules: 26.03/11.08 26.03/11.08 new_primPlusNat(Succ(vyw7700), Succ(vyw3000000)) -> new_primPlusNat(vyw7700, vyw3000000) 26.03/11.08 26.03/11.08 R is empty. 26.03/11.08 Q is empty. 26.03/11.08 We have to consider all minimal (P,Q,R)-chains. 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (35) QDPSizeChangeProof (EQUIVALENT) 26.03/11.08 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. 26.03/11.08 26.03/11.08 From the DPs we obtained the following set of size-change graphs: 26.03/11.08 *new_primPlusNat(Succ(vyw7700), Succ(vyw3000000)) -> new_primPlusNat(vyw7700, vyw3000000) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2 26.03/11.08 26.03/11.08 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (36) 26.03/11.08 YES 26.03/11.08 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (37) 26.03/11.08 Obligation: 26.03/11.08 Q DP problem: 26.03/11.08 The TRS P consists of the following rules: 26.03/11.08 26.03/11.08 new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 26.03/11.08 26.03/11.08 R is empty. 26.03/11.08 Q is empty. 26.03/11.08 We have to consider all minimal (P,Q,R)-chains. 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (38) QDPSizeChangeProof (EQUIVALENT) 26.03/11.08 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. 26.03/11.08 26.03/11.08 From the DPs we obtained the following set of size-change graphs: 26.03/11.08 *new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 26.03/11.08 The graph contains the following edges 1 > 1, 2 > 2 26.03/11.08 26.03/11.08 26.03/11.08 ---------------------------------------- 26.03/11.08 26.03/11.08 (39) 26.03/11.08 YES 26.03/11.13 EOF