19.39/8.50 YES 22.66/9.38 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 22.66/9.38 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 22.66/9.38 22.66/9.38 22.66/9.38 H-Termination with start terms of the given HASKELL could be proven: 22.66/9.38 22.66/9.38 (0) HASKELL 22.66/9.38 (1) LR [EQUIVALENT, 0 ms] 22.66/9.38 (2) HASKELL 22.66/9.38 (3) CR [EQUIVALENT, 0 ms] 22.66/9.38 (4) HASKELL 22.66/9.38 (5) IFR [EQUIVALENT, 0 ms] 22.66/9.38 (6) HASKELL 22.66/9.38 (7) BR [EQUIVALENT, 14 ms] 22.66/9.38 (8) HASKELL 22.66/9.38 (9) COR [EQUIVALENT, 0 ms] 22.66/9.38 (10) HASKELL 22.66/9.38 (11) LetRed [EQUIVALENT, 0 ms] 22.66/9.38 (12) HASKELL 22.66/9.38 (13) NumRed [SOUND, 9 ms] 22.66/9.38 (14) HASKELL 22.66/9.38 (15) Narrow [SOUND, 0 ms] 22.66/9.38 (16) AND 22.66/9.38 (17) QDP 22.66/9.38 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.66/9.38 (19) YES 22.66/9.38 (20) QDP 22.66/9.38 (21) DependencyGraphProof [EQUIVALENT, 0 ms] 22.66/9.38 (22) AND 22.66/9.38 (23) QDP 22.66/9.38 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.66/9.38 (25) YES 22.66/9.38 (26) QDP 22.66/9.38 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.66/9.38 (28) YES 22.66/9.38 (29) QDP 22.66/9.38 (30) QDPSizeChangeProof [EQUIVALENT, 45 ms] 22.66/9.38 (31) YES 22.66/9.38 (32) QDP 22.66/9.38 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.66/9.38 (34) YES 22.66/9.38 (35) QDP 22.66/9.38 (36) QDPSizeChangeProof [EQUIVALENT, 2 ms] 22.66/9.38 (37) YES 22.66/9.38 (38) QDP 22.66/9.38 (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.66/9.38 (40) YES 22.66/9.38 (41) QDP 22.66/9.38 (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.66/9.38 (43) YES 22.66/9.38 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (0) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap a b where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap a b -> [(a,b)]; 22.66/9.38 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 22.66/9.38 22.66/9.38 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 22.66/9.38 lookupFM EmptyFM key = Nothing; 22.66/9.38 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 22.66/9.38 | key_to_find > key = lookupFM fm_r key_to_find 22.66/9.38 | otherwise = Just elt; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap a b -> Int; 22.66/9.38 sizeFM EmptyFM = 0; 22.66/9.38 sizeFM (Branch _ _ size _ _) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (1) LR (EQUIVALENT) 22.66/9.38 Lambda Reductions: 22.66/9.38 The following Lambda expression 22.66/9.38 "\keyeltrest->(key,elt) : rest" 22.66/9.38 is transformed to 22.66/9.38 "fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 " 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (2) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap a b -> [(a,b)]; 22.66/9.38 fmToList fm = foldFM fmToList0 [] fm; 22.66/9.38 22.66/9.38 fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 22.66/9.38 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 22.66/9.38 lookupFM EmptyFM key = Nothing; 22.66/9.38 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 22.66/9.38 | key_to_find > key = lookupFM fm_r key_to_find 22.66/9.38 | otherwise = Just elt; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap b a -> Int; 22.66/9.38 sizeFM EmptyFM = 0; 22.66/9.38 sizeFM (Branch _ _ size _ _) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (3) CR (EQUIVALENT) 22.66/9.38 Case Reductions: 22.66/9.38 The following Case expression 22.66/9.38 "case compare x y of { 22.66/9.38 EQ -> o; 22.66/9.38 LT -> LT; 22.66/9.38 GT -> GT} 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "primCompAux0 o EQ = o; 22.66/9.38 primCompAux0 o LT = LT; 22.66/9.38 primCompAux0 o GT = GT; 22.66/9.38 " 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (4) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap a b where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap b a -> [(b,a)]; 22.66/9.38 fmToList fm = foldFM fmToList0 [] fm; 22.66/9.38 22.66/9.38 fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 22.66/9.38 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 22.66/9.38 lookupFM EmptyFM key = Nothing; 22.66/9.38 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 22.66/9.38 | key_to_find > key = lookupFM fm_r key_to_find 22.66/9.38 | otherwise = Just elt; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap b a -> Int; 22.66/9.38 sizeFM EmptyFM = 0; 22.66/9.38 sizeFM (Branch _ _ size _ _) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (5) IFR (EQUIVALENT) 22.66/9.38 If Reductions: 22.66/9.38 The following If expression 22.66/9.38 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 22.66/9.38 is transformed to 22.66/9.38 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 22.66/9.38 primDivNatS0 x y False = Zero; 22.66/9.38 " 22.66/9.38 The following If expression 22.66/9.38 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 22.66/9.38 is transformed to 22.66/9.38 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 22.66/9.38 primModNatS0 x y False = Succ x; 22.66/9.38 " 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (6) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap a b -> [(a,b)]; 22.66/9.38 fmToList fm = foldFM fmToList0 [] fm; 22.66/9.38 22.66/9.38 fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 22.66/9.38 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 22.66/9.38 lookupFM EmptyFM key = Nothing; 22.66/9.38 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 22.66/9.38 | key_to_find > key = lookupFM fm_r key_to_find 22.66/9.38 | otherwise = Just elt; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap b a -> Int; 22.66/9.38 sizeFM EmptyFM = 0; 22.66/9.38 sizeFM (Branch _ _ size _ _) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (7) BR (EQUIVALENT) 22.66/9.38 Replaced joker patterns by fresh variables and removed binding patterns. 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (8) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap a b -> [(a,b)]; 22.66/9.38 fmToList fm = foldFM fmToList0 [] fm; 22.66/9.38 22.66/9.38 fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 22.66/9.38 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 22.66/9.38 lookupFM EmptyFM key = Nothing; 22.66/9.38 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 22.66/9.38 | key_to_find > key = lookupFM fm_r key_to_find 22.66/9.38 | otherwise = Just elt; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap a b -> Int; 22.66/9.38 sizeFM EmptyFM = 0; 22.66/9.38 sizeFM (Branch zz vuu size vuv vuw) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (9) COR (EQUIVALENT) 22.66/9.38 Cond Reductions: 22.66/9.38 The following Function with conditions 22.66/9.38 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "compare x y = compare3 x y; 22.66/9.38 " 22.66/9.38 "compare2 x y True = EQ; 22.66/9.38 compare2 x y False = compare1 x y (x <= y); 22.66/9.38 " 22.66/9.38 "compare1 x y True = LT; 22.66/9.38 compare1 x y False = compare0 x y otherwise; 22.66/9.38 " 22.66/9.38 "compare0 x y True = GT; 22.66/9.38 " 22.66/9.38 "compare3 x y = compare2 x y (x == y); 22.66/9.38 " 22.66/9.38 The following Function with conditions 22.66/9.38 "absReal x|x >= 0x|otherwise`negate` x; 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "absReal x = absReal2 x; 22.66/9.38 " 22.66/9.38 "absReal1 x True = x; 22.66/9.38 absReal1 x False = absReal0 x otherwise; 22.66/9.38 " 22.66/9.38 "absReal0 x True = `negate` x; 22.66/9.38 " 22.66/9.38 "absReal2 x = absReal1 x (x >= 0); 22.66/9.38 " 22.66/9.38 The following Function with conditions 22.66/9.38 "gcd' x 0 = x; 22.66/9.38 gcd' x y = gcd' y (x `rem` y); 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "gcd' x vuy = gcd'2 x vuy; 22.66/9.38 gcd' x y = gcd'0 x y; 22.66/9.38 " 22.66/9.38 "gcd'0 x y = gcd' y (x `rem` y); 22.66/9.38 " 22.66/9.38 "gcd'1 True x vuy = x; 22.66/9.38 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 22.66/9.38 " 22.66/9.38 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 22.66/9.38 gcd'2 vvw vvx = gcd'0 vvw vvx; 22.66/9.38 " 22.66/9.38 The following Function with conditions 22.66/9.38 "gcd 0 0 = error []; 22.66/9.38 gcd x y = gcd' (abs x) (abs y) where { 22.66/9.38 gcd' x 0 = x; 22.66/9.38 gcd' x y = gcd' y (x `rem` y); 22.66/9.38 } 22.66/9.38 ; 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "gcd vvy vvz = gcd3 vvy vvz; 22.66/9.38 gcd x y = gcd0 x y; 22.66/9.38 " 22.66/9.38 "gcd0 x y = gcd' (abs x) (abs y) where { 22.66/9.38 gcd' x vuy = gcd'2 x vuy; 22.66/9.38 gcd' x y = gcd'0 x y; 22.66/9.38 ; 22.66/9.38 gcd'0 x y = gcd' y (x `rem` y); 22.66/9.38 ; 22.66/9.38 gcd'1 True x vuy = x; 22.66/9.38 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 22.66/9.38 ; 22.66/9.38 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 22.66/9.38 gcd'2 vvw vvx = gcd'0 vvw vvx; 22.66/9.38 } 22.66/9.38 ; 22.66/9.38 " 22.66/9.38 "gcd1 True vvy vvz = error []; 22.66/9.38 gcd1 vwu vwv vww = gcd0 vwv vww; 22.66/9.38 " 22.66/9.38 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 22.66/9.38 gcd2 vwx vwy vwz = gcd0 vwy vwz; 22.66/9.38 " 22.66/9.38 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 22.66/9.38 gcd3 vxu vxv = gcd0 vxu vxv; 22.66/9.38 " 22.66/9.38 The following Function with conditions 22.66/9.38 "undefined |Falseundefined; 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "undefined = undefined1; 22.66/9.38 " 22.66/9.38 "undefined0 True = undefined; 22.66/9.38 " 22.66/9.38 "undefined1 = undefined0 False; 22.66/9.38 " 22.66/9.38 The following Function with conditions 22.66/9.38 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 22.66/9.38 d = gcd x y; 22.66/9.38 } 22.66/9.38 ; 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "reduce x y = reduce2 x y; 22.66/9.38 " 22.66/9.38 "reduce2 x y = reduce1 x y (y == 0) where { 22.66/9.38 d = gcd x y; 22.66/9.38 ; 22.66/9.38 reduce0 x y True = x `quot` d :% (y `quot` d); 22.66/9.38 ; 22.66/9.38 reduce1 x y True = error []; 22.66/9.38 reduce1 x y False = reduce0 x y otherwise; 22.66/9.38 } 22.66/9.38 ; 22.66/9.38 " 22.66/9.38 The following Function with conditions 22.66/9.38 "lookupFM EmptyFM key = Nothing; 22.66/9.38 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; 22.66/9.38 " 22.66/9.38 is transformed to 22.66/9.38 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 22.66/9.38 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 22.66/9.38 " 22.66/9.38 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 22.66/9.38 " 22.66/9.38 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 22.66/9.38 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 22.66/9.38 " 22.66/9.38 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 22.66/9.38 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); 22.66/9.38 " 22.66/9.38 "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); 22.66/9.38 " 22.66/9.38 "lookupFM4 EmptyFM key = Nothing; 22.66/9.38 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 22.66/9.38 " 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (10) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap b a -> [(b,a)]; 22.66/9.38 fmToList fm = foldFM fmToList0 [] fm; 22.66/9.38 22.66/9.38 fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 22.66/9.38 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 22.66/9.38 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 22.66/9.38 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 22.66/9.38 22.66/9.38 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 22.66/9.38 22.66/9.38 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 22.66/9.38 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 22.66/9.38 22.66/9.38 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 22.66/9.38 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); 22.66/9.38 22.66/9.38 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); 22.66/9.38 22.66/9.38 lookupFM4 EmptyFM key = Nothing; 22.66/9.38 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap a b -> Int; 22.66/9.38 sizeFM EmptyFM = 0; 22.66/9.38 sizeFM (Branch zz vuu size vuv vuw) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (11) LetRed (EQUIVALENT) 22.66/9.38 Let/Where Reductions: 22.66/9.38 The bindings of the following Let/Where expression 22.66/9.38 "gcd' (abs x) (abs y) where { 22.66/9.38 gcd' x vuy = gcd'2 x vuy; 22.66/9.38 gcd' x y = gcd'0 x y; 22.66/9.38 ; 22.66/9.38 gcd'0 x y = gcd' y (x `rem` y); 22.66/9.38 ; 22.66/9.38 gcd'1 True x vuy = x; 22.66/9.38 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 22.66/9.38 ; 22.66/9.38 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 22.66/9.38 gcd'2 vvw vvx = gcd'0 vvw vvx; 22.66/9.38 } 22.66/9.38 " 22.66/9.38 are unpacked to the following functions on top level 22.66/9.38 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 22.66/9.38 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 22.66/9.38 " 22.66/9.38 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 22.66/9.38 " 22.66/9.38 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 22.66/9.38 gcd0Gcd' x y = gcd0Gcd'0 x y; 22.66/9.38 " 22.66/9.38 "gcd0Gcd'1 True x vuy = x; 22.66/9.38 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 22.66/9.38 " 22.66/9.38 The bindings of the following Let/Where expression 22.66/9.38 "reduce1 x y (y == 0) where { 22.66/9.38 d = gcd x y; 22.66/9.38 ; 22.66/9.38 reduce0 x y True = x `quot` d :% (y `quot` d); 22.66/9.38 ; 22.66/9.38 reduce1 x y True = error []; 22.66/9.38 reduce1 x y False = reduce0 x y otherwise; 22.66/9.38 } 22.66/9.38 " 22.66/9.38 are unpacked to the following functions on top level 22.66/9.38 "reduce2D vyu vyv = gcd vyu vyv; 22.66/9.38 " 22.66/9.38 "reduce2Reduce1 vyu vyv x y True = error []; 22.66/9.38 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 22.66/9.38 " 22.66/9.38 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 22.66/9.38 " 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (12) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap b a -> [(b,a)]; 22.66/9.38 fmToList fm = foldFM fmToList0 [] fm; 22.66/9.38 22.66/9.38 fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 22.66/9.38 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 22.66/9.38 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 22.66/9.38 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 22.66/9.38 22.66/9.38 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 22.66/9.38 22.66/9.38 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 22.66/9.38 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 22.66/9.38 22.66/9.38 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 22.66/9.38 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); 22.66/9.38 22.66/9.38 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); 22.66/9.38 22.66/9.38 lookupFM4 EmptyFM key = Nothing; 22.66/9.38 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap b a -> Int; 22.66/9.38 sizeFM EmptyFM = 0; 22.66/9.38 sizeFM (Branch zz vuu size vuv vuw) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (13) NumRed (SOUND) 22.66/9.38 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (14) 22.66/9.38 Obligation: 22.66/9.38 mainModule Main 22.66/9.38 module FiniteMap where { 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 22.66/9.38 22.66/9.38 instance (Eq a, Eq b) => Eq FiniteMap b a where { 22.66/9.38 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 22.66/9.38 } 22.66/9.38 fmToList :: FiniteMap b a -> [(b,a)]; 22.66/9.38 fmToList fm = foldFM fmToList0 [] fm; 22.66/9.38 22.66/9.38 fmToList0 key elt rest = (key,elt) : rest; 22.66/9.38 22.66/9.38 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 22.66/9.38 foldFM k z EmptyFM = z; 22.66/9.38 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 22.66/9.38 22.66/9.38 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 22.66/9.38 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 22.66/9.38 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 22.66/9.38 22.66/9.38 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 22.66/9.38 22.66/9.38 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 22.66/9.38 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 22.66/9.38 22.66/9.38 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 22.66/9.38 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); 22.66/9.38 22.66/9.38 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); 22.66/9.38 22.66/9.38 lookupFM4 EmptyFM key = Nothing; 22.66/9.38 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 22.66/9.38 22.66/9.38 sizeFM :: FiniteMap a b -> Int; 22.66/9.38 sizeFM EmptyFM = Pos Zero; 22.66/9.38 sizeFM (Branch zz vuu size vuv vuw) = size; 22.66/9.38 22.66/9.38 } 22.66/9.38 module Maybe where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Main; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 module Main where { 22.66/9.38 import qualified FiniteMap; 22.66/9.38 import qualified Maybe; 22.66/9.38 import qualified Prelude; 22.66/9.38 } 22.66/9.38 22.66/9.38 ---------------------------------------- 22.66/9.38 22.66/9.38 (15) Narrow (SOUND) 22.66/9.38 Haskell To QDPs 22.66/9.38 22.66/9.38 digraph dp_graph { 22.66/9.38 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.lookupFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 22.66/9.38 3[label="FiniteMap.lookupFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 22.66/9.38 4[label="FiniteMap.lookupFM vyw3 vyw4",fontsize=16,color="burlywood",shape="triangle"];3721[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3721[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3721 -> 5[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3722[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3722[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3722 -> 6[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 5[label="FiniteMap.lookupFM FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 22.66/9.38 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]; 22.66/9.38 7[label="FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 22.66/9.38 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]; 22.66/9.38 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]; 22.66/9.38 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]; 22.66/9.38 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]; 22.66/9.38 13[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare2 vyw4 vyw30 (vyw4 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3723[label="vyw4/Left vyw40",fontsize=10,color="white",style="solid",shape="box"];13 -> 3723[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3723 -> 14[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3724[label="vyw4/Right vyw40",fontsize=10,color="white",style="solid",shape="box"];13 -> 3724[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3724 -> 15[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 14[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) vyw30 (Left vyw40 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3725[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];14 -> 3725[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3725 -> 16[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3726[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];14 -> 3726[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3726 -> 17[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 15[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) vyw30 (Right vyw40 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3727[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];15 -> 3727[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3727 -> 18[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3728[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];15 -> 3728[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3728 -> 19[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 16[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Left vyw300) (Left vyw40 == Left vyw300) == LT)",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 22.66/9.38 17[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Right vyw300) (Left vyw40 == Right vyw300) == LT)",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 22.66/9.38 18[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Left vyw300) (Right vyw40 == Left vyw300) == LT)",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 22.66/9.38 19[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Right vyw300) (Right vyw40 == Right vyw300) == LT)",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 22.66/9.38 20 -> 182[label="",style="dashed", color="red", weight=0]; 22.66/9.38 20[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300) == LT)",fontsize=16,color="magenta"];20 -> 183[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 20 -> 184[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 20 -> 185[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 20 -> 186[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 20 -> 187[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 20 -> 188[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 20 -> 189[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 21 -> 98[label="",style="dashed", color="red", weight=0]; 22.66/9.38 21[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Right vyw300) False == LT)",fontsize=16,color="magenta"];21 -> 99[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 22 -> 106[label="",style="dashed", color="red", weight=0]; 22.66/9.38 22[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Left vyw300) False == LT)",fontsize=16,color="magenta"];22 -> 107[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 23 -> 204[label="",style="dashed", color="red", weight=0]; 22.66/9.38 23[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300) == LT)",fontsize=16,color="magenta"];23 -> 205[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 23 -> 206[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 23 -> 207[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 23 -> 208[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 23 -> 209[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 23 -> 210[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 23 -> 211[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 183[label="vyw300",fontsize=16,color="green",shape="box"];184[label="vyw33",fontsize=16,color="green",shape="box"];185[label="vyw40",fontsize=16,color="green",shape="box"];186 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 186[label="compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300) == LT",fontsize=16,color="magenta"];186 -> 193[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 186 -> 194[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 187[label="vyw34",fontsize=16,color="green",shape="box"];188[label="vyw31",fontsize=16,color="green",shape="box"];189[label="vyw32",fontsize=16,color="green",shape="box"];182[label="FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) vyw37",fontsize=16,color="burlywood",shape="triangle"];3729[label="vyw37/False",fontsize=10,color="white",style="solid",shape="box"];182 -> 3729[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3729 -> 195[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3730[label="vyw37/True",fontsize=10,color="white",style="solid",shape="box"];182 -> 3730[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3730 -> 196[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 99 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 99[label="compare2 (Left vyw40) (Right vyw300) False == LT",fontsize=16,color="magenta"];99 -> 102[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 99 -> 103[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 98[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) vyw35",fontsize=16,color="burlywood",shape="triangle"];3731[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];98 -> 3731[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3731 -> 104[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3732[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];98 -> 3732[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3732 -> 105[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 107 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 107[label="compare2 (Right vyw40) (Left vyw300) False == LT",fontsize=16,color="magenta"];107 -> 110[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 107 -> 111[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 106[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) vyw36",fontsize=16,color="burlywood",shape="triangle"];3733[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];106 -> 3733[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3733 -> 112[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3734[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];106 -> 3734[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3734 -> 113[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 205[label="vyw31",fontsize=16,color="green",shape="box"];206[label="vyw33",fontsize=16,color="green",shape="box"];207[label="vyw40",fontsize=16,color="green",shape="box"];208[label="vyw32",fontsize=16,color="green",shape="box"];209[label="vyw300",fontsize=16,color="green",shape="box"];210 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 210[label="compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300) == LT",fontsize=16,color="magenta"];210 -> 215[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 210 -> 216[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 211[label="vyw34",fontsize=16,color="green",shape="box"];204[label="FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) vyw38",fontsize=16,color="burlywood",shape="triangle"];3735[label="vyw38/False",fontsize=10,color="white",style="solid",shape="box"];204 -> 3735[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3735 -> 217[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3736[label="vyw38/True",fontsize=10,color="white",style="solid",shape="box"];204 -> 3736[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3736 -> 218[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 193[label="LT",fontsize=16,color="green",shape="box"];194 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.38 194[label="compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];194 -> 1856[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 194 -> 1857[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 194 -> 1858[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 48[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3737[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];48 -> 3737[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3737 -> 83[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3738[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];48 -> 3738[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3738 -> 84[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3739[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];48 -> 3739[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3739 -> 85[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 195[label="FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) False",fontsize=16,color="black",shape="box"];195 -> 223[label="",style="solid", color="black", weight=3]; 22.66/9.38 196[label="FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True",fontsize=16,color="black",shape="box"];196 -> 224[label="",style="solid", color="black", weight=3]; 22.66/9.38 102[label="LT",fontsize=16,color="green",shape="box"];103 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.38 103[label="compare2 (Left vyw40) (Right vyw300) False",fontsize=16,color="magenta"];103 -> 1859[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 103 -> 1860[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 103 -> 1861[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 104[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) False",fontsize=16,color="black",shape="box"];104 -> 115[label="",style="solid", color="black", weight=3]; 22.66/9.38 105[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) True",fontsize=16,color="black",shape="box"];105 -> 116[label="",style="solid", color="black", weight=3]; 22.66/9.38 110[label="LT",fontsize=16,color="green",shape="box"];111 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.38 111[label="compare2 (Right vyw40) (Left vyw300) False",fontsize=16,color="magenta"];111 -> 1862[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 111 -> 1863[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 111 -> 1864[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 112[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) False",fontsize=16,color="black",shape="box"];112 -> 198[label="",style="solid", color="black", weight=3]; 22.66/9.38 113[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) True",fontsize=16,color="black",shape="box"];113 -> 199[label="",style="solid", color="black", weight=3]; 22.66/9.38 215[label="LT",fontsize=16,color="green",shape="box"];216 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.38 216[label="compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];216 -> 1865[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 216 -> 1866[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 216 -> 1867[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 217[label="FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) False",fontsize=16,color="black",shape="box"];217 -> 229[label="",style="solid", color="black", weight=3]; 22.66/9.38 218[label="FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True",fontsize=16,color="black",shape="box"];218 -> 230[label="",style="solid", color="black", weight=3]; 22.66/9.38 1856[label="Left vyw300",fontsize=16,color="green",shape="box"];1857[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3740[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3740[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3740 -> 1893[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3741[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3741[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3741 -> 1894[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3742[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3742[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3742 -> 1895[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3743[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3743[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3743 -> 1896[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3744[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3744[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3744 -> 1897[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3745[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3745[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3745 -> 1898[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3746[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3746[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3746 -> 1899[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3747[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3747[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3747 -> 1900[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3748[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3748[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3748 -> 1901[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3749[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3749[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3749 -> 1902[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3750[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3750[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3750 -> 1903[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3751[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3751[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3751 -> 1904[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3752[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3752[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3752 -> 1905[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3753[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3753[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3753 -> 1906[label="",style="solid", color="blue", weight=3]; 22.66/9.38 1858[label="Left vyw40",fontsize=16,color="green",shape="box"];1855[label="compare2 vyw430 vyw440 vyw103",fontsize=16,color="burlywood",shape="triangle"];3754[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];1855 -> 3754[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3754 -> 1907[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3755[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];1855 -> 3755[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3755 -> 1908[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 83[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3756[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];83 -> 3756[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3756 -> 156[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3757[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];83 -> 3757[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3757 -> 157[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3758[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];83 -> 3758[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3758 -> 158[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 84[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3759[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];84 -> 3759[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3759 -> 159[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3760[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];84 -> 3760[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3760 -> 160[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3761[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];84 -> 3761[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3761 -> 161[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 85[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3762[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];85 -> 3762[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3762 -> 162[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3763[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];85 -> 3763[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3763 -> 163[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3764[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];85 -> 3764[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3764 -> 164[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 223 -> 305[label="",style="dashed", color="red", weight=0]; 22.66/9.38 223[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) (Left vyw18 > Left vyw13)",fontsize=16,color="magenta"];223 -> 306[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 224 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 224[label="FiniteMap.lookupFM vyw16 (Left vyw18)",fontsize=16,color="magenta"];224 -> 248[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 224 -> 249[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1859[label="Right vyw300",fontsize=16,color="green",shape="box"];1860[label="False",fontsize=16,color="green",shape="box"];1861[label="Left vyw40",fontsize=16,color="green",shape="box"];115 -> 280[label="",style="dashed", color="red", weight=0]; 22.66/9.38 115[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (Left vyw40 > Right vyw300)",fontsize=16,color="magenta"];115 -> 281[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 116 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 116[label="FiniteMap.lookupFM vyw33 (Left vyw40)",fontsize=16,color="magenta"];116 -> 202[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 116 -> 203[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1862[label="Left vyw300",fontsize=16,color="green",shape="box"];1863[label="False",fontsize=16,color="green",shape="box"];1864[label="Right vyw40",fontsize=16,color="green",shape="box"];198 -> 315[label="",style="dashed", color="red", weight=0]; 22.66/9.38 198[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (Right vyw40 > Left vyw300)",fontsize=16,color="magenta"];198 -> 316[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 199 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 199[label="FiniteMap.lookupFM vyw33 (Right vyw40)",fontsize=16,color="magenta"];199 -> 252[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 199 -> 253[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1865[label="Right vyw300",fontsize=16,color="green",shape="box"];1866[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3765[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3765[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3765 -> 1909[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3766[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3766[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3766 -> 1910[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3767[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3767[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3767 -> 1911[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3768[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3768[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3768 -> 1912[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3769[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3769[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3769 -> 1913[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3770[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3770[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3770 -> 1914[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3771[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3771[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3771 -> 1915[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3772[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3772[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3772 -> 1916[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3773[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3773[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3773 -> 1917[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3774[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3774[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3774 -> 1918[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3775[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3775[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3775 -> 1919[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3776[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3776[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3776 -> 1920[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3777[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3777[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3777 -> 1921[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3778[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 3778[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3778 -> 1922[label="",style="solid", color="blue", weight=3]; 22.66/9.38 1867[label="Right vyw40",fontsize=16,color="green",shape="box"];229 -> 351[label="",style="dashed", color="red", weight=0]; 22.66/9.38 229[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) (Right vyw33 > Right vyw28)",fontsize=16,color="magenta"];229 -> 352[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 230 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 230[label="FiniteMap.lookupFM vyw31 (Right vyw33)",fontsize=16,color="magenta"];230 -> 284[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 230 -> 285[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1893[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3779[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];1893 -> 3779[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3779 -> 1927[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1894[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3780[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];1894 -> 3780[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3780 -> 1928[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1895[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1895 -> 1929[label="",style="solid", color="black", weight=3]; 22.66/9.38 1896[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3781[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3781[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3781 -> 1930[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3782[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3782[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3782 -> 1931[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1897[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1897 -> 1932[label="",style="solid", color="black", weight=3]; 22.66/9.38 1898[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1898 -> 1933[label="",style="solid", color="black", weight=3]; 22.66/9.38 1899 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1899[label="vyw40 == vyw300",fontsize=16,color="magenta"];1900[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3783[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];1900 -> 3783[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3783 -> 1934[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1901[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1901 -> 1935[label="",style="solid", color="black", weight=3]; 22.66/9.38 1902[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3784[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];1902 -> 3784[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3784 -> 1936[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3785[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];1902 -> 3785[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3785 -> 1937[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1903[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3786[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3786[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3786 -> 1938[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3787[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];1903 -> 3787[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3787 -> 1939[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1904[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3788[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];1904 -> 3788[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3788 -> 1940[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1905[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3789[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];1905 -> 3789[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3789 -> 1941[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1906[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3790[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];1906 -> 3790[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3790 -> 1942[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3791[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];1906 -> 3791[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3791 -> 1943[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1907[label="compare2 vyw430 vyw440 False",fontsize=16,color="black",shape="box"];1907 -> 1944[label="",style="solid", color="black", weight=3]; 22.66/9.38 1908[label="compare2 vyw430 vyw440 True",fontsize=16,color="black",shape="box"];1908 -> 1945[label="",style="solid", color="black", weight=3]; 22.66/9.38 156[label="LT == LT",fontsize=16,color="black",shape="box"];156 -> 270[label="",style="solid", color="black", weight=3]; 22.66/9.38 157[label="LT == EQ",fontsize=16,color="black",shape="box"];157 -> 271[label="",style="solid", color="black", weight=3]; 22.66/9.38 158[label="LT == GT",fontsize=16,color="black",shape="box"];158 -> 272[label="",style="solid", color="black", weight=3]; 22.66/9.38 159[label="EQ == LT",fontsize=16,color="black",shape="box"];159 -> 273[label="",style="solid", color="black", weight=3]; 22.66/9.38 160[label="EQ == EQ",fontsize=16,color="black",shape="box"];160 -> 274[label="",style="solid", color="black", weight=3]; 22.66/9.38 161[label="EQ == GT",fontsize=16,color="black",shape="box"];161 -> 275[label="",style="solid", color="black", weight=3]; 22.66/9.38 162[label="GT == LT",fontsize=16,color="black",shape="box"];162 -> 276[label="",style="solid", color="black", weight=3]; 22.66/9.38 163[label="GT == EQ",fontsize=16,color="black",shape="box"];163 -> 277[label="",style="solid", color="black", weight=3]; 22.66/9.38 164[label="GT == GT",fontsize=16,color="black",shape="box"];164 -> 278[label="",style="solid", color="black", weight=3]; 22.66/9.38 306[label="Left vyw18 > Left vyw13",fontsize=16,color="black",shape="box"];306 -> 308[label="",style="solid", color="black", weight=3]; 22.66/9.38 305[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) vyw54",fontsize=16,color="burlywood",shape="triangle"];3792[label="vyw54/False",fontsize=10,color="white",style="solid",shape="box"];305 -> 3792[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3792 -> 309[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3793[label="vyw54/True",fontsize=10,color="white",style="solid",shape="box"];305 -> 3793[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3793 -> 310[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 248[label="Left vyw18",fontsize=16,color="green",shape="box"];249[label="vyw16",fontsize=16,color="green",shape="box"];281[label="Left vyw40 > Right vyw300",fontsize=16,color="black",shape="box"];281 -> 311[label="",style="solid", color="black", weight=3]; 22.66/9.38 280[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) vyw53",fontsize=16,color="burlywood",shape="triangle"];3794[label="vyw53/False",fontsize=10,color="white",style="solid",shape="box"];280 -> 3794[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3794 -> 312[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3795[label="vyw53/True",fontsize=10,color="white",style="solid",shape="box"];280 -> 3795[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3795 -> 313[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 202[label="Left vyw40",fontsize=16,color="green",shape="box"];203[label="vyw33",fontsize=16,color="green",shape="box"];316[label="Right vyw40 > Left vyw300",fontsize=16,color="black",shape="box"];316 -> 318[label="",style="solid", color="black", weight=3]; 22.66/9.38 315[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) vyw55",fontsize=16,color="burlywood",shape="triangle"];3796[label="vyw55/False",fontsize=10,color="white",style="solid",shape="box"];315 -> 3796[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3796 -> 319[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3797[label="vyw55/True",fontsize=10,color="white",style="solid",shape="box"];315 -> 3797[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3797 -> 320[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 252[label="Right vyw40",fontsize=16,color="green",shape="box"];253[label="vyw33",fontsize=16,color="green",shape="box"];1909 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1909[label="vyw40 == vyw300",fontsize=16,color="magenta"];1909 -> 1946[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1909 -> 1947[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1910 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1910[label="vyw40 == vyw300",fontsize=16,color="magenta"];1910 -> 1948[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1910 -> 1949[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1911 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1911[label="vyw40 == vyw300",fontsize=16,color="magenta"];1911 -> 1950[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1911 -> 1951[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1912 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1912[label="vyw40 == vyw300",fontsize=16,color="magenta"];1912 -> 1952[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1912 -> 1953[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1913 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1913[label="vyw40 == vyw300",fontsize=16,color="magenta"];1913 -> 1954[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1913 -> 1955[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1914 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1914[label="vyw40 == vyw300",fontsize=16,color="magenta"];1914 -> 1956[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1914 -> 1957[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1915 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1915[label="vyw40 == vyw300",fontsize=16,color="magenta"];1915 -> 1958[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1915 -> 1959[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1916 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1916[label="vyw40 == vyw300",fontsize=16,color="magenta"];1916 -> 1960[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1916 -> 1961[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1917 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1917[label="vyw40 == vyw300",fontsize=16,color="magenta"];1917 -> 1962[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1917 -> 1963[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1918 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1918[label="vyw40 == vyw300",fontsize=16,color="magenta"];1918 -> 1964[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1918 -> 1965[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1919 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1919[label="vyw40 == vyw300",fontsize=16,color="magenta"];1919 -> 1966[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1919 -> 1967[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1920 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1920[label="vyw40 == vyw300",fontsize=16,color="magenta"];1920 -> 1968[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1920 -> 1969[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1921 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1921[label="vyw40 == vyw300",fontsize=16,color="magenta"];1921 -> 1970[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1921 -> 1971[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1922 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.38 1922[label="vyw40 == vyw300",fontsize=16,color="magenta"];1922 -> 1972[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 1922 -> 1973[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 352[label="Right vyw33 > Right vyw28",fontsize=16,color="black",shape="box"];352 -> 354[label="",style="solid", color="black", weight=3]; 22.66/9.38 351[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) vyw56",fontsize=16,color="burlywood",shape="triangle"];3798[label="vyw56/False",fontsize=10,color="white",style="solid",shape="box"];351 -> 3798[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3798 -> 355[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3799[label="vyw56/True",fontsize=10,color="white",style="solid",shape="box"];351 -> 3799[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3799 -> 356[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 284[label="Right vyw33",fontsize=16,color="green",shape="box"];285[label="vyw31",fontsize=16,color="green",shape="box"];1927[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3800[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3800[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3800 -> 2002[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1928[label="(vyw400,vyw401) == vyw300",fontsize=16,color="burlywood",shape="box"];3801[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3801[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3801 -> 2003[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1929[label="primEqChar vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3802[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];1929 -> 3802[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3802 -> 2004[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1930[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3803[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1930 -> 3803[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3803 -> 2005[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3804[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1930 -> 3804[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3804 -> 2006[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1931[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3805[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3805[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3805 -> 2007[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3806[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3806[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3806 -> 2008[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1932[label="primEqDouble vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3807[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3807[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3807 -> 2009[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1933[label="primEqFloat vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3808[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3808[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3808 -> 2010[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1934[label="(vyw400,vyw401,vyw402) == vyw300",fontsize=16,color="burlywood",shape="box"];3809[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3809[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3809 -> 2011[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1935[label="primEqInt vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];3810[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3810[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3810 -> 2012[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3811[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3811[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3811 -> 2013[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1936[label="vyw400 : vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3812[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3812[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3812 -> 2014[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3813[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3813[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3813 -> 2015[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1937[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3814[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3814[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3814 -> 2016[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3815[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1937 -> 3815[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3815 -> 2017[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1938[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3816[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3816[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3816 -> 2018[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3817[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1938 -> 3817[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3817 -> 2019[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1939[label="Just vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3818[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1939 -> 3818[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3818 -> 2020[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3819[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1939 -> 3819[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3819 -> 2021[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1940[label="Integer vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3820[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];1940 -> 3820[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3820 -> 2022[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1941[label="vyw400 :% vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3821[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];1941 -> 3821[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3821 -> 2023[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1942[label="Left vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3822[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3822[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3822 -> 2024[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3823[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1942 -> 3823[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3823 -> 2025[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1943[label="Right vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3824[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1943 -> 3824[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3824 -> 2026[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3825[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1943 -> 3825[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3825 -> 2027[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1944[label="compare1 vyw430 vyw440 (vyw430 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3826[label="vyw430/Left vyw4300",fontsize=10,color="white",style="solid",shape="box"];1944 -> 3826[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3826 -> 2028[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3827[label="vyw430/Right vyw4300",fontsize=10,color="white",style="solid",shape="box"];1944 -> 3827[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3827 -> 2029[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 1945[label="EQ",fontsize=16,color="green",shape="box"];270[label="True",fontsize=16,color="green",shape="box"];271[label="False",fontsize=16,color="green",shape="box"];272[label="False",fontsize=16,color="green",shape="box"];273[label="False",fontsize=16,color="green",shape="box"];274[label="True",fontsize=16,color="green",shape="box"];275[label="False",fontsize=16,color="green",shape="box"];276[label="False",fontsize=16,color="green",shape="box"];277[label="False",fontsize=16,color="green",shape="box"];278[label="True",fontsize=16,color="green",shape="box"];308 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 308[label="compare (Left vyw18) (Left vyw13) == GT",fontsize=16,color="magenta"];308 -> 384[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 308 -> 385[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 309[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) False",fontsize=16,color="black",shape="box"];309 -> 386[label="",style="solid", color="black", weight=3]; 22.66/9.38 310[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True",fontsize=16,color="black",shape="box"];310 -> 387[label="",style="solid", color="black", weight=3]; 22.66/9.38 311 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 311[label="compare (Left vyw40) (Right vyw300) == GT",fontsize=16,color="magenta"];311 -> 388[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 311 -> 389[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 312[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) False",fontsize=16,color="black",shape="box"];312 -> 390[label="",style="solid", color="black", weight=3]; 22.66/9.38 313[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) True",fontsize=16,color="black",shape="box"];313 -> 391[label="",style="solid", color="black", weight=3]; 22.66/9.38 318 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 318[label="compare (Right vyw40) (Left vyw300) == GT",fontsize=16,color="magenta"];318 -> 393[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 318 -> 394[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 319[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) False",fontsize=16,color="black",shape="box"];319 -> 395[label="",style="solid", color="black", weight=3]; 22.66/9.38 320[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) True",fontsize=16,color="black",shape="box"];320 -> 396[label="",style="solid", color="black", weight=3]; 22.66/9.38 1946[label="vyw300",fontsize=16,color="green",shape="box"];1947[label="vyw40",fontsize=16,color="green",shape="box"];1948[label="vyw300",fontsize=16,color="green",shape="box"];1949[label="vyw40",fontsize=16,color="green",shape="box"];1950[label="vyw300",fontsize=16,color="green",shape="box"];1951[label="vyw40",fontsize=16,color="green",shape="box"];1952[label="vyw300",fontsize=16,color="green",shape="box"];1953[label="vyw40",fontsize=16,color="green",shape="box"];1954[label="vyw300",fontsize=16,color="green",shape="box"];1955[label="vyw40",fontsize=16,color="green",shape="box"];1956[label="vyw300",fontsize=16,color="green",shape="box"];1957[label="vyw40",fontsize=16,color="green",shape="box"];1958[label="vyw300",fontsize=16,color="green",shape="box"];1959[label="vyw40",fontsize=16,color="green",shape="box"];1960[label="vyw300",fontsize=16,color="green",shape="box"];1961[label="vyw40",fontsize=16,color="green",shape="box"];1962[label="vyw300",fontsize=16,color="green",shape="box"];1963[label="vyw40",fontsize=16,color="green",shape="box"];1964[label="vyw300",fontsize=16,color="green",shape="box"];1965[label="vyw40",fontsize=16,color="green",shape="box"];1966[label="vyw300",fontsize=16,color="green",shape="box"];1967[label="vyw40",fontsize=16,color="green",shape="box"];1968[label="vyw300",fontsize=16,color="green",shape="box"];1969[label="vyw40",fontsize=16,color="green",shape="box"];1970[label="vyw300",fontsize=16,color="green",shape="box"];1971[label="vyw40",fontsize=16,color="green",shape="box"];1972[label="vyw300",fontsize=16,color="green",shape="box"];1973[label="vyw40",fontsize=16,color="green",shape="box"];354 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.38 354[label="compare (Right vyw33) (Right vyw28) == GT",fontsize=16,color="magenta"];354 -> 398[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 354 -> 399[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 355[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) False",fontsize=16,color="black",shape="box"];355 -> 400[label="",style="solid", color="black", weight=3]; 22.66/9.38 356[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True",fontsize=16,color="black",shape="box"];356 -> 401[label="",style="solid", color="black", weight=3]; 22.66/9.38 2002[label="() == ()",fontsize=16,color="black",shape="box"];2002 -> 2086[label="",style="solid", color="black", weight=3]; 22.66/9.38 2003[label="(vyw400,vyw401) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];2003 -> 2087[label="",style="solid", color="black", weight=3]; 22.66/9.38 2004[label="primEqChar (Char vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3828[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3828[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3828 -> 2088[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2005[label="False == False",fontsize=16,color="black",shape="box"];2005 -> 2089[label="",style="solid", color="black", weight=3]; 22.66/9.38 2006[label="False == True",fontsize=16,color="black",shape="box"];2006 -> 2090[label="",style="solid", color="black", weight=3]; 22.66/9.38 2007[label="True == False",fontsize=16,color="black",shape="box"];2007 -> 2091[label="",style="solid", color="black", weight=3]; 22.66/9.38 2008[label="True == True",fontsize=16,color="black",shape="box"];2008 -> 2092[label="",style="solid", color="black", weight=3]; 22.66/9.38 2009[label="primEqDouble (Double vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3829[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];2009 -> 3829[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3829 -> 2093[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2010[label="primEqFloat (Float vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3830[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];2010 -> 3830[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3830 -> 2094[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2011[label="(vyw400,vyw401,vyw402) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];2011 -> 2095[label="",style="solid", color="black", weight=3]; 22.66/9.38 2012[label="primEqInt (Pos vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3831[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];2012 -> 3831[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3831 -> 2096[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3832[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];2012 -> 3832[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3832 -> 2097[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2013[label="primEqInt (Neg vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3833[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];2013 -> 3833[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3833 -> 2098[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3834[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];2013 -> 3834[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3834 -> 2099[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2014[label="vyw400 : vyw401 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];2014 -> 2100[label="",style="solid", color="black", weight=3]; 22.66/9.38 2015[label="vyw400 : vyw401 == []",fontsize=16,color="black",shape="box"];2015 -> 2101[label="",style="solid", color="black", weight=3]; 22.66/9.38 2016[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];2016 -> 2102[label="",style="solid", color="black", weight=3]; 22.66/9.38 2017[label="[] == []",fontsize=16,color="black",shape="box"];2017 -> 2103[label="",style="solid", color="black", weight=3]; 22.66/9.38 2018[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2018 -> 2104[label="",style="solid", color="black", weight=3]; 22.66/9.38 2019[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];2019 -> 2105[label="",style="solid", color="black", weight=3]; 22.66/9.38 2020[label="Just vyw400 == Nothing",fontsize=16,color="black",shape="box"];2020 -> 2106[label="",style="solid", color="black", weight=3]; 22.66/9.38 2021[label="Just vyw400 == Just vyw3000",fontsize=16,color="black",shape="box"];2021 -> 2107[label="",style="solid", color="black", weight=3]; 22.66/9.38 2022[label="Integer vyw400 == Integer vyw3000",fontsize=16,color="black",shape="box"];2022 -> 2108[label="",style="solid", color="black", weight=3]; 22.66/9.38 2023[label="vyw400 :% vyw401 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];2023 -> 2109[label="",style="solid", color="black", weight=3]; 22.66/9.38 2024[label="Left vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];2024 -> 2110[label="",style="solid", color="black", weight=3]; 22.66/9.38 2025[label="Left vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];2025 -> 2111[label="",style="solid", color="black", weight=3]; 22.66/9.38 2026[label="Right vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];2026 -> 2112[label="",style="solid", color="black", weight=3]; 22.66/9.38 2027[label="Right vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];2027 -> 2113[label="",style="solid", color="black", weight=3]; 22.66/9.38 2028[label="compare1 (Left vyw4300) vyw440 (Left vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3835[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2028 -> 3835[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3835 -> 2114[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3836[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2028 -> 3836[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3836 -> 2115[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2029[label="compare1 (Right vyw4300) vyw440 (Right vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3837[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2029 -> 3837[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3837 -> 2116[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3838[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2029 -> 3838[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3838 -> 2117[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 384[label="GT",fontsize=16,color="green",shape="box"];385[label="compare (Left vyw18) (Left vyw13)",fontsize=16,color="black",shape="box"];385 -> 440[label="",style="solid", color="black", weight=3]; 22.66/9.38 386[label="FiniteMap.lookupFM0 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) otherwise",fontsize=16,color="black",shape="box"];386 -> 441[label="",style="solid", color="black", weight=3]; 22.66/9.38 387 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 387[label="FiniteMap.lookupFM vyw17 (Left vyw18)",fontsize=16,color="magenta"];387 -> 442[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 387 -> 443[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 388[label="GT",fontsize=16,color="green",shape="box"];389[label="compare (Left vyw40) (Right vyw300)",fontsize=16,color="black",shape="box"];389 -> 444[label="",style="solid", color="black", weight=3]; 22.66/9.38 390[label="FiniteMap.lookupFM0 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) otherwise",fontsize=16,color="black",shape="box"];390 -> 445[label="",style="solid", color="black", weight=3]; 22.66/9.38 391 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 391[label="FiniteMap.lookupFM vyw34 (Left vyw40)",fontsize=16,color="magenta"];391 -> 446[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 391 -> 447[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 393[label="GT",fontsize=16,color="green",shape="box"];394[label="compare (Right vyw40) (Left vyw300)",fontsize=16,color="black",shape="box"];394 -> 449[label="",style="solid", color="black", weight=3]; 22.66/9.38 395[label="FiniteMap.lookupFM0 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) otherwise",fontsize=16,color="black",shape="box"];395 -> 450[label="",style="solid", color="black", weight=3]; 22.66/9.38 396 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 396[label="FiniteMap.lookupFM vyw34 (Right vyw40)",fontsize=16,color="magenta"];396 -> 451[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 396 -> 452[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 398[label="GT",fontsize=16,color="green",shape="box"];399[label="compare (Right vyw33) (Right vyw28)",fontsize=16,color="black",shape="box"];399 -> 463[label="",style="solid", color="black", weight=3]; 22.66/9.38 400[label="FiniteMap.lookupFM0 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) otherwise",fontsize=16,color="black",shape="box"];400 -> 464[label="",style="solid", color="black", weight=3]; 22.66/9.38 401 -> 4[label="",style="dashed", color="red", weight=0]; 22.66/9.38 401[label="FiniteMap.lookupFM vyw32 (Right vyw33)",fontsize=16,color="magenta"];401 -> 465[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 401 -> 466[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 2086[label="True",fontsize=16,color="green",shape="box"];2087 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.38 2087[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];2087 -> 2213[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 2087 -> 2214[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 2088[label="primEqChar (Char vyw400) (Char vyw3000)",fontsize=16,color="black",shape="box"];2088 -> 2128[label="",style="solid", color="black", weight=3]; 22.66/9.38 2089[label="True",fontsize=16,color="green",shape="box"];2090[label="False",fontsize=16,color="green",shape="box"];2091[label="False",fontsize=16,color="green",shape="box"];2092[label="True",fontsize=16,color="green",shape="box"];2093[label="primEqDouble (Double vyw400 vyw401) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];2093 -> 2129[label="",style="solid", color="black", weight=3]; 22.66/9.38 2094[label="primEqFloat (Float vyw400 vyw401) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];2094 -> 2130[label="",style="solid", color="black", weight=3]; 22.66/9.38 2095 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.38 2095[label="vyw400 == vyw3000 && vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];2095 -> 2215[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 2095 -> 2216[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 2096[label="primEqInt (Pos (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3839[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2096 -> 3839[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3839 -> 2142[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3840[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2096 -> 3840[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3840 -> 2143[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2097[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3841[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3841[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3841 -> 2144[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3842[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3842[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3842 -> 2145[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2098[label="primEqInt (Neg (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3843[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2098 -> 3843[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3843 -> 2146[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3844[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2098 -> 3844[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3844 -> 2147[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2099[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3845[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3845[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3845 -> 2148[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 3846[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3846[label="",style="solid", color="burlywood", weight=9]; 22.66/9.38 3846 -> 2149[label="",style="solid", color="burlywood", weight=3]; 22.66/9.38 2100 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.38 2100[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];2100 -> 2217[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 2100 -> 2218[label="",style="dashed", color="magenta", weight=3]; 22.66/9.38 2101[label="False",fontsize=16,color="green",shape="box"];2102[label="False",fontsize=16,color="green",shape="box"];2103[label="True",fontsize=16,color="green",shape="box"];2104[label="True",fontsize=16,color="green",shape="box"];2105[label="False",fontsize=16,color="green",shape="box"];2106[label="False",fontsize=16,color="green",shape="box"];2107[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3847[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3847[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3847 -> 2150[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3848[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3848[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3848 -> 2151[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3849[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3849[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3849 -> 2152[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3850[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3850[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3850 -> 2153[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3851[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3851[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3851 -> 2154[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3852[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3852[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3852 -> 2155[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3853[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3853[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3853 -> 2156[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3854[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3854[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3854 -> 2157[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3855[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3855[label="",style="solid", color="blue", weight=9]; 22.66/9.38 3855 -> 2158[label="",style="solid", color="blue", weight=3]; 22.66/9.38 3856[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3856[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3856 -> 2159[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3857[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3857[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3857 -> 2160[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3858[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3858[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3858 -> 2161[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3859[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3859[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3859 -> 2162[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3860[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3860[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3860 -> 2163[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2108 -> 1935[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2108[label="primEqInt vyw400 vyw3000",fontsize=16,color="magenta"];2108 -> 2164[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2108 -> 2165[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2109 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2109[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];2109 -> 2219[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2109 -> 2220[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2110[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3861[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3861[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3861 -> 2166[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3862[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3862[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3862 -> 2167[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3863[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3863[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3863 -> 2168[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3864[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3864[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3864 -> 2169[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3865[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3865[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3865 -> 2170[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3866[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3866[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3866 -> 2171[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3867[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3867[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3867 -> 2172[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3868[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3868[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3868 -> 2173[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3869[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3869[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3869 -> 2174[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3870[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3870[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3870 -> 2175[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3871[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3871[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3871 -> 2176[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3872[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3872[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3872 -> 2177[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3873[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3873[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3873 -> 2178[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3874[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2110 -> 3874[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3874 -> 2179[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2111[label="False",fontsize=16,color="green",shape="box"];2112[label="False",fontsize=16,color="green",shape="box"];2113[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3875[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3875[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3875 -> 2180[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3876[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3876[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3876 -> 2181[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3877[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3877[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3877 -> 2182[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3878[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3878[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3878 -> 2183[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3879[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3879[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3879 -> 2184[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3880[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3880[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3880 -> 2185[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3881[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3881[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3881 -> 2186[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3882[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3882[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3882 -> 2187[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3883[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3883[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3883 -> 2188[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3884[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3884[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3884 -> 2189[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3885[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3885[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3885 -> 2190[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3886[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3886[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3886 -> 2191[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3887[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3887[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3887 -> 2192[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3888[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2113 -> 3888[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3888 -> 2193[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2114[label="compare1 (Left vyw4300) (Left vyw4400) (Left vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2114 -> 2194[label="",style="solid", color="black", weight=3]; 22.66/9.39 2115[label="compare1 (Left vyw4300) (Right vyw4400) (Left vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2115 -> 2195[label="",style="solid", color="black", weight=3]; 22.66/9.39 2116[label="compare1 (Right vyw4300) (Left vyw4400) (Right vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2116 -> 2196[label="",style="solid", color="black", weight=3]; 22.66/9.39 2117[label="compare1 (Right vyw4300) (Right vyw4400) (Right vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2117 -> 2197[label="",style="solid", color="black", weight=3]; 22.66/9.39 440[label="compare3 (Left vyw18) (Left vyw13)",fontsize=16,color="black",shape="box"];440 -> 559[label="",style="solid", color="black", weight=3]; 22.66/9.39 441[label="FiniteMap.lookupFM0 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True",fontsize=16,color="black",shape="box"];441 -> 560[label="",style="solid", color="black", weight=3]; 22.66/9.39 442[label="Left vyw18",fontsize=16,color="green",shape="box"];443[label="vyw17",fontsize=16,color="green",shape="box"];444[label="compare3 (Left vyw40) (Right vyw300)",fontsize=16,color="black",shape="box"];444 -> 561[label="",style="solid", color="black", weight=3]; 22.66/9.39 445[label="FiniteMap.lookupFM0 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) True",fontsize=16,color="black",shape="box"];445 -> 562[label="",style="solid", color="black", weight=3]; 22.66/9.39 446[label="Left vyw40",fontsize=16,color="green",shape="box"];447[label="vyw34",fontsize=16,color="green",shape="box"];449[label="compare3 (Right vyw40) (Left vyw300)",fontsize=16,color="black",shape="box"];449 -> 563[label="",style="solid", color="black", weight=3]; 22.66/9.39 450[label="FiniteMap.lookupFM0 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) True",fontsize=16,color="black",shape="box"];450 -> 564[label="",style="solid", color="black", weight=3]; 22.66/9.39 451[label="Right vyw40",fontsize=16,color="green",shape="box"];452[label="vyw34",fontsize=16,color="green",shape="box"];463[label="compare3 (Right vyw33) (Right vyw28)",fontsize=16,color="black",shape="box"];463 -> 581[label="",style="solid", color="black", weight=3]; 22.66/9.39 464[label="FiniteMap.lookupFM0 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True",fontsize=16,color="black",shape="box"];464 -> 582[label="",style="solid", color="black", weight=3]; 22.66/9.39 465[label="Right vyw33",fontsize=16,color="green",shape="box"];466[label="vyw32",fontsize=16,color="green",shape="box"];2213[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3889[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3889[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3889 -> 2225[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3890[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3890[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3890 -> 2226[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3891[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3891[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3891 -> 2227[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3892[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3892[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3892 -> 2228[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3893[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3893[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3893 -> 2229[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3894[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3894[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3894 -> 2230[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3895[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3895[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3895 -> 2231[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3896[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3896[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3896 -> 2232[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3897[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3897[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3897 -> 2233[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3898[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3898[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3898 -> 2234[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3899[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3899[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3899 -> 2235[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3900[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3900[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3900 -> 2236[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3901[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3901[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3901 -> 2237[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3902[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2213 -> 3902[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3902 -> 2238[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2214[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3903[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3903[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3903 -> 2239[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3904[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3904[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3904 -> 2240[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3905[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3905[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3905 -> 2241[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3906[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3906[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3906 -> 2242[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3907[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3907[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3907 -> 2243[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3908[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3908[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3908 -> 2244[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3909[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3909[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3909 -> 2245[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3910[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3910[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3910 -> 2246[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3911[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3911[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3911 -> 2247[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3912[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3912[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3912 -> 2248[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3913[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3913[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3913 -> 2249[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3914[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3914[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3914 -> 2250[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3915[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3915[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3915 -> 2251[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3916[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2214 -> 3916[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3916 -> 2252[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2212[label="vyw115 && vyw116",fontsize=16,color="burlywood",shape="triangle"];3917[label="vyw115/False",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3917[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3917 -> 2253[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3918[label="vyw115/True",fontsize=10,color="white",style="solid",shape="box"];2212 -> 3918[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3918 -> 2254[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2128[label="primEqNat vyw400 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3919[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];2128 -> 3919[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3919 -> 2255[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3920[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];2128 -> 3920[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3920 -> 2256[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2129 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2129[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];2129 -> 2257[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2129 -> 2258[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2130 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2130[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];2130 -> 2259[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2130 -> 2260[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2215 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2215[label="vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];2215 -> 2261[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2215 -> 2262[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2216[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3921[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3921[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3921 -> 2263[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3922[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3922[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3922 -> 2264[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3923[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3923[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3923 -> 2265[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3924[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3924[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3924 -> 2266[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3925[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3925[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3925 -> 2267[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3926[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3926[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3926 -> 2268[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3927[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3927[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3927 -> 2269[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3928[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3928[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3928 -> 2270[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3929[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3929[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3929 -> 2271[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3930[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3930[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3930 -> 2272[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3931[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3931[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3931 -> 2273[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3932[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3932[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3932 -> 2274[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3933[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3933[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3933 -> 2275[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3934[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2216 -> 3934[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3934 -> 2276[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2142[label="primEqInt (Pos (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3935[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3935[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3935 -> 2277[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3936[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3936[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3936 -> 2278[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2143[label="primEqInt (Pos (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];2143 -> 2279[label="",style="solid", color="black", weight=3]; 22.66/9.39 2144[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3937[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3937[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3937 -> 2280[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3938[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2144 -> 3938[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3938 -> 2281[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2145[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3939[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3939[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3939 -> 2282[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3940[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2145 -> 3940[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3940 -> 2283[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2146[label="primEqInt (Neg (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];2146 -> 2284[label="",style="solid", color="black", weight=3]; 22.66/9.39 2147[label="primEqInt (Neg (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3941[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2147 -> 3941[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3941 -> 2285[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3942[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2147 -> 3942[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3942 -> 2286[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2148[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3943[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3943[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3943 -> 2287[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3944[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3944[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3944 -> 2288[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2149[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3945[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2149 -> 3945[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3945 -> 2289[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3946[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2149 -> 3946[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3946 -> 2290[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2217 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2217[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2217 -> 2291[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2217 -> 2292[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2218[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3947[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3947[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3947 -> 2293[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3948[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3948[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3948 -> 2294[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3949[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3949[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3949 -> 2295[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3950[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3950[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3950 -> 2296[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3951[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3951[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3951 -> 2297[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3952[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3952[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3952 -> 2298[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3953[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3953[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3953 -> 2299[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3954[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3954[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3954 -> 2300[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3955[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3955[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3955 -> 2301[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3956[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3956[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3956 -> 2302[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3957[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3957[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3957 -> 2303[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3958[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3958[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3958 -> 2304[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3959[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3959[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3959 -> 2305[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3960[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2218 -> 3960[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3960 -> 2306[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2150 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2150[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2150 -> 2307[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2150 -> 2308[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2151 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2151[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2151 -> 2309[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2151 -> 2310[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2152 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2152[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2152 -> 2311[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2152 -> 2312[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2153 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2153[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2153 -> 2313[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2153 -> 2314[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2154 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2154[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2154 -> 2315[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2154 -> 2316[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2155 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2155[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2155 -> 2317[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2155 -> 2318[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2156 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2156[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2156 -> 2319[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2156 -> 2320[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2157 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2157[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2157 -> 2321[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2157 -> 2322[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2158 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2158[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2158 -> 2323[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2158 -> 2324[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2159 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2159[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2159 -> 2325[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2159 -> 2326[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2160 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2160[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2160 -> 2327[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2160 -> 2328[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2161 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2161[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2161 -> 2329[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2161 -> 2330[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2162 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2162[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2162 -> 2331[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2162 -> 2332[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2163 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2163[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2163 -> 2333[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2163 -> 2334[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2164[label="vyw3000",fontsize=16,color="green",shape="box"];2165[label="vyw400",fontsize=16,color="green",shape="box"];2219[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3961[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3961[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3961 -> 2335[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3962[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2219 -> 3962[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3962 -> 2336[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2220[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3963[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3963[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3963 -> 2337[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3964[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2220 -> 3964[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3964 -> 2338[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2166 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2166[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2166 -> 2339[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2166 -> 2340[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2167 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2167[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2167 -> 2341[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2167 -> 2342[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2168 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2168[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2168 -> 2343[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2168 -> 2344[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2169 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2169[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2169 -> 2345[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2169 -> 2346[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2170 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2170[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2170 -> 2347[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2170 -> 2348[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2171 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2171[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2171 -> 2349[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2171 -> 2350[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2172 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2172[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2172 -> 2351[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2172 -> 2352[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2173 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2173[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2173 -> 2353[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2173 -> 2354[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2174 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2174[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2174 -> 2355[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2174 -> 2356[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2175 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2175[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2175 -> 2357[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2175 -> 2358[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2176 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2176[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2176 -> 2359[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2176 -> 2360[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2177 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2177[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2177 -> 2361[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2177 -> 2362[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2178 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2178[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2178 -> 2363[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2178 -> 2364[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2179 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2179[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2179 -> 2365[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2179 -> 2366[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2180 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2180[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2180 -> 2367[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2180 -> 2368[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2181 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2181[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2181 -> 2369[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2181 -> 2370[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2182 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2182[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2182 -> 2371[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2182 -> 2372[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2183 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2183[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2183 -> 2373[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2183 -> 2374[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2184 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2184[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2184 -> 2375[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2184 -> 2376[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2185 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2185[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2185 -> 2377[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2185 -> 2378[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2186 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2186[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2186 -> 2379[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2186 -> 2380[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2187 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2187[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2187 -> 2381[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2187 -> 2382[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2188 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2188[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2188 -> 2383[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2188 -> 2384[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2189 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2189[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2189 -> 2385[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2189 -> 2386[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2190 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2190[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2190 -> 2387[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2190 -> 2388[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2191 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2191[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2191 -> 2389[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2191 -> 2390[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2192 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2192[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2192 -> 2391[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2192 -> 2392[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2193 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2193[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2193 -> 2393[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2193 -> 2394[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2194 -> 2395[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2194[label="compare1 (Left vyw4300) (Left vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2194 -> 2396[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2194 -> 2397[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2194 -> 2398[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2195[label="compare1 (Left vyw4300) (Right vyw4400) True",fontsize=16,color="black",shape="box"];2195 -> 2399[label="",style="solid", color="black", weight=3]; 22.66/9.39 2196[label="compare1 (Right vyw4300) (Left vyw4400) False",fontsize=16,color="black",shape="box"];2196 -> 2400[label="",style="solid", color="black", weight=3]; 22.66/9.39 2197 -> 2401[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2197[label="compare1 (Right vyw4300) (Right vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2197 -> 2402[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2197 -> 2403[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2197 -> 2404[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 559 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.39 559[label="compare2 (Left vyw18) (Left vyw13) (Left vyw18 == Left vyw13)",fontsize=16,color="magenta"];559 -> 1880[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 559 -> 1881[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 559 -> 1882[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 560[label="Just vyw14",fontsize=16,color="green",shape="box"];561 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.39 561[label="compare2 (Left vyw40) (Right vyw300) (Left vyw40 == Right vyw300)",fontsize=16,color="magenta"];561 -> 1883[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 561 -> 1884[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 561 -> 1885[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 562[label="Just vyw31",fontsize=16,color="green",shape="box"];563 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.39 563[label="compare2 (Right vyw40) (Left vyw300) (Right vyw40 == Left vyw300)",fontsize=16,color="magenta"];563 -> 1886[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 563 -> 1887[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 563 -> 1888[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 564[label="Just vyw31",fontsize=16,color="green",shape="box"];581 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.39 581[label="compare2 (Right vyw33) (Right vyw28) (Right vyw33 == Right vyw28)",fontsize=16,color="magenta"];581 -> 1889[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 581 -> 1890[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 581 -> 1891[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 582[label="Just vyw29",fontsize=16,color="green",shape="box"];2225 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2225[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2225 -> 2405[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2225 -> 2406[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2226 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2226[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2226 -> 2407[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2226 -> 2408[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2227 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2227[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2227 -> 2409[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2227 -> 2410[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2228 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2228[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2228 -> 2411[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2228 -> 2412[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2229 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2229[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2229 -> 2413[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2229 -> 2414[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2230 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2230[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2230 -> 2415[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2230 -> 2416[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2231 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2231[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2231 -> 2417[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2231 -> 2418[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2232 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2232[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2232 -> 2419[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2232 -> 2420[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2233 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2233[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2233 -> 2421[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2233 -> 2422[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2234 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2234[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2234 -> 2423[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2234 -> 2424[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2235 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2235[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2235 -> 2425[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2235 -> 2426[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2236 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2236[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2236 -> 2427[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2236 -> 2428[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2237 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2237[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2237 -> 2429[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2237 -> 2430[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2238 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2238[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2238 -> 2431[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2238 -> 2432[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2239 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2239[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2239 -> 2433[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2239 -> 2434[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2240 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2240[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2240 -> 2435[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2240 -> 2436[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2241 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2241[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2241 -> 2437[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2241 -> 2438[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2242 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2242[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2242 -> 2439[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2242 -> 2440[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2243 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2243[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2243 -> 2441[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2243 -> 2442[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2244 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2244[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2244 -> 2443[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2244 -> 2444[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2245 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2245[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2245 -> 2445[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2245 -> 2446[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2246 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2246[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2246 -> 2447[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2246 -> 2448[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2247 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2247[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2247 -> 2449[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2247 -> 2450[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2248 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2248[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2248 -> 2451[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2248 -> 2452[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2249 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2249[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2249 -> 2453[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2249 -> 2454[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2250 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2250[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2250 -> 2455[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2250 -> 2456[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2251 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2251[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2251 -> 2457[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2251 -> 2458[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2252 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2252[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2252 -> 2459[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2252 -> 2460[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2253[label="False && vyw116",fontsize=16,color="black",shape="box"];2253 -> 2461[label="",style="solid", color="black", weight=3]; 22.66/9.39 2254[label="True && vyw116",fontsize=16,color="black",shape="box"];2254 -> 2462[label="",style="solid", color="black", weight=3]; 22.66/9.39 2255[label="primEqNat (Succ vyw4000) vyw3000",fontsize=16,color="burlywood",shape="box"];3965[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3965[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3965 -> 2463[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3966[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3966[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3966 -> 2464[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2256[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3967[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3967[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3967 -> 2465[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3968[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3968[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 3968 -> 2466[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2257[label="vyw401 * vyw3000",fontsize=16,color="black",shape="triangle"];2257 -> 2467[label="",style="solid", color="black", weight=3]; 22.66/9.39 2258 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2258[label="vyw400 * vyw3001",fontsize=16,color="magenta"];2258 -> 2468[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2258 -> 2469[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2259 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2259[label="vyw401 * vyw3000",fontsize=16,color="magenta"];2259 -> 2470[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2259 -> 2471[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2260 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2260[label="vyw400 * vyw3001",fontsize=16,color="magenta"];2260 -> 2472[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2260 -> 2473[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2261[label="vyw402 == vyw3002",fontsize=16,color="blue",shape="box"];3969[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3969[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3969 -> 2474[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3970[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3970[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3970 -> 2475[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3971[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3971[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3971 -> 2476[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3972[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3972[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3972 -> 2477[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3973[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3973[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3973 -> 2478[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3974[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3974[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3974 -> 2479[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3975[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3975[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3975 -> 2480[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3976[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3976[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3976 -> 2481[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3977[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3977[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3977 -> 2482[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3978[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3978[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3978 -> 2483[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3979[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3979[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3979 -> 2484[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3980[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3980[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3980 -> 2485[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3981[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3981[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3981 -> 2486[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3982[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3982[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3982 -> 2487[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2262[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3983[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3983[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3983 -> 2488[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3984[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3984[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3984 -> 2489[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3985[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3985[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3985 -> 2490[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3986[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3986[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3986 -> 2491[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3987[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3987[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3987 -> 2492[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3988[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3988[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3988 -> 2493[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3989[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3989[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3989 -> 2494[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3990[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3990[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3990 -> 2495[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3991[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3991[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3991 -> 2496[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3992[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3992[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3992 -> 2497[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3993[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3993[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3993 -> 2498[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3994[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3994[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3994 -> 2499[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3995[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3995[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3995 -> 2500[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3996[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3996[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3996 -> 2501[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2263 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2263[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2263 -> 2502[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2263 -> 2503[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2264 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2264[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2264 -> 2504[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2264 -> 2505[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2265 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2265[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2265 -> 2506[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2265 -> 2507[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2266 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2266[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2266 -> 2508[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2266 -> 2509[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2267 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2267[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2267 -> 2510[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2267 -> 2511[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2268 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2268[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2268 -> 2512[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2268 -> 2513[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2269 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2269[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2269 -> 2514[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2269 -> 2515[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2270 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2270[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2270 -> 2516[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2270 -> 2517[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2271 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2271[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2271 -> 2518[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2271 -> 2519[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2272 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2272[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2272 -> 2520[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2272 -> 2521[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2273 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2273[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2273 -> 2522[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2273 -> 2523[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2274 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2274[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2274 -> 2524[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2274 -> 2525[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2275 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2275[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2275 -> 2526[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2275 -> 2527[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2276 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2276[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2276 -> 2528[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2276 -> 2529[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2277[label="primEqInt (Pos (Succ vyw4000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2277 -> 2530[label="",style="solid", color="black", weight=3]; 22.66/9.39 2278[label="primEqInt (Pos (Succ vyw4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2278 -> 2531[label="",style="solid", color="black", weight=3]; 22.66/9.39 2279[label="False",fontsize=16,color="green",shape="box"];2280[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2280 -> 2532[label="",style="solid", color="black", weight=3]; 22.66/9.39 2281[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2281 -> 2533[label="",style="solid", color="black", weight=3]; 22.66/9.39 2282[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2282 -> 2534[label="",style="solid", color="black", weight=3]; 22.66/9.39 2283[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2283 -> 2535[label="",style="solid", color="black", weight=3]; 22.66/9.39 2284[label="False",fontsize=16,color="green",shape="box"];2285[label="primEqInt (Neg (Succ vyw4000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2285 -> 2536[label="",style="solid", color="black", weight=3]; 22.66/9.39 2286[label="primEqInt (Neg (Succ vyw4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2286 -> 2537[label="",style="solid", color="black", weight=3]; 22.66/9.39 2287[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2287 -> 2538[label="",style="solid", color="black", weight=3]; 22.66/9.39 2288[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2288 -> 2539[label="",style="solid", color="black", weight=3]; 22.66/9.39 2289[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2289 -> 2540[label="",style="solid", color="black", weight=3]; 22.66/9.39 2290[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2290 -> 2541[label="",style="solid", color="black", weight=3]; 22.66/9.39 2291[label="vyw3001",fontsize=16,color="green",shape="box"];2292[label="vyw401",fontsize=16,color="green",shape="box"];2293 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2293[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2293 -> 2542[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2293 -> 2543[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2294 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2294[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2294 -> 2544[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2294 -> 2545[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2295 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2295[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2295 -> 2546[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2295 -> 2547[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2296 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2296[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2296 -> 2548[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2296 -> 2549[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2297 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2297[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2297 -> 2550[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2297 -> 2551[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2298 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2298[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2298 -> 2552[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2298 -> 2553[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2299 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2299[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2299 -> 2554[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2299 -> 2555[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2300 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2300[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2300 -> 2556[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2300 -> 2557[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2301 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2301[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2301 -> 2558[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2301 -> 2559[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2302 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2302[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2302 -> 2560[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2302 -> 2561[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2303 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2303[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2303 -> 2562[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2303 -> 2563[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2304 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2304[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2304 -> 2564[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2304 -> 2565[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2305 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2305[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2305 -> 2566[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2305 -> 2567[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2306 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2306[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2306 -> 2568[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2306 -> 2569[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2307[label="vyw3000",fontsize=16,color="green",shape="box"];2308[label="vyw400",fontsize=16,color="green",shape="box"];2309[label="vyw3000",fontsize=16,color="green",shape="box"];2310[label="vyw400",fontsize=16,color="green",shape="box"];2311[label="vyw3000",fontsize=16,color="green",shape="box"];2312[label="vyw400",fontsize=16,color="green",shape="box"];2313[label="vyw3000",fontsize=16,color="green",shape="box"];2314[label="vyw400",fontsize=16,color="green",shape="box"];2315[label="vyw3000",fontsize=16,color="green",shape="box"];2316[label="vyw400",fontsize=16,color="green",shape="box"];2317[label="vyw3000",fontsize=16,color="green",shape="box"];2318[label="vyw400",fontsize=16,color="green",shape="box"];2319[label="vyw3000",fontsize=16,color="green",shape="box"];2320[label="vyw400",fontsize=16,color="green",shape="box"];2321[label="vyw3000",fontsize=16,color="green",shape="box"];2322[label="vyw400",fontsize=16,color="green",shape="box"];2323[label="vyw3000",fontsize=16,color="green",shape="box"];2324[label="vyw400",fontsize=16,color="green",shape="box"];2325[label="vyw3000",fontsize=16,color="green",shape="box"];2326[label="vyw400",fontsize=16,color="green",shape="box"];2327[label="vyw3000",fontsize=16,color="green",shape="box"];2328[label="vyw400",fontsize=16,color="green",shape="box"];2329[label="vyw3000",fontsize=16,color="green",shape="box"];2330[label="vyw400",fontsize=16,color="green",shape="box"];2331[label="vyw3000",fontsize=16,color="green",shape="box"];2332[label="vyw400",fontsize=16,color="green",shape="box"];2333[label="vyw3000",fontsize=16,color="green",shape="box"];2334[label="vyw400",fontsize=16,color="green",shape="box"];2335 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2335[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2335 -> 2570[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2335 -> 2571[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2336 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2336[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2336 -> 2572[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2336 -> 2573[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2337 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2337[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2337 -> 2574[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2337 -> 2575[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2338 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2338[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2338 -> 2576[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2338 -> 2577[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2339[label="vyw3000",fontsize=16,color="green",shape="box"];2340[label="vyw400",fontsize=16,color="green",shape="box"];2341[label="vyw3000",fontsize=16,color="green",shape="box"];2342[label="vyw400",fontsize=16,color="green",shape="box"];2343[label="vyw3000",fontsize=16,color="green",shape="box"];2344[label="vyw400",fontsize=16,color="green",shape="box"];2345[label="vyw3000",fontsize=16,color="green",shape="box"];2346[label="vyw400",fontsize=16,color="green",shape="box"];2347[label="vyw3000",fontsize=16,color="green",shape="box"];2348[label="vyw400",fontsize=16,color="green",shape="box"];2349[label="vyw3000",fontsize=16,color="green",shape="box"];2350[label="vyw400",fontsize=16,color="green",shape="box"];2351[label="vyw3000",fontsize=16,color="green",shape="box"];2352[label="vyw400",fontsize=16,color="green",shape="box"];2353[label="vyw3000",fontsize=16,color="green",shape="box"];2354[label="vyw400",fontsize=16,color="green",shape="box"];2355[label="vyw3000",fontsize=16,color="green",shape="box"];2356[label="vyw400",fontsize=16,color="green",shape="box"];2357[label="vyw3000",fontsize=16,color="green",shape="box"];2358[label="vyw400",fontsize=16,color="green",shape="box"];2359[label="vyw3000",fontsize=16,color="green",shape="box"];2360[label="vyw400",fontsize=16,color="green",shape="box"];2361[label="vyw3000",fontsize=16,color="green",shape="box"];2362[label="vyw400",fontsize=16,color="green",shape="box"];2363[label="vyw3000",fontsize=16,color="green",shape="box"];2364[label="vyw400",fontsize=16,color="green",shape="box"];2365[label="vyw3000",fontsize=16,color="green",shape="box"];2366[label="vyw400",fontsize=16,color="green",shape="box"];2367[label="vyw3000",fontsize=16,color="green",shape="box"];2368[label="vyw400",fontsize=16,color="green",shape="box"];2369[label="vyw3000",fontsize=16,color="green",shape="box"];2370[label="vyw400",fontsize=16,color="green",shape="box"];2371[label="vyw3000",fontsize=16,color="green",shape="box"];2372[label="vyw400",fontsize=16,color="green",shape="box"];2373[label="vyw3000",fontsize=16,color="green",shape="box"];2374[label="vyw400",fontsize=16,color="green",shape="box"];2375[label="vyw3000",fontsize=16,color="green",shape="box"];2376[label="vyw400",fontsize=16,color="green",shape="box"];2377[label="vyw3000",fontsize=16,color="green",shape="box"];2378[label="vyw400",fontsize=16,color="green",shape="box"];2379[label="vyw3000",fontsize=16,color="green",shape="box"];2380[label="vyw400",fontsize=16,color="green",shape="box"];2381[label="vyw3000",fontsize=16,color="green",shape="box"];2382[label="vyw400",fontsize=16,color="green",shape="box"];2383[label="vyw3000",fontsize=16,color="green",shape="box"];2384[label="vyw400",fontsize=16,color="green",shape="box"];2385[label="vyw3000",fontsize=16,color="green",shape="box"];2386[label="vyw400",fontsize=16,color="green",shape="box"];2387[label="vyw3000",fontsize=16,color="green",shape="box"];2388[label="vyw400",fontsize=16,color="green",shape="box"];2389[label="vyw3000",fontsize=16,color="green",shape="box"];2390[label="vyw400",fontsize=16,color="green",shape="box"];2391[label="vyw3000",fontsize=16,color="green",shape="box"];2392[label="vyw400",fontsize=16,color="green",shape="box"];2393[label="vyw3000",fontsize=16,color="green",shape="box"];2394[label="vyw400",fontsize=16,color="green",shape="box"];2396[label="vyw4400",fontsize=16,color="green",shape="box"];2397[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];3997[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 3997[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3997 -> 2578[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3998[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 3998[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3998 -> 2579[label="",style="solid", color="blue", weight=3]; 22.66/9.39 3999[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 3999[label="",style="solid", color="blue", weight=9]; 22.66/9.39 3999 -> 2580[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4000[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4000[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4000 -> 2581[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4001[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4001[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4001 -> 2582[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4002[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4002[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4002 -> 2583[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4003[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4003[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4003 -> 2584[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4004[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4004[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4004 -> 2585[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4005[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4005[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4005 -> 2586[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4006[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4006[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4006 -> 2587[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4007[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4007[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4007 -> 2588[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4008[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4008[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4008 -> 2589[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4009[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4009[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4009 -> 2590[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4010[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2397 -> 4010[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4010 -> 2591[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2398[label="vyw4300",fontsize=16,color="green",shape="box"];2395[label="compare1 (Left vyw121) (Left vyw122) vyw123",fontsize=16,color="burlywood",shape="triangle"];4011[label="vyw123/False",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4011[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4011 -> 2592[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4012[label="vyw123/True",fontsize=10,color="white",style="solid",shape="box"];2395 -> 4012[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4012 -> 2593[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2399[label="LT",fontsize=16,color="green",shape="box"];2400[label="compare0 (Right vyw4300) (Left vyw4400) otherwise",fontsize=16,color="black",shape="box"];2400 -> 2594[label="",style="solid", color="black", weight=3]; 22.66/9.39 2402[label="vyw4400",fontsize=16,color="green",shape="box"];2403[label="vyw4300",fontsize=16,color="green",shape="box"];2404[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];4013[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4013[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4013 -> 2595[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4014[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4014[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4014 -> 2596[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4015[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4015[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4015 -> 2597[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4016[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4016[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4016 -> 2598[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4017[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4017[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4017 -> 2599[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4018[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4018[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4018 -> 2600[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4019[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4019[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4019 -> 2601[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4020[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4020[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4020 -> 2602[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4021[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4021[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4021 -> 2603[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4022[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4022[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4022 -> 2604[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4023[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4023[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4023 -> 2605[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4024[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4024[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4024 -> 2606[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4025[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4025[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4025 -> 2607[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4026[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2404 -> 4026[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4026 -> 2608[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2401[label="compare1 (Right vyw128) (Right vyw129) vyw130",fontsize=16,color="burlywood",shape="triangle"];4027[label="vyw130/False",fontsize=10,color="white",style="solid",shape="box"];2401 -> 4027[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4027 -> 2609[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4028[label="vyw130/True",fontsize=10,color="white",style="solid",shape="box"];2401 -> 4028[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4028 -> 2610[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 1880[label="Left vyw13",fontsize=16,color="green",shape="box"];1881[label="Left vyw18 == Left vyw13",fontsize=16,color="black",shape="box"];1881 -> 1923[label="",style="solid", color="black", weight=3]; 22.66/9.39 1882[label="Left vyw18",fontsize=16,color="green",shape="box"];1883[label="Right vyw300",fontsize=16,color="green",shape="box"];1884[label="Left vyw40 == Right vyw300",fontsize=16,color="black",shape="box"];1884 -> 1924[label="",style="solid", color="black", weight=3]; 22.66/9.39 1885[label="Left vyw40",fontsize=16,color="green",shape="box"];1886[label="Left vyw300",fontsize=16,color="green",shape="box"];1887[label="Right vyw40 == Left vyw300",fontsize=16,color="black",shape="box"];1887 -> 1925[label="",style="solid", color="black", weight=3]; 22.66/9.39 1888[label="Right vyw40",fontsize=16,color="green",shape="box"];1889[label="Right vyw28",fontsize=16,color="green",shape="box"];1890[label="Right vyw33 == Right vyw28",fontsize=16,color="black",shape="box"];1890 -> 1926[label="",style="solid", color="black", weight=3]; 22.66/9.39 1891[label="Right vyw33",fontsize=16,color="green",shape="box"];2405[label="vyw3001",fontsize=16,color="green",shape="box"];2406[label="vyw401",fontsize=16,color="green",shape="box"];2407[label="vyw3001",fontsize=16,color="green",shape="box"];2408[label="vyw401",fontsize=16,color="green",shape="box"];2409[label="vyw3001",fontsize=16,color="green",shape="box"];2410[label="vyw401",fontsize=16,color="green",shape="box"];2411[label="vyw3001",fontsize=16,color="green",shape="box"];2412[label="vyw401",fontsize=16,color="green",shape="box"];2413[label="vyw3001",fontsize=16,color="green",shape="box"];2414[label="vyw401",fontsize=16,color="green",shape="box"];2415[label="vyw3001",fontsize=16,color="green",shape="box"];2416[label="vyw401",fontsize=16,color="green",shape="box"];2417[label="vyw3001",fontsize=16,color="green",shape="box"];2418[label="vyw401",fontsize=16,color="green",shape="box"];2419[label="vyw3001",fontsize=16,color="green",shape="box"];2420[label="vyw401",fontsize=16,color="green",shape="box"];2421[label="vyw3001",fontsize=16,color="green",shape="box"];2422[label="vyw401",fontsize=16,color="green",shape="box"];2423[label="vyw3001",fontsize=16,color="green",shape="box"];2424[label="vyw401",fontsize=16,color="green",shape="box"];2425[label="vyw3001",fontsize=16,color="green",shape="box"];2426[label="vyw401",fontsize=16,color="green",shape="box"];2427[label="vyw3001",fontsize=16,color="green",shape="box"];2428[label="vyw401",fontsize=16,color="green",shape="box"];2429[label="vyw3001",fontsize=16,color="green",shape="box"];2430[label="vyw401",fontsize=16,color="green",shape="box"];2431[label="vyw3001",fontsize=16,color="green",shape="box"];2432[label="vyw401",fontsize=16,color="green",shape="box"];2433[label="vyw3000",fontsize=16,color="green",shape="box"];2434[label="vyw400",fontsize=16,color="green",shape="box"];2435[label="vyw3000",fontsize=16,color="green",shape="box"];2436[label="vyw400",fontsize=16,color="green",shape="box"];2437[label="vyw3000",fontsize=16,color="green",shape="box"];2438[label="vyw400",fontsize=16,color="green",shape="box"];2439[label="vyw3000",fontsize=16,color="green",shape="box"];2440[label="vyw400",fontsize=16,color="green",shape="box"];2441[label="vyw3000",fontsize=16,color="green",shape="box"];2442[label="vyw400",fontsize=16,color="green",shape="box"];2443[label="vyw3000",fontsize=16,color="green",shape="box"];2444[label="vyw400",fontsize=16,color="green",shape="box"];2445[label="vyw3000",fontsize=16,color="green",shape="box"];2446[label="vyw400",fontsize=16,color="green",shape="box"];2447[label="vyw3000",fontsize=16,color="green",shape="box"];2448[label="vyw400",fontsize=16,color="green",shape="box"];2449[label="vyw3000",fontsize=16,color="green",shape="box"];2450[label="vyw400",fontsize=16,color="green",shape="box"];2451[label="vyw3000",fontsize=16,color="green",shape="box"];2452[label="vyw400",fontsize=16,color="green",shape="box"];2453[label="vyw3000",fontsize=16,color="green",shape="box"];2454[label="vyw400",fontsize=16,color="green",shape="box"];2455[label="vyw3000",fontsize=16,color="green",shape="box"];2456[label="vyw400",fontsize=16,color="green",shape="box"];2457[label="vyw3000",fontsize=16,color="green",shape="box"];2458[label="vyw400",fontsize=16,color="green",shape="box"];2459[label="vyw3000",fontsize=16,color="green",shape="box"];2460[label="vyw400",fontsize=16,color="green",shape="box"];2461[label="False",fontsize=16,color="green",shape="box"];2462[label="vyw116",fontsize=16,color="green",shape="box"];2463[label="primEqNat (Succ vyw4000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];2463 -> 2611[label="",style="solid", color="black", weight=3]; 22.66/9.39 2464[label="primEqNat (Succ vyw4000) Zero",fontsize=16,color="black",shape="box"];2464 -> 2612[label="",style="solid", color="black", weight=3]; 22.66/9.39 2465[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];2465 -> 2613[label="",style="solid", color="black", weight=3]; 22.66/9.39 2466[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2466 -> 2614[label="",style="solid", color="black", weight=3]; 22.66/9.39 2467[label="primMulInt vyw401 vyw3000",fontsize=16,color="burlywood",shape="triangle"];4029[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4029[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4029 -> 2615[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4030[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4030[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4030 -> 2616[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2468[label="vyw3001",fontsize=16,color="green",shape="box"];2469[label="vyw400",fontsize=16,color="green",shape="box"];2470[label="vyw3000",fontsize=16,color="green",shape="box"];2471[label="vyw401",fontsize=16,color="green",shape="box"];2472[label="vyw3001",fontsize=16,color="green",shape="box"];2473[label="vyw400",fontsize=16,color="green",shape="box"];2474 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2474[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2474 -> 2617[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2474 -> 2618[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2475 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2475[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2475 -> 2619[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2475 -> 2620[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2476 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2476[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2476 -> 2621[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2476 -> 2622[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2477 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2477[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2477 -> 2623[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2477 -> 2624[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2478 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2478[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2478 -> 2625[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2478 -> 2626[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2479 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2479[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2479 -> 2627[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2479 -> 2628[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2480 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2480[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2480 -> 2629[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2480 -> 2630[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2481 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2481[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2481 -> 2631[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2481 -> 2632[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2482 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2482[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2482 -> 2633[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2482 -> 2634[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2483 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2483[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2483 -> 2635[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2483 -> 2636[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2484 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2484[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2484 -> 2637[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2484 -> 2638[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2485 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2485[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2485 -> 2639[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2485 -> 2640[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2486 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2486[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2486 -> 2641[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2486 -> 2642[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2487 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2487[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2487 -> 2643[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2487 -> 2644[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2488 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2488[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2488 -> 2645[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2488 -> 2646[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2489 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2489[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2489 -> 2647[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2489 -> 2648[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2490 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2490[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2490 -> 2649[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2490 -> 2650[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2491 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2491[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2491 -> 2651[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2491 -> 2652[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2492 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2492[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2492 -> 2653[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2492 -> 2654[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2493 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2493[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2493 -> 2655[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2493 -> 2656[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2494 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2494[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2494 -> 2657[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2494 -> 2658[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2495 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2495[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2495 -> 2659[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2495 -> 2660[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2496 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2496[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2496 -> 2661[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2496 -> 2662[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2497 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2497[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2497 -> 2663[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2497 -> 2664[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2498 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2498[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2498 -> 2665[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2498 -> 2666[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2499 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2499[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2499 -> 2667[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2499 -> 2668[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2500 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2500[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2500 -> 2669[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2500 -> 2670[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2501 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2501[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2501 -> 2671[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2501 -> 2672[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2502[label="vyw3000",fontsize=16,color="green",shape="box"];2503[label="vyw400",fontsize=16,color="green",shape="box"];2504[label="vyw3000",fontsize=16,color="green",shape="box"];2505[label="vyw400",fontsize=16,color="green",shape="box"];2506[label="vyw3000",fontsize=16,color="green",shape="box"];2507[label="vyw400",fontsize=16,color="green",shape="box"];2508[label="vyw3000",fontsize=16,color="green",shape="box"];2509[label="vyw400",fontsize=16,color="green",shape="box"];2510[label="vyw3000",fontsize=16,color="green",shape="box"];2511[label="vyw400",fontsize=16,color="green",shape="box"];2512[label="vyw3000",fontsize=16,color="green",shape="box"];2513[label="vyw400",fontsize=16,color="green",shape="box"];2514[label="vyw3000",fontsize=16,color="green",shape="box"];2515[label="vyw400",fontsize=16,color="green",shape="box"];2516[label="vyw3000",fontsize=16,color="green",shape="box"];2517[label="vyw400",fontsize=16,color="green",shape="box"];2518[label="vyw3000",fontsize=16,color="green",shape="box"];2519[label="vyw400",fontsize=16,color="green",shape="box"];2520[label="vyw3000",fontsize=16,color="green",shape="box"];2521[label="vyw400",fontsize=16,color="green",shape="box"];2522[label="vyw3000",fontsize=16,color="green",shape="box"];2523[label="vyw400",fontsize=16,color="green",shape="box"];2524[label="vyw3000",fontsize=16,color="green",shape="box"];2525[label="vyw400",fontsize=16,color="green",shape="box"];2526[label="vyw3000",fontsize=16,color="green",shape="box"];2527[label="vyw400",fontsize=16,color="green",shape="box"];2528[label="vyw3000",fontsize=16,color="green",shape="box"];2529[label="vyw400",fontsize=16,color="green",shape="box"];2530 -> 2128[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2530[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2530 -> 2673[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2530 -> 2674[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2531[label="False",fontsize=16,color="green",shape="box"];2532[label="False",fontsize=16,color="green",shape="box"];2533[label="True",fontsize=16,color="green",shape="box"];2534[label="False",fontsize=16,color="green",shape="box"];2535[label="True",fontsize=16,color="green",shape="box"];2536 -> 2128[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2536[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2536 -> 2675[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2536 -> 2676[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2537[label="False",fontsize=16,color="green",shape="box"];2538[label="False",fontsize=16,color="green",shape="box"];2539[label="True",fontsize=16,color="green",shape="box"];2540[label="False",fontsize=16,color="green",shape="box"];2541[label="True",fontsize=16,color="green",shape="box"];2542[label="vyw3000",fontsize=16,color="green",shape="box"];2543[label="vyw400",fontsize=16,color="green",shape="box"];2544[label="vyw3000",fontsize=16,color="green",shape="box"];2545[label="vyw400",fontsize=16,color="green",shape="box"];2546[label="vyw3000",fontsize=16,color="green",shape="box"];2547[label="vyw400",fontsize=16,color="green",shape="box"];2548[label="vyw3000",fontsize=16,color="green",shape="box"];2549[label="vyw400",fontsize=16,color="green",shape="box"];2550[label="vyw3000",fontsize=16,color="green",shape="box"];2551[label="vyw400",fontsize=16,color="green",shape="box"];2552[label="vyw3000",fontsize=16,color="green",shape="box"];2553[label="vyw400",fontsize=16,color="green",shape="box"];2554[label="vyw3000",fontsize=16,color="green",shape="box"];2555[label="vyw400",fontsize=16,color="green",shape="box"];2556[label="vyw3000",fontsize=16,color="green",shape="box"];2557[label="vyw400",fontsize=16,color="green",shape="box"];2558[label="vyw3000",fontsize=16,color="green",shape="box"];2559[label="vyw400",fontsize=16,color="green",shape="box"];2560[label="vyw3000",fontsize=16,color="green",shape="box"];2561[label="vyw400",fontsize=16,color="green",shape="box"];2562[label="vyw3000",fontsize=16,color="green",shape="box"];2563[label="vyw400",fontsize=16,color="green",shape="box"];2564[label="vyw3000",fontsize=16,color="green",shape="box"];2565[label="vyw400",fontsize=16,color="green",shape="box"];2566[label="vyw3000",fontsize=16,color="green",shape="box"];2567[label="vyw400",fontsize=16,color="green",shape="box"];2568[label="vyw3000",fontsize=16,color="green",shape="box"];2569[label="vyw400",fontsize=16,color="green",shape="box"];2570[label="vyw3001",fontsize=16,color="green",shape="box"];2571[label="vyw401",fontsize=16,color="green",shape="box"];2572[label="vyw3001",fontsize=16,color="green",shape="box"];2573[label="vyw401",fontsize=16,color="green",shape="box"];2574[label="vyw3000",fontsize=16,color="green",shape="box"];2575[label="vyw400",fontsize=16,color="green",shape="box"];2576[label="vyw3000",fontsize=16,color="green",shape="box"];2577[label="vyw400",fontsize=16,color="green",shape="box"];2578[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2578 -> 2677[label="",style="solid", color="black", weight=3]; 22.66/9.39 2579[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2579 -> 2678[label="",style="solid", color="black", weight=3]; 22.66/9.39 2580[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4031[label="vyw4300/(vyw43000,vyw43001)",fontsize=10,color="white",style="solid",shape="box"];2580 -> 4031[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4031 -> 2679[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2581[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2581 -> 2680[label="",style="solid", color="black", weight=3]; 22.66/9.39 2582[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2582 -> 2681[label="",style="solid", color="black", weight=3]; 22.66/9.39 2583[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2583 -> 2682[label="",style="solid", color="black", weight=3]; 22.66/9.39 2584[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4032[label="vyw4300/Left vyw43000",fontsize=10,color="white",style="solid",shape="box"];2584 -> 4032[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4032 -> 2683[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4033[label="vyw4300/Right vyw43000",fontsize=10,color="white",style="solid",shape="box"];2584 -> 4033[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4033 -> 2684[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2585[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4034[label="vyw4300/LT",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4034[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4034 -> 2685[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4035[label="vyw4300/EQ",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4035[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4035 -> 2686[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4036[label="vyw4300/GT",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4036[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4036 -> 2687[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2586[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2586 -> 2688[label="",style="solid", color="black", weight=3]; 22.66/9.39 2587[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2587 -> 2689[label="",style="solid", color="black", weight=3]; 22.66/9.39 2588[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4037[label="vyw4300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2588 -> 4037[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4037 -> 2690[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4038[label="vyw4300/Just vyw43000",fontsize=10,color="white",style="solid",shape="box"];2588 -> 4038[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4038 -> 2691[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2589[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2589 -> 2692[label="",style="solid", color="black", weight=3]; 22.66/9.39 2590[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4039[label="vyw4300/(vyw43000,vyw43001,vyw43002)",fontsize=10,color="white",style="solid",shape="box"];2590 -> 4039[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4039 -> 2693[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2591[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4040[label="vyw4300/False",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4040[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4040 -> 2694[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4041[label="vyw4300/True",fontsize=10,color="white",style="solid",shape="box"];2591 -> 4041[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4041 -> 2695[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2592[label="compare1 (Left vyw121) (Left vyw122) False",fontsize=16,color="black",shape="box"];2592 -> 2696[label="",style="solid", color="black", weight=3]; 22.66/9.39 2593[label="compare1 (Left vyw121) (Left vyw122) True",fontsize=16,color="black",shape="box"];2593 -> 2697[label="",style="solid", color="black", weight=3]; 22.66/9.39 2594[label="compare0 (Right vyw4300) (Left vyw4400) True",fontsize=16,color="black",shape="box"];2594 -> 2698[label="",style="solid", color="black", weight=3]; 22.66/9.39 2595 -> 2578[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2595[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2595 -> 2699[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2595 -> 2700[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2596 -> 2579[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2596[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2596 -> 2701[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2596 -> 2702[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2597 -> 2580[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2597[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2597 -> 2703[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2597 -> 2704[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2598 -> 2581[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2598[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2598 -> 2705[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2598 -> 2706[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2599 -> 2582[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2599[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2599 -> 2707[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2599 -> 2708[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2600 -> 2583[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2600[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2600 -> 2709[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2600 -> 2710[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2601 -> 2584[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2601[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2601 -> 2711[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2601 -> 2712[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2602 -> 2585[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2602[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2602 -> 2713[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2602 -> 2714[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2603 -> 2586[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2603[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2603 -> 2715[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2603 -> 2716[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2604 -> 2587[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2604[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2604 -> 2717[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2604 -> 2718[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2605 -> 2588[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2605[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2605 -> 2719[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2605 -> 2720[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2606 -> 2589[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2606[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2606 -> 2721[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2606 -> 2722[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2607 -> 2590[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2607[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2607 -> 2723[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2607 -> 2724[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2608 -> 2591[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2608[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2608 -> 2725[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2608 -> 2726[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2609[label="compare1 (Right vyw128) (Right vyw129) False",fontsize=16,color="black",shape="box"];2609 -> 2727[label="",style="solid", color="black", weight=3]; 22.66/9.39 2610[label="compare1 (Right vyw128) (Right vyw129) True",fontsize=16,color="black",shape="box"];2610 -> 2728[label="",style="solid", color="black", weight=3]; 22.66/9.39 1923[label="vyw18 == vyw13",fontsize=16,color="blue",shape="box"];4042[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4042[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4042 -> 1974[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4043[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4043[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4043 -> 1975[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4044[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4044[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4044 -> 1976[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4045[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4045[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4045 -> 1977[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4046[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4046[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4046 -> 1978[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4047[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4047[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4047 -> 1979[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4048[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4048[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4048 -> 1980[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4049[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4049[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4049 -> 1981[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4050[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4050[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4050 -> 1982[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4051[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4051[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4051 -> 1983[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4052[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4052[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4052 -> 1984[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4053[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4053[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4053 -> 1985[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4054[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4054[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4054 -> 1986[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4055[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1923 -> 4055[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4055 -> 1987[label="",style="solid", color="blue", weight=3]; 22.66/9.39 1924[label="False",fontsize=16,color="green",shape="box"];1925[label="False",fontsize=16,color="green",shape="box"];1926[label="vyw33 == vyw28",fontsize=16,color="blue",shape="box"];4056[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4056[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4056 -> 1988[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4057[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4057[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4057 -> 1989[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4058[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4058[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4058 -> 1990[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4059[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4059[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4059 -> 1991[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4060[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4060[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4060 -> 1992[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4061[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4061[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4061 -> 1993[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4062[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4062[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4062 -> 1994[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4063[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4063[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4063 -> 1995[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4064[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4064[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4064 -> 1996[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4065[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4065[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4065 -> 1997[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4066[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4066[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4066 -> 1998[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4067[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4067[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4067 -> 1999[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4068[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4068[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4068 -> 2000[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4069[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1926 -> 4069[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4069 -> 2001[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2611 -> 2128[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2611[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2611 -> 2729[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2611 -> 2730[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2612[label="False",fontsize=16,color="green",shape="box"];2613[label="False",fontsize=16,color="green",shape="box"];2614[label="True",fontsize=16,color="green",shape="box"];2615[label="primMulInt (Pos vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];4070[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];2615 -> 4070[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4070 -> 2731[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4071[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];2615 -> 4071[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4071 -> 2732[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2616[label="primMulInt (Neg vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];4072[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4072[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4072 -> 2733[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4073[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];2616 -> 4073[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4073 -> 2734[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2617[label="vyw3002",fontsize=16,color="green",shape="box"];2618[label="vyw402",fontsize=16,color="green",shape="box"];2619[label="vyw3002",fontsize=16,color="green",shape="box"];2620[label="vyw402",fontsize=16,color="green",shape="box"];2621[label="vyw3002",fontsize=16,color="green",shape="box"];2622[label="vyw402",fontsize=16,color="green",shape="box"];2623[label="vyw3002",fontsize=16,color="green",shape="box"];2624[label="vyw402",fontsize=16,color="green",shape="box"];2625[label="vyw3002",fontsize=16,color="green",shape="box"];2626[label="vyw402",fontsize=16,color="green",shape="box"];2627[label="vyw3002",fontsize=16,color="green",shape="box"];2628[label="vyw402",fontsize=16,color="green",shape="box"];2629[label="vyw3002",fontsize=16,color="green",shape="box"];2630[label="vyw402",fontsize=16,color="green",shape="box"];2631[label="vyw3002",fontsize=16,color="green",shape="box"];2632[label="vyw402",fontsize=16,color="green",shape="box"];2633[label="vyw3002",fontsize=16,color="green",shape="box"];2634[label="vyw402",fontsize=16,color="green",shape="box"];2635[label="vyw3002",fontsize=16,color="green",shape="box"];2636[label="vyw402",fontsize=16,color="green",shape="box"];2637[label="vyw3002",fontsize=16,color="green",shape="box"];2638[label="vyw402",fontsize=16,color="green",shape="box"];2639[label="vyw3002",fontsize=16,color="green",shape="box"];2640[label="vyw402",fontsize=16,color="green",shape="box"];2641[label="vyw3002",fontsize=16,color="green",shape="box"];2642[label="vyw402",fontsize=16,color="green",shape="box"];2643[label="vyw3002",fontsize=16,color="green",shape="box"];2644[label="vyw402",fontsize=16,color="green",shape="box"];2645[label="vyw3001",fontsize=16,color="green",shape="box"];2646[label="vyw401",fontsize=16,color="green",shape="box"];2647[label="vyw3001",fontsize=16,color="green",shape="box"];2648[label="vyw401",fontsize=16,color="green",shape="box"];2649[label="vyw3001",fontsize=16,color="green",shape="box"];2650[label="vyw401",fontsize=16,color="green",shape="box"];2651[label="vyw3001",fontsize=16,color="green",shape="box"];2652[label="vyw401",fontsize=16,color="green",shape="box"];2653[label="vyw3001",fontsize=16,color="green",shape="box"];2654[label="vyw401",fontsize=16,color="green",shape="box"];2655[label="vyw3001",fontsize=16,color="green",shape="box"];2656[label="vyw401",fontsize=16,color="green",shape="box"];2657[label="vyw3001",fontsize=16,color="green",shape="box"];2658[label="vyw401",fontsize=16,color="green",shape="box"];2659[label="vyw3001",fontsize=16,color="green",shape="box"];2660[label="vyw401",fontsize=16,color="green",shape="box"];2661[label="vyw3001",fontsize=16,color="green",shape="box"];2662[label="vyw401",fontsize=16,color="green",shape="box"];2663[label="vyw3001",fontsize=16,color="green",shape="box"];2664[label="vyw401",fontsize=16,color="green",shape="box"];2665[label="vyw3001",fontsize=16,color="green",shape="box"];2666[label="vyw401",fontsize=16,color="green",shape="box"];2667[label="vyw3001",fontsize=16,color="green",shape="box"];2668[label="vyw401",fontsize=16,color="green",shape="box"];2669[label="vyw3001",fontsize=16,color="green",shape="box"];2670[label="vyw401",fontsize=16,color="green",shape="box"];2671[label="vyw3001",fontsize=16,color="green",shape="box"];2672[label="vyw401",fontsize=16,color="green",shape="box"];2673[label="vyw30000",fontsize=16,color="green",shape="box"];2674[label="vyw4000",fontsize=16,color="green",shape="box"];2675[label="vyw30000",fontsize=16,color="green",shape="box"];2676[label="vyw4000",fontsize=16,color="green",shape="box"];2677[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2677 -> 2735[label="",style="solid", color="black", weight=3]; 22.66/9.39 2678[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2678 -> 2736[label="",style="solid", color="black", weight=3]; 22.66/9.39 2679[label="(vyw43000,vyw43001) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4074[label="vyw4400/(vyw44000,vyw44001)",fontsize=10,color="white",style="solid",shape="box"];2679 -> 4074[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4074 -> 2737[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2680[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2680 -> 2738[label="",style="solid", color="black", weight=3]; 22.66/9.39 2681[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2681 -> 2739[label="",style="solid", color="black", weight=3]; 22.66/9.39 2682[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2682 -> 2740[label="",style="solid", color="black", weight=3]; 22.66/9.39 2683[label="Left vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4075[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2683 -> 4075[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4075 -> 2741[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4076[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2683 -> 4076[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4076 -> 2742[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2684[label="Right vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4077[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2684 -> 4077[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4077 -> 2743[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4078[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2684 -> 4078[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4078 -> 2744[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2685[label="LT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4079[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4079[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4079 -> 2745[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4080[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4080[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4080 -> 2746[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4081[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2685 -> 4081[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4081 -> 2747[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2686[label="EQ <= vyw4400",fontsize=16,color="burlywood",shape="box"];4082[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2686 -> 4082[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4082 -> 2748[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4083[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2686 -> 4083[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4083 -> 2749[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4084[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2686 -> 4084[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4084 -> 2750[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2687[label="GT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4085[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2687 -> 4085[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4085 -> 2751[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4086[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2687 -> 4086[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4086 -> 2752[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4087[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2687 -> 4087[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4087 -> 2753[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2688[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2688 -> 2754[label="",style="solid", color="black", weight=3]; 22.66/9.39 2689[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2689 -> 2755[label="",style="solid", color="black", weight=3]; 22.66/9.39 2690[label="Nothing <= vyw4400",fontsize=16,color="burlywood",shape="box"];4088[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2690 -> 4088[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4088 -> 2756[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4089[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2690 -> 4089[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4089 -> 2757[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2691[label="Just vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4090[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4090[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4090 -> 2758[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4091[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2691 -> 4091[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4091 -> 2759[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2692[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2692 -> 2760[label="",style="solid", color="black", weight=3]; 22.66/9.39 2693[label="(vyw43000,vyw43001,vyw43002) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4092[label="vyw4400/(vyw44000,vyw44001,vyw44002)",fontsize=10,color="white",style="solid",shape="box"];2693 -> 4092[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4092 -> 2761[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2694[label="False <= vyw4400",fontsize=16,color="burlywood",shape="box"];4093[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2694 -> 4093[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4093 -> 2762[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4094[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2694 -> 4094[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4094 -> 2763[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2695[label="True <= vyw4400",fontsize=16,color="burlywood",shape="box"];4095[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2695 -> 4095[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4095 -> 2764[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4096[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2695 -> 4096[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4096 -> 2765[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2696[label="compare0 (Left vyw121) (Left vyw122) otherwise",fontsize=16,color="black",shape="box"];2696 -> 2766[label="",style="solid", color="black", weight=3]; 22.66/9.39 2697[label="LT",fontsize=16,color="green",shape="box"];2698[label="GT",fontsize=16,color="green",shape="box"];2699[label="vyw4300",fontsize=16,color="green",shape="box"];2700[label="vyw4400",fontsize=16,color="green",shape="box"];2701[label="vyw4300",fontsize=16,color="green",shape="box"];2702[label="vyw4400",fontsize=16,color="green",shape="box"];2703[label="vyw4300",fontsize=16,color="green",shape="box"];2704[label="vyw4400",fontsize=16,color="green",shape="box"];2705[label="vyw4300",fontsize=16,color="green",shape="box"];2706[label="vyw4400",fontsize=16,color="green",shape="box"];2707[label="vyw4300",fontsize=16,color="green",shape="box"];2708[label="vyw4400",fontsize=16,color="green",shape="box"];2709[label="vyw4300",fontsize=16,color="green",shape="box"];2710[label="vyw4400",fontsize=16,color="green",shape="box"];2711[label="vyw4300",fontsize=16,color="green",shape="box"];2712[label="vyw4400",fontsize=16,color="green",shape="box"];2713[label="vyw4300",fontsize=16,color="green",shape="box"];2714[label="vyw4400",fontsize=16,color="green",shape="box"];2715[label="vyw4300",fontsize=16,color="green",shape="box"];2716[label="vyw4400",fontsize=16,color="green",shape="box"];2717[label="vyw4300",fontsize=16,color="green",shape="box"];2718[label="vyw4400",fontsize=16,color="green",shape="box"];2719[label="vyw4300",fontsize=16,color="green",shape="box"];2720[label="vyw4400",fontsize=16,color="green",shape="box"];2721[label="vyw4300",fontsize=16,color="green",shape="box"];2722[label="vyw4400",fontsize=16,color="green",shape="box"];2723[label="vyw4300",fontsize=16,color="green",shape="box"];2724[label="vyw4400",fontsize=16,color="green",shape="box"];2725[label="vyw4300",fontsize=16,color="green",shape="box"];2726[label="vyw4400",fontsize=16,color="green",shape="box"];2727[label="compare0 (Right vyw128) (Right vyw129) otherwise",fontsize=16,color="black",shape="box"];2727 -> 2767[label="",style="solid", color="black", weight=3]; 22.66/9.39 2728[label="LT",fontsize=16,color="green",shape="box"];1974 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1974[label="vyw18 == vyw13",fontsize=16,color="magenta"];1974 -> 2030[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1974 -> 2031[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1975 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1975[label="vyw18 == vyw13",fontsize=16,color="magenta"];1975 -> 2032[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1975 -> 2033[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1976 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1976[label="vyw18 == vyw13",fontsize=16,color="magenta"];1976 -> 2034[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1976 -> 2035[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1977 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1977[label="vyw18 == vyw13",fontsize=16,color="magenta"];1977 -> 2036[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1977 -> 2037[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1978 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1978[label="vyw18 == vyw13",fontsize=16,color="magenta"];1978 -> 2038[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1978 -> 2039[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1979 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1979[label="vyw18 == vyw13",fontsize=16,color="magenta"];1979 -> 2040[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1979 -> 2041[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1980 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1980[label="vyw18 == vyw13",fontsize=16,color="magenta"];1980 -> 2042[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1980 -> 2043[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1981 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1981[label="vyw18 == vyw13",fontsize=16,color="magenta"];1981 -> 2044[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1981 -> 2045[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1982 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1982[label="vyw18 == vyw13",fontsize=16,color="magenta"];1982 -> 2046[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1982 -> 2047[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1983 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1983[label="vyw18 == vyw13",fontsize=16,color="magenta"];1983 -> 2048[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1983 -> 2049[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1984 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1984[label="vyw18 == vyw13",fontsize=16,color="magenta"];1984 -> 2050[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1984 -> 2051[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1985 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1985[label="vyw18 == vyw13",fontsize=16,color="magenta"];1985 -> 2052[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1985 -> 2053[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1986 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1986[label="vyw18 == vyw13",fontsize=16,color="magenta"];1986 -> 2054[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1986 -> 2055[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1987 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1987[label="vyw18 == vyw13",fontsize=16,color="magenta"];1987 -> 2056[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1987 -> 2057[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1988 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1988[label="vyw33 == vyw28",fontsize=16,color="magenta"];1988 -> 2058[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1988 -> 2059[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1989 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1989[label="vyw33 == vyw28",fontsize=16,color="magenta"];1989 -> 2060[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1989 -> 2061[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1990 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1990[label="vyw33 == vyw28",fontsize=16,color="magenta"];1990 -> 2062[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1990 -> 2063[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1991 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1991[label="vyw33 == vyw28",fontsize=16,color="magenta"];1991 -> 2064[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1991 -> 2065[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1992 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1992[label="vyw33 == vyw28",fontsize=16,color="magenta"];1992 -> 2066[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1992 -> 2067[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1993 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1993[label="vyw33 == vyw28",fontsize=16,color="magenta"];1993 -> 2068[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1993 -> 2069[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1994 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1994[label="vyw33 == vyw28",fontsize=16,color="magenta"];1994 -> 2070[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1994 -> 2071[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1995 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1995[label="vyw33 == vyw28",fontsize=16,color="magenta"];1995 -> 2072[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1995 -> 2073[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1996 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1996[label="vyw33 == vyw28",fontsize=16,color="magenta"];1996 -> 2074[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1996 -> 2075[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1997 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1997[label="vyw33 == vyw28",fontsize=16,color="magenta"];1997 -> 2076[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1997 -> 2077[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1998 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1998[label="vyw33 == vyw28",fontsize=16,color="magenta"];1998 -> 2078[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1998 -> 2079[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1999 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.39 1999[label="vyw33 == vyw28",fontsize=16,color="magenta"];1999 -> 2080[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 1999 -> 2081[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2000 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2000[label="vyw33 == vyw28",fontsize=16,color="magenta"];2000 -> 2082[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2000 -> 2083[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2001 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2001[label="vyw33 == vyw28",fontsize=16,color="magenta"];2001 -> 2084[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2001 -> 2085[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2729[label="vyw30000",fontsize=16,color="green",shape="box"];2730[label="vyw4000",fontsize=16,color="green",shape="box"];2731[label="primMulInt (Pos vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];2731 -> 2768[label="",style="solid", color="black", weight=3]; 22.66/9.39 2732[label="primMulInt (Pos vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];2732 -> 2769[label="",style="solid", color="black", weight=3]; 22.66/9.39 2733[label="primMulInt (Neg vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];2733 -> 2770[label="",style="solid", color="black", weight=3]; 22.66/9.39 2734[label="primMulInt (Neg vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];2734 -> 2771[label="",style="solid", color="black", weight=3]; 22.66/9.39 2735 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2735[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2735 -> 2773[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2736 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2736[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2736 -> 2774[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2737[label="(vyw43000,vyw43001) <= (vyw44000,vyw44001)",fontsize=16,color="black",shape="box"];2737 -> 2781[label="",style="solid", color="black", weight=3]; 22.66/9.39 2738 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2738[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2738 -> 2775[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2739 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2739[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2739 -> 2776[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2740 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2740[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2740 -> 2777[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2741[label="Left vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2741 -> 2782[label="",style="solid", color="black", weight=3]; 22.66/9.39 2742[label="Left vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2742 -> 2783[label="",style="solid", color="black", weight=3]; 22.66/9.39 2743[label="Right vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2743 -> 2784[label="",style="solid", color="black", weight=3]; 22.66/9.39 2744[label="Right vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2744 -> 2785[label="",style="solid", color="black", weight=3]; 22.66/9.39 2745[label="LT <= LT",fontsize=16,color="black",shape="box"];2745 -> 2786[label="",style="solid", color="black", weight=3]; 22.66/9.39 2746[label="LT <= EQ",fontsize=16,color="black",shape="box"];2746 -> 2787[label="",style="solid", color="black", weight=3]; 22.66/9.39 2747[label="LT <= GT",fontsize=16,color="black",shape="box"];2747 -> 2788[label="",style="solid", color="black", weight=3]; 22.66/9.39 2748[label="EQ <= LT",fontsize=16,color="black",shape="box"];2748 -> 2789[label="",style="solid", color="black", weight=3]; 22.66/9.39 2749[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2749 -> 2790[label="",style="solid", color="black", weight=3]; 22.66/9.39 2750[label="EQ <= GT",fontsize=16,color="black",shape="box"];2750 -> 2791[label="",style="solid", color="black", weight=3]; 22.66/9.39 2751[label="GT <= LT",fontsize=16,color="black",shape="box"];2751 -> 2792[label="",style="solid", color="black", weight=3]; 22.66/9.39 2752[label="GT <= EQ",fontsize=16,color="black",shape="box"];2752 -> 2793[label="",style="solid", color="black", weight=3]; 22.66/9.39 2753[label="GT <= GT",fontsize=16,color="black",shape="box"];2753 -> 2794[label="",style="solid", color="black", weight=3]; 22.66/9.39 2754 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2754[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2754 -> 2778[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2755 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2755[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2755 -> 2779[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2756[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2756 -> 2795[label="",style="solid", color="black", weight=3]; 22.66/9.39 2757[label="Nothing <= Just vyw44000",fontsize=16,color="black",shape="box"];2757 -> 2796[label="",style="solid", color="black", weight=3]; 22.66/9.39 2758[label="Just vyw43000 <= Nothing",fontsize=16,color="black",shape="box"];2758 -> 2797[label="",style="solid", color="black", weight=3]; 22.66/9.39 2759[label="Just vyw43000 <= Just vyw44000",fontsize=16,color="black",shape="box"];2759 -> 2798[label="",style="solid", color="black", weight=3]; 22.66/9.39 2760 -> 2772[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2760[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2760 -> 2780[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2761[label="(vyw43000,vyw43001,vyw43002) <= (vyw44000,vyw44001,vyw44002)",fontsize=16,color="black",shape="box"];2761 -> 2799[label="",style="solid", color="black", weight=3]; 22.66/9.39 2762[label="False <= False",fontsize=16,color="black",shape="box"];2762 -> 2800[label="",style="solid", color="black", weight=3]; 22.66/9.39 2763[label="False <= True",fontsize=16,color="black",shape="box"];2763 -> 2801[label="",style="solid", color="black", weight=3]; 22.66/9.39 2764[label="True <= False",fontsize=16,color="black",shape="box"];2764 -> 2802[label="",style="solid", color="black", weight=3]; 22.66/9.39 2765[label="True <= True",fontsize=16,color="black",shape="box"];2765 -> 2803[label="",style="solid", color="black", weight=3]; 22.66/9.39 2766[label="compare0 (Left vyw121) (Left vyw122) True",fontsize=16,color="black",shape="box"];2766 -> 2804[label="",style="solid", color="black", weight=3]; 22.66/9.39 2767[label="compare0 (Right vyw128) (Right vyw129) True",fontsize=16,color="black",shape="box"];2767 -> 2805[label="",style="solid", color="black", weight=3]; 22.66/9.39 2030[label="vyw13",fontsize=16,color="green",shape="box"];2031[label="vyw18",fontsize=16,color="green",shape="box"];2032[label="vyw13",fontsize=16,color="green",shape="box"];2033[label="vyw18",fontsize=16,color="green",shape="box"];2034[label="vyw13",fontsize=16,color="green",shape="box"];2035[label="vyw18",fontsize=16,color="green",shape="box"];2036[label="vyw13",fontsize=16,color="green",shape="box"];2037[label="vyw18",fontsize=16,color="green",shape="box"];2038[label="vyw13",fontsize=16,color="green",shape="box"];2039[label="vyw18",fontsize=16,color="green",shape="box"];2040[label="vyw13",fontsize=16,color="green",shape="box"];2041[label="vyw18",fontsize=16,color="green",shape="box"];2042[label="vyw13",fontsize=16,color="green",shape="box"];2043[label="vyw18",fontsize=16,color="green",shape="box"];2044[label="vyw13",fontsize=16,color="green",shape="box"];2045[label="vyw18",fontsize=16,color="green",shape="box"];2046[label="vyw13",fontsize=16,color="green",shape="box"];2047[label="vyw18",fontsize=16,color="green",shape="box"];2048[label="vyw13",fontsize=16,color="green",shape="box"];2049[label="vyw18",fontsize=16,color="green",shape="box"];2050[label="vyw13",fontsize=16,color="green",shape="box"];2051[label="vyw18",fontsize=16,color="green",shape="box"];2052[label="vyw13",fontsize=16,color="green",shape="box"];2053[label="vyw18",fontsize=16,color="green",shape="box"];2054[label="vyw13",fontsize=16,color="green",shape="box"];2055[label="vyw18",fontsize=16,color="green",shape="box"];2056[label="vyw13",fontsize=16,color="green",shape="box"];2057[label="vyw18",fontsize=16,color="green",shape="box"];2058[label="vyw28",fontsize=16,color="green",shape="box"];2059[label="vyw33",fontsize=16,color="green",shape="box"];2060[label="vyw28",fontsize=16,color="green",shape="box"];2061[label="vyw33",fontsize=16,color="green",shape="box"];2062[label="vyw28",fontsize=16,color="green",shape="box"];2063[label="vyw33",fontsize=16,color="green",shape="box"];2064[label="vyw28",fontsize=16,color="green",shape="box"];2065[label="vyw33",fontsize=16,color="green",shape="box"];2066[label="vyw28",fontsize=16,color="green",shape="box"];2067[label="vyw33",fontsize=16,color="green",shape="box"];2068[label="vyw28",fontsize=16,color="green",shape="box"];2069[label="vyw33",fontsize=16,color="green",shape="box"];2070[label="vyw28",fontsize=16,color="green",shape="box"];2071[label="vyw33",fontsize=16,color="green",shape="box"];2072[label="vyw28",fontsize=16,color="green",shape="box"];2073[label="vyw33",fontsize=16,color="green",shape="box"];2074[label="vyw28",fontsize=16,color="green",shape="box"];2075[label="vyw33",fontsize=16,color="green",shape="box"];2076[label="vyw28",fontsize=16,color="green",shape="box"];2077[label="vyw33",fontsize=16,color="green",shape="box"];2078[label="vyw28",fontsize=16,color="green",shape="box"];2079[label="vyw33",fontsize=16,color="green",shape="box"];2080[label="vyw28",fontsize=16,color="green",shape="box"];2081[label="vyw33",fontsize=16,color="green",shape="box"];2082[label="vyw28",fontsize=16,color="green",shape="box"];2083[label="vyw33",fontsize=16,color="green",shape="box"];2084[label="vyw28",fontsize=16,color="green",shape="box"];2085[label="vyw33",fontsize=16,color="green",shape="box"];2768[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2768 -> 2806[label="",style="dashed", color="green", weight=3]; 22.66/9.39 2769[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2769 -> 2807[label="",style="dashed", color="green", weight=3]; 22.66/9.39 2770[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2770 -> 2808[label="",style="dashed", color="green", weight=3]; 22.66/9.39 2771[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2771 -> 2809[label="",style="dashed", color="green", weight=3]; 22.66/9.39 2773 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2773[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2773 -> 2810[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2773 -> 2811[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2772[label="not vyw131",fontsize=16,color="burlywood",shape="triangle"];4097[label="vyw131/False",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4097[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4097 -> 2812[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4098[label="vyw131/True",fontsize=10,color="white",style="solid",shape="box"];2772 -> 4098[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4098 -> 2813[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2774 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2774[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2774 -> 2814[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2774 -> 2815[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2781 -> 2888[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2781[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];2781 -> 2889[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2781 -> 2890[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2775 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2775[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2775 -> 2816[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2775 -> 2817[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2776 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2776[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2776 -> 2818[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2776 -> 2819[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2777 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2777[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2777 -> 2820[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2777 -> 2821[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2782[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4099[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4099[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4099 -> 2833[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4100[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4100[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4100 -> 2834[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4101[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4101[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4101 -> 2835[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4102[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4102[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4102 -> 2836[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4103[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4103[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4103 -> 2837[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4104[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4104[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4104 -> 2838[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4105[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4105[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4105 -> 2839[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4106[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4106[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4106 -> 2840[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4107[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4107[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4107 -> 2841[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4108[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4108[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4108 -> 2842[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4109[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4109[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4109 -> 2843[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4110[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4110[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4110 -> 2844[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4111[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4111[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4111 -> 2845[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4112[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2782 -> 4112[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4112 -> 2846[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2783[label="True",fontsize=16,color="green",shape="box"];2784[label="False",fontsize=16,color="green",shape="box"];2785[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4113[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4113[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4113 -> 2847[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4114[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4114[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4114 -> 2848[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4115[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4115[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4115 -> 2849[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4116[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4116[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4116 -> 2850[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4117[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4117[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4117 -> 2851[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4118[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4118[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4118 -> 2852[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4119[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4119[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4119 -> 2853[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4120[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4120[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4120 -> 2854[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4121[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4121[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4121 -> 2855[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4122[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4122[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4122 -> 2856[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4123[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4123[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4123 -> 2857[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4124[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4124[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4124 -> 2858[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4125[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4125[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4125 -> 2859[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4126[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2785 -> 4126[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4126 -> 2860[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2786[label="True",fontsize=16,color="green",shape="box"];2787[label="True",fontsize=16,color="green",shape="box"];2788[label="True",fontsize=16,color="green",shape="box"];2789[label="False",fontsize=16,color="green",shape="box"];2790[label="True",fontsize=16,color="green",shape="box"];2791[label="True",fontsize=16,color="green",shape="box"];2792[label="False",fontsize=16,color="green",shape="box"];2793[label="False",fontsize=16,color="green",shape="box"];2794[label="True",fontsize=16,color="green",shape="box"];2778 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2778[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2778 -> 2822[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2778 -> 2823[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2779 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2779[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2779 -> 2824[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2779 -> 2825[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2795[label="True",fontsize=16,color="green",shape="box"];2796[label="True",fontsize=16,color="green",shape="box"];2797[label="False",fontsize=16,color="green",shape="box"];2798[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4127[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4127[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4127 -> 2861[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4128[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4128[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4128 -> 2862[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4129[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4129[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4129 -> 2863[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4130[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4130[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4130 -> 2864[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4131[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4131[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4131 -> 2865[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4132[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4132[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4132 -> 2866[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4133[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4133[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4133 -> 2867[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4134[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4134[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4134 -> 2868[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4135[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4135[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4135 -> 2869[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4136[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4136[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4136 -> 2870[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4137[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4137[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4137 -> 2871[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4138[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4138[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4138 -> 2872[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4139[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4139[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4139 -> 2873[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4140[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4140[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4140 -> 2874[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2780 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2780[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2780 -> 2826[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2780 -> 2827[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2799 -> 2888[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2799[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];2799 -> 2891[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2799 -> 2892[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2800[label="True",fontsize=16,color="green",shape="box"];2801[label="True",fontsize=16,color="green",shape="box"];2802[label="False",fontsize=16,color="green",shape="box"];2803[label="True",fontsize=16,color="green",shape="box"];2804[label="GT",fontsize=16,color="green",shape="box"];2805[label="GT",fontsize=16,color="green",shape="box"];2806[label="primMulNat vyw4010 vyw30000",fontsize=16,color="burlywood",shape="triangle"];4141[label="vyw4010/Succ vyw40100",fontsize=10,color="white",style="solid",shape="box"];2806 -> 4141[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4141 -> 2875[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4142[label="vyw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];2806 -> 4142[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4142 -> 2876[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2807 -> 2806[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2807[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2807 -> 2877[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2808 -> 2806[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2808[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2808 -> 2878[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2809 -> 2806[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2809[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2809 -> 2879[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2809 -> 2880[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2810[label="GT",fontsize=16,color="green",shape="box"];2811[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4143[label="vyw4300/vyw43000 : vyw43001",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4143[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4143 -> 2881[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4144[label="vyw4300/[]",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4144[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4144 -> 2882[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2812[label="not False",fontsize=16,color="black",shape="box"];2812 -> 2883[label="",style="solid", color="black", weight=3]; 22.66/9.39 2813[label="not True",fontsize=16,color="black",shape="box"];2813 -> 2884[label="",style="solid", color="black", weight=3]; 22.66/9.39 2814[label="GT",fontsize=16,color="green",shape="box"];2815[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2815 -> 2885[label="",style="solid", color="black", weight=3]; 22.66/9.39 2889 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2889[label="vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];2889 -> 2895[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2889 -> 2896[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2890[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4145[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4145[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4145 -> 2897[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4146[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4146[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4146 -> 2898[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4147[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4147[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4147 -> 2899[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4148[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4148[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4148 -> 2900[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4149[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4149[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4149 -> 2901[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4150[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4150[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4150 -> 2902[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4151[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4151[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4151 -> 2903[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4152[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4152[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4152 -> 2904[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4153[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4153[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4153 -> 2905[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4154[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4154[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4154 -> 2906[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4155[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4155[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4155 -> 2907[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4156[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4156[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4156 -> 2908[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4157[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4157[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4157 -> 2909[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4158[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2890 -> 4158[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4158 -> 2910[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2888[label="vyw136 || vyw137",fontsize=16,color="burlywood",shape="triangle"];4159[label="vyw136/False",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4159[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4159 -> 2911[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4160[label="vyw136/True",fontsize=10,color="white",style="solid",shape="box"];2888 -> 4160[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4160 -> 2912[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2816[label="GT",fontsize=16,color="green",shape="box"];2817[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2817 -> 2913[label="",style="solid", color="black", weight=3]; 22.66/9.39 2818[label="GT",fontsize=16,color="green",shape="box"];2819[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2819 -> 2914[label="",style="solid", color="black", weight=3]; 22.66/9.39 2820[label="GT",fontsize=16,color="green",shape="box"];2821[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2821 -> 2915[label="",style="solid", color="black", weight=3]; 22.66/9.39 2833 -> 2578[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2833[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2833 -> 2916[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2833 -> 2917[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2834 -> 2579[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2834[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2834 -> 2918[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2834 -> 2919[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2835 -> 2580[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2835[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2835 -> 2920[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2835 -> 2921[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2836 -> 2581[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2836[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2836 -> 2922[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2836 -> 2923[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2837 -> 2582[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2837[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2837 -> 2924[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2837 -> 2925[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2838 -> 2583[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2838[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2838 -> 2926[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2838 -> 2927[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2839 -> 2584[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2839[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2839 -> 2928[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2839 -> 2929[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2840 -> 2585[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2840[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2840 -> 2930[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2840 -> 2931[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2841 -> 2586[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2841[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2841 -> 2932[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2841 -> 2933[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2842 -> 2587[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2842[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2842 -> 2934[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2842 -> 2935[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2843 -> 2588[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2843[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2843 -> 2936[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2843 -> 2937[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2844 -> 2589[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2844[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2844 -> 2938[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2844 -> 2939[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2845 -> 2590[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2845[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2845 -> 2940[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2845 -> 2941[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2846 -> 2591[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2846[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2846 -> 2942[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2846 -> 2943[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2847 -> 2578[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2847[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2847 -> 2944[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2847 -> 2945[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2848 -> 2579[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2848[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2848 -> 2946[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2848 -> 2947[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2849 -> 2580[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2849[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2849 -> 2948[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2849 -> 2949[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2850 -> 2581[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2850[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2850 -> 2950[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2850 -> 2951[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2851 -> 2582[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2851[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2851 -> 2952[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2851 -> 2953[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2852 -> 2583[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2852[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2852 -> 2954[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2852 -> 2955[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2853 -> 2584[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2853[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2853 -> 2956[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2853 -> 2957[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2854 -> 2585[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2854[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2854 -> 2958[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2854 -> 2959[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2855 -> 2586[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2855[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2855 -> 2960[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2855 -> 2961[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2856 -> 2587[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2856[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2856 -> 2962[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2856 -> 2963[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2857 -> 2588[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2857[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2857 -> 2964[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2857 -> 2965[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2858 -> 2589[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2858[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2858 -> 2966[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2858 -> 2967[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2859 -> 2590[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2859[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2859 -> 2968[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2859 -> 2969[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2860 -> 2591[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2860[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2860 -> 2970[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2860 -> 2971[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2822[label="GT",fontsize=16,color="green",shape="box"];2823[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4161[label="vyw4300/()",fontsize=10,color="white",style="solid",shape="box"];2823 -> 4161[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4161 -> 2972[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2824[label="GT",fontsize=16,color="green",shape="box"];2825[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4162[label="vyw4300/Integer vyw43000",fontsize=10,color="white",style="solid",shape="box"];2825 -> 4162[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4162 -> 2973[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2861 -> 2578[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2861[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2861 -> 2974[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2861 -> 2975[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2862 -> 2579[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2862[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2862 -> 2976[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2862 -> 2977[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2863 -> 2580[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2863[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2863 -> 2978[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2863 -> 2979[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2864 -> 2581[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2864[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2864 -> 2980[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2864 -> 2981[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2865 -> 2582[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2865[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2865 -> 2982[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2865 -> 2983[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2866 -> 2583[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2866[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2866 -> 2984[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2866 -> 2985[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2867 -> 2584[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2867[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2867 -> 2986[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2867 -> 2987[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2868 -> 2585[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2868[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2868 -> 2988[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2868 -> 2989[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2869 -> 2586[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2869[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2869 -> 2990[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2869 -> 2991[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2870 -> 2587[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2870[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2870 -> 2992[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2870 -> 2993[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2871 -> 2588[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2871[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2871 -> 2994[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2871 -> 2995[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2872 -> 2589[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2872[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2872 -> 2996[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2872 -> 2997[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2873 -> 2590[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2873[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2873 -> 2998[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2873 -> 2999[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2874 -> 2591[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2874[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2874 -> 3000[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2874 -> 3001[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2826[label="GT",fontsize=16,color="green",shape="box"];2827[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4163[label="vyw4300/vyw43000 :% vyw43001",fontsize=10,color="white",style="solid",shape="box"];2827 -> 4163[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4163 -> 3002[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2891 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.39 2891[label="vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];2891 -> 3003[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2891 -> 3004[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 2892[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4164[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4164[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4164 -> 3005[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4165[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4165[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4165 -> 3006[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4166[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4166[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4166 -> 3007[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4167[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4167[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4167 -> 3008[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4168[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4168[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4168 -> 3009[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4169[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4169[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4169 -> 3010[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4170[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4170[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4170 -> 3011[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4171[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4171[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4171 -> 3012[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4172[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4172[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4172 -> 3013[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4173[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4173[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4173 -> 3014[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4174[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4174[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4174 -> 3015[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4175[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4175[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4175 -> 3016[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4176[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4176[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4176 -> 3017[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4177[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2892 -> 4177[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4177 -> 3018[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2875[label="primMulNat (Succ vyw40100) vyw30000",fontsize=16,color="burlywood",shape="box"];4178[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4178[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4178 -> 3019[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4179[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2875 -> 4179[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4179 -> 3020[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2876[label="primMulNat Zero vyw30000",fontsize=16,color="burlywood",shape="box"];4180[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];2876 -> 4180[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4180 -> 3021[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4181[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2876 -> 4181[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4181 -> 3022[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2877[label="vyw30000",fontsize=16,color="green",shape="box"];2878[label="vyw4010",fontsize=16,color="green",shape="box"];2879[label="vyw4010",fontsize=16,color="green",shape="box"];2880[label="vyw30000",fontsize=16,color="green",shape="box"];2881[label="compare (vyw43000 : vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4182[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2881 -> 4182[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4182 -> 3023[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4183[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2881 -> 4183[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4183 -> 3024[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2882[label="compare [] vyw4400",fontsize=16,color="burlywood",shape="box"];4184[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2882 -> 4184[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4184 -> 3025[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4185[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2882 -> 4185[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4185 -> 3026[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2883[label="True",fontsize=16,color="green",shape="box"];2884[label="False",fontsize=16,color="green",shape="box"];2885[label="primCmpChar vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4186[label="vyw4300/Char vyw43000",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4186[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4186 -> 3027[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2895[label="vyw43001 <= vyw44001",fontsize=16,color="blue",shape="box"];4187[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4187[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4187 -> 3028[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4188[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4188[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4188 -> 3029[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4189[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4189[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4189 -> 3030[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4190[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4190[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4190 -> 3031[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4191[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4191[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4191 -> 3032[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4192[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4192[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4192 -> 3033[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4193[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4193[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4193 -> 3034[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4194[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4194[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4194 -> 3035[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4195[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4195[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4195 -> 3036[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4196[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4196[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4196 -> 3037[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4197[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4197[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4197 -> 3038[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4198[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4198[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4198 -> 3039[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4199[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4199[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4199 -> 3040[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4200[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2895 -> 4200[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4200 -> 3041[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2896[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4201[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4201[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4201 -> 3042[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4202[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4202[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4202 -> 3043[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4203[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4203[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4203 -> 3044[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4204[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4204[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4204 -> 3045[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4205[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4205[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4205 -> 3046[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4206[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4206[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4206 -> 3047[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4207[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4207[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4207 -> 3048[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4208[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4208[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4208 -> 3049[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4209[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4209[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4209 -> 3050[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4210[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4210[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4210 -> 3051[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4211[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4211[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4211 -> 3052[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4212[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4212[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4212 -> 3053[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4213[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4213[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4213 -> 3054[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4214[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2896 -> 4214[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4214 -> 3055[label="",style="solid", color="blue", weight=3]; 22.66/9.39 2897[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2897 -> 3056[label="",style="solid", color="black", weight=3]; 22.66/9.39 2898[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2898 -> 3057[label="",style="solid", color="black", weight=3]; 22.66/9.39 2899[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2899 -> 3058[label="",style="solid", color="black", weight=3]; 22.66/9.39 2900[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2900 -> 3059[label="",style="solid", color="black", weight=3]; 22.66/9.39 2901[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2901 -> 3060[label="",style="solid", color="black", weight=3]; 22.66/9.39 2902[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2902 -> 3061[label="",style="solid", color="black", weight=3]; 22.66/9.39 2903[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2903 -> 3062[label="",style="solid", color="black", weight=3]; 22.66/9.39 2904[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2904 -> 3063[label="",style="solid", color="black", weight=3]; 22.66/9.39 2905[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2905 -> 3064[label="",style="solid", color="black", weight=3]; 22.66/9.39 2906[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2906 -> 3065[label="",style="solid", color="black", weight=3]; 22.66/9.39 2907[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2907 -> 3066[label="",style="solid", color="black", weight=3]; 22.66/9.39 2908[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2908 -> 3067[label="",style="solid", color="black", weight=3]; 22.66/9.39 2909[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2909 -> 3068[label="",style="solid", color="black", weight=3]; 22.66/9.39 2910[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2910 -> 3069[label="",style="solid", color="black", weight=3]; 22.66/9.39 2911[label="False || vyw137",fontsize=16,color="black",shape="box"];2911 -> 3070[label="",style="solid", color="black", weight=3]; 22.66/9.39 2912[label="True || vyw137",fontsize=16,color="black",shape="box"];2912 -> 3071[label="",style="solid", color="black", weight=3]; 22.66/9.39 2913[label="primCmpInt vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4215[label="vyw4300/Pos vyw43000",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4215[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4215 -> 3072[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 4216[label="vyw4300/Neg vyw43000",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4216[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4216 -> 3073[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2914[label="primCmpFloat vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4217[label="vyw4300/Float vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4217[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4217 -> 3074[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2915[label="primCmpDouble vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4218[label="vyw4300/Double vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4218[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4218 -> 3075[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2916[label="vyw43000",fontsize=16,color="green",shape="box"];2917[label="vyw44000",fontsize=16,color="green",shape="box"];2918[label="vyw43000",fontsize=16,color="green",shape="box"];2919[label="vyw44000",fontsize=16,color="green",shape="box"];2920[label="vyw43000",fontsize=16,color="green",shape="box"];2921[label="vyw44000",fontsize=16,color="green",shape="box"];2922[label="vyw43000",fontsize=16,color="green",shape="box"];2923[label="vyw44000",fontsize=16,color="green",shape="box"];2924[label="vyw43000",fontsize=16,color="green",shape="box"];2925[label="vyw44000",fontsize=16,color="green",shape="box"];2926[label="vyw43000",fontsize=16,color="green",shape="box"];2927[label="vyw44000",fontsize=16,color="green",shape="box"];2928[label="vyw43000",fontsize=16,color="green",shape="box"];2929[label="vyw44000",fontsize=16,color="green",shape="box"];2930[label="vyw43000",fontsize=16,color="green",shape="box"];2931[label="vyw44000",fontsize=16,color="green",shape="box"];2932[label="vyw43000",fontsize=16,color="green",shape="box"];2933[label="vyw44000",fontsize=16,color="green",shape="box"];2934[label="vyw43000",fontsize=16,color="green",shape="box"];2935[label="vyw44000",fontsize=16,color="green",shape="box"];2936[label="vyw43000",fontsize=16,color="green",shape="box"];2937[label="vyw44000",fontsize=16,color="green",shape="box"];2938[label="vyw43000",fontsize=16,color="green",shape="box"];2939[label="vyw44000",fontsize=16,color="green",shape="box"];2940[label="vyw43000",fontsize=16,color="green",shape="box"];2941[label="vyw44000",fontsize=16,color="green",shape="box"];2942[label="vyw43000",fontsize=16,color="green",shape="box"];2943[label="vyw44000",fontsize=16,color="green",shape="box"];2944[label="vyw43000",fontsize=16,color="green",shape="box"];2945[label="vyw44000",fontsize=16,color="green",shape="box"];2946[label="vyw43000",fontsize=16,color="green",shape="box"];2947[label="vyw44000",fontsize=16,color="green",shape="box"];2948[label="vyw43000",fontsize=16,color="green",shape="box"];2949[label="vyw44000",fontsize=16,color="green",shape="box"];2950[label="vyw43000",fontsize=16,color="green",shape="box"];2951[label="vyw44000",fontsize=16,color="green",shape="box"];2952[label="vyw43000",fontsize=16,color="green",shape="box"];2953[label="vyw44000",fontsize=16,color="green",shape="box"];2954[label="vyw43000",fontsize=16,color="green",shape="box"];2955[label="vyw44000",fontsize=16,color="green",shape="box"];2956[label="vyw43000",fontsize=16,color="green",shape="box"];2957[label="vyw44000",fontsize=16,color="green",shape="box"];2958[label="vyw43000",fontsize=16,color="green",shape="box"];2959[label="vyw44000",fontsize=16,color="green",shape="box"];2960[label="vyw43000",fontsize=16,color="green",shape="box"];2961[label="vyw44000",fontsize=16,color="green",shape="box"];2962[label="vyw43000",fontsize=16,color="green",shape="box"];2963[label="vyw44000",fontsize=16,color="green",shape="box"];2964[label="vyw43000",fontsize=16,color="green",shape="box"];2965[label="vyw44000",fontsize=16,color="green",shape="box"];2966[label="vyw43000",fontsize=16,color="green",shape="box"];2967[label="vyw44000",fontsize=16,color="green",shape="box"];2968[label="vyw43000",fontsize=16,color="green",shape="box"];2969[label="vyw44000",fontsize=16,color="green",shape="box"];2970[label="vyw43000",fontsize=16,color="green",shape="box"];2971[label="vyw44000",fontsize=16,color="green",shape="box"];2972[label="compare () vyw4400",fontsize=16,color="burlywood",shape="box"];4219[label="vyw4400/()",fontsize=10,color="white",style="solid",shape="box"];2972 -> 4219[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4219 -> 3076[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2973[label="compare (Integer vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4220[label="vyw4400/Integer vyw44000",fontsize=10,color="white",style="solid",shape="box"];2973 -> 4220[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4220 -> 3077[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 2974[label="vyw43000",fontsize=16,color="green",shape="box"];2975[label="vyw44000",fontsize=16,color="green",shape="box"];2976[label="vyw43000",fontsize=16,color="green",shape="box"];2977[label="vyw44000",fontsize=16,color="green",shape="box"];2978[label="vyw43000",fontsize=16,color="green",shape="box"];2979[label="vyw44000",fontsize=16,color="green",shape="box"];2980[label="vyw43000",fontsize=16,color="green",shape="box"];2981[label="vyw44000",fontsize=16,color="green",shape="box"];2982[label="vyw43000",fontsize=16,color="green",shape="box"];2983[label="vyw44000",fontsize=16,color="green",shape="box"];2984[label="vyw43000",fontsize=16,color="green",shape="box"];2985[label="vyw44000",fontsize=16,color="green",shape="box"];2986[label="vyw43000",fontsize=16,color="green",shape="box"];2987[label="vyw44000",fontsize=16,color="green",shape="box"];2988[label="vyw43000",fontsize=16,color="green",shape="box"];2989[label="vyw44000",fontsize=16,color="green",shape="box"];2990[label="vyw43000",fontsize=16,color="green",shape="box"];2991[label="vyw44000",fontsize=16,color="green",shape="box"];2992[label="vyw43000",fontsize=16,color="green",shape="box"];2993[label="vyw44000",fontsize=16,color="green",shape="box"];2994[label="vyw43000",fontsize=16,color="green",shape="box"];2995[label="vyw44000",fontsize=16,color="green",shape="box"];2996[label="vyw43000",fontsize=16,color="green",shape="box"];2997[label="vyw44000",fontsize=16,color="green",shape="box"];2998[label="vyw43000",fontsize=16,color="green",shape="box"];2999[label="vyw44000",fontsize=16,color="green",shape="box"];3000[label="vyw43000",fontsize=16,color="green",shape="box"];3001[label="vyw44000",fontsize=16,color="green",shape="box"];3002[label="compare (vyw43000 :% vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4221[label="vyw4400/vyw44000 :% vyw44001",fontsize=10,color="white",style="solid",shape="box"];3002 -> 4221[label="",style="solid", color="burlywood", weight=9]; 22.66/9.39 4221 -> 3078[label="",style="solid", color="burlywood", weight=3]; 22.66/9.39 3003 -> 2888[label="",style="dashed", color="red", weight=0]; 22.66/9.39 3003[label="vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];3003 -> 3079[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 3003 -> 3080[label="",style="dashed", color="magenta", weight=3]; 22.66/9.39 3004[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4222[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4222[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4222 -> 3081[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4223[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4223[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4223 -> 3082[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4224[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4224[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4224 -> 3083[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4225[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4225[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4225 -> 3084[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4226[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4226[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4226 -> 3085[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4227[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4227[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4227 -> 3086[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4228[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4228[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4228 -> 3087[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4229[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4229[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4229 -> 3088[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4230[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4230[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4230 -> 3089[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4231[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4231[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4231 -> 3090[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4232[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4232[label="",style="solid", color="blue", weight=9]; 22.66/9.39 4232 -> 3091[label="",style="solid", color="blue", weight=3]; 22.66/9.39 4233[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4233[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4233 -> 3092[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4234[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4234[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4234 -> 3093[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4235[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3004 -> 4235[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4235 -> 3094[label="",style="solid", color="blue", weight=3]; 22.66/9.40 3005 -> 2897[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3005[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3005 -> 3095[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3005 -> 3096[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3006 -> 2898[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3006[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3006 -> 3097[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3006 -> 3098[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3007 -> 2899[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3007[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3007 -> 3099[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3007 -> 3100[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3008 -> 2900[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3008[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3008 -> 3101[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3008 -> 3102[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3009 -> 2901[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3009[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3009 -> 3103[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3009 -> 3104[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3010 -> 2902[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3010[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3010 -> 3105[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3010 -> 3106[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3011 -> 2903[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3011[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3011 -> 3107[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3011 -> 3108[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3012 -> 2904[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3012[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3012 -> 3109[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3012 -> 3110[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3013 -> 2905[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3013[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3013 -> 3111[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3013 -> 3112[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3014 -> 2906[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3014[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3014 -> 3113[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3014 -> 3114[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3015 -> 2907[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3015[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3015 -> 3115[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3015 -> 3116[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3016 -> 2908[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3016[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3016 -> 3117[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3016 -> 3118[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3017 -> 2909[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3017[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3017 -> 3119[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3017 -> 3120[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3018 -> 2910[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3018[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3018 -> 3121[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3018 -> 3122[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3019[label="primMulNat (Succ vyw40100) (Succ vyw300000)",fontsize=16,color="black",shape="box"];3019 -> 3123[label="",style="solid", color="black", weight=3]; 22.66/9.40 3020[label="primMulNat (Succ vyw40100) Zero",fontsize=16,color="black",shape="box"];3020 -> 3124[label="",style="solid", color="black", weight=3]; 22.66/9.40 3021[label="primMulNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];3021 -> 3125[label="",style="solid", color="black", weight=3]; 22.66/9.40 3022[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3022 -> 3126[label="",style="solid", color="black", weight=3]; 22.66/9.40 3023[label="compare (vyw43000 : vyw43001) (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3023 -> 3127[label="",style="solid", color="black", weight=3]; 22.66/9.40 3024[label="compare (vyw43000 : vyw43001) []",fontsize=16,color="black",shape="box"];3024 -> 3128[label="",style="solid", color="black", weight=3]; 22.66/9.40 3025[label="compare [] (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3025 -> 3129[label="",style="solid", color="black", weight=3]; 22.66/9.40 3026[label="compare [] []",fontsize=16,color="black",shape="box"];3026 -> 3130[label="",style="solid", color="black", weight=3]; 22.66/9.40 3027[label="primCmpChar (Char vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4236[label="vyw4400/Char vyw44000",fontsize=10,color="white",style="solid",shape="box"];3027 -> 4236[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4236 -> 3131[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3028 -> 2578[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3028[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3028 -> 3132[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3028 -> 3133[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3029 -> 2579[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3029[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3029 -> 3134[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3029 -> 3135[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3030 -> 2580[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3030[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3030 -> 3136[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3030 -> 3137[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3031 -> 2581[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3031[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3031 -> 3138[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3031 -> 3139[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3032 -> 2582[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3032[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3032 -> 3140[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3032 -> 3141[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3033 -> 2583[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3033[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3033 -> 3142[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3033 -> 3143[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3034 -> 2584[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3034[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3034 -> 3144[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3034 -> 3145[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3035 -> 2585[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3035[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3035 -> 3146[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3035 -> 3147[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3036 -> 2586[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3036[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3036 -> 3148[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3036 -> 3149[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3037 -> 2587[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3037[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3037 -> 3150[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3037 -> 3151[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3038 -> 2588[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3038[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3038 -> 3152[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3038 -> 3153[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3039 -> 2589[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3039[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3039 -> 3154[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3039 -> 3155[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3040 -> 2590[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3040[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3040 -> 3156[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3040 -> 3157[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3041 -> 2591[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3041[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3041 -> 3158[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3041 -> 3159[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3042 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3042[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3042 -> 3160[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3042 -> 3161[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3043 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3043[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3043 -> 3162[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3043 -> 3163[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3044 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3044[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3044 -> 3164[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3044 -> 3165[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3045 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3045[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3045 -> 3166[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3045 -> 3167[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3046 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3046[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3046 -> 3168[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3046 -> 3169[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3047 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3047[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3047 -> 3170[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3047 -> 3171[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3048 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3048[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3048 -> 3172[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3048 -> 3173[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3049 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3049[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3049 -> 3174[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3049 -> 3175[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3050 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3050[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3050 -> 3176[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3050 -> 3177[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3051 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3051[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3051 -> 3178[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3051 -> 3179[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3052 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3052[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3052 -> 3180[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3052 -> 3181[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3053 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3053[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3053 -> 3182[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3053 -> 3183[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3054 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3054[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3054 -> 3184[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3054 -> 3185[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3055 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3055[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3055 -> 3186[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3055 -> 3187[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3056 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3056[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3056 -> 3188[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3056 -> 3189[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3057 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3057[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3057 -> 3190[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3057 -> 3191[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3058 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3058[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3058 -> 3192[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3058 -> 3193[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3059 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3059[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3059 -> 3194[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3059 -> 3195[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3060 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3060[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3060 -> 3196[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3060 -> 3197[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3061 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3061[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3061 -> 3198[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3061 -> 3199[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3062 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3062[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3062 -> 3200[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3062 -> 3201[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3063 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3063[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3063 -> 3202[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3063 -> 3203[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3064 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3064[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3064 -> 3204[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3064 -> 3205[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3065 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3065[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3065 -> 3206[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3065 -> 3207[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3066 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3066[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3066 -> 3208[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3066 -> 3209[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3067 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3067[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3067 -> 3210[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3067 -> 3211[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3068 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3068[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3068 -> 3212[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3068 -> 3213[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3069 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3069[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3069 -> 3214[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3069 -> 3215[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3070[label="vyw137",fontsize=16,color="green",shape="box"];3071[label="True",fontsize=16,color="green",shape="box"];3072[label="primCmpInt (Pos vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4237[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3072 -> 4237[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4237 -> 3216[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4238[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3072 -> 4238[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4238 -> 3217[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3073[label="primCmpInt (Neg vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4239[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4239[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4239 -> 3218[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4240[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3073 -> 4240[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4240 -> 3219[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3074[label="primCmpFloat (Float vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4241[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4241[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4241 -> 3220[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4242[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3074 -> 4242[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4242 -> 3221[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3075[label="primCmpDouble (Double vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4243[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3075 -> 4243[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4243 -> 3222[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4244[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3075 -> 4244[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4244 -> 3223[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3076[label="compare () ()",fontsize=16,color="black",shape="box"];3076 -> 3224[label="",style="solid", color="black", weight=3]; 22.66/9.40 3077[label="compare (Integer vyw43000) (Integer vyw44000)",fontsize=16,color="black",shape="box"];3077 -> 3225[label="",style="solid", color="black", weight=3]; 22.66/9.40 3078[label="compare (vyw43000 :% vyw43001) (vyw44000 :% vyw44001)",fontsize=16,color="black",shape="box"];3078 -> 3226[label="",style="solid", color="black", weight=3]; 22.66/9.40 3079 -> 2212[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3079[label="vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];3079 -> 3227[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3079 -> 3228[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3080[label="vyw43001 < vyw44001",fontsize=16,color="blue",shape="box"];4245[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4245[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4245 -> 3229[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4246[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4246[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4246 -> 3230[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4247[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4247[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4247 -> 3231[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4248[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4248[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4248 -> 3232[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4249[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4249[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4249 -> 3233[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4250[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4250[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4250 -> 3234[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4251[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4251[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4251 -> 3235[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4252[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4252[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4252 -> 3236[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4253[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4253[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4253 -> 3237[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4254[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4254[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4254 -> 3238[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4255[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4255[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4255 -> 3239[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4256[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4256[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4256 -> 3240[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4257[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4257[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4257 -> 3241[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4258[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3080 -> 4258[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4258 -> 3242[label="",style="solid", color="blue", weight=3]; 22.66/9.40 3081 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3081[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3081 -> 3243[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3081 -> 3244[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3082 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3082[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3082 -> 3245[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3082 -> 3246[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3083 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3083[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3083 -> 3247[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3083 -> 3248[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3084 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3084[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3084 -> 3249[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3084 -> 3250[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3085 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3085[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3085 -> 3251[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3085 -> 3252[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3086 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3086[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3086 -> 3253[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3086 -> 3254[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3087 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3087[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3087 -> 3255[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3087 -> 3256[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3088 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3088[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3088 -> 3257[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3088 -> 3258[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3089 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3089[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3089 -> 3259[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3089 -> 3260[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3090 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3090[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3090 -> 3261[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3090 -> 3262[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3091 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3091[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3091 -> 3263[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3091 -> 3264[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3092 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3092[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3092 -> 3265[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3092 -> 3266[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3093 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3093[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3093 -> 3267[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3093 -> 3268[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3094 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3094[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3094 -> 3269[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3094 -> 3270[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3095[label="vyw43000",fontsize=16,color="green",shape="box"];3096[label="vyw44000",fontsize=16,color="green",shape="box"];3097[label="vyw43000",fontsize=16,color="green",shape="box"];3098[label="vyw44000",fontsize=16,color="green",shape="box"];3099[label="vyw43000",fontsize=16,color="green",shape="box"];3100[label="vyw44000",fontsize=16,color="green",shape="box"];3101[label="vyw43000",fontsize=16,color="green",shape="box"];3102[label="vyw44000",fontsize=16,color="green",shape="box"];3103[label="vyw43000",fontsize=16,color="green",shape="box"];3104[label="vyw44000",fontsize=16,color="green",shape="box"];3105[label="vyw43000",fontsize=16,color="green",shape="box"];3106[label="vyw44000",fontsize=16,color="green",shape="box"];3107[label="vyw43000",fontsize=16,color="green",shape="box"];3108[label="vyw44000",fontsize=16,color="green",shape="box"];3109[label="vyw43000",fontsize=16,color="green",shape="box"];3110[label="vyw44000",fontsize=16,color="green",shape="box"];3111[label="vyw43000",fontsize=16,color="green",shape="box"];3112[label="vyw44000",fontsize=16,color="green",shape="box"];3113[label="vyw43000",fontsize=16,color="green",shape="box"];3114[label="vyw44000",fontsize=16,color="green",shape="box"];3115[label="vyw43000",fontsize=16,color="green",shape="box"];3116[label="vyw44000",fontsize=16,color="green",shape="box"];3117[label="vyw43000",fontsize=16,color="green",shape="box"];3118[label="vyw44000",fontsize=16,color="green",shape="box"];3119[label="vyw43000",fontsize=16,color="green",shape="box"];3120[label="vyw44000",fontsize=16,color="green",shape="box"];3121[label="vyw43000",fontsize=16,color="green",shape="box"];3122[label="vyw44000",fontsize=16,color="green",shape="box"];3123 -> 3271[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3123[label="primPlusNat (primMulNat vyw40100 (Succ vyw300000)) (Succ vyw300000)",fontsize=16,color="magenta"];3123 -> 3272[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3124[label="Zero",fontsize=16,color="green",shape="box"];3125[label="Zero",fontsize=16,color="green",shape="box"];3126[label="Zero",fontsize=16,color="green",shape="box"];3127 -> 3273[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3127[label="primCompAux vyw43000 vyw44000 (compare vyw43001 vyw44001)",fontsize=16,color="magenta"];3127 -> 3274[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3128[label="GT",fontsize=16,color="green",shape="box"];3129[label="LT",fontsize=16,color="green",shape="box"];3130[label="EQ",fontsize=16,color="green",shape="box"];3131[label="primCmpChar (Char vyw43000) (Char vyw44000)",fontsize=16,color="black",shape="box"];3131 -> 3275[label="",style="solid", color="black", weight=3]; 22.66/9.40 3132[label="vyw43001",fontsize=16,color="green",shape="box"];3133[label="vyw44001",fontsize=16,color="green",shape="box"];3134[label="vyw43001",fontsize=16,color="green",shape="box"];3135[label="vyw44001",fontsize=16,color="green",shape="box"];3136[label="vyw43001",fontsize=16,color="green",shape="box"];3137[label="vyw44001",fontsize=16,color="green",shape="box"];3138[label="vyw43001",fontsize=16,color="green",shape="box"];3139[label="vyw44001",fontsize=16,color="green",shape="box"];3140[label="vyw43001",fontsize=16,color="green",shape="box"];3141[label="vyw44001",fontsize=16,color="green",shape="box"];3142[label="vyw43001",fontsize=16,color="green",shape="box"];3143[label="vyw44001",fontsize=16,color="green",shape="box"];3144[label="vyw43001",fontsize=16,color="green",shape="box"];3145[label="vyw44001",fontsize=16,color="green",shape="box"];3146[label="vyw43001",fontsize=16,color="green",shape="box"];3147[label="vyw44001",fontsize=16,color="green",shape="box"];3148[label="vyw43001",fontsize=16,color="green",shape="box"];3149[label="vyw44001",fontsize=16,color="green",shape="box"];3150[label="vyw43001",fontsize=16,color="green",shape="box"];3151[label="vyw44001",fontsize=16,color="green",shape="box"];3152[label="vyw43001",fontsize=16,color="green",shape="box"];3153[label="vyw44001",fontsize=16,color="green",shape="box"];3154[label="vyw43001",fontsize=16,color="green",shape="box"];3155[label="vyw44001",fontsize=16,color="green",shape="box"];3156[label="vyw43001",fontsize=16,color="green",shape="box"];3157[label="vyw44001",fontsize=16,color="green",shape="box"];3158[label="vyw43001",fontsize=16,color="green",shape="box"];3159[label="vyw44001",fontsize=16,color="green",shape="box"];3160[label="vyw44000",fontsize=16,color="green",shape="box"];3161[label="vyw43000",fontsize=16,color="green",shape="box"];3162[label="vyw44000",fontsize=16,color="green",shape="box"];3163[label="vyw43000",fontsize=16,color="green",shape="box"];3164[label="vyw44000",fontsize=16,color="green",shape="box"];3165[label="vyw43000",fontsize=16,color="green",shape="box"];3166[label="vyw44000",fontsize=16,color="green",shape="box"];3167[label="vyw43000",fontsize=16,color="green",shape="box"];3168[label="vyw44000",fontsize=16,color="green",shape="box"];3169[label="vyw43000",fontsize=16,color="green",shape="box"];3170[label="vyw44000",fontsize=16,color="green",shape="box"];3171[label="vyw43000",fontsize=16,color="green",shape="box"];3172[label="vyw44000",fontsize=16,color="green",shape="box"];3173[label="vyw43000",fontsize=16,color="green",shape="box"];3174[label="vyw44000",fontsize=16,color="green",shape="box"];3175[label="vyw43000",fontsize=16,color="green",shape="box"];3176[label="vyw44000",fontsize=16,color="green",shape="box"];3177[label="vyw43000",fontsize=16,color="green",shape="box"];3178[label="vyw44000",fontsize=16,color="green",shape="box"];3179[label="vyw43000",fontsize=16,color="green",shape="box"];3180[label="vyw44000",fontsize=16,color="green",shape="box"];3181[label="vyw43000",fontsize=16,color="green",shape="box"];3182[label="vyw44000",fontsize=16,color="green",shape="box"];3183[label="vyw43000",fontsize=16,color="green",shape="box"];3184[label="vyw44000",fontsize=16,color="green",shape="box"];3185[label="vyw43000",fontsize=16,color="green",shape="box"];3186[label="vyw44000",fontsize=16,color="green",shape="box"];3187[label="vyw43000",fontsize=16,color="green",shape="box"];3188[label="LT",fontsize=16,color="green",shape="box"];3189 -> 2811[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3189[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3189 -> 3276[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3189 -> 3277[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3190[label="LT",fontsize=16,color="green",shape="box"];3191 -> 2815[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3191[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3191 -> 3278[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3191 -> 3279[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3192[label="LT",fontsize=16,color="green",shape="box"];3193[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3193 -> 3280[label="",style="solid", color="black", weight=3]; 22.66/9.40 3194[label="LT",fontsize=16,color="green",shape="box"];3195 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3195[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3195 -> 3281[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3195 -> 3282[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3196[label="LT",fontsize=16,color="green",shape="box"];3197 -> 2819[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3197[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3197 -> 3283[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3197 -> 3284[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3198[label="LT",fontsize=16,color="green",shape="box"];3199 -> 2821[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3199[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3199 -> 3285[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3199 -> 3286[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3200[label="LT",fontsize=16,color="green",shape="box"];3201[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3201 -> 3287[label="",style="solid", color="black", weight=3]; 22.66/9.40 3202[label="LT",fontsize=16,color="green",shape="box"];3203[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3203 -> 3288[label="",style="solid", color="black", weight=3]; 22.66/9.40 3204[label="LT",fontsize=16,color="green",shape="box"];3205 -> 2823[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3205[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3205 -> 3289[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3205 -> 3290[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3206[label="LT",fontsize=16,color="green",shape="box"];3207 -> 2825[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3207[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3207 -> 3291[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3207 -> 3292[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3208[label="LT",fontsize=16,color="green",shape="box"];3209[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3209 -> 3293[label="",style="solid", color="black", weight=3]; 22.66/9.40 3210[label="LT",fontsize=16,color="green",shape="box"];3211 -> 2827[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3211[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3211 -> 3294[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3211 -> 3295[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3212[label="LT",fontsize=16,color="green",shape="box"];3213[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3213 -> 3296[label="",style="solid", color="black", weight=3]; 22.66/9.40 3214[label="LT",fontsize=16,color="green",shape="box"];3215[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3215 -> 3297[label="",style="solid", color="black", weight=3]; 22.66/9.40 3216[label="primCmpInt (Pos (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4259[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3216 -> 4259[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4259 -> 3298[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4260[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3216 -> 4260[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4260 -> 3299[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3217[label="primCmpInt (Pos Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4261[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4261[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4261 -> 3300[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4262[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3217 -> 4262[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4262 -> 3301[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3218[label="primCmpInt (Neg (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4263[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4263[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4263 -> 3302[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4264[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3218 -> 4264[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4264 -> 3303[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3219[label="primCmpInt (Neg Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4265[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4265[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4265 -> 3304[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4266[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3219 -> 4266[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4266 -> 3305[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3220[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4267[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3220 -> 4267[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4267 -> 3306[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3221[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4268[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3221 -> 4268[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4268 -> 3307[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3222[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4269[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3222 -> 4269[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4269 -> 3308[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3223[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4270[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3223 -> 4270[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4270 -> 3309[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3224[label="EQ",fontsize=16,color="green",shape="box"];3225 -> 2913[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3225[label="primCmpInt vyw43000 vyw44000",fontsize=16,color="magenta"];3225 -> 3310[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3225 -> 3311[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3226[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="blue",shape="box"];4271[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4271[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4271 -> 3312[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4272[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3226 -> 4272[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4272 -> 3313[label="",style="solid", color="blue", weight=3]; 22.66/9.40 3227[label="vyw43002 <= vyw44002",fontsize=16,color="blue",shape="box"];4273[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4273[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4273 -> 3314[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4274[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4274[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4274 -> 3315[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4275[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4275[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4275 -> 3316[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4276[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4276[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4276 -> 3317[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4277[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4277[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4277 -> 3318[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4278[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4278[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4278 -> 3319[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4279[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4279[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4279 -> 3320[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4280[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4280[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4280 -> 3321[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4281[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4281[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4281 -> 3322[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4282[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4282[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4282 -> 3323[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4283[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4283[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4283 -> 3324[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4284[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4284[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4284 -> 3325[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4285[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4285[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4285 -> 3326[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4286[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3227 -> 4286[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4286 -> 3327[label="",style="solid", color="blue", weight=3]; 22.66/9.40 3228[label="vyw43001 == vyw44001",fontsize=16,color="blue",shape="box"];4287[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4287[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4287 -> 3328[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4288[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4288[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4288 -> 3329[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4289[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4289[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4289 -> 3330[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4290[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4290[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4290 -> 3331[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4291[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4291[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4291 -> 3332[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4292[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4292[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4292 -> 3333[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4293[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4293[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4293 -> 3334[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4294[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4294[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4294 -> 3335[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4295[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4295[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4295 -> 3336[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4296[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4296[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4296 -> 3337[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4297[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4297[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4297 -> 3338[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4298[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4298[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4298 -> 3339[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4299[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4299[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4299 -> 3340[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4300[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3228 -> 4300[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4300 -> 3341[label="",style="solid", color="blue", weight=3]; 22.66/9.40 3229 -> 2897[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3229[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3229 -> 3342[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3229 -> 3343[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3230 -> 2898[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3230[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3230 -> 3344[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3230 -> 3345[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3231 -> 2899[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3231[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3231 -> 3346[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3231 -> 3347[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3232 -> 2900[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3232[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3232 -> 3348[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3232 -> 3349[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3233 -> 2901[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3233[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3233 -> 3350[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3233 -> 3351[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3234 -> 2902[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3234[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3234 -> 3352[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3234 -> 3353[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3235 -> 2903[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3235[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3235 -> 3354[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3235 -> 3355[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3236 -> 2904[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3236[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3236 -> 3356[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3236 -> 3357[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3237 -> 2905[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3237[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3237 -> 3358[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3237 -> 3359[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3238 -> 2906[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3238[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3238 -> 3360[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3238 -> 3361[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3239 -> 2907[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3239[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3239 -> 3362[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3239 -> 3363[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3240 -> 2908[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3240[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3240 -> 3364[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3240 -> 3365[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3241 -> 2909[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3241[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3241 -> 3366[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3241 -> 3367[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3242 -> 2910[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3242[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3242 -> 3368[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3242 -> 3369[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3243[label="vyw44000",fontsize=16,color="green",shape="box"];3244[label="vyw43000",fontsize=16,color="green",shape="box"];3245[label="vyw44000",fontsize=16,color="green",shape="box"];3246[label="vyw43000",fontsize=16,color="green",shape="box"];3247[label="vyw44000",fontsize=16,color="green",shape="box"];3248[label="vyw43000",fontsize=16,color="green",shape="box"];3249[label="vyw44000",fontsize=16,color="green",shape="box"];3250[label="vyw43000",fontsize=16,color="green",shape="box"];3251[label="vyw44000",fontsize=16,color="green",shape="box"];3252[label="vyw43000",fontsize=16,color="green",shape="box"];3253[label="vyw44000",fontsize=16,color="green",shape="box"];3254[label="vyw43000",fontsize=16,color="green",shape="box"];3255[label="vyw44000",fontsize=16,color="green",shape="box"];3256[label="vyw43000",fontsize=16,color="green",shape="box"];3257[label="vyw44000",fontsize=16,color="green",shape="box"];3258[label="vyw43000",fontsize=16,color="green",shape="box"];3259[label="vyw44000",fontsize=16,color="green",shape="box"];3260[label="vyw43000",fontsize=16,color="green",shape="box"];3261[label="vyw44000",fontsize=16,color="green",shape="box"];3262[label="vyw43000",fontsize=16,color="green",shape="box"];3263[label="vyw44000",fontsize=16,color="green",shape="box"];3264[label="vyw43000",fontsize=16,color="green",shape="box"];3265[label="vyw44000",fontsize=16,color="green",shape="box"];3266[label="vyw43000",fontsize=16,color="green",shape="box"];3267[label="vyw44000",fontsize=16,color="green",shape="box"];3268[label="vyw43000",fontsize=16,color="green",shape="box"];3269[label="vyw44000",fontsize=16,color="green",shape="box"];3270[label="vyw43000",fontsize=16,color="green",shape="box"];3272 -> 2806[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3272[label="primMulNat vyw40100 (Succ vyw300000)",fontsize=16,color="magenta"];3272 -> 3370[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3272 -> 3371[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3271[label="primPlusNat vyw138 (Succ vyw300000)",fontsize=16,color="burlywood",shape="triangle"];4301[label="vyw138/Succ vyw1380",fontsize=10,color="white",style="solid",shape="box"];3271 -> 4301[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4301 -> 3372[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4302[label="vyw138/Zero",fontsize=10,color="white",style="solid",shape="box"];3271 -> 4302[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4302 -> 3373[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3274 -> 2811[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3274[label="compare vyw43001 vyw44001",fontsize=16,color="magenta"];3274 -> 3374[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3274 -> 3375[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3273[label="primCompAux vyw43000 vyw44000 vyw139",fontsize=16,color="black",shape="triangle"];3273 -> 3376[label="",style="solid", color="black", weight=3]; 22.66/9.40 3275[label="primCmpNat vyw43000 vyw44000",fontsize=16,color="burlywood",shape="triangle"];4303[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3275 -> 4303[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4303 -> 3377[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4304[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3275 -> 4304[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4304 -> 3378[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3276[label="vyw43000",fontsize=16,color="green",shape="box"];3277[label="vyw44000",fontsize=16,color="green",shape="box"];3278[label="vyw43000",fontsize=16,color="green",shape="box"];3279[label="vyw44000",fontsize=16,color="green",shape="box"];3280[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3280 -> 3379[label="",style="solid", color="black", weight=3]; 22.66/9.40 3281[label="vyw43000",fontsize=16,color="green",shape="box"];3282[label="vyw44000",fontsize=16,color="green",shape="box"];3283[label="vyw43000",fontsize=16,color="green",shape="box"];3284[label="vyw44000",fontsize=16,color="green",shape="box"];3285[label="vyw43000",fontsize=16,color="green",shape="box"];3286[label="vyw44000",fontsize=16,color="green",shape="box"];3287[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3287 -> 3380[label="",style="solid", color="black", weight=3]; 22.66/9.40 3288[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3288 -> 3381[label="",style="solid", color="black", weight=3]; 22.66/9.40 3289[label="vyw43000",fontsize=16,color="green",shape="box"];3290[label="vyw44000",fontsize=16,color="green",shape="box"];3291[label="vyw43000",fontsize=16,color="green",shape="box"];3292[label="vyw44000",fontsize=16,color="green",shape="box"];3293[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3293 -> 3382[label="",style="solid", color="black", weight=3]; 22.66/9.40 3294[label="vyw43000",fontsize=16,color="green",shape="box"];3295[label="vyw44000",fontsize=16,color="green",shape="box"];3296[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3296 -> 3383[label="",style="solid", color="black", weight=3]; 22.66/9.40 3297[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3297 -> 3384[label="",style="solid", color="black", weight=3]; 22.66/9.40 3298[label="primCmpInt (Pos (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3298 -> 3385[label="",style="solid", color="black", weight=3]; 22.66/9.40 3299[label="primCmpInt (Pos (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3299 -> 3386[label="",style="solid", color="black", weight=3]; 22.66/9.40 3300[label="primCmpInt (Pos Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4305[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4305[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4305 -> 3387[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4306[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4306[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4306 -> 3388[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3301[label="primCmpInt (Pos Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4307[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3301 -> 4307[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4307 -> 3389[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4308[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3301 -> 4308[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4308 -> 3390[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3302[label="primCmpInt (Neg (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3302 -> 3391[label="",style="solid", color="black", weight=3]; 22.66/9.40 3303[label="primCmpInt (Neg (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3303 -> 3392[label="",style="solid", color="black", weight=3]; 22.66/9.40 3304[label="primCmpInt (Neg Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4309[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3304 -> 4309[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4309 -> 3393[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4310[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3304 -> 4310[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4310 -> 3394[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3305[label="primCmpInt (Neg Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4311[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3305 -> 4311[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4311 -> 3395[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4312[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3305 -> 4312[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4312 -> 3396[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3306[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4313[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3306 -> 4313[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4313 -> 3397[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4314[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3306 -> 4314[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4314 -> 3398[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3307[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4315[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3307 -> 4315[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4315 -> 3399[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4316[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3307 -> 4316[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4316 -> 3400[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3308[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4317[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3308 -> 4317[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4317 -> 3401[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4318[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3308 -> 4318[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4318 -> 3402[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3309[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4319[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3309 -> 4319[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4319 -> 3403[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4320[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3309 -> 4320[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4320 -> 3404[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3310[label="vyw43000",fontsize=16,color="green",shape="box"];3311[label="vyw44000",fontsize=16,color="green",shape="box"];3312 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3312[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3312 -> 3405[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3312 -> 3406[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3313 -> 2825[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3313[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3313 -> 3407[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3313 -> 3408[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3314 -> 2578[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3314[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3314 -> 3409[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3314 -> 3410[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3315 -> 2579[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3315[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3315 -> 3411[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3315 -> 3412[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3316 -> 2580[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3316[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3316 -> 3413[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3316 -> 3414[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3317 -> 2581[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3317[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3317 -> 3415[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3317 -> 3416[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3318 -> 2582[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3318[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3318 -> 3417[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3318 -> 3418[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3319 -> 2583[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3319[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3319 -> 3419[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3319 -> 3420[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3320 -> 2584[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3320[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3320 -> 3421[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3320 -> 3422[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3321 -> 2585[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3321[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3321 -> 3423[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3321 -> 3424[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3322 -> 2586[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3322[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3322 -> 3425[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3322 -> 3426[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3323 -> 2587[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3323[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3323 -> 3427[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3323 -> 3428[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3324 -> 2588[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3324[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3324 -> 3429[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3324 -> 3430[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3325 -> 2589[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3325[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3325 -> 3431[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3325 -> 3432[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3326 -> 2590[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3326[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3326 -> 3433[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3326 -> 3434[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3327 -> 2591[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3327[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3327 -> 3435[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3327 -> 3436[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3328 -> 1902[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3328[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3328 -> 3437[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3328 -> 3438[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3329 -> 1895[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3329[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3329 -> 3439[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3329 -> 3440[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3330 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3330[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3330 -> 3441[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3330 -> 3442[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3331 -> 1901[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3331[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3331 -> 3443[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3331 -> 3444[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3332 -> 1898[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3332[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3332 -> 3445[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3332 -> 3446[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3333 -> 1897[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3333[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3333 -> 3447[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3333 -> 3448[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3334 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3334[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3334 -> 3449[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3334 -> 3450[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3335 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3335[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3335 -> 3451[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3335 -> 3452[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3336 -> 1893[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3336[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3336 -> 3453[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3336 -> 3454[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3337 -> 1904[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3337[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3337 -> 3455[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3337 -> 3456[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3338 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3338[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3338 -> 3457[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3338 -> 3458[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3339 -> 1905[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3339[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3339 -> 3459[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3339 -> 3460[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3340 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3340[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3340 -> 3461[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3340 -> 3462[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3341 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3341[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3341 -> 3463[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3341 -> 3464[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3342[label="vyw43001",fontsize=16,color="green",shape="box"];3343[label="vyw44001",fontsize=16,color="green",shape="box"];3344[label="vyw43001",fontsize=16,color="green",shape="box"];3345[label="vyw44001",fontsize=16,color="green",shape="box"];3346[label="vyw43001",fontsize=16,color="green",shape="box"];3347[label="vyw44001",fontsize=16,color="green",shape="box"];3348[label="vyw43001",fontsize=16,color="green",shape="box"];3349[label="vyw44001",fontsize=16,color="green",shape="box"];3350[label="vyw43001",fontsize=16,color="green",shape="box"];3351[label="vyw44001",fontsize=16,color="green",shape="box"];3352[label="vyw43001",fontsize=16,color="green",shape="box"];3353[label="vyw44001",fontsize=16,color="green",shape="box"];3354[label="vyw43001",fontsize=16,color="green",shape="box"];3355[label="vyw44001",fontsize=16,color="green",shape="box"];3356[label="vyw43001",fontsize=16,color="green",shape="box"];3357[label="vyw44001",fontsize=16,color="green",shape="box"];3358[label="vyw43001",fontsize=16,color="green",shape="box"];3359[label="vyw44001",fontsize=16,color="green",shape="box"];3360[label="vyw43001",fontsize=16,color="green",shape="box"];3361[label="vyw44001",fontsize=16,color="green",shape="box"];3362[label="vyw43001",fontsize=16,color="green",shape="box"];3363[label="vyw44001",fontsize=16,color="green",shape="box"];3364[label="vyw43001",fontsize=16,color="green",shape="box"];3365[label="vyw44001",fontsize=16,color="green",shape="box"];3366[label="vyw43001",fontsize=16,color="green",shape="box"];3367[label="vyw44001",fontsize=16,color="green",shape="box"];3368[label="vyw43001",fontsize=16,color="green",shape="box"];3369[label="vyw44001",fontsize=16,color="green",shape="box"];3370[label="vyw40100",fontsize=16,color="green",shape="box"];3371[label="Succ vyw300000",fontsize=16,color="green",shape="box"];3372[label="primPlusNat (Succ vyw1380) (Succ vyw300000)",fontsize=16,color="black",shape="box"];3372 -> 3465[label="",style="solid", color="black", weight=3]; 22.66/9.40 3373[label="primPlusNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];3373 -> 3466[label="",style="solid", color="black", weight=3]; 22.66/9.40 3374[label="vyw43001",fontsize=16,color="green",shape="box"];3375[label="vyw44001",fontsize=16,color="green",shape="box"];3376 -> 3467[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3376[label="primCompAux0 vyw139 (compare vyw43000 vyw44000)",fontsize=16,color="magenta"];3376 -> 3468[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3376 -> 3469[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3377[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="burlywood",shape="box"];4321[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3377 -> 4321[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4321 -> 3470[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4322[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3377 -> 4322[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4322 -> 3471[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3378[label="primCmpNat Zero vyw44000",fontsize=16,color="burlywood",shape="box"];4323[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3378 -> 4323[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4323 -> 3472[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4324[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3378 -> 4324[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4324 -> 3473[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3379 -> 3474[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3379[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3379 -> 3475[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3380 -> 1855[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3380[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3380 -> 3476[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3380 -> 3477[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3380 -> 3478[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3381 -> 3479[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3381[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3381 -> 3480[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3382 -> 3481[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3382[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3382 -> 3482[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3383 -> 3483[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3383[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3383 -> 3484[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3384 -> 3485[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3384[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3384 -> 3486[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3385 -> 3275[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3385[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="magenta"];3385 -> 3487[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3385 -> 3488[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3386[label="GT",fontsize=16,color="green",shape="box"];3387[label="primCmpInt (Pos Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3387 -> 3489[label="",style="solid", color="black", weight=3]; 22.66/9.40 3388[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3388 -> 3490[label="",style="solid", color="black", weight=3]; 22.66/9.40 3389[label="primCmpInt (Pos Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3389 -> 3491[label="",style="solid", color="black", weight=3]; 22.66/9.40 3390[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3390 -> 3492[label="",style="solid", color="black", weight=3]; 22.66/9.40 3391[label="LT",fontsize=16,color="green",shape="box"];3392 -> 3275[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3392[label="primCmpNat vyw44000 (Succ vyw430000)",fontsize=16,color="magenta"];3392 -> 3493[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3392 -> 3494[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3393[label="primCmpInt (Neg Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3393 -> 3495[label="",style="solid", color="black", weight=3]; 22.66/9.40 3394[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3394 -> 3496[label="",style="solid", color="black", weight=3]; 22.66/9.40 3395[label="primCmpInt (Neg Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3395 -> 3497[label="",style="solid", color="black", weight=3]; 22.66/9.40 3396[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3396 -> 3498[label="",style="solid", color="black", weight=3]; 22.66/9.40 3397[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3397 -> 3499[label="",style="solid", color="black", weight=3]; 22.66/9.40 3398[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3398 -> 3500[label="",style="solid", color="black", weight=3]; 22.66/9.40 3399[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3399 -> 3501[label="",style="solid", color="black", weight=3]; 22.66/9.40 3400[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3400 -> 3502[label="",style="solid", color="black", weight=3]; 22.66/9.40 3401[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3401 -> 3503[label="",style="solid", color="black", weight=3]; 22.66/9.40 3402[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3402 -> 3504[label="",style="solid", color="black", weight=3]; 22.66/9.40 3403[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3403 -> 3505[label="",style="solid", color="black", weight=3]; 22.66/9.40 3404[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3404 -> 3506[label="",style="solid", color="black", weight=3]; 22.66/9.40 3405 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3405[label="vyw43000 * vyw44001",fontsize=16,color="magenta"];3405 -> 3507[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3405 -> 3508[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3406 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3406[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3406 -> 3509[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3406 -> 3510[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3407[label="vyw43000 * vyw44001",fontsize=16,color="burlywood",shape="triangle"];4325[label="vyw43000/Integer vyw430000",fontsize=10,color="white",style="solid",shape="box"];3407 -> 4325[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4325 -> 3511[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3408 -> 3407[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3408[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3408 -> 3512[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3408 -> 3513[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3409[label="vyw43002",fontsize=16,color="green",shape="box"];3410[label="vyw44002",fontsize=16,color="green",shape="box"];3411[label="vyw43002",fontsize=16,color="green",shape="box"];3412[label="vyw44002",fontsize=16,color="green",shape="box"];3413[label="vyw43002",fontsize=16,color="green",shape="box"];3414[label="vyw44002",fontsize=16,color="green",shape="box"];3415[label="vyw43002",fontsize=16,color="green",shape="box"];3416[label="vyw44002",fontsize=16,color="green",shape="box"];3417[label="vyw43002",fontsize=16,color="green",shape="box"];3418[label="vyw44002",fontsize=16,color="green",shape="box"];3419[label="vyw43002",fontsize=16,color="green",shape="box"];3420[label="vyw44002",fontsize=16,color="green",shape="box"];3421[label="vyw43002",fontsize=16,color="green",shape="box"];3422[label="vyw44002",fontsize=16,color="green",shape="box"];3423[label="vyw43002",fontsize=16,color="green",shape="box"];3424[label="vyw44002",fontsize=16,color="green",shape="box"];3425[label="vyw43002",fontsize=16,color="green",shape="box"];3426[label="vyw44002",fontsize=16,color="green",shape="box"];3427[label="vyw43002",fontsize=16,color="green",shape="box"];3428[label="vyw44002",fontsize=16,color="green",shape="box"];3429[label="vyw43002",fontsize=16,color="green",shape="box"];3430[label="vyw44002",fontsize=16,color="green",shape="box"];3431[label="vyw43002",fontsize=16,color="green",shape="box"];3432[label="vyw44002",fontsize=16,color="green",shape="box"];3433[label="vyw43002",fontsize=16,color="green",shape="box"];3434[label="vyw44002",fontsize=16,color="green",shape="box"];3435[label="vyw43002",fontsize=16,color="green",shape="box"];3436[label="vyw44002",fontsize=16,color="green",shape="box"];3437[label="vyw44001",fontsize=16,color="green",shape="box"];3438[label="vyw43001",fontsize=16,color="green",shape="box"];3439[label="vyw44001",fontsize=16,color="green",shape="box"];3440[label="vyw43001",fontsize=16,color="green",shape="box"];3441[label="vyw44001",fontsize=16,color="green",shape="box"];3442[label="vyw43001",fontsize=16,color="green",shape="box"];3443[label="vyw44001",fontsize=16,color="green",shape="box"];3444[label="vyw43001",fontsize=16,color="green",shape="box"];3445[label="vyw44001",fontsize=16,color="green",shape="box"];3446[label="vyw43001",fontsize=16,color="green",shape="box"];3447[label="vyw44001",fontsize=16,color="green",shape="box"];3448[label="vyw43001",fontsize=16,color="green",shape="box"];3449[label="vyw44001",fontsize=16,color="green",shape="box"];3450[label="vyw43001",fontsize=16,color="green",shape="box"];3451[label="vyw44001",fontsize=16,color="green",shape="box"];3452[label="vyw43001",fontsize=16,color="green",shape="box"];3453[label="vyw44001",fontsize=16,color="green",shape="box"];3454[label="vyw43001",fontsize=16,color="green",shape="box"];3455[label="vyw44001",fontsize=16,color="green",shape="box"];3456[label="vyw43001",fontsize=16,color="green",shape="box"];3457[label="vyw44001",fontsize=16,color="green",shape="box"];3458[label="vyw43001",fontsize=16,color="green",shape="box"];3459[label="vyw44001",fontsize=16,color="green",shape="box"];3460[label="vyw43001",fontsize=16,color="green",shape="box"];3461[label="vyw44001",fontsize=16,color="green",shape="box"];3462[label="vyw43001",fontsize=16,color="green",shape="box"];3463[label="vyw44001",fontsize=16,color="green",shape="box"];3464[label="vyw43001",fontsize=16,color="green",shape="box"];3465[label="Succ (Succ (primPlusNat vyw1380 vyw300000))",fontsize=16,color="green",shape="box"];3465 -> 3514[label="",style="dashed", color="green", weight=3]; 22.66/9.40 3466[label="Succ vyw300000",fontsize=16,color="green",shape="box"];3468[label="compare vyw43000 vyw44000",fontsize=16,color="blue",shape="box"];4326[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4326[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4326 -> 3515[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4327[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4327[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4327 -> 3516[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4328[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4328[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4328 -> 3517[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4329[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4329[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4329 -> 3518[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4330[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4330[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4330 -> 3519[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4331[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4331[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4331 -> 3520[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4332[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4332[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4332 -> 3521[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4333[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4333[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4333 -> 3522[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4334[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4334[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4334 -> 3523[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4335[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4335[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4335 -> 3524[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4336[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4336[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4336 -> 3525[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4337[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4337[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4337 -> 3526[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4338[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4338[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4338 -> 3527[label="",style="solid", color="blue", weight=3]; 22.66/9.40 4339[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3468 -> 4339[label="",style="solid", color="blue", weight=9]; 22.66/9.40 4339 -> 3528[label="",style="solid", color="blue", weight=3]; 22.66/9.40 3469[label="vyw139",fontsize=16,color="green",shape="box"];3467[label="primCompAux0 vyw143 vyw144",fontsize=16,color="burlywood",shape="triangle"];4340[label="vyw144/LT",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4340[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4340 -> 3529[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4341[label="vyw144/EQ",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4341[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4341 -> 3530[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4342[label="vyw144/GT",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4342[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4342 -> 3531[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3470[label="primCmpNat (Succ vyw430000) (Succ vyw440000)",fontsize=16,color="black",shape="box"];3470 -> 3532[label="",style="solid", color="black", weight=3]; 22.66/9.40 3471[label="primCmpNat (Succ vyw430000) Zero",fontsize=16,color="black",shape="box"];3471 -> 3533[label="",style="solid", color="black", weight=3]; 22.66/9.40 3472[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="black",shape="box"];3472 -> 3534[label="",style="solid", color="black", weight=3]; 22.66/9.40 3473[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3473 -> 3535[label="",style="solid", color="black", weight=3]; 22.66/9.40 3475 -> 1894[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3475[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3475 -> 3536[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3475 -> 3537[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3474[label="compare2 vyw43000 vyw44000 vyw145",fontsize=16,color="burlywood",shape="triangle"];4343[label="vyw145/False",fontsize=10,color="white",style="solid",shape="box"];3474 -> 4343[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4343 -> 3538[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4344[label="vyw145/True",fontsize=10,color="white",style="solid",shape="box"];3474 -> 4344[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4344 -> 3539[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3476[label="vyw44000",fontsize=16,color="green",shape="box"];3477 -> 1906[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3477[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3477 -> 3540[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3477 -> 3541[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3478[label="vyw43000",fontsize=16,color="green",shape="box"];3480 -> 48[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3480[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3480 -> 3542[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3480 -> 3543[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3479[label="compare2 vyw43000 vyw44000 vyw146",fontsize=16,color="burlywood",shape="triangle"];4345[label="vyw146/False",fontsize=10,color="white",style="solid",shape="box"];3479 -> 4345[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4345 -> 3544[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4346[label="vyw146/True",fontsize=10,color="white",style="solid",shape="box"];3479 -> 4346[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4346 -> 3545[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3482 -> 1903[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3482[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3482 -> 3546[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3482 -> 3547[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3481[label="compare2 vyw43000 vyw44000 vyw147",fontsize=16,color="burlywood",shape="triangle"];4347[label="vyw147/False",fontsize=10,color="white",style="solid",shape="box"];3481 -> 4347[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4347 -> 3548[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4348[label="vyw147/True",fontsize=10,color="white",style="solid",shape="box"];3481 -> 4348[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4348 -> 3549[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3484 -> 1900[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3484[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3484 -> 3550[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3484 -> 3551[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3483[label="compare2 vyw43000 vyw44000 vyw148",fontsize=16,color="burlywood",shape="triangle"];4349[label="vyw148/False",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4349[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4349 -> 3552[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4350[label="vyw148/True",fontsize=10,color="white",style="solid",shape="box"];3483 -> 4350[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4350 -> 3553[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3486 -> 1896[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3486[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3486 -> 3554[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3486 -> 3555[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3485[label="compare2 vyw43000 vyw44000 vyw149",fontsize=16,color="burlywood",shape="triangle"];4351[label="vyw149/False",fontsize=10,color="white",style="solid",shape="box"];3485 -> 4351[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4351 -> 3556[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4352[label="vyw149/True",fontsize=10,color="white",style="solid",shape="box"];3485 -> 4352[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4352 -> 3557[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3487[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3488[label="vyw44000",fontsize=16,color="green",shape="box"];3489 -> 3275[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3489[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="magenta"];3489 -> 3558[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3489 -> 3559[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3490[label="EQ",fontsize=16,color="green",shape="box"];3491[label="GT",fontsize=16,color="green",shape="box"];3492[label="EQ",fontsize=16,color="green",shape="box"];3493[label="vyw44000",fontsize=16,color="green",shape="box"];3494[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3495[label="LT",fontsize=16,color="green",shape="box"];3496[label="EQ",fontsize=16,color="green",shape="box"];3497 -> 3275[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3497[label="primCmpNat (Succ vyw440000) Zero",fontsize=16,color="magenta"];3497 -> 3560[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3497 -> 3561[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3498[label="EQ",fontsize=16,color="green",shape="box"];3499 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3499[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3499 -> 3562[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3499 -> 3563[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3500 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3500[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3500 -> 3564[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3500 -> 3565[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3501 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3501[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3501 -> 3566[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3501 -> 3567[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3502 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3502[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3502 -> 3568[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3502 -> 3569[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3503 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3503[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3503 -> 3570[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3503 -> 3571[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3504 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3504[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3504 -> 3572[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3504 -> 3573[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3505 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3505[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3505 -> 3574[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3505 -> 3575[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3506 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3506[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3506 -> 3576[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3506 -> 3577[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3507[label="vyw44001",fontsize=16,color="green",shape="box"];3508[label="vyw43000",fontsize=16,color="green",shape="box"];3509[label="vyw43001",fontsize=16,color="green",shape="box"];3510[label="vyw44000",fontsize=16,color="green",shape="box"];3511[label="Integer vyw430000 * vyw44001",fontsize=16,color="burlywood",shape="box"];4353[label="vyw44001/Integer vyw440010",fontsize=10,color="white",style="solid",shape="box"];3511 -> 4353[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4353 -> 3578[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3512[label="vyw44000",fontsize=16,color="green",shape="box"];3513[label="vyw43001",fontsize=16,color="green",shape="box"];3514[label="primPlusNat vyw1380 vyw300000",fontsize=16,color="burlywood",shape="triangle"];4354[label="vyw1380/Succ vyw13800",fontsize=10,color="white",style="solid",shape="box"];3514 -> 4354[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4354 -> 3579[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4355[label="vyw1380/Zero",fontsize=10,color="white",style="solid",shape="box"];3514 -> 4355[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4355 -> 3580[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3515 -> 2811[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3515[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3515 -> 3581[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3515 -> 3582[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3516 -> 2815[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3516[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3516 -> 3583[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3516 -> 3584[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3517 -> 3193[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3517[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3517 -> 3585[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3517 -> 3586[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3518 -> 2817[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3518[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3518 -> 3587[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3518 -> 3588[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3519 -> 2819[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3519[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3519 -> 3589[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3519 -> 3590[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3520 -> 2821[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3520[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3520 -> 3591[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3520 -> 3592[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3521 -> 3201[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3521[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3521 -> 3593[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3521 -> 3594[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3522 -> 3203[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3522[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3522 -> 3595[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3522 -> 3596[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3523 -> 2823[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3523[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3523 -> 3597[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3523 -> 3598[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3524 -> 2825[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3524[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3524 -> 3599[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3524 -> 3600[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3525 -> 3209[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3525[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3525 -> 3601[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3525 -> 3602[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3526 -> 2827[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3526[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3526 -> 3603[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3526 -> 3604[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3527 -> 3213[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3527[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3527 -> 3605[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3527 -> 3606[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3528 -> 3215[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3528[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3528 -> 3607[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3528 -> 3608[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3529[label="primCompAux0 vyw143 LT",fontsize=16,color="black",shape="box"];3529 -> 3609[label="",style="solid", color="black", weight=3]; 22.66/9.40 3530[label="primCompAux0 vyw143 EQ",fontsize=16,color="black",shape="box"];3530 -> 3610[label="",style="solid", color="black", weight=3]; 22.66/9.40 3531[label="primCompAux0 vyw143 GT",fontsize=16,color="black",shape="box"];3531 -> 3611[label="",style="solid", color="black", weight=3]; 22.66/9.40 3532 -> 3275[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3532[label="primCmpNat vyw430000 vyw440000",fontsize=16,color="magenta"];3532 -> 3612[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3532 -> 3613[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3533[label="GT",fontsize=16,color="green",shape="box"];3534[label="LT",fontsize=16,color="green",shape="box"];3535[label="EQ",fontsize=16,color="green",shape="box"];3536[label="vyw44000",fontsize=16,color="green",shape="box"];3537[label="vyw43000",fontsize=16,color="green",shape="box"];3538[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3538 -> 3614[label="",style="solid", color="black", weight=3]; 22.66/9.40 3539[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3539 -> 3615[label="",style="solid", color="black", weight=3]; 22.66/9.40 3540[label="vyw44000",fontsize=16,color="green",shape="box"];3541[label="vyw43000",fontsize=16,color="green",shape="box"];3542[label="vyw44000",fontsize=16,color="green",shape="box"];3543[label="vyw43000",fontsize=16,color="green",shape="box"];3544[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3544 -> 3616[label="",style="solid", color="black", weight=3]; 22.66/9.40 3545[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3545 -> 3617[label="",style="solid", color="black", weight=3]; 22.66/9.40 3546[label="vyw44000",fontsize=16,color="green",shape="box"];3547[label="vyw43000",fontsize=16,color="green",shape="box"];3548[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3548 -> 3618[label="",style="solid", color="black", weight=3]; 22.66/9.40 3549[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3549 -> 3619[label="",style="solid", color="black", weight=3]; 22.66/9.40 3550[label="vyw44000",fontsize=16,color="green",shape="box"];3551[label="vyw43000",fontsize=16,color="green",shape="box"];3552[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3552 -> 3620[label="",style="solid", color="black", weight=3]; 22.66/9.40 3553[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3553 -> 3621[label="",style="solid", color="black", weight=3]; 22.66/9.40 3554[label="vyw44000",fontsize=16,color="green",shape="box"];3555[label="vyw43000",fontsize=16,color="green",shape="box"];3556[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3556 -> 3622[label="",style="solid", color="black", weight=3]; 22.66/9.40 3557[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3557 -> 3623[label="",style="solid", color="black", weight=3]; 22.66/9.40 3558[label="Zero",fontsize=16,color="green",shape="box"];3559[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3560[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3561[label="Zero",fontsize=16,color="green",shape="box"];3562 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3562[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3562 -> 3624[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3562 -> 3625[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3563 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3563[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3563 -> 3626[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3563 -> 3627[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3564 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3564[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3564 -> 3628[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3564 -> 3629[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3565 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3565[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3565 -> 3630[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3565 -> 3631[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3566 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3566[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3566 -> 3632[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3566 -> 3633[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3567 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3567[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3567 -> 3634[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3567 -> 3635[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3568 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3568[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3568 -> 3636[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3568 -> 3637[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3569 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3569[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3569 -> 3638[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3569 -> 3639[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3570 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3570[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3570 -> 3640[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3570 -> 3641[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3571 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3571[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3571 -> 3642[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3571 -> 3643[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3572 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3572[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3572 -> 3644[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3572 -> 3645[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3573 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3573[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3573 -> 3646[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3573 -> 3647[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3574 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3574[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3574 -> 3648[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3574 -> 3649[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3575 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3575[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3575 -> 3650[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3575 -> 3651[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3576 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3576[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3576 -> 3652[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3576 -> 3653[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3577 -> 2257[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3577[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3577 -> 3654[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3577 -> 3655[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3578[label="Integer vyw430000 * Integer vyw440010",fontsize=16,color="black",shape="box"];3578 -> 3656[label="",style="solid", color="black", weight=3]; 22.66/9.40 3579[label="primPlusNat (Succ vyw13800) vyw300000",fontsize=16,color="burlywood",shape="box"];4356[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];3579 -> 4356[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4356 -> 3657[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4357[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3579 -> 4357[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4357 -> 3658[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3580[label="primPlusNat Zero vyw300000",fontsize=16,color="burlywood",shape="box"];4358[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];3580 -> 4358[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4358 -> 3659[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4359[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3580 -> 4359[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4359 -> 3660[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3581[label="vyw43000",fontsize=16,color="green",shape="box"];3582[label="vyw44000",fontsize=16,color="green",shape="box"];3583[label="vyw43000",fontsize=16,color="green",shape="box"];3584[label="vyw44000",fontsize=16,color="green",shape="box"];3585[label="vyw43000",fontsize=16,color="green",shape="box"];3586[label="vyw44000",fontsize=16,color="green",shape="box"];3587[label="vyw43000",fontsize=16,color="green",shape="box"];3588[label="vyw44000",fontsize=16,color="green",shape="box"];3589[label="vyw43000",fontsize=16,color="green",shape="box"];3590[label="vyw44000",fontsize=16,color="green",shape="box"];3591[label="vyw43000",fontsize=16,color="green",shape="box"];3592[label="vyw44000",fontsize=16,color="green",shape="box"];3593[label="vyw43000",fontsize=16,color="green",shape="box"];3594[label="vyw44000",fontsize=16,color="green",shape="box"];3595[label="vyw43000",fontsize=16,color="green",shape="box"];3596[label="vyw44000",fontsize=16,color="green",shape="box"];3597[label="vyw43000",fontsize=16,color="green",shape="box"];3598[label="vyw44000",fontsize=16,color="green",shape="box"];3599[label="vyw43000",fontsize=16,color="green",shape="box"];3600[label="vyw44000",fontsize=16,color="green",shape="box"];3601[label="vyw43000",fontsize=16,color="green",shape="box"];3602[label="vyw44000",fontsize=16,color="green",shape="box"];3603[label="vyw43000",fontsize=16,color="green",shape="box"];3604[label="vyw44000",fontsize=16,color="green",shape="box"];3605[label="vyw43000",fontsize=16,color="green",shape="box"];3606[label="vyw44000",fontsize=16,color="green",shape="box"];3607[label="vyw43000",fontsize=16,color="green",shape="box"];3608[label="vyw44000",fontsize=16,color="green",shape="box"];3609[label="LT",fontsize=16,color="green",shape="box"];3610[label="vyw143",fontsize=16,color="green",shape="box"];3611[label="GT",fontsize=16,color="green",shape="box"];3612[label="vyw430000",fontsize=16,color="green",shape="box"];3613[label="vyw440000",fontsize=16,color="green",shape="box"];3614 -> 3661[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3614[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3614 -> 3662[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3615[label="EQ",fontsize=16,color="green",shape="box"];3616 -> 3663[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3616[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3616 -> 3664[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3617[label="EQ",fontsize=16,color="green",shape="box"];3618 -> 3665[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3618[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3618 -> 3666[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3619[label="EQ",fontsize=16,color="green",shape="box"];3620 -> 3667[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3620[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3620 -> 3668[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3621[label="EQ",fontsize=16,color="green",shape="box"];3622 -> 3669[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3622[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3622 -> 3670[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3623[label="EQ",fontsize=16,color="green",shape="box"];3624[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3625[label="vyw43000",fontsize=16,color="green",shape="box"];3626[label="vyw44000",fontsize=16,color="green",shape="box"];3627[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3628[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3629[label="vyw43000",fontsize=16,color="green",shape="box"];3630[label="vyw44000",fontsize=16,color="green",shape="box"];3631[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3632[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3633[label="vyw43000",fontsize=16,color="green",shape="box"];3634[label="vyw44000",fontsize=16,color="green",shape="box"];3635[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3636[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3637[label="vyw43000",fontsize=16,color="green",shape="box"];3638[label="vyw44000",fontsize=16,color="green",shape="box"];3639[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3640[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3641[label="vyw43000",fontsize=16,color="green",shape="box"];3642[label="vyw44000",fontsize=16,color="green",shape="box"];3643[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3644[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3645[label="vyw43000",fontsize=16,color="green",shape="box"];3646[label="vyw44000",fontsize=16,color="green",shape="box"];3647[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3648[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3649[label="vyw43000",fontsize=16,color="green",shape="box"];3650[label="vyw44000",fontsize=16,color="green",shape="box"];3651[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3652[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3653[label="vyw43000",fontsize=16,color="green",shape="box"];3654[label="vyw44000",fontsize=16,color="green",shape="box"];3655[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3656[label="Integer (primMulInt vyw430000 vyw440010)",fontsize=16,color="green",shape="box"];3656 -> 3671[label="",style="dashed", color="green", weight=3]; 22.66/9.40 3657[label="primPlusNat (Succ vyw13800) (Succ vyw3000000)",fontsize=16,color="black",shape="box"];3657 -> 3672[label="",style="solid", color="black", weight=3]; 22.66/9.40 3658[label="primPlusNat (Succ vyw13800) Zero",fontsize=16,color="black",shape="box"];3658 -> 3673[label="",style="solid", color="black", weight=3]; 22.66/9.40 3659[label="primPlusNat Zero (Succ vyw3000000)",fontsize=16,color="black",shape="box"];3659 -> 3674[label="",style="solid", color="black", weight=3]; 22.66/9.40 3660[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3660 -> 3675[label="",style="solid", color="black", weight=3]; 22.66/9.40 3662 -> 2580[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3662[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3662 -> 3676[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3662 -> 3677[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3661[label="compare1 vyw43000 vyw44000 vyw150",fontsize=16,color="burlywood",shape="triangle"];4360[label="vyw150/False",fontsize=10,color="white",style="solid",shape="box"];3661 -> 4360[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4360 -> 3678[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4361[label="vyw150/True",fontsize=10,color="white",style="solid",shape="box"];3661 -> 4361[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4361 -> 3679[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3664 -> 2585[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3664[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3664 -> 3680[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3664 -> 3681[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3663[label="compare1 vyw43000 vyw44000 vyw151",fontsize=16,color="burlywood",shape="triangle"];4362[label="vyw151/False",fontsize=10,color="white",style="solid",shape="box"];3663 -> 4362[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4362 -> 3682[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4363[label="vyw151/True",fontsize=10,color="white",style="solid",shape="box"];3663 -> 4363[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4363 -> 3683[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3666 -> 2588[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3666[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3666 -> 3684[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3666 -> 3685[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3665[label="compare1 vyw43000 vyw44000 vyw152",fontsize=16,color="burlywood",shape="triangle"];4364[label="vyw152/False",fontsize=10,color="white",style="solid",shape="box"];3665 -> 4364[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4364 -> 3686[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4365[label="vyw152/True",fontsize=10,color="white",style="solid",shape="box"];3665 -> 4365[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4365 -> 3687[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3668 -> 2590[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3668[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3668 -> 3688[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3668 -> 3689[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3667[label="compare1 vyw43000 vyw44000 vyw153",fontsize=16,color="burlywood",shape="triangle"];4366[label="vyw153/False",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4366[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4366 -> 3690[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4367[label="vyw153/True",fontsize=10,color="white",style="solid",shape="box"];3667 -> 4367[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4367 -> 3691[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3670 -> 2591[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3670[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3670 -> 3692[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3670 -> 3693[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3669[label="compare1 vyw43000 vyw44000 vyw154",fontsize=16,color="burlywood",shape="triangle"];4368[label="vyw154/False",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4368[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4368 -> 3694[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 4369[label="vyw154/True",fontsize=10,color="white",style="solid",shape="box"];3669 -> 4369[label="",style="solid", color="burlywood", weight=9]; 22.66/9.40 4369 -> 3695[label="",style="solid", color="burlywood", weight=3]; 22.66/9.40 3671 -> 2467[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3671[label="primMulInt vyw430000 vyw440010",fontsize=16,color="magenta"];3671 -> 3696[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3671 -> 3697[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3672[label="Succ (Succ (primPlusNat vyw13800 vyw3000000))",fontsize=16,color="green",shape="box"];3672 -> 3698[label="",style="dashed", color="green", weight=3]; 22.66/9.40 3673[label="Succ vyw13800",fontsize=16,color="green",shape="box"];3674[label="Succ vyw3000000",fontsize=16,color="green",shape="box"];3675[label="Zero",fontsize=16,color="green",shape="box"];3676[label="vyw43000",fontsize=16,color="green",shape="box"];3677[label="vyw44000",fontsize=16,color="green",shape="box"];3678[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3678 -> 3699[label="",style="solid", color="black", weight=3]; 22.66/9.40 3679[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3679 -> 3700[label="",style="solid", color="black", weight=3]; 22.66/9.40 3680[label="vyw43000",fontsize=16,color="green",shape="box"];3681[label="vyw44000",fontsize=16,color="green",shape="box"];3682[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3682 -> 3701[label="",style="solid", color="black", weight=3]; 22.66/9.40 3683[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3683 -> 3702[label="",style="solid", color="black", weight=3]; 22.66/9.40 3684[label="vyw43000",fontsize=16,color="green",shape="box"];3685[label="vyw44000",fontsize=16,color="green",shape="box"];3686[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3686 -> 3703[label="",style="solid", color="black", weight=3]; 22.66/9.40 3687[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3687 -> 3704[label="",style="solid", color="black", weight=3]; 22.66/9.40 3688[label="vyw43000",fontsize=16,color="green",shape="box"];3689[label="vyw44000",fontsize=16,color="green",shape="box"];3690[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3690 -> 3705[label="",style="solid", color="black", weight=3]; 22.66/9.40 3691[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3691 -> 3706[label="",style="solid", color="black", weight=3]; 22.66/9.40 3692[label="vyw43000",fontsize=16,color="green",shape="box"];3693[label="vyw44000",fontsize=16,color="green",shape="box"];3694[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3694 -> 3707[label="",style="solid", color="black", weight=3]; 22.66/9.40 3695[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3695 -> 3708[label="",style="solid", color="black", weight=3]; 22.66/9.40 3696[label="vyw440010",fontsize=16,color="green",shape="box"];3697[label="vyw430000",fontsize=16,color="green",shape="box"];3698 -> 3514[label="",style="dashed", color="red", weight=0]; 22.66/9.40 3698[label="primPlusNat vyw13800 vyw3000000",fontsize=16,color="magenta"];3698 -> 3709[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3698 -> 3710[label="",style="dashed", color="magenta", weight=3]; 22.66/9.40 3699[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3699 -> 3711[label="",style="solid", color="black", weight=3]; 22.66/9.40 3700[label="LT",fontsize=16,color="green",shape="box"];3701[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3701 -> 3712[label="",style="solid", color="black", weight=3]; 22.66/9.40 3702[label="LT",fontsize=16,color="green",shape="box"];3703[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3703 -> 3713[label="",style="solid", color="black", weight=3]; 22.66/9.40 3704[label="LT",fontsize=16,color="green",shape="box"];3705[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3705 -> 3714[label="",style="solid", color="black", weight=3]; 22.66/9.40 3706[label="LT",fontsize=16,color="green",shape="box"];3707[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3707 -> 3715[label="",style="solid", color="black", weight=3]; 22.66/9.40 3708[label="LT",fontsize=16,color="green",shape="box"];3709[label="vyw3000000",fontsize=16,color="green",shape="box"];3710[label="vyw13800",fontsize=16,color="green",shape="box"];3711[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3711 -> 3716[label="",style="solid", color="black", weight=3]; 22.66/9.40 3712[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3712 -> 3717[label="",style="solid", color="black", weight=3]; 22.66/9.40 3713[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3713 -> 3718[label="",style="solid", color="black", weight=3]; 22.66/9.40 3714[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3714 -> 3719[label="",style="solid", color="black", weight=3]; 22.66/9.40 3715[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3715 -> 3720[label="",style="solid", color="black", weight=3]; 22.66/9.40 3716[label="GT",fontsize=16,color="green",shape="box"];3717[label="GT",fontsize=16,color="green",shape="box"];3718[label="GT",fontsize=16,color="green",shape="box"];3719[label="GT",fontsize=16,color="green",shape="box"];3720[label="GT",fontsize=16,color="green",shape="box"];} 22.66/9.40 22.66/9.40 ---------------------------------------- 22.66/9.40 22.66/9.40 (16) 22.66/9.40 Complex Obligation (AND) 22.66/9.40 22.66/9.40 ---------------------------------------- 22.66/9.40 22.66/9.40 (17) 22.66/9.40 Obligation: 22.66/9.40 Q DP problem: 22.66/9.40 The TRS P consists of the following rules: 22.66/9.40 22.66/9.40 new_primCmpNat(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat(vyw430000, vyw440000) 22.66/9.40 22.66/9.40 R is empty. 22.66/9.40 Q is empty. 22.66/9.40 We have to consider all minimal (P,Q,R)-chains. 22.66/9.40 ---------------------------------------- 22.66/9.40 22.66/9.40 (18) QDPSizeChangeProof (EQUIVALENT) 22.66/9.40 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. 22.66/9.40 22.66/9.40 From the DPs we obtained the following set of size-change graphs: 22.66/9.40 *new_primCmpNat(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat(vyw430000, vyw440000) 22.66/9.40 The graph contains the following edges 1 > 1, 2 > 2 22.66/9.40 22.66/9.40 22.66/9.40 ---------------------------------------- 22.66/9.40 22.66/9.40 (19) 22.66/9.40 YES 22.66/9.40 22.66/9.40 ---------------------------------------- 22.66/9.40 22.66/9.40 (20) 22.66/9.40 Obligation: 22.66/9.40 Q DP problem: 22.66/9.40 The TRS P consists of the following rules: 22.66/9.40 22.66/9.40 new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw17, Left(vyw18), h, ba, bb) 22.66/9.40 new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM22(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Right(vyw300), new_esEs31(vyw40, vyw300, be), bd, be), LT), bc, bd, be) 22.66/9.40 new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw32, Right(vyw33), bf, bg, bh) 22.66/9.40 new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare24(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) 22.66/9.40 new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Left(vyw40), bc, bd, be) 22.66/9.40 new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Left(vyw300), False, bd, be), LT), bc, bd, be) 22.66/9.40 new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Left(vyw40), bc, bd, be) 22.66/9.40 new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Right(vyw40), bc, bd, be) 22.66/9.40 new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare24(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) 22.66/9.40 new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Left(vyw300), False, bd, be), GT), bc, bd, be) 22.66/9.40 new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw16, Left(vyw18), h, ba, bb) 22.66/9.40 new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Right(vyw300), False, bd, be), GT), bc, bd, be) 22.66/9.40 new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Left(vyw300), new_esEs30(vyw40, vyw300, bd), bd, be), LT), bc, bd, be) 22.66/9.40 new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Right(vyw300), False, bd, be), LT), bc, bd, be) 22.66/9.40 new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Right(vyw40), bc, bd, be) 22.66/9.40 new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw31, Right(vyw33), bf, bg, bh) 22.66/9.40 22.66/9.40 The TRS R consists of the following rules: 22.66/9.40 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.66/9.40 new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT 22.66/9.40 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.66/9.40 new_esEs29(vyw18, vyw13, app(ty_[], eb)) -> new_esEs12(vyw18, vyw13, eb) 22.66/9.40 new_primPlusNat0(Zero, Zero) -> Zero 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs16(vyw43000, vyw44000, db, dc, dd) 22.66/9.40 new_compare17(vyw43000, vyw44000, cde, cdf, cdg) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, cde, cdf, cdg), cde, cdf, cdg) 22.66/9.40 new_pePe(True, vyw137) -> True 22.66/9.40 new_esEs23(vyw401, vyw3001, app(ty_Maybe, cfb)) -> new_esEs6(vyw401, vyw3001, cfb) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_Ordering, daf) -> new_esEs8(vyw400, vyw3000) 22.66/9.40 new_esEs30(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs13(vyw40, vyw300) 22.66/9.40 new_esEs20(vyw402, vyw3002, app(ty_[], bha)) -> new_esEs12(vyw402, vyw3002, bha) 22.66/9.40 new_esEs21(vyw401, vyw3001, app(ty_Ratio, cae)) -> new_esEs18(vyw401, vyw3001, cae) 22.66/9.40 new_lt17(vyw43000, vyw44000, dac) -> new_esEs8(new_compare19(vyw43000, vyw44000, dac), LT) 22.66/9.40 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(vyw401, vyw3001, bhh, caa, cab) 22.66/9.40 new_esEs19(False, True) -> False 22.66/9.40 new_esEs19(True, False) -> False 22.66/9.40 new_compare112(vyw43000, vyw44000, True, ccb) -> LT 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_Char) -> new_compare29(vyw43000, vyw44000) 22.66/9.40 new_esEs30(vyw40, vyw300, app(app(ty_@2, ceb), cec)) -> new_esEs4(vyw40, vyw300, ceb, cec) 22.66/9.40 new_ltEs7(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare29(vyw4300, vyw4400), GT)) 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.66/9.40 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.66/9.40 new_esEs27(vyw43000, vyw44000, app(app(ty_Either, dde), ddf)) -> new_esEs5(vyw43000, vyw44000, dde, ddf) 22.66/9.40 new_esEs12(:(vyw400, vyw401), [], dgd) -> False 22.66/9.40 new_esEs12([], :(vyw3000, vyw3001), dgd) -> False 22.66/9.40 new_lt5(vyw43000, vyw44000, app(ty_[], hh)) -> new_lt6(vyw43000, vyw44000, hh) 22.66/9.40 new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) 22.66/9.40 new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT 22.66/9.40 new_lt12(vyw43000, vyw44000, dde, ddf) -> new_esEs8(new_compare30(vyw43000, vyw44000, dde, ddf), LT) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.66/9.40 new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cg)) -> new_ltEs5(vyw43000, vyw44000, cg) 22.66/9.40 new_ltEs12(Left(vyw43000), Right(vyw44000), bce, bbc) -> True 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_Bool) -> new_compare13(vyw43000, vyw44000) 22.66/9.40 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 22.66/9.40 new_ltEs13(GT, GT) -> True 22.66/9.40 new_compare14(vyw43000, vyw44000, ccb) -> new_compare26(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ccb), ccb) 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_Either, daa), dab)) -> new_esEs5(vyw400, vyw3000, daa, dab) 22.66/9.40 new_esEs11(vyw43000, vyw44000, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs7(vyw43000, vyw44000, bag, bah, bba) 22.66/9.40 new_lt7(vyw43000, vyw44000) -> new_esEs8(new_compare29(vyw43000, vyw44000), LT) 22.66/9.40 new_compare24(Right(vyw4300), Right(vyw4400), False, bdh, bea) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, bea), bdh, bea) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.66/9.40 new_esEs23(vyw401, vyw3001, app(app(ty_Either, cfd), cfe)) -> new_esEs5(vyw401, vyw3001, cfd, cfe) 22.66/9.40 new_esEs8(GT, GT) -> True 22.66/9.40 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 22.66/9.40 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 22.66/9.40 new_ltEs13(EQ, GT) -> True 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.66/9.40 new_esEs31(vyw40, vyw300, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs7(vyw40, vyw300, cce, ccf, ccg) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, app(ty_[], eg)) -> new_ltEs6(vyw4300, vyw4400, eg) 22.66/9.40 new_esEs24(vyw400, vyw3000, app(app(ty_@2, cff), cfg)) -> new_esEs4(vyw400, vyw3000, cff, cfg) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.66/9.40 new_ltEs13(EQ, EQ) -> True 22.66/9.40 new_esEs8(EQ, EQ) -> True 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Maybe, dbe), daf) -> new_esEs6(vyw400, vyw3000, dbe) 22.66/9.40 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs7(vyw43001, vyw44001) 22.66/9.40 new_lt5(vyw43000, vyw44000, app(app(ty_Either, bac), bad)) -> new_lt12(vyw43000, vyw44000, bac, bad) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(ty_@2, dcb), dcc)) -> new_esEs4(vyw400, vyw3000, dcb, dcc) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 22.66/9.40 new_ltEs16(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), eh, fa, fb) -> new_pePe(new_lt5(vyw43000, vyw44000, eh), new_asAs(new_esEs11(vyw43000, vyw44000, eh), new_pePe(new_lt4(vyw43001, vyw44001, fa), new_asAs(new_esEs10(vyw43001, vyw44001, fa), new_ltEs18(vyw43002, vyw44002, fb))))) 22.66/9.40 new_compare9(vyw43000, vyw44000, bfg, bfh) -> new_compare25(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, bfg, bfh), bfg, bfh) 22.66/9.40 new_ltEs6(vyw4300, vyw4400, eg) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, eg), GT)) 22.66/9.40 new_not(True) -> False 22.66/9.40 new_lt8(vyw43000, vyw44000, bfg, bfh) -> new_esEs8(new_compare9(vyw43000, vyw44000, bfg, bfh), LT) 22.66/9.40 new_primCompAux00(vyw143, LT) -> LT 22.66/9.40 new_esEs10(vyw43001, vyw44001, app(ty_Ratio, hd)) -> new_esEs18(vyw43001, vyw44001, hd) 22.66/9.40 new_primCmpNat0(Zero, Zero) -> EQ 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_Ordering) -> new_ltEs13(vyw43002, vyw44002) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_@2, cc), cd)) -> new_ltEs8(vyw43000, vyw44000, cc, cd) 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs14(vyw33, vyw28) 22.66/9.40 new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) 22.66/9.40 new_lt4(vyw43001, vyw44001, app(app(ty_Either, ha), hb)) -> new_lt12(vyw43001, vyw44001, ha, hb) 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_@0, bbc) -> new_ltEs4(vyw43000, vyw44000) 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_@0) -> new_ltEs4(vyw43002, vyw44002) 22.66/9.40 new_esEs10(vyw43001, vyw44001, app(app(app(ty_@3, he), hf), hg)) -> new_esEs7(vyw43001, vyw44001, he, hf, hg) 22.66/9.40 new_esEs11(vyw43000, vyw44000, app(ty_Ratio, baf)) -> new_esEs18(vyw43000, vyw44000, baf) 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.66/9.40 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.40 new_primEqNat0(Succ(vyw4000), Zero) -> False 22.66/9.40 new_primEqNat0(Zero, Succ(vyw30000)) -> False 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.40 new_esEs25(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.66/9.40 new_compare10(vyw121, vyw122, True, cdh, cea) -> LT 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bbd), bbe), bbc) -> new_ltEs8(vyw43000, vyw44000, bbd, bbe) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs14(vyw40, vyw300) 22.66/9.40 new_primCompAux00(vyw143, GT) -> GT 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.66/9.40 new_compare110(vyw43000, vyw44000, True) -> LT 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Maybe, bbh), bbc) -> new_ltEs5(vyw43000, vyw44000, bbh) 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.66/9.40 new_compare15(vyw43000, vyw44000, True, bfg, bfh) -> LT 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) 22.66/9.40 new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT 22.66/9.40 new_esEs19(False, False) -> True 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.40 new_lt6(vyw43000, vyw44000, dfa) -> new_esEs8(new_compare0(vyw43000, vyw44000, dfa), LT) 22.66/9.40 new_esEs20(vyw402, vyw3002, app(app(ty_@2, bgd), bge)) -> new_esEs4(vyw402, vyw3002, bgd, bge) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_Maybe, bdc)) -> new_ltEs5(vyw43000, vyw44000, bdc) 22.66/9.40 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.40 new_esEs10(vyw43001, vyw44001, app(ty_[], gf)) -> new_esEs12(vyw43001, vyw44001, gf) 22.66/9.40 new_lt16(vyw43000, vyw44000, ccb) -> new_esEs8(new_compare14(vyw43000, vyw44000, ccb), LT) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs13(vyw18, vyw13) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.66/9.40 new_primCompAux0(vyw43000, vyw44000, vyw139, eg) -> new_primCompAux00(vyw139, new_compare31(vyw43000, vyw44000, eg)) 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.40 new_primCmpNat0(Zero, Succ(vyw440000)) -> LT 22.66/9.40 new_esEs22(vyw400, vyw3000, app(ty_Ratio, cbg)) -> new_esEs18(vyw400, vyw3000, cbg) 22.66/9.40 new_esEs7(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bga, bgb, bgc) -> new_asAs(new_esEs22(vyw400, vyw3000, bga), new_asAs(new_esEs21(vyw401, vyw3001, bgb), new_esEs20(vyw402, vyw3002, bgc))) 22.66/9.40 new_ltEs13(LT, GT) -> True 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_@0) -> new_compare5(vyw43000, vyw44000) 22.66/9.40 new_compare210(vyw43000, vyw44000, True) -> EQ 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.40 new_esEs32(vyw33, vyw28, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs7(vyw33, vyw28, eaa, eab, eac) 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs14(vyw43001, vyw44001) 22.66/9.40 new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) 22.66/9.40 new_primCmpNat0(Succ(vyw430000), Zero) -> GT 22.66/9.40 new_esEs30(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_Char, daf) -> new_esEs13(vyw400, vyw3000) 22.66/9.40 new_pePe(False, vyw137) -> vyw137 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Char, bbc) -> new_ltEs7(vyw43000, vyw44000) 22.66/9.40 new_esEs17(@0, @0) -> True 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.40 new_compare25(vyw43000, vyw44000, True, bfg, bfh) -> EQ 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, ddh), dea)) -> new_ltEs8(vyw43001, vyw44001, ddh, dea) 22.66/9.40 new_compare31(vyw43000, vyw44000, app(ty_Maybe, dfg)) -> new_compare14(vyw43000, vyw44000, dfg) 22.66/9.40 new_ltEs14(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Ratio, bca), bbc) -> new_ltEs15(vyw43000, vyw44000, bca) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_Bool) -> new_ltEs17(vyw43002, vyw44002) 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_Ordering) -> new_lt13(vyw43001, vyw44001) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.40 new_esEs30(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 22.66/9.40 new_esEs8(LT, EQ) -> False 22.66/9.40 new_esEs8(EQ, LT) -> False 22.66/9.40 new_compare11(vyw128, vyw129, False, dad, dae) -> GT 22.66/9.40 new_esEs22(vyw400, vyw3000, app(ty_Maybe, cbf)) -> new_esEs6(vyw400, vyw3000, cbf) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_@2, dag), dah), daf) -> new_esEs4(vyw400, vyw3000, dag, dah) 22.66/9.40 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bhf), bhg)) -> new_esEs4(vyw401, vyw3001, bhf, bhg) 22.66/9.40 new_esEs32(vyw33, vyw28, app(ty_Maybe, eae)) -> new_esEs6(vyw33, vyw28, eae) 22.66/9.40 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 22.66/9.40 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_Double) -> new_compare12(vyw43000, vyw44000) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs17(vyw18, vyw13) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.66/9.40 new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_Float) -> new_ltEs10(vyw43002, vyw44002) 22.66/9.40 new_compare28(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs13(vyw43000, vyw44000)) 22.66/9.40 new_esEs11(vyw43000, vyw44000, app(ty_[], hh)) -> new_esEs12(vyw43000, vyw44000, hh) 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs12(vyw43000, vyw44000, bbf, bbg) 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 22.66/9.40 new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare12(vyw4300, vyw4400), GT)) 22.66/9.40 new_esEs24(vyw400, vyw3000, app(ty_Ratio, cge)) -> new_esEs18(vyw400, vyw3000, cge) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, app(app(ty_Either, fg), fh)) -> new_ltEs12(vyw43002, vyw44002, fg, fh) 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_Int) -> new_esEs14(vyw43001, vyw44001) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Ordering, bbc) -> new_ltEs13(vyw43000, vyw44000) 22.66/9.40 new_esEs24(vyw400, vyw3000, app(app(ty_Either, cgf), cgg)) -> new_esEs5(vyw400, vyw3000, cgf, cgg) 22.66/9.40 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) 22.66/9.40 new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT 22.66/9.40 new_ltEs5(Just(vyw43000), Nothing, ca) -> False 22.66/9.40 new_ltEs5(Nothing, Nothing, ca) -> True 22.66/9.40 new_ltEs18(vyw43002, vyw44002, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs16(vyw43002, vyw44002, gc, gd, ge) 22.66/9.40 new_esEs30(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs16(vyw33, vyw28) 22.66/9.40 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_Int, daf) -> new_esEs14(vyw400, vyw3000) 22.66/9.40 new_lt20(vyw43000, vyw44000, app(app(ty_@2, bfg), bfh)) -> new_lt8(vyw43000, vyw44000, bfg, bfh) 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 22.66/9.40 new_esEs32(vyw33, vyw28, app(app(ty_Either, eag), eah)) -> new_esEs5(vyw33, vyw28, eag, eah) 22.66/9.40 new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs7(vyw400, vyw3000, cbb, cbc, cbd) 22.66/9.40 new_esEs24(vyw400, vyw3000, app(ty_Maybe, cgd)) -> new_esEs6(vyw400, vyw3000, cgd) 22.66/9.40 new_esEs30(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 22.66/9.40 new_lt5(vyw43000, vyw44000, app(app(ty_@2, baa), bab)) -> new_lt8(vyw43000, vyw44000, baa, bab) 22.66/9.40 new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) 22.66/9.40 new_lt13(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) 22.66/9.40 new_esEs10(vyw43001, vyw44001, app(app(ty_@2, gg), gh)) -> new_esEs4(vyw43001, vyw44001, gg, gh) 22.66/9.40 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 22.66/9.40 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_Ratio, dda)) -> new_esEs18(vyw400, vyw3000, dda) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(ty_@2, bcg), bch)) -> new_ltEs8(vyw43000, vyw44000, bcg, bch) 22.66/9.40 new_esEs23(vyw401, vyw3001, app(ty_[], cfa)) -> new_esEs12(vyw401, vyw3001, cfa) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs19(vyw18, vyw13) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_Integer, daf) -> new_esEs9(vyw400, vyw3000) 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_@0) -> new_esEs17(vyw43001, vyw44001) 22.66/9.40 new_compare13(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs19(vyw43000, vyw44000)) 22.66/9.40 new_compare26(vyw43000, vyw44000, True, ccb) -> EQ 22.66/9.40 new_primPlusNat1(Succ(vyw1380), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw1380, vyw300000))) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_Either, dbg), dbh), daf) -> new_esEs5(vyw400, vyw3000, dbg, dbh) 22.66/9.40 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.66/9.40 new_primPlusNat0(Succ(vyw13800), Zero) -> Succ(vyw13800) 22.66/9.40 new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 22.66/9.40 new_compare27(vyw43000, vyw44000, True, cde, cdf, cdg) -> EQ 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_Maybe, dch)) -> new_esEs6(vyw400, vyw3000, dch) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs7(vyw400, vyw3000, dcd, dce, dcf) 22.66/9.40 new_esEs21(vyw401, vyw3001, app(app(ty_Either, caf), cag)) -> new_esEs5(vyw401, vyw3001, caf, cag) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.66/9.40 new_esEs24(vyw400, vyw3000, app(ty_[], cgc)) -> new_esEs12(vyw400, vyw3000, cgc) 22.66/9.40 new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) 22.66/9.40 new_esEs11(vyw43000, vyw44000, app(app(ty_@2, baa), bab)) -> new_esEs4(vyw43000, vyw44000, baa, bab) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_Integer) -> new_ltEs14(vyw43002, vyw44002) 22.66/9.40 new_esEs8(LT, LT) -> True 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, chc), chd), che)) -> new_esEs7(vyw400, vyw3000, chc, chd, che) 22.66/9.40 new_compare111(vyw43000, vyw44000, True) -> LT 22.66/9.40 new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.40 new_ltEs13(GT, LT) -> False 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Double, bbc) -> new_ltEs11(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Integer, bbc) -> new_ltEs14(vyw43000, vyw44000) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, def), deg), deh)) -> new_ltEs16(vyw43001, vyw44001, def, deg, deh) 22.66/9.40 new_compare27(vyw43000, vyw44000, False, cde, cdf, cdg) -> new_compare16(vyw43000, vyw44000, new_ltEs16(vyw43000, vyw44000, cde, cdf, cdg), cde, cdf, cdg) 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_Float) -> new_esEs15(vyw43001, vyw44001) 22.66/9.40 new_esEs24(vyw400, vyw3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs7(vyw400, vyw3000, cfh, cga, cgb) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs17(vyw33, vyw28) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs19(vyw33, vyw28) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs17(vyw43001, vyw44001) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, beb), bec)) -> new_ltEs8(vyw4300, vyw4400, beb, bec) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.40 new_compare31(vyw43000, vyw44000, app(ty_Ratio, dfh)) -> new_compare19(vyw43000, vyw44000, dfh) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.66/9.40 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Float, bbc) -> new_ltEs10(vyw43000, vyw44000) 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_@2, cha), chb)) -> new_esEs4(vyw400, vyw3000, cha, chb) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 22.66/9.40 new_esEs23(vyw401, vyw3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs7(vyw401, vyw3001, cef, ceg, ceh) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs16(vyw4300, vyw4400, bfd, bfe, bff) 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 22.66/9.40 new_lt4(vyw43001, vyw44001, app(ty_Ratio, hd)) -> new_lt17(vyw43001, vyw44001, hd) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, bef), beg)) -> new_ltEs8(vyw4300, vyw4400, bef, beg) 22.66/9.40 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs15(vyw33, vyw28) 22.66/9.40 new_lt5(vyw43000, vyw44000, app(ty_Ratio, baf)) -> new_lt17(vyw43000, vyw44000, baf) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.66/9.40 new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) 22.66/9.40 new_lt4(vyw43001, vyw44001, app(app(ty_@2, gg), gh)) -> new_lt8(vyw43001, vyw44001, gg, gh) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.66/9.40 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.40 new_esEs11(vyw43000, vyw44000, app(app(ty_Either, bac), bad)) -> new_esEs5(vyw43000, vyw44000, bac, bad) 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs19(vyw402, vyw3002) 22.66/9.40 new_esEs25(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Maybe, chg)) -> new_esEs6(vyw400, vyw3000, chg) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.40 new_ltEs13(GT, EQ) -> False 22.66/9.40 new_esEs6(Nothing, Just(vyw3000), cgh) -> False 22.66/9.40 new_esEs6(Just(vyw400), Nothing, cgh) -> False 22.66/9.40 new_lt20(vyw43000, vyw44000, app(ty_Ratio, dac)) -> new_lt17(vyw43000, vyw44000, dac) 22.66/9.40 new_esEs6(Nothing, Nothing, cgh) -> True 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs17(vyw402, vyw3002) 22.66/9.40 new_esEs22(vyw400, vyw3000, app(app(ty_Either, cbh), cca)) -> new_esEs5(vyw400, vyw3000, cbh, cca) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.66/9.40 new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) 22.66/9.40 new_ltEs5(Nothing, Just(vyw44000), ca) -> True 22.66/9.40 new_esEs11(vyw43000, vyw44000, app(ty_Maybe, bae)) -> new_esEs6(vyw43000, vyw44000, bae) 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.66/9.40 new_esEs23(vyw401, vyw3001, app(app(ty_@2, ced), cee)) -> new_esEs4(vyw401, vyw3001, ced, cee) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Bool, bbc) -> new_ltEs17(vyw43000, vyw44000) 22.66/9.40 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.40 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.66/9.40 new_compare8(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(ty_Either, bda), bdb)) -> new_ltEs12(vyw43000, vyw44000, bda, bdb) 22.66/9.40 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.40 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_[], bcf)) -> new_ltEs6(vyw43000, vyw44000, bcf) 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Int, bbc) -> new_ltEs9(vyw43000, vyw44000) 22.66/9.40 new_compare28(vyw43000, vyw44000, True) -> EQ 22.66/9.40 new_ltEs12(Right(vyw43000), Left(vyw44000), bce, bbc) -> False 22.66/9.40 new_esEs22(vyw400, vyw3000, app(app(ty_@2, cah), cba)) -> new_esEs4(vyw400, vyw3000, cah, cba) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) 22.66/9.40 new_esEs31(vyw40, vyw300, app(ty_Maybe, cda)) -> new_esEs6(vyw40, vyw300, cda) 22.66/9.40 new_compare24(Right(vyw4300), Left(vyw4400), False, bdh, bea) -> GT 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.66/9.40 new_compare5(@0, @0) -> EQ 22.66/9.40 new_compare31(vyw43000, vyw44000, app(ty_[], dfb)) -> new_compare0(vyw43000, vyw44000, dfb) 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.40 new_compare25(vyw43000, vyw44000, False, bfg, bfh) -> new_compare15(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000, bfg, bfh), bfg, bfh) 22.66/9.40 new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.66/9.40 new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare13(vyw43000, vyw44000), LT) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.40 new_esEs10(vyw43001, vyw44001, app(app(ty_Either, ha), hb)) -> new_esEs5(vyw43001, vyw44001, ha, hb) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs16(vyw4300, vyw4400, eh, fa, fb) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.66/9.40 new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt18(vyw43000, vyw44000, cde, cdf, cdg) 22.66/9.40 new_esEs23(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.66/9.40 new_esEs28(vyw400, vyw3000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs7(vyw400, vyw3000, dgg, dgh, dha) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, ca)) -> new_ltEs5(vyw4300, vyw4400, ca) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, deb), dec)) -> new_ltEs12(vyw43001, vyw44001, deb, dec) 22.66/9.40 new_compare0([], :(vyw44000, vyw44001), eg) -> LT 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_[], dbd), daf) -> new_esEs12(vyw400, vyw3000, dbd) 22.66/9.40 new_asAs(True, vyw116) -> vyw116 22.66/9.40 new_esEs21(vyw401, vyw3001, app(ty_Maybe, cad)) -> new_esEs6(vyw401, vyw3001, cad) 22.66/9.40 new_compare10(vyw121, vyw122, False, cdh, cea) -> GT 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, app(app(ty_@2, fd), ff)) -> new_ltEs8(vyw43002, vyw44002, fd, ff) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.40 new_esEs23(vyw401, vyw3001, app(ty_Ratio, cfc)) -> new_esEs18(vyw401, vyw3001, cfc) 22.66/9.40 new_esEs10(vyw43001, vyw44001, app(ty_Maybe, hc)) -> new_esEs6(vyw43001, vyw44001, hc) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs10(vyw43001, vyw44001) 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, bfb)) -> new_ltEs5(vyw4300, vyw4400, bfb) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_[], dcg)) -> new_esEs12(vyw400, vyw3000, dcg) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs13(vyw43001, vyw44001) 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_Integer) -> new_esEs9(vyw43001, vyw44001) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_Char) -> new_ltEs7(vyw43002, vyw44002) 22.66/9.40 new_compare24(vyw430, vyw440, True, bdh, bea) -> EQ 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.66/9.40 new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) 22.66/9.40 new_esEs29(vyw18, vyw13, app(app(ty_Either, ee), ef)) -> new_esEs5(vyw18, vyw13, ee, ef) 22.66/9.40 new_compare110(vyw43000, vyw44000, False) -> GT 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.40 new_primCompAux00(vyw143, EQ) -> vyw143 22.66/9.40 new_compare0([], [], eg) -> EQ 22.66/9.40 new_lt20(vyw43000, vyw44000, app(app(ty_Either, dde), ddf)) -> new_lt12(vyw43000, vyw44000, dde, ddf) 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.40 new_primMulNat0(Zero, Zero) -> Zero 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_Bool) -> new_esEs19(vyw43001, vyw44001) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.66/9.40 new_compare111(vyw43000, vyw44000, False) -> GT 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Ratio, da)) -> new_ltEs15(vyw43000, vyw44000, da) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_[], chf)) -> new_esEs12(vyw400, vyw3000, chf) 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.66/9.40 new_esEs20(vyw402, vyw3002, app(app(ty_Either, bhd), bhe)) -> new_esEs5(vyw402, vyw3002, bhd, bhe) 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_Char) -> new_lt7(vyw43001, vyw44001) 22.66/9.40 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Ratio, chh)) -> new_esEs18(vyw400, vyw3000, chh) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs9(vyw18, vyw13) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(ty_Either, ddb), ddc)) -> new_esEs5(vyw400, vyw3000, ddb, ddc) 22.66/9.40 new_esEs27(vyw43000, vyw44000, app(ty_Ratio, dac)) -> new_esEs18(vyw43000, vyw44000, dac) 22.66/9.40 new_esEs9(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 22.66/9.40 new_esEs28(vyw400, vyw3000, app(ty_Ratio, dhd)) -> new_esEs18(vyw400, vyw3000, dhd) 22.66/9.40 new_ltEs13(EQ, LT) -> False 22.66/9.40 new_compare31(vyw43000, vyw44000, app(app(app(ty_@3, dga), dgb), dgc)) -> new_compare17(vyw43000, vyw44000, dga, dgb, dgc) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, bce), bbc)) -> new_ltEs12(vyw4300, vyw4400, bce, bbc) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_[], cb)) -> new_ltEs6(vyw43000, vyw44000, cb) 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_Double) -> new_esEs16(vyw43001, vyw44001) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) 22.66/9.40 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.66/9.40 new_esEs18(:%(vyw400, vyw401), :%(vyw3000, vyw3001), ddd) -> new_asAs(new_esEs26(vyw400, vyw3000, ddd), new_esEs25(vyw401, vyw3001, ddd)) 22.66/9.40 new_ltEs17(False, False) -> True 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, bcb), bcc), bcd), bbc) -> new_ltEs16(vyw43000, vyw44000, bcb, bcc, bcd) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.66/9.40 new_esEs22(vyw400, vyw3000, app(ty_[], cbe)) -> new_esEs12(vyw400, vyw3000, cbe) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.66/9.40 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 22.66/9.40 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 22.66/9.40 new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, beh), bfa)) -> new_ltEs12(vyw4300, vyw4400, beh, bfa) 22.66/9.40 new_esEs27(vyw43000, vyw44000, app(ty_[], dfa)) -> new_esEs12(vyw43000, vyw44000, dfa) 22.66/9.40 new_esEs14(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 22.66/9.40 new_compare26(vyw43000, vyw44000, False, ccb) -> new_compare112(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000, ccb), ccb) 22.66/9.40 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_Ordering) -> new_compare18(vyw43000, vyw44000) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, app(ty_Maybe, ga)) -> new_ltEs5(vyw43002, vyw44002, ga) 22.66/9.40 new_esEs32(vyw33, vyw28, app(app(ty_@2, dhg), dhh)) -> new_esEs4(vyw33, vyw28, dhg, dhh) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, app(ty_[], fc)) -> new_ltEs6(vyw43002, vyw44002, fc) 22.66/9.40 new_compare24(Left(vyw4300), Right(vyw4400), False, bdh, bea) -> LT 22.66/9.40 new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.66/9.40 new_esEs20(vyw402, vyw3002, app(ty_Maybe, bhb)) -> new_esEs6(vyw402, vyw3002, bhb) 22.66/9.40 new_esEs11(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_[], bbb), bbc) -> new_ltEs6(vyw43000, vyw44000, bbb) 22.66/9.40 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 22.66/9.40 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) 22.66/9.40 new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) 22.66/9.40 new_esEs31(vyw40, vyw300, app(app(ty_Either, cdc), cdd)) -> new_esEs5(vyw40, vyw300, cdc, cdd) 22.66/9.40 new_esEs12(:(vyw400, vyw401), :(vyw3000, vyw3001), dgd) -> new_asAs(new_esEs28(vyw400, vyw3000, dgd), new_esEs12(vyw401, vyw3001, dgd)) 22.66/9.40 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.66/9.40 new_ltEs17(True, False) -> False 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs14(vyw18, vyw13) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_Float, daf) -> new_esEs15(vyw400, vyw3000) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs14(vyw402, vyw3002) 22.66/9.40 new_esEs30(vyw40, vyw300, app(ty_Maybe, cgh)) -> new_esEs6(vyw40, vyw300, cgh) 22.66/9.40 new_ltEs17(False, True) -> True 22.66/9.40 new_esEs13(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 22.66/9.40 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.40 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.66/9.40 new_compare30(vyw43000, vyw44000, dde, ddf) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, dde, ddf), dde, ddf) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.66/9.40 new_compare24(Left(vyw4300), Left(vyw4400), False, bdh, bea) -> new_compare10(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, bdh), bdh, bea) 22.66/9.40 new_esEs29(vyw18, vyw13, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(vyw18, vyw13, dg, dh, ea) 22.66/9.40 new_esEs31(vyw40, vyw300, app(app(ty_@2, ccc), ccd)) -> new_esEs4(vyw40, vyw300, ccc, ccd) 22.66/9.40 new_not(False) -> True 22.66/9.40 new_esEs21(vyw401, vyw3001, app(ty_[], cac)) -> new_esEs12(vyw401, vyw3001, cac) 22.66/9.40 new_esEs28(vyw400, vyw3000, app(ty_[], dhb)) -> new_esEs12(vyw400, vyw3000, dhb) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_Double, daf) -> new_esEs16(vyw400, vyw3000) 22.66/9.40 new_esEs30(vyw40, vyw300, app(ty_Ratio, ddd)) -> new_esEs18(vyw40, vyw300, ddd) 22.66/9.40 new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.40 new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs7(vyw402, vyw3002, bgf, bgg, bgh) 22.66/9.40 new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) 22.66/9.40 new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare12(vyw43000, vyw44000), LT) 22.66/9.40 new_compare0(:(vyw43000, vyw43001), [], eg) -> GT 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs16(vyw43000, vyw44000, bde, bdf, bdg) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs9(vyw33, vyw28) 22.66/9.40 new_esEs8(LT, GT) -> False 22.66/9.40 new_esEs8(GT, LT) -> False 22.66/9.40 new_esEs30(vyw40, vyw300, ty_Char) -> new_esEs13(vyw40, vyw300) 22.66/9.40 new_primPlusNat0(Succ(vyw13800), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw13800, vyw3000000))) 22.66/9.40 new_ltEs13(LT, LT) -> True 22.66/9.40 new_esEs20(vyw402, vyw3002, app(ty_Ratio, bhc)) -> new_esEs18(vyw402, vyw3002, bhc) 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.40 new_esEs5(Left(vyw400), Right(vyw3000), dca, daf) -> False 22.66/9.40 new_esEs5(Right(vyw400), Left(vyw3000), dca, daf) -> False 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs4(vyw43001, vyw44001) 22.66/9.40 new_esEs30(vyw40, vyw300, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs7(vyw40, vyw300, bga, bgb, bgc) 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_Float) -> new_compare7(vyw43000, vyw44000) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, ty_Int) -> new_ltEs9(vyw43002, vyw44002) 22.66/9.40 new_lt4(vyw43001, vyw44001, app(app(app(ty_@3, he), hf), hg)) -> new_lt18(vyw43001, vyw44001, he, hf, hg) 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_Bool) -> new_lt19(vyw43001, vyw44001) 22.66/9.40 new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.66/9.40 new_esEs29(vyw18, vyw13, app(ty_Ratio, ed)) -> new_esEs18(vyw18, vyw13, ed) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.40 new_compare31(vyw43000, vyw44000, app(app(ty_@2, dfc), dfd)) -> new_compare9(vyw43000, vyw44000, dfc, dfd) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.40 new_esEs27(vyw43000, vyw44000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs7(vyw43000, vyw44000, cde, cdf, cdg) 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.66/9.40 new_esEs30(vyw40, vyw300, app(app(ty_Either, dca), daf)) -> new_esEs5(vyw40, vyw300, dca, daf) 22.66/9.40 new_compare16(vyw43000, vyw44000, False, cde, cdf, cdg) -> GT 22.66/9.40 new_esEs4(@2(vyw400, vyw401), @2(vyw3000, vyw3001), ceb, cec) -> new_asAs(new_esEs24(vyw400, vyw3000, ceb), new_esEs23(vyw401, vyw3001, cec)) 22.66/9.40 new_compare11(vyw128, vyw129, True, dad, dae) -> LT 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_@0, daf) -> new_esEs17(vyw400, vyw3000) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), ty_Bool, daf) -> new_esEs19(vyw400, vyw3000) 22.66/9.40 new_esEs24(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, app(ty_[], bee)) -> new_ltEs6(vyw4300, vyw4400, bee) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, dee)) -> new_ltEs15(vyw43001, vyw44001, dee) 22.66/9.40 new_sr0(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 22.66/9.40 new_esEs30(vyw40, vyw300, ty_Int) -> new_esEs14(vyw40, vyw300) 22.66/9.40 new_esEs29(vyw18, vyw13, app(ty_Maybe, ec)) -> new_esEs6(vyw18, vyw13, ec) 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.66/9.40 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.66/9.40 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.66/9.40 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.66/9.40 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.40 new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), eg) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, eg), eg) 22.66/9.40 new_esEs32(vyw33, vyw28, app(ty_Ratio, eaf)) -> new_esEs18(vyw33, vyw28, eaf) 22.66/9.40 new_compare31(vyw43000, vyw44000, ty_Integer) -> new_compare8(vyw43000, vyw44000) 22.66/9.40 new_esEs30(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.66/9.40 new_esEs32(vyw33, vyw28, app(ty_[], ead)) -> new_esEs12(vyw33, vyw28, ead) 22.66/9.40 new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.40 new_esEs27(vyw43000, vyw44000, app(app(ty_@2, bfg), bfh)) -> new_esEs4(vyw43000, vyw44000, bfg, bfh) 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_Ratio, bdd)) -> new_ltEs15(vyw43000, vyw44000, bdd) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.66/9.40 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.66/9.40 new_esEs28(vyw400, vyw3000, app(ty_Maybe, dhc)) -> new_esEs6(vyw400, vyw3000, dhc) 22.66/9.40 new_esEs31(vyw40, vyw300, app(ty_[], cch)) -> new_esEs12(vyw40, vyw300, cch) 22.66/9.40 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.66/9.40 new_lt5(vyw43000, vyw44000, app(ty_Maybe, bae)) -> new_lt16(vyw43000, vyw44000, bae) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Ratio, dbf), daf) -> new_esEs18(vyw400, vyw3000, dbf) 22.66/9.40 new_esEs28(vyw400, vyw3000, app(app(ty_@2, dge), dgf)) -> new_esEs4(vyw400, vyw3000, dge, dgf) 22.66/9.40 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_Float) -> new_lt10(vyw43001, vyw44001) 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.66/9.40 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.66/9.40 new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, bed)) -> new_ltEs15(vyw4300, vyw4400, bed) 22.66/9.40 new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) 22.66/9.40 new_ltEs13(LT, EQ) -> True 22.66/9.40 new_compare16(vyw43000, vyw44000, True, cde, cdf, cdg) -> LT 22.66/9.40 new_esEs30(vyw40, vyw300, app(ty_[], dgd)) -> new_esEs12(vyw40, vyw300, dgd) 22.66/9.40 new_lt18(vyw43000, vyw44000, cde, cdf, cdg) -> new_esEs8(new_compare17(vyw43000, vyw44000, cde, cdf, cdg), LT) 22.66/9.40 new_lt5(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.66/9.40 new_esEs27(vyw43000, vyw44000, app(ty_Maybe, ccb)) -> new_esEs6(vyw43000, vyw44000, ccb) 22.66/9.40 new_esEs10(vyw43001, vyw44001, ty_Char) -> new_esEs13(vyw43001, vyw44001) 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) 22.66/9.40 new_lt20(vyw43000, vyw44000, app(ty_Maybe, ccb)) -> new_lt16(vyw43000, vyw44000, ccb) 22.66/9.40 new_esEs28(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.40 new_compare15(vyw43000, vyw44000, False, bfg, bfh) -> GT 22.66/9.40 new_esEs12([], [], dgd) -> True 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs9(vyw43001, vyw44001) 22.66/9.40 new_ltEs15(vyw4300, vyw4400, bed) -> new_not(new_esEs8(new_compare19(vyw4300, vyw4400, bed), GT)) 22.66/9.40 new_esEs27(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.66/9.40 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.66/9.40 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.66/9.40 new_esEs29(vyw18, vyw13, app(app(ty_@2, de), df)) -> new_esEs4(vyw18, vyw13, de, df) 22.66/9.40 new_ltEs18(vyw43002, vyw44002, app(ty_Ratio, gb)) -> new_ltEs15(vyw43002, vyw44002, gb) 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs13(vyw402, vyw3002) 22.66/9.40 new_esEs31(vyw40, vyw300, app(ty_Ratio, cdb)) -> new_esEs18(vyw40, vyw300, cdb) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, bfc)) -> new_ltEs15(vyw4300, vyw4400, bfc) 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_Int) -> new_lt9(vyw43001, vyw44001) 22.66/9.40 new_compare29(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) 22.66/9.40 new_primEqNat0(Zero, Zero) -> True 22.66/9.40 new_esEs28(vyw400, vyw3000, app(app(ty_Either, dhe), dhf)) -> new_esEs5(vyw400, vyw3000, dhe, dhf) 22.66/9.40 new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.66/9.40 new_lt4(vyw43001, vyw44001, app(ty_[], gf)) -> new_lt6(vyw43001, vyw44001, gf) 22.66/9.40 new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) 22.66/9.40 new_ltEs8(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), beb, bec) -> new_pePe(new_lt20(vyw43000, vyw44000, beb), new_asAs(new_esEs27(vyw43000, vyw44000, beb), new_ltEs21(vyw43001, vyw44001, bec))) 22.66/9.40 new_lt20(vyw43000, vyw44000, app(ty_[], dfa)) -> new_lt6(vyw43000, vyw44000, dfa) 22.66/9.40 new_lt5(vyw43000, vyw44000, app(app(app(ty_@3, bag), bah), bba)) -> new_lt18(vyw43000, vyw44000, bag, bah, bba) 22.66/9.40 new_ltEs17(True, True) -> True 22.66/9.40 new_asAs(False, vyw116) -> False 22.66/9.40 new_compare18(vyw43000, vyw44000) -> new_compare28(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) 22.66/9.40 new_lt4(vyw43001, vyw44001, ty_@0) -> new_lt14(vyw43001, vyw44001) 22.66/9.40 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_Either, ce), cf)) -> new_ltEs12(vyw43000, vyw44000, ce, cf) 22.66/9.40 new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs9(vyw402, vyw3002) 22.66/9.40 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.66/9.40 new_esEs8(EQ, GT) -> False 22.66/9.40 new_esEs8(GT, EQ) -> False 22.66/9.40 new_compare112(vyw43000, vyw44000, False, ccb) -> GT 22.66/9.40 new_lt4(vyw43001, vyw44001, app(ty_Maybe, hc)) -> new_lt16(vyw43001, vyw44001, hc) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.66/9.40 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.66/9.40 new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs13(vyw33, vyw28) 22.66/9.40 new_compare31(vyw43000, vyw44000, app(app(ty_Either, dfe), dff)) -> new_compare30(vyw43000, vyw44000, dfe, dff) 22.66/9.40 new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, ded)) -> new_ltEs5(vyw43001, vyw44001, ded) 22.66/9.40 new_esEs19(True, True) -> True 22.66/9.40 new_ltEs21(vyw43001, vyw44001, app(ty_[], ddg)) -> new_ltEs6(vyw43001, vyw44001, ddg) 22.66/9.40 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) 22.66/9.40 new_esEs5(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, dba), dbb), dbc), daf) -> new_esEs7(vyw400, vyw3000, dba, dbb, dbc) 22.66/9.40 22.66/9.40 The set Q consists of the following terms: 22.66/9.40 22.66/9.40 new_ltEs20(x0, x1, ty_@0) 22.66/9.40 new_esEs30(x0, x1, ty_Double) 22.66/9.40 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_lt4(x0, x1, ty_@0) 22.66/9.40 new_esEs8(EQ, EQ) 22.66/9.40 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_compare6(x0, x1) 22.66/9.40 new_compare26(x0, x1, True, x2) 22.66/9.40 new_ltEs19(x0, x1, ty_Float) 22.66/9.40 new_ltEs21(x0, x1, ty_Double) 22.66/9.40 new_esEs21(x0, x1, app(ty_[], x2)) 22.66/9.40 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.66/9.40 new_primPlusNat0(Zero, Succ(x0)) 22.66/9.40 new_esEs20(x0, x1, ty_Char) 22.66/9.40 new_compare24(Left(x0), Left(x1), False, x2, x3) 22.66/9.40 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_esEs23(x0, x1, ty_Double) 22.66/9.40 new_esEs6(Just(x0), Just(x1), ty_Double) 22.66/9.40 new_primPlusNat1(Succ(x0), x1) 22.66/9.40 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.66/9.40 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_lt4(x0, x1, ty_Bool) 22.66/9.40 new_esEs30(x0, x1, ty_Ordering) 22.66/9.40 new_ltEs20(x0, x1, ty_Bool) 22.66/9.40 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.66/9.40 new_compare110(x0, x1, False) 22.66/9.40 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 22.66/9.40 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.40 new_esEs20(x0, x1, ty_Int) 22.66/9.40 new_esEs21(x0, x1, ty_Ordering) 22.66/9.40 new_esEs19(False, False) 22.66/9.40 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_lt5(x0, x1, ty_Char) 22.66/9.40 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_esEs6(Just(x0), Just(x1), ty_Int) 22.66/9.40 new_compare16(x0, x1, False, x2, x3, x4) 22.66/9.40 new_compare10(x0, x1, False, x2, x3) 22.66/9.40 new_primEqInt(Pos(Zero), Pos(Zero)) 22.66/9.40 new_esEs14(x0, x1) 22.66/9.40 new_esEs23(x0, x1, ty_Ordering) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.66/9.40 new_ltEs13(EQ, EQ) 22.66/9.40 new_esEs23(x0, x1, ty_Int) 22.66/9.40 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_compare0([], :(x0, x1), x2) 22.66/9.40 new_esEs22(x0, x1, ty_Double) 22.66/9.40 new_esEs20(x0, x1, ty_Double) 22.66/9.40 new_primEqInt(Neg(Zero), Neg(Zero)) 22.66/9.40 new_esEs29(x0, x1, ty_Float) 22.66/9.40 new_esEs32(x0, x1, ty_Float) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.66/9.40 new_esEs25(x0, x1, ty_Int) 22.66/9.40 new_lt5(x0, x1, ty_Bool) 22.66/9.40 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 22.66/9.40 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.66/9.40 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.66/9.40 new_esEs23(x0, x1, ty_Char) 22.66/9.40 new_lt4(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.66/9.40 new_lt5(x0, x1, app(ty_[], x2)) 22.66/9.40 new_ltEs20(x0, x1, ty_Char) 22.66/9.40 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_compare29(Char(x0), Char(x1)) 22.66/9.40 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.66/9.40 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.66/9.40 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 22.66/9.40 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_pePe(True, x0) 22.66/9.40 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.40 new_ltEs17(True, True) 22.66/9.40 new_lt5(x0, x1, ty_Double) 22.66/9.40 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_primCompAux00(x0, EQ) 22.66/9.40 new_esEs12([], [], x0) 22.66/9.40 new_esEs27(x0, x1, app(ty_[], x2)) 22.66/9.40 new_lt16(x0, x1, x2) 22.66/9.40 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_compare18(x0, x1) 22.66/9.40 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.66/9.40 new_compare27(x0, x1, True, x2, x3, x4) 22.66/9.40 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 22.66/9.40 new_primEqInt(Pos(Zero), Neg(Zero)) 22.66/9.40 new_primEqInt(Neg(Zero), Pos(Zero)) 22.66/9.40 new_esEs20(x0, x1, app(ty_[], x2)) 22.66/9.40 new_esEs20(x0, x1, ty_Ordering) 22.66/9.40 new_primPlusNat1(Zero, x0) 22.66/9.40 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.66/9.40 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 22.66/9.40 new_primCompAux00(x0, LT) 22.66/9.40 new_ltEs7(x0, x1) 22.66/9.40 new_ltEs21(x0, x1, ty_Ordering) 22.66/9.40 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.66/9.40 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_esEs30(x0, x1, ty_Int) 22.66/9.40 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.66/9.40 new_lt5(x0, x1, ty_Int) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.66/9.40 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.66/9.40 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.66/9.40 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_primCmpNat0(Succ(x0), Succ(x1)) 22.66/9.40 new_lt5(x0, x1, ty_@0) 22.66/9.40 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.66/9.40 new_esEs31(x0, x1, ty_Integer) 22.66/9.40 new_esEs24(x0, x1, ty_Ordering) 22.66/9.40 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 22.66/9.40 new_ltEs19(x0, x1, ty_Integer) 22.66/9.40 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_ltEs13(LT, GT) 22.66/9.40 new_ltEs13(GT, LT) 22.66/9.40 new_compare31(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_ltEs20(x0, x1, ty_Int) 22.66/9.40 new_ltEs5(Just(x0), Just(x1), ty_Integer) 22.66/9.40 new_esEs30(x0, x1, ty_Char) 22.66/9.40 new_compare31(x0, x1, ty_Float) 22.66/9.40 new_esEs31(x0, x1, ty_@0) 22.66/9.40 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.66/9.40 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_ltEs19(x0, x1, ty_@0) 22.66/9.40 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.66/9.40 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_esEs30(x0, x1, ty_Bool) 22.66/9.40 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.66/9.40 new_esEs27(x0, x1, ty_Int) 22.66/9.40 new_esEs11(x0, x1, ty_Float) 22.66/9.40 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.66/9.40 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.66/9.40 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.66/9.40 new_esEs26(x0, x1, ty_Int) 22.66/9.40 new_esEs17(@0, @0) 22.66/9.40 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.66/9.40 new_esEs27(x0, x1, ty_Ordering) 22.66/9.40 new_esEs10(x0, x1, ty_Char) 22.66/9.40 new_compare15(x0, x1, False, x2, x3) 22.66/9.40 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_lt8(x0, x1, x2, x3) 22.66/9.40 new_esEs23(x0, x1, ty_Bool) 22.66/9.40 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_lt4(x0, x1, ty_Float) 22.66/9.40 new_ltEs21(x0, x1, ty_Bool) 22.66/9.40 new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.66/9.40 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.66/9.40 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_esEs11(x0, x1, ty_Double) 22.66/9.40 new_esEs30(x0, x1, ty_@0) 22.66/9.40 new_esEs28(x0, x1, ty_Int) 22.66/9.40 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.66/9.40 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.40 new_lt20(x0, x1, ty_Float) 22.66/9.40 new_esEs21(x0, x1, ty_@0) 22.66/9.40 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 22.66/9.40 new_esEs24(x0, x1, app(ty_[], x2)) 22.66/9.40 new_esEs27(x0, x1, ty_Char) 22.66/9.40 new_esEs10(x0, x1, ty_Ordering) 22.66/9.40 new_esEs29(x0, x1, ty_@0) 22.66/9.40 new_ltEs9(x0, x1) 22.66/9.40 new_ltEs18(x0, x1, ty_Ordering) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.66/9.40 new_compare31(x0, x1, ty_Int) 22.66/9.40 new_lt20(x0, x1, ty_Int) 22.66/9.40 new_esEs22(x0, x1, ty_Int) 22.66/9.40 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_lt14(x0, x1) 22.66/9.40 new_esEs20(x0, x1, ty_Bool) 22.66/9.40 new_compare24(Right(x0), Left(x1), False, x2, x3) 22.66/9.40 new_compare24(Left(x0), Right(x1), False, x2, x3) 22.66/9.40 new_esEs19(False, True) 22.66/9.40 new_esEs19(True, False) 22.66/9.40 new_compare112(x0, x1, False, x2) 22.66/9.40 new_esEs30(x0, x1, ty_Integer) 22.66/9.40 new_esEs28(x0, x1, ty_Char) 22.66/9.40 new_esEs29(x0, x1, ty_Integer) 22.66/9.40 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.66/9.40 new_lt4(x0, x1, ty_Ordering) 22.66/9.40 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_lt4(x0, x1, ty_Int) 22.66/9.40 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_lt20(x0, x1, ty_Char) 22.66/9.40 new_esEs22(x0, x1, ty_Char) 22.66/9.40 new_esEs6(Nothing, Nothing, x0) 22.66/9.40 new_compare11(x0, x1, True, x2, x3) 22.66/9.40 new_primEqNat0(Zero, Succ(x0)) 22.66/9.40 new_ltEs18(x0, x1, ty_Double) 22.66/9.40 new_compare31(x0, x1, ty_Char) 22.66/9.40 new_esEs8(GT, GT) 22.66/9.40 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_compare0([], [], x0) 22.66/9.40 new_esEs32(x0, x1, app(ty_[], x2)) 22.66/9.40 new_esEs8(LT, EQ) 22.66/9.40 new_esEs8(EQ, LT) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.66/9.40 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.40 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.40 new_compare27(x0, x1, False, x2, x3, x4) 22.66/9.40 new_esEs10(x0, x1, ty_Int) 22.66/9.40 new_esEs22(x0, x1, ty_Ordering) 22.66/9.40 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.66/9.40 new_esEs24(x0, x1, ty_Double) 22.66/9.40 new_lt4(x0, x1, ty_Char) 22.66/9.40 new_ltEs18(x0, x1, ty_@0) 22.66/9.40 new_lt7(x0, x1) 22.66/9.40 new_esEs8(LT, LT) 22.66/9.40 new_esEs25(x0, x1, ty_Integer) 22.66/9.40 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.66/9.40 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.66/9.40 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.66/9.40 new_lt4(x0, x1, app(ty_[], x2)) 22.66/9.40 new_primPlusNat0(Succ(x0), Zero) 22.66/9.40 new_lt20(x0, x1, app(ty_[], x2)) 22.66/9.40 new_esEs29(x0, x1, app(ty_[], x2)) 22.66/9.40 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 22.66/9.40 new_esEs6(Just(x0), Just(x1), ty_Char) 22.66/9.40 new_ltEs21(x0, x1, ty_Char) 22.66/9.40 new_ltEs17(True, False) 22.66/9.40 new_ltEs17(False, True) 22.66/9.40 new_lt4(x0, x1, ty_Integer) 22.66/9.40 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.66/9.40 new_ltEs20(x0, x1, ty_Integer) 22.66/9.40 new_esEs22(x0, x1, ty_Bool) 22.66/9.40 new_lt6(x0, x1, x2) 22.66/9.40 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.66/9.40 new_lt18(x0, x1, x2, x3, x4) 22.66/9.40 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.66/9.40 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_esEs10(x0, x1, ty_Bool) 22.66/9.40 new_asAs(False, x0) 22.66/9.40 new_esEs28(x0, x1, ty_Ordering) 22.66/9.40 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.66/9.40 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_esEs22(x0, x1, ty_Integer) 22.66/9.40 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.66/9.40 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.40 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.40 new_esEs12([], :(x0, x1), x2) 22.66/9.40 new_pePe(False, x0) 22.66/9.40 new_ltEs5(Just(x0), Just(x1), ty_@0) 22.66/9.40 new_esEs12(:(x0, x1), :(x2, x3), x4) 22.66/9.40 new_sr0(x0, x1) 22.66/9.40 new_lt13(x0, x1) 22.66/9.40 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.66/9.40 new_esEs27(x0, x1, ty_Integer) 22.66/9.40 new_esEs30(x0, x1, app(ty_[], x2)) 22.66/9.40 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.40 new_ltEs20(x0, x1, ty_Ordering) 22.66/9.41 new_esEs20(x0, x1, ty_Float) 22.66/9.41 new_ltEs11(x0, x1) 22.66/9.41 new_esEs16(Double(x0, x1), Double(x2, x3)) 22.66/9.41 new_esEs24(x0, x1, ty_@0) 22.66/9.41 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_lt19(x0, x1) 22.66/9.41 new_esEs10(x0, x1, app(ty_[], x2)) 22.66/9.41 new_esEs28(x0, x1, ty_Integer) 22.66/9.41 new_compare10(x0, x1, True, x2, x3) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.66/9.41 new_ltEs21(x0, x1, ty_Int) 22.66/9.41 new_esEs21(x0, x1, ty_Double) 22.66/9.41 new_primMulNat0(Succ(x0), Zero) 22.66/9.41 new_lt20(x0, x1, ty_Bool) 22.66/9.41 new_esEs11(x0, x1, app(ty_[], x2)) 22.66/9.41 new_esEs11(x0, x1, ty_@0) 22.66/9.41 new_ltEs18(x0, x1, ty_Integer) 22.66/9.41 new_esEs31(x0, x1, ty_Double) 22.66/9.41 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs19(x0, x1, ty_Double) 22.66/9.41 new_esEs26(x0, x1, ty_Integer) 22.66/9.41 new_esEs32(x0, x1, ty_Double) 22.66/9.41 new_ltEs21(x0, x1, app(ty_[], x2)) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 22.66/9.41 new_esEs21(x0, x1, ty_Float) 22.66/9.41 new_esEs32(x0, x1, ty_Ordering) 22.66/9.41 new_compare31(x0, x1, ty_Bool) 22.66/9.41 new_esEs30(x0, x1, ty_Float) 22.66/9.41 new_compare111(x0, x1, False) 22.66/9.41 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_lt20(x0, x1, ty_@0) 22.66/9.41 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_esEs23(x0, x1, ty_Float) 22.66/9.41 new_esEs29(x0, x1, ty_Ordering) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), ty_Ordering) 22.66/9.41 new_primEqNat0(Succ(x0), Succ(x1)) 22.66/9.41 new_ltEs19(x0, x1, ty_Ordering) 22.66/9.41 new_primMulNat0(Zero, Zero) 22.66/9.41 new_compare14(x0, x1, x2) 22.66/9.41 new_esEs24(x0, x1, ty_Integer) 22.66/9.41 new_esEs27(x0, x1, ty_Bool) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) 22.66/9.41 new_compare5(@0, @0) 22.66/9.41 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), ty_Int) 22.66/9.41 new_compare31(x0, x1, ty_@0) 22.66/9.41 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.66/9.41 new_ltEs21(x0, x1, ty_Float) 22.66/9.41 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_esEs10(x0, x1, ty_Integer) 22.66/9.41 new_sr(Integer(x0), Integer(x1)) 22.66/9.41 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs6(Just(x0), Just(x1), ty_Float) 22.66/9.41 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs29(x0, x1, ty_Int) 22.66/9.41 new_esEs9(Integer(x0), Integer(x1)) 22.66/9.41 new_compare17(x0, x1, x2, x3, x4) 22.66/9.41 new_ltEs12(Left(x0), Right(x1), x2, x3) 22.66/9.41 new_ltEs12(Right(x0), Left(x1), x2, x3) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), ty_Char) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 22.66/9.41 new_compare9(x0, x1, x2, x3) 22.66/9.41 new_esEs32(x0, x1, ty_Int) 22.66/9.41 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_esEs12(:(x0, x1), [], x2) 22.66/9.41 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs28(x0, x1, ty_Bool) 22.66/9.41 new_lt4(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs6(Nothing, Just(x0), x1) 22.66/9.41 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), ty_Double) 22.66/9.41 new_compare15(x0, x1, True, x2, x3) 22.66/9.41 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.66/9.41 new_primMulNat0(Succ(x0), Succ(x1)) 22.66/9.41 new_esEs11(x0, x1, ty_Bool) 22.66/9.41 new_esEs13(Char(x0), Char(x1)) 22.66/9.41 new_esEs10(x0, x1, ty_@0) 22.66/9.41 new_compare28(x0, x1, False) 22.66/9.41 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.66/9.41 new_compare24(Right(x0), Right(x1), False, x2, x3) 22.66/9.41 new_ltEs20(x0, x1, app(ty_[], x2)) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 22.66/9.41 new_compare0(:(x0, x1), :(x2, x3), x4) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 22.66/9.41 new_esEs5(Left(x0), Right(x1), x2, x3) 22.66/9.41 new_esEs5(Right(x0), Left(x1), x2, x3) 22.66/9.41 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_primPlusNat0(Zero, Zero) 22.66/9.41 new_asAs(True, x0) 22.66/9.41 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 22.66/9.41 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_not(True) 22.66/9.41 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_esEs11(x0, x1, ty_Char) 22.66/9.41 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_ltEs4(x0, x1) 22.66/9.41 new_primEqNat0(Succ(x0), Zero) 22.66/9.41 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_primMulNat0(Zero, Succ(x0)) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 22.66/9.41 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 22.66/9.41 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_esEs8(EQ, GT) 22.66/9.41 new_esEs8(GT, EQ) 22.66/9.41 new_ltEs13(EQ, GT) 22.66/9.41 new_ltEs13(GT, EQ) 22.66/9.41 new_lt5(x0, x1, ty_Float) 22.66/9.41 new_esEs28(x0, x1, ty_@0) 22.66/9.41 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_esEs22(x0, x1, ty_@0) 22.66/9.41 new_compare31(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.66/9.41 new_esEs32(x0, x1, ty_Char) 22.66/9.41 new_esEs22(x0, x1, ty_Float) 22.66/9.41 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.66/9.41 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_ltEs19(x0, x1, app(ty_[], x2)) 22.66/9.41 new_esEs10(x0, x1, ty_Float) 22.66/9.41 new_lt20(x0, x1, ty_Integer) 22.66/9.41 new_esEs23(x0, x1, ty_Integer) 22.66/9.41 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.66/9.41 new_ltEs18(x0, x1, ty_Bool) 22.66/9.41 new_esEs27(x0, x1, ty_@0) 22.66/9.41 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs21(x0, x1, ty_Integer) 22.66/9.41 new_compare30(x0, x1, x2, x3) 22.66/9.41 new_ltEs10(x0, x1) 22.66/9.41 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_ltEs5(Nothing, Nothing, x0) 22.66/9.41 new_esEs31(x0, x1, app(ty_[], x2)) 22.66/9.41 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.66/9.41 new_compare16(x0, x1, True, x2, x3, x4) 22.66/9.41 new_esEs29(x0, x1, ty_Double) 22.66/9.41 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.66/9.41 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_compare210(x0, x1, True) 22.66/9.41 new_ltEs13(LT, LT) 22.66/9.41 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_compare31(x0, x1, ty_Integer) 22.66/9.41 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.66/9.41 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.66/9.41 new_esEs29(x0, x1, ty_Char) 22.66/9.41 new_esEs27(x0, x1, ty_Float) 22.66/9.41 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 22.66/9.41 new_esEs31(x0, x1, ty_Ordering) 22.66/9.41 new_primCompAux00(x0, GT) 22.66/9.41 new_esEs29(x0, x1, ty_Bool) 22.66/9.41 new_compare25(x0, x1, True, x2, x3) 22.66/9.41 new_esEs11(x0, x1, ty_Int) 22.66/9.41 new_compare28(x0, x1, True) 22.66/9.41 new_esEs19(True, True) 22.66/9.41 new_esEs28(x0, x1, ty_Float) 22.66/9.41 new_primMulInt(Pos(x0), Pos(x1)) 22.66/9.41 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.66/9.41 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.66/9.41 new_primCmpNat0(Succ(x0), Zero) 22.66/9.41 new_compare111(x0, x1, True) 22.66/9.41 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.66/9.41 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.66/9.41 new_esEs32(x0, x1, ty_Bool) 22.66/9.41 new_compare31(x0, x1, ty_Double) 22.66/9.41 new_ltEs21(x0, x1, ty_@0) 22.66/9.41 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.66/9.41 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_esEs20(x0, x1, ty_Integer) 22.66/9.41 new_lt4(x0, x1, ty_Double) 22.66/9.41 new_lt17(x0, x1, x2) 22.66/9.41 new_lt20(x0, x1, ty_Double) 22.66/9.41 new_compare31(x0, x1, app(ty_[], x2)) 22.66/9.41 new_esEs21(x0, x1, ty_Bool) 22.66/9.41 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_compare26(x0, x1, False, x2) 22.66/9.41 new_esEs6(Just(x0), Nothing, x1) 22.66/9.41 new_ltEs20(x0, x1, ty_Double) 22.66/9.41 new_esEs24(x0, x1, ty_Char) 22.66/9.41 new_esEs6(Just(x0), Just(x1), ty_@0) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.66/9.41 new_ltEs19(x0, x1, ty_Bool) 22.66/9.41 new_esEs23(x0, x1, ty_@0) 22.66/9.41 new_lt20(x0, x1, ty_Ordering) 22.66/9.41 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_esEs22(x0, x1, app(ty_[], x2)) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.66/9.41 new_ltEs6(x0, x1, x2) 22.66/9.41 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.66/9.41 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_compare13(x0, x1) 22.66/9.41 new_ltEs13(GT, GT) 22.66/9.41 new_ltEs5(Nothing, Just(x0), x1) 22.66/9.41 new_compare31(x0, x1, ty_Ordering) 22.66/9.41 new_ltEs20(x0, x1, ty_Float) 22.66/9.41 new_compare110(x0, x1, True) 22.66/9.41 new_esEs8(LT, GT) 22.66/9.41 new_esEs8(GT, LT) 22.66/9.41 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs13(EQ, LT) 22.66/9.41 new_ltEs13(LT, EQ) 22.66/9.41 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_compare8(Integer(x0), Integer(x1)) 22.66/9.41 new_primMulInt(Neg(x0), Neg(x1)) 22.66/9.41 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 22.66/9.41 new_primMulInt(Pos(x0), Neg(x1)) 22.66/9.41 new_primMulInt(Neg(x0), Pos(x1)) 22.66/9.41 new_lt15(x0, x1) 22.66/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.66/9.41 new_compare0(:(x0, x1), [], x2) 22.66/9.41 new_lt12(x0, x1, x2, x3) 22.66/9.41 new_esEs28(x0, x1, ty_Double) 22.66/9.41 new_compare210(x0, x1, False) 22.66/9.41 new_esEs10(x0, x1, ty_Double) 22.66/9.41 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.66/9.41 new_esEs21(x0, x1, ty_Integer) 22.66/9.41 new_lt9(x0, x1) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.66/9.41 new_esEs32(x0, x1, ty_@0) 22.66/9.41 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs18(x0, x1, ty_Int) 22.66/9.41 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.66/9.41 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.66/9.41 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), ty_Bool) 22.66/9.41 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.66/9.41 new_ltEs18(x0, x1, ty_Char) 22.66/9.41 new_lt11(x0, x1) 22.66/9.41 new_esEs32(x0, x1, ty_Integer) 22.66/9.41 new_esEs27(x0, x1, ty_Double) 22.66/9.41 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs31(x0, x1, ty_Bool) 22.66/9.41 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.66/9.41 new_lt10(x0, x1) 22.66/9.41 new_ltEs19(x0, x1, ty_Char) 22.66/9.41 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.66/9.41 new_primEqNat0(Zero, Zero) 22.66/9.41 new_ltEs5(Just(x0), Nothing, x1) 22.66/9.41 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.66/9.41 new_esEs15(Float(x0, x1), Float(x2, x3)) 22.66/9.41 new_esEs24(x0, x1, ty_Float) 22.66/9.41 new_esEs31(x0, x1, ty_Char) 22.66/9.41 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_esEs23(x0, x1, app(ty_[], x2)) 22.66/9.41 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.66/9.41 new_not(False) 22.66/9.41 new_compare25(x0, x1, False, x2, x3) 22.66/9.41 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.66/9.41 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.66/9.41 new_esEs24(x0, x1, ty_Bool) 22.66/9.41 new_esEs11(x0, x1, ty_Integer) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 22.66/9.41 new_ltEs15(x0, x1, x2) 22.66/9.41 new_ltEs17(False, False) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.66/9.41 new_ltEs18(x0, x1, ty_Float) 22.66/9.41 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.66/9.41 new_esEs31(x0, x1, ty_Int) 22.66/9.41 new_ltEs18(x0, x1, app(ty_[], x2)) 22.66/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.66/9.41 new_esEs20(x0, x1, ty_@0) 22.66/9.41 new_ltEs19(x0, x1, ty_Int) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 22.66/9.41 new_compare24(x0, x1, True, x2, x3) 22.66/9.41 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.66/9.41 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 22.66/9.41 new_primCompAux0(x0, x1, x2, x3) 22.66/9.41 new_esEs28(x0, x1, app(ty_[], x2)) 22.66/9.41 new_compare11(x0, x1, False, x2, x3) 22.66/9.41 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.66/9.41 new_esEs21(x0, x1, ty_Int) 22.66/9.41 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.66/9.41 new_lt5(x0, x1, ty_Integer) 22.66/9.41 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.66/9.41 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.66/9.41 new_esEs31(x0, x1, ty_Float) 22.66/9.41 new_compare112(x0, x1, True, x2) 22.66/9.41 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.66/9.41 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_lt5(x0, x1, ty_Ordering) 22.66/9.41 new_ltEs14(x0, x1) 22.66/9.41 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.66/9.41 new_primCmpNat0(Zero, Zero) 22.66/9.41 new_esEs24(x0, x1, ty_Int) 22.66/9.41 new_esEs11(x0, x1, ty_Ordering) 22.66/9.41 new_esEs21(x0, x1, ty_Char) 22.66/9.41 new_primCmpNat0(Zero, Succ(x0)) 22.66/9.41 new_primPlusNat0(Succ(x0), Succ(x1)) 22.66/9.41 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.66/9.41 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.66/9.41 new_ltEs5(Just(x0), Just(x1), ty_Float) 22.66/9.41 22.66/9.41 We have to consider all minimal (P,Q,R)-chains. 22.66/9.41 ---------------------------------------- 22.66/9.41 22.66/9.41 (21) DependencyGraphProof (EQUIVALENT) 22.66/9.41 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 22.66/9.41 ---------------------------------------- 22.66/9.41 22.66/9.41 (22) 22.66/9.41 Complex Obligation (AND) 22.66/9.41 22.66/9.41 ---------------------------------------- 22.66/9.41 22.66/9.41 (23) 22.66/9.41 Obligation: 22.66/9.41 Q DP problem: 22.66/9.41 The TRS P consists of the following rules: 22.66/9.41 22.66/9.41 new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare24(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) 22.66/9.41 new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw32, Right(vyw33), bf, bg, bh) 22.66/9.41 new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM22(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Right(vyw300), new_esEs31(vyw40, vyw300, be), bd, be), LT), bc, bd, be) 22.66/9.41 new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw31, Right(vyw33), bf, bg, bh) 22.66/9.41 new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Left(vyw300), False, bd, be), LT), bc, bd, be) 22.66/9.41 new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Right(vyw40), bc, bd, be) 22.66/9.41 new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Left(vyw300), False, bd, be), GT), bc, bd, be) 22.66/9.41 new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Right(vyw40), bc, bd, be) 22.66/9.41 22.66/9.41 The TRS R consists of the following rules: 22.66/9.41 22.66/9.41 new_lt5(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.66/9.41 new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT 22.66/9.41 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.66/9.41 new_esEs29(vyw18, vyw13, app(ty_[], eb)) -> new_esEs12(vyw18, vyw13, eb) 22.66/9.41 new_primPlusNat0(Zero, Zero) -> Zero 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs16(vyw43000, vyw44000, db, dc, dd) 22.66/9.41 new_compare17(vyw43000, vyw44000, cde, cdf, cdg) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, cde, cdf, cdg), cde, cdf, cdg) 22.66/9.41 new_pePe(True, vyw137) -> True 22.66/9.41 new_esEs23(vyw401, vyw3001, app(ty_Maybe, cfb)) -> new_esEs6(vyw401, vyw3001, cfb) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Ordering, daf) -> new_esEs8(vyw400, vyw3000) 22.66/9.41 new_esEs30(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) 22.66/9.41 new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs13(vyw40, vyw300) 22.66/9.41 new_esEs20(vyw402, vyw3002, app(ty_[], bha)) -> new_esEs12(vyw402, vyw3002, bha) 22.66/9.41 new_esEs21(vyw401, vyw3001, app(ty_Ratio, cae)) -> new_esEs18(vyw401, vyw3001, cae) 22.66/9.41 new_lt17(vyw43000, vyw44000, dac) -> new_esEs8(new_compare19(vyw43000, vyw44000, dac), LT) 22.66/9.41 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(vyw401, vyw3001, bhh, caa, cab) 22.66/9.41 new_esEs19(False, True) -> False 22.66/9.41 new_esEs19(True, False) -> False 22.66/9.41 new_compare112(vyw43000, vyw44000, True, ccb) -> LT 22.66/9.41 new_compare31(vyw43000, vyw44000, ty_Char) -> new_compare29(vyw43000, vyw44000) 22.66/9.41 new_esEs30(vyw40, vyw300, app(app(ty_@2, ceb), cec)) -> new_esEs4(vyw40, vyw300, ceb, cec) 22.66/9.41 new_ltEs7(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare29(vyw4300, vyw4400), GT)) 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.66/9.41 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.66/9.41 new_esEs27(vyw43000, vyw44000, app(app(ty_Either, dde), ddf)) -> new_esEs5(vyw43000, vyw44000, dde, ddf) 22.66/9.41 new_esEs12(:(vyw400, vyw401), [], dgd) -> False 22.66/9.41 new_esEs12([], :(vyw3000, vyw3001), dgd) -> False 22.66/9.41 new_lt5(vyw43000, vyw44000, app(ty_[], hh)) -> new_lt6(vyw43000, vyw44000, hh) 22.66/9.41 new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) 22.66/9.41 new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT 22.66/9.41 new_lt12(vyw43000, vyw44000, dde, ddf) -> new_esEs8(new_compare30(vyw43000, vyw44000, dde, ddf), LT) 22.66/9.41 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.66/9.41 new_esEs24(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.66/9.41 new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cg)) -> new_ltEs5(vyw43000, vyw44000, cg) 22.66/9.41 new_ltEs12(Left(vyw43000), Right(vyw44000), bce, bbc) -> True 22.66/9.41 new_compare31(vyw43000, vyw44000, ty_Bool) -> new_compare13(vyw43000, vyw44000) 22.66/9.41 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 22.66/9.41 new_ltEs13(GT, GT) -> True 22.66/9.41 new_compare14(vyw43000, vyw44000, ccb) -> new_compare26(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ccb), ccb) 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_Either, daa), dab)) -> new_esEs5(vyw400, vyw3000, daa, dab) 22.66/9.41 new_esEs11(vyw43000, vyw44000, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs7(vyw43000, vyw44000, bag, bah, bba) 22.66/9.41 new_lt7(vyw43000, vyw44000) -> new_esEs8(new_compare29(vyw43000, vyw44000), LT) 22.66/9.41 new_compare24(Right(vyw4300), Right(vyw4400), False, bdh, bea) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, bea), bdh, bea) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.66/9.41 new_esEs23(vyw401, vyw3001, app(app(ty_Either, cfd), cfe)) -> new_esEs5(vyw401, vyw3001, cfd, cfe) 22.66/9.41 new_esEs8(GT, GT) -> True 22.66/9.41 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 22.66/9.41 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 22.66/9.41 new_ltEs13(EQ, GT) -> True 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.66/9.41 new_esEs31(vyw40, vyw300, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs7(vyw40, vyw300, cce, ccf, ccg) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, app(ty_[], eg)) -> new_ltEs6(vyw4300, vyw4400, eg) 22.66/9.41 new_esEs24(vyw400, vyw3000, app(app(ty_@2, cff), cfg)) -> new_esEs4(vyw400, vyw3000, cff, cfg) 22.66/9.41 new_esEs27(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.66/9.41 new_ltEs13(EQ, EQ) -> True 22.66/9.41 new_esEs8(EQ, EQ) -> True 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Maybe, dbe), daf) -> new_esEs6(vyw400, vyw3000, dbe) 22.66/9.41 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs7(vyw43001, vyw44001) 22.66/9.41 new_lt5(vyw43000, vyw44000, app(app(ty_Either, bac), bad)) -> new_lt12(vyw43000, vyw44000, bac, bad) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(ty_@2, dcb), dcc)) -> new_esEs4(vyw400, vyw3000, dcb, dcc) 22.66/9.41 new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 22.66/9.41 new_ltEs16(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), eh, fa, fb) -> new_pePe(new_lt5(vyw43000, vyw44000, eh), new_asAs(new_esEs11(vyw43000, vyw44000, eh), new_pePe(new_lt4(vyw43001, vyw44001, fa), new_asAs(new_esEs10(vyw43001, vyw44001, fa), new_ltEs18(vyw43002, vyw44002, fb))))) 22.66/9.41 new_compare9(vyw43000, vyw44000, bfg, bfh) -> new_compare25(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, bfg, bfh), bfg, bfh) 22.66/9.41 new_ltEs6(vyw4300, vyw4400, eg) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, eg), GT)) 22.66/9.41 new_not(True) -> False 22.66/9.41 new_lt8(vyw43000, vyw44000, bfg, bfh) -> new_esEs8(new_compare9(vyw43000, vyw44000, bfg, bfh), LT) 22.66/9.41 new_primCompAux00(vyw143, LT) -> LT 22.66/9.41 new_esEs10(vyw43001, vyw44001, app(ty_Ratio, hd)) -> new_esEs18(vyw43001, vyw44001, hd) 22.66/9.41 new_primCmpNat0(Zero, Zero) -> EQ 22.66/9.41 new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, ty_Ordering) -> new_ltEs13(vyw43002, vyw44002) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.41 new_esEs27(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_@2, cc), cd)) -> new_ltEs8(vyw43000, vyw44000, cc, cd) 22.66/9.41 new_lt5(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.66/9.41 new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs14(vyw33, vyw28) 22.66/9.41 new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) 22.66/9.41 new_lt4(vyw43001, vyw44001, app(app(ty_Either, ha), hb)) -> new_lt12(vyw43001, vyw44001, ha, hb) 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_@0, bbc) -> new_ltEs4(vyw43000, vyw44000) 22.66/9.41 new_esEs10(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, ty_@0) -> new_ltEs4(vyw43002, vyw44002) 22.66/9.41 new_esEs10(vyw43001, vyw44001, app(app(app(ty_@3, he), hf), hg)) -> new_esEs7(vyw43001, vyw44001, he, hf, hg) 22.66/9.41 new_esEs11(vyw43000, vyw44000, app(ty_Ratio, baf)) -> new_esEs18(vyw43000, vyw44000, baf) 22.66/9.41 new_esEs28(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.41 new_esEs27(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.66/9.41 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.41 new_primEqNat0(Succ(vyw4000), Zero) -> False 22.66/9.41 new_primEqNat0(Zero, Succ(vyw30000)) -> False 22.66/9.41 new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.41 new_esEs25(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.66/9.41 new_compare10(vyw121, vyw122, True, cdh, cea) -> LT 22.66/9.41 new_lt5(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bbd), bbe), bbc) -> new_ltEs8(vyw43000, vyw44000, bbd, bbe) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.66/9.41 new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs14(vyw40, vyw300) 22.66/9.41 new_primCompAux00(vyw143, GT) -> GT 22.66/9.41 new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.66/9.41 new_compare110(vyw43000, vyw44000, True) -> LT 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Maybe, bbh), bbc) -> new_ltEs5(vyw43000, vyw44000, bbh) 22.66/9.41 new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.66/9.41 new_compare15(vyw43000, vyw44000, True, bfg, bfh) -> LT 22.66/9.41 new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) 22.66/9.41 new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT 22.66/9.41 new_esEs19(False, False) -> True 22.66/9.41 new_esEs28(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.41 new_esEs28(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.41 new_lt6(vyw43000, vyw44000, dfa) -> new_esEs8(new_compare0(vyw43000, vyw44000, dfa), LT) 22.66/9.41 new_esEs20(vyw402, vyw3002, app(app(ty_@2, bgd), bge)) -> new_esEs4(vyw402, vyw3002, bgd, bge) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_Maybe, bdc)) -> new_ltEs5(vyw43000, vyw44000, bdc) 22.66/9.41 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.41 new_esEs10(vyw43001, vyw44001, app(ty_[], gf)) -> new_esEs12(vyw43001, vyw44001, gf) 22.66/9.41 new_lt16(vyw43000, vyw44000, ccb) -> new_esEs8(new_compare14(vyw43000, vyw44000, ccb), LT) 22.66/9.41 new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 22.66/9.41 new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs13(vyw18, vyw13) 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.66/9.41 new_primCompAux0(vyw43000, vyw44000, vyw139, eg) -> new_primCompAux00(vyw139, new_compare31(vyw43000, vyw44000, eg)) 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.41 new_primCmpNat0(Zero, Succ(vyw440000)) -> LT 22.66/9.41 new_esEs22(vyw400, vyw3000, app(ty_Ratio, cbg)) -> new_esEs18(vyw400, vyw3000, cbg) 22.66/9.41 new_esEs7(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bga, bgb, bgc) -> new_asAs(new_esEs22(vyw400, vyw3000, bga), new_asAs(new_esEs21(vyw401, vyw3001, bgb), new_esEs20(vyw402, vyw3002, bgc))) 22.66/9.41 new_ltEs13(LT, GT) -> True 22.66/9.41 new_compare31(vyw43000, vyw44000, ty_@0) -> new_compare5(vyw43000, vyw44000) 22.66/9.41 new_compare210(vyw43000, vyw44000, True) -> EQ 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.41 new_esEs32(vyw33, vyw28, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs7(vyw33, vyw28, eaa, eab, eac) 22.66/9.41 new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs14(vyw43001, vyw44001) 22.66/9.41 new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) 22.66/9.41 new_primCmpNat0(Succ(vyw430000), Zero) -> GT 22.66/9.41 new_esEs30(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Char, daf) -> new_esEs13(vyw400, vyw3000) 22.66/9.41 new_pePe(False, vyw137) -> vyw137 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Char, bbc) -> new_ltEs7(vyw43000, vyw44000) 22.66/9.41 new_esEs17(@0, @0) -> True 22.66/9.41 new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.41 new_compare25(vyw43000, vyw44000, True, bfg, bfh) -> EQ 22.66/9.41 new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.41 new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, ddh), dea)) -> new_ltEs8(vyw43001, vyw44001, ddh, dea) 22.66/9.41 new_compare31(vyw43000, vyw44000, app(ty_Maybe, dfg)) -> new_compare14(vyw43000, vyw44000, dfg) 22.66/9.41 new_ltEs14(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Ratio, bca), bbc) -> new_ltEs15(vyw43000, vyw44000, bca) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, ty_Bool) -> new_ltEs17(vyw43002, vyw44002) 22.66/9.41 new_lt4(vyw43001, vyw44001, ty_Ordering) -> new_lt13(vyw43001, vyw44001) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.41 new_esEs30(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 22.66/9.41 new_esEs8(LT, EQ) -> False 22.66/9.41 new_esEs8(EQ, LT) -> False 22.66/9.41 new_compare11(vyw128, vyw129, False, dad, dae) -> GT 22.66/9.41 new_esEs22(vyw400, vyw3000, app(ty_Maybe, cbf)) -> new_esEs6(vyw400, vyw3000, cbf) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_@2, dag), dah), daf) -> new_esEs4(vyw400, vyw3000, dag, dah) 22.66/9.41 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bhf), bhg)) -> new_esEs4(vyw401, vyw3001, bhf, bhg) 22.66/9.41 new_esEs32(vyw33, vyw28, app(ty_Maybe, eae)) -> new_esEs6(vyw33, vyw28, eae) 22.66/9.41 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 22.66/9.41 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 22.66/9.41 new_compare31(vyw43000, vyw44000, ty_Double) -> new_compare12(vyw43000, vyw44000) 22.66/9.41 new_esEs24(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.41 new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs17(vyw18, vyw13) 22.66/9.41 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.66/9.41 new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, ty_Float) -> new_ltEs10(vyw43002, vyw44002) 22.66/9.41 new_compare28(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs13(vyw43000, vyw44000)) 22.66/9.41 new_esEs11(vyw43000, vyw44000, app(ty_[], hh)) -> new_esEs12(vyw43000, vyw44000, hh) 22.66/9.41 new_compare31(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs12(vyw43000, vyw44000, bbf, bbg) 22.66/9.41 new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.41 new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 22.66/9.41 new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare12(vyw4300, vyw4400), GT)) 22.66/9.41 new_esEs24(vyw400, vyw3000, app(ty_Ratio, cge)) -> new_esEs18(vyw400, vyw3000, cge) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, app(app(ty_Either, fg), fh)) -> new_ltEs12(vyw43002, vyw44002, fg, fh) 22.66/9.41 new_esEs10(vyw43001, vyw44001, ty_Int) -> new_esEs14(vyw43001, vyw44001) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Ordering, bbc) -> new_ltEs13(vyw43000, vyw44000) 22.66/9.41 new_esEs24(vyw400, vyw3000, app(app(ty_Either, cgf), cgg)) -> new_esEs5(vyw400, vyw3000, cgf, cgg) 22.66/9.41 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) 22.66/9.41 new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT 22.66/9.41 new_ltEs5(Just(vyw43000), Nothing, ca) -> False 22.66/9.41 new_ltEs5(Nothing, Nothing, ca) -> True 22.66/9.41 new_ltEs18(vyw43002, vyw44002, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs16(vyw43002, vyw44002, gc, gd, ge) 22.66/9.41 new_esEs30(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 22.66/9.41 new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs16(vyw33, vyw28) 22.66/9.41 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Int, daf) -> new_esEs14(vyw400, vyw3000) 22.66/9.41 new_lt20(vyw43000, vyw44000, app(app(ty_@2, bfg), bfh)) -> new_lt8(vyw43000, vyw44000, bfg, bfh) 22.66/9.41 new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 22.66/9.41 new_esEs32(vyw33, vyw28, app(app(ty_Either, eag), eah)) -> new_esEs5(vyw33, vyw28, eag, eah) 22.66/9.41 new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs7(vyw400, vyw3000, cbb, cbc, cbd) 22.66/9.41 new_esEs24(vyw400, vyw3000, app(ty_Maybe, cgd)) -> new_esEs6(vyw400, vyw3000, cgd) 22.66/9.41 new_esEs30(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 22.66/9.41 new_lt5(vyw43000, vyw44000, app(app(ty_@2, baa), bab)) -> new_lt8(vyw43000, vyw44000, baa, bab) 22.66/9.41 new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) 22.66/9.41 new_lt13(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) 22.66/9.41 new_esEs10(vyw43001, vyw44001, app(app(ty_@2, gg), gh)) -> new_esEs4(vyw43001, vyw44001, gg, gh) 22.66/9.41 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 22.66/9.41 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_Ratio, dda)) -> new_esEs18(vyw400, vyw3000, dda) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(ty_@2, bcg), bch)) -> new_ltEs8(vyw43000, vyw44000, bcg, bch) 22.66/9.41 new_esEs23(vyw401, vyw3001, app(ty_[], cfa)) -> new_esEs12(vyw401, vyw3001, cfa) 22.66/9.41 new_esEs24(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.66/9.41 new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs19(vyw18, vyw13) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Integer, daf) -> new_esEs9(vyw400, vyw3000) 22.66/9.41 new_esEs10(vyw43001, vyw44001, ty_@0) -> new_esEs17(vyw43001, vyw44001) 22.66/9.41 new_compare13(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs19(vyw43000, vyw44000)) 22.66/9.41 new_compare26(vyw43000, vyw44000, True, ccb) -> EQ 22.66/9.41 new_primPlusNat1(Succ(vyw1380), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw1380, vyw300000))) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_Either, dbg), dbh), daf) -> new_esEs5(vyw400, vyw3000, dbg, dbh) 22.66/9.41 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.66/9.41 new_primPlusNat0(Succ(vyw13800), Zero) -> Succ(vyw13800) 22.66/9.41 new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 22.66/9.41 new_compare27(vyw43000, vyw44000, True, cde, cdf, cdg) -> EQ 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_Maybe, dch)) -> new_esEs6(vyw400, vyw3000, dch) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs7(vyw400, vyw3000, dcd, dce, dcf) 22.66/9.41 new_esEs21(vyw401, vyw3001, app(app(ty_Either, caf), cag)) -> new_esEs5(vyw401, vyw3001, caf, cag) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.66/9.41 new_esEs24(vyw400, vyw3000, app(ty_[], cgc)) -> new_esEs12(vyw400, vyw3000, cgc) 22.66/9.41 new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) 22.66/9.41 new_esEs11(vyw43000, vyw44000, app(app(ty_@2, baa), bab)) -> new_esEs4(vyw43000, vyw44000, baa, bab) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, ty_Integer) -> new_ltEs14(vyw43002, vyw44002) 22.66/9.41 new_esEs8(LT, LT) -> True 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, chc), chd), che)) -> new_esEs7(vyw400, vyw3000, chc, chd, che) 22.66/9.41 new_compare111(vyw43000, vyw44000, True) -> LT 22.66/9.41 new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) 22.66/9.41 new_esEs24(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.41 new_ltEs13(GT, LT) -> False 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Double, bbc) -> new_ltEs11(vyw43000, vyw44000) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Integer, bbc) -> new_ltEs14(vyw43000, vyw44000) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, def), deg), deh)) -> new_ltEs16(vyw43001, vyw44001, def, deg, deh) 22.66/9.41 new_compare27(vyw43000, vyw44000, False, cde, cdf, cdg) -> new_compare16(vyw43000, vyw44000, new_ltEs16(vyw43000, vyw44000, cde, cdf, cdg), cde, cdf, cdg) 22.66/9.41 new_esEs10(vyw43001, vyw44001, ty_Float) -> new_esEs15(vyw43001, vyw44001) 22.66/9.41 new_esEs24(vyw400, vyw3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs7(vyw400, vyw3000, cfh, cga, cgb) 22.66/9.41 new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs17(vyw33, vyw28) 22.66/9.41 new_esEs27(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.66/9.41 new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs19(vyw33, vyw28) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs17(vyw43001, vyw44001) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, beb), bec)) -> new_ltEs8(vyw4300, vyw4400, beb, bec) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.66/9.41 new_compare31(vyw43000, vyw44000, app(ty_Ratio, dfh)) -> new_compare19(vyw43000, vyw44000, dfh) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.66/9.41 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Float, bbc) -> new_ltEs10(vyw43000, vyw44000) 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_@2, cha), chb)) -> new_esEs4(vyw400, vyw3000, cha, chb) 22.66/9.41 new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 22.66/9.41 new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 22.66/9.41 new_esEs23(vyw401, vyw3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs7(vyw401, vyw3001, cef, ceg, ceh) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs16(vyw4300, vyw4400, bfd, bfe, bff) 22.66/9.41 new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 22.66/9.41 new_lt4(vyw43001, vyw44001, app(ty_Ratio, hd)) -> new_lt17(vyw43001, vyw44001, hd) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, bef), beg)) -> new_ltEs8(vyw4300, vyw4400, bef, beg) 22.66/9.41 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.41 new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs15(vyw33, vyw28) 22.66/9.41 new_lt5(vyw43000, vyw44000, app(ty_Ratio, baf)) -> new_lt17(vyw43000, vyw44000, baf) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.66/9.41 new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) 22.66/9.41 new_lt4(vyw43001, vyw44001, app(app(ty_@2, gg), gh)) -> new_lt8(vyw43001, vyw44001, gg, gh) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.66/9.41 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.41 new_esEs11(vyw43000, vyw44000, app(app(ty_Either, bac), bad)) -> new_esEs5(vyw43000, vyw44000, bac, bad) 22.66/9.41 new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs19(vyw402, vyw3002) 22.66/9.41 new_esEs25(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Maybe, chg)) -> new_esEs6(vyw400, vyw3000, chg) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.66/9.41 new_ltEs13(GT, EQ) -> False 22.66/9.41 new_esEs6(Nothing, Just(vyw3000), cgh) -> False 22.66/9.41 new_esEs6(Just(vyw400), Nothing, cgh) -> False 22.66/9.41 new_lt20(vyw43000, vyw44000, app(ty_Ratio, dac)) -> new_lt17(vyw43000, vyw44000, dac) 22.66/9.41 new_esEs6(Nothing, Nothing, cgh) -> True 22.66/9.41 new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs17(vyw402, vyw3002) 22.66/9.41 new_esEs22(vyw400, vyw3000, app(app(ty_Either, cbh), cca)) -> new_esEs5(vyw400, vyw3000, cbh, cca) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.41 new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.66/9.41 new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) 22.66/9.41 new_ltEs5(Nothing, Just(vyw44000), ca) -> True 22.66/9.41 new_esEs11(vyw43000, vyw44000, app(ty_Maybe, bae)) -> new_esEs6(vyw43000, vyw44000, bae) 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.66/9.41 new_esEs23(vyw401, vyw3001, app(app(ty_@2, ced), cee)) -> new_esEs4(vyw401, vyw3001, ced, cee) 22.66/9.41 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Bool, bbc) -> new_ltEs17(vyw43000, vyw44000) 22.66/9.41 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.41 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.66/9.41 new_compare8(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(ty_Either, bda), bdb)) -> new_ltEs12(vyw43000, vyw44000, bda, bdb) 22.66/9.41 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.41 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.66/9.41 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_[], bcf)) -> new_ltEs6(vyw43000, vyw44000, bcf) 22.66/9.41 new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Int, bbc) -> new_ltEs9(vyw43000, vyw44000) 22.66/9.41 new_compare28(vyw43000, vyw44000, True) -> EQ 22.66/9.41 new_ltEs12(Right(vyw43000), Left(vyw44000), bce, bbc) -> False 22.66/9.41 new_esEs22(vyw400, vyw3000, app(app(ty_@2, cah), cba)) -> new_esEs4(vyw400, vyw3000, cah, cba) 22.66/9.41 new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) 22.66/9.41 new_esEs31(vyw40, vyw300, app(ty_Maybe, cda)) -> new_esEs6(vyw40, vyw300, cda) 22.66/9.41 new_compare24(Right(vyw4300), Left(vyw4400), False, bdh, bea) -> GT 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.66/9.41 new_compare5(@0, @0) -> EQ 22.66/9.41 new_compare31(vyw43000, vyw44000, app(ty_[], dfb)) -> new_compare0(vyw43000, vyw44000, dfb) 22.66/9.41 new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.66/9.41 new_compare25(vyw43000, vyw44000, False, bfg, bfh) -> new_compare15(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000, bfg, bfh), bfg, bfh) 22.66/9.41 new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.66/9.41 new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.66/9.41 new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare13(vyw43000, vyw44000), LT) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.41 new_esEs10(vyw43001, vyw44001, app(app(ty_Either, ha), hb)) -> new_esEs5(vyw43001, vyw44001, ha, hb) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs16(vyw4300, vyw4400, eh, fa, fb) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.66/9.41 new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt18(vyw43000, vyw44000, cde, cdf, cdg) 22.66/9.41 new_esEs23(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.66/9.41 new_esEs28(vyw400, vyw3000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs7(vyw400, vyw3000, dgg, dgh, dha) 22.66/9.41 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, ca)) -> new_ltEs5(vyw4300, vyw4400, ca) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, deb), dec)) -> new_ltEs12(vyw43001, vyw44001, deb, dec) 22.66/9.41 new_compare0([], :(vyw44000, vyw44001), eg) -> LT 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_[], dbd), daf) -> new_esEs12(vyw400, vyw3000, dbd) 22.66/9.41 new_asAs(True, vyw116) -> vyw116 22.66/9.41 new_esEs21(vyw401, vyw3001, app(ty_Maybe, cad)) -> new_esEs6(vyw401, vyw3001, cad) 22.66/9.41 new_compare10(vyw121, vyw122, False, cdh, cea) -> GT 22.66/9.41 new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, app(app(ty_@2, fd), ff)) -> new_ltEs8(vyw43002, vyw44002, fd, ff) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.41 new_esEs23(vyw401, vyw3001, app(ty_Ratio, cfc)) -> new_esEs18(vyw401, vyw3001, cfc) 22.66/9.41 new_esEs10(vyw43001, vyw44001, app(ty_Maybe, hc)) -> new_esEs6(vyw43001, vyw44001, hc) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs10(vyw43001, vyw44001) 22.66/9.41 new_lt5(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, bfb)) -> new_ltEs5(vyw4300, vyw4400, bfb) 22.66/9.41 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_[], dcg)) -> new_esEs12(vyw400, vyw3000, dcg) 22.66/9.41 new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs13(vyw43001, vyw44001) 22.66/9.41 new_esEs10(vyw43001, vyw44001, ty_Integer) -> new_esEs9(vyw43001, vyw44001) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, ty_Char) -> new_ltEs7(vyw43002, vyw44002) 22.66/9.41 new_compare24(vyw430, vyw440, True, bdh, bea) -> EQ 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.66/9.41 new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) 22.66/9.41 new_esEs29(vyw18, vyw13, app(app(ty_Either, ee), ef)) -> new_esEs5(vyw18, vyw13, ee, ef) 22.66/9.41 new_compare110(vyw43000, vyw44000, False) -> GT 22.66/9.41 new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.66/9.41 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.66/9.41 new_primCompAux00(vyw143, EQ) -> vyw143 22.66/9.41 new_compare0([], [], eg) -> EQ 22.66/9.41 new_lt20(vyw43000, vyw44000, app(app(ty_Either, dde), ddf)) -> new_lt12(vyw43000, vyw44000, dde, ddf) 22.66/9.41 new_esEs28(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.66/9.41 new_esEs28(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.41 new_primMulNat0(Zero, Zero) -> Zero 22.66/9.41 new_esEs10(vyw43001, vyw44001, ty_Bool) -> new_esEs19(vyw43001, vyw44001) 22.66/9.41 new_esEs27(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.66/9.41 new_compare111(vyw43000, vyw44000, False) -> GT 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Ratio, da)) -> new_ltEs15(vyw43000, vyw44000, da) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_[], chf)) -> new_esEs12(vyw400, vyw3000, chf) 22.66/9.41 new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.66/9.41 new_esEs20(vyw402, vyw3002, app(app(ty_Either, bhd), bhe)) -> new_esEs5(vyw402, vyw3002, bhd, bhe) 22.66/9.41 new_lt4(vyw43001, vyw44001, ty_Char) -> new_lt7(vyw43001, vyw44001) 22.66/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Ratio, chh)) -> new_esEs18(vyw400, vyw3000, chh) 22.66/9.41 new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs9(vyw18, vyw13) 22.66/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(ty_Either, ddb), ddc)) -> new_esEs5(vyw400, vyw3000, ddb, ddc) 22.66/9.41 new_esEs27(vyw43000, vyw44000, app(ty_Ratio, dac)) -> new_esEs18(vyw43000, vyw44000, dac) 22.66/9.41 new_esEs9(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 22.66/9.41 new_esEs28(vyw400, vyw3000, app(ty_Ratio, dhd)) -> new_esEs18(vyw400, vyw3000, dhd) 22.66/9.41 new_ltEs13(EQ, LT) -> False 22.66/9.41 new_compare31(vyw43000, vyw44000, app(app(app(ty_@3, dga), dgb), dgc)) -> new_compare17(vyw43000, vyw44000, dga, dgb, dgc) 22.66/9.41 new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, bce), bbc)) -> new_ltEs12(vyw4300, vyw4400, bce, bbc) 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_[], cb)) -> new_ltEs6(vyw43000, vyw44000, cb) 22.66/9.41 new_esEs10(vyw43001, vyw44001, ty_Double) -> new_esEs16(vyw43001, vyw44001) 22.66/9.41 new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) 22.66/9.41 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.66/9.41 new_esEs18(:%(vyw400, vyw401), :%(vyw3000, vyw3001), ddd) -> new_asAs(new_esEs26(vyw400, vyw3000, ddd), new_esEs25(vyw401, vyw3001, ddd)) 22.66/9.41 new_ltEs17(False, False) -> True 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, bcb), bcc), bcd), bbc) -> new_ltEs16(vyw43000, vyw44000, bcb, bcc, bcd) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.66/9.41 new_esEs22(vyw400, vyw3000, app(ty_[], cbe)) -> new_esEs12(vyw400, vyw3000, cbe) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.66/9.41 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 22.66/9.41 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 22.66/9.41 new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, beh), bfa)) -> new_ltEs12(vyw4300, vyw4400, beh, bfa) 22.66/9.41 new_esEs27(vyw43000, vyw44000, app(ty_[], dfa)) -> new_esEs12(vyw43000, vyw44000, dfa) 22.66/9.41 new_esEs14(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 22.66/9.41 new_compare26(vyw43000, vyw44000, False, ccb) -> new_compare112(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000, ccb), ccb) 22.66/9.41 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.66/9.41 new_compare31(vyw43000, vyw44000, ty_Ordering) -> new_compare18(vyw43000, vyw44000) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, app(ty_Maybe, ga)) -> new_ltEs5(vyw43002, vyw44002, ga) 22.66/9.41 new_esEs32(vyw33, vyw28, app(app(ty_@2, dhg), dhh)) -> new_esEs4(vyw33, vyw28, dhg, dhh) 22.66/9.41 new_ltEs18(vyw43002, vyw44002, app(ty_[], fc)) -> new_ltEs6(vyw43002, vyw44002, fc) 22.66/9.41 new_compare24(Left(vyw4300), Right(vyw4400), False, bdh, bea) -> LT 22.66/9.41 new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.66/9.41 new_esEs20(vyw402, vyw3002, app(ty_Maybe, bhb)) -> new_esEs6(vyw402, vyw3002, bhb) 22.66/9.41 new_esEs11(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.66/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_[], bbb), bbc) -> new_ltEs6(vyw43000, vyw44000, bbb) 22.66/9.41 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 22.66/9.41 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 22.66/9.41 new_lt4(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) 22.66/9.41 new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) 22.66/9.41 new_esEs31(vyw40, vyw300, app(app(ty_Either, cdc), cdd)) -> new_esEs5(vyw40, vyw300, cdc, cdd) 22.66/9.41 new_esEs12(:(vyw400, vyw401), :(vyw3000, vyw3001), dgd) -> new_asAs(new_esEs28(vyw400, vyw3000, dgd), new_esEs12(vyw401, vyw3001, dgd)) 22.66/9.41 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.66/9.41 new_ltEs17(True, False) -> False 22.66/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.66/9.41 new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs14(vyw18, vyw13) 22.66/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Float, daf) -> new_esEs15(vyw400, vyw3000) 22.66/9.41 new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.66/9.41 new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs14(vyw402, vyw3002) 22.66/9.41 new_esEs30(vyw40, vyw300, app(ty_Maybe, cgh)) -> new_esEs6(vyw40, vyw300, cgh) 22.66/9.41 new_ltEs17(False, True) -> True 22.66/9.41 new_esEs13(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 22.66/9.41 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.66/9.41 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.66/9.41 new_compare30(vyw43000, vyw44000, dde, ddf) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, dde, ddf), dde, ddf) 22.66/9.41 new_esEs24(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.66/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.66/9.41 new_compare24(Left(vyw4300), Left(vyw4400), False, bdh, bea) -> new_compare10(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, bdh), bdh, bea) 22.92/9.41 new_esEs29(vyw18, vyw13, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(vyw18, vyw13, dg, dh, ea) 22.92/9.41 new_esEs31(vyw40, vyw300, app(app(ty_@2, ccc), ccd)) -> new_esEs4(vyw40, vyw300, ccc, ccd) 22.92/9.41 new_not(False) -> True 22.92/9.41 new_esEs21(vyw401, vyw3001, app(ty_[], cac)) -> new_esEs12(vyw401, vyw3001, cac) 22.92/9.41 new_esEs28(vyw400, vyw3000, app(ty_[], dhb)) -> new_esEs12(vyw400, vyw3000, dhb) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Double, daf) -> new_esEs16(vyw400, vyw3000) 22.92/9.41 new_esEs30(vyw40, vyw300, app(ty_Ratio, ddd)) -> new_esEs18(vyw40, vyw300, ddd) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.41 new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs7(vyw402, vyw3002, bgf, bgg, bgh) 22.92/9.41 new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) 22.92/9.41 new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare12(vyw43000, vyw44000), LT) 22.92/9.41 new_compare0(:(vyw43000, vyw43001), [], eg) -> GT 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs16(vyw43000, vyw44000, bde, bdf, bdg) 22.92/9.41 new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs9(vyw33, vyw28) 22.92/9.41 new_esEs8(LT, GT) -> False 22.92/9.41 new_esEs8(GT, LT) -> False 22.92/9.41 new_esEs30(vyw40, vyw300, ty_Char) -> new_esEs13(vyw40, vyw300) 22.92/9.41 new_primPlusNat0(Succ(vyw13800), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw13800, vyw3000000))) 22.92/9.41 new_ltEs13(LT, LT) -> True 22.92/9.41 new_esEs20(vyw402, vyw3002, app(ty_Ratio, bhc)) -> new_esEs18(vyw402, vyw3002, bhc) 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.41 new_esEs5(Left(vyw400), Right(vyw3000), dca, daf) -> False 22.92/9.41 new_esEs5(Right(vyw400), Left(vyw3000), dca, daf) -> False 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs4(vyw43001, vyw44001) 22.92/9.41 new_esEs30(vyw40, vyw300, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs7(vyw40, vyw300, bga, bgb, bgc) 22.92/9.41 new_compare31(vyw43000, vyw44000, ty_Float) -> new_compare7(vyw43000, vyw44000) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_Int) -> new_ltEs9(vyw43002, vyw44002) 22.92/9.41 new_lt4(vyw43001, vyw44001, app(app(app(ty_@3, he), hf), hg)) -> new_lt18(vyw43001, vyw44001, he, hf, hg) 22.92/9.41 new_lt4(vyw43001, vyw44001, ty_Bool) -> new_lt19(vyw43001, vyw44001) 22.92/9.41 new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) 22.92/9.41 new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.92/9.41 new_esEs29(vyw18, vyw13, app(ty_Ratio, ed)) -> new_esEs18(vyw18, vyw13, ed) 22.92/9.41 new_esEs24(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.41 new_compare31(vyw43000, vyw44000, app(app(ty_@2, dfc), dfd)) -> new_compare9(vyw43000, vyw44000, dfc, dfd) 22.92/9.41 new_esEs24(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.41 new_esEs27(vyw43000, vyw44000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs7(vyw43000, vyw44000, cde, cdf, cdg) 22.92/9.41 new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.92/9.41 new_esEs30(vyw40, vyw300, app(app(ty_Either, dca), daf)) -> new_esEs5(vyw40, vyw300, dca, daf) 22.92/9.41 new_compare16(vyw43000, vyw44000, False, cde, cdf, cdg) -> GT 22.92/9.41 new_esEs4(@2(vyw400, vyw401), @2(vyw3000, vyw3001), ceb, cec) -> new_asAs(new_esEs24(vyw400, vyw3000, ceb), new_esEs23(vyw401, vyw3001, cec)) 22.92/9.41 new_compare11(vyw128, vyw129, True, dad, dae) -> LT 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_@0, daf) -> new_esEs17(vyw400, vyw3000) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Bool, daf) -> new_esEs19(vyw400, vyw3000) 22.92/9.41 new_esEs24(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, app(ty_[], bee)) -> new_ltEs6(vyw4300, vyw4400, bee) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, dee)) -> new_ltEs15(vyw43001, vyw44001, dee) 22.92/9.41 new_sr0(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 22.92/9.41 new_esEs30(vyw40, vyw300, ty_Int) -> new_esEs14(vyw40, vyw300) 22.92/9.41 new_esEs29(vyw18, vyw13, app(ty_Maybe, ec)) -> new_esEs6(vyw18, vyw13, ec) 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.92/9.41 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.92/9.41 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.92/9.41 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) 22.92/9.41 new_esEs27(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.41 new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), eg) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, eg), eg) 22.92/9.41 new_esEs32(vyw33, vyw28, app(ty_Ratio, eaf)) -> new_esEs18(vyw33, vyw28, eaf) 22.92/9.41 new_compare31(vyw43000, vyw44000, ty_Integer) -> new_compare8(vyw43000, vyw44000) 22.92/9.41 new_esEs30(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.41 new_esEs32(vyw33, vyw28, app(ty_[], ead)) -> new_esEs12(vyw33, vyw28, ead) 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.41 new_esEs27(vyw43000, vyw44000, app(app(ty_@2, bfg), bfh)) -> new_esEs4(vyw43000, vyw44000, bfg, bfh) 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_Ratio, bdd)) -> new_ltEs15(vyw43000, vyw44000, bdd) 22.92/9.41 new_esEs27(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.92/9.41 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.92/9.41 new_esEs28(vyw400, vyw3000, app(ty_Maybe, dhc)) -> new_esEs6(vyw400, vyw3000, dhc) 22.92/9.41 new_esEs31(vyw40, vyw300, app(ty_[], cch)) -> new_esEs12(vyw40, vyw300, cch) 22.92/9.41 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.92/9.41 new_lt5(vyw43000, vyw44000, app(ty_Maybe, bae)) -> new_lt16(vyw43000, vyw44000, bae) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Ratio, dbf), daf) -> new_esEs18(vyw400, vyw3000, dbf) 22.92/9.41 new_esEs28(vyw400, vyw3000, app(app(ty_@2, dge), dgf)) -> new_esEs4(vyw400, vyw3000, dge, dgf) 22.92/9.41 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.41 new_lt4(vyw43001, vyw44001, ty_Float) -> new_lt10(vyw43001, vyw44001) 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.92/9.41 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, bed)) -> new_ltEs15(vyw4300, vyw4400, bed) 22.92/9.41 new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) 22.92/9.41 new_ltEs13(LT, EQ) -> True 22.92/9.41 new_compare16(vyw43000, vyw44000, True, cde, cdf, cdg) -> LT 22.92/9.41 new_esEs30(vyw40, vyw300, app(ty_[], dgd)) -> new_esEs12(vyw40, vyw300, dgd) 22.92/9.41 new_lt18(vyw43000, vyw44000, cde, cdf, cdg) -> new_esEs8(new_compare17(vyw43000, vyw44000, cde, cdf, cdg), LT) 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.92/9.41 new_esEs27(vyw43000, vyw44000, app(ty_Maybe, ccb)) -> new_esEs6(vyw43000, vyw44000, ccb) 22.92/9.41 new_esEs10(vyw43001, vyw44001, ty_Char) -> new_esEs13(vyw43001, vyw44001) 22.92/9.41 new_lt4(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) 22.92/9.41 new_lt20(vyw43000, vyw44000, app(ty_Maybe, ccb)) -> new_lt16(vyw43000, vyw44000, ccb) 22.92/9.41 new_esEs28(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.41 new_compare15(vyw43000, vyw44000, False, bfg, bfh) -> GT 22.92/9.41 new_esEs12([], [], dgd) -> True 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs9(vyw43001, vyw44001) 22.92/9.41 new_ltEs15(vyw4300, vyw4400, bed) -> new_not(new_esEs8(new_compare19(vyw4300, vyw4400, bed), GT)) 22.92/9.41 new_esEs27(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.92/9.41 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.92/9.41 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.92/9.41 new_esEs29(vyw18, vyw13, app(app(ty_@2, de), df)) -> new_esEs4(vyw18, vyw13, de, df) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, app(ty_Ratio, gb)) -> new_ltEs15(vyw43002, vyw44002, gb) 22.92/9.41 new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs13(vyw402, vyw3002) 22.92/9.41 new_esEs31(vyw40, vyw300, app(ty_Ratio, cdb)) -> new_esEs18(vyw40, vyw300, cdb) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, bfc)) -> new_ltEs15(vyw4300, vyw4400, bfc) 22.92/9.41 new_lt4(vyw43001, vyw44001, ty_Int) -> new_lt9(vyw43001, vyw44001) 22.92/9.41 new_compare29(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) 22.92/9.41 new_primEqNat0(Zero, Zero) -> True 22.92/9.41 new_esEs28(vyw400, vyw3000, app(app(ty_Either, dhe), dhf)) -> new_esEs5(vyw400, vyw3000, dhe, dhf) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.92/9.41 new_lt4(vyw43001, vyw44001, app(ty_[], gf)) -> new_lt6(vyw43001, vyw44001, gf) 22.92/9.41 new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) 22.92/9.41 new_ltEs8(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), beb, bec) -> new_pePe(new_lt20(vyw43000, vyw44000, beb), new_asAs(new_esEs27(vyw43000, vyw44000, beb), new_ltEs21(vyw43001, vyw44001, bec))) 22.92/9.41 new_lt20(vyw43000, vyw44000, app(ty_[], dfa)) -> new_lt6(vyw43000, vyw44000, dfa) 22.92/9.41 new_lt5(vyw43000, vyw44000, app(app(app(ty_@3, bag), bah), bba)) -> new_lt18(vyw43000, vyw44000, bag, bah, bba) 22.92/9.41 new_ltEs17(True, True) -> True 22.92/9.41 new_asAs(False, vyw116) -> False 22.92/9.41 new_compare18(vyw43000, vyw44000) -> new_compare28(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) 22.92/9.41 new_lt4(vyw43001, vyw44001, ty_@0) -> new_lt14(vyw43001, vyw44001) 22.92/9.41 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_Either, ce), cf)) -> new_ltEs12(vyw43000, vyw44000, ce, cf) 22.92/9.41 new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs9(vyw402, vyw3002) 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.41 new_esEs8(EQ, GT) -> False 22.92/9.41 new_esEs8(GT, EQ) -> False 22.92/9.41 new_compare112(vyw43000, vyw44000, False, ccb) -> GT 22.92/9.41 new_lt4(vyw43001, vyw44001, app(ty_Maybe, hc)) -> new_lt16(vyw43001, vyw44001, hc) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.92/9.41 new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs13(vyw33, vyw28) 22.92/9.41 new_compare31(vyw43000, vyw44000, app(app(ty_Either, dfe), dff)) -> new_compare30(vyw43000, vyw44000, dfe, dff) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, ded)) -> new_ltEs5(vyw43001, vyw44001, ded) 22.92/9.41 new_esEs19(True, True) -> True 22.92/9.41 new_ltEs21(vyw43001, vyw44001, app(ty_[], ddg)) -> new_ltEs6(vyw43001, vyw44001, ddg) 22.92/9.41 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, dba), dbb), dbc), daf) -> new_esEs7(vyw400, vyw3000, dba, dbb, dbc) 22.92/9.41 22.92/9.41 The set Q consists of the following terms: 22.92/9.41 22.92/9.41 new_ltEs20(x0, x1, ty_@0) 22.92/9.41 new_esEs30(x0, x1, ty_Double) 22.92/9.41 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_lt4(x0, x1, ty_@0) 22.92/9.41 new_esEs8(EQ, EQ) 22.92/9.41 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_compare6(x0, x1) 22.92/9.41 new_compare26(x0, x1, True, x2) 22.92/9.41 new_ltEs19(x0, x1, ty_Float) 22.92/9.41 new_ltEs21(x0, x1, ty_Double) 22.92/9.41 new_esEs21(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.92/9.41 new_primPlusNat0(Zero, Succ(x0)) 22.92/9.41 new_esEs20(x0, x1, ty_Char) 22.92/9.41 new_compare24(Left(x0), Left(x1), False, x2, x3) 22.92/9.41 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs23(x0, x1, ty_Double) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_Double) 22.92/9.41 new_primPlusNat1(Succ(x0), x1) 22.92/9.41 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.92/9.41 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_lt4(x0, x1, ty_Bool) 22.92/9.41 new_esEs30(x0, x1, ty_Ordering) 22.92/9.41 new_ltEs20(x0, x1, ty_Bool) 22.92/9.41 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.92/9.41 new_compare110(x0, x1, False) 22.92/9.41 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 22.92/9.41 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs20(x0, x1, ty_Int) 22.92/9.41 new_esEs21(x0, x1, ty_Ordering) 22.92/9.41 new_esEs19(False, False) 22.92/9.41 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_lt5(x0, x1, ty_Char) 22.92/9.41 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_Int) 22.92/9.41 new_compare16(x0, x1, False, x2, x3, x4) 22.92/9.41 new_compare10(x0, x1, False, x2, x3) 22.92/9.41 new_primEqInt(Pos(Zero), Pos(Zero)) 22.92/9.41 new_esEs14(x0, x1) 22.92/9.41 new_esEs23(x0, x1, ty_Ordering) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.92/9.41 new_ltEs13(EQ, EQ) 22.92/9.41 new_esEs23(x0, x1, ty_Int) 22.92/9.41 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_compare0([], :(x0, x1), x2) 22.92/9.41 new_esEs22(x0, x1, ty_Double) 22.92/9.41 new_esEs20(x0, x1, ty_Double) 22.92/9.41 new_primEqInt(Neg(Zero), Neg(Zero)) 22.92/9.41 new_esEs29(x0, x1, ty_Float) 22.92/9.41 new_esEs32(x0, x1, ty_Float) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.92/9.41 new_esEs25(x0, x1, ty_Int) 22.92/9.41 new_lt5(x0, x1, ty_Bool) 22.92/9.41 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 22.92/9.41 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.92/9.41 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.92/9.41 new_esEs23(x0, x1, ty_Char) 22.92/9.41 new_lt4(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.92/9.41 new_lt5(x0, x1, app(ty_[], x2)) 22.92/9.41 new_ltEs20(x0, x1, ty_Char) 22.92/9.41 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_compare29(Char(x0), Char(x1)) 22.92/9.41 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.92/9.41 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 22.92/9.41 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_pePe(True, x0) 22.92/9.41 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs17(True, True) 22.92/9.41 new_lt5(x0, x1, ty_Double) 22.92/9.41 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_primCompAux00(x0, EQ) 22.92/9.41 new_esEs12([], [], x0) 22.92/9.41 new_esEs27(x0, x1, app(ty_[], x2)) 22.92/9.41 new_lt16(x0, x1, x2) 22.92/9.41 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_compare18(x0, x1) 22.92/9.41 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.92/9.41 new_compare27(x0, x1, True, x2, x3, x4) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 22.92/9.41 new_primEqInt(Pos(Zero), Neg(Zero)) 22.92/9.41 new_primEqInt(Neg(Zero), Pos(Zero)) 22.92/9.41 new_esEs20(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs20(x0, x1, ty_Ordering) 22.92/9.41 new_primPlusNat1(Zero, x0) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 22.92/9.41 new_primCompAux00(x0, LT) 22.92/9.41 new_ltEs7(x0, x1) 22.92/9.41 new_ltEs21(x0, x1, ty_Ordering) 22.92/9.41 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.92/9.41 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs30(x0, x1, ty_Int) 22.92/9.41 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.92/9.41 new_lt5(x0, x1, ty_Int) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.92/9.41 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.92/9.41 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.92/9.41 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_primCmpNat0(Succ(x0), Succ(x1)) 22.92/9.41 new_lt5(x0, x1, ty_@0) 22.92/9.41 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.92/9.41 new_esEs31(x0, x1, ty_Integer) 22.92/9.41 new_esEs24(x0, x1, ty_Ordering) 22.92/9.41 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 22.92/9.41 new_ltEs19(x0, x1, ty_Integer) 22.92/9.41 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_ltEs13(LT, GT) 22.92/9.41 new_ltEs13(GT, LT) 22.92/9.41 new_compare31(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_ltEs20(x0, x1, ty_Int) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_Integer) 22.92/9.41 new_esEs30(x0, x1, ty_Char) 22.92/9.41 new_compare31(x0, x1, ty_Float) 22.92/9.41 new_esEs31(x0, x1, ty_@0) 22.92/9.41 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.92/9.41 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_ltEs19(x0, x1, ty_@0) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.92/9.41 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_esEs30(x0, x1, ty_Bool) 22.92/9.41 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.92/9.41 new_esEs27(x0, x1, ty_Int) 22.92/9.41 new_esEs11(x0, x1, ty_Float) 22.92/9.41 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.92/9.41 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.92/9.41 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.92/9.41 new_esEs26(x0, x1, ty_Int) 22.92/9.41 new_esEs17(@0, @0) 22.92/9.41 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.92/9.41 new_esEs27(x0, x1, ty_Ordering) 22.92/9.41 new_esEs10(x0, x1, ty_Char) 22.92/9.41 new_compare15(x0, x1, False, x2, x3) 22.92/9.41 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_lt8(x0, x1, x2, x3) 22.92/9.41 new_esEs23(x0, x1, ty_Bool) 22.92/9.41 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_lt4(x0, x1, ty_Float) 22.92/9.41 new_ltEs21(x0, x1, ty_Bool) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.92/9.41 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs11(x0, x1, ty_Double) 22.92/9.41 new_esEs30(x0, x1, ty_@0) 22.92/9.41 new_esEs28(x0, x1, ty_Int) 22.92/9.41 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.92/9.41 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_lt20(x0, x1, ty_Float) 22.92/9.41 new_esEs21(x0, x1, ty_@0) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 22.92/9.41 new_esEs24(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs27(x0, x1, ty_Char) 22.92/9.41 new_esEs10(x0, x1, ty_Ordering) 22.92/9.41 new_esEs29(x0, x1, ty_@0) 22.92/9.41 new_ltEs9(x0, x1) 22.92/9.41 new_ltEs18(x0, x1, ty_Ordering) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.92/9.41 new_compare31(x0, x1, ty_Int) 22.92/9.41 new_lt20(x0, x1, ty_Int) 22.92/9.41 new_esEs22(x0, x1, ty_Int) 22.92/9.41 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_lt14(x0, x1) 22.92/9.41 new_esEs20(x0, x1, ty_Bool) 22.92/9.41 new_compare24(Right(x0), Left(x1), False, x2, x3) 22.92/9.41 new_compare24(Left(x0), Right(x1), False, x2, x3) 22.92/9.41 new_esEs19(False, True) 22.92/9.41 new_esEs19(True, False) 22.92/9.41 new_compare112(x0, x1, False, x2) 22.92/9.41 new_esEs30(x0, x1, ty_Integer) 22.92/9.41 new_esEs28(x0, x1, ty_Char) 22.92/9.41 new_esEs29(x0, x1, ty_Integer) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.92/9.41 new_lt4(x0, x1, ty_Ordering) 22.92/9.41 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_lt4(x0, x1, ty_Int) 22.92/9.41 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_lt20(x0, x1, ty_Char) 22.92/9.41 new_esEs22(x0, x1, ty_Char) 22.92/9.41 new_esEs6(Nothing, Nothing, x0) 22.92/9.41 new_compare11(x0, x1, True, x2, x3) 22.92/9.41 new_primEqNat0(Zero, Succ(x0)) 22.92/9.41 new_ltEs18(x0, x1, ty_Double) 22.92/9.41 new_compare31(x0, x1, ty_Char) 22.92/9.41 new_esEs8(GT, GT) 22.92/9.41 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_compare0([], [], x0) 22.92/9.41 new_esEs32(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs8(LT, EQ) 22.92/9.41 new_esEs8(EQ, LT) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.92/9.41 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_compare27(x0, x1, False, x2, x3, x4) 22.92/9.41 new_esEs10(x0, x1, ty_Int) 22.92/9.41 new_esEs22(x0, x1, ty_Ordering) 22.92/9.41 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.92/9.41 new_esEs24(x0, x1, ty_Double) 22.92/9.41 new_lt4(x0, x1, ty_Char) 22.92/9.41 new_ltEs18(x0, x1, ty_@0) 22.92/9.41 new_lt7(x0, x1) 22.92/9.41 new_esEs8(LT, LT) 22.92/9.41 new_esEs25(x0, x1, ty_Integer) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.92/9.41 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.92/9.41 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.92/9.41 new_lt4(x0, x1, app(ty_[], x2)) 22.92/9.41 new_primPlusNat0(Succ(x0), Zero) 22.92/9.41 new_lt20(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs29(x0, x1, app(ty_[], x2)) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_Char) 22.92/9.41 new_ltEs21(x0, x1, ty_Char) 22.92/9.41 new_ltEs17(True, False) 22.92/9.41 new_ltEs17(False, True) 22.92/9.41 new_lt4(x0, x1, ty_Integer) 22.92/9.41 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_ltEs20(x0, x1, ty_Integer) 22.92/9.41 new_esEs22(x0, x1, ty_Bool) 22.92/9.41 new_lt6(x0, x1, x2) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.92/9.41 new_lt18(x0, x1, x2, x3, x4) 22.92/9.41 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs10(x0, x1, ty_Bool) 22.92/9.41 new_asAs(False, x0) 22.92/9.41 new_esEs28(x0, x1, ty_Ordering) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.92/9.41 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs22(x0, x1, ty_Integer) 22.92/9.41 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.92/9.41 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs12([], :(x0, x1), x2) 22.92/9.41 new_pePe(False, x0) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_@0) 22.92/9.41 new_esEs12(:(x0, x1), :(x2, x3), x4) 22.92/9.41 new_sr0(x0, x1) 22.92/9.41 new_lt13(x0, x1) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.92/9.41 new_esEs27(x0, x1, ty_Integer) 22.92/9.41 new_esEs30(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_ltEs20(x0, x1, ty_Ordering) 22.92/9.41 new_esEs20(x0, x1, ty_Float) 22.92/9.41 new_ltEs11(x0, x1) 22.92/9.41 new_esEs16(Double(x0, x1), Double(x2, x3)) 22.92/9.41 new_esEs24(x0, x1, ty_@0) 22.92/9.41 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_lt19(x0, x1) 22.92/9.41 new_esEs10(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs28(x0, x1, ty_Integer) 22.92/9.41 new_compare10(x0, x1, True, x2, x3) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.92/9.41 new_ltEs21(x0, x1, ty_Int) 22.92/9.41 new_esEs21(x0, x1, ty_Double) 22.92/9.41 new_primMulNat0(Succ(x0), Zero) 22.92/9.41 new_lt20(x0, x1, ty_Bool) 22.92/9.41 new_esEs11(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs11(x0, x1, ty_@0) 22.92/9.41 new_ltEs18(x0, x1, ty_Integer) 22.92/9.41 new_esEs31(x0, x1, ty_Double) 22.92/9.41 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs19(x0, x1, ty_Double) 22.92/9.41 new_esEs26(x0, x1, ty_Integer) 22.92/9.41 new_esEs32(x0, x1, ty_Double) 22.92/9.41 new_ltEs21(x0, x1, app(ty_[], x2)) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 22.92/9.41 new_esEs21(x0, x1, ty_Float) 22.92/9.41 new_esEs32(x0, x1, ty_Ordering) 22.92/9.41 new_compare31(x0, x1, ty_Bool) 22.92/9.41 new_esEs30(x0, x1, ty_Float) 22.92/9.41 new_compare111(x0, x1, False) 22.92/9.41 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_lt20(x0, x1, ty_@0) 22.92/9.41 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs23(x0, x1, ty_Float) 22.92/9.41 new_esEs29(x0, x1, ty_Ordering) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_Ordering) 22.92/9.41 new_primEqNat0(Succ(x0), Succ(x1)) 22.92/9.41 new_ltEs19(x0, x1, ty_Ordering) 22.92/9.41 new_primMulNat0(Zero, Zero) 22.92/9.41 new_compare14(x0, x1, x2) 22.92/9.41 new_esEs24(x0, x1, ty_Integer) 22.92/9.41 new_esEs27(x0, x1, ty_Bool) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) 22.92/9.41 new_compare5(@0, @0) 22.92/9.41 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_Int) 22.92/9.41 new_compare31(x0, x1, ty_@0) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.92/9.41 new_ltEs21(x0, x1, ty_Float) 22.92/9.41 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs10(x0, x1, ty_Integer) 22.92/9.41 new_sr(Integer(x0), Integer(x1)) 22.92/9.41 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_Float) 22.92/9.41 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs29(x0, x1, ty_Int) 22.92/9.41 new_esEs9(Integer(x0), Integer(x1)) 22.92/9.41 new_compare17(x0, x1, x2, x3, x4) 22.92/9.41 new_ltEs12(Left(x0), Right(x1), x2, x3) 22.92/9.41 new_ltEs12(Right(x0), Left(x1), x2, x3) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_Char) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 22.92/9.41 new_compare9(x0, x1, x2, x3) 22.92/9.41 new_esEs32(x0, x1, ty_Int) 22.92/9.41 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_esEs12(:(x0, x1), [], x2) 22.92/9.41 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs28(x0, x1, ty_Bool) 22.92/9.41 new_lt4(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs6(Nothing, Just(x0), x1) 22.92/9.41 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_Double) 22.92/9.41 new_compare15(x0, x1, True, x2, x3) 22.92/9.41 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.92/9.41 new_primMulNat0(Succ(x0), Succ(x1)) 22.92/9.41 new_esEs11(x0, x1, ty_Bool) 22.92/9.41 new_esEs13(Char(x0), Char(x1)) 22.92/9.41 new_esEs10(x0, x1, ty_@0) 22.92/9.41 new_compare28(x0, x1, False) 22.92/9.41 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.92/9.41 new_compare24(Right(x0), Right(x1), False, x2, x3) 22.92/9.41 new_ltEs20(x0, x1, app(ty_[], x2)) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 22.92/9.41 new_compare0(:(x0, x1), :(x2, x3), x4) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 22.92/9.41 new_esEs5(Left(x0), Right(x1), x2, x3) 22.92/9.41 new_esEs5(Right(x0), Left(x1), x2, x3) 22.92/9.41 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_primPlusNat0(Zero, Zero) 22.92/9.41 new_asAs(True, x0) 22.92/9.41 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 22.92/9.41 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_not(True) 22.92/9.41 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs11(x0, x1, ty_Char) 22.92/9.41 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_ltEs4(x0, x1) 22.92/9.41 new_primEqNat0(Succ(x0), Zero) 22.92/9.41 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_primMulNat0(Zero, Succ(x0)) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 22.92/9.41 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 22.92/9.41 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs8(EQ, GT) 22.92/9.41 new_esEs8(GT, EQ) 22.92/9.41 new_ltEs13(EQ, GT) 22.92/9.41 new_ltEs13(GT, EQ) 22.92/9.41 new_lt5(x0, x1, ty_Float) 22.92/9.41 new_esEs28(x0, x1, ty_@0) 22.92/9.41 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs22(x0, x1, ty_@0) 22.92/9.41 new_compare31(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.92/9.41 new_esEs32(x0, x1, ty_Char) 22.92/9.41 new_esEs22(x0, x1, ty_Float) 22.92/9.41 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.92/9.41 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_ltEs19(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs10(x0, x1, ty_Float) 22.92/9.41 new_lt20(x0, x1, ty_Integer) 22.92/9.41 new_esEs23(x0, x1, ty_Integer) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.92/9.41 new_ltEs18(x0, x1, ty_Bool) 22.92/9.41 new_esEs27(x0, x1, ty_@0) 22.92/9.41 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs21(x0, x1, ty_Integer) 22.92/9.41 new_compare30(x0, x1, x2, x3) 22.92/9.41 new_ltEs10(x0, x1) 22.92/9.41 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_ltEs5(Nothing, Nothing, x0) 22.92/9.41 new_esEs31(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.92/9.41 new_compare16(x0, x1, True, x2, x3, x4) 22.92/9.41 new_esEs29(x0, x1, ty_Double) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.92/9.41 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_compare210(x0, x1, True) 22.92/9.41 new_ltEs13(LT, LT) 22.92/9.41 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_compare31(x0, x1, ty_Integer) 22.92/9.41 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.92/9.41 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.92/9.41 new_esEs29(x0, x1, ty_Char) 22.92/9.41 new_esEs27(x0, x1, ty_Float) 22.92/9.41 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 22.92/9.41 new_esEs31(x0, x1, ty_Ordering) 22.92/9.41 new_primCompAux00(x0, GT) 22.92/9.41 new_esEs29(x0, x1, ty_Bool) 22.92/9.41 new_compare25(x0, x1, True, x2, x3) 22.92/9.41 new_esEs11(x0, x1, ty_Int) 22.92/9.41 new_compare28(x0, x1, True) 22.92/9.41 new_esEs19(True, True) 22.92/9.41 new_esEs28(x0, x1, ty_Float) 22.92/9.41 new_primMulInt(Pos(x0), Pos(x1)) 22.92/9.41 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.92/9.41 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.92/9.41 new_primCmpNat0(Succ(x0), Zero) 22.92/9.41 new_compare111(x0, x1, True) 22.92/9.41 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.92/9.41 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.92/9.41 new_esEs32(x0, x1, ty_Bool) 22.92/9.41 new_compare31(x0, x1, ty_Double) 22.92/9.41 new_ltEs21(x0, x1, ty_@0) 22.92/9.41 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.92/9.41 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_esEs20(x0, x1, ty_Integer) 22.92/9.41 new_lt4(x0, x1, ty_Double) 22.92/9.41 new_lt17(x0, x1, x2) 22.92/9.41 new_lt20(x0, x1, ty_Double) 22.92/9.41 new_compare31(x0, x1, app(ty_[], x2)) 22.92/9.41 new_esEs21(x0, x1, ty_Bool) 22.92/9.41 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_compare26(x0, x1, False, x2) 22.92/9.41 new_esEs6(Just(x0), Nothing, x1) 22.92/9.41 new_ltEs20(x0, x1, ty_Double) 22.92/9.41 new_esEs24(x0, x1, ty_Char) 22.92/9.41 new_esEs6(Just(x0), Just(x1), ty_@0) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.92/9.41 new_ltEs19(x0, x1, ty_Bool) 22.92/9.41 new_esEs23(x0, x1, ty_@0) 22.92/9.41 new_lt20(x0, x1, ty_Ordering) 22.92/9.41 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_esEs22(x0, x1, app(ty_[], x2)) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.92/9.41 new_ltEs6(x0, x1, x2) 22.92/9.41 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.92/9.41 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_compare13(x0, x1) 22.92/9.41 new_ltEs13(GT, GT) 22.92/9.41 new_ltEs5(Nothing, Just(x0), x1) 22.92/9.41 new_compare31(x0, x1, ty_Ordering) 22.92/9.41 new_ltEs20(x0, x1, ty_Float) 22.92/9.41 new_compare110(x0, x1, True) 22.92/9.41 new_esEs8(LT, GT) 22.92/9.41 new_esEs8(GT, LT) 22.92/9.41 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs13(EQ, LT) 22.92/9.41 new_ltEs13(LT, EQ) 22.92/9.41 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_compare8(Integer(x0), Integer(x1)) 22.92/9.41 new_primMulInt(Neg(x0), Neg(x1)) 22.92/9.41 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 22.92/9.41 new_primMulInt(Pos(x0), Neg(x1)) 22.92/9.41 new_primMulInt(Neg(x0), Pos(x1)) 22.92/9.41 new_lt15(x0, x1) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.92/9.41 new_compare0(:(x0, x1), [], x2) 22.92/9.41 new_lt12(x0, x1, x2, x3) 22.92/9.41 new_esEs28(x0, x1, ty_Double) 22.92/9.41 new_compare210(x0, x1, False) 22.92/9.41 new_esEs10(x0, x1, ty_Double) 22.92/9.41 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.92/9.41 new_esEs21(x0, x1, ty_Integer) 22.92/9.41 new_lt9(x0, x1) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.92/9.41 new_esEs32(x0, x1, ty_@0) 22.92/9.41 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs18(x0, x1, ty_Int) 22.92/9.41 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.92/9.41 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.92/9.41 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_Bool) 22.92/9.41 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.92/9.41 new_ltEs18(x0, x1, ty_Char) 22.92/9.41 new_lt11(x0, x1) 22.92/9.41 new_esEs32(x0, x1, ty_Integer) 22.92/9.41 new_esEs27(x0, x1, ty_Double) 22.92/9.41 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs31(x0, x1, ty_Bool) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.92/9.41 new_lt10(x0, x1) 22.92/9.41 new_ltEs19(x0, x1, ty_Char) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.92/9.41 new_primEqNat0(Zero, Zero) 22.92/9.41 new_ltEs5(Just(x0), Nothing, x1) 22.92/9.41 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.92/9.41 new_esEs15(Float(x0, x1), Float(x2, x3)) 22.92/9.41 new_esEs24(x0, x1, ty_Float) 22.92/9.41 new_esEs31(x0, x1, ty_Char) 22.92/9.41 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs23(x0, x1, app(ty_[], x2)) 22.92/9.41 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.92/9.41 new_not(False) 22.92/9.41 new_compare25(x0, x1, False, x2, x3) 22.92/9.41 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.92/9.41 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.92/9.41 new_esEs24(x0, x1, ty_Bool) 22.92/9.41 new_esEs11(x0, x1, ty_Integer) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 22.92/9.41 new_ltEs15(x0, x1, x2) 22.92/9.41 new_ltEs17(False, False) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.92/9.41 new_ltEs18(x0, x1, ty_Float) 22.92/9.41 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.92/9.41 new_esEs31(x0, x1, ty_Int) 22.92/9.41 new_ltEs18(x0, x1, app(ty_[], x2)) 22.92/9.41 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.92/9.41 new_esEs20(x0, x1, ty_@0) 22.92/9.41 new_ltEs19(x0, x1, ty_Int) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 22.92/9.41 new_compare24(x0, x1, True, x2, x3) 22.92/9.41 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.92/9.41 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 22.92/9.41 new_primCompAux0(x0, x1, x2, x3) 22.92/9.41 new_esEs28(x0, x1, app(ty_[], x2)) 22.92/9.41 new_compare11(x0, x1, False, x2, x3) 22.92/9.41 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.92/9.41 new_esEs21(x0, x1, ty_Int) 22.92/9.41 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.41 new_lt5(x0, x1, ty_Integer) 22.92/9.41 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.92/9.41 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.92/9.41 new_esEs31(x0, x1, ty_Float) 22.92/9.41 new_compare112(x0, x1, True, x2) 22.92/9.41 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.92/9.41 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_lt5(x0, x1, ty_Ordering) 22.92/9.41 new_ltEs14(x0, x1) 22.92/9.41 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.92/9.41 new_primCmpNat0(Zero, Zero) 22.92/9.41 new_esEs24(x0, x1, ty_Int) 22.92/9.41 new_esEs11(x0, x1, ty_Ordering) 22.92/9.41 new_esEs21(x0, x1, ty_Char) 22.92/9.41 new_primCmpNat0(Zero, Succ(x0)) 22.92/9.41 new_primPlusNat0(Succ(x0), Succ(x1)) 22.92/9.41 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.92/9.41 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.41 new_ltEs5(Just(x0), Just(x1), ty_Float) 22.92/9.41 22.92/9.41 We have to consider all minimal (P,Q,R)-chains. 22.92/9.41 ---------------------------------------- 22.92/9.41 22.92/9.41 (24) QDPSizeChangeProof (EQUIVALENT) 22.92/9.41 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. 22.92/9.41 22.92/9.41 From the DPs we obtained the following set of size-change graphs: 22.92/9.41 *new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw32, Right(vyw33), bf, bg, bh) 22.92/9.41 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.41 22.92/9.41 22.92/9.41 *new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM22(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Right(vyw300), new_esEs31(vyw40, vyw300, be), bd, be), LT), bc, bd, be) 22.92/9.41 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 22.92/9.41 22.92/9.41 22.92/9.41 *new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Left(vyw300), False, bd, be), LT), bc, bd, be) 22.92/9.41 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 22.92/9.41 22.92/9.41 22.92/9.41 *new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare24(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) 22.92/9.41 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 22.92/9.41 22.92/9.41 22.92/9.41 *new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw31, Right(vyw33), bf, bg, bh) 22.92/9.41 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.41 22.92/9.41 22.92/9.41 *new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Right(vyw40), Left(vyw300), False, bd, be), GT), bc, bd, be) 22.92/9.41 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 22.92/9.41 22.92/9.41 22.92/9.41 *new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Right(vyw40), bc, bd, be) 22.92/9.41 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.41 22.92/9.41 22.92/9.41 *new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Right(vyw40), bc, bd, be) 22.92/9.41 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.41 22.92/9.41 22.92/9.41 ---------------------------------------- 22.92/9.41 22.92/9.41 (25) 22.92/9.41 YES 22.92/9.41 22.92/9.41 ---------------------------------------- 22.92/9.41 22.92/9.41 (26) 22.92/9.41 Obligation: 22.92/9.41 Q DP problem: 22.92/9.41 The TRS P consists of the following rules: 22.92/9.41 22.92/9.41 new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Left(vyw300), new_esEs30(vyw40, vyw300, bd), bd, be), LT), bc, bd, be) 22.92/9.41 new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare24(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) 22.92/9.41 new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw17, Left(vyw18), h, ba, bb) 22.92/9.41 new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Right(vyw300), False, bd, be), LT), bc, bd, be) 22.92/9.41 new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Left(vyw40), bc, bd, be) 22.92/9.41 new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Right(vyw300), False, bd, be), GT), bc, bd, be) 22.92/9.41 new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Left(vyw40), bc, bd, be) 22.92/9.41 new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw16, Left(vyw18), h, ba, bb) 22.92/9.41 22.92/9.41 The TRS R consists of the following rules: 22.92/9.41 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.92/9.41 new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT 22.92/9.41 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.92/9.41 new_esEs29(vyw18, vyw13, app(ty_[], eb)) -> new_esEs12(vyw18, vyw13, eb) 22.92/9.41 new_primPlusNat0(Zero, Zero) -> Zero 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, db), dc), dd)) -> new_ltEs16(vyw43000, vyw44000, db, dc, dd) 22.92/9.41 new_compare17(vyw43000, vyw44000, cde, cdf, cdg) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, cde, cdf, cdg), cde, cdf, cdg) 22.92/9.41 new_pePe(True, vyw137) -> True 22.92/9.41 new_esEs23(vyw401, vyw3001, app(ty_Maybe, cfb)) -> new_esEs6(vyw401, vyw3001, cfb) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Ordering, daf) -> new_esEs8(vyw400, vyw3000) 22.92/9.41 new_esEs30(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs13(vyw40, vyw300) 22.92/9.41 new_esEs20(vyw402, vyw3002, app(ty_[], bha)) -> new_esEs12(vyw402, vyw3002, bha) 22.92/9.41 new_esEs21(vyw401, vyw3001, app(ty_Ratio, cae)) -> new_esEs18(vyw401, vyw3001, cae) 22.92/9.41 new_lt17(vyw43000, vyw44000, dac) -> new_esEs8(new_compare19(vyw43000, vyw44000, dac), LT) 22.92/9.41 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs7(vyw401, vyw3001, bhh, caa, cab) 22.92/9.41 new_esEs19(False, True) -> False 22.92/9.41 new_esEs19(True, False) -> False 22.92/9.41 new_compare112(vyw43000, vyw44000, True, ccb) -> LT 22.92/9.41 new_compare31(vyw43000, vyw44000, ty_Char) -> new_compare29(vyw43000, vyw44000) 22.92/9.41 new_esEs30(vyw40, vyw300, app(app(ty_@2, ceb), cec)) -> new_esEs4(vyw40, vyw300, ceb, cec) 22.92/9.41 new_ltEs7(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare29(vyw4300, vyw4400), GT)) 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.92/9.41 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.92/9.41 new_esEs27(vyw43000, vyw44000, app(app(ty_Either, dde), ddf)) -> new_esEs5(vyw43000, vyw44000, dde, ddf) 22.92/9.41 new_esEs12(:(vyw400, vyw401), [], dgd) -> False 22.92/9.41 new_esEs12([], :(vyw3000, vyw3001), dgd) -> False 22.92/9.41 new_lt5(vyw43000, vyw44000, app(ty_[], hh)) -> new_lt6(vyw43000, vyw44000, hh) 22.92/9.41 new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) 22.92/9.41 new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT 22.92/9.41 new_lt12(vyw43000, vyw44000, dde, ddf) -> new_esEs8(new_compare30(vyw43000, vyw44000, dde, ddf), LT) 22.92/9.41 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.92/9.41 new_esEs24(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.41 new_esEs11(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.92/9.41 new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cg)) -> new_ltEs5(vyw43000, vyw44000, cg) 22.92/9.41 new_ltEs12(Left(vyw43000), Right(vyw44000), bce, bbc) -> True 22.92/9.41 new_compare31(vyw43000, vyw44000, ty_Bool) -> new_compare13(vyw43000, vyw44000) 22.92/9.41 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 22.92/9.41 new_ltEs13(GT, GT) -> True 22.92/9.41 new_compare14(vyw43000, vyw44000, ccb) -> new_compare26(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ccb), ccb) 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_Either, daa), dab)) -> new_esEs5(vyw400, vyw3000, daa, dab) 22.92/9.41 new_esEs11(vyw43000, vyw44000, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs7(vyw43000, vyw44000, bag, bah, bba) 22.92/9.41 new_lt7(vyw43000, vyw44000) -> new_esEs8(new_compare29(vyw43000, vyw44000), LT) 22.92/9.41 new_compare24(Right(vyw4300), Right(vyw4400), False, bdh, bea) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, bea), bdh, bea) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.92/9.41 new_esEs23(vyw401, vyw3001, app(app(ty_Either, cfd), cfe)) -> new_esEs5(vyw401, vyw3001, cfd, cfe) 22.92/9.41 new_esEs8(GT, GT) -> True 22.92/9.41 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 22.92/9.41 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 22.92/9.41 new_ltEs13(EQ, GT) -> True 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.92/9.41 new_esEs31(vyw40, vyw300, app(app(app(ty_@3, cce), ccf), ccg)) -> new_esEs7(vyw40, vyw300, cce, ccf, ccg) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, app(ty_[], eg)) -> new_ltEs6(vyw4300, vyw4400, eg) 22.92/9.41 new_esEs24(vyw400, vyw3000, app(app(ty_@2, cff), cfg)) -> new_esEs4(vyw400, vyw3000, cff, cfg) 22.92/9.41 new_esEs27(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.92/9.41 new_ltEs13(EQ, EQ) -> True 22.92/9.41 new_esEs8(EQ, EQ) -> True 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Maybe, dbe), daf) -> new_esEs6(vyw400, vyw3000, dbe) 22.92/9.41 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs7(vyw43001, vyw44001) 22.92/9.41 new_lt5(vyw43000, vyw44000, app(app(ty_Either, bac), bad)) -> new_lt12(vyw43000, vyw44000, bac, bad) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(ty_@2, dcb), dcc)) -> new_esEs4(vyw400, vyw3000, dcb, dcc) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 22.92/9.41 new_ltEs16(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), eh, fa, fb) -> new_pePe(new_lt5(vyw43000, vyw44000, eh), new_asAs(new_esEs11(vyw43000, vyw44000, eh), new_pePe(new_lt4(vyw43001, vyw44001, fa), new_asAs(new_esEs10(vyw43001, vyw44001, fa), new_ltEs18(vyw43002, vyw44002, fb))))) 22.92/9.41 new_compare9(vyw43000, vyw44000, bfg, bfh) -> new_compare25(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, bfg, bfh), bfg, bfh) 22.92/9.41 new_ltEs6(vyw4300, vyw4400, eg) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, eg), GT)) 22.92/9.41 new_not(True) -> False 22.92/9.41 new_lt8(vyw43000, vyw44000, bfg, bfh) -> new_esEs8(new_compare9(vyw43000, vyw44000, bfg, bfh), LT) 22.92/9.41 new_primCompAux00(vyw143, LT) -> LT 22.92/9.41 new_esEs10(vyw43001, vyw44001, app(ty_Ratio, hd)) -> new_esEs18(vyw43001, vyw44001, hd) 22.92/9.41 new_primCmpNat0(Zero, Zero) -> EQ 22.92/9.41 new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_Ordering) -> new_ltEs13(vyw43002, vyw44002) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.41 new_esEs27(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_@2, cc), cd)) -> new_ltEs8(vyw43000, vyw44000, cc, cd) 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.92/9.41 new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs14(vyw33, vyw28) 22.92/9.41 new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) 22.92/9.41 new_lt4(vyw43001, vyw44001, app(app(ty_Either, ha), hb)) -> new_lt12(vyw43001, vyw44001, ha, hb) 22.92/9.41 new_esEs11(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_@0, bbc) -> new_ltEs4(vyw43000, vyw44000) 22.92/9.41 new_esEs10(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_@0) -> new_ltEs4(vyw43002, vyw44002) 22.92/9.41 new_esEs10(vyw43001, vyw44001, app(app(app(ty_@3, he), hf), hg)) -> new_esEs7(vyw43001, vyw44001, he, hf, hg) 22.92/9.41 new_esEs11(vyw43000, vyw44000, app(ty_Ratio, baf)) -> new_esEs18(vyw43000, vyw44000, baf) 22.92/9.41 new_esEs28(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.41 new_esEs27(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.92/9.41 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.41 new_primEqNat0(Succ(vyw4000), Zero) -> False 22.92/9.41 new_primEqNat0(Zero, Succ(vyw30000)) -> False 22.92/9.41 new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.41 new_esEs25(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.92/9.41 new_compare10(vyw121, vyw122, True, cdh, cea) -> LT 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bbd), bbe), bbc) -> new_ltEs8(vyw43000, vyw44000, bbd, bbe) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs14(vyw40, vyw300) 22.92/9.41 new_primCompAux00(vyw143, GT) -> GT 22.92/9.41 new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.92/9.41 new_compare110(vyw43000, vyw44000, True) -> LT 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Maybe, bbh), bbc) -> new_ltEs5(vyw43000, vyw44000, bbh) 22.92/9.41 new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.92/9.41 new_compare15(vyw43000, vyw44000, True, bfg, bfh) -> LT 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) 22.92/9.41 new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT 22.92/9.41 new_esEs19(False, False) -> True 22.92/9.41 new_esEs28(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.41 new_esEs28(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.41 new_lt6(vyw43000, vyw44000, dfa) -> new_esEs8(new_compare0(vyw43000, vyw44000, dfa), LT) 22.92/9.41 new_esEs20(vyw402, vyw3002, app(app(ty_@2, bgd), bge)) -> new_esEs4(vyw402, vyw3002, bgd, bge) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_Maybe, bdc)) -> new_ltEs5(vyw43000, vyw44000, bdc) 22.92/9.41 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.41 new_esEs10(vyw43001, vyw44001, app(ty_[], gf)) -> new_esEs12(vyw43001, vyw44001, gf) 22.92/9.41 new_lt16(vyw43000, vyw44000, ccb) -> new_esEs8(new_compare14(vyw43000, vyw44000, ccb), LT) 22.92/9.41 new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs15(vyw18, vyw13) 22.92/9.41 new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs13(vyw18, vyw13) 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.92/9.41 new_primCompAux0(vyw43000, vyw44000, vyw139, eg) -> new_primCompAux00(vyw139, new_compare31(vyw43000, vyw44000, eg)) 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.41 new_primCmpNat0(Zero, Succ(vyw440000)) -> LT 22.92/9.41 new_esEs22(vyw400, vyw3000, app(ty_Ratio, cbg)) -> new_esEs18(vyw400, vyw3000, cbg) 22.92/9.41 new_esEs7(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bga, bgb, bgc) -> new_asAs(new_esEs22(vyw400, vyw3000, bga), new_asAs(new_esEs21(vyw401, vyw3001, bgb), new_esEs20(vyw402, vyw3002, bgc))) 22.92/9.41 new_ltEs13(LT, GT) -> True 22.92/9.41 new_compare31(vyw43000, vyw44000, ty_@0) -> new_compare5(vyw43000, vyw44000) 22.92/9.41 new_compare210(vyw43000, vyw44000, True) -> EQ 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.41 new_esEs32(vyw33, vyw28, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs7(vyw33, vyw28, eaa, eab, eac) 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs14(vyw43001, vyw44001) 22.92/9.41 new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) 22.92/9.41 new_primCmpNat0(Succ(vyw430000), Zero) -> GT 22.92/9.41 new_esEs30(vyw40, vyw300, ty_Float) -> new_esEs15(vyw40, vyw300) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Char, daf) -> new_esEs13(vyw400, vyw3000) 22.92/9.41 new_pePe(False, vyw137) -> vyw137 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Char, bbc) -> new_ltEs7(vyw43000, vyw44000) 22.92/9.41 new_esEs17(@0, @0) -> True 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.41 new_compare25(vyw43000, vyw44000, True, bfg, bfh) -> EQ 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, ddh), dea)) -> new_ltEs8(vyw43001, vyw44001, ddh, dea) 22.92/9.41 new_compare31(vyw43000, vyw44000, app(ty_Maybe, dfg)) -> new_compare14(vyw43000, vyw44000, dfg) 22.92/9.41 new_ltEs14(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Ratio, bca), bbc) -> new_ltEs15(vyw43000, vyw44000, bca) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_Bool) -> new_ltEs17(vyw43002, vyw44002) 22.92/9.41 new_lt4(vyw43001, vyw44001, ty_Ordering) -> new_lt13(vyw43001, vyw44001) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.41 new_esEs30(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 22.92/9.41 new_esEs8(LT, EQ) -> False 22.92/9.41 new_esEs8(EQ, LT) -> False 22.92/9.41 new_compare11(vyw128, vyw129, False, dad, dae) -> GT 22.92/9.41 new_esEs22(vyw400, vyw3000, app(ty_Maybe, cbf)) -> new_esEs6(vyw400, vyw3000, cbf) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_@2, dag), dah), daf) -> new_esEs4(vyw400, vyw3000, dag, dah) 22.92/9.41 new_esEs21(vyw401, vyw3001, app(app(ty_@2, bhf), bhg)) -> new_esEs4(vyw401, vyw3001, bhf, bhg) 22.92/9.41 new_esEs32(vyw33, vyw28, app(ty_Maybe, eae)) -> new_esEs6(vyw33, vyw28, eae) 22.92/9.41 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 22.92/9.41 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 22.92/9.41 new_compare31(vyw43000, vyw44000, ty_Double) -> new_compare12(vyw43000, vyw44000) 22.92/9.41 new_esEs24(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.41 new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs17(vyw18, vyw13) 22.92/9.41 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.92/9.41 new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_Float) -> new_ltEs10(vyw43002, vyw44002) 22.92/9.41 new_compare28(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs13(vyw43000, vyw44000)) 22.92/9.41 new_esEs11(vyw43000, vyw44000, app(ty_[], hh)) -> new_esEs12(vyw43000, vyw44000, hh) 22.92/9.41 new_compare31(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_Either, bbf), bbg), bbc) -> new_ltEs12(vyw43000, vyw44000, bbf, bbg) 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.41 new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs16(vyw18, vyw13) 22.92/9.41 new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare12(vyw4300, vyw4400), GT)) 22.92/9.41 new_esEs24(vyw400, vyw3000, app(ty_Ratio, cge)) -> new_esEs18(vyw400, vyw3000, cge) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, app(app(ty_Either, fg), fh)) -> new_ltEs12(vyw43002, vyw44002, fg, fh) 22.92/9.41 new_esEs10(vyw43001, vyw44001, ty_Int) -> new_esEs14(vyw43001, vyw44001) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Ordering, bbc) -> new_ltEs13(vyw43000, vyw44000) 22.92/9.41 new_esEs24(vyw400, vyw3000, app(app(ty_Either, cgf), cgg)) -> new_esEs5(vyw400, vyw3000, cgf, cgg) 22.92/9.41 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) 22.92/9.41 new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT 22.92/9.41 new_ltEs5(Just(vyw43000), Nothing, ca) -> False 22.92/9.41 new_ltEs5(Nothing, Nothing, ca) -> True 22.92/9.41 new_ltEs18(vyw43002, vyw44002, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs16(vyw43002, vyw44002, gc, gd, ge) 22.92/9.41 new_esEs30(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 22.92/9.41 new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs16(vyw33, vyw28) 22.92/9.41 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Int, daf) -> new_esEs14(vyw400, vyw3000) 22.92/9.41 new_lt20(vyw43000, vyw44000, app(app(ty_@2, bfg), bfh)) -> new_lt8(vyw43000, vyw44000, bfg, bfh) 22.92/9.41 new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 22.92/9.41 new_esEs32(vyw33, vyw28, app(app(ty_Either, eag), eah)) -> new_esEs5(vyw33, vyw28, eag, eah) 22.92/9.41 new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs7(vyw400, vyw3000, cbb, cbc, cbd) 22.92/9.41 new_esEs24(vyw400, vyw3000, app(ty_Maybe, cgd)) -> new_esEs6(vyw400, vyw3000, cgd) 22.92/9.41 new_esEs30(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 22.92/9.41 new_lt5(vyw43000, vyw44000, app(app(ty_@2, baa), bab)) -> new_lt8(vyw43000, vyw44000, baa, bab) 22.92/9.41 new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) 22.92/9.41 new_lt13(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) 22.92/9.41 new_esEs10(vyw43001, vyw44001, app(app(ty_@2, gg), gh)) -> new_esEs4(vyw43001, vyw44001, gg, gh) 22.92/9.41 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 22.92/9.41 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_Ratio, dda)) -> new_esEs18(vyw400, vyw3000, dda) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(ty_@2, bcg), bch)) -> new_ltEs8(vyw43000, vyw44000, bcg, bch) 22.92/9.41 new_esEs23(vyw401, vyw3001, app(ty_[], cfa)) -> new_esEs12(vyw401, vyw3001, cfa) 22.92/9.41 new_esEs24(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.41 new_esEs11(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.92/9.41 new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs19(vyw18, vyw13) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), ty_Integer, daf) -> new_esEs9(vyw400, vyw3000) 22.92/9.41 new_esEs10(vyw43001, vyw44001, ty_@0) -> new_esEs17(vyw43001, vyw44001) 22.92/9.41 new_compare13(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs19(vyw43000, vyw44000)) 22.92/9.41 new_compare26(vyw43000, vyw44000, True, ccb) -> EQ 22.92/9.41 new_primPlusNat1(Succ(vyw1380), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw1380, vyw300000))) 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_Either, dbg), dbh), daf) -> new_esEs5(vyw400, vyw3000, dbg, dbh) 22.92/9.41 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.41 new_primPlusNat0(Succ(vyw13800), Zero) -> Succ(vyw13800) 22.92/9.41 new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 22.92/9.41 new_compare27(vyw43000, vyw44000, True, cde, cdf, cdg) -> EQ 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_Maybe, dch)) -> new_esEs6(vyw400, vyw3000, dch) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs7(vyw400, vyw3000, dcd, dce, dcf) 22.92/9.41 new_esEs21(vyw401, vyw3001, app(app(ty_Either, caf), cag)) -> new_esEs5(vyw401, vyw3001, caf, cag) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.92/9.41 new_esEs24(vyw400, vyw3000, app(ty_[], cgc)) -> new_esEs12(vyw400, vyw3000, cgc) 22.92/9.41 new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) 22.92/9.41 new_esEs11(vyw43000, vyw44000, app(app(ty_@2, baa), bab)) -> new_esEs4(vyw43000, vyw44000, baa, bab) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_Integer) -> new_ltEs14(vyw43002, vyw44002) 22.92/9.41 new_esEs8(LT, LT) -> True 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, chc), chd), che)) -> new_esEs7(vyw400, vyw3000, chc, chd, che) 22.92/9.41 new_compare111(vyw43000, vyw44000, True) -> LT 22.92/9.41 new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) 22.92/9.41 new_esEs24(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.41 new_ltEs13(GT, LT) -> False 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Double, bbc) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Integer, bbc) -> new_ltEs14(vyw43000, vyw44000) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, def), deg), deh)) -> new_ltEs16(vyw43001, vyw44001, def, deg, deh) 22.92/9.41 new_compare27(vyw43000, vyw44000, False, cde, cdf, cdg) -> new_compare16(vyw43000, vyw44000, new_ltEs16(vyw43000, vyw44000, cde, cdf, cdg), cde, cdf, cdg) 22.92/9.41 new_esEs10(vyw43001, vyw44001, ty_Float) -> new_esEs15(vyw43001, vyw44001) 22.92/9.41 new_esEs24(vyw400, vyw3000, app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs7(vyw400, vyw3000, cfh, cga, cgb) 22.92/9.41 new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs17(vyw33, vyw28) 22.92/9.41 new_esEs27(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.92/9.41 new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs19(vyw33, vyw28) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs17(vyw43001, vyw44001) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, beb), bec)) -> new_ltEs8(vyw4300, vyw4400, beb, bec) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.41 new_compare31(vyw43000, vyw44000, app(ty_Ratio, dfh)) -> new_compare19(vyw43000, vyw44000, dfh) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.92/9.41 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Float, bbc) -> new_ltEs10(vyw43000, vyw44000) 22.92/9.41 new_esEs11(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_@2, cha), chb)) -> new_esEs4(vyw400, vyw3000, cha, chb) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs17(vyw40, vyw300) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs19(vyw40, vyw300) 22.92/9.41 new_esEs23(vyw401, vyw3001, app(app(app(ty_@3, cef), ceg), ceh)) -> new_esEs7(vyw401, vyw3001, cef, ceg, ceh) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, bfd), bfe), bff)) -> new_ltEs16(vyw4300, vyw4400, bfd, bfe, bff) 22.92/9.41 new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 22.92/9.41 new_lt4(vyw43001, vyw44001, app(ty_Ratio, hd)) -> new_lt17(vyw43001, vyw44001, hd) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, bef), beg)) -> new_ltEs8(vyw4300, vyw4400, bef, beg) 22.92/9.41 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.41 new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs15(vyw33, vyw28) 22.92/9.41 new_lt5(vyw43000, vyw44000, app(ty_Ratio, baf)) -> new_lt17(vyw43000, vyw44000, baf) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.92/9.41 new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) 22.92/9.41 new_lt4(vyw43001, vyw44001, app(app(ty_@2, gg), gh)) -> new_lt8(vyw43001, vyw44001, gg, gh) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.92/9.41 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.41 new_esEs11(vyw43000, vyw44000, app(app(ty_Either, bac), bad)) -> new_esEs5(vyw43000, vyw44000, bac, bad) 22.92/9.41 new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs19(vyw402, vyw3002) 22.92/9.41 new_esEs25(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Maybe, chg)) -> new_esEs6(vyw400, vyw3000, chg) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.41 new_ltEs13(GT, EQ) -> False 22.92/9.41 new_esEs6(Nothing, Just(vyw3000), cgh) -> False 22.92/9.41 new_esEs6(Just(vyw400), Nothing, cgh) -> False 22.92/9.41 new_lt20(vyw43000, vyw44000, app(ty_Ratio, dac)) -> new_lt17(vyw43000, vyw44000, dac) 22.92/9.41 new_esEs6(Nothing, Nothing, cgh) -> True 22.92/9.41 new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs17(vyw402, vyw3002) 22.92/9.41 new_esEs22(vyw400, vyw3000, app(app(ty_Either, cbh), cca)) -> new_esEs5(vyw400, vyw3000, cbh, cca) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs16(vyw40, vyw300) 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.92/9.41 new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) 22.92/9.41 new_ltEs5(Nothing, Just(vyw44000), ca) -> True 22.92/9.41 new_esEs11(vyw43000, vyw44000, app(ty_Maybe, bae)) -> new_esEs6(vyw43000, vyw44000, bae) 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.92/9.41 new_esEs23(vyw401, vyw3001, app(app(ty_@2, ced), cee)) -> new_esEs4(vyw401, vyw3001, ced, cee) 22.92/9.41 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Bool, bbc) -> new_ltEs17(vyw43000, vyw44000) 22.92/9.41 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.41 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.41 new_compare8(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(ty_Either, bda), bdb)) -> new_ltEs12(vyw43000, vyw44000, bda, bdb) 22.92/9.41 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.41 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.41 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.92/9.41 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_[], bcf)) -> new_ltEs6(vyw43000, vyw44000, bcf) 22.92/9.41 new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.41 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Int, bbc) -> new_ltEs9(vyw43000, vyw44000) 22.92/9.41 new_compare28(vyw43000, vyw44000, True) -> EQ 22.92/9.41 new_ltEs12(Right(vyw43000), Left(vyw44000), bce, bbc) -> False 22.92/9.41 new_esEs22(vyw400, vyw3000, app(app(ty_@2, cah), cba)) -> new_esEs4(vyw400, vyw3000, cah, cba) 22.92/9.41 new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) 22.92/9.41 new_esEs31(vyw40, vyw300, app(ty_Maybe, cda)) -> new_esEs6(vyw40, vyw300, cda) 22.92/9.41 new_compare24(Right(vyw4300), Left(vyw4400), False, bdh, bea) -> GT 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.92/9.41 new_compare5(@0, @0) -> EQ 22.92/9.41 new_compare31(vyw43000, vyw44000, app(ty_[], dfb)) -> new_compare0(vyw43000, vyw44000, dfb) 22.92/9.41 new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.41 new_compare25(vyw43000, vyw44000, False, bfg, bfh) -> new_compare15(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000, bfg, bfh), bfg, bfh) 22.92/9.41 new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.92/9.41 new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.92/9.41 new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare13(vyw43000, vyw44000), LT) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.41 new_esEs10(vyw43001, vyw44001, app(app(ty_Either, ha), hb)) -> new_esEs5(vyw43001, vyw44001, ha, hb) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs16(vyw4300, vyw4400, eh, fa, fb) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.92/9.41 new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt18(vyw43000, vyw44000, cde, cdf, cdg) 22.92/9.41 new_esEs23(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.92/9.41 new_esEs28(vyw400, vyw3000, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs7(vyw400, vyw3000, dgg, dgh, dha) 22.92/9.41 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.92/9.41 new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, ca)) -> new_ltEs5(vyw4300, vyw4400, ca) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, deb), dec)) -> new_ltEs12(vyw43001, vyw44001, deb, dec) 22.92/9.41 new_compare0([], :(vyw44000, vyw44001), eg) -> LT 22.92/9.41 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_[], dbd), daf) -> new_esEs12(vyw400, vyw3000, dbd) 22.92/9.41 new_asAs(True, vyw116) -> vyw116 22.92/9.41 new_esEs21(vyw401, vyw3001, app(ty_Maybe, cad)) -> new_esEs6(vyw401, vyw3001, cad) 22.92/9.41 new_compare10(vyw121, vyw122, False, cdh, cea) -> GT 22.92/9.41 new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, app(app(ty_@2, fd), ff)) -> new_ltEs8(vyw43002, vyw44002, fd, ff) 22.92/9.41 new_esEs6(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.41 new_esEs23(vyw401, vyw3001, app(ty_Ratio, cfc)) -> new_esEs18(vyw401, vyw3001, cfc) 22.92/9.41 new_esEs10(vyw43001, vyw44001, app(ty_Maybe, hc)) -> new_esEs6(vyw43001, vyw44001, hc) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs10(vyw43001, vyw44001) 22.92/9.41 new_lt5(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.92/9.41 new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, bfb)) -> new_ltEs5(vyw4300, vyw4400, bfb) 22.92/9.41 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.92/9.41 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(ty_[], dcg)) -> new_esEs12(vyw400, vyw3000, dcg) 22.92/9.41 new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs13(vyw43001, vyw44001) 22.92/9.41 new_esEs10(vyw43001, vyw44001, ty_Integer) -> new_esEs9(vyw43001, vyw44001) 22.92/9.41 new_ltEs18(vyw43002, vyw44002, ty_Char) -> new_ltEs7(vyw43002, vyw44002) 22.92/9.41 new_compare24(vyw430, vyw440, True, bdh, bea) -> EQ 22.92/9.41 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.92/9.42 new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) 22.92/9.42 new_esEs29(vyw18, vyw13, app(app(ty_Either, ee), ef)) -> new_esEs5(vyw18, vyw13, ee, ef) 22.92/9.42 new_compare110(vyw43000, vyw44000, False) -> GT 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_primCompAux00(vyw143, EQ) -> vyw143 22.92/9.42 new_compare0([], [], eg) -> EQ 22.92/9.42 new_lt20(vyw43000, vyw44000, app(app(ty_Either, dde), ddf)) -> new_lt12(vyw43000, vyw44000, dde, ddf) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_primMulNat0(Zero, Zero) -> Zero 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Bool) -> new_esEs19(vyw43001, vyw44001) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.92/9.42 new_compare111(vyw43000, vyw44000, False) -> GT 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Ratio, da)) -> new_ltEs15(vyw43000, vyw44000, da) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_[], chf)) -> new_esEs12(vyw400, vyw3000, chf) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(app(ty_Either, bhd), bhe)) -> new_esEs5(vyw402, vyw3002, bhd, bhe) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Char) -> new_lt7(vyw43001, vyw44001) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Ratio, chh)) -> new_esEs18(vyw400, vyw3000, chh) 22.92/9.42 new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs9(vyw18, vyw13) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dca, app(app(ty_Either, ddb), ddc)) -> new_esEs5(vyw400, vyw3000, ddb, ddc) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(ty_Ratio, dac)) -> new_esEs18(vyw43000, vyw44000, dac) 22.92/9.42 new_esEs9(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(ty_Ratio, dhd)) -> new_esEs18(vyw400, vyw3000, dhd) 22.92/9.42 new_ltEs13(EQ, LT) -> False 22.92/9.42 new_compare31(vyw43000, vyw44000, app(app(app(ty_@3, dga), dgb), dgc)) -> new_compare17(vyw43000, vyw44000, dga, dgb, dgc) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, bce), bbc)) -> new_ltEs12(vyw4300, vyw4400, bce, bbc) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_[], cb)) -> new_ltEs6(vyw43000, vyw44000, cb) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Double) -> new_esEs16(vyw43001, vyw44001) 22.92/9.42 new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) 22.92/9.42 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.92/9.42 new_esEs18(:%(vyw400, vyw401), :%(vyw3000, vyw3001), ddd) -> new_asAs(new_esEs26(vyw400, vyw3000, ddd), new_esEs25(vyw401, vyw3001, ddd)) 22.92/9.42 new_ltEs17(False, False) -> True 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, bcb), bcc), bcd), bbc) -> new_ltEs16(vyw43000, vyw44000, bcb, bcc, bcd) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.92/9.42 new_esEs22(vyw400, vyw3000, app(ty_[], cbe)) -> new_esEs12(vyw400, vyw3000, cbe) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.92/9.42 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, beh), bfa)) -> new_ltEs12(vyw4300, vyw4400, beh, bfa) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(ty_[], dfa)) -> new_esEs12(vyw43000, vyw44000, dfa) 22.92/9.42 new_esEs14(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 22.92/9.42 new_compare26(vyw43000, vyw44000, False, ccb) -> new_compare112(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000, ccb), ccb) 22.92/9.42 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Ordering) -> new_compare18(vyw43000, vyw44000) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(ty_Maybe, ga)) -> new_ltEs5(vyw43002, vyw44002, ga) 22.92/9.42 new_esEs32(vyw33, vyw28, app(app(ty_@2, dhg), dhh)) -> new_esEs4(vyw33, vyw28, dhg, dhh) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(ty_[], fc)) -> new_ltEs6(vyw43002, vyw44002, fc) 22.92/9.42 new_compare24(Left(vyw4300), Right(vyw4400), False, bdh, bea) -> LT 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(ty_Maybe, bhb)) -> new_esEs6(vyw402, vyw3002, bhb) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_[], bbb), bbc) -> new_ltEs6(vyw43000, vyw44000, bbb) 22.92/9.42 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 22.92/9.42 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) 22.92/9.42 new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) 22.92/9.42 new_esEs31(vyw40, vyw300, app(app(ty_Either, cdc), cdd)) -> new_esEs5(vyw40, vyw300, cdc, cdd) 22.92/9.42 new_esEs12(:(vyw400, vyw401), :(vyw3000, vyw3001), dgd) -> new_asAs(new_esEs28(vyw400, vyw3000, dgd), new_esEs12(vyw401, vyw3001, dgd)) 22.92/9.42 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.92/9.42 new_ltEs17(True, False) -> False 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.92/9.42 new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs14(vyw18, vyw13) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Float, daf) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs14(vyw402, vyw3002) 22.92/9.42 new_esEs30(vyw40, vyw300, app(ty_Maybe, cgh)) -> new_esEs6(vyw40, vyw300, cgh) 22.92/9.42 new_ltEs17(False, True) -> True 22.92/9.42 new_esEs13(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 22.92/9.42 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.42 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.42 new_compare30(vyw43000, vyw44000, dde, ddf) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, dde, ddf), dde, ddf) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.92/9.42 new_compare24(Left(vyw4300), Left(vyw4400), False, bdh, bea) -> new_compare10(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, bdh), bdh, bea) 22.92/9.42 new_esEs29(vyw18, vyw13, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs7(vyw18, vyw13, dg, dh, ea) 22.92/9.42 new_esEs31(vyw40, vyw300, app(app(ty_@2, ccc), ccd)) -> new_esEs4(vyw40, vyw300, ccc, ccd) 22.92/9.42 new_not(False) -> True 22.92/9.42 new_esEs21(vyw401, vyw3001, app(ty_[], cac)) -> new_esEs12(vyw401, vyw3001, cac) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(ty_[], dhb)) -> new_esEs12(vyw400, vyw3000, dhb) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Double, daf) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_esEs30(vyw40, vyw300, app(ty_Ratio, ddd)) -> new_esEs18(vyw40, vyw300, ddd) 22.92/9.42 new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs7(vyw402, vyw3002, bgf, bgg, bgh) 22.92/9.42 new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) 22.92/9.42 new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare12(vyw43000, vyw44000), LT) 22.92/9.42 new_compare0(:(vyw43000, vyw43001), [], eg) -> GT 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(app(app(ty_@3, bde), bdf), bdg)) -> new_ltEs16(vyw43000, vyw44000, bde, bdf, bdg) 22.92/9.42 new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs9(vyw33, vyw28) 22.92/9.42 new_esEs8(LT, GT) -> False 22.92/9.42 new_esEs8(GT, LT) -> False 22.92/9.42 new_esEs30(vyw40, vyw300, ty_Char) -> new_esEs13(vyw40, vyw300) 22.92/9.42 new_primPlusNat0(Succ(vyw13800), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw13800, vyw3000000))) 22.92/9.42 new_ltEs13(LT, LT) -> True 22.92/9.42 new_esEs20(vyw402, vyw3002, app(ty_Ratio, bhc)) -> new_esEs18(vyw402, vyw3002, bhc) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_esEs5(Left(vyw400), Right(vyw3000), dca, daf) -> False 22.92/9.42 new_esEs5(Right(vyw400), Left(vyw3000), dca, daf) -> False 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs4(vyw43001, vyw44001) 22.92/9.42 new_esEs30(vyw40, vyw300, app(app(app(ty_@3, bga), bgb), bgc)) -> new_esEs7(vyw40, vyw300, bga, bgb, bgc) 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Float) -> new_compare7(vyw43000, vyw44000) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Int) -> new_ltEs9(vyw43002, vyw44002) 22.92/9.42 new_lt4(vyw43001, vyw44001, app(app(app(ty_@3, he), hf), hg)) -> new_lt18(vyw43001, vyw44001, he, hf, hg) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Bool) -> new_lt19(vyw43001, vyw44001) 22.92/9.42 new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.92/9.42 new_esEs29(vyw18, vyw13, app(ty_Ratio, ed)) -> new_esEs18(vyw18, vyw13, ed) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_compare31(vyw43000, vyw44000, app(app(ty_@2, dfc), dfd)) -> new_compare9(vyw43000, vyw44000, dfc, dfd) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs7(vyw43000, vyw44000, cde, cdf, cdg) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.92/9.42 new_esEs30(vyw40, vyw300, app(app(ty_Either, dca), daf)) -> new_esEs5(vyw40, vyw300, dca, daf) 22.92/9.42 new_compare16(vyw43000, vyw44000, False, cde, cdf, cdg) -> GT 22.92/9.42 new_esEs4(@2(vyw400, vyw401), @2(vyw3000, vyw3001), ceb, cec) -> new_asAs(new_esEs24(vyw400, vyw3000, ceb), new_esEs23(vyw401, vyw3001, cec)) 22.92/9.42 new_compare11(vyw128, vyw129, True, dad, dae) -> LT 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_@0, daf) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Bool, daf) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(ty_[], bee)) -> new_ltEs6(vyw4300, vyw4400, bee) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, dee)) -> new_ltEs15(vyw43001, vyw44001, dee) 22.92/9.42 new_sr0(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 22.92/9.42 new_esEs30(vyw40, vyw300, ty_Int) -> new_esEs14(vyw40, vyw300) 22.92/9.42 new_esEs29(vyw18, vyw13, app(ty_Maybe, ec)) -> new_esEs6(vyw18, vyw13, ec) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.92/9.42 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.92/9.42 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.92/9.42 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dca, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), eg) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, eg), eg) 22.92/9.42 new_esEs32(vyw33, vyw28, app(ty_Ratio, eaf)) -> new_esEs18(vyw33, vyw28, eaf) 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Integer) -> new_compare8(vyw43000, vyw44000) 22.92/9.42 new_esEs30(vyw40, vyw300, ty_Integer) -> new_esEs9(vyw40, vyw300) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.42 new_esEs32(vyw33, vyw28, app(ty_[], ead)) -> new_esEs12(vyw33, vyw28, ead) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(app(ty_@2, bfg), bfh)) -> new_esEs4(vyw43000, vyw44000, bfg, bfh) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, app(ty_Ratio, bdd)) -> new_ltEs15(vyw43000, vyw44000, bdd) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.92/9.42 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(ty_Maybe, dhc)) -> new_esEs6(vyw400, vyw3000, dhc) 22.92/9.42 new_esEs31(vyw40, vyw300, app(ty_[], cch)) -> new_esEs12(vyw40, vyw300, cch) 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.92/9.42 new_lt5(vyw43000, vyw44000, app(ty_Maybe, bae)) -> new_lt16(vyw43000, vyw44000, bae) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Ratio, dbf), daf) -> new_esEs18(vyw400, vyw3000, dbf) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(app(ty_@2, dge), dgf)) -> new_esEs4(vyw400, vyw3000, dge, dgf) 22.92/9.42 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Float) -> new_lt10(vyw43001, vyw44001) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, bed)) -> new_ltEs15(vyw4300, vyw4400, bed) 22.92/9.42 new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) 22.92/9.42 new_ltEs13(LT, EQ) -> True 22.92/9.42 new_compare16(vyw43000, vyw44000, True, cde, cdf, cdg) -> LT 22.92/9.42 new_esEs30(vyw40, vyw300, app(ty_[], dgd)) -> new_esEs12(vyw40, vyw300, dgd) 22.92/9.42 new_lt18(vyw43000, vyw44000, cde, cdf, cdg) -> new_esEs8(new_compare17(vyw43000, vyw44000, cde, cdf, cdg), LT) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(ty_Maybe, ccb)) -> new_esEs6(vyw43000, vyw44000, ccb) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Char) -> new_esEs13(vyw43001, vyw44001) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) 22.92/9.42 new_lt20(vyw43000, vyw44000, app(ty_Maybe, ccb)) -> new_lt16(vyw43000, vyw44000, ccb) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_compare15(vyw43000, vyw44000, False, bfg, bfh) -> GT 22.92/9.42 new_esEs12([], [], dgd) -> True 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs9(vyw43001, vyw44001) 22.92/9.42 new_ltEs15(vyw4300, vyw4400, bed) -> new_not(new_esEs8(new_compare19(vyw4300, vyw4400, bed), GT)) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.92/9.42 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.92/9.42 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.92/9.42 new_esEs29(vyw18, vyw13, app(app(ty_@2, de), df)) -> new_esEs4(vyw18, vyw13, de, df) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(ty_Ratio, gb)) -> new_ltEs15(vyw43002, vyw44002, gb) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs13(vyw402, vyw3002) 22.92/9.42 new_esEs31(vyw40, vyw300, app(ty_Ratio, cdb)) -> new_esEs18(vyw40, vyw300, cdb) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, bfc)) -> new_ltEs15(vyw4300, vyw4400, bfc) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Int) -> new_lt9(vyw43001, vyw44001) 22.92/9.42 new_compare29(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) 22.92/9.42 new_primEqNat0(Zero, Zero) -> True 22.92/9.42 new_esEs28(vyw400, vyw3000, app(app(ty_Either, dhe), dhf)) -> new_esEs5(vyw400, vyw3000, dhe, dhf) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.92/9.42 new_lt4(vyw43001, vyw44001, app(ty_[], gf)) -> new_lt6(vyw43001, vyw44001, gf) 22.92/9.42 new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) 22.92/9.42 new_ltEs8(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), beb, bec) -> new_pePe(new_lt20(vyw43000, vyw44000, beb), new_asAs(new_esEs27(vyw43000, vyw44000, beb), new_ltEs21(vyw43001, vyw44001, bec))) 22.92/9.42 new_lt20(vyw43000, vyw44000, app(ty_[], dfa)) -> new_lt6(vyw43000, vyw44000, dfa) 22.92/9.42 new_lt5(vyw43000, vyw44000, app(app(app(ty_@3, bag), bah), bba)) -> new_lt18(vyw43000, vyw44000, bag, bah, bba) 22.92/9.42 new_ltEs17(True, True) -> True 22.92/9.42 new_asAs(False, vyw116) -> False 22.92/9.42 new_compare18(vyw43000, vyw44000) -> new_compare28(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_@0) -> new_lt14(vyw43001, vyw44001) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_Either, ce), cf)) -> new_ltEs12(vyw43000, vyw44000, ce, cf) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs9(vyw402, vyw3002) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.42 new_esEs8(EQ, GT) -> False 22.92/9.42 new_esEs8(GT, EQ) -> False 22.92/9.42 new_compare112(vyw43000, vyw44000, False, ccb) -> GT 22.92/9.42 new_lt4(vyw43001, vyw44001, app(ty_Maybe, hc)) -> new_lt16(vyw43001, vyw44001, hc) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), bce, ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.92/9.42 new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs13(vyw33, vyw28) 22.92/9.42 new_compare31(vyw43000, vyw44000, app(app(ty_Either, dfe), dff)) -> new_compare30(vyw43000, vyw44000, dfe, dff) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, ded)) -> new_ltEs5(vyw43001, vyw44001, ded) 22.92/9.42 new_esEs19(True, True) -> True 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(ty_[], ddg)) -> new_ltEs6(vyw43001, vyw44001, ddg) 22.92/9.42 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, dba), dbb), dbc), daf) -> new_esEs7(vyw400, vyw3000, dba, dbb, dbc) 22.92/9.42 22.92/9.42 The set Q consists of the following terms: 22.92/9.42 22.92/9.42 new_ltEs20(x0, x1, ty_@0) 22.92/9.42 new_esEs30(x0, x1, ty_Double) 22.92/9.42 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_lt4(x0, x1, ty_@0) 22.92/9.42 new_esEs8(EQ, EQ) 22.92/9.42 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_compare6(x0, x1) 22.92/9.42 new_compare26(x0, x1, True, x2) 22.92/9.42 new_ltEs19(x0, x1, ty_Float) 22.92/9.42 new_ltEs21(x0, x1, ty_Double) 22.92/9.42 new_esEs21(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.92/9.42 new_primPlusNat0(Zero, Succ(x0)) 22.92/9.42 new_esEs20(x0, x1, ty_Char) 22.92/9.42 new_compare24(Left(x0), Left(x1), False, x2, x3) 22.92/9.42 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs23(x0, x1, ty_Double) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Double) 22.92/9.42 new_primPlusNat1(Succ(x0), x1) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.92/9.42 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_lt4(x0, x1, ty_Bool) 22.92/9.42 new_esEs30(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs20(x0, x1, ty_Bool) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.92/9.42 new_compare110(x0, x1, False) 22.92/9.42 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 22.92/9.42 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs20(x0, x1, ty_Int) 22.92/9.42 new_esEs21(x0, x1, ty_Ordering) 22.92/9.42 new_esEs19(False, False) 22.92/9.42 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_lt5(x0, x1, ty_Char) 22.92/9.42 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Int) 22.92/9.42 new_compare16(x0, x1, False, x2, x3, x4) 22.92/9.42 new_compare10(x0, x1, False, x2, x3) 22.92/9.42 new_primEqInt(Pos(Zero), Pos(Zero)) 22.92/9.42 new_esEs14(x0, x1) 22.92/9.42 new_esEs23(x0, x1, ty_Ordering) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.92/9.42 new_ltEs13(EQ, EQ) 22.92/9.42 new_esEs23(x0, x1, ty_Int) 22.92/9.42 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_compare0([], :(x0, x1), x2) 22.92/9.42 new_esEs22(x0, x1, ty_Double) 22.92/9.42 new_esEs20(x0, x1, ty_Double) 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Zero)) 22.92/9.42 new_esEs29(x0, x1, ty_Float) 22.92/9.42 new_esEs32(x0, x1, ty_Float) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.92/9.42 new_esEs25(x0, x1, ty_Int) 22.92/9.42 new_lt5(x0, x1, ty_Bool) 22.92/9.42 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 22.92/9.42 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.92/9.42 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.92/9.42 new_esEs23(x0, x1, ty_Char) 22.92/9.42 new_lt4(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.92/9.42 new_lt5(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs20(x0, x1, ty_Char) 22.92/9.42 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare29(Char(x0), Char(x1)) 22.92/9.42 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 22.92/9.42 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_pePe(True, x0) 22.92/9.42 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs17(True, True) 22.92/9.42 new_lt5(x0, x1, ty_Double) 22.92/9.42 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_primCompAux00(x0, EQ) 22.92/9.42 new_esEs12([], [], x0) 22.92/9.42 new_esEs27(x0, x1, app(ty_[], x2)) 22.92/9.42 new_lt16(x0, x1, x2) 22.92/9.42 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare18(x0, x1) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.92/9.42 new_compare27(x0, x1, True, x2, x3, x4) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 22.92/9.42 new_primEqInt(Pos(Zero), Neg(Zero)) 22.92/9.42 new_primEqInt(Neg(Zero), Pos(Zero)) 22.92/9.42 new_esEs20(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs20(x0, x1, ty_Ordering) 22.92/9.42 new_primPlusNat1(Zero, x0) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 22.92/9.42 new_primCompAux00(x0, LT) 22.92/9.42 new_ltEs7(x0, x1) 22.92/9.42 new_ltEs21(x0, x1, ty_Ordering) 22.92/9.42 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.92/9.42 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs30(x0, x1, ty_Int) 22.92/9.42 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.92/9.42 new_lt5(x0, x1, ty_Int) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.92/9.42 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.92/9.42 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.92/9.42 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_primCmpNat0(Succ(x0), Succ(x1)) 22.92/9.42 new_lt5(x0, x1, ty_@0) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.92/9.42 new_esEs31(x0, x1, ty_Integer) 22.92/9.42 new_esEs24(x0, x1, ty_Ordering) 22.92/9.42 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 22.92/9.42 new_ltEs19(x0, x1, ty_Integer) 22.92/9.42 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs13(LT, GT) 22.92/9.42 new_ltEs13(GT, LT) 22.92/9.42 new_compare31(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_ltEs20(x0, x1, ty_Int) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Integer) 22.92/9.42 new_esEs30(x0, x1, ty_Char) 22.92/9.42 new_compare31(x0, x1, ty_Float) 22.92/9.42 new_esEs31(x0, x1, ty_@0) 22.92/9.42 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.92/9.42 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs19(x0, x1, ty_@0) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.92/9.42 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs30(x0, x1, ty_Bool) 22.92/9.42 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.92/9.42 new_esEs27(x0, x1, ty_Int) 22.92/9.42 new_esEs11(x0, x1, ty_Float) 22.92/9.42 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.92/9.42 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.92/9.42 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.92/9.42 new_esEs26(x0, x1, ty_Int) 22.92/9.42 new_esEs17(@0, @0) 22.92/9.42 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.92/9.42 new_esEs27(x0, x1, ty_Ordering) 22.92/9.42 new_esEs10(x0, x1, ty_Char) 22.92/9.42 new_compare15(x0, x1, False, x2, x3) 22.92/9.42 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_lt8(x0, x1, x2, x3) 22.92/9.42 new_esEs23(x0, x1, ty_Bool) 22.92/9.42 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_lt4(x0, x1, ty_Float) 22.92/9.42 new_ltEs21(x0, x1, ty_Bool) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.92/9.42 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs11(x0, x1, ty_Double) 22.92/9.42 new_esEs30(x0, x1, ty_@0) 22.92/9.42 new_esEs28(x0, x1, ty_Int) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.92/9.42 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_lt20(x0, x1, ty_Float) 22.92/9.42 new_esEs21(x0, x1, ty_@0) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 22.92/9.42 new_esEs24(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs27(x0, x1, ty_Char) 22.92/9.42 new_esEs10(x0, x1, ty_Ordering) 22.92/9.42 new_esEs29(x0, x1, ty_@0) 22.92/9.42 new_ltEs9(x0, x1) 22.92/9.42 new_ltEs18(x0, x1, ty_Ordering) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.92/9.42 new_compare31(x0, x1, ty_Int) 22.92/9.42 new_lt20(x0, x1, ty_Int) 22.92/9.42 new_esEs22(x0, x1, ty_Int) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_lt14(x0, x1) 22.92/9.42 new_esEs20(x0, x1, ty_Bool) 22.92/9.42 new_compare24(Right(x0), Left(x1), False, x2, x3) 22.92/9.42 new_compare24(Left(x0), Right(x1), False, x2, x3) 22.92/9.42 new_esEs19(False, True) 22.92/9.42 new_esEs19(True, False) 22.92/9.42 new_compare112(x0, x1, False, x2) 22.92/9.42 new_esEs30(x0, x1, ty_Integer) 22.92/9.42 new_esEs28(x0, x1, ty_Char) 22.92/9.42 new_esEs29(x0, x1, ty_Integer) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.92/9.42 new_lt4(x0, x1, ty_Ordering) 22.92/9.42 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_lt4(x0, x1, ty_Int) 22.92/9.42 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_lt20(x0, x1, ty_Char) 22.92/9.42 new_esEs22(x0, x1, ty_Char) 22.92/9.42 new_esEs6(Nothing, Nothing, x0) 22.92/9.42 new_compare11(x0, x1, True, x2, x3) 22.92/9.42 new_primEqNat0(Zero, Succ(x0)) 22.92/9.42 new_ltEs18(x0, x1, ty_Double) 22.92/9.42 new_compare31(x0, x1, ty_Char) 22.92/9.42 new_esEs8(GT, GT) 22.92/9.42 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_compare0([], [], x0) 22.92/9.42 new_esEs32(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs8(LT, EQ) 22.92/9.42 new_esEs8(EQ, LT) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.92/9.42 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_compare27(x0, x1, False, x2, x3, x4) 22.92/9.42 new_esEs10(x0, x1, ty_Int) 22.92/9.42 new_esEs22(x0, x1, ty_Ordering) 22.92/9.42 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.92/9.42 new_esEs24(x0, x1, ty_Double) 22.92/9.42 new_lt4(x0, x1, ty_Char) 22.92/9.42 new_ltEs18(x0, x1, ty_@0) 22.92/9.42 new_lt7(x0, x1) 22.92/9.42 new_esEs8(LT, LT) 22.92/9.42 new_esEs25(x0, x1, ty_Integer) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.92/9.42 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.92/9.42 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.92/9.42 new_lt4(x0, x1, app(ty_[], x2)) 22.92/9.42 new_primPlusNat0(Succ(x0), Zero) 22.92/9.42 new_lt20(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs29(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Char) 22.92/9.42 new_ltEs21(x0, x1, ty_Char) 22.92/9.42 new_ltEs17(True, False) 22.92/9.42 new_ltEs17(False, True) 22.92/9.42 new_lt4(x0, x1, ty_Integer) 22.92/9.42 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_ltEs20(x0, x1, ty_Integer) 22.92/9.42 new_esEs22(x0, x1, ty_Bool) 22.92/9.42 new_lt6(x0, x1, x2) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.92/9.42 new_lt18(x0, x1, x2, x3, x4) 22.92/9.42 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs10(x0, x1, ty_Bool) 22.92/9.42 new_asAs(False, x0) 22.92/9.42 new_esEs28(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.92/9.42 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs22(x0, x1, ty_Integer) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.92/9.42 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs12([], :(x0, x1), x2) 22.92/9.42 new_pePe(False, x0) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_@0) 22.92/9.42 new_esEs12(:(x0, x1), :(x2, x3), x4) 22.92/9.42 new_sr0(x0, x1) 22.92/9.42 new_lt13(x0, x1) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.92/9.42 new_esEs27(x0, x1, ty_Integer) 22.92/9.42 new_esEs30(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_ltEs20(x0, x1, ty_Ordering) 22.92/9.42 new_esEs20(x0, x1, ty_Float) 22.92/9.42 new_ltEs11(x0, x1) 22.92/9.42 new_esEs16(Double(x0, x1), Double(x2, x3)) 22.92/9.42 new_esEs24(x0, x1, ty_@0) 22.92/9.42 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_lt19(x0, x1) 22.92/9.42 new_esEs10(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs28(x0, x1, ty_Integer) 22.92/9.42 new_compare10(x0, x1, True, x2, x3) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.92/9.42 new_ltEs21(x0, x1, ty_Int) 22.92/9.42 new_esEs21(x0, x1, ty_Double) 22.92/9.42 new_primMulNat0(Succ(x0), Zero) 22.92/9.42 new_lt20(x0, x1, ty_Bool) 22.92/9.42 new_esEs11(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs11(x0, x1, ty_@0) 22.92/9.42 new_ltEs18(x0, x1, ty_Integer) 22.92/9.42 new_esEs31(x0, x1, ty_Double) 22.92/9.42 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs19(x0, x1, ty_Double) 22.92/9.42 new_esEs26(x0, x1, ty_Integer) 22.92/9.42 new_esEs32(x0, x1, ty_Double) 22.92/9.42 new_ltEs21(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 22.92/9.42 new_esEs21(x0, x1, ty_Float) 22.92/9.42 new_esEs32(x0, x1, ty_Ordering) 22.92/9.42 new_compare31(x0, x1, ty_Bool) 22.92/9.42 new_esEs30(x0, x1, ty_Float) 22.92/9.42 new_compare111(x0, x1, False) 22.92/9.42 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_lt20(x0, x1, ty_@0) 22.92/9.42 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs23(x0, x1, ty_Float) 22.92/9.42 new_esEs29(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Ordering) 22.92/9.42 new_primEqNat0(Succ(x0), Succ(x1)) 22.92/9.42 new_ltEs19(x0, x1, ty_Ordering) 22.92/9.42 new_primMulNat0(Zero, Zero) 22.92/9.42 new_compare14(x0, x1, x2) 22.92/9.42 new_esEs24(x0, x1, ty_Integer) 22.92/9.42 new_esEs27(x0, x1, ty_Bool) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) 22.92/9.42 new_compare5(@0, @0) 22.92/9.42 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Int) 22.92/9.42 new_compare31(x0, x1, ty_@0) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.92/9.42 new_ltEs21(x0, x1, ty_Float) 22.92/9.42 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs10(x0, x1, ty_Integer) 22.92/9.42 new_sr(Integer(x0), Integer(x1)) 22.92/9.42 new_esEs31(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Float) 22.92/9.42 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs29(x0, x1, ty_Int) 22.92/9.42 new_esEs9(Integer(x0), Integer(x1)) 22.92/9.42 new_compare17(x0, x1, x2, x3, x4) 22.92/9.42 new_ltEs12(Left(x0), Right(x1), x2, x3) 22.92/9.42 new_ltEs12(Right(x0), Left(x1), x2, x3) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Char) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 22.92/9.42 new_compare9(x0, x1, x2, x3) 22.92/9.42 new_esEs32(x0, x1, ty_Int) 22.92/9.42 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs12(:(x0, x1), [], x2) 22.92/9.42 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs28(x0, x1, ty_Bool) 22.92/9.42 new_lt4(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs6(Nothing, Just(x0), x1) 22.92/9.42 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Double) 22.92/9.42 new_compare15(x0, x1, True, x2, x3) 22.92/9.42 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.92/9.42 new_primMulNat0(Succ(x0), Succ(x1)) 22.92/9.42 new_esEs11(x0, x1, ty_Bool) 22.92/9.42 new_esEs13(Char(x0), Char(x1)) 22.92/9.42 new_esEs10(x0, x1, ty_@0) 22.92/9.42 new_compare28(x0, x1, False) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.92/9.42 new_compare24(Right(x0), Right(x1), False, x2, x3) 22.92/9.42 new_ltEs20(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 22.92/9.42 new_compare0(:(x0, x1), :(x2, x3), x4) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 22.92/9.42 new_esEs5(Left(x0), Right(x1), x2, x3) 22.92/9.42 new_esEs5(Right(x0), Left(x1), x2, x3) 22.92/9.42 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_primPlusNat0(Zero, Zero) 22.92/9.42 new_asAs(True, x0) 22.92/9.42 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 22.92/9.42 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_not(True) 22.92/9.42 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs11(x0, x1, ty_Char) 22.92/9.42 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs4(x0, x1) 22.92/9.42 new_primEqNat0(Succ(x0), Zero) 22.92/9.42 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs32(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_primMulNat0(Zero, Succ(x0)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 22.92/9.42 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs8(EQ, GT) 22.92/9.42 new_esEs8(GT, EQ) 22.92/9.42 new_ltEs13(EQ, GT) 22.92/9.42 new_ltEs13(GT, EQ) 22.92/9.42 new_lt5(x0, x1, ty_Float) 22.92/9.42 new_esEs28(x0, x1, ty_@0) 22.92/9.42 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs22(x0, x1, ty_@0) 22.92/9.42 new_compare31(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.92/9.42 new_esEs32(x0, x1, ty_Char) 22.92/9.42 new_esEs22(x0, x1, ty_Float) 22.92/9.42 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.92/9.42 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs19(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs10(x0, x1, ty_Float) 22.92/9.42 new_lt20(x0, x1, ty_Integer) 22.92/9.42 new_esEs23(x0, x1, ty_Integer) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.92/9.42 new_ltEs18(x0, x1, ty_Bool) 22.92/9.42 new_esEs27(x0, x1, ty_@0) 22.92/9.42 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs21(x0, x1, ty_Integer) 22.92/9.42 new_compare30(x0, x1, x2, x3) 22.92/9.42 new_ltEs10(x0, x1) 22.92/9.42 new_esEs32(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs5(Nothing, Nothing, x0) 22.92/9.42 new_esEs31(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.92/9.42 new_compare16(x0, x1, True, x2, x3, x4) 22.92/9.42 new_esEs29(x0, x1, ty_Double) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.92/9.42 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare210(x0, x1, True) 22.92/9.42 new_ltEs13(LT, LT) 22.92/9.42 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_compare31(x0, x1, ty_Integer) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.92/9.42 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.92/9.42 new_esEs29(x0, x1, ty_Char) 22.92/9.42 new_esEs27(x0, x1, ty_Float) 22.92/9.42 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 22.92/9.42 new_esEs31(x0, x1, ty_Ordering) 22.92/9.42 new_primCompAux00(x0, GT) 22.92/9.42 new_esEs29(x0, x1, ty_Bool) 22.92/9.42 new_compare25(x0, x1, True, x2, x3) 22.92/9.42 new_esEs11(x0, x1, ty_Int) 22.92/9.42 new_compare28(x0, x1, True) 22.92/9.42 new_esEs19(True, True) 22.92/9.42 new_esEs28(x0, x1, ty_Float) 22.92/9.42 new_primMulInt(Pos(x0), Pos(x1)) 22.92/9.42 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.92/9.42 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.92/9.42 new_primCmpNat0(Succ(x0), Zero) 22.92/9.42 new_compare111(x0, x1, True) 22.92/9.42 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.92/9.42 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.92/9.42 new_esEs32(x0, x1, ty_Bool) 22.92/9.42 new_compare31(x0, x1, ty_Double) 22.92/9.42 new_ltEs21(x0, x1, ty_@0) 22.92/9.42 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.92/9.42 new_esEs31(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs20(x0, x1, ty_Integer) 22.92/9.42 new_lt4(x0, x1, ty_Double) 22.92/9.42 new_lt17(x0, x1, x2) 22.92/9.42 new_lt20(x0, x1, ty_Double) 22.92/9.42 new_compare31(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs21(x0, x1, ty_Bool) 22.92/9.42 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_compare26(x0, x1, False, x2) 22.92/9.42 new_esEs6(Just(x0), Nothing, x1) 22.92/9.42 new_ltEs20(x0, x1, ty_Double) 22.92/9.42 new_esEs24(x0, x1, ty_Char) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_@0) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.92/9.42 new_ltEs19(x0, x1, ty_Bool) 22.92/9.42 new_esEs23(x0, x1, ty_@0) 22.92/9.42 new_lt20(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs22(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.92/9.42 new_ltEs6(x0, x1, x2) 22.92/9.42 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.92/9.42 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_compare13(x0, x1) 22.92/9.42 new_ltEs13(GT, GT) 22.92/9.42 new_ltEs5(Nothing, Just(x0), x1) 22.92/9.42 new_compare31(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs20(x0, x1, ty_Float) 22.92/9.42 new_compare110(x0, x1, True) 22.92/9.42 new_esEs8(LT, GT) 22.92/9.42 new_esEs8(GT, LT) 22.92/9.42 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs13(EQ, LT) 22.92/9.42 new_ltEs13(LT, EQ) 22.92/9.42 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_compare8(Integer(x0), Integer(x1)) 22.92/9.42 new_primMulInt(Neg(x0), Neg(x1)) 22.92/9.42 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 22.92/9.42 new_primMulInt(Pos(x0), Neg(x1)) 22.92/9.42 new_primMulInt(Neg(x0), Pos(x1)) 22.92/9.42 new_lt15(x0, x1) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.92/9.42 new_compare0(:(x0, x1), [], x2) 22.92/9.42 new_lt12(x0, x1, x2, x3) 22.92/9.42 new_esEs28(x0, x1, ty_Double) 22.92/9.42 new_compare210(x0, x1, False) 22.92/9.42 new_esEs10(x0, x1, ty_Double) 22.92/9.42 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.92/9.42 new_esEs21(x0, x1, ty_Integer) 22.92/9.42 new_lt9(x0, x1) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs32(x0, x1, ty_@0) 22.92/9.42 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs18(x0, x1, ty_Int) 22.92/9.42 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.92/9.42 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.92/9.42 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Bool) 22.92/9.42 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.92/9.42 new_ltEs18(x0, x1, ty_Char) 22.92/9.42 new_lt11(x0, x1) 22.92/9.42 new_esEs32(x0, x1, ty_Integer) 22.92/9.42 new_esEs27(x0, x1, ty_Double) 22.92/9.42 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs31(x0, x1, ty_Bool) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.92/9.42 new_lt10(x0, x1) 22.92/9.42 new_ltEs19(x0, x1, ty_Char) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.92/9.42 new_primEqNat0(Zero, Zero) 22.92/9.42 new_ltEs5(Just(x0), Nothing, x1) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.92/9.42 new_esEs15(Float(x0, x1), Float(x2, x3)) 22.92/9.42 new_esEs24(x0, x1, ty_Float) 22.92/9.42 new_esEs31(x0, x1, ty_Char) 22.92/9.42 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs23(x0, x1, app(ty_[], x2)) 22.92/9.42 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.92/9.42 new_not(False) 22.92/9.42 new_compare25(x0, x1, False, x2, x3) 22.92/9.42 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.92/9.42 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.92/9.42 new_esEs24(x0, x1, ty_Bool) 22.92/9.42 new_esEs11(x0, x1, ty_Integer) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 22.92/9.42 new_ltEs15(x0, x1, x2) 22.92/9.42 new_ltEs17(False, False) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.92/9.42 new_ltEs18(x0, x1, ty_Float) 22.92/9.42 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.92/9.42 new_esEs31(x0, x1, ty_Int) 22.92/9.42 new_ltEs18(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.92/9.42 new_esEs20(x0, x1, ty_@0) 22.92/9.42 new_ltEs19(x0, x1, ty_Int) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 22.92/9.42 new_compare24(x0, x1, True, x2, x3) 22.92/9.42 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.92/9.42 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 22.92/9.42 new_primCompAux0(x0, x1, x2, x3) 22.92/9.42 new_esEs28(x0, x1, app(ty_[], x2)) 22.92/9.42 new_compare11(x0, x1, False, x2, x3) 22.92/9.42 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs21(x0, x1, ty_Int) 22.92/9.42 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_lt5(x0, x1, ty_Integer) 22.92/9.42 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.92/9.42 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.92/9.42 new_esEs31(x0, x1, ty_Float) 22.92/9.42 new_compare112(x0, x1, True, x2) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.92/9.42 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_lt5(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs14(x0, x1) 22.92/9.42 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_primCmpNat0(Zero, Zero) 22.92/9.42 new_esEs24(x0, x1, ty_Int) 22.92/9.42 new_esEs11(x0, x1, ty_Ordering) 22.92/9.42 new_esEs21(x0, x1, ty_Char) 22.92/9.42 new_primCmpNat0(Zero, Succ(x0)) 22.92/9.42 new_primPlusNat0(Succ(x0), Succ(x1)) 22.92/9.42 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.92/9.42 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Float) 22.92/9.42 22.92/9.42 We have to consider all minimal (P,Q,R)-chains. 22.92/9.42 ---------------------------------------- 22.92/9.42 22.92/9.42 (27) QDPSizeChangeProof (EQUIVALENT) 22.92/9.42 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 22.92/9.42 22.92/9.42 From the DPs we obtained the following set of size-change graphs: 22.92/9.42 *new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw16, Left(vyw18), h, ba, bb) 22.92/9.42 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.42 22.92/9.42 22.92/9.42 *new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare24(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) 22.92/9.42 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 22.92/9.42 22.92/9.42 22.92/9.42 *new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw17, Left(vyw18), h, ba, bb) 22.92/9.42 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.42 22.92/9.42 22.92/9.42 *new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Left(vyw300), new_esEs30(vyw40, vyw300, bd), bd, be), LT), bc, bd, be) 22.92/9.42 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 22.92/9.42 22.92/9.42 22.92/9.42 *new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Right(vyw300), False, bd, be), LT), bc, bd, be) 22.92/9.42 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 22.92/9.42 22.92/9.42 22.92/9.42 *new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare24(Left(vyw40), Right(vyw300), False, bd, be), GT), bc, bd, be) 22.92/9.42 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 22.92/9.42 22.92/9.42 22.92/9.42 *new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Left(vyw40), bc, bd, be) 22.92/9.42 The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.42 22.92/9.42 22.92/9.42 *new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Left(vyw40), bc, bd, be) 22.92/9.42 The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 22.92/9.42 22.92/9.42 22.92/9.42 ---------------------------------------- 22.92/9.42 22.92/9.42 (28) 22.92/9.42 YES 22.92/9.42 22.92/9.42 ---------------------------------------- 22.92/9.42 22.92/9.42 (29) 22.92/9.42 Obligation: 22.92/9.42 Q DP problem: 22.92/9.42 The TRS P consists of the following rules: 22.92/9.42 22.92/9.42 new_ltEs0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, h), h) 22.92/9.42 new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(ty_[], gc)), bec) -> new_ltEs0(vyw43000, vyw44000, gc) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_@2, bdc), bdd), baf, bca) -> new_lt0(vyw43000, vyw44000, bdc, bdd) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(ty_[], bbh)), bca), bec) -> new_lt(vyw43001, vyw44001, bbh) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(ty_[], bbh), bca) -> new_lt(vyw43001, vyw44001, bbh) 22.92/9.42 new_lt2(vyw43000, vyw44000, ec) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(app(ty_Either, da), db)) -> new_ltEs1(vyw43001, vyw44001, da, db) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(ty_Maybe, bbd)) -> new_ltEs2(vyw43002, vyw44002, bbd) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(ty_Maybe, bcf), bca) -> new_lt2(vyw43001, vyw44001, bcf) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(ty_[], ce)) -> new_ltEs0(vyw43001, vyw44001, ce) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(ty_[], bag)) -> new_ltEs0(vyw43002, vyw44002, bag) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(app(ty_Either, da), db)), bec) -> new_ltEs1(vyw43001, vyw44001, da, db) 22.92/9.42 new_ltEs1(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ff), eh) -> new_ltEs2(vyw43000, vyw44000, ff) 22.92/9.42 new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(app(ty_@2, gd), ge)) -> new_ltEs(vyw43000, vyw44000, gd, ge) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(ty_Maybe, dc)) -> new_ltEs2(vyw43001, vyw44001, dc) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(app(app(ty_@3, bcg), bch), bda)), bca), bec) -> new_lt3(vyw43001, vyw44001, bcg, bch, bda) 22.92/9.42 new_ltEs1(Left(vyw43000), Left(vyw44000), app(ty_[], eg), eh) -> new_ltEs0(vyw43000, vyw44000, eg) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, ec)), dh), bec) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.42 new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, fc), fd)), eh), bec) -> new_ltEs1(vyw43000, vyw44000, fc, fd) 22.92/9.42 new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs1(vyw43000, vyw44000, gf, gg) 22.92/9.42 new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, baa)), bec) -> new_ltEs2(vyw43000, vyw44000, baa) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(app(ty_@2, bah), bba)) -> new_ltEs(vyw43002, vyw44002, bah, bba) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf, bbg) 22.92/9.42 new_ltEs2(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs3(vyw43000, vyw44000, bab, bac, bad) 22.92/9.42 new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, ff)), eh), bec) -> new_ltEs2(vyw43000, vyw44000, ff) 22.92/9.42 new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(app(ty_@2, gd), ge)), bec) -> new_ltEs(vyw43000, vyw44000, gd, ge) 22.92/9.42 new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(ty_[], gc)) -> new_ltEs0(vyw43000, vyw44000, gc) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(app(ty_@2, bcb), bcc), bca) -> new_lt0(vyw43001, vyw44001, bcb, bcc) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(app(ty_Either, bbb), bbc)) -> new_ltEs1(vyw43002, vyw44002, bbb, bbc) 22.92/9.42 new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, bef), beg)) -> new_ltEs(vyw4300, vyw4400, bef, beg) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, bde), bdf)), baf), bca), bec) -> new_lt1(vyw43000, vyw44000, bde, bdf) 22.92/9.42 new_ltEs1(Left(vyw43000), Left(vyw44000), app(app(ty_@2, fa), fb), eh) -> new_ltEs(vyw43000, vyw44000, fa, fb) 22.92/9.42 new_compare2(vyw43000, vyw44000, ea, eb) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.42 new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(ty_Maybe, gh)) -> new_ltEs2(vyw43000, vyw44000, gh) 22.92/9.42 new_ltEs2(Just(vyw43000), Just(vyw44000), app(app(ty_@2, he), hf)) -> new_ltEs(vyw43000, vyw44000, he, hf) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(app(app(ty_@3, dd), de), df)), bec) -> new_ltEs3(vyw43001, vyw44001, dd, de, df) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], bdb)), baf), bca), bec) -> new_lt(vyw43000, vyw44000, bdb) 22.92/9.42 new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(vyw4300, vyw4400, bfc, bfd, bfe) 22.92/9.42 new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, he), hf)), bec) -> new_ltEs(vyw43000, vyw44000, he, hf) 22.92/9.42 new_ltEs1(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, fg), fh), ga), eh) -> new_ltEs3(vyw43000, vyw44000, fg, fh, ga) 22.92/9.42 new_compare22(vyw43000, vyw44000, False, ec) -> new_ltEs2(vyw43000, vyw44000, ec) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_@2, bah), bba)), bec) -> new_ltEs(vyw43002, vyw44002, bah, bba) 22.92/9.42 new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, beh), bfa)) -> new_ltEs1(vyw4300, vyw4400, beh, bfa) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(ty_[], bag)), bec) -> new_ltEs0(vyw43002, vyw44002, bag) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(app(ty_@2, cf), cg)) -> new_ltEs(vyw43001, vyw44001, cf, cg) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(app(ty_Either, bcd), bce)), bca), bec) -> new_lt1(vyw43001, vyw44001, bcd, bce) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_lt3(vyw43000, vyw44000, bdh, bea, beb) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(app(ty_@2, cf), cg)), bec) -> new_ltEs(vyw43001, vyw44001, cf, cg) 22.92/9.42 new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(ty_Maybe, gh)), bec) -> new_ltEs2(vyw43000, vyw44000, gh) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(ty_[], ce)), bec) -> new_ltEs0(vyw43001, vyw44001, ce) 22.92/9.42 new_compare20(vyw43000, vyw44000, False, cb, cc) -> new_ltEs(vyw43000, vyw44000, cb, cc) 22.92/9.42 new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(app(ty_Either, gf), gg)), bec) -> new_ltEs1(vyw43000, vyw44000, gf, gg) 22.92/9.42 new_ltEs2(Just(vyw43000), Just(vyw44000), app(ty_Maybe, baa)) -> new_ltEs2(vyw43000, vyw44000, baa) 22.92/9.42 new_ltEs2(Just(vyw43000), Just(vyw44000), app(ty_[], hd)) -> new_ltEs0(vyw43000, vyw44000, hd) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], dg), dh) -> new_compare(vyw43000, vyw44000, dg) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, cb), cc), dh) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(ty_Maybe, dc)), bec) -> new_ltEs2(vyw43001, vyw44001, dc) 22.92/9.42 new_primCompAux(vyw43000, vyw44000, vyw139, app(ty_Maybe, bf)) -> new_compare3(vyw43000, vyw44000, bf) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], bdb), baf, bca) -> new_lt(vyw43000, vyw44000, bdb) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, ea), eb)), dh), bec) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], dg)), dh), bec) -> new_compare(vyw43000, vyw44000, dg) 22.92/9.42 new_lt0(vyw43000, vyw44000, cb, cc) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.42 new_primCompAux(vyw43000, vyw44000, vyw139, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(vyw43000, vyw44000, bg, bh, ca) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, bdg), baf, bca) -> new_lt2(vyw43000, vyw44000, bdg) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, bdc), bdd)), baf), bca), bec) -> new_lt0(vyw43000, vyw44000, bdc, bdd) 22.92/9.42 new_ltEs2(Just(vyw43000), Just(vyw44000), app(app(ty_Either, hg), hh)) -> new_ltEs1(vyw43000, vyw44000, hg, hh) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_Either, bbb), bbc)), bec) -> new_ltEs1(vyw43002, vyw44002, bbb, bbc) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bdh), bea), beb)), baf), bca), bec) -> new_lt3(vyw43000, vyw44000, bdh, bea, beb) 22.92/9.42 new_primCompAux(vyw43000, vyw44000, vyw139, app(app(ty_Either, bd), be)) -> new_compare2(vyw43000, vyw44000, bd, be) 22.92/9.42 new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], h), bec) -> new_compare(vyw43001, vyw44001, h) 22.92/9.42 new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], eg)), eh), bec) -> new_ltEs0(vyw43000, vyw44000, eg) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), dh), bec) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.42 new_compare3(vyw43000, vyw44000, ec) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.42 new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(app(app(ty_@3, ha), hb), hc)), bec) -> new_ltEs3(vyw43000, vyw44000, ha, hb, hc) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, bde), bdf), baf, bca) -> new_lt1(vyw43000, vyw44000, bde, bdf) 22.92/9.42 new_lt(vyw43000, vyw44000, dg) -> new_compare(vyw43000, vyw44000, dg) 22.92/9.42 new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, h), h) 22.92/9.42 new_compare4(vyw43000, vyw44000, ed, ee, ef) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(app(ty_@2, bcb), bcc)), bca), bec) -> new_lt0(vyw43001, vyw44001, bcb, bcc) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(app(app(ty_@3, bbe), bbf), bbg)), bec) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf, bbg) 22.92/9.42 new_lt3(vyw43000, vyw44000, ed, ee, ef) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, ed), ee), ef), dh) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.42 new_ltEs1(Left(vyw43000), Left(vyw44000), app(app(ty_Either, fc), fd), eh) -> new_ltEs1(vyw43000, vyw44000, fc, fd) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, ea), eb), dh) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.42 new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bab), bac), bad)), bec) -> new_ltEs3(vyw43000, vyw44000, bab, bac, bad) 22.92/9.42 new_primCompAux(vyw43000, vyw44000, vyw139, app(ty_[], ba)) -> new_compare(vyw43000, vyw44000, ba) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vyw43001, vyw44001, dd, de, df) 22.92/9.42 new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_Maybe, bfb)) -> new_ltEs2(vyw4300, vyw4400, bfb) 22.92/9.42 new_ltEs0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_compare(vyw43001, vyw44001, h) 22.92/9.42 new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), dh), bec) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.42 new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, fg), fh), ga)), eh), bec) -> new_ltEs3(vyw43000, vyw44000, fg, fh, ga) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(ty_Maybe, bbd)), bec) -> new_ltEs2(vyw43002, vyw44002, bbd) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(ty_Maybe, bcf)), bca), bec) -> new_lt2(vyw43001, vyw44001, bcf) 22.92/9.42 new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_compare(vyw43001, vyw44001, h) 22.92/9.42 new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], h), bec) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, h), h) 22.92/9.42 new_compare1(vyw43000, vyw44000, cb, cc) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(app(ty_Either, bcd), bce), bca) -> new_lt1(vyw43001, vyw44001, bcd, bce) 22.92/9.42 new_lt1(vyw43000, vyw44000, ea, eb) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.42 new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, bdg)), baf), bca), bec) -> new_lt2(vyw43000, vyw44000, bdg) 22.92/9.42 new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_[], bee)) -> new_ltEs0(vyw4300, vyw4400, bee) 22.92/9.42 new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, hg), hh)), bec) -> new_ltEs1(vyw43000, vyw44000, hg, hh) 22.92/9.42 new_primCompAux(vyw43000, vyw44000, vyw139, app(app(ty_@2, bb), bc)) -> new_compare1(vyw43000, vyw44000, bb, bc) 22.92/9.42 new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vyw43000, vyw44000, ha, hb, hc) 22.92/9.42 new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], hd)), bec) -> new_ltEs0(vyw43000, vyw44000, hd) 22.92/9.42 new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, ec), dh) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.42 new_compare23(vyw43000, vyw44000, False, ed, ee, ef) -> new_ltEs3(vyw43000, vyw44000, ed, ee, ef) 22.92/9.42 new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_lt3(vyw43001, vyw44001, bcg, bch, bda) 22.92/9.42 new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, fa), fb)), eh), bec) -> new_ltEs(vyw43000, vyw44000, fa, fb) 22.92/9.42 22.92/9.42 The TRS R consists of the following rules: 22.92/9.42 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.92/9.42 new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT 22.92/9.42 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.92/9.42 new_primPlusNat0(Zero, Zero) -> Zero 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs16(vyw43000, vyw44000, bab, bac, bad) 22.92/9.42 new_compare17(vyw43000, vyw44000, ed, ee, ef) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.42 new_pePe(True, vyw137) -> True 22.92/9.42 new_esEs23(vyw401, vyw3001, app(ty_Maybe, ceb)) -> new_esEs6(vyw401, vyw3001, ceb) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Ordering, chf) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(ty_[], bhg)) -> new_esEs12(vyw402, vyw3002, bhg) 22.92/9.42 new_esEs21(vyw401, vyw3001, app(ty_Ratio, cbc)) -> new_esEs18(vyw401, vyw3001, cbc) 22.92/9.42 new_lt17(vyw43000, vyw44000, chc) -> new_esEs8(new_compare19(vyw43000, vyw44000, chc), LT) 22.92/9.42 new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs7(vyw401, vyw3001, caf, cag, cah) 22.92/9.42 new_esEs19(False, True) -> False 22.92/9.42 new_esEs19(True, False) -> False 22.92/9.42 new_compare112(vyw43000, vyw44000, True, ec) -> LT 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Char) -> new_compare29(vyw43000, vyw44000) 22.92/9.42 new_ltEs7(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare29(vyw4300, vyw4400), GT)) 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.92/9.42 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(app(ty_Either, ea), eb)) -> new_esEs5(vyw43000, vyw44000, ea, eb) 22.92/9.42 new_esEs12(:(vyw400, vyw401), [], dcg) -> False 22.92/9.42 new_esEs12([], :(vyw3000, vyw3001), dcg) -> False 22.92/9.42 new_lt5(vyw43000, vyw44000, app(ty_[], bdb)) -> new_lt6(vyw43000, vyw44000, bdb) 22.92/9.42 new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) 22.92/9.42 new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT 22.92/9.42 new_lt12(vyw43000, vyw44000, ea, eb) -> new_esEs8(new_compare30(vyw43000, vyw44000, ea, eb), LT) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.92/9.42 new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Maybe, baa)) -> new_ltEs5(vyw43000, vyw44000, baa) 22.92/9.42 new_ltEs12(Left(vyw43000), Right(vyw44000), gb, eh) -> True 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Bool) -> new_compare13(vyw43000, vyw44000) 22.92/9.42 new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat1(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) 22.92/9.42 new_ltEs13(GT, GT) -> True 22.92/9.42 new_compare14(vyw43000, vyw44000, ec) -> new_compare26(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_Either, cha), chb)) -> new_esEs5(vyw400, vyw3000, cha, chb) 22.92/9.42 new_esEs11(vyw43000, vyw44000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs7(vyw43000, vyw44000, bdh, bea, beb) 22.92/9.42 new_lt7(vyw43000, vyw44000) -> new_esEs8(new_compare29(vyw43000, vyw44000), LT) 22.92/9.42 new_compare24(Right(vyw4300), Right(vyw4400), False, bed, bec) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, bec), bed, bec) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_Bool) -> new_ltEs17(vyw43000, vyw44000) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.92/9.42 new_esEs23(vyw401, vyw3001, app(app(ty_Either, ced), cee)) -> new_esEs5(vyw401, vyw3001, ced, cee) 22.92/9.42 new_esEs8(GT, GT) -> True 22.92/9.42 new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False 22.92/9.42 new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False 22.92/9.42 new_ltEs13(EQ, GT) -> True 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(ty_[], h)) -> new_ltEs6(vyw4300, vyw4400, h) 22.92/9.42 new_esEs24(vyw400, vyw3000, app(app(ty_@2, cef), ceg)) -> new_esEs4(vyw400, vyw3000, cef, ceg) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.92/9.42 new_ltEs13(EQ, EQ) -> True 22.92/9.42 new_esEs8(EQ, EQ) -> True 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Maybe, dae), chf) -> new_esEs6(vyw400, vyw3000, dae) 22.92/9.42 new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs7(vyw43001, vyw44001) 22.92/9.42 new_lt5(vyw43000, vyw44000, app(app(ty_Either, bde), bdf)) -> new_lt12(vyw43000, vyw44000, bde, bdf) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, app(app(ty_@2, dbb), dbc)) -> new_esEs4(vyw400, vyw3000, dbb, dbc) 22.92/9.42 new_ltEs16(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, bca) -> new_pePe(new_lt5(vyw43000, vyw44000, bae), new_asAs(new_esEs11(vyw43000, vyw44000, bae), new_pePe(new_lt4(vyw43001, vyw44001, baf), new_asAs(new_esEs10(vyw43001, vyw44001, baf), new_ltEs18(vyw43002, vyw44002, bca))))) 22.92/9.42 new_compare9(vyw43000, vyw44000, cb, cc) -> new_compare25(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.42 new_ltEs6(vyw4300, vyw4400, h) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, h), GT)) 22.92/9.42 new_not(True) -> False 22.92/9.42 new_lt8(vyw43000, vyw44000, cb, cc) -> new_esEs8(new_compare9(vyw43000, vyw44000, cb, cc), LT) 22.92/9.42 new_primCompAux00(vyw143, LT) -> LT 22.92/9.42 new_esEs10(vyw43001, vyw44001, app(ty_Ratio, bga)) -> new_esEs18(vyw43001, vyw44001, bga) 22.92/9.42 new_primCmpNat0(Zero, Zero) -> EQ 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Ordering) -> new_ltEs13(vyw43002, vyw44002) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_@2, he), hf)) -> new_ltEs8(vyw43000, vyw44000, he, hf) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.92/9.42 new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) 22.92/9.42 new_lt4(vyw43001, vyw44001, app(app(ty_Either, bcd), bce)) -> new_lt12(vyw43001, vyw44001, bcd, bce) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_@0, eh) -> new_ltEs4(vyw43000, vyw44000) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_@0) -> new_ltEs4(vyw43002, vyw44002) 22.92/9.42 new_esEs10(vyw43001, vyw44001, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs7(vyw43001, vyw44001, bcg, bch, bda) 22.92/9.42 new_esEs11(vyw43000, vyw44000, app(ty_Ratio, bgb)) -> new_esEs18(vyw43000, vyw44000, bgb) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.92/9.42 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.42 new_primEqNat0(Succ(vyw4000), Zero) -> False 22.92/9.42 new_primEqNat0(Zero, Succ(vyw30000)) -> False 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_esEs25(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.92/9.42 new_compare10(vyw121, vyw122, True, cch, cda) -> LT 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_@2, fa), fb), eh) -> new_ltEs8(vyw43000, vyw44000, fa, fb) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs4(vyw4300, vyw4400) 22.92/9.42 new_primCompAux00(vyw143, GT) -> GT 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.92/9.42 new_compare110(vyw43000, vyw44000, True) -> LT 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ff), eh) -> new_ltEs5(vyw43000, vyw44000, ff) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.92/9.42 new_compare15(vyw43000, vyw44000, True, cb, cc) -> LT 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) 22.92/9.42 new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT 22.92/9.42 new_esEs19(False, False) -> True 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_lt6(vyw43000, vyw44000, dg) -> new_esEs8(new_compare0(vyw43000, vyw44000, dg), LT) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(app(ty_@2, bhb), bhc)) -> new_esEs4(vyw402, vyw3002, bhb, bhc) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, app(ty_Maybe, gh)) -> new_ltEs5(vyw43000, vyw44000, gh) 22.92/9.42 new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.42 new_esEs10(vyw43001, vyw44001, app(ty_[], bbh)) -> new_esEs12(vyw43001, vyw44001, bbh) 22.92/9.42 new_lt16(vyw43000, vyw44000, ec) -> new_esEs8(new_compare14(vyw43000, vyw44000, ec), LT) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs9(vyw43000, vyw44000) 22.92/9.42 new_primCompAux0(vyw43000, vyw44000, vyw139, h) -> new_primCompAux00(vyw139, new_compare31(vyw43000, vyw44000, h)) 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_primCmpNat0(Zero, Succ(vyw440000)) -> LT 22.92/9.42 new_esEs22(vyw400, vyw3000, app(ty_Ratio, cce)) -> new_esEs18(vyw400, vyw3000, cce) 22.92/9.42 new_esEs7(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bgg, bgh, bha) -> new_asAs(new_esEs22(vyw400, vyw3000, bgg), new_asAs(new_esEs21(vyw401, vyw3001, bgh), new_esEs20(vyw402, vyw3002, bha))) 22.92/9.42 new_ltEs13(LT, GT) -> True 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_@0) -> new_compare5(vyw43000, vyw44000) 22.92/9.42 new_compare210(vyw43000, vyw44000, True) -> EQ 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs14(vyw43001, vyw44001) 22.92/9.42 new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) 22.92/9.42 new_primCmpNat0(Succ(vyw430000), Zero) -> GT 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Char, chf) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_pePe(False, vyw137) -> vyw137 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Char, eh) -> new_ltEs7(vyw43000, vyw44000) 22.92/9.42 new_esEs17(@0, @0) -> True 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_compare25(vyw43000, vyw44000, True, cb, cc) -> EQ 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, cf), cg)) -> new_ltEs8(vyw43001, vyw44001, cf, cg) 22.92/9.42 new_compare31(vyw43000, vyw44000, app(ty_Maybe, bf)) -> new_compare14(vyw43000, vyw44000, bf) 22.92/9.42 new_ltEs14(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_Ratio, bgc), eh) -> new_ltEs15(vyw43000, vyw44000, bgc) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Bool) -> new_ltEs17(vyw43002, vyw44002) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Ordering) -> new_lt13(vyw43001, vyw44001) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_esEs8(LT, EQ) -> False 22.92/9.42 new_esEs8(EQ, LT) -> False 22.92/9.42 new_compare11(vyw128, vyw129, False, chd, che) -> GT 22.92/9.42 new_esEs22(vyw400, vyw3000, app(ty_Maybe, ccd)) -> new_esEs6(vyw400, vyw3000, ccd) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_@2, chg), chh), chf) -> new_esEs4(vyw400, vyw3000, chg, chh) 22.92/9.42 new_esEs21(vyw401, vyw3001, app(app(ty_@2, cad), cae)) -> new_esEs4(vyw401, vyw3001, cad, cae) 22.92/9.42 new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False 22.92/9.42 new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Double) -> new_compare12(vyw43000, vyw44000) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.92/9.42 new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Float) -> new_ltEs10(vyw43002, vyw44002) 22.92/9.42 new_compare28(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs13(vyw43000, vyw44000)) 22.92/9.42 new_esEs11(vyw43000, vyw44000, app(ty_[], bdb)) -> new_esEs12(vyw43000, vyw44000, bdb) 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(ty_Either, fc), fd), eh) -> new_ltEs12(vyw43000, vyw44000, fc, fd) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.42 new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare12(vyw4300, vyw4400), GT)) 22.92/9.42 new_esEs24(vyw400, vyw3000, app(ty_Ratio, cfe)) -> new_esEs18(vyw400, vyw3000, cfe) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(app(ty_Either, bbb), bbc)) -> new_ltEs12(vyw43002, vyw44002, bbb, bbc) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Int) -> new_esEs14(vyw43001, vyw44001) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Ordering, eh) -> new_ltEs13(vyw43000, vyw44000) 22.92/9.42 new_esEs24(vyw400, vyw3000, app(app(ty_Either, cff), cfg)) -> new_esEs5(vyw400, vyw3000, cff, cfg) 22.92/9.42 new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) 22.92/9.42 new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT 22.92/9.42 new_ltEs5(Just(vyw43000), Nothing, bff) -> False 22.92/9.42 new_ltEs5(Nothing, Nothing, bff) -> True 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs16(vyw43002, vyw44002, bbe, bbf, bbg) 22.92/9.42 new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Int, chf) -> new_esEs14(vyw400, vyw3000) 22.92/9.42 new_lt20(vyw43000, vyw44000, app(app(ty_@2, cb), cc)) -> new_lt8(vyw43000, vyw44000, cb, cc) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs15(vyw402, vyw3002) 22.92/9.42 new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs7(vyw400, vyw3000, cbh, cca, ccb) 22.92/9.42 new_esEs24(vyw400, vyw3000, app(ty_Maybe, cfd)) -> new_esEs6(vyw400, vyw3000, cfd) 22.92/9.42 new_lt5(vyw43000, vyw44000, app(app(ty_@2, bdc), bdd)) -> new_lt8(vyw43000, vyw44000, bdc, bdd) 22.92/9.42 new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) 22.92/9.42 new_lt13(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) 22.92/9.42 new_esEs10(vyw43001, vyw44001, app(app(ty_@2, bcb), bcc)) -> new_esEs4(vyw43001, vyw44001, bcb, bcc) 22.92/9.42 new_primMulNat0(Succ(vyw40100), Zero) -> Zero 22.92/9.42 new_primMulNat0(Zero, Succ(vyw300000)) -> Zero 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, app(ty_Ratio, dca)) -> new_esEs18(vyw400, vyw3000, dca) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, app(app(ty_@2, gd), ge)) -> new_ltEs8(vyw43000, vyw44000, gd, ge) 22.92/9.42 new_esEs23(vyw401, vyw3001, app(ty_[], cea)) -> new_esEs12(vyw401, vyw3001, cea) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Integer, chf) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_@0) -> new_esEs17(vyw43001, vyw44001) 22.92/9.42 new_compare13(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs19(vyw43000, vyw44000)) 22.92/9.42 new_compare26(vyw43000, vyw44000, True, ec) -> EQ 22.92/9.42 new_primPlusNat1(Succ(vyw1380), vyw300000) -> Succ(Succ(new_primPlusNat0(vyw1380, vyw300000))) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(app(ty_Either, dag), dah), chf) -> new_esEs5(vyw400, vyw3000, dag, dah) 22.92/9.42 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.42 new_primPlusNat0(Succ(vyw13800), Zero) -> Succ(vyw13800) 22.92/9.42 new_primPlusNat0(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) 22.92/9.42 new_compare27(vyw43000, vyw44000, True, ed, ee, ef) -> EQ 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, app(ty_Maybe, dbh)) -> new_esEs6(vyw400, vyw3000, dbh) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs7(vyw400, vyw3000, dbd, dbe, dbf) 22.92/9.42 new_esEs21(vyw401, vyw3001, app(app(ty_Either, cbd), cbe)) -> new_esEs5(vyw401, vyw3001, cbd, cbe) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.92/9.42 new_esEs24(vyw400, vyw3000, app(ty_[], cfc)) -> new_esEs12(vyw400, vyw3000, cfc) 22.92/9.42 new_primPlusNat1(Zero, vyw300000) -> Succ(vyw300000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, app(app(ty_@2, bdc), bdd)) -> new_esEs4(vyw43000, vyw44000, bdc, bdd) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Integer) -> new_ltEs14(vyw43002, vyw44002) 22.92/9.42 new_esEs8(LT, LT) -> True 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cgc), cgd), cge)) -> new_esEs7(vyw400, vyw3000, cgc, cgd, cge) 22.92/9.42 new_compare111(vyw43000, vyw44000, True) -> LT 22.92/9.42 new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.42 new_ltEs13(GT, LT) -> False 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Double, eh) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Integer, eh) -> new_ltEs14(vyw43000, vyw44000) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, dd), de), df)) -> new_ltEs16(vyw43001, vyw44001, dd, de, df) 22.92/9.42 new_compare27(vyw43000, vyw44000, False, ed, ee, ef) -> new_compare16(vyw43000, vyw44000, new_ltEs16(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Float) -> new_esEs15(vyw43001, vyw44001) 22.92/9.42 new_esEs24(vyw400, vyw3000, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs7(vyw400, vyw3000, ceh, cfa, cfb) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Char) -> new_esEs13(vyw43000, vyw44000) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs17(vyw43001, vyw44001) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, cd), dh)) -> new_ltEs8(vyw4300, vyw4400, cd, dh) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_compare31(vyw43000, vyw44000, app(ty_Ratio, dcf)) -> new_compare19(vyw43000, vyw44000, dcf) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.92/9.42 new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Float, eh) -> new_ltEs10(vyw43000, vyw44000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(app(ty_@2, cga), cgb)) -> new_esEs4(vyw400, vyw3000, cga, cgb) 22.92/9.42 new_esEs23(vyw401, vyw3001, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs7(vyw401, vyw3001, cdf, cdg, cdh) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs16(vyw4300, vyw4400, bfc, bfd, bfe) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs16(vyw402, vyw3002) 22.92/9.42 new_lt4(vyw43001, vyw44001, app(ty_Ratio, bga)) -> new_lt17(vyw43001, vyw44001, bga) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, bef), beg)) -> new_ltEs8(vyw4300, vyw4400, bef, beg) 22.92/9.42 new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.42 new_lt5(vyw43000, vyw44000, app(ty_Ratio, bgb)) -> new_lt17(vyw43000, vyw44000, bgb) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs10(vyw4300, vyw4400) 22.92/9.42 new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) 22.92/9.42 new_lt4(vyw43001, vyw44001, app(app(ty_@2, bcb), bcc)) -> new_lt8(vyw43001, vyw44001, bcb, bcc) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.92/9.42 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.42 new_esEs11(vyw43000, vyw44000, app(app(ty_Either, bde), bdf)) -> new_esEs5(vyw43000, vyw44000, bde, bdf) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs19(vyw402, vyw3002) 22.92/9.42 new_esEs25(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Maybe, cgg)) -> new_esEs6(vyw400, vyw3000, cgg) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_ltEs13(GT, EQ) -> False 22.92/9.42 new_esEs6(Nothing, Just(vyw3000), cfh) -> False 22.92/9.42 new_esEs6(Just(vyw400), Nothing, cfh) -> False 22.92/9.42 new_lt20(vyw43000, vyw44000, app(ty_Ratio, chc)) -> new_lt17(vyw43000, vyw44000, chc) 22.92/9.42 new_esEs6(Nothing, Nothing, cfh) -> True 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs17(vyw402, vyw3002) 22.92/9.42 new_esEs22(vyw400, vyw3000, app(app(ty_Either, ccf), ccg)) -> new_esEs5(vyw400, vyw3000, ccf, ccg) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) 22.92/9.42 new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) 22.92/9.42 new_ltEs5(Nothing, Just(vyw44000), bff) -> True 22.92/9.42 new_esEs11(vyw43000, vyw44000, app(ty_Maybe, bdg)) -> new_esEs6(vyw43000, vyw44000, bdg) 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_Int) -> new_esEs14(vyw401, vyw3001) 22.92/9.42 new_esEs23(vyw401, vyw3001, app(app(ty_@2, cdd), cde)) -> new_esEs4(vyw401, vyw3001, cdd, cde) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Bool, eh) -> new_ltEs17(vyw43000, vyw44000) 22.92/9.42 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.42 new_compare7(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.42 new_compare8(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs12(vyw43000, vyw44000, gf, gg) 22.92/9.42 new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.42 new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs17(vyw401, vyw3001) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, app(ty_[], gc)) -> new_ltEs6(vyw43000, vyw44000, gc) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), ty_Int, eh) -> new_ltEs9(vyw43000, vyw44000) 22.92/9.42 new_compare28(vyw43000, vyw44000, True) -> EQ 22.92/9.42 new_ltEs12(Right(vyw43000), Left(vyw44000), gb, eh) -> False 22.92/9.42 new_esEs22(vyw400, vyw3000, app(app(ty_@2, cbf), cbg)) -> new_esEs4(vyw400, vyw3000, cbf, cbg) 22.92/9.42 new_compare24(Right(vyw4300), Left(vyw4400), False, bed, bec) -> GT 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.92/9.42 new_compare5(@0, @0) -> EQ 22.92/9.42 new_compare31(vyw43000, vyw44000, app(ty_[], ba)) -> new_compare0(vyw43000, vyw44000, ba) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs14(vyw400, vyw3000) 22.92/9.42 new_compare25(vyw43000, vyw44000, False, cb, cc) -> new_compare15(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.42 new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs14(vyw4300, vyw4400) 22.92/9.42 new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare13(vyw43000, vyw44000), LT) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_esEs10(vyw43001, vyw44001, app(app(ty_Either, bcd), bce)) -> new_esEs5(vyw43001, vyw44001, bcd, bce) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, bae), baf), bca)) -> new_ltEs16(vyw4300, vyw4400, bae, baf, bca) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs17(vyw4300, vyw4400) 22.92/9.42 new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt18(vyw43000, vyw44000, ed, ee, ef) 22.92/9.42 new_esEs23(vyw401, vyw3001, ty_Float) -> new_esEs15(vyw401, vyw3001) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs7(vyw400, vyw3000, ddb, ddc, ddd) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs9(vyw401, vyw3001) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, bff)) -> new_ltEs5(vyw4300, vyw4400, bff) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, da), db)) -> new_ltEs12(vyw43001, vyw44001, da, db) 22.92/9.42 new_compare0([], :(vyw44000, vyw44001), h) -> LT 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_[], dad), chf) -> new_esEs12(vyw400, vyw3000, dad) 22.92/9.42 new_asAs(True, vyw116) -> vyw116 22.92/9.42 new_esEs21(vyw401, vyw3001, app(ty_Maybe, cbb)) -> new_esEs6(vyw401, vyw3001, cbb) 22.92/9.42 new_compare10(vyw121, vyw122, False, cch, cda) -> GT 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt13(vyw43000, vyw44000) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(app(ty_@2, bah), bba)) -> new_ltEs8(vyw43002, vyw44002, bah, bba) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_esEs23(vyw401, vyw3001, app(ty_Ratio, cec)) -> new_esEs18(vyw401, vyw3001, cec) 22.92/9.42 new_esEs10(vyw43001, vyw44001, app(ty_Maybe, bcf)) -> new_esEs6(vyw43001, vyw44001, bcf) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs10(vyw43001, vyw44001) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, bfb)) -> new_ltEs5(vyw4300, vyw4400, bfb) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs16(vyw401, vyw3001) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, app(ty_[], dbg)) -> new_esEs12(vyw400, vyw3000, dbg) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs13(vyw43001, vyw44001) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Integer) -> new_esEs9(vyw43001, vyw44001) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Char) -> new_ltEs7(vyw43002, vyw44002) 22.92/9.42 new_compare24(vyw430, vyw440, True, bed, bec) -> EQ 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.92/9.42 new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) 22.92/9.42 new_compare110(vyw43000, vyw44000, False) -> GT 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs19(vyw401, vyw3001) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_primCompAux00(vyw143, EQ) -> vyw143 22.92/9.42 new_compare0([], [], h) -> EQ 22.92/9.42 new_lt20(vyw43000, vyw44000, app(app(ty_Either, ea), eb)) -> new_lt12(vyw43000, vyw44000, ea, eb) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_primMulNat0(Zero, Zero) -> Zero 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Bool) -> new_esEs19(vyw43001, vyw44001) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Integer) -> new_esEs9(vyw43000, vyw44000) 22.92/9.42 new_compare111(vyw43000, vyw44000, False) -> GT 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Double) -> new_esEs16(vyw43000, vyw44000) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_Ratio, bfg)) -> new_ltEs15(vyw43000, vyw44000, bfg) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_[], cgf)) -> new_esEs12(vyw400, vyw3000, cgf) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt10(vyw43000, vyw44000) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(app(ty_Either, cab), cac)) -> new_esEs5(vyw402, vyw3002, cab, cac) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Char) -> new_lt7(vyw43001, vyw44001) 22.92/9.42 new_esEs6(Just(vyw400), Just(vyw3000), app(ty_Ratio, cgh)) -> new_esEs18(vyw400, vyw3000, cgh) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, app(app(ty_Either, dcb), dcc)) -> new_esEs5(vyw400, vyw3000, dcb, dcc) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(ty_Ratio, chc)) -> new_esEs18(vyw43000, vyw44000, chc) 22.92/9.42 new_esEs9(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(ty_Ratio, ddg)) -> new_esEs18(vyw400, vyw3000, ddg) 22.92/9.42 new_ltEs13(EQ, LT) -> False 22.92/9.42 new_compare31(vyw43000, vyw44000, app(app(app(ty_@3, bg), bh), ca)) -> new_compare17(vyw43000, vyw44000, bg, bh, ca) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, gb), eh)) -> new_ltEs12(vyw4300, vyw4400, gb, eh) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(ty_[], hd)) -> new_ltEs6(vyw43000, vyw44000, hd) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Double) -> new_esEs16(vyw43001, vyw44001) 22.92/9.42 new_esEs15(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.92/9.42 new_esEs18(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dcd) -> new_asAs(new_esEs26(vyw400, vyw3000, dcd), new_esEs25(vyw401, vyw3001, dcd)) 22.92/9.42 new_ltEs17(False, False) -> True 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, fg), fh), ga), eh) -> new_ltEs16(vyw43000, vyw44000, fg, fh, ga) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_@0) -> new_ltEs4(vyw43000, vyw44000) 22.92/9.42 new_esEs22(vyw400, vyw3000, app(ty_[], ccc)) -> new_esEs12(vyw400, vyw3000, ccc) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs7(vyw4300, vyw4400) 22.92/9.42 new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, beh), bfa)) -> new_ltEs12(vyw4300, vyw4400, beh, bfa) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(ty_[], dg)) -> new_esEs12(vyw43000, vyw44000, dg) 22.92/9.42 new_esEs14(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) 22.92/9.42 new_compare26(vyw43000, vyw44000, False, ec) -> new_compare112(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000, ec), ec) 22.92/9.42 new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Ordering) -> new_compare18(vyw43000, vyw44000) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(ty_Maybe, bbd)) -> new_ltEs5(vyw43002, vyw44002, bbd) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(ty_[], bag)) -> new_ltEs6(vyw43002, vyw44002, bag) 22.92/9.42 new_compare24(Left(vyw4300), Right(vyw4400), False, bed, bec) -> LT 22.92/9.42 new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(ty_Maybe, bhh)) -> new_esEs6(vyw402, vyw3002, bhh) 22.92/9.42 new_esEs11(vyw43000, vyw44000, ty_Bool) -> new_esEs19(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Left(vyw43000), Left(vyw44000), app(ty_[], eg), eh) -> new_ltEs6(vyw43000, vyw44000, eg) 22.92/9.42 new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False 22.92/9.42 new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) 22.92/9.42 new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) 22.92/9.42 new_esEs12(:(vyw400, vyw401), :(vyw3000, vyw3001), dcg) -> new_asAs(new_esEs28(vyw400, vyw3000, dcg), new_esEs12(vyw401, vyw3001, dcg)) 22.92/9.42 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.92/9.42 new_ltEs17(True, False) -> False 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs7(vyw43000, vyw44000) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Float, chf) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs13(vyw4300, vyw4400) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs14(vyw402, vyw3002) 22.92/9.42 new_ltEs17(False, True) -> True 22.92/9.42 new_esEs13(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) 22.92/9.42 new_compare12(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) 22.92/9.42 new_compare12(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.42 new_compare30(vyw43000, vyw44000, ea, eb) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Float) -> new_esEs15(vyw400, vyw3000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.92/9.42 new_compare24(Left(vyw4300), Left(vyw4400), False, bed, bec) -> new_compare10(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, bed), bed, bec) 22.92/9.42 new_not(False) -> True 22.92/9.42 new_esEs21(vyw401, vyw3001, app(ty_[], cba)) -> new_esEs12(vyw401, vyw3001, cba) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(ty_[], dde)) -> new_esEs12(vyw400, vyw3000, dde) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Double, chf) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs7(vyw402, vyw3002, bhd, bhe, bhf) 22.92/9.42 new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) 22.92/9.42 new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare12(vyw43000, vyw44000), LT) 22.92/9.42 new_compare0(:(vyw43000, vyw43001), [], h) -> GT 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs16(vyw43000, vyw44000, ha, hb, hc) 22.92/9.42 new_esEs8(LT, GT) -> False 22.92/9.42 new_esEs8(GT, LT) -> False 22.92/9.42 new_primPlusNat0(Succ(vyw13800), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat0(vyw13800, vyw3000000))) 22.92/9.42 new_ltEs13(LT, LT) -> True 22.92/9.42 new_esEs20(vyw402, vyw3002, app(ty_Ratio, caa)) -> new_esEs18(vyw402, vyw3002, caa) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs9(vyw400, vyw3000) 22.92/9.42 new_esEs5(Left(vyw400), Right(vyw3000), dba, chf) -> False 22.92/9.42 new_esEs5(Right(vyw400), Left(vyw3000), dba, chf) -> False 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs4(vyw43001, vyw44001) 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Float) -> new_compare7(vyw43000, vyw44000) 22.92/9.42 new_ltEs18(vyw43002, vyw44002, ty_Int) -> new_ltEs9(vyw43002, vyw44002) 22.92/9.42 new_lt4(vyw43001, vyw44001, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt18(vyw43001, vyw44001, bcg, bch, bda) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Bool) -> new_lt19(vyw43001, vyw44001) 22.92/9.42 new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Double) -> new_esEs16(vyw400, vyw3000) 22.92/9.42 new_compare31(vyw43000, vyw44000, app(app(ty_@2, bb), bc)) -> new_compare9(vyw43000, vyw44000, bb, bc) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_@0) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs7(vyw43000, vyw44000, ed, ee, ef) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.92/9.42 new_compare16(vyw43000, vyw44000, False, ed, ee, ef) -> GT 22.92/9.42 new_esEs4(@2(vyw400, vyw401), @2(vyw3000, vyw3001), cdb, cdc) -> new_asAs(new_esEs24(vyw400, vyw3000, cdb), new_esEs23(vyw401, vyw3001, cdc)) 22.92/9.42 new_compare11(vyw128, vyw129, True, chd, che) -> LT 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_@0, chf) -> new_esEs17(vyw400, vyw3000) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), ty_Bool, chf) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_esEs24(vyw400, vyw3000, ty_Bool) -> new_esEs19(vyw400, vyw3000) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(ty_[], bee)) -> new_ltEs6(vyw4300, vyw4400, bee) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, dce)) -> new_ltEs15(vyw43001, vyw44001, dce) 22.92/9.42 new_sr0(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Int) -> new_lt9(vyw43000, vyw44000) 22.92/9.42 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.92/9.42 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.92/9.42 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_@0) -> new_esEs17(vyw43000, vyw44000) 22.92/9.42 new_esEs5(Right(vyw400), Right(vyw3000), dba, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, h), h) 22.92/9.42 new_compare31(vyw43000, vyw44000, ty_Integer) -> new_compare8(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.42 new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs13(vyw400, vyw3000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(app(ty_@2, cb), cc)) -> new_esEs4(vyw43000, vyw44000, cb, cc) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, app(ty_Ratio, bgd)) -> new_ltEs15(vyw43000, vyw44000, bgd) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Int) -> new_esEs14(vyw43000, vyw44000) 22.92/9.42 new_esEs16(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs14(new_sr0(vyw400, vyw3001), new_sr0(vyw401, vyw3000)) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(ty_Maybe, ddf)) -> new_esEs6(vyw400, vyw3000, ddf) 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.92/9.42 new_lt5(vyw43000, vyw44000, app(ty_Maybe, bdg)) -> new_lt16(vyw43000, vyw44000, bdg) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(ty_Ratio, daf), chf) -> new_esEs18(vyw400, vyw3000, daf) 22.92/9.42 new_esEs28(vyw400, vyw3000, app(app(ty_@2, dch), dda)) -> new_esEs4(vyw400, vyw3000, dch, dda) 22.92/9.42 new_compare7(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Float) -> new_lt10(vyw43001, vyw44001) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Char) -> new_lt7(vyw43000, vyw44000) 22.92/9.42 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt14(vyw43000, vyw44000) 22.92/9.42 new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, bge)) -> new_ltEs15(vyw4300, vyw4400, bge) 22.92/9.42 new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) 22.92/9.42 new_ltEs13(LT, EQ) -> True 22.92/9.42 new_compare16(vyw43000, vyw44000, True, ed, ee, ef) -> LT 22.92/9.42 new_lt18(vyw43000, vyw44000, ed, ee, ef) -> new_esEs8(new_compare17(vyw43000, vyw44000, ed, ee, ef), LT) 22.92/9.42 new_lt5(vyw43000, vyw44000, ty_Bool) -> new_lt19(vyw43000, vyw44000) 22.92/9.42 new_esEs27(vyw43000, vyw44000, app(ty_Maybe, ec)) -> new_esEs6(vyw43000, vyw44000, ec) 22.92/9.42 new_esEs10(vyw43001, vyw44001, ty_Char) -> new_esEs13(vyw43001, vyw44001) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) 22.92/9.42 new_lt20(vyw43000, vyw44000, app(ty_Maybe, ec)) -> new_lt16(vyw43000, vyw44000, ec) 22.92/9.42 new_esEs28(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) 22.92/9.42 new_compare15(vyw43000, vyw44000, False, cb, cc) -> GT 22.92/9.42 new_esEs12([], [], dcg) -> True 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs13(vyw43000, vyw44000) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs9(vyw43001, vyw44001) 22.92/9.42 new_ltEs15(vyw4300, vyw4400, bge) -> new_not(new_esEs8(new_compare19(vyw4300, vyw4400, bge), GT)) 22.92/9.42 new_esEs27(vyw43000, vyw44000, ty_Float) -> new_esEs15(vyw43000, vyw44000) 22.92/9.42 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.92/9.42 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.92/9.42 new_ltEs18(vyw43002, vyw44002, app(ty_Ratio, bfh)) -> new_ltEs15(vyw43002, vyw44002, bfh) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs13(vyw402, vyw3002) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, bgf)) -> new_ltEs15(vyw4300, vyw4400, bgf) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_Int) -> new_lt9(vyw43001, vyw44001) 22.92/9.42 new_compare29(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) 22.92/9.42 new_primEqNat0(Zero, Zero) -> True 22.92/9.42 new_esEs28(vyw400, vyw3000, app(app(ty_Either, ddh), dea)) -> new_esEs5(vyw400, vyw3000, ddh, dea) 22.92/9.42 new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs9(vyw4300, vyw4400) 22.92/9.42 new_lt4(vyw43001, vyw44001, app(ty_[], bbh)) -> new_lt6(vyw43001, vyw44001, bbh) 22.92/9.42 new_ltEs8(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, dh) -> new_pePe(new_lt20(vyw43000, vyw44000, cd), new_asAs(new_esEs27(vyw43000, vyw44000, cd), new_ltEs21(vyw43001, vyw44001, dh))) 22.92/9.42 new_lt20(vyw43000, vyw44000, app(ty_[], dg)) -> new_lt6(vyw43000, vyw44000, dg) 22.92/9.42 new_lt5(vyw43000, vyw44000, app(app(app(ty_@3, bdh), bea), beb)) -> new_lt18(vyw43000, vyw44000, bdh, bea, beb) 22.92/9.42 new_ltEs17(True, True) -> True 22.92/9.42 new_asAs(False, vyw116) -> False 22.92/9.42 new_compare18(vyw43000, vyw44000) -> new_compare28(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) 22.92/9.42 new_lt4(vyw43001, vyw44001, ty_@0) -> new_lt14(vyw43001, vyw44001) 22.92/9.42 new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs13(vyw401, vyw3001) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), app(app(ty_Either, hg), hh)) -> new_ltEs12(vyw43000, vyw44000, hg, hh) 22.92/9.42 new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs9(vyw402, vyw3002) 22.92/9.42 new_ltEs5(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) 22.92/9.42 new_esEs8(EQ, GT) -> False 22.92/9.42 new_esEs8(GT, EQ) -> False 22.92/9.42 new_compare112(vyw43000, vyw44000, False, ec) -> GT 22.92/9.42 new_lt4(vyw43001, vyw44001, app(ty_Maybe, bcf)) -> new_lt16(vyw43001, vyw44001, bcf) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_Float) -> new_ltEs10(vyw43000, vyw44000) 22.92/9.42 new_ltEs12(Right(vyw43000), Right(vyw44000), gb, ty_Integer) -> new_ltEs14(vyw43000, vyw44000) 22.92/9.42 new_compare31(vyw43000, vyw44000, app(app(ty_Either, bd), be)) -> new_compare30(vyw43000, vyw44000, bd, be) 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, dc)) -> new_ltEs5(vyw43001, vyw44001, dc) 22.92/9.42 new_esEs19(True, True) -> True 22.92/9.42 new_ltEs21(vyw43001, vyw44001, app(ty_[], ce)) -> new_ltEs6(vyw43001, vyw44001, ce) 22.92/9.42 new_compare19(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) 22.92/9.42 new_esEs5(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, daa), dab), dac), chf) -> new_esEs7(vyw400, vyw3000, daa, dab, dac) 22.92/9.42 22.92/9.42 The set Q consists of the following terms: 22.92/9.42 22.92/9.42 new_ltEs20(x0, x1, ty_@0) 22.92/9.42 new_lt4(x0, x1, ty_@0) 22.92/9.42 new_esEs8(EQ, EQ) 22.92/9.42 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs22(x0, x1, app(ty_[], x2)) 22.92/9.42 new_compare6(x0, x1) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.92/9.42 new_ltEs6(x0, x1, x2) 22.92/9.42 new_ltEs19(x0, x1, ty_Float) 22.92/9.42 new_ltEs21(x0, x1, ty_Double) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.92/9.42 new_primPlusNat0(Zero, Succ(x0)) 22.92/9.42 new_esEs20(x0, x1, ty_Char) 22.92/9.42 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs23(x0, x1, ty_Double) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Double) 22.92/9.42 new_primPlusNat1(Succ(x0), x1) 22.92/9.42 new_lt4(x0, x1, ty_Bool) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.92/9.42 new_ltEs20(x0, x1, ty_Bool) 22.92/9.42 new_compare110(x0, x1, False) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.92/9.42 new_compare10(x0, x1, True, x2, x3) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.92/9.42 new_esEs20(x0, x1, ty_Int) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.92/9.42 new_esEs21(x0, x1, ty_Ordering) 22.92/9.42 new_esEs19(False, False) 22.92/9.42 new_lt5(x0, x1, ty_Char) 22.92/9.42 new_compare9(x0, x1, x2, x3) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Int) 22.92/9.42 new_ltEs5(Nothing, Nothing, x0) 22.92/9.42 new_esEs27(x0, x1, app(ty_[], x2)) 22.92/9.42 new_primEqInt(Pos(Zero), Pos(Zero)) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.92/9.42 new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs14(x0, x1) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.92/9.42 new_compare24(x0, x1, True, x2, x3) 22.92/9.42 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.92/9.42 new_primCompAux0(x0, x1, x2, x3) 22.92/9.42 new_esEs23(x0, x1, ty_Ordering) 22.92/9.42 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_ltEs13(EQ, EQ) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 22.92/9.42 new_compare25(x0, x1, True, x2, x3) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.92/9.42 new_esEs23(x0, x1, ty_Int) 22.92/9.42 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs6(Nothing, Nothing, x0) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.92/9.42 new_esEs22(x0, x1, ty_Double) 22.92/9.42 new_esEs20(x0, x1, ty_Double) 22.92/9.42 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Zero)) 22.92/9.42 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 22.92/9.42 new_esEs12(:(x0, x1), [], x2) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.92/9.42 new_ltEs5(Just(x0), Nothing, x1) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.92/9.42 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs25(x0, x1, ty_Int) 22.92/9.42 new_lt5(x0, x1, ty_Bool) 22.92/9.42 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.92/9.42 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.92/9.42 new_lt20(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs23(x0, x1, ty_Char) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.92/9.42 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.92/9.42 new_lt4(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs20(x0, x1, ty_Char) 22.92/9.42 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs18(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.92/9.42 new_compare29(Char(x0), Char(x1)) 22.92/9.42 new_pePe(True, x0) 22.92/9.42 new_ltEs17(True, True) 22.92/9.42 new_lt5(x0, x1, ty_Double) 22.92/9.42 new_primCompAux00(x0, EQ) 22.92/9.42 new_esEs12(:(x0, x1), :(x2, x3), x4) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.92/9.42 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_compare18(x0, x1) 22.92/9.42 new_compare26(x0, x1, True, x2) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.92/9.42 new_primEqInt(Pos(Zero), Neg(Zero)) 22.92/9.42 new_primEqInt(Neg(Zero), Pos(Zero)) 22.92/9.42 new_lt16(x0, x1, x2) 22.92/9.42 new_esEs20(x0, x1, ty_Ordering) 22.92/9.42 new_primPlusNat1(Zero, x0) 22.92/9.42 new_primCompAux00(x0, LT) 22.92/9.42 new_ltEs7(x0, x1) 22.92/9.42 new_ltEs21(x0, x1, ty_Ordering) 22.92/9.42 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.92/9.42 new_lt5(x0, x1, ty_Int) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 22.92/9.42 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.92/9.42 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.92/9.42 new_primCmpNat0(Succ(x0), Succ(x1)) 22.92/9.42 new_lt5(x0, x1, ty_@0) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 22.92/9.42 new_esEs24(x0, x1, ty_Ordering) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.92/9.42 new_compare25(x0, x1, False, x2, x3) 22.92/9.42 new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) 22.92/9.42 new_ltEs19(x0, x1, ty_Integer) 22.92/9.42 new_ltEs13(LT, GT) 22.92/9.42 new_ltEs13(GT, LT) 22.92/9.42 new_ltEs5(Nothing, Just(x0), x1) 22.92/9.42 new_ltEs18(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_ltEs20(x0, x1, ty_Int) 22.92/9.42 new_esEs24(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs15(x0, x1, x2) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Integer) 22.92/9.42 new_compare0([], [], x0) 22.92/9.42 new_compare31(x0, x1, ty_Float) 22.92/9.42 new_compare7(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.92/9.42 new_compare112(x0, x1, False, x2) 22.92/9.42 new_ltEs19(x0, x1, ty_@0) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.92/9.42 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_lt6(x0, x1, x2) 22.92/9.42 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare12(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.92/9.42 new_esEs27(x0, x1, ty_Int) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs11(x0, x1, ty_Float) 22.92/9.42 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.92/9.42 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare10(x0, x1, False, x2, x3) 22.92/9.42 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.92/9.42 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.92/9.42 new_esEs26(x0, x1, ty_Int) 22.92/9.42 new_esEs17(@0, @0) 22.92/9.42 new_compare12(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.92/9.42 new_esEs27(x0, x1, ty_Ordering) 22.92/9.42 new_esEs10(x0, x1, ty_Char) 22.92/9.42 new_esEs23(x0, x1, ty_Bool) 22.92/9.42 new_ltEs8(@2(x0, x1), @2(x2, x3), x4, x5) 22.92/9.42 new_esEs11(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_lt4(x0, x1, ty_Float) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 22.92/9.42 new_ltEs21(x0, x1, ty_Bool) 22.92/9.42 new_compare24(Right(x0), Left(x1), False, x2, x3) 22.92/9.42 new_compare24(Left(x0), Right(x1), False, x2, x3) 22.92/9.42 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.92/9.42 new_esEs11(x0, x1, ty_Double) 22.92/9.42 new_esEs28(x0, x1, ty_Int) 22.92/9.42 new_lt20(x0, x1, ty_Float) 22.92/9.42 new_esEs21(x0, x1, ty_@0) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 22.92/9.42 new_esEs27(x0, x1, ty_Char) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 22.92/9.42 new_esEs10(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.92/9.42 new_ltEs9(x0, x1) 22.92/9.42 new_ltEs18(x0, x1, ty_Ordering) 22.92/9.42 new_compare31(x0, x1, ty_Int) 22.92/9.42 new_lt20(x0, x1, ty_Int) 22.92/9.42 new_esEs22(x0, x1, ty_Int) 22.92/9.42 new_lt14(x0, x1) 22.92/9.42 new_esEs20(x0, x1, ty_Bool) 22.92/9.42 new_esEs19(False, True) 22.92/9.42 new_esEs19(True, False) 22.92/9.42 new_ltEs21(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs28(x0, x1, ty_Char) 22.92/9.42 new_compare17(x0, x1, x2, x3, x4) 22.92/9.42 new_lt4(x0, x1, ty_Ordering) 22.92/9.42 new_lt4(x0, x1, ty_Int) 22.92/9.42 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_lt20(x0, x1, ty_Char) 22.92/9.42 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_lt18(x0, x1, x2, x3, x4) 22.92/9.42 new_esEs22(x0, x1, ty_Char) 22.92/9.42 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.92/9.42 new_primEqNat0(Zero, Succ(x0)) 22.92/9.42 new_ltEs18(x0, x1, ty_Double) 22.92/9.42 new_compare31(x0, x1, ty_Char) 22.92/9.42 new_esEs8(GT, GT) 22.92/9.42 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.92/9.42 new_esEs8(LT, EQ) 22.92/9.42 new_esEs8(EQ, LT) 22.92/9.42 new_esEs10(x0, x1, ty_Int) 22.92/9.42 new_esEs22(x0, x1, ty_Ordering) 22.92/9.42 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.92/9.42 new_esEs24(x0, x1, ty_Double) 22.92/9.42 new_lt4(x0, x1, ty_Char) 22.92/9.42 new_ltEs18(x0, x1, ty_@0) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.92/9.42 new_lt7(x0, x1) 22.92/9.42 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs8(LT, LT) 22.92/9.42 new_esEs25(x0, x1, ty_Integer) 22.92/9.42 new_compare24(Right(x0), Right(x1), False, x2, x3) 22.92/9.42 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.92/9.42 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.92/9.42 new_primPlusNat0(Succ(x0), Zero) 22.92/9.42 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Char) 22.92/9.42 new_ltEs21(x0, x1, ty_Char) 22.92/9.42 new_ltEs17(True, False) 22.92/9.42 new_ltEs17(False, True) 22.92/9.42 new_lt4(x0, x1, ty_Integer) 22.92/9.42 new_compare11(x0, x1, False, x2, x3) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.92/9.42 new_compare16(x0, x1, True, x2, x3, x4) 22.92/9.42 new_esEs11(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(ty_[], x2)) 22.92/9.42 new_ltEs20(x0, x1, ty_Integer) 22.92/9.42 new_ltEs18(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs22(x0, x1, ty_Bool) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.92/9.42 new_esEs10(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs10(x0, x1, ty_Bool) 22.92/9.42 new_asAs(False, x0) 22.92/9.42 new_esEs28(x0, x1, ty_Ordering) 22.92/9.42 new_esEs18(:%(x0, x1), :%(x2, x3), x4) 22.92/9.42 new_esEs22(x0, x1, ty_Integer) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 22.92/9.42 new_compare31(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_pePe(False, x0) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_@0) 22.92/9.42 new_sr0(x0, x1) 22.92/9.42 new_lt13(x0, x1) 22.92/9.42 new_esEs27(x0, x1, ty_Integer) 22.92/9.42 new_compare0(:(x0, x1), [], x2) 22.92/9.42 new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_ltEs20(x0, x1, ty_Ordering) 22.92/9.42 new_lt4(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs20(x0, x1, ty_Float) 22.92/9.42 new_ltEs11(x0, x1) 22.92/9.42 new_esEs16(Double(x0, x1), Double(x2, x3)) 22.92/9.42 new_esEs24(x0, x1, ty_@0) 22.92/9.42 new_compare24(Left(x0), Left(x1), False, x2, x3) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.92/9.42 new_lt19(x0, x1) 22.92/9.42 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_compare15(x0, x1, True, x2, x3) 22.92/9.42 new_esEs28(x0, x1, ty_Integer) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 22.92/9.42 new_ltEs21(x0, x1, ty_Int) 22.92/9.42 new_esEs21(x0, x1, ty_Double) 22.92/9.42 new_primMulNat0(Succ(x0), Zero) 22.92/9.42 new_lt20(x0, x1, ty_Bool) 22.92/9.42 new_esEs11(x0, x1, ty_@0) 22.92/9.42 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_compare112(x0, x1, True, x2) 22.92/9.42 new_lt12(x0, x1, x2, x3) 22.92/9.42 new_esEs6(Nothing, Just(x0), x1) 22.92/9.42 new_esEs28(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs7(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.92/9.42 new_ltEs18(x0, x1, ty_Integer) 22.92/9.42 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs19(x0, x1, ty_Double) 22.92/9.42 new_esEs26(x0, x1, ty_Integer) 22.92/9.42 new_ltEs12(Left(x0), Right(x1), x2, x3) 22.92/9.42 new_ltEs12(Right(x0), Left(x1), x2, x3) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.92/9.42 new_esEs21(x0, x1, ty_Float) 22.92/9.42 new_esEs5(Left(x0), Right(x1), x2, x3) 22.92/9.42 new_esEs5(Right(x0), Left(x1), x2, x3) 22.92/9.42 new_compare31(x0, x1, ty_Bool) 22.92/9.42 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_compare111(x0, x1, False) 22.92/9.42 new_lt20(x0, x1, ty_@0) 22.92/9.42 new_esEs20(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs23(x0, x1, ty_Float) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Ordering) 22.92/9.42 new_primEqNat0(Succ(x0), Succ(x1)) 22.92/9.42 new_ltEs19(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.92/9.42 new_primMulNat0(Zero, Zero) 22.92/9.42 new_compare27(x0, x1, False, x2, x3, x4) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.92/9.42 new_esEs24(x0, x1, ty_Integer) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.92/9.42 new_esEs27(x0, x1, ty_Bool) 22.92/9.42 new_compare5(@0, @0) 22.92/9.42 new_compare31(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Int) 22.92/9.42 new_compare31(x0, x1, ty_@0) 22.92/9.42 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs21(x0, x1, ty_Float) 22.92/9.42 new_esEs10(x0, x1, ty_Integer) 22.92/9.42 new_sr(Integer(x0), Integer(x1)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_Float) 22.92/9.42 new_esEs9(Integer(x0), Integer(x1)) 22.92/9.42 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Char) 22.92/9.42 new_esEs12([], [], x0) 22.92/9.42 new_esEs28(x0, x1, ty_Bool) 22.92/9.42 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Double) 22.92/9.42 new_ltEs16(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.92/9.42 new_primMulNat0(Succ(x0), Succ(x1)) 22.92/9.42 new_esEs11(x0, x1, ty_Bool) 22.92/9.42 new_esEs13(Char(x0), Char(x1)) 22.92/9.42 new_esEs10(x0, x1, ty_@0) 22.92/9.42 new_compare28(x0, x1, False) 22.92/9.42 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_compare14(x0, x1, x2) 22.92/9.42 new_ltEs20(x0, x1, app(ty_[], x2)) 22.92/9.42 new_esEs10(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_primPlusNat0(Zero, Zero) 22.92/9.42 new_asAs(True, x0) 22.92/9.42 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.92/9.42 new_not(True) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.92/9.42 new_esEs11(x0, x1, ty_Char) 22.92/9.42 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_ltEs4(x0, x1) 22.92/9.42 new_primEqNat0(Succ(x0), Zero) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.92/9.42 new_primMulNat0(Zero, Succ(x0)) 22.92/9.42 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.92/9.42 new_esEs8(EQ, GT) 22.92/9.42 new_esEs8(GT, EQ) 22.92/9.42 new_ltEs13(EQ, GT) 22.92/9.42 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_ltEs13(GT, EQ) 22.92/9.42 new_lt5(x0, x1, ty_Float) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.92/9.42 new_esEs28(x0, x1, ty_@0) 22.92/9.42 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs22(x0, x1, ty_@0) 22.92/9.42 new_compare31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs22(x0, x1, ty_Float) 22.92/9.42 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_esEs10(x0, x1, ty_Float) 22.92/9.42 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_lt20(x0, x1, ty_Integer) 22.92/9.42 new_esEs23(x0, x1, ty_Integer) 22.92/9.42 new_ltEs18(x0, x1, ty_Bool) 22.92/9.42 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs27(x0, x1, ty_@0) 22.92/9.42 new_ltEs21(x0, x1, ty_Integer) 22.92/9.42 new_ltEs10(x0, x1) 22.92/9.42 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.92/9.42 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_compare0([], :(x0, x1), x2) 22.92/9.42 new_compare210(x0, x1, True) 22.92/9.42 new_ltEs13(LT, LT) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.92/9.42 new_compare31(x0, x1, ty_Integer) 22.92/9.42 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare31(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs27(x0, x1, ty_Float) 22.92/9.42 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_primCompAux00(x0, GT) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 22.92/9.42 new_esEs11(x0, x1, ty_Int) 22.92/9.42 new_compare28(x0, x1, True) 22.92/9.42 new_esEs19(True, True) 22.92/9.42 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 22.92/9.42 new_esEs28(x0, x1, ty_Float) 22.92/9.42 new_primMulInt(Pos(x0), Pos(x1)) 22.92/9.42 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.92/9.42 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.92/9.42 new_esEs12([], :(x0, x1), x2) 22.92/9.42 new_primCmpNat0(Succ(x0), Zero) 22.92/9.42 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_compare111(x0, x1, True) 22.92/9.42 new_compare7(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.92/9.42 new_compare7(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.92/9.42 new_compare31(x0, x1, app(ty_[], x2)) 22.92/9.42 new_compare31(x0, x1, ty_Double) 22.92/9.42 new_ltEs21(x0, x1, ty_@0) 22.92/9.42 new_compare7(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.92/9.42 new_esEs20(x0, x1, ty_Integer) 22.92/9.42 new_lt4(x0, x1, ty_Double) 22.92/9.42 new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_lt20(x0, x1, ty_Double) 22.92/9.42 new_esEs21(x0, x1, ty_Bool) 22.92/9.42 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.92/9.42 new_ltEs20(x0, x1, ty_Double) 22.92/9.42 new_esEs24(x0, x1, ty_Char) 22.92/9.42 new_esEs6(Just(x0), Just(x1), ty_@0) 22.92/9.42 new_ltEs19(x0, x1, ty_Bool) 22.92/9.42 new_esEs23(x0, x1, ty_@0) 22.92/9.42 new_lt20(x0, x1, ty_Ordering) 22.92/9.42 new_lt8(x0, x1, x2, x3) 22.92/9.42 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_compare13(x0, x1) 22.92/9.42 new_ltEs13(GT, GT) 22.92/9.42 new_compare31(x0, x1, ty_Ordering) 22.92/9.42 new_ltEs20(x0, x1, ty_Float) 22.92/9.42 new_compare110(x0, x1, True) 22.92/9.42 new_lt4(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs8(LT, GT) 22.92/9.42 new_esEs8(GT, LT) 22.92/9.42 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 22.92/9.42 new_esEs11(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs13(EQ, LT) 22.92/9.42 new_ltEs13(LT, EQ) 22.92/9.42 new_compare8(Integer(x0), Integer(x1)) 22.92/9.42 new_primMulInt(Neg(x0), Neg(x1)) 22.92/9.42 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.92/9.42 new_esEs6(Just(x0), Nothing, x1) 22.92/9.42 new_primMulInt(Pos(x0), Neg(x1)) 22.92/9.42 new_primMulInt(Neg(x0), Pos(x1)) 22.92/9.42 new_lt15(x0, x1) 22.92/9.42 new_lt5(x0, x1, app(ty_[], x2)) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.92/9.42 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare11(x0, x1, True, x2, x3) 22.92/9.42 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_lt17(x0, x1, x2) 22.92/9.42 new_esEs28(x0, x1, ty_Double) 22.92/9.42 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 22.92/9.42 new_compare210(x0, x1, False) 22.92/9.42 new_esEs10(x0, x1, ty_Double) 22.92/9.42 new_esEs21(x0, x1, app(ty_[], x2)) 22.92/9.42 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.92/9.42 new_esEs21(x0, x1, ty_Integer) 22.92/9.42 new_compare15(x0, x1, False, x2, x3) 22.92/9.42 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.92/9.42 new_lt9(x0, x1) 22.92/9.42 new_compare16(x0, x1, False, x2, x3, x4) 22.92/9.42 new_ltEs18(x0, x1, ty_Int) 22.92/9.42 new_compare27(x0, x1, True, x2, x3, x4) 22.92/9.42 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_compare12(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.92/9.42 new_compare12(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), ty_Bool) 22.92/9.42 new_compare30(x0, x1, x2, x3) 22.92/9.42 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.92/9.42 new_ltEs18(x0, x1, ty_Char) 22.92/9.42 new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.42 new_lt11(x0, x1) 22.92/9.42 new_esEs27(x0, x1, ty_Double) 22.92/9.42 new_lt10(x0, x1) 22.92/9.42 new_ltEs19(x0, x1, ty_Char) 22.92/9.42 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_primEqNat0(Zero, Zero) 22.92/9.42 new_esEs15(Float(x0, x1), Float(x2, x3)) 22.92/9.42 new_esEs24(x0, x1, ty_Float) 22.92/9.42 new_ltEs5(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.92/9.42 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.92/9.42 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.42 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.92/9.42 new_not(False) 22.92/9.42 new_ltEs19(x0, x1, app(ty_[], x2)) 22.92/9.43 new_esEs10(x0, x1, app(ty_Ratio, x2)) 22.92/9.43 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.92/9.43 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.92/9.43 new_esEs24(x0, x1, ty_Bool) 22.92/9.43 new_esEs11(x0, x1, ty_Integer) 22.92/9.43 new_ltEs17(False, False) 22.92/9.43 new_compare31(x0, x1, app(app(ty_Either, x2), x3)) 22.92/9.43 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.43 new_ltEs18(x0, x1, ty_Float) 22.92/9.43 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.43 new_esEs20(x0, x1, ty_@0) 22.92/9.43 new_ltEs19(x0, x1, ty_Int) 22.92/9.43 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.92/9.43 new_esEs23(x0, x1, app(ty_[], x2)) 22.92/9.43 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 22.92/9.43 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.92/9.43 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.92/9.43 new_compare26(x0, x1, False, x2) 22.92/9.43 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 22.92/9.43 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.92/9.43 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.92/9.43 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.43 new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) 22.92/9.43 new_esEs21(x0, x1, ty_Int) 22.92/9.43 new_lt5(x0, x1, ty_Integer) 22.92/9.43 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.92/9.43 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 22.92/9.43 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 22.92/9.43 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.92/9.43 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.92/9.43 new_compare0(:(x0, x1), :(x2, x3), x4) 22.92/9.43 new_lt5(x0, x1, ty_Ordering) 22.92/9.43 new_ltEs14(x0, x1) 22.92/9.43 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.92/9.43 new_primCmpNat0(Zero, Zero) 22.92/9.43 new_esEs24(x0, x1, ty_Int) 22.92/9.43 new_esEs11(x0, x1, ty_Ordering) 22.92/9.43 new_esEs21(x0, x1, ty_Char) 22.92/9.43 new_primCmpNat0(Zero, Succ(x0)) 22.92/9.43 new_primPlusNat0(Succ(x0), Succ(x1)) 22.92/9.43 new_ltEs5(Just(x0), Just(x1), ty_Float) 22.92/9.43 22.92/9.43 We have to consider all minimal (P,Q,R)-chains. 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (30) QDPSizeChangeProof (EQUIVALENT) 22.92/9.43 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 22.92/9.43 22.92/9.43 From the DPs we obtained the following set of size-change graphs: 22.92/9.43 *new_lt0(vyw43000, vyw44000, cb, cc) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_lt(vyw43000, vyw44000, dg) -> new_compare(vyw43000, vyw44000, dg) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare22(vyw43000, vyw44000, False, ec) -> new_ltEs2(vyw43000, vyw44000, ec) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs2(Just(vyw43000), Just(vyw44000), app(ty_[], hd)) -> new_ltEs0(vyw43000, vyw44000, hd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs2(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs3(vyw43000, vyw44000, bab, bac, bad) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs2(Just(vyw43000), Just(vyw44000), app(app(ty_@2, he), hf)) -> new_ltEs(vyw43000, vyw44000, he, hf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_lt2(vyw43000, vyw44000, ec) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs2(Just(vyw43000), Just(vyw44000), app(app(ty_Either, hg), hh)) -> new_ltEs1(vyw43000, vyw44000, hg, hh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs2(Just(vyw43000), Just(vyw44000), app(ty_Maybe, baa)) -> new_ltEs2(vyw43000, vyw44000, baa) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(ty_[], ce)) -> new_ltEs0(vyw43001, vyw44001, ce) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, ea), eb), dh) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(app(app(ty_@3, dd), de), df)) -> new_ltEs3(vyw43001, vyw44001, dd, de, df) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(app(ty_@2, cf), cg)) -> new_ltEs(vyw43001, vyw44001, cf, cg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(app(ty_Either, da), db)) -> new_ltEs1(vyw43001, vyw44001, da, db) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_lt3(vyw43000, vyw44000, ed, ee, ef) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(ty_[], bag)) -> new_ltEs0(vyw43002, vyw44002, bag) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf, bbg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(app(ty_@2, bah), bba)) -> new_ltEs(vyw43002, vyw44002, bah, bba) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(app(ty_Either, bbb), bbc)) -> new_ltEs1(vyw43002, vyw44002, bbb, bbc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), cd, app(ty_Maybe, dc)) -> new_ltEs2(vyw43001, vyw44001, dc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, baf, app(ty_Maybe, bbd)) -> new_ltEs2(vyw43002, vyw44002, bbd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_lt1(vyw43000, vyw44000, ea, eb) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_primCompAux(vyw43000, vyw44000, vyw139, app(app(ty_Either, bd), be)) -> new_compare2(vyw43000, vyw44000, bd, be) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, ea), eb)), dh), bec) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare2(vyw43000, vyw44000, ea, eb) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ea, eb), ea, eb) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare23(vyw43000, vyw44000, False, ed, ee, ef) -> new_ltEs3(vyw43000, vyw44000, ed, ee, ef) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare20(vyw43000, vyw44000, False, cb, cc) -> new_ltEs(vyw43000, vyw44000, cb, cc) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, ec), dh) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, ec)), dh), bec) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare3(vyw43000, vyw44000, ec) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ec), ec) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, cb), cc), dh) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, cb), cc)), dh), bec) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare1(vyw43000, vyw44000, cb, cc) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cb, cc), cb, cc) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare4(vyw43000, vyw44000, ed, ee, ef) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, h), h) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_compare(vyw43001, vyw44001, h) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], h), bec) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, h), h) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, h), h) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), h) -> new_compare(vyw43001, vyw44001, h) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_primCompAux(vyw43000, vyw44000, vyw139, app(ty_Maybe, bf)) -> new_compare3(vyw43000, vyw44000, bf) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_primCompAux(vyw43000, vyw44000, vyw139, app(ty_[], ba)) -> new_compare(vyw43000, vyw44000, ba) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], dg), dh) -> new_compare(vyw43000, vyw44000, dg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, ed), ee), ef), dh) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 22.92/9.43 22.92/9.43 22.92/9.43 *new_primCompAux(vyw43000, vyw44000, vyw139, app(app(app(ty_@3, bg), bh), ca)) -> new_compare4(vyw43000, vyw44000, bg, bh, ca) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_primCompAux(vyw43000, vyw44000, vyw139, app(app(ty_@2, bb), bc)) -> new_compare1(vyw43000, vyw44000, bb, bc) 22.92/9.43 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, ed), ee), ef)), dh), bec) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Left(vyw43000), Left(vyw44000), app(ty_[], eg), eh) -> new_ltEs0(vyw43000, vyw44000, eg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(ty_[], gc)) -> new_ltEs0(vyw43000, vyw44000, gc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(ty_[], gc)), bec) -> new_ltEs0(vyw43000, vyw44000, gc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(ty_[], bag)), bec) -> new_ltEs0(vyw43002, vyw44002, bag) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(ty_[], ce)), bec) -> new_ltEs0(vyw43001, vyw44001, ce) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], eg)), eh), bec) -> new_ltEs0(vyw43000, vyw44000, eg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_[], bee)) -> new_ltEs0(vyw4300, vyw4400, bee) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], hd)), bec) -> new_ltEs0(vyw43000, vyw44000, hd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, fg), fh), ga), eh) -> new_ltEs3(vyw43000, vyw44000, fg, fh, ga) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs3(vyw43000, vyw44000, ha, hb, hc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(app(app(ty_@3, dd), de), df)), bec) -> new_ltEs3(vyw43001, vyw44001, dd, de, df) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_ltEs3(vyw4300, vyw4400, bfc, bfd, bfe) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(app(app(ty_@3, ha), hb), hc)), bec) -> new_ltEs3(vyw43000, vyw44000, ha, hb, hc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(app(app(ty_@3, bbe), bbf), bbg)), bec) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf, bbg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bab), bac), bad)), bec) -> new_ltEs3(vyw43000, vyw44000, bab, bac, bad) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, fg), fh), ga)), eh), bec) -> new_ltEs3(vyw43000, vyw44000, fg, fh, ga) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(ty_Maybe, bcf), bca) -> new_lt2(vyw43001, vyw44001, bcf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, bdg), baf, bca) -> new_lt2(vyw43000, vyw44000, bdg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(ty_Maybe, bcf)), bca), bec) -> new_lt2(vyw43001, vyw44001, bcf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, bdg)), baf), bca), bec) -> new_lt2(vyw43000, vyw44000, bdg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(app(ty_@2, gd), ge)) -> new_ltEs(vyw43000, vyw44000, gd, ge) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Left(vyw43000), Left(vyw44000), app(app(ty_@2, fa), fb), eh) -> new_ltEs(vyw43000, vyw44000, fa, fb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(app(ty_Either, gf), gg)) -> new_ltEs1(vyw43000, vyw44000, gf, gg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Left(vyw43000), Left(vyw44000), app(app(ty_Either, fc), fd), eh) -> new_ltEs1(vyw43000, vyw44000, fc, fd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ff), eh) -> new_ltEs2(vyw43000, vyw44000, ff) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs1(Right(vyw43000), Right(vyw44000), gb, app(ty_Maybe, gh)) -> new_ltEs2(vyw43000, vyw44000, gh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(app(ty_@2, gd), ge)), bec) -> new_ltEs(vyw43000, vyw44000, gd, ge) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, bef), beg)) -> new_ltEs(vyw4300, vyw4400, bef, beg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, he), hf)), bec) -> new_ltEs(vyw43000, vyw44000, he, hf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_@2, bah), bba)), bec) -> new_ltEs(vyw43002, vyw44002, bah, bba) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(app(ty_@2, cf), cg)), bec) -> new_ltEs(vyw43001, vyw44001, cf, cg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, fa), fb)), eh), bec) -> new_ltEs(vyw43000, vyw44000, fa, fb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(app(ty_Either, da), db)), bec) -> new_ltEs1(vyw43001, vyw44001, da, db) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, fc), fd)), eh), bec) -> new_ltEs1(vyw43000, vyw44000, fc, fd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, beh), bfa)) -> new_ltEs1(vyw4300, vyw4400, beh, bfa) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(app(ty_Either, gf), gg)), bec) -> new_ltEs1(vyw43000, vyw44000, gf, gg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(app(ty_Either, bbb), bbc)), bec) -> new_ltEs1(vyw43002, vyw44002, bbb, bbc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, hg), hh)), bec) -> new_ltEs1(vyw43000, vyw44000, hg, hh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_@2, bdc), bdd), baf, bca) -> new_lt0(vyw43000, vyw44000, bdc, bdd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(app(ty_@2, bcb), bcc), bca) -> new_lt0(vyw43001, vyw44001, bcb, bcc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(ty_[], bbh), bca) -> new_lt(vyw43001, vyw44001, bbh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], bdb), baf, bca) -> new_lt(vyw43000, vyw44000, bdb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, bdh), bea), beb), baf, bca) -> new_lt3(vyw43000, vyw44000, bdh, bea, beb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(app(app(ty_@3, bcg), bch), bda), bca) -> new_lt3(vyw43001, vyw44001, bcg, bch, bda) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, bde), bdf), baf, bca) -> new_lt1(vyw43000, vyw44000, bde, bdf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_ltEs3(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), bae, app(app(ty_Either, bcd), bce), bca) -> new_lt1(vyw43001, vyw44001, bcd, bce) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, baa)), bec) -> new_ltEs2(vyw43000, vyw44000, baa) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, ff)), eh), bec) -> new_ltEs2(vyw43000, vyw44000, ff) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, gb), app(ty_Maybe, gh)), bec) -> new_ltEs2(vyw43000, vyw44000, gh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, cd), app(ty_Maybe, dc)), bec) -> new_ltEs2(vyw43001, vyw44001, dc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_Maybe, bfb)) -> new_ltEs2(vyw4300, vyw4400, bfb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), baf), app(ty_Maybe, bbd)), bec) -> new_ltEs2(vyw43002, vyw44002, bbd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, bdc), bdd)), baf), bca), bec) -> new_lt0(vyw43000, vyw44000, bdc, bdd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(app(ty_@2, bcb), bcc)), bca), bec) -> new_lt0(vyw43001, vyw44001, bcb, bcc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(ty_[], bbh)), bca), bec) -> new_lt(vyw43001, vyw44001, bbh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], bdb)), baf), bca), bec) -> new_lt(vyw43000, vyw44000, bdb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], dg)), dh), bec) -> new_compare(vyw43000, vyw44000, dg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], h), bec) -> new_compare(vyw43001, vyw44001, h) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(app(app(ty_@3, bcg), bch), bda)), bca), bec) -> new_lt3(vyw43001, vyw44001, bcg, bch, bda) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bdh), bea), beb)), baf), bca), bec) -> new_lt3(vyw43000, vyw44000, bdh, bea, beb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, bde), bdf)), baf), bca), bec) -> new_lt1(vyw43000, vyw44000, bde, bdf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, bae), app(app(ty_Either, bcd), bce)), bca), bec) -> new_lt1(vyw43001, vyw44001, bcd, bce) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (31) 22.92/9.43 YES 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (32) 22.92/9.43 Obligation: 22.92/9.43 Q DP problem: 22.92/9.43 The TRS P consists of the following rules: 22.92/9.43 22.92/9.43 new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) 22.92/9.43 22.92/9.43 R is empty. 22.92/9.43 Q is empty. 22.92/9.43 We have to consider all minimal (P,Q,R)-chains. 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (33) QDPSizeChangeProof (EQUIVALENT) 22.92/9.43 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 22.92/9.43 22.92/9.43 From the DPs we obtained the following set of size-change graphs: 22.92/9.43 *new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) 22.92/9.43 The graph contains the following edges 1 > 1, 2 >= 2 22.92/9.43 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (34) 22.92/9.43 YES 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (35) 22.92/9.43 Obligation: 22.92/9.43 Q DP problem: 22.92/9.43 The TRS P consists of the following rules: 22.92/9.43 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_[], bf)) -> new_esEs1(vyw401, vyw3001, bf) 22.92/9.43 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bbc)) -> new_esEs1(vyw400, vyw3000, bbc) 22.92/9.43 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vyw400, vyw3000, bcg, bch) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_Maybe, fh), fb) -> new_esEs2(vyw401, vyw3001, fh) 22.92/9.43 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bac)) -> new_esEs2(vyw400, vyw3000, bac) 22.92/9.43 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bdg)) -> new_esEs1(vyw400, vyw3000, bdg) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, ha), df, fb) -> new_esEs2(vyw400, vyw3000, ha) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_Either, ga), gb), fb) -> new_esEs3(vyw401, vyw3001, ga, gb) 22.92/9.43 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) 22.92/9.43 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, baf), bag)) -> new_esEs(vyw400, vyw3000, baf, bag) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, cb), cc), cd) -> new_esEs(vyw400, vyw3000, cb, cc) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(vyw401, vyw3001, bc, bd, be) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], da), cd) -> new_esEs1(vyw400, vyw3000, da) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_Maybe, bg)) -> new_esEs2(vyw401, vyw3001, bg) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, dc), dd), cd) -> new_esEs3(vyw400, vyw3000, dc, dd) 22.92/9.43 new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 22.92/9.43 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, bad), bae)) -> new_esEs3(vyw400, vyw3000, bad, bae) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(vyw400, vyw3000, gc, gd) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, db), cd) -> new_esEs2(vyw400, vyw3000, db) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_Either, ef), eg)) -> new_esEs3(vyw402, vyw3002, ef, eg) 22.92/9.43 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 22.92/9.43 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) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_@2, ba), bb)) -> new_esEs(vyw401, vyw3001, ba, bb) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_Maybe, ee)) -> new_esEs2(vyw402, vyw3002, ee) 22.92/9.43 new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 22.92/9.43 new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw400, vyw3000, bcb, bcc, bcd) 22.92/9.43 new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vyw400, vyw3000, bbg, bbh) 22.92/9.43 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bca) -> new_esEs2(vyw400, vyw3000, bcf) 22.92/9.43 new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bce), bca) -> new_esEs1(vyw400, vyw3000, bce) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_Either, bh), ca)) -> new_esEs3(vyw401, vyw3001, bh, ca) 22.92/9.43 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), hd) -> new_esEs1(vyw401, vyw3001, hd) 22.92/9.43 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(vyw400, vyw3000, hg, hh, baa) 22.92/9.43 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(vyw400, vyw3000, bdd, bde, bdf) 22.92/9.43 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, he), hf)) -> new_esEs(vyw400, vyw3000, he, hf) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(vyw401, vyw3001, eh, fa) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_[], fg), fb) -> new_esEs1(vyw401, vyw3001, fg) 22.92/9.43 new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bab)) -> new_esEs1(vyw400, vyw3000, bab) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(vyw402, vyw3002, dg, dh) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], gh), df, fb) -> new_esEs1(vyw400, vyw3000, gh) 22.92/9.43 new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) 22.92/9.43 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vyw400, vyw3000, bdb, bdc) 22.92/9.43 new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw400, vyw3000, bah, bba, bbb) 22.92/9.43 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) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_[], ed)) -> new_esEs1(vyw402, vyw3002, ed) 22.92/9.43 new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, hb), hc), df, fb) -> new_esEs3(vyw400, vyw3000, hb, hc) 22.92/9.43 new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 22.92/9.43 22.92/9.43 R is empty. 22.92/9.43 Q is empty. 22.92/9.43 We have to consider all minimal (P,Q,R)-chains. 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (36) QDPSizeChangeProof (EQUIVALENT) 22.92/9.43 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 22.92/9.43 22.92/9.43 From the DPs we obtained the following set of size-change graphs: 22.92/9.43 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, he), hf)) -> new_esEs(vyw400, vyw3000, he, hf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bac)) -> new_esEs2(vyw400, vyw3000, bac) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, bad), bae)) -> new_esEs3(vyw400, vyw3000, bad, bae) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, hg), hh), baa)) -> new_esEs0(vyw400, vyw3000, hg, hh, baa) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_@2, baf), bag)) -> new_esEs(vyw400, vyw3000, baf, bag) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_Maybe, bbd)) -> new_esEs2(vyw400, vyw3000, bbd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs2(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw400, vyw3000, bah, bba, bbb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs2(Just(vyw400), Just(vyw3000), app(ty_[], bbc)) -> new_esEs1(vyw400, vyw3000, bbc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), hd) -> new_esEs1(vyw401, vyw3001, hd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs1(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bab)) -> new_esEs1(vyw400, vyw3000, bab) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_@2, bbg), bbh), bca) -> new_esEs(vyw400, vyw3000, bbg, bbh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_@2, bdb), bdc)) -> new_esEs(vyw400, vyw3000, bdb, bdc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, gc), gd), df, fb) -> new_esEs(vyw400, vyw3000, gc, gd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_@2, eh), fa), fb) -> new_esEs(vyw401, vyw3001, eh, fa) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_@2, dg), dh)) -> new_esEs(vyw402, vyw3002, dg, dh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, cb), cc), cd) -> new_esEs(vyw400, vyw3000, cb, cc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_@2, ba), bb)) -> new_esEs(vyw401, vyw3001, ba, bb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_Maybe, bcf), bca) -> new_esEs2(vyw400, vyw3000, bcf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_Maybe, bdh)) -> new_esEs2(vyw400, vyw3000, bdh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_Maybe, fh), fb) -> new_esEs2(vyw401, vyw3001, fh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, ha), df, fb) -> new_esEs2(vyw400, vyw3000, ha) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_Maybe, ee)) -> new_esEs2(vyw402, vyw3002, ee) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_Maybe, bg)) -> new_esEs2(vyw401, vyw3001, bg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, db), cd) -> new_esEs2(vyw400, vyw3000, db) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(ty_Either, bcg), bch), bca) -> new_esEs3(vyw400, vyw3000, bcg, bch) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw400, vyw3000, bea, beb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bcb), bcc), bcd), bca) -> new_esEs0(vyw400, vyw3000, bcb, bcc, bcd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs0(vyw400, vyw3000, bdd, bde, bdf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Right(vyw400), Right(vyw3000), bda, app(ty_[], bdg)) -> new_esEs1(vyw400, vyw3000, bdg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs3(Left(vyw400), Left(vyw3000), app(ty_[], bce), bca) -> new_esEs1(vyw400, vyw3000, bce) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_Either, ga), gb), fb) -> new_esEs3(vyw401, vyw3001, ga, gb) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_Either, ef), eg)) -> new_esEs3(vyw402, vyw3002, ef, eg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, hb), hc), df, fb) -> new_esEs3(vyw400, vyw3000, hb, hc) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, dc), dd), cd) -> new_esEs3(vyw400, vyw3000, dc, dd) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(ty_Either, bh), ca)) -> new_esEs3(vyw401, vyw3001, bh, ca) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.92/9.43 22.92/9.43 22.92/9.43 *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) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *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) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *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) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(app(app(ty_@3, bc), bd), be)) -> new_esEs0(vyw401, vyw3001, bc, bd, be) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, ce), cf), cg), cd) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_[], fg), fb) -> new_esEs1(vyw401, vyw3001, fg) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], gh), df, fb) -> new_esEs1(vyw400, vyw3000, gh) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_[], ed)) -> new_esEs1(vyw402, vyw3002, ed) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), h, app(ty_[], bf)) -> new_esEs1(vyw401, vyw3001, bf) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.92/9.43 22.92/9.43 22.92/9.43 *new_esEs(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], da), cd) -> new_esEs1(vyw400, vyw3000, da) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.92/9.43 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (37) 22.92/9.43 YES 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (38) 22.92/9.43 Obligation: 22.92/9.43 Q DP problem: 22.92/9.43 The TRS P consists of the following rules: 22.92/9.43 22.92/9.43 new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 22.92/9.43 22.92/9.43 R is empty. 22.92/9.43 Q is empty. 22.92/9.43 We have to consider all minimal (P,Q,R)-chains. 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (39) QDPSizeChangeProof (EQUIVALENT) 22.92/9.43 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 22.92/9.43 22.92/9.43 From the DPs we obtained the following set of size-change graphs: 22.92/9.43 *new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2 22.92/9.43 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (40) 22.92/9.43 YES 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (41) 22.92/9.43 Obligation: 22.92/9.43 Q DP problem: 22.92/9.43 The TRS P consists of the following rules: 22.92/9.43 22.92/9.43 new_primPlusNat(Succ(vyw13800), Succ(vyw3000000)) -> new_primPlusNat(vyw13800, vyw3000000) 22.92/9.43 22.92/9.43 R is empty. 22.92/9.43 Q is empty. 22.92/9.43 We have to consider all minimal (P,Q,R)-chains. 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (42) QDPSizeChangeProof (EQUIVALENT) 22.92/9.43 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 22.92/9.43 22.92/9.43 From the DPs we obtained the following set of size-change graphs: 22.92/9.43 *new_primPlusNat(Succ(vyw13800), Succ(vyw3000000)) -> new_primPlusNat(vyw13800, vyw3000000) 22.92/9.43 The graph contains the following edges 1 > 1, 2 > 2 22.92/9.43 22.92/9.43 22.92/9.43 ---------------------------------------- 22.92/9.43 22.92/9.43 (43) 22.92/9.43 YES 22.92/9.47 EOF