23.48/10.45 YES 26.59/11.29 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 26.59/11.29 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 26.59/11.29 26.59/11.29 26.59/11.29 H-Termination with start terms of the given HASKELL could be proven: 26.59/11.29 26.59/11.29 (0) HASKELL 26.59/11.29 (1) LR [EQUIVALENT, 0 ms] 26.59/11.29 (2) HASKELL 26.59/11.29 (3) CR [EQUIVALENT, 0 ms] 26.59/11.29 (4) HASKELL 26.59/11.29 (5) IFR [EQUIVALENT, 0 ms] 26.59/11.29 (6) HASKELL 26.59/11.29 (7) BR [EQUIVALENT, 0 ms] 26.59/11.29 (8) HASKELL 26.59/11.29 (9) COR [EQUIVALENT, 8 ms] 26.59/11.29 (10) HASKELL 26.59/11.29 (11) LetRed [EQUIVALENT, 0 ms] 26.59/11.29 (12) HASKELL 26.59/11.29 (13) NumRed [SOUND, 15 ms] 26.59/11.29 (14) HASKELL 26.59/11.29 (15) Narrow [SOUND, 0 ms] 26.59/11.29 (16) AND 26.59/11.29 (17) QDP 26.59/11.29 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.59/11.29 (19) YES 26.59/11.29 (20) QDP 26.59/11.29 (21) TransformationProof [EQUIVALENT, 2150 ms] 26.59/11.29 (22) QDP 26.59/11.29 (23) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.59/11.29 (24) YES 26.59/11.29 (25) QDP 26.59/11.29 (26) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.59/11.29 (27) YES 26.59/11.29 (28) QDP 26.59/11.29 (29) QDPSizeChangeProof [EQUIVALENT, 61 ms] 26.59/11.29 (30) YES 26.59/11.29 (31) QDP 26.59/11.29 (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.59/11.29 (33) YES 26.59/11.29 (34) QDP 26.59/11.29 (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.59/11.29 (36) YES 26.59/11.29 (37) QDP 26.59/11.29 (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.59/11.29 (39) YES 26.59/11.29 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (0) 26.59/11.29 Obligation: 26.59/11.29 mainModule Main 26.59/11.29 module FiniteMap where { 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.59/11.29 26.59/11.29 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.59/11.29 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.59/11.29 } 26.59/11.29 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.59/11.29 elemFM key fm = case lookupFM fm key of { 26.59/11.29 Nothing-> False; 26.59/11.29 Just elt-> True; 26.59/11.29 } ; 26.59/11.29 26.59/11.29 fmToList :: FiniteMap b a -> [(b,a)]; 26.59/11.29 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 26.59/11.29 26.59/11.29 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 26.59/11.29 foldFM k z EmptyFM = z; 26.59/11.29 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.59/11.29 26.59/11.29 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 26.59/11.29 lookupFM EmptyFM key = Nothing; 26.59/11.29 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 26.59/11.29 | key_to_find > key = lookupFM fm_r key_to_find 26.59/11.29 | otherwise = Just elt; 26.59/11.29 26.59/11.29 sizeFM :: FiniteMap b a -> Int; 26.59/11.29 sizeFM EmptyFM = 0; 26.59/11.29 sizeFM (Branch _ _ size _ _) = size; 26.59/11.29 26.59/11.29 } 26.59/11.29 module Maybe where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 module Main where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (1) LR (EQUIVALENT) 26.59/11.29 Lambda Reductions: 26.59/11.29 The following Lambda expression 26.59/11.29 "\keyeltrest->(key,elt) : rest" 26.59/11.29 is transformed to 26.59/11.29 "fmToList0 key elt rest = (key,elt) : rest; 26.59/11.29 " 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (2) 26.59/11.29 Obligation: 26.59/11.29 mainModule Main 26.59/11.29 module FiniteMap where { 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.59/11.29 26.59/11.29 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.59/11.29 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.59/11.29 } 26.59/11.29 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.59/11.29 elemFM key fm = case lookupFM fm key of { 26.59/11.29 Nothing-> False; 26.59/11.29 Just elt-> True; 26.59/11.29 } ; 26.59/11.29 26.59/11.29 fmToList :: FiniteMap a b -> [(a,b)]; 26.59/11.29 fmToList fm = foldFM fmToList0 [] fm; 26.59/11.29 26.59/11.29 fmToList0 key elt rest = (key,elt) : rest; 26.59/11.29 26.59/11.29 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.59/11.29 foldFM k z EmptyFM = z; 26.59/11.29 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.59/11.29 26.59/11.29 lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; 26.59/11.29 lookupFM EmptyFM key = Nothing; 26.59/11.29 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 26.59/11.29 | key_to_find > key = lookupFM fm_r key_to_find 26.59/11.29 | otherwise = Just elt; 26.59/11.29 26.59/11.29 sizeFM :: FiniteMap a b -> Int; 26.59/11.29 sizeFM EmptyFM = 0; 26.59/11.29 sizeFM (Branch _ _ size _ _) = size; 26.59/11.29 26.59/11.29 } 26.59/11.29 module Maybe where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 module Main where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (3) CR (EQUIVALENT) 26.59/11.29 Case Reductions: 26.59/11.29 The following Case expression 26.59/11.29 "case compare x y of { 26.59/11.29 EQ -> o; 26.59/11.29 LT -> LT; 26.59/11.29 GT -> GT} 26.59/11.29 " 26.59/11.29 is transformed to 26.59/11.29 "primCompAux0 o EQ = o; 26.59/11.29 primCompAux0 o LT = LT; 26.59/11.29 primCompAux0 o GT = GT; 26.59/11.29 " 26.59/11.29 The following Case expression 26.59/11.29 "case lookupFM fm key of { 26.59/11.29 Nothing -> False; 26.59/11.29 Just elt -> True} 26.59/11.29 " 26.59/11.29 is transformed to 26.59/11.29 "elemFM0 Nothing = False; 26.59/11.29 elemFM0 (Just elt) = True; 26.59/11.29 " 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (4) 26.59/11.29 Obligation: 26.59/11.29 mainModule Main 26.59/11.29 module FiniteMap where { 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.59/11.29 26.59/11.29 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.59/11.29 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.59/11.29 } 26.59/11.29 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.59/11.29 elemFM key fm = elemFM0 (lookupFM fm key); 26.59/11.29 26.59/11.29 elemFM0 Nothing = False; 26.59/11.29 elemFM0 (Just elt) = True; 26.59/11.29 26.59/11.29 fmToList :: FiniteMap a b -> [(a,b)]; 26.59/11.29 fmToList fm = foldFM fmToList0 [] fm; 26.59/11.29 26.59/11.29 fmToList0 key elt rest = (key,elt) : rest; 26.59/11.29 26.59/11.29 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.59/11.29 foldFM k z EmptyFM = z; 26.59/11.29 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.59/11.29 26.59/11.29 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 26.59/11.29 lookupFM EmptyFM key = Nothing; 26.59/11.29 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 26.59/11.29 | key_to_find > key = lookupFM fm_r key_to_find 26.59/11.29 | otherwise = Just elt; 26.59/11.29 26.59/11.29 sizeFM :: FiniteMap a b -> Int; 26.59/11.29 sizeFM EmptyFM = 0; 26.59/11.29 sizeFM (Branch _ _ size _ _) = size; 26.59/11.29 26.59/11.29 } 26.59/11.29 module Maybe where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 module Main where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (5) IFR (EQUIVALENT) 26.59/11.29 If Reductions: 26.59/11.29 The following If expression 26.59/11.29 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 26.59/11.29 is transformed to 26.59/11.29 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 26.59/11.29 primDivNatS0 x y False = Zero; 26.59/11.29 " 26.59/11.29 The following If expression 26.59/11.29 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 26.59/11.29 is transformed to 26.59/11.29 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 26.59/11.29 primModNatS0 x y False = Succ x; 26.59/11.29 " 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (6) 26.59/11.29 Obligation: 26.59/11.29 mainModule Main 26.59/11.29 module FiniteMap where { 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.59/11.29 26.59/11.29 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.59/11.29 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.59/11.29 } 26.59/11.29 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.59/11.29 elemFM key fm = elemFM0 (lookupFM fm key); 26.59/11.29 26.59/11.29 elemFM0 Nothing = False; 26.59/11.29 elemFM0 (Just elt) = True; 26.59/11.29 26.59/11.29 fmToList :: FiniteMap a b -> [(a,b)]; 26.59/11.29 fmToList fm = foldFM fmToList0 [] fm; 26.59/11.29 26.59/11.29 fmToList0 key elt rest = (key,elt) : rest; 26.59/11.29 26.59/11.29 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 26.59/11.29 foldFM k z EmptyFM = z; 26.59/11.29 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.59/11.29 26.59/11.29 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 26.59/11.29 lookupFM EmptyFM key = Nothing; 26.59/11.29 lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 26.59/11.29 | key_to_find > key = lookupFM fm_r key_to_find 26.59/11.29 | otherwise = Just elt; 26.59/11.29 26.59/11.29 sizeFM :: FiniteMap a b -> Int; 26.59/11.29 sizeFM EmptyFM = 0; 26.59/11.29 sizeFM (Branch _ _ size _ _) = size; 26.59/11.29 26.59/11.29 } 26.59/11.29 module Maybe where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 module Main where { 26.59/11.29 import qualified FiniteMap; 26.59/11.29 import qualified Maybe; 26.59/11.29 import qualified Prelude; 26.59/11.29 } 26.59/11.29 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (7) BR (EQUIVALENT) 26.59/11.29 Replaced joker patterns by fresh variables and removed binding patterns. 26.59/11.29 ---------------------------------------- 26.59/11.29 26.59/11.29 (8) 26.59/11.29 Obligation: 26.59/11.29 mainModule Main 26.59/11.29 module FiniteMap where { 26.59/11.29 import qualified Main; 26.59/11.29 import qualified Maybe; 26.84/11.33 import qualified Prelude; 26.84/11.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.84/11.33 26.84/11.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.84/11.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.84/11.33 } 26.84/11.33 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.84/11.33 elemFM key fm = elemFM0 (lookupFM fm key); 26.84/11.33 26.84/11.33 elemFM0 Nothing = False; 26.84/11.33 elemFM0 (Just elt) = True; 26.84/11.33 26.84/11.33 fmToList :: FiniteMap b a -> [(b,a)]; 26.84/11.33 fmToList fm = foldFM fmToList0 [] fm; 26.84/11.33 26.84/11.33 fmToList0 key elt rest = (key,elt) : rest; 26.84/11.33 26.84/11.33 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 26.84/11.33 foldFM k z EmptyFM = z; 26.84/11.33 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.84/11.33 26.84/11.33 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 26.84/11.33 lookupFM EmptyFM key = Nothing; 26.84/11.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find 26.84/11.33 | key_to_find > key = lookupFM fm_r key_to_find 26.84/11.33 | otherwise = Just elt; 26.84/11.33 26.84/11.33 sizeFM :: FiniteMap b a -> Int; 26.84/11.33 sizeFM EmptyFM = 0; 26.84/11.33 sizeFM (Branch zz vuu size vuv vuw) = size; 26.84/11.33 26.84/11.33 } 26.84/11.33 module Maybe where { 26.84/11.33 import qualified FiniteMap; 26.84/11.33 import qualified Main; 26.84/11.33 import qualified Prelude; 26.84/11.33 } 26.84/11.33 module Main where { 26.84/11.33 import qualified FiniteMap; 26.84/11.33 import qualified Maybe; 26.84/11.33 import qualified Prelude; 26.84/11.33 } 26.84/11.33 26.84/11.33 ---------------------------------------- 26.84/11.33 26.84/11.33 (9) COR (EQUIVALENT) 26.84/11.33 Cond Reductions: 26.84/11.33 The following Function with conditions 26.84/11.33 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 26.84/11.33 " 26.84/11.33 is transformed to 26.84/11.33 "compare x y = compare3 x y; 26.84/11.33 " 26.84/11.33 "compare2 x y True = EQ; 26.84/11.33 compare2 x y False = compare1 x y (x <= y); 26.84/11.33 " 26.84/11.33 "compare1 x y True = LT; 26.84/11.33 compare1 x y False = compare0 x y otherwise; 26.84/11.33 " 26.84/11.33 "compare0 x y True = GT; 26.84/11.33 " 26.84/11.33 "compare3 x y = compare2 x y (x == y); 26.84/11.33 " 26.84/11.33 The following Function with conditions 26.84/11.33 "absReal x|x >= 0x|otherwise`negate` x; 26.84/11.33 " 26.84/11.33 is transformed to 26.84/11.33 "absReal x = absReal2 x; 26.84/11.33 " 26.84/11.33 "absReal0 x True = `negate` x; 26.84/11.33 " 26.84/11.33 "absReal1 x True = x; 26.84/11.33 absReal1 x False = absReal0 x otherwise; 26.84/11.33 " 26.84/11.33 "absReal2 x = absReal1 x (x >= 0); 26.84/11.33 " 26.84/11.33 The following Function with conditions 26.84/11.33 "gcd' x 0 = x; 26.84/11.33 gcd' x y = gcd' y (x `rem` y); 26.84/11.33 " 26.84/11.33 is transformed to 26.84/11.33 "gcd' x vuy = gcd'2 x vuy; 26.84/11.33 gcd' x y = gcd'0 x y; 26.84/11.33 " 26.84/11.33 "gcd'0 x y = gcd' y (x `rem` y); 26.84/11.33 " 26.84/11.33 "gcd'1 True x vuy = x; 26.84/11.33 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 26.84/11.33 " 26.84/11.33 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 26.84/11.33 gcd'2 vvw vvx = gcd'0 vvw vvx; 26.84/11.33 " 26.84/11.33 The following Function with conditions 26.84/11.33 "gcd 0 0 = error []; 26.84/11.33 gcd x y = gcd' (abs x) (abs y) where { 26.84/11.33 gcd' x 0 = x; 26.84/11.33 gcd' x y = gcd' y (x `rem` y); 26.84/11.33 } 26.84/11.33 ; 26.84/11.33 " 26.84/11.33 is transformed to 26.84/11.33 "gcd vvy vvz = gcd3 vvy vvz; 26.84/11.33 gcd x y = gcd0 x y; 26.84/11.33 " 26.84/11.33 "gcd0 x y = gcd' (abs x) (abs y) where { 26.84/11.33 gcd' x vuy = gcd'2 x vuy; 26.84/11.33 gcd' x y = gcd'0 x y; 26.84/11.33 ; 26.84/11.33 gcd'0 x y = gcd' y (x `rem` y); 26.84/11.33 ; 26.84/11.33 gcd'1 True x vuy = x; 26.84/11.33 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 26.84/11.33 ; 26.84/11.33 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 26.84/11.33 gcd'2 vvw vvx = gcd'0 vvw vvx; 26.84/11.33 } 26.84/11.33 ; 26.84/11.33 " 26.84/11.33 "gcd1 True vvy vvz = error []; 26.84/11.33 gcd1 vwu vwv vww = gcd0 vwv vww; 26.84/11.33 " 26.84/11.33 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 26.84/11.33 gcd2 vwx vwy vwz = gcd0 vwy vwz; 26.84/11.33 " 26.84/11.33 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 26.84/11.33 gcd3 vxu vxv = gcd0 vxu vxv; 26.84/11.33 " 26.84/11.33 The following Function with conditions 26.84/11.33 "undefined |Falseundefined; 26.84/11.33 " 26.84/11.33 is transformed to 26.84/11.33 "undefined = undefined1; 26.84/11.33 " 26.84/11.33 "undefined0 True = undefined; 26.84/11.33 " 26.84/11.33 "undefined1 = undefined0 False; 26.84/11.33 " 26.84/11.33 The following Function with conditions 26.84/11.33 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 26.84/11.33 d = gcd x y; 26.84/11.33 } 26.84/11.33 ; 26.84/11.33 " 26.84/11.33 is transformed to 26.84/11.33 "reduce x y = reduce2 x y; 26.84/11.33 " 26.84/11.33 "reduce2 x y = reduce1 x y (y == 0) where { 26.84/11.33 d = gcd x y; 26.84/11.33 ; 26.84/11.33 reduce0 x y True = x `quot` d :% (y `quot` d); 26.84/11.33 ; 26.84/11.33 reduce1 x y True = error []; 26.84/11.33 reduce1 x y False = reduce0 x y otherwise; 26.84/11.33 } 26.84/11.33 ; 26.84/11.33 " 26.84/11.33 The following Function with conditions 26.84/11.33 "lookupFM EmptyFM key = Nothing; 26.84/11.33 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; 26.84/11.33 " 26.84/11.33 is transformed to 26.84/11.33 "lookupFM EmptyFM key = lookupFM4 EmptyFM key; 26.84/11.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 26.84/11.33 " 26.84/11.33 "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 26.84/11.33 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); 26.84/11.33 " 26.84/11.33 "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 26.84/11.33 " 26.84/11.33 "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 26.84/11.33 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 26.84/11.33 " 26.84/11.33 "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); 26.84/11.33 " 26.84/11.33 "lookupFM4 EmptyFM key = Nothing; 26.84/11.33 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 26.84/11.33 " 26.84/11.33 26.84/11.33 ---------------------------------------- 26.84/11.33 26.84/11.33 (10) 26.84/11.33 Obligation: 26.84/11.33 mainModule Main 26.84/11.33 module FiniteMap where { 26.84/11.33 import qualified Main; 26.84/11.33 import qualified Maybe; 26.84/11.33 import qualified Prelude; 26.84/11.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.84/11.33 26.84/11.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.84/11.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.84/11.33 } 26.84/11.33 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.84/11.33 elemFM key fm = elemFM0 (lookupFM fm key); 26.84/11.33 26.84/11.33 elemFM0 Nothing = False; 26.84/11.33 elemFM0 (Just elt) = True; 26.84/11.33 26.84/11.33 fmToList :: FiniteMap b a -> [(b,a)]; 26.84/11.33 fmToList fm = foldFM fmToList0 [] fm; 26.84/11.33 26.84/11.33 fmToList0 key elt rest = (key,elt) : rest; 26.84/11.33 26.84/11.33 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 26.84/11.33 foldFM k z EmptyFM = z; 26.84/11.33 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.84/11.33 26.84/11.33 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 26.84/11.33 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 26.84/11.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 26.84/11.33 26.84/11.33 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 26.84/11.33 26.84/11.33 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 26.84/11.33 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 26.84/11.33 26.84/11.33 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 26.84/11.33 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); 26.84/11.33 26.84/11.33 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); 26.84/11.33 26.84/11.33 lookupFM4 EmptyFM key = Nothing; 26.84/11.33 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 26.84/11.33 26.84/11.33 sizeFM :: FiniteMap b a -> Int; 26.84/11.33 sizeFM EmptyFM = 0; 26.84/11.33 sizeFM (Branch zz vuu size vuv vuw) = size; 26.84/11.33 26.84/11.33 } 26.84/11.33 module Maybe where { 26.84/11.33 import qualified FiniteMap; 26.84/11.33 import qualified Main; 26.84/11.33 import qualified Prelude; 26.84/11.33 } 26.84/11.33 module Main where { 26.84/11.33 import qualified FiniteMap; 26.84/11.33 import qualified Maybe; 26.84/11.33 import qualified Prelude; 26.84/11.33 } 26.84/11.33 26.84/11.33 ---------------------------------------- 26.84/11.33 26.84/11.33 (11) LetRed (EQUIVALENT) 26.84/11.33 Let/Where Reductions: 26.84/11.33 The bindings of the following Let/Where expression 26.84/11.33 "gcd' (abs x) (abs y) where { 26.84/11.33 gcd' x vuy = gcd'2 x vuy; 26.84/11.33 gcd' x y = gcd'0 x y; 26.84/11.33 ; 26.84/11.33 gcd'0 x y = gcd' y (x `rem` y); 26.84/11.33 ; 26.84/11.33 gcd'1 True x vuy = x; 26.84/11.33 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 26.84/11.33 ; 26.84/11.33 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 26.84/11.33 gcd'2 vvw vvx = gcd'0 vvw vvx; 26.84/11.33 } 26.84/11.33 " 26.84/11.33 are unpacked to the following functions on top level 26.84/11.33 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 26.84/11.33 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 26.84/11.33 " 26.84/11.33 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 26.84/11.33 " 26.84/11.33 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 26.84/11.33 gcd0Gcd' x y = gcd0Gcd'0 x y; 26.84/11.33 " 26.84/11.33 "gcd0Gcd'1 True x vuy = x; 26.84/11.33 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 26.84/11.33 " 26.84/11.33 The bindings of the following Let/Where expression 26.84/11.33 "reduce1 x y (y == 0) where { 26.84/11.33 d = gcd x y; 26.84/11.33 ; 26.84/11.33 reduce0 x y True = x `quot` d :% (y `quot` d); 26.84/11.33 ; 26.84/11.33 reduce1 x y True = error []; 26.84/11.33 reduce1 x y False = reduce0 x y otherwise; 26.84/11.33 } 26.84/11.33 " 26.84/11.33 are unpacked to the following functions on top level 26.84/11.33 "reduce2D vyu vyv = gcd vyu vyv; 26.84/11.33 " 26.84/11.33 "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); 26.84/11.33 " 26.84/11.33 "reduce2Reduce1 vyu vyv x y True = error []; 26.84/11.33 reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; 26.84/11.33 " 26.84/11.33 26.84/11.33 ---------------------------------------- 26.84/11.33 26.84/11.33 (12) 26.84/11.33 Obligation: 26.84/11.33 mainModule Main 26.84/11.33 module FiniteMap where { 26.84/11.33 import qualified Main; 26.84/11.33 import qualified Maybe; 26.84/11.33 import qualified Prelude; 26.84/11.33 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.84/11.33 26.84/11.33 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.84/11.33 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.84/11.33 } 26.84/11.33 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.84/11.33 elemFM key fm = elemFM0 (lookupFM fm key); 26.84/11.33 26.84/11.33 elemFM0 Nothing = False; 26.84/11.33 elemFM0 (Just elt) = True; 26.84/11.33 26.84/11.33 fmToList :: FiniteMap a b -> [(a,b)]; 26.84/11.33 fmToList fm = foldFM fmToList0 [] fm; 26.84/11.33 26.84/11.33 fmToList0 key elt rest = (key,elt) : rest; 26.84/11.33 26.84/11.33 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.84/11.33 foldFM k z EmptyFM = z; 26.84/11.33 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.84/11.33 26.84/11.33 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 26.84/11.33 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 26.84/11.33 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 26.84/11.33 26.84/11.33 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 26.84/11.33 26.84/11.33 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 26.84/11.33 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 26.84/11.33 26.84/11.33 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 26.84/11.33 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); 26.84/11.34 26.84/11.34 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); 26.84/11.34 26.84/11.34 lookupFM4 EmptyFM key = Nothing; 26.84/11.34 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 26.84/11.34 26.84/11.34 sizeFM :: FiniteMap a b -> Int; 26.84/11.34 sizeFM EmptyFM = 0; 26.84/11.34 sizeFM (Branch zz vuu size vuv vuw) = size; 26.84/11.34 26.84/11.34 } 26.84/11.34 module Maybe where { 26.84/11.34 import qualified FiniteMap; 26.84/11.34 import qualified Main; 26.84/11.34 import qualified Prelude; 26.84/11.34 } 26.84/11.34 module Main where { 26.84/11.34 import qualified FiniteMap; 26.84/11.34 import qualified Maybe; 26.84/11.34 import qualified Prelude; 26.84/11.34 } 26.84/11.34 26.84/11.34 ---------------------------------------- 26.84/11.34 26.84/11.34 (13) NumRed (SOUND) 26.84/11.34 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 26.84/11.34 ---------------------------------------- 26.84/11.34 26.84/11.34 (14) 26.84/11.34 Obligation: 26.84/11.34 mainModule Main 26.84/11.34 module FiniteMap where { 26.84/11.34 import qualified Main; 26.84/11.34 import qualified Maybe; 26.84/11.34 import qualified Prelude; 26.84/11.34 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.84/11.34 26.84/11.34 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.84/11.34 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.84/11.34 } 26.84/11.34 elemFM :: Ord a => a -> FiniteMap a b -> Bool; 26.84/11.34 elemFM key fm = elemFM0 (lookupFM fm key); 26.84/11.34 26.84/11.34 elemFM0 Nothing = False; 26.84/11.34 elemFM0 (Just elt) = True; 26.84/11.34 26.84/11.34 fmToList :: FiniteMap b a -> [(b,a)]; 26.84/11.34 fmToList fm = foldFM fmToList0 [] fm; 26.84/11.34 26.84/11.34 fmToList0 key elt rest = (key,elt) : rest; 26.84/11.34 26.84/11.34 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 26.84/11.34 foldFM k z EmptyFM = z; 26.84/11.34 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.84/11.34 26.84/11.34 lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; 26.84/11.34 lookupFM EmptyFM key = lookupFM4 EmptyFM key; 26.84/11.34 lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; 26.84/11.34 26.84/11.34 lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; 26.84/11.34 26.84/11.34 lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; 26.84/11.34 lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; 26.84/11.34 26.84/11.34 lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 26.84/11.34 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); 26.84/11.34 26.84/11.34 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); 26.84/11.34 26.84/11.34 lookupFM4 EmptyFM key = Nothing; 26.84/11.34 lookupFM4 vxy vxz = lookupFM3 vxy vxz; 26.84/11.34 26.84/11.34 sizeFM :: FiniteMap b a -> Int; 26.84/11.34 sizeFM EmptyFM = Pos Zero; 26.84/11.34 sizeFM (Branch zz vuu size vuv vuw) = size; 26.84/11.34 26.84/11.34 } 26.84/11.34 module Maybe where { 26.84/11.34 import qualified FiniteMap; 26.84/11.34 import qualified Main; 26.84/11.34 import qualified Prelude; 26.84/11.34 } 26.84/11.34 module Main where { 26.84/11.34 import qualified FiniteMap; 26.84/11.34 import qualified Maybe; 26.84/11.34 import qualified Prelude; 26.84/11.34 } 26.84/11.34 26.84/11.34 ---------------------------------------- 26.84/11.34 26.84/11.34 (15) Narrow (SOUND) 26.84/11.34 Haskell To QDPs 26.84/11.34 26.84/11.34 digraph dp_graph { 26.84/11.34 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.elemFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 26.84/11.34 3[label="FiniteMap.elemFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 26.84/11.34 4[label="FiniteMap.elemFM vyw3 vyw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 26.84/11.34 5[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw4 vyw3)",fontsize=16,color="burlywood",shape="triangle"];2341[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 2341[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2341 -> 6[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2342[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 2342[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2342 -> 7[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 6[label="FiniteMap.elemFM0 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 26.84/11.34 7[label="FiniteMap.elemFM0 (FiniteMap.lookupFM (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 26.84/11.34 8[label="FiniteMap.elemFM0 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 26.84/11.34 9[label="FiniteMap.elemFM0 (FiniteMap.lookupFM3 (FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44) vyw3)",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 26.84/11.34 10[label="FiniteMap.elemFM0 Nothing",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 26.84/11.34 11[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (vyw3 < vyw40))",fontsize=16,color="black",shape="box"];11 -> 13[label="",style="solid", color="black", weight=3]; 26.84/11.34 12[label="False",fontsize=16,color="green",shape="box"];13[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (compare vyw3 vyw40 == LT))",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 26.84/11.34 14[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (compare3 vyw3 vyw40 == LT))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 26.84/11.34 15[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (compare2 vyw3 vyw40 (vyw3 == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];2343[label="vyw3/(vyw30,vyw31)",fontsize=10,color="white",style="solid",shape="box"];15 -> 2343[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2343 -> 16[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 16[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 (vyw30,vyw31) (compare2 (vyw30,vyw31) vyw40 ((vyw30,vyw31) == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];2344[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];16 -> 2344[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2344 -> 17[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 17[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw400,vyw401) vyw41 vyw42 vyw43 vyw44 (vyw30,vyw31) (compare2 (vyw30,vyw31) (vyw400,vyw401) ((vyw30,vyw31) == (vyw400,vyw401)) == LT))",fontsize=16,color="black",shape="box"];17 -> 18[label="",style="solid", color="black", weight=3]; 26.84/11.34 18 -> 102[label="",style="dashed", color="red", weight=0]; 26.84/11.34 18[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw400,vyw401) vyw41 vyw42 vyw43 vyw44 (vyw30,vyw31) (compare2 (vyw30,vyw31) (vyw400,vyw401) (vyw30 == vyw400 && vyw31 == vyw401) == LT))",fontsize=16,color="magenta"];18 -> 103[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 104[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 105[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 106[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 107[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 108[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 109[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 110[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 18 -> 111[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 103 -> 115[label="",style="dashed", color="red", weight=0]; 26.84/11.34 103[label="compare2 (vyw30,vyw31) (vyw400,vyw401) (vyw30 == vyw400 && vyw31 == vyw401) == LT",fontsize=16,color="magenta"];103 -> 116[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 103 -> 117[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 103 -> 118[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 103 -> 119[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 103 -> 120[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 104[label="vyw400",fontsize=16,color="green",shape="box"];105[label="vyw401",fontsize=16,color="green",shape="box"];106[label="vyw31",fontsize=16,color="green",shape="box"];107[label="vyw30",fontsize=16,color="green",shape="box"];108[label="vyw43",fontsize=16,color="green",shape="box"];109[label="vyw41",fontsize=16,color="green",shape="box"];110[label="vyw42",fontsize=16,color="green",shape="box"];111[label="vyw44",fontsize=16,color="green",shape="box"];102[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw24)",fontsize=16,color="burlywood",shape="triangle"];2345[label="vyw24/False",fontsize=10,color="white",style="solid",shape="box"];102 -> 2345[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2345 -> 121[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2346[label="vyw24/True",fontsize=10,color="white",style="solid",shape="box"];102 -> 2346[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2346 -> 122[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 116[label="vyw31",fontsize=16,color="green",shape="box"];117[label="vyw30",fontsize=16,color="green",shape="box"];118[label="vyw401",fontsize=16,color="green",shape="box"];119[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];2347[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2347[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2347 -> 123[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2348[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2348[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2348 -> 124[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2349[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2349[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2349 -> 125[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2350[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2350[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2350 -> 126[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2351[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2351[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2351 -> 127[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2352[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2352[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2352 -> 128[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2353[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2353[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2353 -> 129[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2354[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2354[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2354 -> 130[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2355[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2355[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2355 -> 131[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2356[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2356[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2356 -> 132[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2357[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2357[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2357 -> 133[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2358[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2358[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2358 -> 134[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2359[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2359[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2359 -> 135[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2360[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2360[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2360 -> 136[label="",style="solid", color="blue", weight=3]; 26.84/11.34 120[label="vyw400",fontsize=16,color="green",shape="box"];115[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw35 && vyw32 == vyw34) == LT",fontsize=16,color="burlywood",shape="triangle"];2361[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];115 -> 2361[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2361 -> 137[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2362[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];115 -> 2362[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2362 -> 138[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 121[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False)",fontsize=16,color="black",shape="box"];121 -> 139[label="",style="solid", color="black", weight=3]; 26.84/11.34 122[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True)",fontsize=16,color="black",shape="box"];122 -> 140[label="",style="solid", color="black", weight=3]; 26.84/11.34 123[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2363[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];123 -> 2363[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2363 -> 141[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 124[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2364[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];124 -> 2364[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2364 -> 142[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2365[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];124 -> 2365[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2365 -> 143[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 125[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2366[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];125 -> 2366[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2366 -> 144[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 126[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2367[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];126 -> 2367[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2367 -> 145[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2368[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];126 -> 2368[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2368 -> 146[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2369[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];126 -> 2369[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2369 -> 147[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 127[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];127 -> 148[label="",style="solid", color="black", weight=3]; 26.84/11.34 128[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];128 -> 149[label="",style="solid", color="black", weight=3]; 26.84/11.34 129[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];129 -> 150[label="",style="solid", color="black", weight=3]; 26.84/11.34 130[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];130 -> 151[label="",style="solid", color="black", weight=3]; 26.84/11.34 131[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2370[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];131 -> 2370[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2370 -> 152[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2371[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];131 -> 2371[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2371 -> 153[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 132[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2372[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];132 -> 2372[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2372 -> 154[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 133[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2373[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];133 -> 2373[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2373 -> 155[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 134[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2374[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];134 -> 2374[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2374 -> 156[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2375[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];134 -> 2375[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2375 -> 157[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 135[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2376[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];135 -> 2376[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2376 -> 158[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 136[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2377[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];136 -> 2377[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2377 -> 159[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2378[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];136 -> 2378[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2378 -> 160[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 137[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (False && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];137 -> 161[label="",style="solid", color="black", weight=3]; 26.84/11.34 138[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (True && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];138 -> 162[label="",style="solid", color="black", weight=3]; 26.84/11.34 139 -> 205[label="",style="dashed", color="red", weight=0]; 26.84/11.34 139[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) ((vyw21,vyw22) > (vyw15,vyw16)))",fontsize=16,color="magenta"];139 -> 206[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 140 -> 5[label="",style="dashed", color="red", weight=0]; 26.84/11.34 140[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw19 (vyw21,vyw22))",fontsize=16,color="magenta"];140 -> 164[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 140 -> 165[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 141[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2379[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];141 -> 2379[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2379 -> 166[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 142[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];2380[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];142 -> 2380[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2380 -> 167[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2381[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];142 -> 2381[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2381 -> 168[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 143[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2382[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];143 -> 2382[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2382 -> 169[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2383[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];143 -> 2383[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2383 -> 170[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 144[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];2384[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];144 -> 2384[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2384 -> 171[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 145[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];2385[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];145 -> 2385[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2385 -> 172[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2386[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];145 -> 2386[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2386 -> 173[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2387[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];145 -> 2387[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2387 -> 174[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 146[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];2388[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];146 -> 2388[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2388 -> 175[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2389[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];146 -> 2389[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2389 -> 176[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2390[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];146 -> 2390[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2390 -> 177[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 147[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];2391[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];147 -> 2391[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2391 -> 178[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2392[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];147 -> 2392[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2392 -> 179[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2393[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];147 -> 2393[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2393 -> 180[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 148[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];2394[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];148 -> 2394[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2394 -> 181[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2395[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];148 -> 2395[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2395 -> 182[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 149[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];2396[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];149 -> 2396[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2396 -> 183[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 150[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];2397[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];150 -> 2397[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2397 -> 184[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 151[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];2398[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];151 -> 2398[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2398 -> 185[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 152[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];2399[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];152 -> 2399[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2399 -> 186[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2400[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];152 -> 2400[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2400 -> 187[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 153[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];2401[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];153 -> 2401[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2401 -> 188[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2402[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];153 -> 2402[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2402 -> 189[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 154[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];2403[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];154 -> 2403[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2403 -> 190[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 155[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];2404[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];155 -> 2404[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2404 -> 191[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 156[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];2405[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];156 -> 2405[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2405 -> 192[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2406[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];156 -> 2406[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2406 -> 193[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 157[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];2407[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];157 -> 2407[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2407 -> 194[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2408[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];157 -> 2408[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2408 -> 195[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 158[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];2409[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];158 -> 2409[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2409 -> 196[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 159[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2410[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2410[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2410 -> 197[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2411[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2411[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2411 -> 198[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 160[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2412[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];160 -> 2412[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2412 -> 199[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2413[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];160 -> 2413[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2413 -> 200[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 161 -> 126[label="",style="dashed", color="red", weight=0]; 26.84/11.34 161[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False == LT",fontsize=16,color="magenta"];161 -> 201[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 161 -> 202[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 162 -> 126[label="",style="dashed", color="red", weight=0]; 26.84/11.34 162[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34) == LT",fontsize=16,color="magenta"];162 -> 203[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 162 -> 204[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 206[label="(vyw21,vyw22) > (vyw15,vyw16)",fontsize=16,color="black",shape="box"];206 -> 208[label="",style="solid", color="black", weight=3]; 26.84/11.34 205[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw36)",fontsize=16,color="burlywood",shape="triangle"];2414[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];205 -> 2414[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2414 -> 209[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2415[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];205 -> 2415[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2415 -> 210[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 164[label="vyw19",fontsize=16,color="green",shape="box"];165[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];166[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];166 -> 211[label="",style="solid", color="black", weight=3]; 26.84/11.34 167[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];167 -> 212[label="",style="solid", color="black", weight=3]; 26.84/11.34 168[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];168 -> 213[label="",style="solid", color="black", weight=3]; 26.84/11.34 169[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];169 -> 214[label="",style="solid", color="black", weight=3]; 26.84/11.34 170[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];170 -> 215[label="",style="solid", color="black", weight=3]; 26.84/11.34 171[label="() == ()",fontsize=16,color="black",shape="box"];171 -> 216[label="",style="solid", color="black", weight=3]; 26.84/11.34 172[label="LT == LT",fontsize=16,color="black",shape="box"];172 -> 217[label="",style="solid", color="black", weight=3]; 26.84/11.34 173[label="LT == EQ",fontsize=16,color="black",shape="box"];173 -> 218[label="",style="solid", color="black", weight=3]; 26.84/11.34 174[label="LT == GT",fontsize=16,color="black",shape="box"];174 -> 219[label="",style="solid", color="black", weight=3]; 26.84/11.34 175[label="EQ == LT",fontsize=16,color="black",shape="box"];175 -> 220[label="",style="solid", color="black", weight=3]; 26.84/11.34 176[label="EQ == EQ",fontsize=16,color="black",shape="box"];176 -> 221[label="",style="solid", color="black", weight=3]; 26.84/11.34 177[label="EQ == GT",fontsize=16,color="black",shape="box"];177 -> 222[label="",style="solid", color="black", weight=3]; 26.84/11.34 178[label="GT == LT",fontsize=16,color="black",shape="box"];178 -> 223[label="",style="solid", color="black", weight=3]; 26.84/11.34 179[label="GT == EQ",fontsize=16,color="black",shape="box"];179 -> 224[label="",style="solid", color="black", weight=3]; 26.84/11.34 180[label="GT == GT",fontsize=16,color="black",shape="box"];180 -> 225[label="",style="solid", color="black", weight=3]; 26.84/11.34 181[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];2416[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];181 -> 2416[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2416 -> 226[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2417[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];181 -> 2417[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2417 -> 227[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 182[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];2418[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];182 -> 2418[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2418 -> 228[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2419[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];182 -> 2419[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2419 -> 229[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 183[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];2420[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];183 -> 2420[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2420 -> 230[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 184[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];2421[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];184 -> 2421[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2421 -> 231[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 185[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];2422[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];185 -> 2422[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2422 -> 232[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 186[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];186 -> 233[label="",style="solid", color="black", weight=3]; 26.84/11.34 187[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];187 -> 234[label="",style="solid", color="black", weight=3]; 26.84/11.34 188[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];188 -> 235[label="",style="solid", color="black", weight=3]; 26.84/11.34 189[label="[] == []",fontsize=16,color="black",shape="box"];189 -> 236[label="",style="solid", color="black", weight=3]; 26.84/11.34 190[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];190 -> 237[label="",style="solid", color="black", weight=3]; 26.84/11.34 191[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];191 -> 238[label="",style="solid", color="black", weight=3]; 26.84/11.34 192[label="False == False",fontsize=16,color="black",shape="box"];192 -> 239[label="",style="solid", color="black", weight=3]; 26.84/11.34 193[label="False == True",fontsize=16,color="black",shape="box"];193 -> 240[label="",style="solid", color="black", weight=3]; 26.84/11.34 194[label="True == False",fontsize=16,color="black",shape="box"];194 -> 241[label="",style="solid", color="black", weight=3]; 26.84/11.34 195[label="True == True",fontsize=16,color="black",shape="box"];195 -> 242[label="",style="solid", color="black", weight=3]; 26.84/11.34 196[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];196 -> 243[label="",style="solid", color="black", weight=3]; 26.84/11.34 197[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];197 -> 244[label="",style="solid", color="black", weight=3]; 26.84/11.34 198[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];198 -> 245[label="",style="solid", color="black", weight=3]; 26.84/11.34 199[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];199 -> 246[label="",style="solid", color="black", weight=3]; 26.84/11.34 200[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];200 -> 247[label="",style="solid", color="black", weight=3]; 26.84/11.34 201[label="LT",fontsize=16,color="green",shape="box"];202 -> 1169[label="",style="dashed", color="red", weight=0]; 26.84/11.34 202[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False",fontsize=16,color="magenta"];202 -> 1170[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 202 -> 1171[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 202 -> 1172[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 203[label="LT",fontsize=16,color="green",shape="box"];204 -> 1169[label="",style="dashed", color="red", weight=0]; 26.84/11.34 204[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34)",fontsize=16,color="magenta"];204 -> 1173[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 204 -> 1174[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 204 -> 1175[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 208 -> 126[label="",style="dashed", color="red", weight=0]; 26.84/11.34 208[label="compare (vyw21,vyw22) (vyw15,vyw16) == GT",fontsize=16,color="magenta"];208 -> 260[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 208 -> 261[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 209[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False)",fontsize=16,color="black",shape="box"];209 -> 262[label="",style="solid", color="black", weight=3]; 26.84/11.34 210[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True)",fontsize=16,color="black",shape="box"];210 -> 263[label="",style="solid", color="black", weight=3]; 26.84/11.34 211 -> 148[label="",style="dashed", color="red", weight=0]; 26.84/11.34 211[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];211 -> 264[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 211 -> 265[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 212[label="True",fontsize=16,color="green",shape="box"];213[label="False",fontsize=16,color="green",shape="box"];214[label="False",fontsize=16,color="green",shape="box"];215[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2423[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2423[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2423 -> 266[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2424[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2424[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2424 -> 267[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2425[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2425[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2425 -> 268[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2426[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2426[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2426 -> 269[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2427[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2427[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2427 -> 270[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2428[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2428[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2428 -> 271[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2429[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2429[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2429 -> 272[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2430[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2430[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2430 -> 273[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2431[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2431[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2431 -> 274[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2432[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2432[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2432 -> 275[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2433[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2433[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2433 -> 276[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2434[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2434[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2434 -> 277[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2435[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2435[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2435 -> 278[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2436[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];215 -> 2436[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2436 -> 279[label="",style="solid", color="blue", weight=3]; 26.84/11.34 216[label="True",fontsize=16,color="green",shape="box"];217[label="True",fontsize=16,color="green",shape="box"];218[label="False",fontsize=16,color="green",shape="box"];219[label="False",fontsize=16,color="green",shape="box"];220[label="False",fontsize=16,color="green",shape="box"];221[label="True",fontsize=16,color="green",shape="box"];222[label="False",fontsize=16,color="green",shape="box"];223[label="False",fontsize=16,color="green",shape="box"];224[label="False",fontsize=16,color="green",shape="box"];225[label="True",fontsize=16,color="green",shape="box"];226[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];2437[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];226 -> 2437[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2437 -> 280[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2438[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];226 -> 2438[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2438 -> 281[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 227[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];2439[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];227 -> 2439[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2439 -> 282[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2440[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];227 -> 2440[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2440 -> 283[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 228[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];2441[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2441[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2441 -> 284[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2442[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];228 -> 2442[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2442 -> 285[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 229[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];2443[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];229 -> 2443[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2443 -> 286[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2444[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];229 -> 2444[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2444 -> 287[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 230[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];230 -> 288[label="",style="solid", color="black", weight=3]; 26.84/11.34 231[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];231 -> 289[label="",style="solid", color="black", weight=3]; 26.84/11.34 232[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];232 -> 290[label="",style="solid", color="black", weight=3]; 26.84/11.34 233 -> 400[label="",style="dashed", color="red", weight=0]; 26.84/11.34 233[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];233 -> 401[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 233 -> 402[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 234[label="False",fontsize=16,color="green",shape="box"];235[label="False",fontsize=16,color="green",shape="box"];236[label="True",fontsize=16,color="green",shape="box"];237 -> 400[label="",style="dashed", color="red", weight=0]; 26.84/11.34 237[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];237 -> 403[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 237 -> 404[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 238 -> 400[label="",style="dashed", color="red", weight=0]; 26.84/11.34 238[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];238 -> 405[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 238 -> 406[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 239[label="True",fontsize=16,color="green",shape="box"];240[label="False",fontsize=16,color="green",shape="box"];241[label="False",fontsize=16,color="green",shape="box"];242[label="True",fontsize=16,color="green",shape="box"];243 -> 400[label="",style="dashed", color="red", weight=0]; 26.84/11.34 243[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];243 -> 407[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 243 -> 408[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 244[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2445[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2445[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2445 -> 302[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2446[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2446[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2446 -> 303[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2447[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2447[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2447 -> 304[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2448[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2448[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2448 -> 305[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2449[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2449[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2449 -> 306[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2450[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2450[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2450 -> 307[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2451[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2451[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2451 -> 308[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2452[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2452[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2452 -> 309[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2453[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2453[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2453 -> 310[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2454[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2454[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2454 -> 311[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2455[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2455[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2455 -> 312[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2456[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2456[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2456 -> 313[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2457[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2457[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2457 -> 314[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2458[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2458[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2458 -> 315[label="",style="solid", color="blue", weight=3]; 26.84/11.34 245[label="False",fontsize=16,color="green",shape="box"];246[label="False",fontsize=16,color="green",shape="box"];247[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2459[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2459[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2459 -> 316[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2460[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2460[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2460 -> 317[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2461[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2461[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2461 -> 318[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2462[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2462[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2462 -> 319[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2463[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2463[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2463 -> 320[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2464[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2464[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2464 -> 321[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2465[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2465[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2465 -> 322[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2466[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2466[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2466 -> 323[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2467[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2467[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2467 -> 324[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2468[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2468[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2468 -> 325[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2469[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2469[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2469 -> 326[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2470[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2470[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2470 -> 327[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2471[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2471[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2471 -> 328[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2472[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2472[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2472 -> 329[label="",style="solid", color="blue", weight=3]; 26.84/11.34 1170[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1171[label="False",fontsize=16,color="green",shape="box"];1172[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];1169[label="compare2 vyw43 vyw45 vyw73",fontsize=16,color="burlywood",shape="triangle"];2473[label="vyw73/False",fontsize=10,color="white",style="solid",shape="box"];1169 -> 2473[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2473 -> 1183[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2474[label="vyw73/True",fontsize=10,color="white",style="solid",shape="box"];1169 -> 2474[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2474 -> 1184[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 1173[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1174[label="vyw32 == vyw34",fontsize=16,color="blue",shape="box"];2475[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2475[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2475 -> 1185[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2476[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2476[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2476 -> 1186[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2477[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2477[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2477 -> 1187[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2478[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2478[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2478 -> 1188[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2479[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2479[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2479 -> 1189[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2480[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2480[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2480 -> 1190[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2481[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2481[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2481 -> 1191[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2482[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2482[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2482 -> 1192[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2483[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2483[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2483 -> 1193[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2484[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2484[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2484 -> 1194[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2485[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2485[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2485 -> 1195[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2486[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2486[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2486 -> 1196[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2487[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2487[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2487 -> 1197[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2488[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2488[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2488 -> 1198[label="",style="solid", color="blue", weight=3]; 26.84/11.34 1175[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];260[label="GT",fontsize=16,color="green",shape="box"];261[label="compare (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];261 -> 346[label="",style="solid", color="black", weight=3]; 26.84/11.34 262[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) otherwise)",fontsize=16,color="black",shape="box"];262 -> 347[label="",style="solid", color="black", weight=3]; 26.84/11.34 263 -> 5[label="",style="dashed", color="red", weight=0]; 26.84/11.34 263[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw20 (vyw21,vyw22))",fontsize=16,color="magenta"];263 -> 348[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 263 -> 349[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 264[label="vyw4000",fontsize=16,color="green",shape="box"];265[label="vyw300",fontsize=16,color="green",shape="box"];266 -> 123[label="",style="dashed", color="red", weight=0]; 26.84/11.34 266[label="vyw300 == vyw4000",fontsize=16,color="magenta"];266 -> 350[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 266 -> 351[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 267 -> 124[label="",style="dashed", color="red", weight=0]; 26.84/11.34 267[label="vyw300 == vyw4000",fontsize=16,color="magenta"];267 -> 352[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 267 -> 353[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 268 -> 125[label="",style="dashed", color="red", weight=0]; 26.84/11.34 268[label="vyw300 == vyw4000",fontsize=16,color="magenta"];268 -> 354[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 268 -> 355[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 269 -> 126[label="",style="dashed", color="red", weight=0]; 26.84/11.34 269[label="vyw300 == vyw4000",fontsize=16,color="magenta"];269 -> 356[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 269 -> 357[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 270 -> 127[label="",style="dashed", color="red", weight=0]; 26.84/11.34 270[label="vyw300 == vyw4000",fontsize=16,color="magenta"];270 -> 358[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 270 -> 359[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 271 -> 128[label="",style="dashed", color="red", weight=0]; 26.84/11.34 271[label="vyw300 == vyw4000",fontsize=16,color="magenta"];271 -> 360[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 271 -> 361[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 272 -> 129[label="",style="dashed", color="red", weight=0]; 26.84/11.34 272[label="vyw300 == vyw4000",fontsize=16,color="magenta"];272 -> 362[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 272 -> 363[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 273 -> 130[label="",style="dashed", color="red", weight=0]; 26.84/11.34 273[label="vyw300 == vyw4000",fontsize=16,color="magenta"];273 -> 364[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 273 -> 365[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 274 -> 131[label="",style="dashed", color="red", weight=0]; 26.84/11.34 274[label="vyw300 == vyw4000",fontsize=16,color="magenta"];274 -> 366[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 274 -> 367[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 275 -> 132[label="",style="dashed", color="red", weight=0]; 26.84/11.34 275[label="vyw300 == vyw4000",fontsize=16,color="magenta"];275 -> 368[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 275 -> 369[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 276 -> 133[label="",style="dashed", color="red", weight=0]; 26.84/11.34 276[label="vyw300 == vyw4000",fontsize=16,color="magenta"];276 -> 370[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 276 -> 371[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 277 -> 134[label="",style="dashed", color="red", weight=0]; 26.84/11.34 277[label="vyw300 == vyw4000",fontsize=16,color="magenta"];277 -> 372[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 277 -> 373[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 278 -> 135[label="",style="dashed", color="red", weight=0]; 26.84/11.34 278[label="vyw300 == vyw4000",fontsize=16,color="magenta"];278 -> 374[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 278 -> 375[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 279 -> 136[label="",style="dashed", color="red", weight=0]; 26.84/11.34 279[label="vyw300 == vyw4000",fontsize=16,color="magenta"];279 -> 376[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 279 -> 377[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 280[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];2489[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];280 -> 2489[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2489 -> 378[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2490[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];280 -> 2490[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2490 -> 379[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 281[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];281 -> 380[label="",style="solid", color="black", weight=3]; 26.84/11.34 282[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];2491[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];282 -> 2491[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2491 -> 381[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2492[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];282 -> 2492[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2492 -> 382[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 283[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];2493[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];283 -> 2493[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2493 -> 383[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2494[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];283 -> 2494[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2494 -> 384[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 284[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];284 -> 385[label="",style="solid", color="black", weight=3]; 26.84/11.34 285[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];2495[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];285 -> 2495[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2495 -> 386[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2496[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];285 -> 2496[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2496 -> 387[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 286[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];2497[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];286 -> 2497[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2497 -> 388[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2498[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];286 -> 2498[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2498 -> 389[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 287[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];2499[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];287 -> 2499[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2499 -> 390[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2500[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];287 -> 2500[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2500 -> 391[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 288 -> 127[label="",style="dashed", color="red", weight=0]; 26.84/11.34 288[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];288 -> 392[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 288 -> 393[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 289 -> 127[label="",style="dashed", color="red", weight=0]; 26.84/11.34 289[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];289 -> 394[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 289 -> 395[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 290[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];2501[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];290 -> 2501[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2501 -> 396[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2502[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];290 -> 2502[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2502 -> 397[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 401[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2503[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2503[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2503 -> 413[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2504[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2504[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2504 -> 414[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2505[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2505[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2505 -> 415[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2506[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2506[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2506 -> 416[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2507[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2507[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2507 -> 417[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2508[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2508[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2508 -> 418[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2509[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2509[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2509 -> 419[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2510[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2510[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2510 -> 420[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2511[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2511[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2511 -> 421[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2512[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2512[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2512 -> 422[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2513[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2513[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2513 -> 423[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2514[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2514[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2514 -> 424[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2515[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2515[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2515 -> 425[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2516[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];401 -> 2516[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2516 -> 426[label="",style="solid", color="blue", weight=3]; 26.84/11.34 402 -> 131[label="",style="dashed", color="red", weight=0]; 26.84/11.34 402[label="vyw301 == vyw4001",fontsize=16,color="magenta"];402 -> 427[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 402 -> 428[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 400[label="vyw52 && vyw53",fontsize=16,color="burlywood",shape="triangle"];2517[label="vyw52/False",fontsize=10,color="white",style="solid",shape="box"];400 -> 2517[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2517 -> 429[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 2518[label="vyw52/True",fontsize=10,color="white",style="solid",shape="box"];400 -> 2518[label="",style="solid", color="burlywood", weight=9]; 26.84/11.34 2518 -> 430[label="",style="solid", color="burlywood", weight=3]; 26.84/11.34 403[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2519[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2519[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2519 -> 431[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2520[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2520[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2520 -> 432[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2521[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2521[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2521 -> 433[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2522[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2522[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2522 -> 434[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2523[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2523[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2523 -> 435[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2524[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2524[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2524 -> 436[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2525[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2525[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2525 -> 437[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2526[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2526[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2526 -> 438[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2527[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2527[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2527 -> 439[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2528[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2528[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2528 -> 440[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2529[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2529[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2529 -> 441[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2530[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2530[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2530 -> 442[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2531[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2531[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2531 -> 443[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2532[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2532[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2532 -> 444[label="",style="solid", color="blue", weight=3]; 26.84/11.34 404 -> 400[label="",style="dashed", color="red", weight=0]; 26.84/11.34 404[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];404 -> 445[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 404 -> 446[label="",style="dashed", color="magenta", weight=3]; 26.84/11.34 405[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2533[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2533[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2533 -> 447[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2534[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2534[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2534 -> 448[label="",style="solid", color="blue", weight=3]; 26.84/11.34 406[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];2535[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 2535[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2535 -> 449[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2536[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];406 -> 2536[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2536 -> 450[label="",style="solid", color="blue", weight=3]; 26.84/11.34 407[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2537[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2537[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2537 -> 451[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2538[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2538[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2538 -> 452[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2539[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2539[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2539 -> 453[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2540[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2540[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2540 -> 454[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2541[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2541[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2541 -> 455[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2542[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2542[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2542 -> 456[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2543[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2543[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2543 -> 457[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2544[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2544[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2544 -> 458[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2545[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2545[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2545 -> 459[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2546[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2546[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2546 -> 460[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2547[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2547[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2547 -> 461[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2548[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2548[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2548 -> 462[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2549[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2549[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2549 -> 463[label="",style="solid", color="blue", weight=3]; 26.84/11.34 2550[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2550[label="",style="solid", color="blue", weight=9]; 26.84/11.34 2550 -> 464[label="",style="solid", color="blue", weight=3]; 26.84/11.34 408[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];2551[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2551[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2551 -> 465[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2552[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2552[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2552 -> 466[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2553[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2553[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2553 -> 467[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2554[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2554[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2554 -> 468[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2555[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2555[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2555 -> 469[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2556[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2556[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2556 -> 470[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2557[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2557[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2557 -> 471[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2558[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2558[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2558 -> 472[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2559[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2559[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2559 -> 473[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2560[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2560[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2560 -> 474[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2561[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2561[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2561 -> 475[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2562[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2562[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2562 -> 476[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2563[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2563[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2563 -> 477[label="",style="solid", color="blue", weight=3]; 26.96/11.37 2564[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2564[label="",style="solid", color="blue", weight=9]; 26.96/11.37 2564 -> 478[label="",style="solid", color="blue", weight=3]; 26.96/11.37 302 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.37 302[label="vyw300 == vyw4000",fontsize=16,color="magenta"];302 -> 479[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 302 -> 480[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 303 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.37 303[label="vyw300 == vyw4000",fontsize=16,color="magenta"];303 -> 481[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 303 -> 482[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 304 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.37 304[label="vyw300 == vyw4000",fontsize=16,color="magenta"];304 -> 483[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 304 -> 484[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 305 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.37 305[label="vyw300 == vyw4000",fontsize=16,color="magenta"];305 -> 485[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 305 -> 486[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 306 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.37 306[label="vyw300 == vyw4000",fontsize=16,color="magenta"];306 -> 487[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 306 -> 488[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 307 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.37 307[label="vyw300 == vyw4000",fontsize=16,color="magenta"];307 -> 489[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 307 -> 490[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 308 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.37 308[label="vyw300 == vyw4000",fontsize=16,color="magenta"];308 -> 491[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 308 -> 492[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 309 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.37 309[label="vyw300 == vyw4000",fontsize=16,color="magenta"];309 -> 493[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 309 -> 494[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 310 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.37 310[label="vyw300 == vyw4000",fontsize=16,color="magenta"];310 -> 495[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 310 -> 496[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 311 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.37 311[label="vyw300 == vyw4000",fontsize=16,color="magenta"];311 -> 497[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 311 -> 498[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 312 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.37 312[label="vyw300 == vyw4000",fontsize=16,color="magenta"];312 -> 499[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 312 -> 500[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 313 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.37 313[label="vyw300 == vyw4000",fontsize=16,color="magenta"];313 -> 501[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 313 -> 502[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 314 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.37 314[label="vyw300 == vyw4000",fontsize=16,color="magenta"];314 -> 503[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 314 -> 504[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 315 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.37 315[label="vyw300 == vyw4000",fontsize=16,color="magenta"];315 -> 505[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 315 -> 506[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 316 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.37 316[label="vyw300 == vyw4000",fontsize=16,color="magenta"];316 -> 507[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 316 -> 508[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 317 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.37 317[label="vyw300 == vyw4000",fontsize=16,color="magenta"];317 -> 509[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 317 -> 510[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 318 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.37 318[label="vyw300 == vyw4000",fontsize=16,color="magenta"];318 -> 511[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 318 -> 512[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 319 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.37 319[label="vyw300 == vyw4000",fontsize=16,color="magenta"];319 -> 513[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 319 -> 514[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 320 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.37 320[label="vyw300 == vyw4000",fontsize=16,color="magenta"];320 -> 515[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 320 -> 516[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 321 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.37 321[label="vyw300 == vyw4000",fontsize=16,color="magenta"];321 -> 517[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 321 -> 518[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 322 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.37 322[label="vyw300 == vyw4000",fontsize=16,color="magenta"];322 -> 519[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 322 -> 520[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 323 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.37 323[label="vyw300 == vyw4000",fontsize=16,color="magenta"];323 -> 521[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 323 -> 522[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 324 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.37 324[label="vyw300 == vyw4000",fontsize=16,color="magenta"];324 -> 523[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 324 -> 524[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 325 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.37 325[label="vyw300 == vyw4000",fontsize=16,color="magenta"];325 -> 525[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 325 -> 526[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 326 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.37 326[label="vyw300 == vyw4000",fontsize=16,color="magenta"];326 -> 527[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 326 -> 528[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 327 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.37 327[label="vyw300 == vyw4000",fontsize=16,color="magenta"];327 -> 529[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 327 -> 530[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 328 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.37 328[label="vyw300 == vyw4000",fontsize=16,color="magenta"];328 -> 531[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 328 -> 532[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 329 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.37 329[label="vyw300 == vyw4000",fontsize=16,color="magenta"];329 -> 533[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 329 -> 534[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1183[label="compare2 vyw43 vyw45 False",fontsize=16,color="black",shape="box"];1183 -> 1203[label="",style="solid", color="black", weight=3]; 26.96/11.37 1184[label="compare2 vyw43 vyw45 True",fontsize=16,color="black",shape="box"];1184 -> 1204[label="",style="solid", color="black", weight=3]; 26.96/11.37 1185 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1185[label="vyw32 == vyw34",fontsize=16,color="magenta"];1185 -> 1205[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1185 -> 1206[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1186 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1186[label="vyw32 == vyw34",fontsize=16,color="magenta"];1186 -> 1207[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1186 -> 1208[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1187 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1187[label="vyw32 == vyw34",fontsize=16,color="magenta"];1187 -> 1209[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1187 -> 1210[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1188 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1188[label="vyw32 == vyw34",fontsize=16,color="magenta"];1188 -> 1211[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1188 -> 1212[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1189 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1189[label="vyw32 == vyw34",fontsize=16,color="magenta"];1189 -> 1213[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1189 -> 1214[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1190 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1190[label="vyw32 == vyw34",fontsize=16,color="magenta"];1190 -> 1215[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1190 -> 1216[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1191 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1191[label="vyw32 == vyw34",fontsize=16,color="magenta"];1191 -> 1217[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1191 -> 1218[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1192 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1192[label="vyw32 == vyw34",fontsize=16,color="magenta"];1192 -> 1219[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1192 -> 1220[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1193 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1193[label="vyw32 == vyw34",fontsize=16,color="magenta"];1193 -> 1221[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1193 -> 1222[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1194 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1194[label="vyw32 == vyw34",fontsize=16,color="magenta"];1194 -> 1223[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1194 -> 1224[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1195 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1195[label="vyw32 == vyw34",fontsize=16,color="magenta"];1195 -> 1225[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1195 -> 1226[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1196 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1196[label="vyw32 == vyw34",fontsize=16,color="magenta"];1196 -> 1227[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1196 -> 1228[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1197 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1197[label="vyw32 == vyw34",fontsize=16,color="magenta"];1197 -> 1229[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1197 -> 1230[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1198 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.37 1198[label="vyw32 == vyw34",fontsize=16,color="magenta"];1198 -> 1231[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 1198 -> 1232[label="",style="dashed", color="magenta", weight=3]; 26.96/11.37 346[label="compare3 (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];346 -> 565[label="",style="solid", color="black", weight=3]; 26.96/11.37 347[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True)",fontsize=16,color="black",shape="box"];347 -> 566[label="",style="solid", color="black", weight=3]; 26.96/11.37 348[label="vyw20",fontsize=16,color="green",shape="box"];349[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];350[label="vyw4000",fontsize=16,color="green",shape="box"];351[label="vyw300",fontsize=16,color="green",shape="box"];352[label="vyw4000",fontsize=16,color="green",shape="box"];353[label="vyw300",fontsize=16,color="green",shape="box"];354[label="vyw4000",fontsize=16,color="green",shape="box"];355[label="vyw300",fontsize=16,color="green",shape="box"];356[label="vyw4000",fontsize=16,color="green",shape="box"];357[label="vyw300",fontsize=16,color="green",shape="box"];358[label="vyw4000",fontsize=16,color="green",shape="box"];359[label="vyw300",fontsize=16,color="green",shape="box"];360[label="vyw4000",fontsize=16,color="green",shape="box"];361[label="vyw300",fontsize=16,color="green",shape="box"];362[label="vyw4000",fontsize=16,color="green",shape="box"];363[label="vyw300",fontsize=16,color="green",shape="box"];364[label="vyw4000",fontsize=16,color="green",shape="box"];365[label="vyw300",fontsize=16,color="green",shape="box"];366[label="vyw4000",fontsize=16,color="green",shape="box"];367[label="vyw300",fontsize=16,color="green",shape="box"];368[label="vyw4000",fontsize=16,color="green",shape="box"];369[label="vyw300",fontsize=16,color="green",shape="box"];370[label="vyw4000",fontsize=16,color="green",shape="box"];371[label="vyw300",fontsize=16,color="green",shape="box"];372[label="vyw4000",fontsize=16,color="green",shape="box"];373[label="vyw300",fontsize=16,color="green",shape="box"];374[label="vyw4000",fontsize=16,color="green",shape="box"];375[label="vyw300",fontsize=16,color="green",shape="box"];376[label="vyw4000",fontsize=16,color="green",shape="box"];377[label="vyw300",fontsize=16,color="green",shape="box"];378[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];378 -> 567[label="",style="solid", color="black", weight=3]; 26.96/11.38 379[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];379 -> 568[label="",style="solid", color="black", weight=3]; 26.96/11.38 380[label="False",fontsize=16,color="green",shape="box"];381[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];381 -> 569[label="",style="solid", color="black", weight=3]; 26.96/11.38 382[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];382 -> 570[label="",style="solid", color="black", weight=3]; 26.96/11.38 383[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];383 -> 571[label="",style="solid", color="black", weight=3]; 26.96/11.38 384[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];384 -> 572[label="",style="solid", color="black", weight=3]; 26.96/11.38 385[label="False",fontsize=16,color="green",shape="box"];386[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];386 -> 573[label="",style="solid", color="black", weight=3]; 26.96/11.38 387[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];387 -> 574[label="",style="solid", color="black", weight=3]; 26.96/11.38 388[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];388 -> 575[label="",style="solid", color="black", weight=3]; 26.96/11.38 389[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];389 -> 576[label="",style="solid", color="black", weight=3]; 26.96/11.38 390[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];390 -> 577[label="",style="solid", color="black", weight=3]; 26.96/11.38 391[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];391 -> 578[label="",style="solid", color="black", weight=3]; 26.96/11.38 392[label="vyw301 * vyw4000",fontsize=16,color="black",shape="triangle"];392 -> 579[label="",style="solid", color="black", weight=3]; 26.96/11.38 393 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.38 393[label="vyw300 * vyw4001",fontsize=16,color="magenta"];393 -> 580[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 393 -> 581[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 394 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.38 394[label="vyw301 * vyw4000",fontsize=16,color="magenta"];394 -> 582[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 394 -> 583[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 395 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.38 395[label="vyw300 * vyw4001",fontsize=16,color="magenta"];395 -> 584[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 395 -> 585[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 396[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];2565[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];396 -> 2565[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2565 -> 586[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2566[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];396 -> 2566[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2566 -> 587[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 397[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];2567[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];397 -> 2567[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2567 -> 588[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2568[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];397 -> 2568[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2568 -> 589[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 413 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 413[label="vyw300 == vyw4000",fontsize=16,color="magenta"];413 -> 590[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 413 -> 591[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 414 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 414[label="vyw300 == vyw4000",fontsize=16,color="magenta"];414 -> 592[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 414 -> 593[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 415 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 415[label="vyw300 == vyw4000",fontsize=16,color="magenta"];415 -> 594[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 415 -> 595[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 416 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 416[label="vyw300 == vyw4000",fontsize=16,color="magenta"];416 -> 596[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 416 -> 597[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 417 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 417[label="vyw300 == vyw4000",fontsize=16,color="magenta"];417 -> 598[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 417 -> 599[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 418 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 418[label="vyw300 == vyw4000",fontsize=16,color="magenta"];418 -> 600[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 418 -> 601[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 419 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 419[label="vyw300 == vyw4000",fontsize=16,color="magenta"];419 -> 602[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 419 -> 603[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 420 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 420[label="vyw300 == vyw4000",fontsize=16,color="magenta"];420 -> 604[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 420 -> 605[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 421 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 421[label="vyw300 == vyw4000",fontsize=16,color="magenta"];421 -> 606[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 421 -> 607[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 422 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 422[label="vyw300 == vyw4000",fontsize=16,color="magenta"];422 -> 608[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 422 -> 609[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 423 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 423[label="vyw300 == vyw4000",fontsize=16,color="magenta"];423 -> 610[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 423 -> 611[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 424 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 424[label="vyw300 == vyw4000",fontsize=16,color="magenta"];424 -> 612[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 424 -> 613[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 425 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 425[label="vyw300 == vyw4000",fontsize=16,color="magenta"];425 -> 614[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 425 -> 615[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 426 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 426[label="vyw300 == vyw4000",fontsize=16,color="magenta"];426 -> 616[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 426 -> 617[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 427[label="vyw4001",fontsize=16,color="green",shape="box"];428[label="vyw301",fontsize=16,color="green",shape="box"];429[label="False && vyw53",fontsize=16,color="black",shape="box"];429 -> 618[label="",style="solid", color="black", weight=3]; 26.96/11.38 430[label="True && vyw53",fontsize=16,color="black",shape="box"];430 -> 619[label="",style="solid", color="black", weight=3]; 26.96/11.38 431 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 431[label="vyw300 == vyw4000",fontsize=16,color="magenta"];431 -> 620[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 431 -> 621[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 432 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 432[label="vyw300 == vyw4000",fontsize=16,color="magenta"];432 -> 622[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 432 -> 623[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 433 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 433[label="vyw300 == vyw4000",fontsize=16,color="magenta"];433 -> 624[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 433 -> 625[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 434 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 434[label="vyw300 == vyw4000",fontsize=16,color="magenta"];434 -> 626[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 434 -> 627[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 435 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 435[label="vyw300 == vyw4000",fontsize=16,color="magenta"];435 -> 628[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 435 -> 629[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 436 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 436[label="vyw300 == vyw4000",fontsize=16,color="magenta"];436 -> 630[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 436 -> 631[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 437 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 437[label="vyw300 == vyw4000",fontsize=16,color="magenta"];437 -> 632[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 437 -> 633[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 438 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 438[label="vyw300 == vyw4000",fontsize=16,color="magenta"];438 -> 634[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 438 -> 635[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 439 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 439[label="vyw300 == vyw4000",fontsize=16,color="magenta"];439 -> 636[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 439 -> 637[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 440 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 440[label="vyw300 == vyw4000",fontsize=16,color="magenta"];440 -> 638[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 440 -> 639[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 441 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 441[label="vyw300 == vyw4000",fontsize=16,color="magenta"];441 -> 640[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 441 -> 641[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 442 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 442[label="vyw300 == vyw4000",fontsize=16,color="magenta"];442 -> 642[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 442 -> 643[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 443 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 443[label="vyw300 == vyw4000",fontsize=16,color="magenta"];443 -> 644[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 443 -> 645[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 444 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 444[label="vyw300 == vyw4000",fontsize=16,color="magenta"];444 -> 646[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 444 -> 647[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 445[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];2569[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2569[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2569 -> 648[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2570[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2570[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2570 -> 649[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2571[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2571[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2571 -> 650[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2572[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2572[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2572 -> 651[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2573[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2573[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2573 -> 652[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2574[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2574[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2574 -> 653[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2575[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2575[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2575 -> 654[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2576[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2576[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2576 -> 655[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2577[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2577[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2577 -> 656[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2578[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2578[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2578 -> 657[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2579[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2579[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2579 -> 658[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2580[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2580[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2580 -> 659[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2581[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2581[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2581 -> 660[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2582[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];445 -> 2582[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2582 -> 661[label="",style="solid", color="blue", weight=3]; 26.96/11.38 446[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];2583[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2583[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2583 -> 662[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2584[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2584[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2584 -> 663[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2585[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2585[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2585 -> 664[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2586[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2586[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2586 -> 665[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2587[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2587[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2587 -> 666[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2588[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2588[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2588 -> 667[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2589[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2589[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2589 -> 668[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2590[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2590[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2590 -> 669[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2591[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2591[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2591 -> 670[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2592[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2592[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2592 -> 671[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2593[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2593[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2593 -> 672[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2594[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2594[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2594 -> 673[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2595[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2595[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2595 -> 674[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2596[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];446 -> 2596[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2596 -> 675[label="",style="solid", color="blue", weight=3]; 26.96/11.38 447 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 447[label="vyw300 == vyw4000",fontsize=16,color="magenta"];447 -> 676[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 447 -> 677[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 448 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 448[label="vyw300 == vyw4000",fontsize=16,color="magenta"];448 -> 678[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 448 -> 679[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 449 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 449[label="vyw301 == vyw4001",fontsize=16,color="magenta"];449 -> 680[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 449 -> 681[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 450 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 450[label="vyw301 == vyw4001",fontsize=16,color="magenta"];450 -> 682[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 450 -> 683[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 451 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 451[label="vyw300 == vyw4000",fontsize=16,color="magenta"];451 -> 684[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 451 -> 685[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 452 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 452[label="vyw300 == vyw4000",fontsize=16,color="magenta"];452 -> 686[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 452 -> 687[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 453 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 453[label="vyw300 == vyw4000",fontsize=16,color="magenta"];453 -> 688[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 453 -> 689[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 454 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 454[label="vyw300 == vyw4000",fontsize=16,color="magenta"];454 -> 690[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 454 -> 691[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 455 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 455[label="vyw300 == vyw4000",fontsize=16,color="magenta"];455 -> 692[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 455 -> 693[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 456 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 456[label="vyw300 == vyw4000",fontsize=16,color="magenta"];456 -> 694[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 456 -> 695[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 457 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 457[label="vyw300 == vyw4000",fontsize=16,color="magenta"];457 -> 696[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 457 -> 697[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 458 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 458[label="vyw300 == vyw4000",fontsize=16,color="magenta"];458 -> 698[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 458 -> 699[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 459 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 459[label="vyw300 == vyw4000",fontsize=16,color="magenta"];459 -> 700[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 459 -> 701[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 460 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 460[label="vyw300 == vyw4000",fontsize=16,color="magenta"];460 -> 702[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 460 -> 703[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 461 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 461[label="vyw300 == vyw4000",fontsize=16,color="magenta"];461 -> 704[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 461 -> 705[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 462 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 462[label="vyw300 == vyw4000",fontsize=16,color="magenta"];462 -> 706[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 462 -> 707[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 463 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 463[label="vyw300 == vyw4000",fontsize=16,color="magenta"];463 -> 708[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 463 -> 709[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 464 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 464[label="vyw300 == vyw4000",fontsize=16,color="magenta"];464 -> 710[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 464 -> 711[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 465 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 465[label="vyw301 == vyw4001",fontsize=16,color="magenta"];465 -> 712[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 465 -> 713[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 466 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 466[label="vyw301 == vyw4001",fontsize=16,color="magenta"];466 -> 714[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 466 -> 715[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 467 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 467[label="vyw301 == vyw4001",fontsize=16,color="magenta"];467 -> 716[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 467 -> 717[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 468 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 468[label="vyw301 == vyw4001",fontsize=16,color="magenta"];468 -> 718[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 468 -> 719[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 469 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 469[label="vyw301 == vyw4001",fontsize=16,color="magenta"];469 -> 720[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 469 -> 721[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 470 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 470[label="vyw301 == vyw4001",fontsize=16,color="magenta"];470 -> 722[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 470 -> 723[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 471 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 471[label="vyw301 == vyw4001",fontsize=16,color="magenta"];471 -> 724[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 471 -> 725[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 472 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 472[label="vyw301 == vyw4001",fontsize=16,color="magenta"];472 -> 726[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 472 -> 727[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 473 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 473[label="vyw301 == vyw4001",fontsize=16,color="magenta"];473 -> 728[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 473 -> 729[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 474 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 474[label="vyw301 == vyw4001",fontsize=16,color="magenta"];474 -> 730[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 474 -> 731[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 475 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 475[label="vyw301 == vyw4001",fontsize=16,color="magenta"];475 -> 732[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 475 -> 733[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 476 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 476[label="vyw301 == vyw4001",fontsize=16,color="magenta"];476 -> 734[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 476 -> 735[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 477 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 477[label="vyw301 == vyw4001",fontsize=16,color="magenta"];477 -> 736[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 477 -> 737[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 478 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 478[label="vyw301 == vyw4001",fontsize=16,color="magenta"];478 -> 738[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 478 -> 739[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 479[label="vyw4000",fontsize=16,color="green",shape="box"];480[label="vyw300",fontsize=16,color="green",shape="box"];481[label="vyw4000",fontsize=16,color="green",shape="box"];482[label="vyw300",fontsize=16,color="green",shape="box"];483[label="vyw4000",fontsize=16,color="green",shape="box"];484[label="vyw300",fontsize=16,color="green",shape="box"];485[label="vyw4000",fontsize=16,color="green",shape="box"];486[label="vyw300",fontsize=16,color="green",shape="box"];487[label="vyw4000",fontsize=16,color="green",shape="box"];488[label="vyw300",fontsize=16,color="green",shape="box"];489[label="vyw4000",fontsize=16,color="green",shape="box"];490[label="vyw300",fontsize=16,color="green",shape="box"];491[label="vyw4000",fontsize=16,color="green",shape="box"];492[label="vyw300",fontsize=16,color="green",shape="box"];493[label="vyw4000",fontsize=16,color="green",shape="box"];494[label="vyw300",fontsize=16,color="green",shape="box"];495[label="vyw4000",fontsize=16,color="green",shape="box"];496[label="vyw300",fontsize=16,color="green",shape="box"];497[label="vyw4000",fontsize=16,color="green",shape="box"];498[label="vyw300",fontsize=16,color="green",shape="box"];499[label="vyw4000",fontsize=16,color="green",shape="box"];500[label="vyw300",fontsize=16,color="green",shape="box"];501[label="vyw4000",fontsize=16,color="green",shape="box"];502[label="vyw300",fontsize=16,color="green",shape="box"];503[label="vyw4000",fontsize=16,color="green",shape="box"];504[label="vyw300",fontsize=16,color="green",shape="box"];505[label="vyw4000",fontsize=16,color="green",shape="box"];506[label="vyw300",fontsize=16,color="green",shape="box"];507[label="vyw4000",fontsize=16,color="green",shape="box"];508[label="vyw300",fontsize=16,color="green",shape="box"];509[label="vyw4000",fontsize=16,color="green",shape="box"];510[label="vyw300",fontsize=16,color="green",shape="box"];511[label="vyw4000",fontsize=16,color="green",shape="box"];512[label="vyw300",fontsize=16,color="green",shape="box"];513[label="vyw4000",fontsize=16,color="green",shape="box"];514[label="vyw300",fontsize=16,color="green",shape="box"];515[label="vyw4000",fontsize=16,color="green",shape="box"];516[label="vyw300",fontsize=16,color="green",shape="box"];517[label="vyw4000",fontsize=16,color="green",shape="box"];518[label="vyw300",fontsize=16,color="green",shape="box"];519[label="vyw4000",fontsize=16,color="green",shape="box"];520[label="vyw300",fontsize=16,color="green",shape="box"];521[label="vyw4000",fontsize=16,color="green",shape="box"];522[label="vyw300",fontsize=16,color="green",shape="box"];523[label="vyw4000",fontsize=16,color="green",shape="box"];524[label="vyw300",fontsize=16,color="green",shape="box"];525[label="vyw4000",fontsize=16,color="green",shape="box"];526[label="vyw300",fontsize=16,color="green",shape="box"];527[label="vyw4000",fontsize=16,color="green",shape="box"];528[label="vyw300",fontsize=16,color="green",shape="box"];529[label="vyw4000",fontsize=16,color="green",shape="box"];530[label="vyw300",fontsize=16,color="green",shape="box"];531[label="vyw4000",fontsize=16,color="green",shape="box"];532[label="vyw300",fontsize=16,color="green",shape="box"];533[label="vyw4000",fontsize=16,color="green",shape="box"];534[label="vyw300",fontsize=16,color="green",shape="box"];1203[label="compare1 vyw43 vyw45 (vyw43 <= vyw45)",fontsize=16,color="burlywood",shape="box"];2597[label="vyw43/(vyw430,vyw431)",fontsize=10,color="white",style="solid",shape="box"];1203 -> 2597[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2597 -> 1237[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1204[label="EQ",fontsize=16,color="green",shape="box"];1205[label="vyw34",fontsize=16,color="green",shape="box"];1206[label="vyw32",fontsize=16,color="green",shape="box"];1207[label="vyw34",fontsize=16,color="green",shape="box"];1208[label="vyw32",fontsize=16,color="green",shape="box"];1209[label="vyw34",fontsize=16,color="green",shape="box"];1210[label="vyw32",fontsize=16,color="green",shape="box"];1211[label="vyw34",fontsize=16,color="green",shape="box"];1212[label="vyw32",fontsize=16,color="green",shape="box"];1213[label="vyw34",fontsize=16,color="green",shape="box"];1214[label="vyw32",fontsize=16,color="green",shape="box"];1215[label="vyw34",fontsize=16,color="green",shape="box"];1216[label="vyw32",fontsize=16,color="green",shape="box"];1217[label="vyw34",fontsize=16,color="green",shape="box"];1218[label="vyw32",fontsize=16,color="green",shape="box"];1219[label="vyw34",fontsize=16,color="green",shape="box"];1220[label="vyw32",fontsize=16,color="green",shape="box"];1221[label="vyw34",fontsize=16,color="green",shape="box"];1222[label="vyw32",fontsize=16,color="green",shape="box"];1223[label="vyw34",fontsize=16,color="green",shape="box"];1224[label="vyw32",fontsize=16,color="green",shape="box"];1225[label="vyw34",fontsize=16,color="green",shape="box"];1226[label="vyw32",fontsize=16,color="green",shape="box"];1227[label="vyw34",fontsize=16,color="green",shape="box"];1228[label="vyw32",fontsize=16,color="green",shape="box"];1229[label="vyw34",fontsize=16,color="green",shape="box"];1230[label="vyw32",fontsize=16,color="green",shape="box"];1231[label="vyw34",fontsize=16,color="green",shape="box"];1232[label="vyw32",fontsize=16,color="green",shape="box"];565 -> 1169[label="",style="dashed", color="red", weight=0]; 26.96/11.38 565[label="compare2 (vyw21,vyw22) (vyw15,vyw16) ((vyw21,vyw22) == (vyw15,vyw16))",fontsize=16,color="magenta"];565 -> 1179[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 565 -> 1180[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 565 -> 1181[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 566[label="FiniteMap.elemFM0 (Just vyw17)",fontsize=16,color="black",shape="box"];566 -> 746[label="",style="solid", color="black", weight=3]; 26.96/11.38 567 -> 290[label="",style="dashed", color="red", weight=0]; 26.96/11.38 567[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];567 -> 747[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 567 -> 748[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 568[label="False",fontsize=16,color="green",shape="box"];569[label="False",fontsize=16,color="green",shape="box"];570[label="True",fontsize=16,color="green",shape="box"];571[label="False",fontsize=16,color="green",shape="box"];572[label="True",fontsize=16,color="green",shape="box"];573 -> 290[label="",style="dashed", color="red", weight=0]; 26.96/11.38 573[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];573 -> 749[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 573 -> 750[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 574[label="False",fontsize=16,color="green",shape="box"];575[label="False",fontsize=16,color="green",shape="box"];576[label="True",fontsize=16,color="green",shape="box"];577[label="False",fontsize=16,color="green",shape="box"];578[label="True",fontsize=16,color="green",shape="box"];579[label="primMulInt vyw301 vyw4000",fontsize=16,color="burlywood",shape="triangle"];2598[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];579 -> 2598[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2598 -> 751[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2599[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];579 -> 2599[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2599 -> 752[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 580[label="vyw4001",fontsize=16,color="green",shape="box"];581[label="vyw300",fontsize=16,color="green",shape="box"];582[label="vyw4000",fontsize=16,color="green",shape="box"];583[label="vyw301",fontsize=16,color="green",shape="box"];584[label="vyw4001",fontsize=16,color="green",shape="box"];585[label="vyw300",fontsize=16,color="green",shape="box"];586[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];586 -> 753[label="",style="solid", color="black", weight=3]; 26.96/11.38 587[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];587 -> 754[label="",style="solid", color="black", weight=3]; 26.96/11.38 588[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];588 -> 755[label="",style="solid", color="black", weight=3]; 26.96/11.38 589[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];589 -> 756[label="",style="solid", color="black", weight=3]; 26.96/11.38 590[label="vyw4000",fontsize=16,color="green",shape="box"];591[label="vyw300",fontsize=16,color="green",shape="box"];592[label="vyw4000",fontsize=16,color="green",shape="box"];593[label="vyw300",fontsize=16,color="green",shape="box"];594[label="vyw4000",fontsize=16,color="green",shape="box"];595[label="vyw300",fontsize=16,color="green",shape="box"];596[label="vyw4000",fontsize=16,color="green",shape="box"];597[label="vyw300",fontsize=16,color="green",shape="box"];598[label="vyw4000",fontsize=16,color="green",shape="box"];599[label="vyw300",fontsize=16,color="green",shape="box"];600[label="vyw4000",fontsize=16,color="green",shape="box"];601[label="vyw300",fontsize=16,color="green",shape="box"];602[label="vyw4000",fontsize=16,color="green",shape="box"];603[label="vyw300",fontsize=16,color="green",shape="box"];604[label="vyw4000",fontsize=16,color="green",shape="box"];605[label="vyw300",fontsize=16,color="green",shape="box"];606[label="vyw4000",fontsize=16,color="green",shape="box"];607[label="vyw300",fontsize=16,color="green",shape="box"];608[label="vyw4000",fontsize=16,color="green",shape="box"];609[label="vyw300",fontsize=16,color="green",shape="box"];610[label="vyw4000",fontsize=16,color="green",shape="box"];611[label="vyw300",fontsize=16,color="green",shape="box"];612[label="vyw4000",fontsize=16,color="green",shape="box"];613[label="vyw300",fontsize=16,color="green",shape="box"];614[label="vyw4000",fontsize=16,color="green",shape="box"];615[label="vyw300",fontsize=16,color="green",shape="box"];616[label="vyw4000",fontsize=16,color="green",shape="box"];617[label="vyw300",fontsize=16,color="green",shape="box"];618[label="False",fontsize=16,color="green",shape="box"];619[label="vyw53",fontsize=16,color="green",shape="box"];620[label="vyw4000",fontsize=16,color="green",shape="box"];621[label="vyw300",fontsize=16,color="green",shape="box"];622[label="vyw4000",fontsize=16,color="green",shape="box"];623[label="vyw300",fontsize=16,color="green",shape="box"];624[label="vyw4000",fontsize=16,color="green",shape="box"];625[label="vyw300",fontsize=16,color="green",shape="box"];626[label="vyw4000",fontsize=16,color="green",shape="box"];627[label="vyw300",fontsize=16,color="green",shape="box"];628[label="vyw4000",fontsize=16,color="green",shape="box"];629[label="vyw300",fontsize=16,color="green",shape="box"];630[label="vyw4000",fontsize=16,color="green",shape="box"];631[label="vyw300",fontsize=16,color="green",shape="box"];632[label="vyw4000",fontsize=16,color="green",shape="box"];633[label="vyw300",fontsize=16,color="green",shape="box"];634[label="vyw4000",fontsize=16,color="green",shape="box"];635[label="vyw300",fontsize=16,color="green",shape="box"];636[label="vyw4000",fontsize=16,color="green",shape="box"];637[label="vyw300",fontsize=16,color="green",shape="box"];638[label="vyw4000",fontsize=16,color="green",shape="box"];639[label="vyw300",fontsize=16,color="green",shape="box"];640[label="vyw4000",fontsize=16,color="green",shape="box"];641[label="vyw300",fontsize=16,color="green",shape="box"];642[label="vyw4000",fontsize=16,color="green",shape="box"];643[label="vyw300",fontsize=16,color="green",shape="box"];644[label="vyw4000",fontsize=16,color="green",shape="box"];645[label="vyw300",fontsize=16,color="green",shape="box"];646[label="vyw4000",fontsize=16,color="green",shape="box"];647[label="vyw300",fontsize=16,color="green",shape="box"];648 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 648[label="vyw301 == vyw4001",fontsize=16,color="magenta"];648 -> 757[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 648 -> 758[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 649 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 649[label="vyw301 == vyw4001",fontsize=16,color="magenta"];649 -> 759[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 649 -> 760[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 650 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 650[label="vyw301 == vyw4001",fontsize=16,color="magenta"];650 -> 761[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 650 -> 762[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 651 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 651[label="vyw301 == vyw4001",fontsize=16,color="magenta"];651 -> 763[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 651 -> 764[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 652 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 652[label="vyw301 == vyw4001",fontsize=16,color="magenta"];652 -> 765[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 652 -> 766[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 653 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 653[label="vyw301 == vyw4001",fontsize=16,color="magenta"];653 -> 767[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 653 -> 768[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 654 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 654[label="vyw301 == vyw4001",fontsize=16,color="magenta"];654 -> 769[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 654 -> 770[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 655 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 655[label="vyw301 == vyw4001",fontsize=16,color="magenta"];655 -> 771[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 655 -> 772[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 656 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 656[label="vyw301 == vyw4001",fontsize=16,color="magenta"];656 -> 773[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 656 -> 774[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 657 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 657[label="vyw301 == vyw4001",fontsize=16,color="magenta"];657 -> 775[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 657 -> 776[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 658 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 658[label="vyw301 == vyw4001",fontsize=16,color="magenta"];658 -> 777[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 658 -> 778[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 659 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 659[label="vyw301 == vyw4001",fontsize=16,color="magenta"];659 -> 779[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 659 -> 780[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 660 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 660[label="vyw301 == vyw4001",fontsize=16,color="magenta"];660 -> 781[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 660 -> 782[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 661 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 661[label="vyw301 == vyw4001",fontsize=16,color="magenta"];661 -> 783[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 661 -> 784[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 662 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 662[label="vyw302 == vyw4002",fontsize=16,color="magenta"];662 -> 785[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 662 -> 786[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 663 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 663[label="vyw302 == vyw4002",fontsize=16,color="magenta"];663 -> 787[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 663 -> 788[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 664 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 664[label="vyw302 == vyw4002",fontsize=16,color="magenta"];664 -> 789[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 664 -> 790[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 665 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 665[label="vyw302 == vyw4002",fontsize=16,color="magenta"];665 -> 791[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 665 -> 792[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 666 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 666[label="vyw302 == vyw4002",fontsize=16,color="magenta"];666 -> 793[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 666 -> 794[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 667 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 667[label="vyw302 == vyw4002",fontsize=16,color="magenta"];667 -> 795[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 667 -> 796[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 668 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 668[label="vyw302 == vyw4002",fontsize=16,color="magenta"];668 -> 797[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 668 -> 798[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 669 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 669[label="vyw302 == vyw4002",fontsize=16,color="magenta"];669 -> 799[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 669 -> 800[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 670 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 670[label="vyw302 == vyw4002",fontsize=16,color="magenta"];670 -> 801[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 670 -> 802[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 671 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 671[label="vyw302 == vyw4002",fontsize=16,color="magenta"];671 -> 803[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 671 -> 804[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 672 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 672[label="vyw302 == vyw4002",fontsize=16,color="magenta"];672 -> 805[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 672 -> 806[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 673 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 673[label="vyw302 == vyw4002",fontsize=16,color="magenta"];673 -> 807[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 673 -> 808[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 674 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 674[label="vyw302 == vyw4002",fontsize=16,color="magenta"];674 -> 809[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 674 -> 810[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 675 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 675[label="vyw302 == vyw4002",fontsize=16,color="magenta"];675 -> 811[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 675 -> 812[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 676[label="vyw4000",fontsize=16,color="green",shape="box"];677[label="vyw300",fontsize=16,color="green",shape="box"];678[label="vyw4000",fontsize=16,color="green",shape="box"];679[label="vyw300",fontsize=16,color="green",shape="box"];680[label="vyw4001",fontsize=16,color="green",shape="box"];681[label="vyw301",fontsize=16,color="green",shape="box"];682[label="vyw4001",fontsize=16,color="green",shape="box"];683[label="vyw301",fontsize=16,color="green",shape="box"];684[label="vyw4000",fontsize=16,color="green",shape="box"];685[label="vyw300",fontsize=16,color="green",shape="box"];686[label="vyw4000",fontsize=16,color="green",shape="box"];687[label="vyw300",fontsize=16,color="green",shape="box"];688[label="vyw4000",fontsize=16,color="green",shape="box"];689[label="vyw300",fontsize=16,color="green",shape="box"];690[label="vyw4000",fontsize=16,color="green",shape="box"];691[label="vyw300",fontsize=16,color="green",shape="box"];692[label="vyw4000",fontsize=16,color="green",shape="box"];693[label="vyw300",fontsize=16,color="green",shape="box"];694[label="vyw4000",fontsize=16,color="green",shape="box"];695[label="vyw300",fontsize=16,color="green",shape="box"];696[label="vyw4000",fontsize=16,color="green",shape="box"];697[label="vyw300",fontsize=16,color="green",shape="box"];698[label="vyw4000",fontsize=16,color="green",shape="box"];699[label="vyw300",fontsize=16,color="green",shape="box"];700[label="vyw4000",fontsize=16,color="green",shape="box"];701[label="vyw300",fontsize=16,color="green",shape="box"];702[label="vyw4000",fontsize=16,color="green",shape="box"];703[label="vyw300",fontsize=16,color="green",shape="box"];704[label="vyw4000",fontsize=16,color="green",shape="box"];705[label="vyw300",fontsize=16,color="green",shape="box"];706[label="vyw4000",fontsize=16,color="green",shape="box"];707[label="vyw300",fontsize=16,color="green",shape="box"];708[label="vyw4000",fontsize=16,color="green",shape="box"];709[label="vyw300",fontsize=16,color="green",shape="box"];710[label="vyw4000",fontsize=16,color="green",shape="box"];711[label="vyw300",fontsize=16,color="green",shape="box"];712[label="vyw4001",fontsize=16,color="green",shape="box"];713[label="vyw301",fontsize=16,color="green",shape="box"];714[label="vyw4001",fontsize=16,color="green",shape="box"];715[label="vyw301",fontsize=16,color="green",shape="box"];716[label="vyw4001",fontsize=16,color="green",shape="box"];717[label="vyw301",fontsize=16,color="green",shape="box"];718[label="vyw4001",fontsize=16,color="green",shape="box"];719[label="vyw301",fontsize=16,color="green",shape="box"];720[label="vyw4001",fontsize=16,color="green",shape="box"];721[label="vyw301",fontsize=16,color="green",shape="box"];722[label="vyw4001",fontsize=16,color="green",shape="box"];723[label="vyw301",fontsize=16,color="green",shape="box"];724[label="vyw4001",fontsize=16,color="green",shape="box"];725[label="vyw301",fontsize=16,color="green",shape="box"];726[label="vyw4001",fontsize=16,color="green",shape="box"];727[label="vyw301",fontsize=16,color="green",shape="box"];728[label="vyw4001",fontsize=16,color="green",shape="box"];729[label="vyw301",fontsize=16,color="green",shape="box"];730[label="vyw4001",fontsize=16,color="green",shape="box"];731[label="vyw301",fontsize=16,color="green",shape="box"];732[label="vyw4001",fontsize=16,color="green",shape="box"];733[label="vyw301",fontsize=16,color="green",shape="box"];734[label="vyw4001",fontsize=16,color="green",shape="box"];735[label="vyw301",fontsize=16,color="green",shape="box"];736[label="vyw4001",fontsize=16,color="green",shape="box"];737[label="vyw301",fontsize=16,color="green",shape="box"];738[label="vyw4001",fontsize=16,color="green",shape="box"];739[label="vyw301",fontsize=16,color="green",shape="box"];1237[label="compare1 (vyw430,vyw431) vyw45 ((vyw430,vyw431) <= vyw45)",fontsize=16,color="burlywood",shape="box"];2600[label="vyw45/(vyw450,vyw451)",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2600[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2600 -> 1240[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1179[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1180 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1180[label="(vyw21,vyw22) == (vyw15,vyw16)",fontsize=16,color="magenta"];1180 -> 1199[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1180 -> 1200[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1181[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];746[label="True",fontsize=16,color="green",shape="box"];747[label="vyw40000",fontsize=16,color="green",shape="box"];748[label="vyw3000",fontsize=16,color="green",shape="box"];749[label="vyw40000",fontsize=16,color="green",shape="box"];750[label="vyw3000",fontsize=16,color="green",shape="box"];751[label="primMulInt (Pos vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];2601[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];751 -> 2601[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2601 -> 817[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2602[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];751 -> 2602[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2602 -> 818[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 752[label="primMulInt (Neg vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];2603[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];752 -> 2603[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2603 -> 819[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2604[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];752 -> 2604[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2604 -> 820[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 753 -> 290[label="",style="dashed", color="red", weight=0]; 26.96/11.38 753[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];753 -> 821[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 753 -> 822[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 754[label="False",fontsize=16,color="green",shape="box"];755[label="False",fontsize=16,color="green",shape="box"];756[label="True",fontsize=16,color="green",shape="box"];757[label="vyw4001",fontsize=16,color="green",shape="box"];758[label="vyw301",fontsize=16,color="green",shape="box"];759[label="vyw4001",fontsize=16,color="green",shape="box"];760[label="vyw301",fontsize=16,color="green",shape="box"];761[label="vyw4001",fontsize=16,color="green",shape="box"];762[label="vyw301",fontsize=16,color="green",shape="box"];763[label="vyw4001",fontsize=16,color="green",shape="box"];764[label="vyw301",fontsize=16,color="green",shape="box"];765[label="vyw4001",fontsize=16,color="green",shape="box"];766[label="vyw301",fontsize=16,color="green",shape="box"];767[label="vyw4001",fontsize=16,color="green",shape="box"];768[label="vyw301",fontsize=16,color="green",shape="box"];769[label="vyw4001",fontsize=16,color="green",shape="box"];770[label="vyw301",fontsize=16,color="green",shape="box"];771[label="vyw4001",fontsize=16,color="green",shape="box"];772[label="vyw301",fontsize=16,color="green",shape="box"];773[label="vyw4001",fontsize=16,color="green",shape="box"];774[label="vyw301",fontsize=16,color="green",shape="box"];775[label="vyw4001",fontsize=16,color="green",shape="box"];776[label="vyw301",fontsize=16,color="green",shape="box"];777[label="vyw4001",fontsize=16,color="green",shape="box"];778[label="vyw301",fontsize=16,color="green",shape="box"];779[label="vyw4001",fontsize=16,color="green",shape="box"];780[label="vyw301",fontsize=16,color="green",shape="box"];781[label="vyw4001",fontsize=16,color="green",shape="box"];782[label="vyw301",fontsize=16,color="green",shape="box"];783[label="vyw4001",fontsize=16,color="green",shape="box"];784[label="vyw301",fontsize=16,color="green",shape="box"];785[label="vyw4002",fontsize=16,color="green",shape="box"];786[label="vyw302",fontsize=16,color="green",shape="box"];787[label="vyw4002",fontsize=16,color="green",shape="box"];788[label="vyw302",fontsize=16,color="green",shape="box"];789[label="vyw4002",fontsize=16,color="green",shape="box"];790[label="vyw302",fontsize=16,color="green",shape="box"];791[label="vyw4002",fontsize=16,color="green",shape="box"];792[label="vyw302",fontsize=16,color="green",shape="box"];793[label="vyw4002",fontsize=16,color="green",shape="box"];794[label="vyw302",fontsize=16,color="green",shape="box"];795[label="vyw4002",fontsize=16,color="green",shape="box"];796[label="vyw302",fontsize=16,color="green",shape="box"];797[label="vyw4002",fontsize=16,color="green",shape="box"];798[label="vyw302",fontsize=16,color="green",shape="box"];799[label="vyw4002",fontsize=16,color="green",shape="box"];800[label="vyw302",fontsize=16,color="green",shape="box"];801[label="vyw4002",fontsize=16,color="green",shape="box"];802[label="vyw302",fontsize=16,color="green",shape="box"];803[label="vyw4002",fontsize=16,color="green",shape="box"];804[label="vyw302",fontsize=16,color="green",shape="box"];805[label="vyw4002",fontsize=16,color="green",shape="box"];806[label="vyw302",fontsize=16,color="green",shape="box"];807[label="vyw4002",fontsize=16,color="green",shape="box"];808[label="vyw302",fontsize=16,color="green",shape="box"];809[label="vyw4002",fontsize=16,color="green",shape="box"];810[label="vyw302",fontsize=16,color="green",shape="box"];811[label="vyw4002",fontsize=16,color="green",shape="box"];812[label="vyw302",fontsize=16,color="green",shape="box"];1240[label="compare1 (vyw430,vyw431) (vyw450,vyw451) ((vyw430,vyw431) <= (vyw450,vyw451))",fontsize=16,color="black",shape="box"];1240 -> 1242[label="",style="solid", color="black", weight=3]; 26.96/11.38 1199[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1200[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];817[label="primMulInt (Pos vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];817 -> 856[label="",style="solid", color="black", weight=3]; 26.96/11.38 818[label="primMulInt (Pos vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];818 -> 857[label="",style="solid", color="black", weight=3]; 26.96/11.38 819[label="primMulInt (Neg vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];819 -> 858[label="",style="solid", color="black", weight=3]; 26.96/11.38 820[label="primMulInt (Neg vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];820 -> 859[label="",style="solid", color="black", weight=3]; 26.96/11.38 821[label="vyw40000",fontsize=16,color="green",shape="box"];822[label="vyw3000",fontsize=16,color="green",shape="box"];1242 -> 1249[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1242[label="compare1 (vyw430,vyw431) (vyw450,vyw451) (vyw430 < vyw450 || vyw430 == vyw450 && vyw431 <= vyw451)",fontsize=16,color="magenta"];1242 -> 1250[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1242 -> 1251[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1242 -> 1252[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1242 -> 1253[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1242 -> 1254[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1242 -> 1255[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 856[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];856 -> 904[label="",style="dashed", color="green", weight=3]; 26.96/11.38 857[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];857 -> 905[label="",style="dashed", color="green", weight=3]; 26.96/11.38 858[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];858 -> 906[label="",style="dashed", color="green", weight=3]; 26.96/11.38 859[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];859 -> 907[label="",style="dashed", color="green", weight=3]; 26.96/11.38 1250 -> 400[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1250[label="vyw430 == vyw450 && vyw431 <= vyw451",fontsize=16,color="magenta"];1250 -> 1262[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1250 -> 1263[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1251[label="vyw431",fontsize=16,color="green",shape="box"];1252[label="vyw451",fontsize=16,color="green",shape="box"];1253[label="vyw430",fontsize=16,color="green",shape="box"];1254[label="vyw430 < vyw450",fontsize=16,color="blue",shape="box"];2605[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2605[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2605 -> 1264[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2606[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2606[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2606 -> 1265[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2607[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2607[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2607 -> 1266[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2608[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2608[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2608 -> 1267[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2609[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2609[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2609 -> 1268[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2610[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2610[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2610 -> 1269[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2611[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2611[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2611 -> 1270[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2612[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2612[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2612 -> 1271[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2613[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2613[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2613 -> 1272[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2614[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2614[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2614 -> 1273[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2615[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2615[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2615 -> 1274[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2616[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2616[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2616 -> 1275[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2617[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2617[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2617 -> 1276[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2618[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2618[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2618 -> 1277[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1255[label="vyw450",fontsize=16,color="green",shape="box"];1249[label="compare1 (vyw83,vyw84) (vyw85,vyw86) (vyw87 || vyw88)",fontsize=16,color="burlywood",shape="triangle"];2619[label="vyw87/False",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2619[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2619 -> 1278[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2620[label="vyw87/True",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2620[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2620 -> 1279[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 904[label="primMulNat vyw3010 vyw40000",fontsize=16,color="burlywood",shape="triangle"];2621[label="vyw3010/Succ vyw30100",fontsize=10,color="white",style="solid",shape="box"];904 -> 2621[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2621 -> 986[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2622[label="vyw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];904 -> 2622[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2622 -> 987[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 905 -> 904[label="",style="dashed", color="red", weight=0]; 26.96/11.38 905[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];905 -> 988[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 906 -> 904[label="",style="dashed", color="red", weight=0]; 26.96/11.38 906[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];906 -> 989[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 907 -> 904[label="",style="dashed", color="red", weight=0]; 26.96/11.38 907[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];907 -> 990[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 907 -> 991[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1262[label="vyw430 == vyw450",fontsize=16,color="blue",shape="box"];2623[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2623[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2623 -> 1284[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2624[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2624[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2624 -> 1285[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2625[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2625[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2625 -> 1286[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2626[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2626[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2626 -> 1287[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2627[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2627[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2627 -> 1288[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2628[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2628[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2628 -> 1289[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2629[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2629[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2629 -> 1290[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2630[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2630[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2630 -> 1291[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2631[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2631[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2631 -> 1292[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2632[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2632[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2632 -> 1293[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2633[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2633[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2633 -> 1294[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2634[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2634[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2634 -> 1295[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2635[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2635[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2635 -> 1296[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2636[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2636[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2636 -> 1297[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1263[label="vyw431 <= vyw451",fontsize=16,color="blue",shape="box"];2637[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2637[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2637 -> 1298[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2638[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2638[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2638 -> 1299[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2639[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2639[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2639 -> 1300[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2640[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2640[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2640 -> 1301[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2641[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2641[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2641 -> 1302[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2642[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2642[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2642 -> 1303[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2643[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2643[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2643 -> 1304[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2644[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2644[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2644 -> 1305[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2645[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2645[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2645 -> 1306[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2646[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2646[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2646 -> 1307[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2647[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2647[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2647 -> 1308[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2648[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2648[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2648 -> 1309[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2649[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2649[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2649 -> 1310[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2650[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1263 -> 2650[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2650 -> 1311[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1264[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1264 -> 1312[label="",style="solid", color="black", weight=3]; 26.96/11.38 1265[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1265 -> 1313[label="",style="solid", color="black", weight=3]; 26.96/11.38 1266[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1266 -> 1314[label="",style="solid", color="black", weight=3]; 26.96/11.38 1267[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1267 -> 1315[label="",style="solid", color="black", weight=3]; 26.96/11.38 1268[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1268 -> 1316[label="",style="solid", color="black", weight=3]; 26.96/11.38 1269[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1269 -> 1317[label="",style="solid", color="black", weight=3]; 26.96/11.38 1270[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1270 -> 1318[label="",style="solid", color="black", weight=3]; 26.96/11.38 1271[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1271 -> 1319[label="",style="solid", color="black", weight=3]; 26.96/11.38 1272[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1272 -> 1320[label="",style="solid", color="black", weight=3]; 26.96/11.38 1273[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1273 -> 1321[label="",style="solid", color="black", weight=3]; 26.96/11.38 1274[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1274 -> 1322[label="",style="solid", color="black", weight=3]; 26.96/11.38 1275[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1275 -> 1323[label="",style="solid", color="black", weight=3]; 26.96/11.38 1276[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1276 -> 1324[label="",style="solid", color="black", weight=3]; 26.96/11.38 1277[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1277 -> 1325[label="",style="solid", color="black", weight=3]; 26.96/11.38 1278[label="compare1 (vyw83,vyw84) (vyw85,vyw86) (False || vyw88)",fontsize=16,color="black",shape="box"];1278 -> 1326[label="",style="solid", color="black", weight=3]; 26.96/11.38 1279[label="compare1 (vyw83,vyw84) (vyw85,vyw86) (True || vyw88)",fontsize=16,color="black",shape="box"];1279 -> 1327[label="",style="solid", color="black", weight=3]; 26.96/11.38 986[label="primMulNat (Succ vyw30100) vyw40000",fontsize=16,color="burlywood",shape="box"];2651[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];986 -> 2651[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2651 -> 1040[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2652[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];986 -> 2652[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2652 -> 1041[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 987[label="primMulNat Zero vyw40000",fontsize=16,color="burlywood",shape="box"];2653[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];987 -> 2653[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2653 -> 1042[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2654[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];987 -> 2654[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2654 -> 1043[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 988[label="vyw40000",fontsize=16,color="green",shape="box"];989[label="vyw3010",fontsize=16,color="green",shape="box"];990[label="vyw3010",fontsize=16,color="green",shape="box"];991[label="vyw40000",fontsize=16,color="green",shape="box"];1284 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1284[label="vyw430 == vyw450",fontsize=16,color="magenta"];1284 -> 1332[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1284 -> 1333[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1285 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1285[label="vyw430 == vyw450",fontsize=16,color="magenta"];1285 -> 1334[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1285 -> 1335[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1286 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1286[label="vyw430 == vyw450",fontsize=16,color="magenta"];1286 -> 1336[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1286 -> 1337[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1287 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1287[label="vyw430 == vyw450",fontsize=16,color="magenta"];1287 -> 1338[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1287 -> 1339[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1288 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1288[label="vyw430 == vyw450",fontsize=16,color="magenta"];1288 -> 1340[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1288 -> 1341[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1289 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1289[label="vyw430 == vyw450",fontsize=16,color="magenta"];1289 -> 1342[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1289 -> 1343[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1290 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1290[label="vyw430 == vyw450",fontsize=16,color="magenta"];1290 -> 1344[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1290 -> 1345[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1291 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1291[label="vyw430 == vyw450",fontsize=16,color="magenta"];1291 -> 1346[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1291 -> 1347[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1292 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1292[label="vyw430 == vyw450",fontsize=16,color="magenta"];1292 -> 1348[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1292 -> 1349[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1293 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1293[label="vyw430 == vyw450",fontsize=16,color="magenta"];1293 -> 1350[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1293 -> 1351[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1294 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1294[label="vyw430 == vyw450",fontsize=16,color="magenta"];1294 -> 1352[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1294 -> 1353[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1295 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1295[label="vyw430 == vyw450",fontsize=16,color="magenta"];1295 -> 1354[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1295 -> 1355[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1296 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1296[label="vyw430 == vyw450",fontsize=16,color="magenta"];1296 -> 1356[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1296 -> 1357[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1297 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1297[label="vyw430 == vyw450",fontsize=16,color="magenta"];1297 -> 1358[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1297 -> 1359[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1298[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2655[label="vyw431/LT",fontsize=10,color="white",style="solid",shape="box"];1298 -> 2655[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2655 -> 1360[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2656[label="vyw431/EQ",fontsize=10,color="white",style="solid",shape="box"];1298 -> 2656[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2656 -> 1361[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2657[label="vyw431/GT",fontsize=10,color="white",style="solid",shape="box"];1298 -> 2657[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2657 -> 1362[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1299[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2658[label="vyw431/Nothing",fontsize=10,color="white",style="solid",shape="box"];1299 -> 2658[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2658 -> 1363[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2659[label="vyw431/Just vyw4310",fontsize=10,color="white",style="solid",shape="box"];1299 -> 2659[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2659 -> 1364[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1300[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1300 -> 1365[label="",style="solid", color="black", weight=3]; 26.96/11.38 1301[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2660[label="vyw431/(vyw4310,vyw4311)",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2660[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2660 -> 1366[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1302[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1302 -> 1367[label="",style="solid", color="black", weight=3]; 26.96/11.38 1303[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1303 -> 1368[label="",style="solid", color="black", weight=3]; 26.96/11.38 1304[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1304 -> 1369[label="",style="solid", color="black", weight=3]; 26.96/11.38 1305[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1305 -> 1370[label="",style="solid", color="black", weight=3]; 26.96/11.38 1306[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1306 -> 1371[label="",style="solid", color="black", weight=3]; 26.96/11.38 1307[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2661[label="vyw431/False",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2661[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2661 -> 1372[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2662[label="vyw431/True",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2662[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2662 -> 1373[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1308[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1308 -> 1374[label="",style="solid", color="black", weight=3]; 26.96/11.38 1309[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1309 -> 1375[label="",style="solid", color="black", weight=3]; 26.96/11.38 1310[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2663[label="vyw431/(vyw4310,vyw4311,vyw4312)",fontsize=10,color="white",style="solid",shape="box"];1310 -> 2663[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2663 -> 1376[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1311[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2664[label="vyw431/Left vyw4310",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2664[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2664 -> 1377[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2665[label="vyw431/Right vyw4310",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2665[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2665 -> 1378[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1312 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1312[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1312 -> 1379[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1312 -> 1380[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1313 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1313[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1313 -> 1381[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1313 -> 1382[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1314 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1314[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1314 -> 1383[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1314 -> 1384[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1315 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1315[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1315 -> 1385[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1315 -> 1386[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1316 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1316[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1316 -> 1387[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1316 -> 1388[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1317 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1317[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1317 -> 1389[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1317 -> 1390[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1318 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1318[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1318 -> 1391[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1318 -> 1392[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1319 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1319[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1319 -> 1393[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1319 -> 1394[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1320 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1320[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1320 -> 1395[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1320 -> 1396[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1321 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1321[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1321 -> 1397[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1321 -> 1398[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1322 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1322[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1322 -> 1399[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1322 -> 1400[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1323 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1323[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1323 -> 1401[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1323 -> 1402[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1324 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1324[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1324 -> 1403[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1324 -> 1404[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1325 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1325[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1325 -> 1405[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1325 -> 1406[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1326[label="compare1 (vyw83,vyw84) (vyw85,vyw86) vyw88",fontsize=16,color="burlywood",shape="triangle"];2666[label="vyw88/False",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2666[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2666 -> 1407[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2667[label="vyw88/True",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2667[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2667 -> 1408[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1327 -> 1326[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1327[label="compare1 (vyw83,vyw84) (vyw85,vyw86) True",fontsize=16,color="magenta"];1327 -> 1409[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1040[label="primMulNat (Succ vyw30100) (Succ vyw400000)",fontsize=16,color="black",shape="box"];1040 -> 1095[label="",style="solid", color="black", weight=3]; 26.96/11.38 1041[label="primMulNat (Succ vyw30100) Zero",fontsize=16,color="black",shape="box"];1041 -> 1096[label="",style="solid", color="black", weight=3]; 26.96/11.38 1042[label="primMulNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];1042 -> 1097[label="",style="solid", color="black", weight=3]; 26.96/11.38 1043[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1043 -> 1098[label="",style="solid", color="black", weight=3]; 26.96/11.38 1332[label="vyw450",fontsize=16,color="green",shape="box"];1333[label="vyw430",fontsize=16,color="green",shape="box"];1334[label="vyw450",fontsize=16,color="green",shape="box"];1335[label="vyw430",fontsize=16,color="green",shape="box"];1336[label="vyw450",fontsize=16,color="green",shape="box"];1337[label="vyw430",fontsize=16,color="green",shape="box"];1338[label="vyw450",fontsize=16,color="green",shape="box"];1339[label="vyw430",fontsize=16,color="green",shape="box"];1340[label="vyw450",fontsize=16,color="green",shape="box"];1341[label="vyw430",fontsize=16,color="green",shape="box"];1342[label="vyw450",fontsize=16,color="green",shape="box"];1343[label="vyw430",fontsize=16,color="green",shape="box"];1344[label="vyw450",fontsize=16,color="green",shape="box"];1345[label="vyw430",fontsize=16,color="green",shape="box"];1346[label="vyw450",fontsize=16,color="green",shape="box"];1347[label="vyw430",fontsize=16,color="green",shape="box"];1348[label="vyw450",fontsize=16,color="green",shape="box"];1349[label="vyw430",fontsize=16,color="green",shape="box"];1350[label="vyw450",fontsize=16,color="green",shape="box"];1351[label="vyw430",fontsize=16,color="green",shape="box"];1352[label="vyw450",fontsize=16,color="green",shape="box"];1353[label="vyw430",fontsize=16,color="green",shape="box"];1354[label="vyw450",fontsize=16,color="green",shape="box"];1355[label="vyw430",fontsize=16,color="green",shape="box"];1356[label="vyw450",fontsize=16,color="green",shape="box"];1357[label="vyw430",fontsize=16,color="green",shape="box"];1358[label="vyw450",fontsize=16,color="green",shape="box"];1359[label="vyw430",fontsize=16,color="green",shape="box"];1360[label="LT <= vyw451",fontsize=16,color="burlywood",shape="box"];2668[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1360 -> 2668[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2668 -> 1411[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2669[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1360 -> 2669[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2669 -> 1412[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2670[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1360 -> 2670[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2670 -> 1413[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1361[label="EQ <= vyw451",fontsize=16,color="burlywood",shape="box"];2671[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1361 -> 2671[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2671 -> 1414[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2672[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1361 -> 2672[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2672 -> 1415[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2673[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1361 -> 2673[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2673 -> 1416[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1362[label="GT <= vyw451",fontsize=16,color="burlywood",shape="box"];2674[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1362 -> 2674[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2674 -> 1417[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2675[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1362 -> 2675[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2675 -> 1418[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2676[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1362 -> 2676[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2676 -> 1419[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1363[label="Nothing <= vyw451",fontsize=16,color="burlywood",shape="box"];2677[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1363 -> 2677[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2677 -> 1420[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2678[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1363 -> 2678[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2678 -> 1421[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1364[label="Just vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2679[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2679[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2679 -> 1422[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2680[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1364 -> 2680[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2680 -> 1423[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1365[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1365 -> 1424[label="",style="solid", color="black", weight=3]; 26.96/11.38 1366[label="(vyw4310,vyw4311) <= vyw451",fontsize=16,color="burlywood",shape="box"];2681[label="vyw451/(vyw4510,vyw4511)",fontsize=10,color="white",style="solid",shape="box"];1366 -> 2681[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2681 -> 1425[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1367[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1367 -> 1426[label="",style="solid", color="black", weight=3]; 26.96/11.38 1368[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1368 -> 1427[label="",style="solid", color="black", weight=3]; 26.96/11.38 1369[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1369 -> 1428[label="",style="solid", color="black", weight=3]; 26.96/11.38 1370[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1370 -> 1429[label="",style="solid", color="black", weight=3]; 26.96/11.38 1371[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1371 -> 1430[label="",style="solid", color="black", weight=3]; 26.96/11.38 1372[label="False <= vyw451",fontsize=16,color="burlywood",shape="box"];2682[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2682[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2682 -> 1431[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2683[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2683[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2683 -> 1432[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1373[label="True <= vyw451",fontsize=16,color="burlywood",shape="box"];2684[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2684[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2684 -> 1433[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2685[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2685[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2685 -> 1434[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1374[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1374 -> 1435[label="",style="solid", color="black", weight=3]; 26.96/11.38 1375[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1375 -> 1436[label="",style="solid", color="black", weight=3]; 26.96/11.38 1376[label="(vyw4310,vyw4311,vyw4312) <= vyw451",fontsize=16,color="burlywood",shape="box"];2686[label="vyw451/(vyw4510,vyw4511,vyw4512)",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2686[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2686 -> 1437[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1377[label="Left vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2687[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1377 -> 2687[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2687 -> 1438[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2688[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1377 -> 2688[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2688 -> 1439[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1378[label="Right vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2689[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2689[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2689 -> 1440[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2690[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2690[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2690 -> 1441[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1379[label="LT",fontsize=16,color="green",shape="box"];1380[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1380 -> 1442[label="",style="solid", color="black", weight=3]; 26.96/11.38 1381[label="LT",fontsize=16,color="green",shape="box"];1382[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1382 -> 1443[label="",style="solid", color="black", weight=3]; 26.96/11.38 1383[label="LT",fontsize=16,color="green",shape="box"];1384[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2691[label="vyw430/vyw4300 :% vyw4301",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2691[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2691 -> 1444[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1385[label="LT",fontsize=16,color="green",shape="box"];1386[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1386 -> 1445[label="",style="solid", color="black", weight=3]; 26.96/11.38 1387[label="LT",fontsize=16,color="green",shape="box"];1388[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1388 -> 1446[label="",style="solid", color="black", weight=3]; 26.96/11.38 1389[label="LT",fontsize=16,color="green",shape="box"];1390[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2692[label="vyw430/()",fontsize=10,color="white",style="solid",shape="box"];1390 -> 2692[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2692 -> 1447[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1391[label="LT",fontsize=16,color="green",shape="box"];1392[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1392 -> 1448[label="",style="solid", color="black", weight=3]; 26.96/11.38 1393[label="LT",fontsize=16,color="green",shape="box"];1394[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2693[label="vyw430/Integer vyw4300",fontsize=10,color="white",style="solid",shape="box"];1394 -> 2693[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2693 -> 1449[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1395[label="LT",fontsize=16,color="green",shape="box"];1396[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2694[label="vyw430/vyw4300 : vyw4301",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2694[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2694 -> 1450[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2695[label="vyw430/[]",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2695[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2695 -> 1451[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1397[label="LT",fontsize=16,color="green",shape="box"];1398[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1398 -> 1452[label="",style="solid", color="black", weight=3]; 26.96/11.38 1399[label="LT",fontsize=16,color="green",shape="box"];1400[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1400 -> 1453[label="",style="solid", color="black", weight=3]; 26.96/11.38 1401[label="LT",fontsize=16,color="green",shape="box"];1402[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1402 -> 1454[label="",style="solid", color="black", weight=3]; 26.96/11.38 1403[label="LT",fontsize=16,color="green",shape="box"];1404[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1404 -> 1455[label="",style="solid", color="black", weight=3]; 26.96/11.38 1405[label="LT",fontsize=16,color="green",shape="box"];1406[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1406 -> 1456[label="",style="solid", color="black", weight=3]; 26.96/11.38 1407[label="compare1 (vyw83,vyw84) (vyw85,vyw86) False",fontsize=16,color="black",shape="box"];1407 -> 1457[label="",style="solid", color="black", weight=3]; 26.96/11.38 1408[label="compare1 (vyw83,vyw84) (vyw85,vyw86) True",fontsize=16,color="black",shape="box"];1408 -> 1458[label="",style="solid", color="black", weight=3]; 26.96/11.38 1409[label="True",fontsize=16,color="green",shape="box"];1095 -> 1201[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1095[label="primPlusNat (primMulNat vyw30100 (Succ vyw400000)) (Succ vyw400000)",fontsize=16,color="magenta"];1095 -> 1202[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1096[label="Zero",fontsize=16,color="green",shape="box"];1097[label="Zero",fontsize=16,color="green",shape="box"];1098[label="Zero",fontsize=16,color="green",shape="box"];1411[label="LT <= LT",fontsize=16,color="black",shape="box"];1411 -> 1461[label="",style="solid", color="black", weight=3]; 26.96/11.38 1412[label="LT <= EQ",fontsize=16,color="black",shape="box"];1412 -> 1462[label="",style="solid", color="black", weight=3]; 26.96/11.38 1413[label="LT <= GT",fontsize=16,color="black",shape="box"];1413 -> 1463[label="",style="solid", color="black", weight=3]; 26.96/11.38 1414[label="EQ <= LT",fontsize=16,color="black",shape="box"];1414 -> 1464[label="",style="solid", color="black", weight=3]; 26.96/11.38 1415[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1415 -> 1465[label="",style="solid", color="black", weight=3]; 26.96/11.38 1416[label="EQ <= GT",fontsize=16,color="black",shape="box"];1416 -> 1466[label="",style="solid", color="black", weight=3]; 26.96/11.38 1417[label="GT <= LT",fontsize=16,color="black",shape="box"];1417 -> 1467[label="",style="solid", color="black", weight=3]; 26.96/11.38 1418[label="GT <= EQ",fontsize=16,color="black",shape="box"];1418 -> 1468[label="",style="solid", color="black", weight=3]; 26.96/11.38 1419[label="GT <= GT",fontsize=16,color="black",shape="box"];1419 -> 1469[label="",style="solid", color="black", weight=3]; 26.96/11.38 1420[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1420 -> 1470[label="",style="solid", color="black", weight=3]; 26.96/11.38 1421[label="Nothing <= Just vyw4510",fontsize=16,color="black",shape="box"];1421 -> 1471[label="",style="solid", color="black", weight=3]; 26.96/11.38 1422[label="Just vyw4310 <= Nothing",fontsize=16,color="black",shape="box"];1422 -> 1472[label="",style="solid", color="black", weight=3]; 26.96/11.38 1423[label="Just vyw4310 <= Just vyw4510",fontsize=16,color="black",shape="box"];1423 -> 1473[label="",style="solid", color="black", weight=3]; 26.96/11.38 1424 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1424[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1424 -> 1475[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1425[label="(vyw4310,vyw4311) <= (vyw4510,vyw4511)",fontsize=16,color="black",shape="box"];1425 -> 1483[label="",style="solid", color="black", weight=3]; 26.96/11.38 1426 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1426[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1426 -> 1476[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1427 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1427[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1427 -> 1477[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1428 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1428[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1428 -> 1478[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1429 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1429[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1429 -> 1479[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1430 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1430[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1430 -> 1480[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1431[label="False <= False",fontsize=16,color="black",shape="box"];1431 -> 1484[label="",style="solid", color="black", weight=3]; 26.96/11.38 1432[label="False <= True",fontsize=16,color="black",shape="box"];1432 -> 1485[label="",style="solid", color="black", weight=3]; 26.96/11.38 1433[label="True <= False",fontsize=16,color="black",shape="box"];1433 -> 1486[label="",style="solid", color="black", weight=3]; 26.96/11.38 1434[label="True <= True",fontsize=16,color="black",shape="box"];1434 -> 1487[label="",style="solid", color="black", weight=3]; 26.96/11.38 1435 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1435[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1435 -> 1481[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1436 -> 1474[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1436[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1436 -> 1482[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1437[label="(vyw4310,vyw4311,vyw4312) <= (vyw4510,vyw4511,vyw4512)",fontsize=16,color="black",shape="box"];1437 -> 1488[label="",style="solid", color="black", weight=3]; 26.96/11.38 1438[label="Left vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1438 -> 1489[label="",style="solid", color="black", weight=3]; 26.96/11.38 1439[label="Left vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1439 -> 1490[label="",style="solid", color="black", weight=3]; 26.96/11.38 1440[label="Right vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1440 -> 1491[label="",style="solid", color="black", weight=3]; 26.96/11.38 1441[label="Right vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1441 -> 1492[label="",style="solid", color="black", weight=3]; 26.96/11.38 1442[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1442 -> 1493[label="",style="solid", color="black", weight=3]; 26.96/11.38 1443[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1443 -> 1494[label="",style="solid", color="black", weight=3]; 26.96/11.38 1444[label="compare (vyw4300 :% vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2696[label="vyw450/vyw4500 :% vyw4501",fontsize=10,color="white",style="solid",shape="box"];1444 -> 2696[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2696 -> 1495[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1445[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1445 -> 1496[label="",style="solid", color="black", weight=3]; 26.96/11.38 1446[label="primCmpChar vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2697[label="vyw430/Char vyw4300",fontsize=10,color="white",style="solid",shape="box"];1446 -> 2697[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2697 -> 1497[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1447[label="compare () vyw450",fontsize=16,color="burlywood",shape="box"];2698[label="vyw450/()",fontsize=10,color="white",style="solid",shape="box"];1447 -> 2698[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2698 -> 1498[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1448[label="primCmpDouble vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2699[label="vyw430/Double vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1448 -> 2699[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2699 -> 1499[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1449[label="compare (Integer vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2700[label="vyw450/Integer vyw4500",fontsize=10,color="white",style="solid",shape="box"];1449 -> 2700[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2700 -> 1500[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1450[label="compare (vyw4300 : vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2701[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2701[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2701 -> 1501[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2702[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1450 -> 2702[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2702 -> 1502[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1451[label="compare [] vyw450",fontsize=16,color="burlywood",shape="box"];2703[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1451 -> 2703[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2703 -> 1503[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2704[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1451 -> 2704[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2704 -> 1504[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1452[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1452 -> 1505[label="",style="solid", color="black", weight=3]; 26.96/11.38 1453[label="primCmpFloat vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2705[label="vyw430/Float vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2705[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2705 -> 1506[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1454[label="primCmpInt vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2706[label="vyw430/Pos vyw4300",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2706[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2706 -> 1507[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2707[label="vyw430/Neg vyw4300",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2707[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2707 -> 1508[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1455[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1455 -> 1509[label="",style="solid", color="black", weight=3]; 26.96/11.38 1456[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1456 -> 1510[label="",style="solid", color="black", weight=3]; 26.96/11.38 1457[label="compare0 (vyw83,vyw84) (vyw85,vyw86) otherwise",fontsize=16,color="black",shape="box"];1457 -> 1511[label="",style="solid", color="black", weight=3]; 26.96/11.38 1458[label="LT",fontsize=16,color="green",shape="box"];1202 -> 904[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1202[label="primMulNat vyw30100 (Succ vyw400000)",fontsize=16,color="magenta"];1202 -> 1233[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1202 -> 1234[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1201[label="primPlusNat vyw74 (Succ vyw400000)",fontsize=16,color="burlywood",shape="triangle"];2708[label="vyw74/Succ vyw740",fontsize=10,color="white",style="solid",shape="box"];1201 -> 2708[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2708 -> 1235[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2709[label="vyw74/Zero",fontsize=10,color="white",style="solid",shape="box"];1201 -> 2709[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2709 -> 1236[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1461[label="True",fontsize=16,color="green",shape="box"];1462[label="True",fontsize=16,color="green",shape="box"];1463[label="True",fontsize=16,color="green",shape="box"];1464[label="False",fontsize=16,color="green",shape="box"];1465[label="True",fontsize=16,color="green",shape="box"];1466[label="True",fontsize=16,color="green",shape="box"];1467[label="False",fontsize=16,color="green",shape="box"];1468[label="False",fontsize=16,color="green",shape="box"];1469[label="True",fontsize=16,color="green",shape="box"];1470[label="True",fontsize=16,color="green",shape="box"];1471[label="True",fontsize=16,color="green",shape="box"];1472[label="False",fontsize=16,color="green",shape="box"];1473[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2710[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2710[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2710 -> 1512[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2711[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2711[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2711 -> 1513[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2712[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2712[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2712 -> 1514[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2713[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2713[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2713 -> 1515[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2714[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2714[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2714 -> 1516[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2715[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2715[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2715 -> 1517[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2716[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2716[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2716 -> 1518[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2717[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2717[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2717 -> 1519[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2718[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2718[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2718 -> 1520[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2719[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2719[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2719 -> 1521[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2720[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2720[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2720 -> 1522[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2721[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2721[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2721 -> 1523[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2722[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2722[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2722 -> 1524[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2723[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1473 -> 2723[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2723 -> 1525[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1475 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1475[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1475 -> 1526[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1475 -> 1527[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1474[label="not vyw89",fontsize=16,color="burlywood",shape="triangle"];2724[label="vyw89/False",fontsize=10,color="white",style="solid",shape="box"];1474 -> 2724[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2724 -> 1528[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2725[label="vyw89/True",fontsize=10,color="white",style="solid",shape="box"];1474 -> 2725[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2725 -> 1529[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1483 -> 1641[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1483[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1483 -> 1642[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1483 -> 1643[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1476 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1476[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1476 -> 1530[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1476 -> 1531[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1477 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1477[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1477 -> 1532[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1477 -> 1533[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1478 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1478[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1478 -> 1534[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1478 -> 1535[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1479 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1479[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1479 -> 1536[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1479 -> 1537[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1480 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1480[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1480 -> 1538[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1480 -> 1539[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1484[label="True",fontsize=16,color="green",shape="box"];1485[label="True",fontsize=16,color="green",shape="box"];1486[label="False",fontsize=16,color="green",shape="box"];1487[label="True",fontsize=16,color="green",shape="box"];1481 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1481[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1481 -> 1540[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1481 -> 1541[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1482 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1482[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1482 -> 1542[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1482 -> 1543[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1488 -> 1641[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1488[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1488 -> 1644[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1488 -> 1645[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1489[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2726[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2726[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2726 -> 1549[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2727[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2727[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2727 -> 1550[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2728[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2728[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2728 -> 1551[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2729[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2729[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2729 -> 1552[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2730[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2730[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2730 -> 1553[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2731[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2731[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2731 -> 1554[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2732[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2732[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2732 -> 1555[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2733[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2733[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2733 -> 1556[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2734[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2734[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2734 -> 1557[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2735[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2735[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2735 -> 1558[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2736[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2736[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2736 -> 1559[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2737[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2737[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2737 -> 1560[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2738[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2738[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2738 -> 1561[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2739[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2739[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2739 -> 1562[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1490[label="True",fontsize=16,color="green",shape="box"];1491[label="False",fontsize=16,color="green",shape="box"];1492[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2740[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2740[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2740 -> 1563[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2741[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2741[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2741 -> 1564[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2742[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2742[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2742 -> 1565[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2743[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2743[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2743 -> 1566[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2744[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2744[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2744 -> 1567[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2745[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2745[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2745 -> 1568[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2746[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2746[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2746 -> 1569[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2747[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2747[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2747 -> 1570[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2748[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2748[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2748 -> 1571[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2749[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2749[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2749 -> 1572[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2750[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2750[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2750 -> 1573[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2751[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2751[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2751 -> 1574[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2752[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2752[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2752 -> 1575[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2753[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1492 -> 2753[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2753 -> 1576[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1493 -> 1577[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1493[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1493 -> 1578[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1494 -> 1579[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1494[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1494 -> 1580[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1495[label="compare (vyw4300 :% vyw4301) (vyw4500 :% vyw4501)",fontsize=16,color="black",shape="box"];1495 -> 1581[label="",style="solid", color="black", weight=3]; 26.96/11.38 1496 -> 1169[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1496[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1496 -> 1582[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1496 -> 1583[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1496 -> 1584[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1497[label="primCmpChar (Char vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2754[label="vyw450/Char vyw4500",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2754[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2754 -> 1585[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1498[label="compare () ()",fontsize=16,color="black",shape="box"];1498 -> 1586[label="",style="solid", color="black", weight=3]; 26.96/11.38 1499[label="primCmpDouble (Double vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2755[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2755[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2755 -> 1587[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2756[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2756[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2756 -> 1588[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1500[label="compare (Integer vyw4300) (Integer vyw4500)",fontsize=16,color="black",shape="box"];1500 -> 1589[label="",style="solid", color="black", weight=3]; 26.96/11.38 1501[label="compare (vyw4300 : vyw4301) (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1501 -> 1590[label="",style="solid", color="black", weight=3]; 26.96/11.38 1502[label="compare (vyw4300 : vyw4301) []",fontsize=16,color="black",shape="box"];1502 -> 1591[label="",style="solid", color="black", weight=3]; 26.96/11.38 1503[label="compare [] (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1503 -> 1592[label="",style="solid", color="black", weight=3]; 26.96/11.38 1504[label="compare [] []",fontsize=16,color="black",shape="box"];1504 -> 1593[label="",style="solid", color="black", weight=3]; 26.96/11.38 1505 -> 1594[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1505[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1505 -> 1595[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1506[label="primCmpFloat (Float vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2757[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1506 -> 2757[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2757 -> 1596[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2758[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1506 -> 2758[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2758 -> 1597[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1507[label="primCmpInt (Pos vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2759[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1507 -> 2759[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2759 -> 1598[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2760[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1507 -> 2760[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2760 -> 1599[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1508[label="primCmpInt (Neg vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2761[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2761[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2761 -> 1600[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2762[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2762[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2762 -> 1601[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1509 -> 1602[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1509[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1509 -> 1603[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1510 -> 1604[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1510[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1510 -> 1605[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1511[label="compare0 (vyw83,vyw84) (vyw85,vyw86) True",fontsize=16,color="black",shape="box"];1511 -> 1606[label="",style="solid", color="black", weight=3]; 26.96/11.38 1233[label="vyw30100",fontsize=16,color="green",shape="box"];1234[label="Succ vyw400000",fontsize=16,color="green",shape="box"];1235[label="primPlusNat (Succ vyw740) (Succ vyw400000)",fontsize=16,color="black",shape="box"];1235 -> 1238[label="",style="solid", color="black", weight=3]; 26.96/11.38 1236[label="primPlusNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];1236 -> 1239[label="",style="solid", color="black", weight=3]; 26.96/11.38 1512 -> 1298[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1512[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1512 -> 1607[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1512 -> 1608[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1513 -> 1299[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1513[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1513 -> 1609[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1513 -> 1610[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1514 -> 1300[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1514[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1514 -> 1611[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1514 -> 1612[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1515 -> 1301[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1515[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1515 -> 1613[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1515 -> 1614[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1516 -> 1302[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1516[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1516 -> 1615[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1516 -> 1616[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1517 -> 1303[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1517[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1517 -> 1617[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1517 -> 1618[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1518 -> 1304[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1518[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1518 -> 1619[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1518 -> 1620[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1519 -> 1305[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1519[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1519 -> 1621[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1519 -> 1622[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1520 -> 1306[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1520[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1520 -> 1623[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1520 -> 1624[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1521 -> 1307[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1521[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1521 -> 1625[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1521 -> 1626[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1522 -> 1308[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1522[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1522 -> 1627[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1522 -> 1628[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1523 -> 1309[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1523[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1523 -> 1629[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1523 -> 1630[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1524 -> 1310[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1524[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1524 -> 1631[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1524 -> 1632[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1525 -> 1311[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1525[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1525 -> 1633[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1525 -> 1634[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1526[label="GT",fontsize=16,color="green",shape="box"];1527 -> 1384[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1527[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1527 -> 1635[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1527 -> 1636[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1528[label="not False",fontsize=16,color="black",shape="box"];1528 -> 1637[label="",style="solid", color="black", weight=3]; 26.96/11.38 1529[label="not True",fontsize=16,color="black",shape="box"];1529 -> 1638[label="",style="solid", color="black", weight=3]; 26.96/11.38 1642 -> 400[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1642[label="vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1642 -> 1648[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1642 -> 1649[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1643[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2763[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2763[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2763 -> 1650[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2764[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2764[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2764 -> 1651[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2765[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2765[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2765 -> 1652[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2766[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2766[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2766 -> 1653[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2767[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2767[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2767 -> 1654[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2768[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2768[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2768 -> 1655[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2769[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2769[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2769 -> 1656[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2770[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2770[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2770 -> 1657[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2771[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2771[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2771 -> 1658[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2772[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2772[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2772 -> 1659[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2773[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2773[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2773 -> 1660[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2774[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2774[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2774 -> 1661[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2775[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2775[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2775 -> 1662[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2776[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2776[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2776 -> 1663[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1641[label="vyw100 || vyw101",fontsize=16,color="burlywood",shape="triangle"];2777[label="vyw100/False",fontsize=10,color="white",style="solid",shape="box"];1641 -> 2777[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2777 -> 1664[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2778[label="vyw100/True",fontsize=10,color="white",style="solid",shape="box"];1641 -> 2778[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2778 -> 1665[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1530[label="GT",fontsize=16,color="green",shape="box"];1531 -> 1388[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1531[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1531 -> 1666[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1531 -> 1667[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1532[label="GT",fontsize=16,color="green",shape="box"];1533 -> 1390[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1533[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1533 -> 1668[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1533 -> 1669[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1534[label="GT",fontsize=16,color="green",shape="box"];1535 -> 1392[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1535[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1535 -> 1670[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1535 -> 1671[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1536[label="GT",fontsize=16,color="green",shape="box"];1537 -> 1394[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1537[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1537 -> 1672[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1537 -> 1673[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1538[label="GT",fontsize=16,color="green",shape="box"];1539 -> 1396[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1539[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1539 -> 1674[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1539 -> 1675[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1540[label="GT",fontsize=16,color="green",shape="box"];1541 -> 1400[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1541[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1541 -> 1676[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1541 -> 1677[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1542[label="GT",fontsize=16,color="green",shape="box"];1543 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1543[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1543 -> 1678[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1543 -> 1679[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1644 -> 400[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1644[label="vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1644 -> 1680[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1644 -> 1681[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1645[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2779[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2779[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2779 -> 1682[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2780[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2780[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2780 -> 1683[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2781[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2781[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2781 -> 1684[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2782[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2782[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2782 -> 1685[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2783[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2783[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2783 -> 1686[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2784[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2784[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2784 -> 1687[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2785[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2785[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2785 -> 1688[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2786[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2786[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2786 -> 1689[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2787[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2787[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2787 -> 1690[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2788[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2788[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2788 -> 1691[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2789[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2789[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2789 -> 1692[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2790[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2790[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2790 -> 1693[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2791[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2791[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2791 -> 1694[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2792[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2792[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2792 -> 1695[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1549 -> 1298[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1549[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1549 -> 1696[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1549 -> 1697[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1550 -> 1299[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1550[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1550 -> 1698[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1550 -> 1699[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1551 -> 1300[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1551[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1551 -> 1700[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1551 -> 1701[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1552 -> 1301[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1552[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1552 -> 1702[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1552 -> 1703[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1553 -> 1302[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1553[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1553 -> 1704[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1553 -> 1705[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1554 -> 1303[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1554[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1554 -> 1706[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1554 -> 1707[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1555 -> 1304[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1555[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1555 -> 1708[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1555 -> 1709[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1556 -> 1305[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1556[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1556 -> 1710[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1556 -> 1711[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1557 -> 1306[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1557[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1557 -> 1712[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1557 -> 1713[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1558 -> 1307[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1558[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1558 -> 1714[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1558 -> 1715[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1559 -> 1308[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1559[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1559 -> 1716[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1559 -> 1717[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1560 -> 1309[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1560[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1560 -> 1718[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1560 -> 1719[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1561 -> 1310[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1561[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1561 -> 1720[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1561 -> 1721[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1562 -> 1311[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1562[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1562 -> 1722[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1562 -> 1723[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1563 -> 1298[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1563[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1563 -> 1724[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1563 -> 1725[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1564 -> 1299[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1564[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1564 -> 1726[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1564 -> 1727[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1565 -> 1300[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1565[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1565 -> 1728[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1565 -> 1729[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1566 -> 1301[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1566[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1566 -> 1730[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1566 -> 1731[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1567 -> 1302[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1567[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1567 -> 1732[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1567 -> 1733[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1568 -> 1303[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1568[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1568 -> 1734[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1568 -> 1735[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1569 -> 1304[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1569[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1569 -> 1736[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1569 -> 1737[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1570 -> 1305[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1570[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1570 -> 1738[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1570 -> 1739[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1571 -> 1306[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1571[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1571 -> 1740[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1571 -> 1741[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1572 -> 1307[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1572[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1572 -> 1742[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1572 -> 1743[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1573 -> 1308[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1573[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1573 -> 1744[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1573 -> 1745[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1574 -> 1309[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1574[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1574 -> 1746[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1574 -> 1747[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1575 -> 1310[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1575[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1575 -> 1748[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1575 -> 1749[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1576 -> 1311[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1576[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1576 -> 1750[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1576 -> 1751[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1578 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1578[label="vyw430 == vyw450",fontsize=16,color="magenta"];1578 -> 1752[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1578 -> 1753[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1577[label="compare2 vyw430 vyw450 vyw92",fontsize=16,color="burlywood",shape="triangle"];2793[label="vyw92/False",fontsize=10,color="white",style="solid",shape="box"];1577 -> 2793[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2793 -> 1754[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2794[label="vyw92/True",fontsize=10,color="white",style="solid",shape="box"];1577 -> 2794[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2794 -> 1755[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1580 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1580[label="vyw430 == vyw450",fontsize=16,color="magenta"];1580 -> 1756[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1580 -> 1757[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1579[label="compare2 vyw430 vyw450 vyw93",fontsize=16,color="burlywood",shape="triangle"];2795[label="vyw93/False",fontsize=10,color="white",style="solid",shape="box"];1579 -> 2795[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2795 -> 1758[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2796[label="vyw93/True",fontsize=10,color="white",style="solid",shape="box"];1579 -> 2796[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2796 -> 1759[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1581[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="blue",shape="box"];2797[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2797[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2797 -> 1760[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2798[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2798[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2798 -> 1761[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1582[label="vyw450",fontsize=16,color="green",shape="box"];1583 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1583[label="vyw430 == vyw450",fontsize=16,color="magenta"];1583 -> 1762[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1583 -> 1763[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1584[label="vyw430",fontsize=16,color="green",shape="box"];1585[label="primCmpChar (Char vyw4300) (Char vyw4500)",fontsize=16,color="black",shape="box"];1585 -> 1764[label="",style="solid", color="black", weight=3]; 26.96/11.38 1586[label="EQ",fontsize=16,color="green",shape="box"];1587[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2799[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1587 -> 2799[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2799 -> 1765[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1588[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2800[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1588 -> 2800[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2800 -> 1766[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1589 -> 1454[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1589[label="primCmpInt vyw4300 vyw4500",fontsize=16,color="magenta"];1589 -> 1767[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1589 -> 1768[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1590 -> 1769[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1590[label="primCompAux vyw4300 vyw4500 (compare vyw4301 vyw4501)",fontsize=16,color="magenta"];1590 -> 1770[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1591[label="GT",fontsize=16,color="green",shape="box"];1592[label="LT",fontsize=16,color="green",shape="box"];1593[label="EQ",fontsize=16,color="green",shape="box"];1595 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1595[label="vyw430 == vyw450",fontsize=16,color="magenta"];1595 -> 1771[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1595 -> 1772[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1594[label="compare2 vyw430 vyw450 vyw94",fontsize=16,color="burlywood",shape="triangle"];2801[label="vyw94/False",fontsize=10,color="white",style="solid",shape="box"];1594 -> 2801[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2801 -> 1773[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2802[label="vyw94/True",fontsize=10,color="white",style="solid",shape="box"];1594 -> 2802[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2802 -> 1774[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1596[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2803[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2803[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2803 -> 1775[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1597[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2804[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1597 -> 2804[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2804 -> 1776[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1598[label="primCmpInt (Pos (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2805[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1598 -> 2805[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2805 -> 1777[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2806[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1598 -> 2806[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2806 -> 1778[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1599[label="primCmpInt (Pos Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2807[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1599 -> 2807[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2807 -> 1779[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2808[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1599 -> 2808[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2808 -> 1780[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1600[label="primCmpInt (Neg (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2809[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2809[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2809 -> 1781[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2810[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2810[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2810 -> 1782[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1601[label="primCmpInt (Neg Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2811[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1601 -> 2811[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2811 -> 1783[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2812[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1601 -> 2812[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2812 -> 1784[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1603 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1603[label="vyw430 == vyw450",fontsize=16,color="magenta"];1603 -> 1785[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1603 -> 1786[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1602[label="compare2 vyw430 vyw450 vyw95",fontsize=16,color="burlywood",shape="triangle"];2813[label="vyw95/False",fontsize=10,color="white",style="solid",shape="box"];1602 -> 2813[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2813 -> 1787[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2814[label="vyw95/True",fontsize=10,color="white",style="solid",shape="box"];1602 -> 2814[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2814 -> 1788[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1605 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1605[label="vyw430 == vyw450",fontsize=16,color="magenta"];1605 -> 1789[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1605 -> 1790[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1604[label="compare2 vyw430 vyw450 vyw96",fontsize=16,color="burlywood",shape="triangle"];2815[label="vyw96/False",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2815[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2815 -> 1791[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2816[label="vyw96/True",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2816[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2816 -> 1792[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1606[label="GT",fontsize=16,color="green",shape="box"];1238[label="Succ (Succ (primPlusNat vyw740 vyw400000))",fontsize=16,color="green",shape="box"];1238 -> 1241[label="",style="dashed", color="green", weight=3]; 26.96/11.38 1239[label="Succ vyw400000",fontsize=16,color="green",shape="box"];1607[label="vyw4510",fontsize=16,color="green",shape="box"];1608[label="vyw4310",fontsize=16,color="green",shape="box"];1609[label="vyw4510",fontsize=16,color="green",shape="box"];1610[label="vyw4310",fontsize=16,color="green",shape="box"];1611[label="vyw4510",fontsize=16,color="green",shape="box"];1612[label="vyw4310",fontsize=16,color="green",shape="box"];1613[label="vyw4510",fontsize=16,color="green",shape="box"];1614[label="vyw4310",fontsize=16,color="green",shape="box"];1615[label="vyw4510",fontsize=16,color="green",shape="box"];1616[label="vyw4310",fontsize=16,color="green",shape="box"];1617[label="vyw4510",fontsize=16,color="green",shape="box"];1618[label="vyw4310",fontsize=16,color="green",shape="box"];1619[label="vyw4510",fontsize=16,color="green",shape="box"];1620[label="vyw4310",fontsize=16,color="green",shape="box"];1621[label="vyw4510",fontsize=16,color="green",shape="box"];1622[label="vyw4310",fontsize=16,color="green",shape="box"];1623[label="vyw4510",fontsize=16,color="green",shape="box"];1624[label="vyw4310",fontsize=16,color="green",shape="box"];1625[label="vyw4510",fontsize=16,color="green",shape="box"];1626[label="vyw4310",fontsize=16,color="green",shape="box"];1627[label="vyw4510",fontsize=16,color="green",shape="box"];1628[label="vyw4310",fontsize=16,color="green",shape="box"];1629[label="vyw4510",fontsize=16,color="green",shape="box"];1630[label="vyw4310",fontsize=16,color="green",shape="box"];1631[label="vyw4510",fontsize=16,color="green",shape="box"];1632[label="vyw4310",fontsize=16,color="green",shape="box"];1633[label="vyw4510",fontsize=16,color="green",shape="box"];1634[label="vyw4310",fontsize=16,color="green",shape="box"];1635[label="vyw451",fontsize=16,color="green",shape="box"];1636[label="vyw431",fontsize=16,color="green",shape="box"];1637[label="True",fontsize=16,color="green",shape="box"];1638[label="False",fontsize=16,color="green",shape="box"];1648[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2817[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2817[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2817 -> 1793[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2818[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2818[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2818 -> 1794[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2819[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2819[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2819 -> 1795[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2820[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2820[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2820 -> 1796[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2821[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2821[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2821 -> 1797[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2822[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2822[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2822 -> 1798[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2823[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2823[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2823 -> 1799[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2824[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2824[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2824 -> 1800[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2825[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2825[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2825 -> 1801[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2826[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2826[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2826 -> 1802[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2827[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2827[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2827 -> 1803[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2828[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2828[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2828 -> 1804[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2829[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2829[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2829 -> 1805[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2830[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1648 -> 2830[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2830 -> 1806[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1649[label="vyw4311 <= vyw4511",fontsize=16,color="blue",shape="box"];2831[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2831[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2831 -> 1807[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2832[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2832[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2832 -> 1808[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2833[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2833[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2833 -> 1809[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2834[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2834[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2834 -> 1810[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2835[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2835[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2835 -> 1811[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2836[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2836[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2836 -> 1812[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2837[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2837[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2837 -> 1813[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2838[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2838[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2838 -> 1814[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2839[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2839[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2839 -> 1815[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2840[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2840[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2840 -> 1816[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2841[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2841[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2841 -> 1817[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2842[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2842[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2842 -> 1818[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2843[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2843[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2843 -> 1819[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2844[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1649 -> 2844[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2844 -> 1820[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1650 -> 1264[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1650[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1650 -> 1821[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1650 -> 1822[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1651 -> 1265[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1651[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1651 -> 1823[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1651 -> 1824[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1652 -> 1266[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1652[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1652 -> 1825[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1652 -> 1826[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1653 -> 1267[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1653[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1653 -> 1827[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1653 -> 1828[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1654 -> 1268[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1654[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1654 -> 1829[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1654 -> 1830[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1655 -> 1269[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1655[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1655 -> 1831[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1655 -> 1832[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1656 -> 1270[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1656[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1656 -> 1833[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1656 -> 1834[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1657 -> 1271[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1657[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1657 -> 1835[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1657 -> 1836[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1658 -> 1272[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1658[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1658 -> 1837[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1658 -> 1838[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1659 -> 1273[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1659[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1659 -> 1839[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1659 -> 1840[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1660 -> 1274[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1660[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1660 -> 1841[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1660 -> 1842[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1661 -> 1275[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1661[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1661 -> 1843[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1661 -> 1844[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1662 -> 1276[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1662[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1662 -> 1845[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1662 -> 1846[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1663 -> 1277[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1663[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1663 -> 1847[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1663 -> 1848[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1664[label="False || vyw101",fontsize=16,color="black",shape="box"];1664 -> 1849[label="",style="solid", color="black", weight=3]; 26.96/11.38 1665[label="True || vyw101",fontsize=16,color="black",shape="box"];1665 -> 1850[label="",style="solid", color="black", weight=3]; 26.96/11.38 1666[label="vyw451",fontsize=16,color="green",shape="box"];1667[label="vyw431",fontsize=16,color="green",shape="box"];1668[label="vyw451",fontsize=16,color="green",shape="box"];1669[label="vyw431",fontsize=16,color="green",shape="box"];1670[label="vyw451",fontsize=16,color="green",shape="box"];1671[label="vyw431",fontsize=16,color="green",shape="box"];1672[label="vyw451",fontsize=16,color="green",shape="box"];1673[label="vyw431",fontsize=16,color="green",shape="box"];1674[label="vyw451",fontsize=16,color="green",shape="box"];1675[label="vyw431",fontsize=16,color="green",shape="box"];1676[label="vyw451",fontsize=16,color="green",shape="box"];1677[label="vyw431",fontsize=16,color="green",shape="box"];1678[label="vyw451",fontsize=16,color="green",shape="box"];1679[label="vyw431",fontsize=16,color="green",shape="box"];1680[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2845[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2845[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2845 -> 1851[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2846[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2846[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2846 -> 1852[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2847[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2847[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2847 -> 1853[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2848[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2848[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2848 -> 1854[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2849[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2849[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2849 -> 1855[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2850[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2850[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2850 -> 1856[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2851[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2851[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2851 -> 1857[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2852[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2852[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2852 -> 1858[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2853[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2853[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2853 -> 1859[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2854[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2854[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2854 -> 1860[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2855[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2855[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2855 -> 1861[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2856[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2856[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2856 -> 1862[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2857[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2857[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2857 -> 1863[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2858[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1680 -> 2858[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2858 -> 1864[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1681 -> 1641[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1681[label="vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1681 -> 1865[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1681 -> 1866[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1682 -> 1264[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1682[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1682 -> 1867[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1682 -> 1868[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1683 -> 1265[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1683[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1683 -> 1869[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1683 -> 1870[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1684 -> 1266[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1684[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1684 -> 1871[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1684 -> 1872[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1685 -> 1267[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1685[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1685 -> 1873[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1685 -> 1874[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1686 -> 1268[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1686[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1686 -> 1875[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1686 -> 1876[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1687 -> 1269[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1687[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1687 -> 1877[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1687 -> 1878[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1688 -> 1270[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1688[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1688 -> 1879[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1688 -> 1880[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1689 -> 1271[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1689[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1689 -> 1881[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1689 -> 1882[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1690 -> 1272[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1690[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1690 -> 1883[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1690 -> 1884[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1691 -> 1273[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1691[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1691 -> 1885[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1691 -> 1886[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1692 -> 1274[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1692[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1692 -> 1887[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1692 -> 1888[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1693 -> 1275[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1693[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1693 -> 1889[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1693 -> 1890[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1694 -> 1276[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1694[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1694 -> 1891[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1694 -> 1892[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1695 -> 1277[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1695[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1695 -> 1893[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1695 -> 1894[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1696[label="vyw4510",fontsize=16,color="green",shape="box"];1697[label="vyw4310",fontsize=16,color="green",shape="box"];1698[label="vyw4510",fontsize=16,color="green",shape="box"];1699[label="vyw4310",fontsize=16,color="green",shape="box"];1700[label="vyw4510",fontsize=16,color="green",shape="box"];1701[label="vyw4310",fontsize=16,color="green",shape="box"];1702[label="vyw4510",fontsize=16,color="green",shape="box"];1703[label="vyw4310",fontsize=16,color="green",shape="box"];1704[label="vyw4510",fontsize=16,color="green",shape="box"];1705[label="vyw4310",fontsize=16,color="green",shape="box"];1706[label="vyw4510",fontsize=16,color="green",shape="box"];1707[label="vyw4310",fontsize=16,color="green",shape="box"];1708[label="vyw4510",fontsize=16,color="green",shape="box"];1709[label="vyw4310",fontsize=16,color="green",shape="box"];1710[label="vyw4510",fontsize=16,color="green",shape="box"];1711[label="vyw4310",fontsize=16,color="green",shape="box"];1712[label="vyw4510",fontsize=16,color="green",shape="box"];1713[label="vyw4310",fontsize=16,color="green",shape="box"];1714[label="vyw4510",fontsize=16,color="green",shape="box"];1715[label="vyw4310",fontsize=16,color="green",shape="box"];1716[label="vyw4510",fontsize=16,color="green",shape="box"];1717[label="vyw4310",fontsize=16,color="green",shape="box"];1718[label="vyw4510",fontsize=16,color="green",shape="box"];1719[label="vyw4310",fontsize=16,color="green",shape="box"];1720[label="vyw4510",fontsize=16,color="green",shape="box"];1721[label="vyw4310",fontsize=16,color="green",shape="box"];1722[label="vyw4510",fontsize=16,color="green",shape="box"];1723[label="vyw4310",fontsize=16,color="green",shape="box"];1724[label="vyw4510",fontsize=16,color="green",shape="box"];1725[label="vyw4310",fontsize=16,color="green",shape="box"];1726[label="vyw4510",fontsize=16,color="green",shape="box"];1727[label="vyw4310",fontsize=16,color="green",shape="box"];1728[label="vyw4510",fontsize=16,color="green",shape="box"];1729[label="vyw4310",fontsize=16,color="green",shape="box"];1730[label="vyw4510",fontsize=16,color="green",shape="box"];1731[label="vyw4310",fontsize=16,color="green",shape="box"];1732[label="vyw4510",fontsize=16,color="green",shape="box"];1733[label="vyw4310",fontsize=16,color="green",shape="box"];1734[label="vyw4510",fontsize=16,color="green",shape="box"];1735[label="vyw4310",fontsize=16,color="green",shape="box"];1736[label="vyw4510",fontsize=16,color="green",shape="box"];1737[label="vyw4310",fontsize=16,color="green",shape="box"];1738[label="vyw4510",fontsize=16,color="green",shape="box"];1739[label="vyw4310",fontsize=16,color="green",shape="box"];1740[label="vyw4510",fontsize=16,color="green",shape="box"];1741[label="vyw4310",fontsize=16,color="green",shape="box"];1742[label="vyw4510",fontsize=16,color="green",shape="box"];1743[label="vyw4310",fontsize=16,color="green",shape="box"];1744[label="vyw4510",fontsize=16,color="green",shape="box"];1745[label="vyw4310",fontsize=16,color="green",shape="box"];1746[label="vyw4510",fontsize=16,color="green",shape="box"];1747[label="vyw4310",fontsize=16,color="green",shape="box"];1748[label="vyw4510",fontsize=16,color="green",shape="box"];1749[label="vyw4310",fontsize=16,color="green",shape="box"];1750[label="vyw4510",fontsize=16,color="green",shape="box"];1751[label="vyw4310",fontsize=16,color="green",shape="box"];1752[label="vyw450",fontsize=16,color="green",shape="box"];1753[label="vyw430",fontsize=16,color="green",shape="box"];1754[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1754 -> 1895[label="",style="solid", color="black", weight=3]; 26.96/11.38 1755[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1755 -> 1896[label="",style="solid", color="black", weight=3]; 26.96/11.38 1756[label="vyw450",fontsize=16,color="green",shape="box"];1757[label="vyw430",fontsize=16,color="green",shape="box"];1758[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1758 -> 1897[label="",style="solid", color="black", weight=3]; 26.96/11.38 1759[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1759 -> 1898[label="",style="solid", color="black", weight=3]; 26.96/11.38 1760 -> 1394[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1760[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1760 -> 1899[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1760 -> 1900[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1761 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1761[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1761 -> 1901[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1761 -> 1902[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1762[label="vyw450",fontsize=16,color="green",shape="box"];1763[label="vyw430",fontsize=16,color="green",shape="box"];1764[label="primCmpNat vyw4300 vyw4500",fontsize=16,color="burlywood",shape="triangle"];2859[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1764 -> 2859[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2859 -> 1903[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2860[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1764 -> 2860[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2860 -> 1904[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1765[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2861[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2861[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2861 -> 1905[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2862[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2862[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2862 -> 1906[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1766[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2863[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2863[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2863 -> 1907[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2864[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2864[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2864 -> 1908[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1767[label="vyw4500",fontsize=16,color="green",shape="box"];1768[label="vyw4300",fontsize=16,color="green",shape="box"];1770 -> 1396[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1770[label="compare vyw4301 vyw4501",fontsize=16,color="magenta"];1770 -> 1909[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1770 -> 1910[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1769[label="primCompAux vyw4300 vyw4500 vyw102",fontsize=16,color="black",shape="triangle"];1769 -> 1911[label="",style="solid", color="black", weight=3]; 26.96/11.38 1771[label="vyw450",fontsize=16,color="green",shape="box"];1772[label="vyw430",fontsize=16,color="green",shape="box"];1773[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1773 -> 1912[label="",style="solid", color="black", weight=3]; 26.96/11.38 1774[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1774 -> 1913[label="",style="solid", color="black", weight=3]; 26.96/11.38 1775[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2865[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2865[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2865 -> 1914[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2866[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2866[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2866 -> 1915[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1776[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2867[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2867[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2867 -> 1916[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2868[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1776 -> 2868[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2868 -> 1917[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1777[label="primCmpInt (Pos (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1777 -> 1918[label="",style="solid", color="black", weight=3]; 26.96/11.38 1778[label="primCmpInt (Pos (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1778 -> 1919[label="",style="solid", color="black", weight=3]; 26.96/11.38 1779[label="primCmpInt (Pos Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2869[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1779 -> 2869[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2869 -> 1920[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2870[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1779 -> 2870[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2870 -> 1921[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1780[label="primCmpInt (Pos Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2871[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1780 -> 2871[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2871 -> 1922[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2872[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1780 -> 2872[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2872 -> 1923[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1781[label="primCmpInt (Neg (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1781 -> 1924[label="",style="solid", color="black", weight=3]; 26.96/11.38 1782[label="primCmpInt (Neg (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1782 -> 1925[label="",style="solid", color="black", weight=3]; 26.96/11.38 1783[label="primCmpInt (Neg Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2873[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1783 -> 2873[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2873 -> 1926[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2874[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1783 -> 2874[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2874 -> 1927[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1784[label="primCmpInt (Neg Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2875[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1784 -> 2875[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2875 -> 1928[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2876[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1784 -> 2876[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2876 -> 1929[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1785[label="vyw450",fontsize=16,color="green",shape="box"];1786[label="vyw430",fontsize=16,color="green",shape="box"];1787[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1787 -> 1930[label="",style="solid", color="black", weight=3]; 26.96/11.38 1788[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1788 -> 1931[label="",style="solid", color="black", weight=3]; 26.96/11.38 1789[label="vyw450",fontsize=16,color="green",shape="box"];1790[label="vyw430",fontsize=16,color="green",shape="box"];1791[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1791 -> 1932[label="",style="solid", color="black", weight=3]; 26.96/11.38 1792[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1792 -> 1933[label="",style="solid", color="black", weight=3]; 26.96/11.38 1241[label="primPlusNat vyw740 vyw400000",fontsize=16,color="burlywood",shape="triangle"];2877[label="vyw740/Succ vyw7400",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2877[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2877 -> 1243[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2878[label="vyw740/Zero",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2878[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2878 -> 1244[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1793 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1793[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1793 -> 1934[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1793 -> 1935[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1794 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1794[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1794 -> 1936[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1794 -> 1937[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1795 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1795[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1795 -> 1938[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1795 -> 1939[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1796 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1796[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1796 -> 1940[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1796 -> 1941[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1797 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1797[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1797 -> 1942[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1797 -> 1943[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1798 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1798[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1798 -> 1944[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1798 -> 1945[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1799 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1799[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1799 -> 1946[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1799 -> 1947[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1800 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1800[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1800 -> 1948[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1800 -> 1949[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1801 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1801[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1801 -> 1950[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1801 -> 1951[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1802 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1802[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1802 -> 1952[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1802 -> 1953[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1803 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1803[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1803 -> 1954[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1803 -> 1955[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1804 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1804[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1804 -> 1956[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1804 -> 1957[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1805 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1805[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1805 -> 1958[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1805 -> 1959[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1806 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1806[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1806 -> 1960[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1806 -> 1961[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1807 -> 1298[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1807[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1807 -> 1962[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1807 -> 1963[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1808 -> 1299[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1808[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1808 -> 1964[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1808 -> 1965[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1809 -> 1300[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1809[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1809 -> 1966[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1809 -> 1967[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1810 -> 1301[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1810[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1810 -> 1968[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1810 -> 1969[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1811 -> 1302[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1811[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1811 -> 1970[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1811 -> 1971[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1812 -> 1303[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1812[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1812 -> 1972[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1812 -> 1973[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1813 -> 1304[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1813[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1813 -> 1974[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1813 -> 1975[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1814 -> 1305[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1814[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1814 -> 1976[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1814 -> 1977[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1815 -> 1306[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1815[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1815 -> 1978[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1815 -> 1979[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1816 -> 1307[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1816[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1816 -> 1980[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1816 -> 1981[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1817 -> 1308[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1817[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1817 -> 1982[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1817 -> 1983[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1818 -> 1309[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1818[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1818 -> 1984[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1818 -> 1985[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1819 -> 1310[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1819[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1819 -> 1986[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1819 -> 1987[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1820 -> 1311[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1820[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1820 -> 1988[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1820 -> 1989[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1821[label="vyw4510",fontsize=16,color="green",shape="box"];1822[label="vyw4310",fontsize=16,color="green",shape="box"];1823[label="vyw4510",fontsize=16,color="green",shape="box"];1824[label="vyw4310",fontsize=16,color="green",shape="box"];1825[label="vyw4510",fontsize=16,color="green",shape="box"];1826[label="vyw4310",fontsize=16,color="green",shape="box"];1827[label="vyw4510",fontsize=16,color="green",shape="box"];1828[label="vyw4310",fontsize=16,color="green",shape="box"];1829[label="vyw4510",fontsize=16,color="green",shape="box"];1830[label="vyw4310",fontsize=16,color="green",shape="box"];1831[label="vyw4510",fontsize=16,color="green",shape="box"];1832[label="vyw4310",fontsize=16,color="green",shape="box"];1833[label="vyw4510",fontsize=16,color="green",shape="box"];1834[label="vyw4310",fontsize=16,color="green",shape="box"];1835[label="vyw4510",fontsize=16,color="green",shape="box"];1836[label="vyw4310",fontsize=16,color="green",shape="box"];1837[label="vyw4510",fontsize=16,color="green",shape="box"];1838[label="vyw4310",fontsize=16,color="green",shape="box"];1839[label="vyw4510",fontsize=16,color="green",shape="box"];1840[label="vyw4310",fontsize=16,color="green",shape="box"];1841[label="vyw4510",fontsize=16,color="green",shape="box"];1842[label="vyw4310",fontsize=16,color="green",shape="box"];1843[label="vyw4510",fontsize=16,color="green",shape="box"];1844[label="vyw4310",fontsize=16,color="green",shape="box"];1845[label="vyw4510",fontsize=16,color="green",shape="box"];1846[label="vyw4310",fontsize=16,color="green",shape="box"];1847[label="vyw4510",fontsize=16,color="green",shape="box"];1848[label="vyw4310",fontsize=16,color="green",shape="box"];1849[label="vyw101",fontsize=16,color="green",shape="box"];1850[label="True",fontsize=16,color="green",shape="box"];1851 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1851[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1851 -> 1990[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1851 -> 1991[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1852 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1852[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1852 -> 1992[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1852 -> 1993[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1853 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1853[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1853 -> 1994[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1853 -> 1995[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1854 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1854[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1854 -> 1996[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1854 -> 1997[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1855 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1855[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1855 -> 1998[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1855 -> 1999[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1856 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1856[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1856 -> 2000[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1856 -> 2001[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1857 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1857[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1857 -> 2002[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1857 -> 2003[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1858 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1858[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1858 -> 2004[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1858 -> 2005[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1859 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1859[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1859 -> 2006[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1859 -> 2007[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1860 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1860[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1860 -> 2008[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1860 -> 2009[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1861 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1861[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1861 -> 2010[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1861 -> 2011[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1862 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1862[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1862 -> 2012[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1862 -> 2013[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1863 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1863[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1863 -> 2014[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1863 -> 2015[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1864 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1864[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1864 -> 2016[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1864 -> 2017[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1865 -> 400[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1865[label="vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1865 -> 2018[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1865 -> 2019[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1866[label="vyw4311 < vyw4511",fontsize=16,color="blue",shape="box"];2879[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2879[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2879 -> 2020[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2880[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2880[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2880 -> 2021[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2881[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2881[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2881 -> 2022[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2882[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2882[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2882 -> 2023[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2883[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2883[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2883 -> 2024[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2884[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2884[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2884 -> 2025[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2885[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2885[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2885 -> 2026[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2886[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2886[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2886 -> 2027[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2887[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2887[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2887 -> 2028[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2888[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2888[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2888 -> 2029[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2889[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2889[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2889 -> 2030[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2890[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2890[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2890 -> 2031[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2891[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2891[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2891 -> 2032[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2892[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1866 -> 2892[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2892 -> 2033[label="",style="solid", color="blue", weight=3]; 26.96/11.38 1867[label="vyw4510",fontsize=16,color="green",shape="box"];1868[label="vyw4310",fontsize=16,color="green",shape="box"];1869[label="vyw4510",fontsize=16,color="green",shape="box"];1870[label="vyw4310",fontsize=16,color="green",shape="box"];1871[label="vyw4510",fontsize=16,color="green",shape="box"];1872[label="vyw4310",fontsize=16,color="green",shape="box"];1873[label="vyw4510",fontsize=16,color="green",shape="box"];1874[label="vyw4310",fontsize=16,color="green",shape="box"];1875[label="vyw4510",fontsize=16,color="green",shape="box"];1876[label="vyw4310",fontsize=16,color="green",shape="box"];1877[label="vyw4510",fontsize=16,color="green",shape="box"];1878[label="vyw4310",fontsize=16,color="green",shape="box"];1879[label="vyw4510",fontsize=16,color="green",shape="box"];1880[label="vyw4310",fontsize=16,color="green",shape="box"];1881[label="vyw4510",fontsize=16,color="green",shape="box"];1882[label="vyw4310",fontsize=16,color="green",shape="box"];1883[label="vyw4510",fontsize=16,color="green",shape="box"];1884[label="vyw4310",fontsize=16,color="green",shape="box"];1885[label="vyw4510",fontsize=16,color="green",shape="box"];1886[label="vyw4310",fontsize=16,color="green",shape="box"];1887[label="vyw4510",fontsize=16,color="green",shape="box"];1888[label="vyw4310",fontsize=16,color="green",shape="box"];1889[label="vyw4510",fontsize=16,color="green",shape="box"];1890[label="vyw4310",fontsize=16,color="green",shape="box"];1891[label="vyw4510",fontsize=16,color="green",shape="box"];1892[label="vyw4310",fontsize=16,color="green",shape="box"];1893[label="vyw4510",fontsize=16,color="green",shape="box"];1894[label="vyw4310",fontsize=16,color="green",shape="box"];1895 -> 2034[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1895[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1895 -> 2035[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1896[label="EQ",fontsize=16,color="green",shape="box"];1897 -> 2036[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1897[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1897 -> 2037[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1898[label="EQ",fontsize=16,color="green",shape="box"];1899[label="vyw4500 * vyw4301",fontsize=16,color="burlywood",shape="triangle"];2893[label="vyw4500/Integer vyw45000",fontsize=10,color="white",style="solid",shape="box"];1899 -> 2893[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2893 -> 2038[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1900 -> 1899[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1900[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1900 -> 2039[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1900 -> 2040[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1901 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1901[label="vyw4500 * vyw4301",fontsize=16,color="magenta"];1901 -> 2041[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1901 -> 2042[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1902 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1902[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1902 -> 2043[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1902 -> 2044[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1903[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="burlywood",shape="box"];2894[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1903 -> 2894[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2894 -> 2045[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2895[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1903 -> 2895[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2895 -> 2046[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1904[label="primCmpNat Zero vyw4500",fontsize=16,color="burlywood",shape="box"];2896[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1904 -> 2896[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2896 -> 2047[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2897[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1904 -> 2897[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2897 -> 2048[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1905[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1905 -> 2049[label="",style="solid", color="black", weight=3]; 26.96/11.38 1906[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1906 -> 2050[label="",style="solid", color="black", weight=3]; 26.96/11.38 1907[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1907 -> 2051[label="",style="solid", color="black", weight=3]; 26.96/11.38 1908[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1908 -> 2052[label="",style="solid", color="black", weight=3]; 26.96/11.38 1909[label="vyw4501",fontsize=16,color="green",shape="box"];1910[label="vyw4301",fontsize=16,color="green",shape="box"];1911 -> 2053[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1911[label="primCompAux0 vyw102 (compare vyw4300 vyw4500)",fontsize=16,color="magenta"];1911 -> 2054[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1911 -> 2055[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1912 -> 2056[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1912[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1912 -> 2057[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1913[label="EQ",fontsize=16,color="green",shape="box"];1914[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1914 -> 2058[label="",style="solid", color="black", weight=3]; 26.96/11.38 1915[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1915 -> 2059[label="",style="solid", color="black", weight=3]; 26.96/11.38 1916[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1916 -> 2060[label="",style="solid", color="black", weight=3]; 26.96/11.38 1917[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1917 -> 2061[label="",style="solid", color="black", weight=3]; 26.96/11.38 1918 -> 1764[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1918[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="magenta"];1918 -> 2062[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1918 -> 2063[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1919[label="GT",fontsize=16,color="green",shape="box"];1920[label="primCmpInt (Pos Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1920 -> 2064[label="",style="solid", color="black", weight=3]; 26.96/11.38 1921[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1921 -> 2065[label="",style="solid", color="black", weight=3]; 26.96/11.38 1922[label="primCmpInt (Pos Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1922 -> 2066[label="",style="solid", color="black", weight=3]; 26.96/11.38 1923[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1923 -> 2067[label="",style="solid", color="black", weight=3]; 26.96/11.38 1924[label="LT",fontsize=16,color="green",shape="box"];1925 -> 1764[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1925[label="primCmpNat vyw4500 (Succ vyw43000)",fontsize=16,color="magenta"];1925 -> 2068[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1925 -> 2069[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1926[label="primCmpInt (Neg Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1926 -> 2070[label="",style="solid", color="black", weight=3]; 26.96/11.38 1927[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1927 -> 2071[label="",style="solid", color="black", weight=3]; 26.96/11.38 1928[label="primCmpInt (Neg Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1928 -> 2072[label="",style="solid", color="black", weight=3]; 26.96/11.38 1929[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1929 -> 2073[label="",style="solid", color="black", weight=3]; 26.96/11.38 1930 -> 2074[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1930[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1930 -> 2075[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1931[label="EQ",fontsize=16,color="green",shape="box"];1932 -> 2076[label="",style="dashed", color="red", weight=0]; 26.96/11.38 1932[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1932 -> 2077[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 1933[label="EQ",fontsize=16,color="green",shape="box"];1243[label="primPlusNat (Succ vyw7400) vyw400000",fontsize=16,color="burlywood",shape="box"];2898[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2898[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2898 -> 1280[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2899[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2899[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2899 -> 1281[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1244[label="primPlusNat Zero vyw400000",fontsize=16,color="burlywood",shape="box"];2900[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2900[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2900 -> 1282[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 2901[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2901[label="",style="solid", color="burlywood", weight=9]; 26.96/11.38 2901 -> 1283[label="",style="solid", color="burlywood", weight=3]; 26.96/11.38 1934[label="vyw4510",fontsize=16,color="green",shape="box"];1935[label="vyw4310",fontsize=16,color="green",shape="box"];1936[label="vyw4510",fontsize=16,color="green",shape="box"];1937[label="vyw4310",fontsize=16,color="green",shape="box"];1938[label="vyw4510",fontsize=16,color="green",shape="box"];1939[label="vyw4310",fontsize=16,color="green",shape="box"];1940[label="vyw4510",fontsize=16,color="green",shape="box"];1941[label="vyw4310",fontsize=16,color="green",shape="box"];1942[label="vyw4510",fontsize=16,color="green",shape="box"];1943[label="vyw4310",fontsize=16,color="green",shape="box"];1944[label="vyw4510",fontsize=16,color="green",shape="box"];1945[label="vyw4310",fontsize=16,color="green",shape="box"];1946[label="vyw4510",fontsize=16,color="green",shape="box"];1947[label="vyw4310",fontsize=16,color="green",shape="box"];1948[label="vyw4510",fontsize=16,color="green",shape="box"];1949[label="vyw4310",fontsize=16,color="green",shape="box"];1950[label="vyw4510",fontsize=16,color="green",shape="box"];1951[label="vyw4310",fontsize=16,color="green",shape="box"];1952[label="vyw4510",fontsize=16,color="green",shape="box"];1953[label="vyw4310",fontsize=16,color="green",shape="box"];1954[label="vyw4510",fontsize=16,color="green",shape="box"];1955[label="vyw4310",fontsize=16,color="green",shape="box"];1956[label="vyw4510",fontsize=16,color="green",shape="box"];1957[label="vyw4310",fontsize=16,color="green",shape="box"];1958[label="vyw4510",fontsize=16,color="green",shape="box"];1959[label="vyw4310",fontsize=16,color="green",shape="box"];1960[label="vyw4510",fontsize=16,color="green",shape="box"];1961[label="vyw4310",fontsize=16,color="green",shape="box"];1962[label="vyw4511",fontsize=16,color="green",shape="box"];1963[label="vyw4311",fontsize=16,color="green",shape="box"];1964[label="vyw4511",fontsize=16,color="green",shape="box"];1965[label="vyw4311",fontsize=16,color="green",shape="box"];1966[label="vyw4511",fontsize=16,color="green",shape="box"];1967[label="vyw4311",fontsize=16,color="green",shape="box"];1968[label="vyw4511",fontsize=16,color="green",shape="box"];1969[label="vyw4311",fontsize=16,color="green",shape="box"];1970[label="vyw4511",fontsize=16,color="green",shape="box"];1971[label="vyw4311",fontsize=16,color="green",shape="box"];1972[label="vyw4511",fontsize=16,color="green",shape="box"];1973[label="vyw4311",fontsize=16,color="green",shape="box"];1974[label="vyw4511",fontsize=16,color="green",shape="box"];1975[label="vyw4311",fontsize=16,color="green",shape="box"];1976[label="vyw4511",fontsize=16,color="green",shape="box"];1977[label="vyw4311",fontsize=16,color="green",shape="box"];1978[label="vyw4511",fontsize=16,color="green",shape="box"];1979[label="vyw4311",fontsize=16,color="green",shape="box"];1980[label="vyw4511",fontsize=16,color="green",shape="box"];1981[label="vyw4311",fontsize=16,color="green",shape="box"];1982[label="vyw4511",fontsize=16,color="green",shape="box"];1983[label="vyw4311",fontsize=16,color="green",shape="box"];1984[label="vyw4511",fontsize=16,color="green",shape="box"];1985[label="vyw4311",fontsize=16,color="green",shape="box"];1986[label="vyw4511",fontsize=16,color="green",shape="box"];1987[label="vyw4311",fontsize=16,color="green",shape="box"];1988[label="vyw4511",fontsize=16,color="green",shape="box"];1989[label="vyw4311",fontsize=16,color="green",shape="box"];1990[label="vyw4510",fontsize=16,color="green",shape="box"];1991[label="vyw4310",fontsize=16,color="green",shape="box"];1992[label="vyw4510",fontsize=16,color="green",shape="box"];1993[label="vyw4310",fontsize=16,color="green",shape="box"];1994[label="vyw4510",fontsize=16,color="green",shape="box"];1995[label="vyw4310",fontsize=16,color="green",shape="box"];1996[label="vyw4510",fontsize=16,color="green",shape="box"];1997[label="vyw4310",fontsize=16,color="green",shape="box"];1998[label="vyw4510",fontsize=16,color="green",shape="box"];1999[label="vyw4310",fontsize=16,color="green",shape="box"];2000[label="vyw4510",fontsize=16,color="green",shape="box"];2001[label="vyw4310",fontsize=16,color="green",shape="box"];2002[label="vyw4510",fontsize=16,color="green",shape="box"];2003[label="vyw4310",fontsize=16,color="green",shape="box"];2004[label="vyw4510",fontsize=16,color="green",shape="box"];2005[label="vyw4310",fontsize=16,color="green",shape="box"];2006[label="vyw4510",fontsize=16,color="green",shape="box"];2007[label="vyw4310",fontsize=16,color="green",shape="box"];2008[label="vyw4510",fontsize=16,color="green",shape="box"];2009[label="vyw4310",fontsize=16,color="green",shape="box"];2010[label="vyw4510",fontsize=16,color="green",shape="box"];2011[label="vyw4310",fontsize=16,color="green",shape="box"];2012[label="vyw4510",fontsize=16,color="green",shape="box"];2013[label="vyw4310",fontsize=16,color="green",shape="box"];2014[label="vyw4510",fontsize=16,color="green",shape="box"];2015[label="vyw4310",fontsize=16,color="green",shape="box"];2016[label="vyw4510",fontsize=16,color="green",shape="box"];2017[label="vyw4310",fontsize=16,color="green",shape="box"];2018[label="vyw4311 == vyw4511",fontsize=16,color="blue",shape="box"];2902[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2902[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2902 -> 2078[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2903[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2903[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2903 -> 2079[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2904[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2904[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2904 -> 2080[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2905[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2905[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2905 -> 2081[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2906[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2906[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2906 -> 2082[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2907[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2907[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2907 -> 2083[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2908[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2908[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2908 -> 2084[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2909[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2909[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2909 -> 2085[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2910[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2910[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2910 -> 2086[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2911[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2911[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2911 -> 2087[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2912[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2912[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2912 -> 2088[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2913[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2913[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2913 -> 2089[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2914[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2914[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2914 -> 2090[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2915[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2018 -> 2915[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2915 -> 2091[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2019[label="vyw4312 <= vyw4512",fontsize=16,color="blue",shape="box"];2916[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2916[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2916 -> 2092[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2917[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2917[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2917 -> 2093[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2918[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2918[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2918 -> 2094[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2919[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2919[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2919 -> 2095[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2920[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2920[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2920 -> 2096[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2921[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2921[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2921 -> 2097[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2922[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2922[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2922 -> 2098[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2923[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2923[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2923 -> 2099[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2924[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2924[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2924 -> 2100[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2925[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2925[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2925 -> 2101[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2926[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2926[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2926 -> 2102[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2927[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2927[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2927 -> 2103[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2928[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2928[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2928 -> 2104[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2929[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2019 -> 2929[label="",style="solid", color="blue", weight=9]; 26.96/11.38 2929 -> 2105[label="",style="solid", color="blue", weight=3]; 26.96/11.38 2020 -> 1264[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2020[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2020 -> 2106[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2020 -> 2107[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2021 -> 1265[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2021[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2021 -> 2108[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2021 -> 2109[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2022 -> 1266[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2022[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2022 -> 2110[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2022 -> 2111[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2023 -> 1267[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2023[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2023 -> 2112[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2023 -> 2113[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2024 -> 1268[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2024[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2024 -> 2114[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2024 -> 2115[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2025 -> 1269[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2025[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2025 -> 2116[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2025 -> 2117[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2026 -> 1270[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2026[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2026 -> 2118[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2026 -> 2119[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2027 -> 1271[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2027[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2027 -> 2120[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2027 -> 2121[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2028 -> 1272[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2028[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2028 -> 2122[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2028 -> 2123[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2029 -> 1273[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2029[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2029 -> 2124[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2029 -> 2125[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2030 -> 1274[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2030[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2030 -> 2126[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2030 -> 2127[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2031 -> 1275[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2031[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2031 -> 2128[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2031 -> 2129[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2032 -> 1276[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2032[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2032 -> 2130[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2032 -> 2131[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2033 -> 1277[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2033[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];2033 -> 2132[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2033 -> 2133[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2035 -> 1298[label="",style="dashed", color="red", weight=0]; 26.96/11.38 2035[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2035 -> 2134[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2035 -> 2135[label="",style="dashed", color="magenta", weight=3]; 26.96/11.38 2034[label="compare1 vyw430 vyw450 vyw103",fontsize=16,color="burlywood",shape="triangle"];2930[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];2034 -> 2930[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2930 -> 2136[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2931[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];2034 -> 2931[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2931 -> 2137[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2037 -> 1299[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2037[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2037 -> 2138[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2037 -> 2139[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2036[label="compare1 vyw430 vyw450 vyw104",fontsize=16,color="burlywood",shape="triangle"];2932[label="vyw104/False",fontsize=10,color="white",style="solid",shape="box"];2036 -> 2932[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2932 -> 2140[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2933[label="vyw104/True",fontsize=10,color="white",style="solid",shape="box"];2036 -> 2933[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2933 -> 2141[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2038[label="Integer vyw45000 * vyw4301",fontsize=16,color="burlywood",shape="box"];2934[label="vyw4301/Integer vyw43010",fontsize=10,color="white",style="solid",shape="box"];2038 -> 2934[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2934 -> 2142[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2039[label="vyw4300",fontsize=16,color="green",shape="box"];2040[label="vyw4501",fontsize=16,color="green",shape="box"];2041[label="vyw4301",fontsize=16,color="green",shape="box"];2042[label="vyw4500",fontsize=16,color="green",shape="box"];2043[label="vyw4501",fontsize=16,color="green",shape="box"];2044[label="vyw4300",fontsize=16,color="green",shape="box"];2045[label="primCmpNat (Succ vyw43000) (Succ vyw45000)",fontsize=16,color="black",shape="box"];2045 -> 2143[label="",style="solid", color="black", weight=3]; 26.96/11.39 2046[label="primCmpNat (Succ vyw43000) Zero",fontsize=16,color="black",shape="box"];2046 -> 2144[label="",style="solid", color="black", weight=3]; 26.96/11.39 2047[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="black",shape="box"];2047 -> 2145[label="",style="solid", color="black", weight=3]; 26.96/11.39 2048[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2048 -> 2146[label="",style="solid", color="black", weight=3]; 26.96/11.39 2049 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2049[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2049 -> 2147[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2049 -> 2148[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2050 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2050[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2050 -> 2149[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2050 -> 2150[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2051 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2051[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2051 -> 2151[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2051 -> 2152[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2052 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2052[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2052 -> 2153[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2052 -> 2154[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2054[label="vyw102",fontsize=16,color="green",shape="box"];2055[label="compare vyw4300 vyw4500",fontsize=16,color="blue",shape="box"];2935[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2935[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2935 -> 2155[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2936[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2936[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2936 -> 2156[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2937[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2937[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2937 -> 2157[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2938[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2938[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2938 -> 2158[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2939[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2939[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2939 -> 2159[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2940[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2940[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2940 -> 2160[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2941[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2941[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2941 -> 2161[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2942[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2942[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2942 -> 2162[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2943[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2943[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2943 -> 2163[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2944[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2944[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2944 -> 2164[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2945[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2945[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2945 -> 2165[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2946[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2946[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2946 -> 2166[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2947[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2947[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2947 -> 2167[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2948[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2055 -> 2948[label="",style="solid", color="blue", weight=9]; 26.96/11.39 2948 -> 2168[label="",style="solid", color="blue", weight=3]; 26.96/11.39 2053[label="primCompAux0 vyw108 vyw109",fontsize=16,color="burlywood",shape="triangle"];2949[label="vyw109/LT",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2949[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2949 -> 2169[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2950[label="vyw109/EQ",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2950[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2950 -> 2170[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2951[label="vyw109/GT",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2951[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2951 -> 2171[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2057 -> 1307[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2057[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2057 -> 2172[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2057 -> 2173[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2056[label="compare1 vyw430 vyw450 vyw110",fontsize=16,color="burlywood",shape="triangle"];2952[label="vyw110/False",fontsize=10,color="white",style="solid",shape="box"];2056 -> 2952[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2952 -> 2174[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2953[label="vyw110/True",fontsize=10,color="white",style="solid",shape="box"];2056 -> 2953[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2953 -> 2175[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2058 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2058[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2058 -> 2176[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2058 -> 2177[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2059 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2059[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2059 -> 2178[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2059 -> 2179[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2060 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2060[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2060 -> 2180[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2060 -> 2181[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2061 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2061[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2061 -> 2182[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2061 -> 2183[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2062[label="vyw4500",fontsize=16,color="green",shape="box"];2063[label="Succ vyw43000",fontsize=16,color="green",shape="box"];2064 -> 1764[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2064[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="magenta"];2064 -> 2184[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2064 -> 2185[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2065[label="EQ",fontsize=16,color="green",shape="box"];2066[label="GT",fontsize=16,color="green",shape="box"];2067[label="EQ",fontsize=16,color="green",shape="box"];2068[label="Succ vyw43000",fontsize=16,color="green",shape="box"];2069[label="vyw4500",fontsize=16,color="green",shape="box"];2070[label="LT",fontsize=16,color="green",shape="box"];2071[label="EQ",fontsize=16,color="green",shape="box"];2072 -> 1764[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2072[label="primCmpNat (Succ vyw45000) Zero",fontsize=16,color="magenta"];2072 -> 2186[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2072 -> 2187[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2073[label="EQ",fontsize=16,color="green",shape="box"];2075 -> 1310[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2075[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2075 -> 2188[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2075 -> 2189[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2074[label="compare1 vyw430 vyw450 vyw111",fontsize=16,color="burlywood",shape="triangle"];2954[label="vyw111/False",fontsize=10,color="white",style="solid",shape="box"];2074 -> 2954[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2954 -> 2190[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2955[label="vyw111/True",fontsize=10,color="white",style="solid",shape="box"];2074 -> 2955[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2955 -> 2191[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2077 -> 1311[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2077[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2077 -> 2192[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2077 -> 2193[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2076[label="compare1 vyw430 vyw450 vyw112",fontsize=16,color="burlywood",shape="triangle"];2956[label="vyw112/False",fontsize=10,color="white",style="solid",shape="box"];2076 -> 2956[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2956 -> 2194[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 2957[label="vyw112/True",fontsize=10,color="white",style="solid",shape="box"];2076 -> 2957[label="",style="solid", color="burlywood", weight=9]; 26.96/11.39 2957 -> 2195[label="",style="solid", color="burlywood", weight=3]; 26.96/11.39 1280[label="primPlusNat (Succ vyw7400) (Succ vyw4000000)",fontsize=16,color="black",shape="box"];1280 -> 1328[label="",style="solid", color="black", weight=3]; 26.96/11.39 1281[label="primPlusNat (Succ vyw7400) Zero",fontsize=16,color="black",shape="box"];1281 -> 1329[label="",style="solid", color="black", weight=3]; 26.96/11.39 1282[label="primPlusNat Zero (Succ vyw4000000)",fontsize=16,color="black",shape="box"];1282 -> 1330[label="",style="solid", color="black", weight=3]; 26.96/11.39 1283[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1283 -> 1331[label="",style="solid", color="black", weight=3]; 26.96/11.39 2078 -> 126[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2078[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2078 -> 2196[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2078 -> 2197[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2079 -> 124[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2079[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2079 -> 2198[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2079 -> 2199[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2080 -> 133[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2080[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2080 -> 2200[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2080 -> 2201[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2081 -> 135[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2081[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2081 -> 2202[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2081 -> 2203[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2082 -> 130[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2082[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2082 -> 2204[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2082 -> 2205[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2083 -> 125[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2083[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2083 -> 2206[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2083 -> 2207[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2084 -> 128[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2084[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2084 -> 2208[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2084 -> 2209[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2085 -> 123[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2085[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2085 -> 2210[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2085 -> 2211[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2086 -> 131[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2086[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2086 -> 2212[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2086 -> 2213[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2087 -> 134[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2087[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2087 -> 2214[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2087 -> 2215[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2088 -> 129[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2088[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2088 -> 2216[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2088 -> 2217[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2089 -> 127[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2089[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2089 -> 2218[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2089 -> 2219[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2090 -> 132[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2090[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2090 -> 2220[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2090 -> 2221[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2091 -> 136[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2091[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2091 -> 2222[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2091 -> 2223[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2092 -> 1298[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2092[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2092 -> 2224[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2092 -> 2225[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2093 -> 1299[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2093[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2093 -> 2226[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2093 -> 2227[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2094 -> 1300[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2094[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2094 -> 2228[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2094 -> 2229[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2095 -> 1301[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2095[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2095 -> 2230[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2095 -> 2231[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2096 -> 1302[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2096[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2096 -> 2232[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2096 -> 2233[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2097 -> 1303[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2097[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2097 -> 2234[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2097 -> 2235[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2098 -> 1304[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2098[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2098 -> 2236[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2098 -> 2237[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2099 -> 1305[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2099[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2099 -> 2238[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2099 -> 2239[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2100 -> 1306[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2100[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2100 -> 2240[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2100 -> 2241[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2101 -> 1307[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2101[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2101 -> 2242[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2101 -> 2243[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2102 -> 1308[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2102[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2102 -> 2244[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2102 -> 2245[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2103 -> 1309[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2103[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2103 -> 2246[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2103 -> 2247[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2104 -> 1310[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2104[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2104 -> 2248[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2104 -> 2249[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2105 -> 1311[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2105[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2105 -> 2250[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2105 -> 2251[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2106[label="vyw4511",fontsize=16,color="green",shape="box"];2107[label="vyw4311",fontsize=16,color="green",shape="box"];2108[label="vyw4511",fontsize=16,color="green",shape="box"];2109[label="vyw4311",fontsize=16,color="green",shape="box"];2110[label="vyw4511",fontsize=16,color="green",shape="box"];2111[label="vyw4311",fontsize=16,color="green",shape="box"];2112[label="vyw4511",fontsize=16,color="green",shape="box"];2113[label="vyw4311",fontsize=16,color="green",shape="box"];2114[label="vyw4511",fontsize=16,color="green",shape="box"];2115[label="vyw4311",fontsize=16,color="green",shape="box"];2116[label="vyw4511",fontsize=16,color="green",shape="box"];2117[label="vyw4311",fontsize=16,color="green",shape="box"];2118[label="vyw4511",fontsize=16,color="green",shape="box"];2119[label="vyw4311",fontsize=16,color="green",shape="box"];2120[label="vyw4511",fontsize=16,color="green",shape="box"];2121[label="vyw4311",fontsize=16,color="green",shape="box"];2122[label="vyw4511",fontsize=16,color="green",shape="box"];2123[label="vyw4311",fontsize=16,color="green",shape="box"];2124[label="vyw4511",fontsize=16,color="green",shape="box"];2125[label="vyw4311",fontsize=16,color="green",shape="box"];2126[label="vyw4511",fontsize=16,color="green",shape="box"];2127[label="vyw4311",fontsize=16,color="green",shape="box"];2128[label="vyw4511",fontsize=16,color="green",shape="box"];2129[label="vyw4311",fontsize=16,color="green",shape="box"];2130[label="vyw4511",fontsize=16,color="green",shape="box"];2131[label="vyw4311",fontsize=16,color="green",shape="box"];2132[label="vyw4511",fontsize=16,color="green",shape="box"];2133[label="vyw4311",fontsize=16,color="green",shape="box"];2134[label="vyw450",fontsize=16,color="green",shape="box"];2135[label="vyw430",fontsize=16,color="green",shape="box"];2136[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2136 -> 2252[label="",style="solid", color="black", weight=3]; 26.96/11.39 2137[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2137 -> 2253[label="",style="solid", color="black", weight=3]; 26.96/11.39 2138[label="vyw450",fontsize=16,color="green",shape="box"];2139[label="vyw430",fontsize=16,color="green",shape="box"];2140[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2140 -> 2254[label="",style="solid", color="black", weight=3]; 26.96/11.39 2141[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2141 -> 2255[label="",style="solid", color="black", weight=3]; 26.96/11.39 2142[label="Integer vyw45000 * Integer vyw43010",fontsize=16,color="black",shape="box"];2142 -> 2256[label="",style="solid", color="black", weight=3]; 26.96/11.39 2143 -> 1764[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2143[label="primCmpNat vyw43000 vyw45000",fontsize=16,color="magenta"];2143 -> 2257[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2143 -> 2258[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2144[label="GT",fontsize=16,color="green",shape="box"];2145[label="LT",fontsize=16,color="green",shape="box"];2146[label="EQ",fontsize=16,color="green",shape="box"];2147 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2147[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2147 -> 2259[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2147 -> 2260[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2148 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2148[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2148 -> 2261[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2148 -> 2262[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2149 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2149[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2149 -> 2263[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2149 -> 2264[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2150 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2150[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2150 -> 2265[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2150 -> 2266[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2151 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2151[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2151 -> 2267[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2151 -> 2268[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2152 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2152[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2152 -> 2269[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2152 -> 2270[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2153 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2153[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2153 -> 2271[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2153 -> 2272[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2154 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2154[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2154 -> 2273[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2154 -> 2274[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2155 -> 1380[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2155[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2155 -> 2275[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2155 -> 2276[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2156 -> 1382[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2156[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2156 -> 2277[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2156 -> 2278[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2157 -> 1384[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2157[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2157 -> 2279[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2157 -> 2280[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2158 -> 1386[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2158[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2158 -> 2281[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2158 -> 2282[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2159 -> 1388[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2159[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2159 -> 2283[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2159 -> 2284[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2160 -> 1390[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2160[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2160 -> 2285[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2160 -> 2286[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2161 -> 1392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2161[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2161 -> 2287[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2161 -> 2288[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2162 -> 1394[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2162[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2162 -> 2289[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2162 -> 2290[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2163 -> 1396[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2163[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2163 -> 2291[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2163 -> 2292[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2164 -> 1398[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2164[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2164 -> 2293[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2164 -> 2294[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2165 -> 1400[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2165[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2165 -> 2295[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2165 -> 2296[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2166 -> 1402[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2166[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2166 -> 2297[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2166 -> 2298[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2167 -> 1404[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2167[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2167 -> 2299[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2167 -> 2300[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2168 -> 1406[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2168[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2168 -> 2301[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2168 -> 2302[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2169[label="primCompAux0 vyw108 LT",fontsize=16,color="black",shape="box"];2169 -> 2303[label="",style="solid", color="black", weight=3]; 26.96/11.39 2170[label="primCompAux0 vyw108 EQ",fontsize=16,color="black",shape="box"];2170 -> 2304[label="",style="solid", color="black", weight=3]; 26.96/11.39 2171[label="primCompAux0 vyw108 GT",fontsize=16,color="black",shape="box"];2171 -> 2305[label="",style="solid", color="black", weight=3]; 26.96/11.39 2172[label="vyw450",fontsize=16,color="green",shape="box"];2173[label="vyw430",fontsize=16,color="green",shape="box"];2174[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2174 -> 2306[label="",style="solid", color="black", weight=3]; 26.96/11.39 2175[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2175 -> 2307[label="",style="solid", color="black", weight=3]; 26.96/11.39 2176 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2176[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2176 -> 2308[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2176 -> 2309[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2177 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2177[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2177 -> 2310[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2177 -> 2311[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2178 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2178[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2178 -> 2312[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2178 -> 2313[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2179 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2179[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2179 -> 2314[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2179 -> 2315[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2180 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2180[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2180 -> 2316[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2180 -> 2317[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2181 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2181[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2181 -> 2318[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2181 -> 2319[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2182 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2182[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2182 -> 2320[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2182 -> 2321[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2183 -> 392[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2183[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2183 -> 2322[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2183 -> 2323[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2184[label="Succ vyw45000",fontsize=16,color="green",shape="box"];2185[label="Zero",fontsize=16,color="green",shape="box"];2186[label="Zero",fontsize=16,color="green",shape="box"];2187[label="Succ vyw45000",fontsize=16,color="green",shape="box"];2188[label="vyw450",fontsize=16,color="green",shape="box"];2189[label="vyw430",fontsize=16,color="green",shape="box"];2190[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2190 -> 2324[label="",style="solid", color="black", weight=3]; 26.96/11.39 2191[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2191 -> 2325[label="",style="solid", color="black", weight=3]; 26.96/11.39 2192[label="vyw450",fontsize=16,color="green",shape="box"];2193[label="vyw430",fontsize=16,color="green",shape="box"];2194[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2194 -> 2326[label="",style="solid", color="black", weight=3]; 26.96/11.39 2195[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2195 -> 2327[label="",style="solid", color="black", weight=3]; 26.96/11.39 1328[label="Succ (Succ (primPlusNat vyw7400 vyw4000000))",fontsize=16,color="green",shape="box"];1328 -> 1410[label="",style="dashed", color="green", weight=3]; 26.96/11.39 1329[label="Succ vyw7400",fontsize=16,color="green",shape="box"];1330[label="Succ vyw4000000",fontsize=16,color="green",shape="box"];1331[label="Zero",fontsize=16,color="green",shape="box"];2196[label="vyw4511",fontsize=16,color="green",shape="box"];2197[label="vyw4311",fontsize=16,color="green",shape="box"];2198[label="vyw4511",fontsize=16,color="green",shape="box"];2199[label="vyw4311",fontsize=16,color="green",shape="box"];2200[label="vyw4511",fontsize=16,color="green",shape="box"];2201[label="vyw4311",fontsize=16,color="green",shape="box"];2202[label="vyw4511",fontsize=16,color="green",shape="box"];2203[label="vyw4311",fontsize=16,color="green",shape="box"];2204[label="vyw4511",fontsize=16,color="green",shape="box"];2205[label="vyw4311",fontsize=16,color="green",shape="box"];2206[label="vyw4511",fontsize=16,color="green",shape="box"];2207[label="vyw4311",fontsize=16,color="green",shape="box"];2208[label="vyw4511",fontsize=16,color="green",shape="box"];2209[label="vyw4311",fontsize=16,color="green",shape="box"];2210[label="vyw4511",fontsize=16,color="green",shape="box"];2211[label="vyw4311",fontsize=16,color="green",shape="box"];2212[label="vyw4511",fontsize=16,color="green",shape="box"];2213[label="vyw4311",fontsize=16,color="green",shape="box"];2214[label="vyw4511",fontsize=16,color="green",shape="box"];2215[label="vyw4311",fontsize=16,color="green",shape="box"];2216[label="vyw4511",fontsize=16,color="green",shape="box"];2217[label="vyw4311",fontsize=16,color="green",shape="box"];2218[label="vyw4511",fontsize=16,color="green",shape="box"];2219[label="vyw4311",fontsize=16,color="green",shape="box"];2220[label="vyw4511",fontsize=16,color="green",shape="box"];2221[label="vyw4311",fontsize=16,color="green",shape="box"];2222[label="vyw4511",fontsize=16,color="green",shape="box"];2223[label="vyw4311",fontsize=16,color="green",shape="box"];2224[label="vyw4512",fontsize=16,color="green",shape="box"];2225[label="vyw4312",fontsize=16,color="green",shape="box"];2226[label="vyw4512",fontsize=16,color="green",shape="box"];2227[label="vyw4312",fontsize=16,color="green",shape="box"];2228[label="vyw4512",fontsize=16,color="green",shape="box"];2229[label="vyw4312",fontsize=16,color="green",shape="box"];2230[label="vyw4512",fontsize=16,color="green",shape="box"];2231[label="vyw4312",fontsize=16,color="green",shape="box"];2232[label="vyw4512",fontsize=16,color="green",shape="box"];2233[label="vyw4312",fontsize=16,color="green",shape="box"];2234[label="vyw4512",fontsize=16,color="green",shape="box"];2235[label="vyw4312",fontsize=16,color="green",shape="box"];2236[label="vyw4512",fontsize=16,color="green",shape="box"];2237[label="vyw4312",fontsize=16,color="green",shape="box"];2238[label="vyw4512",fontsize=16,color="green",shape="box"];2239[label="vyw4312",fontsize=16,color="green",shape="box"];2240[label="vyw4512",fontsize=16,color="green",shape="box"];2241[label="vyw4312",fontsize=16,color="green",shape="box"];2242[label="vyw4512",fontsize=16,color="green",shape="box"];2243[label="vyw4312",fontsize=16,color="green",shape="box"];2244[label="vyw4512",fontsize=16,color="green",shape="box"];2245[label="vyw4312",fontsize=16,color="green",shape="box"];2246[label="vyw4512",fontsize=16,color="green",shape="box"];2247[label="vyw4312",fontsize=16,color="green",shape="box"];2248[label="vyw4512",fontsize=16,color="green",shape="box"];2249[label="vyw4312",fontsize=16,color="green",shape="box"];2250[label="vyw4512",fontsize=16,color="green",shape="box"];2251[label="vyw4312",fontsize=16,color="green",shape="box"];2252[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2252 -> 2328[label="",style="solid", color="black", weight=3]; 26.96/11.39 2253[label="LT",fontsize=16,color="green",shape="box"];2254[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2254 -> 2329[label="",style="solid", color="black", weight=3]; 26.96/11.39 2255[label="LT",fontsize=16,color="green",shape="box"];2256[label="Integer (primMulInt vyw45000 vyw43010)",fontsize=16,color="green",shape="box"];2256 -> 2330[label="",style="dashed", color="green", weight=3]; 26.96/11.39 2257[label="vyw45000",fontsize=16,color="green",shape="box"];2258[label="vyw43000",fontsize=16,color="green",shape="box"];2259[label="vyw4500",fontsize=16,color="green",shape="box"];2260[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2261[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2262[label="vyw4300",fontsize=16,color="green",shape="box"];2263[label="vyw4500",fontsize=16,color="green",shape="box"];2264[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2265[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2266[label="vyw4300",fontsize=16,color="green",shape="box"];2267[label="vyw4500",fontsize=16,color="green",shape="box"];2268[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2269[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2270[label="vyw4300",fontsize=16,color="green",shape="box"];2271[label="vyw4500",fontsize=16,color="green",shape="box"];2272[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2273[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2274[label="vyw4300",fontsize=16,color="green",shape="box"];2275[label="vyw4500",fontsize=16,color="green",shape="box"];2276[label="vyw4300",fontsize=16,color="green",shape="box"];2277[label="vyw4500",fontsize=16,color="green",shape="box"];2278[label="vyw4300",fontsize=16,color="green",shape="box"];2279[label="vyw4500",fontsize=16,color="green",shape="box"];2280[label="vyw4300",fontsize=16,color="green",shape="box"];2281[label="vyw4500",fontsize=16,color="green",shape="box"];2282[label="vyw4300",fontsize=16,color="green",shape="box"];2283[label="vyw4500",fontsize=16,color="green",shape="box"];2284[label="vyw4300",fontsize=16,color="green",shape="box"];2285[label="vyw4500",fontsize=16,color="green",shape="box"];2286[label="vyw4300",fontsize=16,color="green",shape="box"];2287[label="vyw4500",fontsize=16,color="green",shape="box"];2288[label="vyw4300",fontsize=16,color="green",shape="box"];2289[label="vyw4500",fontsize=16,color="green",shape="box"];2290[label="vyw4300",fontsize=16,color="green",shape="box"];2291[label="vyw4500",fontsize=16,color="green",shape="box"];2292[label="vyw4300",fontsize=16,color="green",shape="box"];2293[label="vyw4500",fontsize=16,color="green",shape="box"];2294[label="vyw4300",fontsize=16,color="green",shape="box"];2295[label="vyw4500",fontsize=16,color="green",shape="box"];2296[label="vyw4300",fontsize=16,color="green",shape="box"];2297[label="vyw4500",fontsize=16,color="green",shape="box"];2298[label="vyw4300",fontsize=16,color="green",shape="box"];2299[label="vyw4500",fontsize=16,color="green",shape="box"];2300[label="vyw4300",fontsize=16,color="green",shape="box"];2301[label="vyw4500",fontsize=16,color="green",shape="box"];2302[label="vyw4300",fontsize=16,color="green",shape="box"];2303[label="LT",fontsize=16,color="green",shape="box"];2304[label="vyw108",fontsize=16,color="green",shape="box"];2305[label="GT",fontsize=16,color="green",shape="box"];2306[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2306 -> 2331[label="",style="solid", color="black", weight=3]; 26.96/11.39 2307[label="LT",fontsize=16,color="green",shape="box"];2308[label="vyw4500",fontsize=16,color="green",shape="box"];2309[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2310[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2311[label="vyw4300",fontsize=16,color="green",shape="box"];2312[label="vyw4500",fontsize=16,color="green",shape="box"];2313[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2314[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2315[label="vyw4300",fontsize=16,color="green",shape="box"];2316[label="vyw4500",fontsize=16,color="green",shape="box"];2317[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2318[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2319[label="vyw4300",fontsize=16,color="green",shape="box"];2320[label="vyw4500",fontsize=16,color="green",shape="box"];2321[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2322[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2323[label="vyw4300",fontsize=16,color="green",shape="box"];2324[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2324 -> 2332[label="",style="solid", color="black", weight=3]; 26.96/11.39 2325[label="LT",fontsize=16,color="green",shape="box"];2326[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2326 -> 2333[label="",style="solid", color="black", weight=3]; 26.96/11.39 2327[label="LT",fontsize=16,color="green",shape="box"];1410 -> 1241[label="",style="dashed", color="red", weight=0]; 26.96/11.39 1410[label="primPlusNat vyw7400 vyw4000000",fontsize=16,color="magenta"];1410 -> 1459[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 1410 -> 1460[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2328[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2328 -> 2334[label="",style="solid", color="black", weight=3]; 26.96/11.39 2329[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2329 -> 2335[label="",style="solid", color="black", weight=3]; 26.96/11.39 2330 -> 579[label="",style="dashed", color="red", weight=0]; 26.96/11.39 2330[label="primMulInt vyw45000 vyw43010",fontsize=16,color="magenta"];2330 -> 2336[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2330 -> 2337[label="",style="dashed", color="magenta", weight=3]; 26.96/11.39 2331[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2331 -> 2338[label="",style="solid", color="black", weight=3]; 26.96/11.39 2332[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2332 -> 2339[label="",style="solid", color="black", weight=3]; 26.96/11.39 2333[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2333 -> 2340[label="",style="solid", color="black", weight=3]; 26.96/11.39 1459[label="vyw4000000",fontsize=16,color="green",shape="box"];1460[label="vyw7400",fontsize=16,color="green",shape="box"];2334[label="GT",fontsize=16,color="green",shape="box"];2335[label="GT",fontsize=16,color="green",shape="box"];2336[label="vyw43010",fontsize=16,color="green",shape="box"];2337[label="vyw45000",fontsize=16,color="green",shape="box"];2338[label="GT",fontsize=16,color="green",shape="box"];2339[label="GT",fontsize=16,color="green",shape="box"];2340[label="GT",fontsize=16,color="green",shape="box"];} 26.96/11.39 26.96/11.39 ---------------------------------------- 26.96/11.39 26.96/11.39 (16) 26.96/11.39 Complex Obligation (AND) 26.96/11.39 26.96/11.39 ---------------------------------------- 26.96/11.39 26.96/11.39 (17) 26.96/11.39 Obligation: 26.96/11.39 Q DP problem: 26.96/11.39 The TRS P consists of the following rules: 26.96/11.39 26.96/11.39 new_primCmpNat(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) 26.96/11.39 26.96/11.39 R is empty. 26.96/11.39 Q is empty. 26.96/11.39 We have to consider all minimal (P,Q,R)-chains. 26.96/11.39 ---------------------------------------- 26.96/11.39 26.96/11.39 (18) QDPSizeChangeProof (EQUIVALENT) 26.96/11.39 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.96/11.39 26.96/11.39 From the DPs we obtained the following set of size-change graphs: 26.96/11.39 *new_primCmpNat(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) 26.96/11.39 The graph contains the following edges 1 > 1, 2 > 2 26.96/11.39 26.96/11.39 26.96/11.39 ---------------------------------------- 26.96/11.39 26.96/11.39 (19) 26.96/11.39 YES 26.96/11.39 26.96/11.39 ---------------------------------------- 26.96/11.39 26.96/11.39 (20) 26.96/11.39 Obligation: 26.96/11.39 Q DP problem: 26.96/11.39 The TRS P consists of the following rules: 26.96/11.39 26.96/11.39 new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw19, @2(vyw21, vyw22), h, ba, bb) 26.96/11.39 new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs10(new_compare26(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs5(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) 26.96/11.39 new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw20, @2(vyw21, vyw22), h, ba, bb) 26.96/11.39 new_elemFM01(Branch(@2(vyw400, vyw401), vyw41, vyw42, vyw43, vyw44), @2(vyw30, vyw31), bc, bd, be) -> new_elemFM0(vyw400, vyw401, vyw41, vyw42, vyw43, vyw44, vyw30, vyw31, new_esEs30(vyw30, vyw31, vyw400, vyw401, new_esEs31(vyw30, vyw400, bd), bd, be), bc, bd, be) 26.96/11.39 26.96/11.39 The TRS R consists of the following rules: 26.96/11.39 26.96/11.39 new_ltEs6(EQ, EQ) -> True 26.96/11.39 new_lt20(vyw430, vyw450, ty_Double) -> new_lt12(vyw430, vyw450) 26.96/11.39 new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT 26.96/11.39 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.96/11.39 new_primPlusNat0(Zero, Zero) -> Zero 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(app(ty_@2, cc), cd)) -> new_esEs5(vyw4310, vyw4510, cc, cd) 26.96/11.39 new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(vyw301, vyw4001, cbf, cbg, cbh) 26.96/11.39 new_pePe(True, vyw101) -> True 26.96/11.39 new_compare29(vyw430, vyw450, hb, hc, hd) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, hb, hc, hd), hb, hc, hd) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(app(ty_@2, eh), fa)) -> new_ltEs9(vyw4312, vyw4512, eh, fa) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Float) -> new_esEs18(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_ltEs6(GT, GT) -> True 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Float, bac) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Int) -> new_lt17(vyw4310, vyw4510) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Bool) -> new_lt15(vyw430, vyw450) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Ordering) -> new_esEs10(vyw4311, vyw4511) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(ty_[], ced)) -> new_esEs16(vyw4310, vyw4510, ced) 26.96/11.39 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.96/11.39 new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT 26.96/11.39 new_compare26(vyw43, vyw45, True, gd, ge) -> EQ 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_compare16(vyw430, vyw450, gh, ha) -> new_compare26(vyw430, vyw450, new_esEs5(vyw430, vyw450, gh, ha), gh, ha) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Char) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.39 new_compare210(vyw430, vyw450, True, hb, hc, hd) -> EQ 26.96/11.39 new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) 26.96/11.39 new_compare211(vyw430, vyw450, True, gf) -> EQ 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_@0) -> new_ltEs11(vyw431, vyw451) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.39 new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(app(ty_Either, bbf), bbg)) -> new_compare6(vyw4300, vyw4500, bbf, bbg) 26.96/11.39 new_ltEs6(EQ, GT) -> True 26.96/11.39 new_lt21(vyw4310, vyw4510, app(app(ty_Either, ceh), cfa)) -> new_lt19(vyw4310, vyw4510, ceh, cfa) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Integer, bac) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.39 new_esEs25(vyw301, vyw4001, app(app(ty_@2, ccb), ccc)) -> new_esEs5(vyw301, vyw4001, ccb, ccc) 26.96/11.39 new_compare113(vyw430, vyw450, False) -> GT 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs6(vyw300, vyw4000, bgd, bge, bgf) 26.96/11.39 new_lt15(vyw430, vyw450) -> new_esEs10(new_compare28(vyw430, vyw450), LT) 26.96/11.39 new_esEs32(vyw32, vyw34, app(ty_Ratio, dfe)) -> new_esEs11(vyw32, vyw34, dfe) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(vyw4310, vyw4510, cf, cg, da) 26.96/11.39 new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False 26.96/11.39 new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(vyw300, vyw4000, chh, daa, dab) 26.96/11.39 new_esEs20(vyw430, vyw450, app(app(ty_@2, gh), ha)) -> new_esEs5(vyw430, vyw450, gh, ha) 26.96/11.39 new_ltEs17(vyw431, vyw451) -> new_not(new_esEs10(new_compare13(vyw431, vyw451), GT)) 26.96/11.39 new_lt20(vyw430, vyw450, app(ty_Maybe, gf)) -> new_lt7(vyw430, vyw450, gf) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Int) -> new_esEs19(vyw430, vyw450) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(ty_Maybe, bde)) -> new_esEs4(vyw300, vyw4000, bde) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_@0) -> new_compare17(vyw4300, vyw4500) 26.96/11.39 new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(ty_Ratio, cdc)) -> new_esEs11(vyw302, vyw4002, cdc) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(ty_Maybe, baf)) -> new_compare15(vyw4300, vyw4500, baf) 26.96/11.39 new_esEs31(vyw30, vyw400, app(app(ty_@2, bdc), bdd)) -> new_esEs5(vyw30, vyw400, bdc, bdd) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Integer) -> new_esEs15(vyw4310, vyw4510) 26.96/11.39 new_esEs10(GT, GT) -> True 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(app(ty_@2, ddf), ddg)) -> new_ltEs9(vyw4310, vyw4510, ddf, ddg) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_not(True) -> False 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Ordering) -> new_compare7(vyw4300, vyw4500) 26.96/11.39 new_lt7(vyw430, vyw450, gf) -> new_esEs10(new_compare15(vyw430, vyw450, gf), LT) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Float) -> new_lt16(vyw430, vyw450) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Char) -> new_compare9(vyw4300, vyw4500) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Double) -> new_esEs14(vyw4310, vyw4510) 26.96/11.39 new_primCompAux00(vyw108, LT) -> LT 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Ordering, caa) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_primCmpNat0(Zero, Zero) -> EQ 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, bgg)) -> new_esEs11(vyw300, vyw4000, bgg) 26.96/11.39 new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs6(vyw300, vyw4000, bcc, bcd, bce) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(ty_Ratio, de)) -> new_lt8(vyw4311, vyw4511, de) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs10(vyw32, vyw34) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs10(vyw301, vyw4001) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(ty_@2, dcd), dce), bac) -> new_ltEs9(vyw4310, vyw4510, dcd, dce) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) 26.96/11.39 new_compare11(vyw430, vyw450, False) -> GT 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Ordering) -> new_ltEs6(vyw4312, vyw4512) 26.96/11.39 new_lt8(vyw430, vyw450, gg) -> new_esEs10(new_compare8(vyw430, vyw450, gg), LT) 26.96/11.39 new_esEs20(vyw430, vyw450, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs6(vyw430, vyw450, hb, hc, hd) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, bgh), bha)) -> new_esEs5(vyw300, vyw4000, bgh, bha) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) 26.96/11.39 new_esEs20(vyw430, vyw450, app(app(ty_Either, gb), gc)) -> new_esEs7(vyw430, vyw450, gb, gc) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Float) -> new_lt16(vyw4311, vyw4511) 26.96/11.39 new_ltEs6(LT, GT) -> True 26.96/11.39 new_lt9(vyw430, vyw450, gh, ha) -> new_esEs10(new_compare16(vyw430, vyw450, gh, ha), LT) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs15(vyw32, vyw34) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_@0) -> new_esEs13(vyw302, vyw4002) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Integer, caa) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(ty_Ratio, bag)) -> new_compare8(vyw4300, vyw4500, bag) 26.96/11.39 new_compare9(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) 26.96/11.39 new_primEqNat0(Succ(vyw3000), Zero) -> False 26.96/11.39 new_primEqNat0(Zero, Succ(vyw40000)) -> False 26.96/11.39 new_esEs32(vyw32, vyw34, app(ty_[], dfa)) -> new_esEs16(vyw32, vyw34, dfa) 26.96/11.39 new_compare210(vyw430, vyw450, False, hb, hc, hd) -> new_compare112(vyw430, vyw450, new_ltEs4(vyw430, vyw450, hb, hc, hd), hb, hc, hd) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs10(vyw30, vyw400) 26.96/11.39 new_lt20(vyw430, vyw450, app(ty_Ratio, gg)) -> new_lt8(vyw430, vyw450, gg) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Ordering) -> new_esEs10(vyw302, vyw4002) 26.96/11.39 new_ltEs7(Nothing, Just(vyw4510), he) -> True 26.96/11.39 new_esEs21(vyw300, vyw4000, app(ty_Ratio, bcf)) -> new_esEs11(vyw300, vyw4000, bcf) 26.96/11.39 new_compare10(vyw430, vyw450, True, gb, gc) -> LT 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(app(ty_Either, fg), fh)) -> new_ltEs18(vyw4312, vyw4512, fg, fh) 26.96/11.39 new_esEs29(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.39 new_lt20(vyw430, vyw450, app(ty_[], ga)) -> new_lt14(vyw430, vyw450, ga) 26.96/11.39 new_lt14(vyw430, vyw450, ga) -> new_esEs10(new_compare0(vyw430, vyw450, ga), LT) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Float) -> new_lt16(vyw4310, vyw4510) 26.96/11.39 new_compare18(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(ty_Ratio, cfc)) -> new_ltEs8(vyw4311, vyw4511, cfc) 26.96/11.39 new_primCompAux00(vyw108, GT) -> GT 26.96/11.39 new_esEs10(EQ, EQ) -> True 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs18(vyw32, vyw34) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Float, caa) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_@0) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs14(vyw32, vyw34) 26.96/11.39 new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bhg) -> new_asAs(new_esEs28(vyw300, vyw4000, bhg), new_esEs29(vyw301, vyw4001, bhg)) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(app(ty_Either, ed), ee)) -> new_lt19(vyw4311, vyw4511, ed, ee) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_@0) -> new_esEs13(vyw430, vyw450) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Integer) -> new_lt13(vyw4311, vyw4511) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(app(ty_Either, db), dc)) -> new_esEs7(vyw4310, vyw4510, db, dc) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Integer) -> new_lt13(vyw430, vyw450) 26.96/11.39 new_esEs5(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bdc, bdd) -> new_asAs(new_esEs22(vyw300, vyw4000, bdc), new_esEs23(vyw301, vyw4001, bdd)) 26.96/11.39 new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_@0) -> new_ltEs11(vyw4311, vyw4511) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(ty_Maybe, dd)) -> new_lt7(vyw4311, vyw4511, dd) 26.96/11.39 new_compare28(vyw430, vyw450) -> new_compare25(vyw430, vyw450, new_esEs17(vyw430, vyw450)) 26.96/11.39 new_compare7(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs10(vyw430, vyw450)) 26.96/11.39 new_lt13(vyw430, vyw450) -> new_esEs10(new_compare19(vyw430, vyw450), LT) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Double) -> new_esEs14(vyw302, vyw4002) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(ty_Ratio, de)) -> new_esEs11(vyw4311, vyw4511, de) 26.96/11.39 new_compare12(vyw83, vyw84, vyw85, vyw86, True, vyw88, bad, bae) -> new_compare110(vyw83, vyw84, vyw85, vyw86, True, bad, bae) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Int) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(ty_Ratio, beb)) -> new_esEs11(vyw300, vyw4000, beb) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs17(vyw32, vyw34) 26.96/11.39 new_ltEs10(vyw431, vyw451) -> new_not(new_esEs10(new_compare9(vyw431, vyw451), GT)) 26.96/11.39 new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(vyw30, vyw400, bhd, bhe, bhf) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Float) -> new_esEs18(vyw302, vyw4002) 26.96/11.39 new_esEs19(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Bool, caa) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(app(ty_Either, ded), dee)) -> new_ltEs18(vyw4310, vyw4510, ded, dee) 26.96/11.39 new_compare18(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_compare18(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.39 new_primCmpNat0(Zero, Succ(vyw45000)) -> LT 26.96/11.39 new_compare14(vyw4300, vyw4500, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare29(vyw4300, vyw4500, bbc, bbd, bbe) 26.96/11.39 new_esEs10(LT, EQ) -> False 26.96/11.39 new_esEs10(EQ, LT) -> False 26.96/11.39 new_compare26(@2(vyw430, vyw431), @2(vyw450, vyw451), False, gd, ge) -> new_compare12(vyw430, vyw431, vyw450, vyw451, new_lt20(vyw430, vyw450, gd), new_asAs(new_esEs20(vyw430, vyw450, gd), new_ltEs19(vyw431, vyw451, ge)), gd, ge) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cgf), cgg), cgh), caa) -> new_esEs6(vyw300, vyw4000, cgf, cgg, cgh) 26.96/11.39 new_esEs21(vyw300, vyw4000, app(app(ty_@2, bcg), bch)) -> new_esEs5(vyw300, vyw4000, bcg, bch) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Bool) -> new_esEs17(vyw302, vyw4002) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Ordering) -> new_esEs10(vyw430, vyw450) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(ty_Maybe, cfb)) -> new_ltEs7(vyw4311, vyw4511, cfb) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(ty_[], dh)) -> new_lt14(vyw4311, vyw4511, dh) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs13(vyw30, vyw400) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs13(vyw301, vyw4001) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Double, caa) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Int) -> new_lt17(vyw4310, vyw4510) 26.96/11.39 new_sr(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) 26.96/11.39 new_primCmpNat0(Succ(vyw43000), Zero) -> GT 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Int) -> new_lt17(vyw4311, vyw4511) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Ordering, bac) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(ty_Either, ddb), ddc), bac) -> new_ltEs18(vyw4310, vyw4510, ddb, ddc) 26.96/11.39 new_pePe(False, vyw101) -> vyw101 26.96/11.39 new_lt20(vyw430, vyw450, ty_@0) -> new_lt11(vyw430, vyw450) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(ty_Ratio, cb)) -> new_esEs11(vyw4310, vyw4510, cb) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_Maybe, dcb), bac) -> new_ltEs7(vyw4310, vyw4510, dcb) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Bool) -> new_ltEs15(vyw4312, vyw4512) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(app(ty_@2, cdd), cde)) -> new_esEs5(vyw302, vyw4002, cdd, cde) 26.96/11.39 new_ltEs6(LT, LT) -> True 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(app(ty_@2, df), dg)) -> new_esEs5(vyw4311, vyw4511, df, dg) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_compare211(vyw430, vyw450, False, gf) -> new_compare111(vyw430, vyw450, new_ltEs7(vyw430, vyw450, gf), gf) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Double) -> new_lt12(vyw4310, vyw4510) 26.96/11.39 new_esEs18(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs19(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(ty_Maybe, ef)) -> new_ltEs7(vyw4312, vyw4512, ef) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Integer) -> new_compare19(vyw4300, vyw4500) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Integer) -> new_ltEs13(vyw4312, vyw4512) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Bool) -> new_ltEs15(vyw431, vyw451) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Bool) -> new_lt15(vyw4310, vyw4510) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Double) -> new_ltEs12(vyw4312, vyw4512) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(ty_Maybe, beg)) -> new_esEs4(vyw301, vyw4001, beg) 26.96/11.39 new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False 26.96/11.39 new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False 26.96/11.39 new_esEs32(vyw32, vyw34, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs6(vyw32, vyw34, dfb, dfc, dfd) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Int) -> new_ltEs17(vyw4312, vyw4512) 26.96/11.39 new_lt16(vyw430, vyw450) -> new_esEs10(new_compare5(vyw430, vyw450), LT) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(ty_[], bbb)) -> new_compare0(vyw4300, vyw4500, bbb) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Bool) -> new_ltEs15(vyw4311, vyw4511) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(app(ty_Either, bfg), bfh)) -> new_esEs7(vyw301, vyw4001, bfg, bfh) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) 26.96/11.39 new_compare5(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_compare5(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(ty_[], ccg)) -> new_esEs16(vyw302, vyw4002, ccg) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Ordering) -> new_esEs10(vyw4310, vyw4510) 26.96/11.39 new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(ty_[], baa)) -> new_ltEs14(vyw431, vyw451, baa) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Bool) -> new_compare28(vyw4300, vyw4500) 26.96/11.39 new_esEs20(vyw430, vyw450, app(ty_Ratio, gg)) -> new_esEs11(vyw430, vyw450, gg) 26.96/11.39 new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_@0, caa) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_lt18(vyw430, vyw450, hb, hc, hd) -> new_esEs10(new_compare29(vyw430, vyw450, hb, hc, hd), LT) 26.96/11.39 new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_@0) -> new_lt11(vyw4310, vyw4510) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs14(vyw30, vyw400) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Ratio, dba)) -> new_ltEs8(vyw4310, vyw4510, dba) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Double) -> new_ltEs12(vyw431, vyw451) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_Either, chd), che), caa) -> new_esEs7(vyw300, vyw4000, chd, che) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Ratio, cha), caa) -> new_esEs11(vyw300, vyw4000, cha) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Float) -> new_esEs18(vyw4311, vyw4511) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_[], dcf), bac) -> new_ltEs14(vyw4310, vyw4510, dcf) 26.96/11.39 new_esEs24(vyw300, vyw4000, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(vyw300, vyw4000, cad, cae, caf) 26.96/11.39 new_primMulNat0(Succ(vyw30100), Zero) -> Zero 26.96/11.39 new_primMulNat0(Zero, Succ(vyw400000)) -> Zero 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Integer) -> new_lt13(vyw4310, vyw4510) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.39 new_ltEs6(LT, EQ) -> True 26.96/11.39 new_esEs25(vyw301, vyw4001, app(app(ty_Either, ccd), cce)) -> new_esEs7(vyw301, vyw4001, ccd, cce) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(app(ty_@2, bah), bba)) -> new_compare16(vyw4300, vyw4500, bah, bba) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Double) -> new_ltEs12(vyw4311, vyw4511) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Integer) -> new_ltEs13(vyw431, vyw451) 26.96/11.39 new_esEs31(vyw30, vyw400, app(ty_Maybe, bga)) -> new_esEs4(vyw30, vyw400, bga) 26.96/11.39 new_primPlusNat1(Succ(vyw740), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw740, vyw400000))) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(ty_[], fb)) -> new_ltEs14(vyw4312, vyw4512, fb) 26.96/11.39 new_lt10(vyw430, vyw450) -> new_esEs10(new_compare9(vyw430, vyw450), LT) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(ty_[], ced)) -> new_lt14(vyw4310, vyw4510, ced) 26.96/11.39 new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_primPlusNat0(Succ(vyw7400), Zero) -> Succ(vyw7400) 26.96/11.39 new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Char) -> new_lt10(vyw4311, vyw4511) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(ty_Ratio, cea)) -> new_lt8(vyw4310, vyw4510, cea) 26.96/11.39 new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Float) -> new_esEs18(vyw301, vyw4001) 26.96/11.39 new_compare19(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(app(ty_@2, cc), cd)) -> new_lt9(vyw4310, vyw4510, cc, cd) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(ty_Maybe, dd)) -> new_esEs4(vyw4311, vyw4511, dd) 26.96/11.39 new_esEs20(vyw430, vyw450, app(ty_Maybe, gf)) -> new_esEs4(vyw430, vyw450, gf) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs6(vyw300, vyw4000, bdg, bdh, bea) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(vyw4311, vyw4511, ea, eb, ec) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Char) -> new_lt10(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Char) -> new_lt10(vyw430, vyw450) 26.96/11.39 new_esEs31(vyw30, vyw400, app(ty_Ratio, bhg)) -> new_esEs11(vyw30, vyw400, bhg) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Int) -> new_compare13(vyw4300, vyw4500) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Maybe, cgd), caa) -> new_esEs4(vyw300, vyw4000, cgd) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(app(ty_@2, bfe), bff)) -> new_esEs5(vyw301, vyw4001, bfe, bff) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(app(ty_@2, df), dg)) -> new_lt9(vyw4311, vyw4511, df, dg) 26.96/11.39 new_ltEs9(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), hg, hh) -> new_pePe(new_lt21(vyw4310, vyw4510, hg), new_asAs(new_esEs27(vyw4310, vyw4510, hg), new_ltEs20(vyw4311, vyw4511, hh))) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Float) -> new_compare5(vyw4300, vyw4500) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(ty_Ratio, dde)) -> new_ltEs8(vyw4310, vyw4510, dde) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_@0) -> new_esEs13(vyw4310, vyw4510) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Char, caa) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, dbe), dbf), dbg)) -> new_ltEs4(vyw4310, vyw4510, dbe, dbf, dbg) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs6(vyw301, vyw4001, bfa, bfb, bfc) 26.96/11.39 new_esEs16([], [], bbh) -> True 26.96/11.39 new_esEs21(vyw300, vyw4000, app(ty_Maybe, bca)) -> new_esEs4(vyw300, vyw4000, bca) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Ordering) -> new_esEs10(vyw301, vyw4001) 26.96/11.39 new_lt20(vyw430, vyw450, app(app(ty_@2, gh), ha)) -> new_lt9(vyw430, vyw450, gh, ha) 26.96/11.39 new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) 26.96/11.39 new_ltEs13(vyw431, vyw451) -> new_not(new_esEs10(new_compare19(vyw431, vyw451), GT)) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) 26.96/11.39 new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_esEs32(vyw32, vyw34, app(ty_Maybe, deh)) -> new_esEs4(vyw32, vyw34, deh) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Double) -> new_compare18(vyw4300, vyw4500) 26.96/11.39 new_compare6(vyw430, vyw450, gb, gc) -> new_compare24(vyw430, vyw450, new_esEs7(vyw430, vyw450, gb, gc), gb, gc) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Int) -> new_esEs19(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, app(app(ty_@2, cah), cba)) -> new_esEs5(vyw300, vyw4000, cah, cba) 26.96/11.39 new_esEs10(LT, LT) -> True 26.96/11.39 new_esEs24(vyw300, vyw4000, app(app(ty_Either, cbb), cbc)) -> new_esEs7(vyw300, vyw4000, cbb, cbc) 26.96/11.39 new_esEs14(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs19(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) 26.96/11.39 new_lt17(vyw430, vyw450) -> new_esEs10(new_compare13(vyw430, vyw450), LT) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(ty_Maybe, ca)) -> new_esEs4(vyw4310, vyw4510, ca) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, bgb)) -> new_esEs4(vyw300, vyw4000, bgb) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_@0) -> new_ltEs11(vyw4312, vyw4512) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(app(ty_@2, ceb), cec)) -> new_esEs5(vyw4310, vyw4510, ceb, cec) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Float) -> new_esEs18(vyw4310, vyw4510) 26.96/11.39 new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(app(ty_Either, cdf), cdg)) -> new_esEs7(vyw302, vyw4002, cdf, cdg) 26.96/11.39 new_lt6(vyw430, vyw450) -> new_esEs10(new_compare7(vyw430, vyw450), LT) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Integer) -> new_esEs15(vyw430, vyw450) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, dcg), dch), dda), bac) -> new_ltEs4(vyw4310, vyw4510, dcg, dch, dda) 26.96/11.39 new_ltEs15(True, True) -> True 26.96/11.39 new_esEs24(vyw300, vyw4000, app(ty_Maybe, cab)) -> new_esEs4(vyw300, vyw4000, cab) 26.96/11.39 new_ltEs6(GT, EQ) -> False 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_@0) -> new_lt11(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs6(vyw4310, vyw4510, cee, cef, ceg) 26.96/11.39 new_esEs32(vyw32, vyw34, app(app(ty_Either, dfh), dga)) -> new_esEs7(vyw32, vyw34, dfh, dga) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Ordering) -> new_lt6(vyw4310, vyw4510) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Bool) -> new_esEs17(vyw430, vyw450) 26.96/11.39 new_ltEs11(vyw431, vyw451) -> new_not(new_esEs10(new_compare17(vyw431, vyw451), GT)) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_@0) -> new_esEs13(vyw301, vyw4001) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_[], cge), caa) -> new_esEs16(vyw300, vyw4000, cge) 26.96/11.39 new_lt20(vyw430, vyw450, app(app(app(ty_@3, hb), hc), hd)) -> new_lt18(vyw430, vyw450, hb, hc, hd) 26.96/11.39 new_esEs29(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs18(vyw301, vyw4001) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Integer) -> new_esEs15(vyw4310, vyw4510) 26.96/11.39 new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Float) -> new_esEs18(vyw430, vyw450) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Double) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.39 new_compare0([], :(vyw4500, vyw4501), ga) -> LT 26.96/11.39 new_asAs(True, vyw53) -> vyw53 26.96/11.39 new_compare10(vyw430, vyw450, False, gb, gc) -> GT 26.96/11.39 new_compare113(vyw430, vyw450, True) -> LT 26.96/11.39 new_esEs17(False, True) -> False 26.96/11.39 new_esEs17(True, False) -> False 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Int, caa) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(app(ty_@2, cfd), cfe)) -> new_ltEs9(vyw4311, vyw4511, cfd, cfe) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs19(vyw32, vyw34) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Float) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Bool) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Int) -> new_esEs19(vyw302, vyw4002) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(ty_Maybe, chf)) -> new_esEs4(vyw300, vyw4000, chf) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_lt11(vyw430, vyw450) -> new_esEs10(new_compare17(vyw430, vyw450), LT) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Int) -> new_lt17(vyw430, vyw450) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Float) -> new_ltEs16(vyw4311, vyw4511) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(app(ty_@2, ceb), cec)) -> new_lt9(vyw4310, vyw4510, ceb, cec) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs18(vyw30, vyw400) 26.96/11.39 new_compare24(vyw430, vyw450, True, gb, gc) -> EQ 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_@2, dbb), dbc)) -> new_ltEs9(vyw4310, vyw4510, dbb, dbc) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(app(ty_@2, hg), hh)) -> new_ltEs9(vyw431, vyw451, hg, hh) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Ordering) -> new_ltEs6(vyw431, vyw451) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Char, bac) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(ty_[], ce)) -> new_esEs16(vyw4310, vyw4510, ce) 26.96/11.39 new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(ty_Maybe, ca)) -> new_lt7(vyw4310, vyw4510, ca) 26.96/11.39 new_primCompAux00(vyw108, EQ) -> vyw108 26.96/11.39 new_compare0([], [], ga) -> EQ 26.96/11.39 new_ltEs16(vyw431, vyw451) -> new_not(new_esEs10(new_compare5(vyw431, vyw451), GT)) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Char) -> new_lt10(vyw4310, vyw4510) 26.96/11.39 new_ltEs7(Nothing, Nothing, he) -> True 26.96/11.39 new_esEs23(vyw301, vyw4001, app(ty_Ratio, bfd)) -> new_esEs11(vyw301, vyw4001, bfd) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.39 new_esEs21(vyw300, vyw4000, app(app(ty_Either, bda), bdb)) -> new_esEs7(vyw300, vyw4000, bda, bdb) 26.96/11.39 new_primMulNat0(Zero, Zero) -> Zero 26.96/11.39 new_lt12(vyw430, vyw450) -> new_esEs10(new_compare18(vyw430, vyw450), LT) 26.96/11.39 new_compare13(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], bgc)) -> new_esEs16(vyw300, vyw4000, bgc) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_[], dbd)) -> new_ltEs14(vyw4310, vyw4510, dbd) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Double) -> new_esEs14(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, app(ty_[], cac)) -> new_esEs16(vyw300, vyw4000, cac) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_@0, bac) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(ty_[], cff)) -> new_ltEs14(vyw4311, vyw4511, cff) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Int, bac) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(app(ty_@2, bec), bed)) -> new_esEs5(vyw300, vyw4000, bec, bed) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Nothing, he) -> False 26.96/11.39 new_compare18(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(ty_[], ce)) -> new_lt14(vyw4310, vyw4510, ce) 26.96/11.39 new_ltEs6(EQ, LT) -> False 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_@2, chb), chc), caa) -> new_esEs5(vyw300, vyw4000, chb, chc) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(app(ty_Either, bee), bef)) -> new_esEs7(vyw300, vyw4000, bee, bef) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Integer) -> new_ltEs13(vyw4311, vyw4511) 26.96/11.39 new_esEs4(Nothing, Nothing, bga) -> True 26.96/11.39 new_esEs4(Nothing, Just(vyw4000), bga) -> False 26.96/11.39 new_esEs4(Just(vyw300), Nothing, bga) -> False 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(app(ty_Either, ed), ee)) -> new_esEs7(vyw4311, vyw4511, ed, ee) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Integer) -> new_lt13(vyw4310, vyw4510) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(ty_Ratio, cb)) -> new_lt8(vyw4310, vyw4510, cb) 26.96/11.39 new_compare5(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) 26.96/11.39 new_esEs32(vyw32, vyw34, app(app(ty_@2, dff), dfg)) -> new_esEs5(vyw32, vyw34, dff, dfg) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_ltEs14(vyw431, vyw451, baa) -> new_not(new_esEs10(new_compare0(vyw431, vyw451, baa), GT)) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Int) -> new_ltEs17(vyw431, vyw451) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, bhb), bhc)) -> new_esEs7(vyw300, vyw4000, bhb, bhc) 26.96/11.39 new_primCompAux0(vyw4300, vyw4500, vyw102, ga) -> new_primCompAux00(vyw102, new_compare14(vyw4300, vyw4500, ga)) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Double) -> new_esEs14(vyw430, vyw450) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(ty_Maybe, he)) -> new_ltEs7(vyw431, vyw451, he) 26.96/11.39 new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False 26.96/11.39 new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(app(ty_Either, cgb), cgc)) -> new_ltEs18(vyw4311, vyw4511, cgb, cgc) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.39 new_esEs20(vyw430, vyw450, app(ty_[], ga)) -> new_esEs16(vyw430, vyw450, ga) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_@0) -> new_lt11(vyw4311, vyw4511) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(ty_[], chg)) -> new_esEs16(vyw300, vyw4000, chg) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(app(ty_@2, dad), dae)) -> new_esEs5(vyw300, vyw4000, dad, dae) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(app(ty_Either, daf), dag)) -> new_esEs7(vyw300, vyw4000, daf, dag) 26.96/11.39 new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False 26.96/11.39 new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False 26.96/11.39 new_esEs30(vyw31, vyw32, vyw33, vyw34, True, def, deg) -> new_esEs10(new_compare26(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, deg), def, deg), LT) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(ty_Ratio, cea)) -> new_esEs11(vyw4310, vyw4510, cea) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Double) -> new_lt12(vyw4310, vyw4510) 26.96/11.39 new_esEs31(vyw30, vyw400, app(ty_[], bbh)) -> new_esEs16(vyw30, vyw400, bbh) 26.96/11.39 new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_Either, dbh), dca)) -> new_ltEs18(vyw4310, vyw4510, dbh, dca) 26.96/11.39 new_compare8(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare13(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(app(app(ty_@3, dea), deb), dec)) -> new_ltEs4(vyw4310, vyw4510, dea, deb, dec) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Float) -> new_lt16(vyw4310, vyw4510) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(app(ty_Either, bab), bac)) -> new_ltEs18(vyw431, vyw451, bab, bac) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_esEs25(vyw301, vyw4001, app(ty_[], cbe)) -> new_esEs16(vyw301, vyw4001, cbe) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Bool) -> new_lt15(vyw4310, vyw4510) 26.96/11.39 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.96/11.39 new_compare12(vyw83, vyw84, vyw85, vyw86, False, vyw88, bad, bae) -> new_compare110(vyw83, vyw84, vyw85, vyw86, vyw88, bad, bae) 26.96/11.39 new_compare111(vyw430, vyw450, False, gf) -> GT 26.96/11.39 new_ltEs19(vyw431, vyw451, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(vyw431, vyw451, bf, bg, bh) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(ty_Maybe, ddd)) -> new_ltEs7(vyw4310, vyw4510, ddd) 26.96/11.39 new_esEs17(True, True) -> True 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.39 new_esEs10(LT, GT) -> False 26.96/11.39 new_esEs10(GT, LT) -> False 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_esEs30(vyw31, vyw32, vyw33, vyw34, False, def, deg) -> new_esEs10(new_compare26(@2(vyw31, vyw32), @2(vyw33, vyw34), False, def, deg), LT) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(ty_[], dh)) -> new_esEs16(vyw4311, vyw4511, dh) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Maybe, dah)) -> new_ltEs7(vyw4310, vyw4510, dah) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(vyw302, vyw4002, cch, cda, cdb) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Double) -> new_esEs14(vyw301, vyw4001) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Int) -> new_ltEs17(vyw4311, vyw4511) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.39 new_compare8(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare19(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(ty_Ratio, hf)) -> new_ltEs8(vyw431, vyw451, hf) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Integer) -> new_esEs15(vyw4311, vyw4511) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) 26.96/11.39 new_not(False) -> True 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.39 new_compare112(vyw430, vyw450, True, hb, hc, hd) -> LT 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Double) -> new_lt12(vyw4311, vyw4511) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(app(ty_Either, ceh), cfa)) -> new_esEs7(vyw4310, vyw4510, ceh, cfa) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Char) -> new_esEs12(vyw4311, vyw4511) 26.96/11.39 new_compare25(vyw430, vyw450, False) -> new_compare11(vyw430, vyw450, new_ltEs15(vyw430, vyw450)) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs19(vyw30, vyw400) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_compare0(:(vyw4300, vyw4301), [], ga) -> GT 26.96/11.39 new_primPlusNat0(Succ(vyw7400), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw7400, vyw4000000))) 26.96/11.39 new_lt20(vyw430, vyw450, app(app(ty_Either, gb), gc)) -> new_lt19(vyw430, vyw450, gb, gc) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Bool) -> new_esEs17(vyw4311, vyw4511) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(app(app(ty_@3, ea), eb), ec)) -> new_lt18(vyw4311, vyw4511, ea, eb, ec) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs14(vyw301, vyw4001) 26.96/11.39 new_compare112(vyw430, vyw450, False, hb, hc, hd) -> GT 26.96/11.39 new_compare25(vyw430, vyw450, True) -> EQ 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(ty_Ratio, dac)) -> new_esEs11(vyw300, vyw4000, dac) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Ordering) -> new_esEs10(vyw4310, vyw4510) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(ty_Ratio, eg)) -> new_ltEs8(vyw4312, vyw4512, eg) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_ltEs15(False, True) -> True 26.96/11.39 new_compare110(vyw83, vyw84, vyw85, vyw86, False, bad, bae) -> GT 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dcc), bac) -> new_ltEs8(vyw4310, vyw4510, dcc) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(app(ty_Either, db), dc)) -> new_lt19(vyw4310, vyw4510, db, dc) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Bool) -> new_lt15(vyw4311, vyw4511) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs13(vyw32, vyw34) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Ordering) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.39 new_sr0(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Char) -> new_ltEs10(vyw431, vyw451) 26.96/11.39 new_compare5(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs4(vyw4312, vyw4512, fc, fd, ff) 26.96/11.39 new_compare24(vyw430, vyw450, False, gb, gc) -> new_compare10(vyw430, vyw450, new_ltEs18(vyw430, vyw450, gb, gc), gb, gc) 26.96/11.39 new_ltEs4(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bf, bg, bh) -> new_pePe(new_lt5(vyw4310, vyw4510, bf), new_asAs(new_esEs8(vyw4310, vyw4510, bf), new_pePe(new_lt4(vyw4311, vyw4511, bg), new_asAs(new_esEs9(vyw4311, vyw4511, bg), new_ltEs5(vyw4312, vyw4512, bh))))) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) 26.96/11.39 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.96/11.39 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), ga) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, ga), ga) 26.96/11.39 new_esEs31(vyw30, vyw400, app(app(ty_Either, bhh), caa)) -> new_esEs7(vyw30, vyw400, bhh, caa) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Char) -> new_ltEs10(vyw4312, vyw4512) 26.96/11.39 new_compare111(vyw430, vyw450, True, gf) -> LT 26.96/11.39 new_esEs13(@0, @0) -> True 26.96/11.39 new_esEs25(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs4(vyw301, vyw4001, cbd) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Double) -> new_esEs14(vyw4311, vyw4511) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Ordering) -> new_lt6(vyw4310, vyw4510) 26.96/11.39 new_ltEs8(vyw431, vyw451, hf) -> new_not(new_esEs10(new_compare8(vyw431, vyw451, hf), GT)) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_@0) -> new_esEs13(vyw4310, vyw4510) 26.96/11.39 new_esEs21(vyw300, vyw4000, app(ty_[], bcb)) -> new_esEs16(vyw300, vyw4000, bcb) 26.96/11.39 new_ltEs18(Left(vyw4310), Right(vyw4510), bab, bac) -> True 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.39 new_compare11(vyw430, vyw450, True) -> LT 26.96/11.39 new_esEs10(EQ, GT) -> False 26.96/11.39 new_esEs10(GT, EQ) -> False 26.96/11.39 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.96/11.39 new_esEs17(False, False) -> True 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Int) -> new_esEs19(vyw4311, vyw4511) 26.96/11.39 new_compare17(@0, @0) -> EQ 26.96/11.39 new_ltEs12(vyw431, vyw451) -> new_not(new_esEs10(new_compare18(vyw431, vyw451), GT)) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Float) -> new_ltEs16(vyw4312, vyw4512) 26.96/11.39 new_ltEs18(Right(vyw4310), Left(vyw4510), bab, bac) -> False 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) 26.96/11.39 new_compare110(vyw83, vyw84, vyw85, vyw86, True, bad, bae) -> LT 26.96/11.39 new_esEs24(vyw300, vyw4000, app(ty_Ratio, cag)) -> new_esEs11(vyw300, vyw4000, cag) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Bool, bac) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(ty_Maybe, cdh)) -> new_esEs4(vyw4310, vyw4510, cdh) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Ordering) -> new_ltEs6(vyw4311, vyw4511) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(ty_[], ddh)) -> new_ltEs14(vyw4310, vyw4510, ddh) 26.96/11.39 new_esEs16(:(vyw300, vyw301), [], bbh) -> False 26.96/11.39 new_esEs16([], :(vyw4000, vyw4001), bbh) -> False 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Float) -> new_ltEs16(vyw431, vyw451) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Char) -> new_ltEs10(vyw4311, vyw4511) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(ty_[], beh)) -> new_esEs16(vyw301, vyw4001, beh) 26.96/11.39 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.96/11.39 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Double, bac) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs12(vyw32, vyw34) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Int) -> new_esEs19(vyw4310, vyw4510) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(app(app(ty_@3, cee), cef), ceg)) -> new_lt18(vyw4310, vyw4510, cee, cef, ceg) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(ty_Maybe, ccf)) -> new_esEs4(vyw302, vyw4002, ccf) 26.96/11.39 new_primEqNat0(Zero, Zero) -> True 26.96/11.39 new_lt19(vyw430, vyw450, gb, gc) -> new_esEs10(new_compare6(vyw430, vyw450, gb, gc), LT) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_compare15(vyw430, vyw450, gf) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, gf), gf) 26.96/11.39 new_ltEs15(True, False) -> False 26.96/11.39 new_esEs25(vyw301, vyw4001, app(ty_Ratio, cca)) -> new_esEs11(vyw301, vyw4001, cca) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(ty_Maybe, cdh)) -> new_lt7(vyw4310, vyw4510, cdh) 26.96/11.39 new_esEs16(:(vyw300, vyw301), :(vyw4000, vyw4001), bbh) -> new_asAs(new_esEs21(vyw300, vyw4000, bbh), new_esEs16(vyw301, vyw4001, bbh)) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_@0) -> new_esEs13(vyw4311, vyw4511) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Ordering) -> new_lt6(vyw4311, vyw4511) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(app(app(ty_@3, cf), cg), da)) -> new_lt18(vyw4310, vyw4510, cf, cg, da) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(ty_[], bdf)) -> new_esEs16(vyw300, vyw4000, bdf) 26.96/11.39 new_asAs(False, vyw53) -> False 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Char) -> new_esEs12(vyw430, vyw450) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Ordering) -> new_lt6(vyw430, vyw450) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs4(vyw4311, vyw4511, cfg, cfh, cga) 26.96/11.39 new_compare27(vyw430, vyw450, True) -> EQ 26.96/11.39 new_ltEs15(False, False) -> True 26.96/11.39 new_esEs7(Left(vyw300), Right(vyw4000), bhh, caa) -> False 26.96/11.39 new_esEs7(Right(vyw300), Left(vyw4000), bhh, caa) -> False 26.96/11.39 new_ltEs6(GT, LT) -> False 26.96/11.39 new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bhd, bhe, bhf) -> new_asAs(new_esEs24(vyw300, vyw4000, bhd), new_asAs(new_esEs25(vyw301, vyw4001, bhe), new_esEs26(vyw302, vyw4002, bhf))) 26.96/11.39 new_compare27(vyw430, vyw450, False) -> new_compare113(vyw430, vyw450, new_ltEs6(vyw430, vyw450)) 26.96/11.39 26.96/11.39 The set Q consists of the following terms: 26.96/11.39 26.96/11.39 new_primCompAux00(x0, EQ) 26.96/11.39 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.96/11.39 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.96/11.39 new_compare113(x0, x1, False) 26.96/11.39 new_ltEs19(x0, x1, ty_Bool) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.96/11.39 new_lt5(x0, x1, ty_Char) 26.96/11.39 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_compare14(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_lt20(x0, x1, ty_Bool) 26.96/11.39 new_lt21(x0, x1, ty_@0) 26.96/11.39 new_esEs9(x0, x1, ty_Bool) 26.96/11.39 new_esEs24(x0, x1, ty_Bool) 26.96/11.39 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs23(x0, x1, app(ty_[], x2)) 26.96/11.39 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.96/11.39 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 26.96/11.39 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_compare112(x0, x1, False, x2, x3, x4) 26.96/11.39 new_esEs32(x0, x1, ty_Char) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_@0) 26.96/11.39 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.96/11.39 new_lt4(x0, x1, ty_@0) 26.96/11.39 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_lt4(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs22(x0, x1, ty_Integer) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.96/11.39 new_esEs23(x0, x1, ty_Integer) 26.96/11.39 new_esEs22(x0, x1, ty_Bool) 26.96/11.39 new_esEs22(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs25(x0, x1, ty_Integer) 26.96/11.39 new_ltEs20(x0, x1, app(ty_[], x2)) 26.96/11.39 new_lt20(x0, x1, app(ty_[], x2)) 26.96/11.39 new_ltEs6(LT, LT) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.96/11.39 new_esEs10(EQ, EQ) 26.96/11.39 new_esEs24(x0, x1, ty_Integer) 26.96/11.39 new_lt20(x0, x1, ty_Integer) 26.96/11.39 new_primEqInt(Pos(Zero), Pos(Zero)) 26.96/11.39 new_compare0([], :(x0, x1), x2) 26.96/11.39 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs26(x0, x1, ty_Float) 26.96/11.39 new_ltEs16(x0, x1) 26.96/11.39 new_esEs24(x0, x1, ty_@0) 26.96/11.39 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_ltEs5(x0, x1, ty_Integer) 26.96/11.39 new_esEs8(x0, x1, ty_Bool) 26.96/11.39 new_esEs17(False, False) 26.96/11.39 new_ltEs20(x0, x1, ty_Float) 26.96/11.39 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs29(x0, x1, ty_Integer) 26.96/11.39 new_ltEs5(x0, x1, ty_Float) 26.96/11.39 new_lt8(x0, x1, x2) 26.96/11.39 new_lt4(x0, x1, ty_Char) 26.96/11.39 new_compare17(@0, @0) 26.96/11.39 new_sr0(x0, x1) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_Bool) 26.96/11.39 new_primEqInt(Neg(Zero), Neg(Zero)) 26.96/11.39 new_pePe(True, x0) 26.96/11.39 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_lt20(x0, x1, ty_@0) 26.96/11.39 new_esEs28(x0, x1, ty_Integer) 26.96/11.39 new_esEs20(x0, x1, ty_Double) 26.96/11.39 new_compare211(x0, x1, True, x2) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 26.96/11.39 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 26.96/11.39 new_ltEs15(False, True) 26.96/11.39 new_ltEs15(True, False) 26.96/11.39 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs31(x0, x1, ty_Double) 26.96/11.39 new_lt21(x0, x1, ty_Integer) 26.96/11.39 new_ltEs15(True, True) 26.96/11.39 new_esEs31(x0, x1, ty_Ordering) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.96/11.39 new_esEs32(x0, x1, ty_@0) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.96/11.39 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.96/11.39 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_Char) 26.96/11.39 new_esEs32(x0, x1, ty_Double) 26.96/11.39 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.96/11.39 new_lt11(x0, x1) 26.96/11.39 new_lt21(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs16(:(x0, x1), [], x2) 26.96/11.39 new_compare0(:(x0, x1), :(x2, x3), x4) 26.96/11.39 new_esEs25(x0, x1, ty_Bool) 26.96/11.39 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs28(x0, x1, ty_Int) 26.96/11.39 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.96/11.39 new_ltEs19(x0, x1, ty_Char) 26.96/11.39 new_lt21(x0, x1, ty_Int) 26.96/11.39 new_esEs8(x0, x1, ty_Integer) 26.96/11.39 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.96/11.39 new_lt21(x0, x1, ty_Char) 26.96/11.39 new_compare12(x0, x1, x2, x3, False, x4, x5, x6) 26.96/11.39 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_Int) 26.96/11.39 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.96/11.39 new_esEs9(x0, x1, ty_Char) 26.96/11.39 new_lt4(x0, x1, ty_Integer) 26.96/11.39 new_lt13(x0, x1) 26.96/11.39 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs22(x0, x1, ty_Char) 26.96/11.39 new_esEs21(x0, x1, app(ty_[], x2)) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 26.96/11.39 new_esEs32(x0, x1, ty_Int) 26.96/11.39 new_lt4(x0, x1, ty_Bool) 26.96/11.39 new_ltEs19(x0, x1, ty_Int) 26.96/11.39 new_primEqInt(Pos(Zero), Neg(Zero)) 26.96/11.39 new_primEqInt(Neg(Zero), Pos(Zero)) 26.96/11.39 new_esEs22(x0, x1, ty_@0) 26.96/11.39 new_esEs24(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs26(x0, x1, app(ty_[], x2)) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.96/11.39 new_esEs9(x0, x1, ty_Int) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.96/11.39 new_primMulNat0(Succ(x0), Zero) 26.96/11.39 new_ltEs5(x0, x1, ty_Bool) 26.96/11.39 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.96/11.39 new_lt5(x0, x1, ty_Ordering) 26.96/11.39 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.96/11.39 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.96/11.39 new_compare0(:(x0, x1), [], x2) 26.96/11.39 new_esEs4(Nothing, Just(x0), x1) 26.96/11.39 new_esEs9(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs8(x0, x1, ty_Ordering) 26.96/11.39 new_esEs9(x0, x1, ty_@0) 26.96/11.39 new_lt21(x0, x1, ty_Bool) 26.96/11.39 new_ltEs19(x0, x1, ty_@0) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 26.96/11.39 new_lt4(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs9(x0, x1, ty_Double) 26.96/11.39 new_primEqNat0(Succ(x0), Zero) 26.96/11.39 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs24(x0, x1, ty_Ordering) 26.96/11.39 new_esEs25(x0, x1, ty_Char) 26.96/11.39 new_compare6(x0, x1, x2, x3) 26.96/11.39 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs22(x0, x1, ty_Int) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_Ordering) 26.96/11.39 new_esEs9(x0, x1, ty_Float) 26.96/11.39 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs32(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs7(Left(x0), Right(x1), x2, x3) 26.96/11.39 new_esEs7(Right(x0), Left(x1), x2, x3) 26.96/11.39 new_lt20(x0, x1, ty_Float) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.96/11.39 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_lt4(x0, x1, ty_Float) 26.96/11.39 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.96/11.39 new_esEs24(x0, x1, ty_Float) 26.96/11.39 new_compare113(x0, x1, True) 26.96/11.39 new_esEs27(x0, x1, ty_Int) 26.96/11.39 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.96/11.39 new_compare14(x0, x1, ty_Float) 26.96/11.39 new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.96/11.39 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs31(x0, x1, ty_Int) 26.96/11.39 new_lt14(x0, x1, x2) 26.96/11.39 new_primMulInt(Pos(x0), Pos(x1)) 26.96/11.39 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_lt17(x0, x1) 26.96/11.39 new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 26.96/11.39 new_esEs20(x0, x1, ty_Int) 26.96/11.39 new_esEs22(x0, x1, ty_Float) 26.96/11.39 new_compare28(x0, x1) 26.96/11.39 new_esEs24(x0, x1, ty_Char) 26.96/11.39 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_compare14(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs25(x0, x1, ty_Int) 26.96/11.39 new_esEs27(x0, x1, ty_Char) 26.96/11.39 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs20(x0, x1, ty_Char) 26.96/11.39 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_Integer) 26.96/11.39 new_esEs31(x0, x1, ty_Char) 26.96/11.39 new_lt21(x0, x1, ty_Float) 26.96/11.39 new_lt20(x0, x1, ty_Int) 26.96/11.39 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.96/11.39 new_lt9(x0, x1, x2, x3) 26.96/11.39 new_ltEs5(x0, x1, ty_@0) 26.96/11.39 new_compare19(Integer(x0), Integer(x1)) 26.96/11.39 new_ltEs20(x0, x1, ty_@0) 26.96/11.39 new_compare14(x0, x1, app(ty_[], x2)) 26.96/11.39 new_compare14(x0, x1, ty_Int) 26.96/11.39 new_lt20(x0, x1, ty_Ordering) 26.96/11.39 new_esEs24(x0, x1, ty_Int) 26.96/11.39 new_esEs26(x0, x1, ty_@0) 26.96/11.39 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.96/11.39 new_esEs11(:%(x0, x1), :%(x2, x3), x4) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.96/11.39 new_esEs23(x0, x1, ty_Double) 26.96/11.39 new_lt5(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_primPlusNat0(Succ(x0), Succ(x1)) 26.96/11.39 new_lt4(x0, x1, ty_Int) 26.96/11.39 new_lt5(x0, x1, ty_@0) 26.96/11.39 new_esEs32(x0, x1, ty_Bool) 26.96/11.39 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs31(x0, x1, ty_Float) 26.96/11.39 new_ltEs7(Nothing, Nothing, x0) 26.96/11.39 new_lt12(x0, x1) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 26.96/11.39 new_esEs23(x0, x1, ty_@0) 26.96/11.39 new_lt5(x0, x1, ty_Double) 26.96/11.39 new_primEqNat0(Succ(x0), Succ(x1)) 26.96/11.39 new_ltEs6(LT, GT) 26.96/11.39 new_ltEs6(GT, LT) 26.96/11.39 new_esEs32(x0, x1, ty_Ordering) 26.96/11.39 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.96/11.39 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.96/11.39 new_esEs20(x0, x1, ty_Bool) 26.96/11.39 new_compare12(x0, x1, x2, x3, True, x4, x5, x6) 26.96/11.39 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_ltEs12(x0, x1) 26.96/11.39 new_ltEs6(EQ, GT) 26.96/11.39 new_ltEs6(GT, EQ) 26.96/11.39 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_lt20(x0, x1, ty_Char) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs10(LT, GT) 26.96/11.39 new_esEs10(GT, LT) 26.96/11.39 new_esEs25(x0, x1, ty_Float) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 26.96/11.39 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs26(x0, x1, ty_Double) 26.96/11.39 new_lt5(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_primCompAux00(x0, GT) 26.96/11.39 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs21(x0, x1, ty_Double) 26.96/11.39 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_ltEs15(False, False) 26.96/11.39 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs20(x0, x1, ty_Ordering) 26.96/11.39 new_lt6(x0, x1) 26.96/11.39 new_esEs20(x0, x1, ty_Integer) 26.96/11.39 new_compare10(x0, x1, False, x2, x3) 26.96/11.39 new_esEs8(x0, x1, ty_Char) 26.96/11.39 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 26.96/11.39 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.96/11.39 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.96/11.39 new_pePe(False, x0) 26.96/11.39 new_esEs8(x0, x1, ty_Float) 26.96/11.39 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_ltEs19(x0, x1, ty_Integer) 26.96/11.39 new_primCmpNat0(Zero, Succ(x0)) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.96/11.39 new_compare110(x0, x1, x2, x3, False, x4, x5) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 26.96/11.39 new_esEs25(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_Integer) 26.96/11.39 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) 26.96/11.39 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs20(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs10(EQ, GT) 26.96/11.39 new_esEs10(GT, EQ) 26.96/11.39 new_esEs30(x0, x1, x2, x3, True, x4, x5) 26.96/11.39 new_esEs8(x0, x1, ty_Int) 26.96/11.39 new_esEs27(x0, x1, ty_Float) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 26.96/11.39 new_ltEs19(x0, x1, app(ty_[], x2)) 26.96/11.39 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_ltEs19(x0, x1, ty_Ordering) 26.96/11.39 new_asAs(False, x0) 26.96/11.39 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 26.96/11.39 new_esEs32(x0, x1, ty_Integer) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_Char) 26.96/11.39 new_compare15(x0, x1, x2) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 26.96/11.39 new_esEs27(x0, x1, ty_Bool) 26.96/11.39 new_compare16(x0, x1, x2, x3) 26.96/11.39 new_compare14(x0, x1, ty_Bool) 26.96/11.39 new_compare14(x0, x1, ty_@0) 26.96/11.39 new_esEs21(x0, x1, ty_Integer) 26.96/11.39 new_compare24(x0, x1, False, x2, x3) 26.96/11.39 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.96/11.39 new_ltEs8(x0, x1, x2) 26.96/11.39 new_primMulNat0(Zero, Zero) 26.96/11.39 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_ltEs5(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs27(x0, x1, ty_@0) 26.96/11.39 new_ltEs17(x0, x1) 26.96/11.39 new_ltEs14(x0, x1, x2) 26.96/11.39 new_compare25(x0, x1, False) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.96/11.39 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_ltEs20(x0, x1, ty_Double) 26.96/11.39 new_ltEs20(x0, x1, ty_Ordering) 26.96/11.39 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs17(True, True) 26.96/11.39 new_ltEs6(EQ, EQ) 26.96/11.39 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_Int) 26.96/11.39 new_compare27(x0, x1, False) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 26.96/11.39 new_compare111(x0, x1, True, x2) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 26.96/11.39 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_compare11(x0, x1, True) 26.96/11.39 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 26.96/11.39 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_compare210(x0, x1, True, x2, x3, x4) 26.96/11.39 new_esEs21(x0, x1, ty_@0) 26.96/11.39 new_ltEs5(x0, x1, ty_Ordering) 26.96/11.39 new_ltEs13(x0, x1) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.96/11.39 new_primPlusNat0(Zero, Zero) 26.96/11.39 new_esEs26(x0, x1, ty_Ordering) 26.96/11.39 new_esEs10(LT, LT) 26.96/11.39 new_esEs32(x0, x1, ty_Float) 26.96/11.39 new_esEs31(x0, x1, ty_Bool) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.96/11.39 new_not(True) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_Double) 26.96/11.39 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_@0) 26.96/11.39 new_esEs31(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_lt10(x0, x1) 26.96/11.39 new_ltEs11(x0, x1) 26.96/11.39 new_esEs20(x0, x1, ty_Float) 26.96/11.39 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_compare211(x0, x1, False, x2) 26.96/11.39 new_esEs23(x0, x1, ty_Ordering) 26.96/11.39 new_compare14(x0, x1, ty_Char) 26.96/11.39 new_primCompAux0(x0, x1, x2, x3) 26.96/11.39 new_compare210(x0, x1, False, x2, x3, x4) 26.96/11.39 new_primPlusNat1(Succ(x0), x1) 26.96/11.39 new_esEs8(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs16([], :(x0, x1), x2) 26.96/11.39 new_compare7(x0, x1) 26.96/11.39 new_lt5(x0, x1, app(ty_[], x2)) 26.96/11.39 new_esEs25(x0, x1, ty_Double) 26.96/11.39 new_esEs16([], [], x0) 26.96/11.39 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs20(x0, x1, ty_@0) 26.96/11.39 new_ltEs5(x0, x1, ty_Double) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 26.96/11.39 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_compare14(x0, x1, ty_Integer) 26.96/11.39 new_compare27(x0, x1, True) 26.96/11.39 new_esEs27(x0, x1, ty_Integer) 26.96/11.39 new_primCmpNat0(Succ(x0), Succ(x1)) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.96/11.39 new_lt16(x0, x1) 26.96/11.39 new_esEs22(x0, x1, ty_Double) 26.96/11.39 new_esEs17(False, True) 26.96/11.39 new_esEs17(True, False) 26.96/11.39 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs31(x0, x1, ty_Integer) 26.96/11.39 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_ltEs18(Left(x0), Right(x1), x2, x3) 26.96/11.39 new_ltEs18(Right(x0), Left(x1), x2, x3) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 26.96/11.39 new_primMulNat0(Succ(x0), Succ(x1)) 26.96/11.39 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs18(Float(x0, x1), Float(x2, x3)) 26.96/11.39 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_compare112(x0, x1, True, x2, x3, x4) 26.96/11.39 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_compare11(x0, x1, False) 26.96/11.39 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_primCmpNat0(Succ(x0), Zero) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.96/11.39 new_primMulInt(Pos(x0), Neg(x1)) 26.96/11.39 new_primMulInt(Neg(x0), Pos(x1)) 26.96/11.39 new_compare111(x0, x1, False, x2) 26.96/11.39 new_compare0([], [], x0) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_Bool) 26.96/11.39 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_Float) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.96/11.39 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.96/11.39 new_esEs4(Just(x0), Just(x1), ty_Double) 26.96/11.39 new_lt4(x0, x1, app(ty_[], x2)) 26.96/11.39 new_compare14(x0, x1, ty_Double) 26.96/11.39 new_ltEs6(LT, EQ) 26.96/11.39 new_ltEs6(EQ, LT) 26.96/11.39 new_esEs10(GT, GT) 26.96/11.39 new_esEs21(x0, x1, ty_Int) 26.96/11.39 new_esEs27(x0, x1, ty_Ordering) 26.96/11.39 new_esEs23(x0, x1, ty_Char) 26.96/11.39 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs24(x0, x1, app(ty_[], x2)) 26.96/11.39 new_ltEs6(GT, GT) 26.96/11.39 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs25(x0, x1, app(ty_[], x2)) 26.96/11.39 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_esEs19(x0, x1) 26.96/11.39 new_compare14(x0, x1, ty_Ordering) 26.96/11.39 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 26.96/11.39 new_ltEs19(x0, x1, ty_Float) 26.96/11.39 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.96/11.39 new_compare9(Char(x0), Char(x1)) 26.96/11.39 new_esEs10(LT, EQ) 26.96/11.39 new_esEs10(EQ, LT) 26.96/11.39 new_esEs24(x0, x1, ty_Double) 26.96/11.39 new_esEs24(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_lt20(x0, x1, ty_Double) 26.96/11.39 new_compare13(x0, x1) 26.96/11.39 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.96/11.39 new_lt21(x0, x1, ty_Double) 26.96/11.39 new_esEs22(x0, x1, ty_Ordering) 26.96/11.39 new_compare26(x0, x1, True, x2, x3) 26.96/11.39 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs29(x0, x1, ty_Int) 26.96/11.39 new_ltEs7(Just(x0), Nothing, x1) 26.96/11.39 new_ltEs19(x0, x1, ty_Double) 26.96/11.39 new_compare24(x0, x1, True, x2, x3) 26.96/11.39 new_ltEs5(x0, x1, ty_Char) 26.96/11.39 new_lt5(x0, x1, ty_Integer) 26.96/11.39 new_primPlusNat0(Zero, Succ(x0)) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.96/11.39 new_esEs21(x0, x1, ty_Char) 26.96/11.39 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.96/11.39 new_compare29(x0, x1, x2, x3, x4) 26.96/11.39 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs26(x0, x1, ty_Char) 26.96/11.39 new_lt18(x0, x1, x2, x3, x4) 26.96/11.39 new_esEs21(x0, x1, ty_Float) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.96/11.39 new_compare110(x0, x1, x2, x3, True, x4, x5) 26.96/11.39 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_lt21(x0, x1, ty_Ordering) 26.96/11.39 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.96/11.39 new_esEs12(Char(x0), Char(x1)) 26.96/11.39 new_lt7(x0, x1, x2) 26.96/11.39 new_compare10(x0, x1, True, x2, x3) 26.96/11.39 new_primPlusNat0(Succ(x0), Zero) 26.96/11.39 new_lt4(x0, x1, ty_Double) 26.96/11.39 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.96/11.39 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.96/11.39 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.96/11.39 new_lt4(x0, x1, ty_Ordering) 26.96/11.39 new_lt19(x0, x1, x2, x3) 26.96/11.39 new_ltEs5(x0, x1, ty_Int) 26.96/11.39 new_esEs27(x0, x1, ty_Double) 26.96/11.39 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.96/11.39 new_esEs15(Integer(x0), Integer(x1)) 26.96/11.39 new_esEs26(x0, x1, ty_Int) 26.96/11.39 new_asAs(True, x0) 26.96/11.39 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.96/11.39 new_esEs25(x0, x1, ty_Ordering) 26.96/11.39 new_primEqNat0(Zero, Succ(x0)) 26.96/11.39 new_esEs30(x0, x1, x2, x3, False, x4, x5) 26.96/11.39 new_esEs21(x0, x1, ty_Ordering) 26.96/11.39 new_ltEs20(x0, x1, ty_Integer) 26.96/11.39 new_primEqNat0(Zero, Zero) 26.96/11.39 new_ltEs10(x0, x1) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.96/11.39 new_esEs25(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs25(x0, x1, ty_@0) 26.96/11.39 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.96/11.39 new_esEs23(x0, x1, ty_Float) 26.96/11.39 new_not(False) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), ty_Float) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.96/11.39 new_ltEs20(x0, x1, ty_Int) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 26.96/11.39 new_primMulNat0(Zero, Succ(x0)) 26.96/11.39 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.96/11.39 new_lt5(x0, x1, ty_Bool) 26.96/11.39 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.96/11.39 new_esEs26(x0, x1, ty_Integer) 26.96/11.39 new_esEs4(Nothing, Nothing, x0) 26.96/11.39 new_ltEs20(x0, x1, ty_Char) 26.96/11.39 new_primMulInt(Neg(x0), Neg(x1)) 26.96/11.39 new_lt5(x0, x1, ty_Float) 26.96/11.39 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs31(x0, x1, ty_@0) 26.96/11.39 new_esEs4(Just(x0), Nothing, x1) 26.96/11.39 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.96/11.39 new_esEs8(x0, x1, ty_Double) 26.96/11.39 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.39 new_esEs27(x0, x1, app(ty_[], x2)) 26.96/11.39 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs23(x0, x1, ty_Bool) 26.96/11.39 new_esEs8(x0, x1, ty_@0) 26.96/11.39 new_primCompAux00(x0, LT) 26.96/11.39 new_esEs23(x0, x1, ty_Int) 26.96/11.39 new_sr(Integer(x0), Integer(x1)) 26.96/11.39 new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.96/11.39 new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.96/11.39 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.96/11.39 new_primPlusNat1(Zero, x0) 26.96/11.39 new_ltEs20(x0, x1, ty_Bool) 26.96/11.39 new_lt15(x0, x1) 26.96/11.39 new_esEs21(x0, x1, ty_Bool) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.96/11.39 new_esEs26(x0, x1, ty_Bool) 26.96/11.39 new_compare25(x0, x1, True) 26.96/11.39 new_esEs9(x0, x1, ty_Integer) 26.96/11.39 new_lt5(x0, x1, ty_Int) 26.96/11.39 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.39 new_esEs9(x0, x1, ty_Ordering) 26.96/11.39 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 26.96/11.39 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.96/11.39 new_ltEs7(Nothing, Just(x0), x1) 26.96/11.39 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.39 new_esEs14(Double(x0, x1), Double(x2, x3)) 26.96/11.39 new_esEs13(@0, @0) 26.96/11.39 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.96/11.39 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.96/11.39 new_primCmpNat0(Zero, Zero) 26.96/11.39 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.96/11.39 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.96/11.39 26.96/11.39 We have to consider all minimal (P,Q,R)-chains. 26.96/11.39 ---------------------------------------- 26.96/11.39 26.96/11.39 (21) TransformationProof (EQUIVALENT) 26.96/11.39 By rewriting [LPAR04] the rule new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs10(new_compare26(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs5(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) at position [8,0,2] we obtained the following new rules [LPAR04]: 26.96/11.39 26.96/11.39 (new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs10(new_compare26(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs22(vyw21, vyw15, ba), new_esEs23(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb),new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs10(new_compare26(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs22(vyw21, vyw15, ba), new_esEs23(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb)) 26.96/11.39 26.96/11.39 26.96/11.39 ---------------------------------------- 26.96/11.39 26.96/11.39 (22) 26.96/11.39 Obligation: 26.96/11.39 Q DP problem: 26.96/11.39 The TRS P consists of the following rules: 26.96/11.39 26.96/11.39 new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw19, @2(vyw21, vyw22), h, ba, bb) 26.96/11.39 new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw20, @2(vyw21, vyw22), h, ba, bb) 26.96/11.39 new_elemFM01(Branch(@2(vyw400, vyw401), vyw41, vyw42, vyw43, vyw44), @2(vyw30, vyw31), bc, bd, be) -> new_elemFM0(vyw400, vyw401, vyw41, vyw42, vyw43, vyw44, vyw30, vyw31, new_esEs30(vyw30, vyw31, vyw400, vyw401, new_esEs31(vyw30, vyw400, bd), bd, be), bc, bd, be) 26.96/11.39 new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs10(new_compare26(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs22(vyw21, vyw15, ba), new_esEs23(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) 26.96/11.39 26.96/11.39 The TRS R consists of the following rules: 26.96/11.39 26.96/11.39 new_ltEs6(EQ, EQ) -> True 26.96/11.39 new_lt20(vyw430, vyw450, ty_Double) -> new_lt12(vyw430, vyw450) 26.96/11.39 new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT 26.96/11.39 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.96/11.39 new_primPlusNat0(Zero, Zero) -> Zero 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(app(ty_@2, cc), cd)) -> new_esEs5(vyw4310, vyw4510, cc, cd) 26.96/11.39 new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(vyw301, vyw4001, cbf, cbg, cbh) 26.96/11.39 new_pePe(True, vyw101) -> True 26.96/11.39 new_compare29(vyw430, vyw450, hb, hc, hd) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, hb, hc, hd), hb, hc, hd) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(app(ty_@2, eh), fa)) -> new_ltEs9(vyw4312, vyw4512, eh, fa) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Float) -> new_esEs18(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_ltEs6(GT, GT) -> True 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Float, bac) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Int) -> new_lt17(vyw4310, vyw4510) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Bool) -> new_lt15(vyw430, vyw450) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Ordering) -> new_esEs10(vyw4311, vyw4511) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(ty_[], ced)) -> new_esEs16(vyw4310, vyw4510, ced) 26.96/11.39 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.96/11.39 new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT 26.96/11.39 new_compare26(vyw43, vyw45, True, gd, ge) -> EQ 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_compare16(vyw430, vyw450, gh, ha) -> new_compare26(vyw430, vyw450, new_esEs5(vyw430, vyw450, gh, ha), gh, ha) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Char) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.39 new_compare210(vyw430, vyw450, True, hb, hc, hd) -> EQ 26.96/11.39 new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) 26.96/11.39 new_compare211(vyw430, vyw450, True, gf) -> EQ 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_@0) -> new_ltEs11(vyw431, vyw451) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.39 new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(app(ty_Either, bbf), bbg)) -> new_compare6(vyw4300, vyw4500, bbf, bbg) 26.96/11.39 new_ltEs6(EQ, GT) -> True 26.96/11.39 new_lt21(vyw4310, vyw4510, app(app(ty_Either, ceh), cfa)) -> new_lt19(vyw4310, vyw4510, ceh, cfa) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Integer, bac) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.39 new_esEs25(vyw301, vyw4001, app(app(ty_@2, ccb), ccc)) -> new_esEs5(vyw301, vyw4001, ccb, ccc) 26.96/11.39 new_compare113(vyw430, vyw450, False) -> GT 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs6(vyw300, vyw4000, bgd, bge, bgf) 26.96/11.39 new_lt15(vyw430, vyw450) -> new_esEs10(new_compare28(vyw430, vyw450), LT) 26.96/11.39 new_esEs32(vyw32, vyw34, app(ty_Ratio, dfe)) -> new_esEs11(vyw32, vyw34, dfe) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(vyw4310, vyw4510, cf, cg, da) 26.96/11.39 new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False 26.96/11.39 new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(vyw300, vyw4000, chh, daa, dab) 26.96/11.39 new_esEs20(vyw430, vyw450, app(app(ty_@2, gh), ha)) -> new_esEs5(vyw430, vyw450, gh, ha) 26.96/11.39 new_ltEs17(vyw431, vyw451) -> new_not(new_esEs10(new_compare13(vyw431, vyw451), GT)) 26.96/11.39 new_lt20(vyw430, vyw450, app(ty_Maybe, gf)) -> new_lt7(vyw430, vyw450, gf) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Int) -> new_esEs19(vyw430, vyw450) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(ty_Maybe, bde)) -> new_esEs4(vyw300, vyw4000, bde) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_@0) -> new_compare17(vyw4300, vyw4500) 26.96/11.39 new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(ty_Ratio, cdc)) -> new_esEs11(vyw302, vyw4002, cdc) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(ty_Maybe, baf)) -> new_compare15(vyw4300, vyw4500, baf) 26.96/11.39 new_esEs31(vyw30, vyw400, app(app(ty_@2, bdc), bdd)) -> new_esEs5(vyw30, vyw400, bdc, bdd) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Integer) -> new_esEs15(vyw4310, vyw4510) 26.96/11.39 new_esEs10(GT, GT) -> True 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(app(ty_@2, ddf), ddg)) -> new_ltEs9(vyw4310, vyw4510, ddf, ddg) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_not(True) -> False 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Ordering) -> new_compare7(vyw4300, vyw4500) 26.96/11.39 new_lt7(vyw430, vyw450, gf) -> new_esEs10(new_compare15(vyw430, vyw450, gf), LT) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Float) -> new_lt16(vyw430, vyw450) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Char) -> new_compare9(vyw4300, vyw4500) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Double) -> new_esEs14(vyw4310, vyw4510) 26.96/11.39 new_primCompAux00(vyw108, LT) -> LT 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Ordering, caa) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_primCmpNat0(Zero, Zero) -> EQ 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, bgg)) -> new_esEs11(vyw300, vyw4000, bgg) 26.96/11.39 new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bcc), bcd), bce)) -> new_esEs6(vyw300, vyw4000, bcc, bcd, bce) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(ty_Ratio, de)) -> new_lt8(vyw4311, vyw4511, de) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs10(vyw32, vyw34) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs10(vyw301, vyw4001) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(ty_@2, dcd), dce), bac) -> new_ltEs9(vyw4310, vyw4510, dcd, dce) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) 26.96/11.39 new_compare11(vyw430, vyw450, False) -> GT 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Ordering) -> new_ltEs6(vyw4312, vyw4512) 26.96/11.39 new_lt8(vyw430, vyw450, gg) -> new_esEs10(new_compare8(vyw430, vyw450, gg), LT) 26.96/11.39 new_esEs20(vyw430, vyw450, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs6(vyw430, vyw450, hb, hc, hd) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, bgh), bha)) -> new_esEs5(vyw300, vyw4000, bgh, bha) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) 26.96/11.39 new_esEs20(vyw430, vyw450, app(app(ty_Either, gb), gc)) -> new_esEs7(vyw430, vyw450, gb, gc) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Float) -> new_lt16(vyw4311, vyw4511) 26.96/11.39 new_ltEs6(LT, GT) -> True 26.96/11.39 new_lt9(vyw430, vyw450, gh, ha) -> new_esEs10(new_compare16(vyw430, vyw450, gh, ha), LT) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs15(vyw32, vyw34) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_@0) -> new_esEs13(vyw302, vyw4002) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Integer, caa) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(ty_Ratio, bag)) -> new_compare8(vyw4300, vyw4500, bag) 26.96/11.39 new_compare9(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) 26.96/11.39 new_primEqNat0(Succ(vyw3000), Zero) -> False 26.96/11.39 new_primEqNat0(Zero, Succ(vyw40000)) -> False 26.96/11.39 new_esEs32(vyw32, vyw34, app(ty_[], dfa)) -> new_esEs16(vyw32, vyw34, dfa) 26.96/11.39 new_compare210(vyw430, vyw450, False, hb, hc, hd) -> new_compare112(vyw430, vyw450, new_ltEs4(vyw430, vyw450, hb, hc, hd), hb, hc, hd) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs10(vyw30, vyw400) 26.96/11.39 new_lt20(vyw430, vyw450, app(ty_Ratio, gg)) -> new_lt8(vyw430, vyw450, gg) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Ordering) -> new_esEs10(vyw302, vyw4002) 26.96/11.39 new_ltEs7(Nothing, Just(vyw4510), he) -> True 26.96/11.39 new_esEs21(vyw300, vyw4000, app(ty_Ratio, bcf)) -> new_esEs11(vyw300, vyw4000, bcf) 26.96/11.39 new_compare10(vyw430, vyw450, True, gb, gc) -> LT 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(app(ty_Either, fg), fh)) -> new_ltEs18(vyw4312, vyw4512, fg, fh) 26.96/11.39 new_esEs29(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.39 new_lt20(vyw430, vyw450, app(ty_[], ga)) -> new_lt14(vyw430, vyw450, ga) 26.96/11.39 new_lt14(vyw430, vyw450, ga) -> new_esEs10(new_compare0(vyw430, vyw450, ga), LT) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Float) -> new_lt16(vyw4310, vyw4510) 26.96/11.39 new_compare18(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(ty_Ratio, cfc)) -> new_ltEs8(vyw4311, vyw4511, cfc) 26.96/11.39 new_primCompAux00(vyw108, GT) -> GT 26.96/11.39 new_esEs10(EQ, EQ) -> True 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs18(vyw32, vyw34) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Float, caa) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_@0) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs14(vyw32, vyw34) 26.96/11.39 new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bhg) -> new_asAs(new_esEs28(vyw300, vyw4000, bhg), new_esEs29(vyw301, vyw4001, bhg)) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(app(ty_Either, ed), ee)) -> new_lt19(vyw4311, vyw4511, ed, ee) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_@0) -> new_esEs13(vyw430, vyw450) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Integer) -> new_lt13(vyw4311, vyw4511) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(app(ty_Either, db), dc)) -> new_esEs7(vyw4310, vyw4510, db, dc) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Integer) -> new_lt13(vyw430, vyw450) 26.96/11.39 new_esEs5(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bdc, bdd) -> new_asAs(new_esEs22(vyw300, vyw4000, bdc), new_esEs23(vyw301, vyw4001, bdd)) 26.96/11.39 new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_@0) -> new_ltEs11(vyw4311, vyw4511) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(ty_Maybe, dd)) -> new_lt7(vyw4311, vyw4511, dd) 26.96/11.39 new_compare28(vyw430, vyw450) -> new_compare25(vyw430, vyw450, new_esEs17(vyw430, vyw450)) 26.96/11.39 new_compare7(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs10(vyw430, vyw450)) 26.96/11.39 new_lt13(vyw430, vyw450) -> new_esEs10(new_compare19(vyw430, vyw450), LT) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Double) -> new_esEs14(vyw302, vyw4002) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(ty_Ratio, de)) -> new_esEs11(vyw4311, vyw4511, de) 26.96/11.39 new_compare12(vyw83, vyw84, vyw85, vyw86, True, vyw88, bad, bae) -> new_compare110(vyw83, vyw84, vyw85, vyw86, True, bad, bae) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Int) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(ty_Ratio, beb)) -> new_esEs11(vyw300, vyw4000, beb) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs17(vyw32, vyw34) 26.96/11.39 new_ltEs10(vyw431, vyw451) -> new_not(new_esEs10(new_compare9(vyw431, vyw451), GT)) 26.96/11.39 new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(vyw30, vyw400, bhd, bhe, bhf) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Float) -> new_esEs18(vyw302, vyw4002) 26.96/11.39 new_esEs19(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Bool, caa) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(app(ty_Either, ded), dee)) -> new_ltEs18(vyw4310, vyw4510, ded, dee) 26.96/11.39 new_compare18(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_compare18(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.39 new_primCmpNat0(Zero, Succ(vyw45000)) -> LT 26.96/11.39 new_compare14(vyw4300, vyw4500, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_compare29(vyw4300, vyw4500, bbc, bbd, bbe) 26.96/11.39 new_esEs10(LT, EQ) -> False 26.96/11.39 new_esEs10(EQ, LT) -> False 26.96/11.39 new_compare26(@2(vyw430, vyw431), @2(vyw450, vyw451), False, gd, ge) -> new_compare12(vyw430, vyw431, vyw450, vyw451, new_lt20(vyw430, vyw450, gd), new_asAs(new_esEs20(vyw430, vyw450, gd), new_ltEs19(vyw431, vyw451, ge)), gd, ge) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cgf), cgg), cgh), caa) -> new_esEs6(vyw300, vyw4000, cgf, cgg, cgh) 26.96/11.39 new_esEs21(vyw300, vyw4000, app(app(ty_@2, bcg), bch)) -> new_esEs5(vyw300, vyw4000, bcg, bch) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Bool) -> new_esEs17(vyw302, vyw4002) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Ordering) -> new_esEs10(vyw430, vyw450) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(ty_Maybe, cfb)) -> new_ltEs7(vyw4311, vyw4511, cfb) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(ty_[], dh)) -> new_lt14(vyw4311, vyw4511, dh) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs13(vyw30, vyw400) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs13(vyw301, vyw4001) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Double, caa) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Int) -> new_lt17(vyw4310, vyw4510) 26.96/11.39 new_sr(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) 26.96/11.39 new_primCmpNat0(Succ(vyw43000), Zero) -> GT 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Int) -> new_lt17(vyw4311, vyw4511) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Ordering, bac) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(ty_Either, ddb), ddc), bac) -> new_ltEs18(vyw4310, vyw4510, ddb, ddc) 26.96/11.39 new_pePe(False, vyw101) -> vyw101 26.96/11.39 new_lt20(vyw430, vyw450, ty_@0) -> new_lt11(vyw430, vyw450) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(ty_Ratio, cb)) -> new_esEs11(vyw4310, vyw4510, cb) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_Maybe, dcb), bac) -> new_ltEs7(vyw4310, vyw4510, dcb) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Bool) -> new_ltEs15(vyw4312, vyw4512) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(app(ty_@2, cdd), cde)) -> new_esEs5(vyw302, vyw4002, cdd, cde) 26.96/11.39 new_ltEs6(LT, LT) -> True 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(app(ty_@2, df), dg)) -> new_esEs5(vyw4311, vyw4511, df, dg) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_compare211(vyw430, vyw450, False, gf) -> new_compare111(vyw430, vyw450, new_ltEs7(vyw430, vyw450, gf), gf) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Double) -> new_lt12(vyw4310, vyw4510) 26.96/11.39 new_esEs18(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs19(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(ty_Maybe, ef)) -> new_ltEs7(vyw4312, vyw4512, ef) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Integer) -> new_compare19(vyw4300, vyw4500) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Integer) -> new_ltEs13(vyw4312, vyw4512) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Bool) -> new_ltEs15(vyw431, vyw451) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Bool) -> new_lt15(vyw4310, vyw4510) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Double) -> new_ltEs12(vyw4312, vyw4512) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(ty_Maybe, beg)) -> new_esEs4(vyw301, vyw4001, beg) 26.96/11.39 new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False 26.96/11.39 new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False 26.96/11.39 new_esEs32(vyw32, vyw34, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs6(vyw32, vyw34, dfb, dfc, dfd) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_Int) -> new_ltEs17(vyw4312, vyw4512) 26.96/11.39 new_lt16(vyw430, vyw450) -> new_esEs10(new_compare5(vyw430, vyw450), LT) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(ty_[], bbb)) -> new_compare0(vyw4300, vyw4500, bbb) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Bool) -> new_ltEs15(vyw4311, vyw4511) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(app(ty_Either, bfg), bfh)) -> new_esEs7(vyw301, vyw4001, bfg, bfh) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) 26.96/11.39 new_compare5(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_compare5(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(ty_[], ccg)) -> new_esEs16(vyw302, vyw4002, ccg) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Ordering) -> new_esEs10(vyw4310, vyw4510) 26.96/11.39 new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(ty_[], baa)) -> new_ltEs14(vyw431, vyw451, baa) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Bool) -> new_compare28(vyw4300, vyw4500) 26.96/11.39 new_esEs20(vyw430, vyw450, app(ty_Ratio, gg)) -> new_esEs11(vyw430, vyw450, gg) 26.96/11.39 new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_@0, caa) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_lt18(vyw430, vyw450, hb, hc, hd) -> new_esEs10(new_compare29(vyw430, vyw450, hb, hc, hd), LT) 26.96/11.39 new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_@0) -> new_lt11(vyw4310, vyw4510) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs14(vyw30, vyw400) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Ratio, dba)) -> new_ltEs8(vyw4310, vyw4510, dba) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Double) -> new_ltEs12(vyw431, vyw451) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_Either, chd), che), caa) -> new_esEs7(vyw300, vyw4000, chd, che) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Ratio, cha), caa) -> new_esEs11(vyw300, vyw4000, cha) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Float) -> new_esEs18(vyw4311, vyw4511) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_[], dcf), bac) -> new_ltEs14(vyw4310, vyw4510, dcf) 26.96/11.39 new_esEs24(vyw300, vyw4000, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(vyw300, vyw4000, cad, cae, caf) 26.96/11.39 new_primMulNat0(Succ(vyw30100), Zero) -> Zero 26.96/11.39 new_primMulNat0(Zero, Succ(vyw400000)) -> Zero 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Integer) -> new_lt13(vyw4310, vyw4510) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.39 new_ltEs6(LT, EQ) -> True 26.96/11.39 new_esEs25(vyw301, vyw4001, app(app(ty_Either, ccd), cce)) -> new_esEs7(vyw301, vyw4001, ccd, cce) 26.96/11.39 new_compare14(vyw4300, vyw4500, app(app(ty_@2, bah), bba)) -> new_compare16(vyw4300, vyw4500, bah, bba) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Double) -> new_ltEs12(vyw4311, vyw4511) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Integer) -> new_ltEs13(vyw431, vyw451) 26.96/11.39 new_esEs31(vyw30, vyw400, app(ty_Maybe, bga)) -> new_esEs4(vyw30, vyw400, bga) 26.96/11.39 new_primPlusNat1(Succ(vyw740), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw740, vyw400000))) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(ty_[], fb)) -> new_ltEs14(vyw4312, vyw4512, fb) 26.96/11.39 new_lt10(vyw430, vyw450) -> new_esEs10(new_compare9(vyw430, vyw450), LT) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(ty_[], ced)) -> new_lt14(vyw4310, vyw4510, ced) 26.96/11.39 new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_primPlusNat0(Succ(vyw7400), Zero) -> Succ(vyw7400) 26.96/11.39 new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Char) -> new_lt10(vyw4311, vyw4511) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(ty_Ratio, cea)) -> new_lt8(vyw4310, vyw4510, cea) 26.96/11.39 new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Float) -> new_esEs18(vyw301, vyw4001) 26.96/11.39 new_compare19(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(app(ty_@2, cc), cd)) -> new_lt9(vyw4310, vyw4510, cc, cd) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(ty_Maybe, dd)) -> new_esEs4(vyw4311, vyw4511, dd) 26.96/11.39 new_esEs20(vyw430, vyw450, app(ty_Maybe, gf)) -> new_esEs4(vyw430, vyw450, gf) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(app(app(ty_@3, bdg), bdh), bea)) -> new_esEs6(vyw300, vyw4000, bdg, bdh, bea) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(vyw4311, vyw4511, ea, eb, ec) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Char) -> new_lt10(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Char) -> new_lt10(vyw430, vyw450) 26.96/11.39 new_esEs31(vyw30, vyw400, app(ty_Ratio, bhg)) -> new_esEs11(vyw30, vyw400, bhg) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Int) -> new_compare13(vyw4300, vyw4500) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Maybe, cgd), caa) -> new_esEs4(vyw300, vyw4000, cgd) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(app(ty_@2, bfe), bff)) -> new_esEs5(vyw301, vyw4001, bfe, bff) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(app(ty_@2, df), dg)) -> new_lt9(vyw4311, vyw4511, df, dg) 26.96/11.39 new_ltEs9(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), hg, hh) -> new_pePe(new_lt21(vyw4310, vyw4510, hg), new_asAs(new_esEs27(vyw4310, vyw4510, hg), new_ltEs20(vyw4311, vyw4511, hh))) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Float) -> new_compare5(vyw4300, vyw4500) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(ty_Ratio, dde)) -> new_ltEs8(vyw4310, vyw4510, dde) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_@0) -> new_esEs13(vyw4310, vyw4510) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Char, caa) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, dbe), dbf), dbg)) -> new_ltEs4(vyw4310, vyw4510, dbe, dbf, dbg) 26.96/11.39 new_esEs23(vyw301, vyw4001, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs6(vyw301, vyw4001, bfa, bfb, bfc) 26.96/11.39 new_esEs16([], [], bbh) -> True 26.96/11.39 new_esEs21(vyw300, vyw4000, app(ty_Maybe, bca)) -> new_esEs4(vyw300, vyw4000, bca) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Ordering) -> new_esEs10(vyw301, vyw4001) 26.96/11.39 new_lt20(vyw430, vyw450, app(app(ty_@2, gh), ha)) -> new_lt9(vyw430, vyw450, gh, ha) 26.96/11.39 new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) 26.96/11.39 new_ltEs13(vyw431, vyw451) -> new_not(new_esEs10(new_compare19(vyw431, vyw451), GT)) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) 26.96/11.39 new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_esEs32(vyw32, vyw34, app(ty_Maybe, deh)) -> new_esEs4(vyw32, vyw34, deh) 26.96/11.39 new_compare14(vyw4300, vyw4500, ty_Double) -> new_compare18(vyw4300, vyw4500) 26.96/11.39 new_compare6(vyw430, vyw450, gb, gc) -> new_compare24(vyw430, vyw450, new_esEs7(vyw430, vyw450, gb, gc), gb, gc) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Int) -> new_esEs19(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, app(app(ty_@2, cah), cba)) -> new_esEs5(vyw300, vyw4000, cah, cba) 26.96/11.39 new_esEs10(LT, LT) -> True 26.96/11.39 new_esEs24(vyw300, vyw4000, app(app(ty_Either, cbb), cbc)) -> new_esEs7(vyw300, vyw4000, cbb, cbc) 26.96/11.39 new_esEs14(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs19(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) 26.96/11.39 new_lt17(vyw430, vyw450) -> new_esEs10(new_compare13(vyw430, vyw450), LT) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(ty_Maybe, ca)) -> new_esEs4(vyw4310, vyw4510, ca) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, bgb)) -> new_esEs4(vyw300, vyw4000, bgb) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, ty_@0) -> new_ltEs11(vyw4312, vyw4512) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(app(ty_@2, ceb), cec)) -> new_esEs5(vyw4310, vyw4510, ceb, cec) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Float) -> new_esEs18(vyw4310, vyw4510) 26.96/11.39 new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.39 new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(app(ty_Either, cdf), cdg)) -> new_esEs7(vyw302, vyw4002, cdf, cdg) 26.96/11.39 new_lt6(vyw430, vyw450) -> new_esEs10(new_compare7(vyw430, vyw450), LT) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Integer) -> new_esEs15(vyw430, vyw450) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, dcg), dch), dda), bac) -> new_ltEs4(vyw4310, vyw4510, dcg, dch, dda) 26.96/11.39 new_ltEs15(True, True) -> True 26.96/11.39 new_esEs24(vyw300, vyw4000, app(ty_Maybe, cab)) -> new_esEs4(vyw300, vyw4000, cab) 26.96/11.39 new_ltEs6(GT, EQ) -> False 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_@0) -> new_lt11(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(app(app(ty_@3, cee), cef), ceg)) -> new_esEs6(vyw4310, vyw4510, cee, cef, ceg) 26.96/11.39 new_esEs32(vyw32, vyw34, app(app(ty_Either, dfh), dga)) -> new_esEs7(vyw32, vyw34, dfh, dga) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Ordering) -> new_lt6(vyw4310, vyw4510) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Bool) -> new_esEs17(vyw430, vyw450) 26.96/11.39 new_ltEs11(vyw431, vyw451) -> new_not(new_esEs10(new_compare17(vyw431, vyw451), GT)) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_@0) -> new_esEs13(vyw301, vyw4001) 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_[], cge), caa) -> new_esEs16(vyw300, vyw4000, cge) 26.96/11.39 new_lt20(vyw430, vyw450, app(app(app(ty_@3, hb), hc), hd)) -> new_lt18(vyw430, vyw450, hb, hc, hd) 26.96/11.39 new_esEs29(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs18(vyw301, vyw4001) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Integer) -> new_esEs15(vyw4310, vyw4510) 26.96/11.39 new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Float) -> new_esEs18(vyw430, vyw450) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Double) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.39 new_compare0([], :(vyw4500, vyw4501), ga) -> LT 26.96/11.39 new_asAs(True, vyw53) -> vyw53 26.96/11.39 new_compare10(vyw430, vyw450, False, gb, gc) -> GT 26.96/11.39 new_compare113(vyw430, vyw450, True) -> LT 26.96/11.39 new_esEs17(False, True) -> False 26.96/11.39 new_esEs17(True, False) -> False 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), ty_Int, caa) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(app(ty_@2, cfd), cfe)) -> new_ltEs9(vyw4311, vyw4511, cfd, cfe) 26.96/11.39 new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs19(vyw32, vyw34) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Float) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Bool) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.39 new_esEs26(vyw302, vyw4002, ty_Int) -> new_esEs19(vyw302, vyw4002) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(ty_Maybe, chf)) -> new_esEs4(vyw300, vyw4000, chf) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.39 new_lt11(vyw430, vyw450) -> new_esEs10(new_compare17(vyw430, vyw450), LT) 26.96/11.39 new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_lt20(vyw430, vyw450, ty_Int) -> new_lt17(vyw430, vyw450) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Float) -> new_ltEs16(vyw4311, vyw4511) 26.96/11.39 new_lt21(vyw4310, vyw4510, app(app(ty_@2, ceb), cec)) -> new_lt9(vyw4310, vyw4510, ceb, cec) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs18(vyw30, vyw400) 26.96/11.39 new_compare24(vyw430, vyw450, True, gb, gc) -> EQ 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_@2, dbb), dbc)) -> new_ltEs9(vyw4310, vyw4510, dbb, dbc) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(app(ty_@2, hg), hh)) -> new_ltEs9(vyw431, vyw451, hg, hh) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Ordering) -> new_ltEs6(vyw431, vyw451) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Char, bac) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.39 new_esEs8(vyw4310, vyw4510, app(ty_[], ce)) -> new_esEs16(vyw4310, vyw4510, ce) 26.96/11.39 new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(ty_Maybe, ca)) -> new_lt7(vyw4310, vyw4510, ca) 26.96/11.39 new_primCompAux00(vyw108, EQ) -> vyw108 26.96/11.39 new_compare0([], [], ga) -> EQ 26.96/11.39 new_ltEs16(vyw431, vyw451) -> new_not(new_esEs10(new_compare5(vyw431, vyw451), GT)) 26.96/11.39 new_lt21(vyw4310, vyw4510, ty_Char) -> new_lt10(vyw4310, vyw4510) 26.96/11.39 new_ltEs7(Nothing, Nothing, he) -> True 26.96/11.39 new_esEs23(vyw301, vyw4001, app(ty_Ratio, bfd)) -> new_esEs11(vyw301, vyw4001, bfd) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.39 new_esEs21(vyw300, vyw4000, app(app(ty_Either, bda), bdb)) -> new_esEs7(vyw300, vyw4000, bda, bdb) 26.96/11.39 new_primMulNat0(Zero, Zero) -> Zero 26.96/11.39 new_lt12(vyw430, vyw450) -> new_esEs10(new_compare18(vyw430, vyw450), LT) 26.96/11.39 new_compare13(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], bgc)) -> new_esEs16(vyw300, vyw4000, bgc) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_[], dbd)) -> new_ltEs14(vyw4310, vyw4510, dbd) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Double) -> new_esEs14(vyw4310, vyw4510) 26.96/11.39 new_esEs24(vyw300, vyw4000, app(ty_[], cac)) -> new_esEs16(vyw300, vyw4000, cac) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_@0, bac) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(ty_[], cff)) -> new_ltEs14(vyw4311, vyw4511, cff) 26.96/11.39 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Int, bac) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(app(ty_@2, bec), bed)) -> new_esEs5(vyw300, vyw4000, bec, bed) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Nothing, he) -> False 26.96/11.39 new_compare18(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(ty_[], ce)) -> new_lt14(vyw4310, vyw4510, ce) 26.96/11.39 new_ltEs6(EQ, LT) -> False 26.96/11.39 new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_@2, chb), chc), caa) -> new_esEs5(vyw300, vyw4000, chb, chc) 26.96/11.39 new_esEs22(vyw300, vyw4000, app(app(ty_Either, bee), bef)) -> new_esEs7(vyw300, vyw4000, bee, bef) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Integer) -> new_ltEs13(vyw4311, vyw4511) 26.96/11.39 new_esEs4(Nothing, Nothing, bga) -> True 26.96/11.39 new_esEs4(Nothing, Just(vyw4000), bga) -> False 26.96/11.39 new_esEs4(Just(vyw300), Nothing, bga) -> False 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(app(ty_Either, ed), ee)) -> new_esEs7(vyw4311, vyw4511, ed, ee) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Integer) -> new_lt13(vyw4310, vyw4510) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_lt5(vyw4310, vyw4510, app(ty_Ratio, cb)) -> new_lt8(vyw4310, vyw4510, cb) 26.96/11.39 new_compare5(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) 26.96/11.39 new_esEs32(vyw32, vyw34, app(app(ty_@2, dff), dfg)) -> new_esEs5(vyw32, vyw34, dff, dfg) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_ltEs14(vyw431, vyw451, baa) -> new_not(new_esEs10(new_compare0(vyw431, vyw451, baa), GT)) 26.96/11.39 new_ltEs19(vyw431, vyw451, ty_Int) -> new_ltEs17(vyw431, vyw451) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, bhb), bhc)) -> new_esEs7(vyw300, vyw4000, bhb, bhc) 26.96/11.39 new_primCompAux0(vyw4300, vyw4500, vyw102, ga) -> new_primCompAux00(vyw102, new_compare14(vyw4300, vyw4500, ga)) 26.96/11.39 new_esEs20(vyw430, vyw450, ty_Double) -> new_esEs14(vyw430, vyw450) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(ty_Maybe, he)) -> new_ltEs7(vyw431, vyw451, he) 26.96/11.39 new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False 26.96/11.39 new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False 26.96/11.39 new_ltEs20(vyw4311, vyw4511, app(app(ty_Either, cgb), cgc)) -> new_ltEs18(vyw4311, vyw4511, cgb, cgc) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.39 new_esEs20(vyw430, vyw450, app(ty_[], ga)) -> new_esEs16(vyw430, vyw450, ga) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_esEs8(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_@0) -> new_lt11(vyw4311, vyw4511) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(ty_[], chg)) -> new_esEs16(vyw300, vyw4000, chg) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(app(ty_@2, dad), dae)) -> new_esEs5(vyw300, vyw4000, dad, dae) 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(app(ty_Either, daf), dag)) -> new_esEs7(vyw300, vyw4000, daf, dag) 26.96/11.39 new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False 26.96/11.39 new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False 26.96/11.39 new_esEs30(vyw31, vyw32, vyw33, vyw34, True, def, deg) -> new_esEs10(new_compare26(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, deg), def, deg), LT) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(ty_Ratio, cea)) -> new_esEs11(vyw4310, vyw4510, cea) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Double) -> new_lt12(vyw4310, vyw4510) 26.96/11.39 new_esEs31(vyw30, vyw400, app(ty_[], bbh)) -> new_esEs16(vyw30, vyw400, bbh) 26.96/11.39 new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_Either, dbh), dca)) -> new_ltEs18(vyw4310, vyw4510, dbh, dca) 26.96/11.39 new_compare8(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare13(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(app(app(ty_@3, dea), deb), dec)) -> new_ltEs4(vyw4310, vyw4510, dea, deb, dec) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Float) -> new_lt16(vyw4310, vyw4510) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(app(ty_Either, bab), bac)) -> new_ltEs18(vyw431, vyw451, bab, bac) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.39 new_esEs25(vyw301, vyw4001, app(ty_[], cbe)) -> new_esEs16(vyw301, vyw4001, cbe) 26.96/11.39 new_lt5(vyw4310, vyw4510, ty_Bool) -> new_lt15(vyw4310, vyw4510) 26.96/11.39 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.96/11.39 new_compare12(vyw83, vyw84, vyw85, vyw86, False, vyw88, bad, bae) -> new_compare110(vyw83, vyw84, vyw85, vyw86, vyw88, bad, bae) 26.96/11.39 new_compare111(vyw430, vyw450, False, gf) -> GT 26.96/11.39 new_ltEs19(vyw431, vyw451, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs4(vyw431, vyw451, bf, bg, bh) 26.96/11.39 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(ty_Maybe, ddd)) -> new_ltEs7(vyw4310, vyw4510, ddd) 26.96/11.39 new_esEs17(True, True) -> True 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.39 new_esEs10(LT, GT) -> False 26.96/11.39 new_esEs10(GT, LT) -> False 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.39 new_esEs30(vyw31, vyw32, vyw33, vyw34, False, def, deg) -> new_esEs10(new_compare26(@2(vyw31, vyw32), @2(vyw33, vyw34), False, def, deg), LT) 26.96/11.39 new_esEs9(vyw4311, vyw4511, app(ty_[], dh)) -> new_esEs16(vyw4311, vyw4511, dh) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Maybe, dah)) -> new_ltEs7(vyw4310, vyw4510, dah) 26.96/11.39 new_esEs26(vyw302, vyw4002, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(vyw302, vyw4002, cch, cda, cdb) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Double) -> new_esEs14(vyw301, vyw4001) 26.96/11.39 new_ltEs20(vyw4311, vyw4511, ty_Int) -> new_ltEs17(vyw4311, vyw4511) 26.96/11.39 new_esEs22(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.39 new_compare8(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare19(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_ltEs19(vyw431, vyw451, app(ty_Ratio, hf)) -> new_ltEs8(vyw431, vyw451, hf) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Integer) -> new_esEs15(vyw4311, vyw4511) 26.96/11.39 new_esEs23(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) 26.96/11.39 new_not(False) -> True 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.39 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.39 new_compare112(vyw430, vyw450, True, hb, hc, hd) -> LT 26.96/11.39 new_lt4(vyw4311, vyw4511, ty_Double) -> new_lt12(vyw4311, vyw4511) 26.96/11.39 new_esEs27(vyw4310, vyw4510, app(app(ty_Either, ceh), cfa)) -> new_esEs7(vyw4310, vyw4510, ceh, cfa) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Char) -> new_esEs12(vyw4311, vyw4511) 26.96/11.39 new_compare25(vyw430, vyw450, False) -> new_compare11(vyw430, vyw450, new_ltEs15(vyw430, vyw450)) 26.96/11.39 new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs19(vyw30, vyw400) 26.96/11.39 new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.39 new_compare0(:(vyw4300, vyw4301), [], ga) -> GT 26.96/11.39 new_primPlusNat0(Succ(vyw7400), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw7400, vyw4000000))) 26.96/11.39 new_lt20(vyw430, vyw450, app(app(ty_Either, gb), gc)) -> new_lt19(vyw430, vyw450, gb, gc) 26.96/11.39 new_esEs9(vyw4311, vyw4511, ty_Bool) -> new_esEs17(vyw4311, vyw4511) 26.96/11.39 new_lt4(vyw4311, vyw4511, app(app(app(ty_@3, ea), eb), ec)) -> new_lt18(vyw4311, vyw4511, ea, eb, ec) 26.96/11.39 new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs14(vyw301, vyw4001) 26.96/11.39 new_compare112(vyw430, vyw450, False, hb, hc, hd) -> GT 26.96/11.39 new_compare25(vyw430, vyw450, True) -> EQ 26.96/11.39 new_esEs7(Right(vyw300), Right(vyw4000), bhh, app(ty_Ratio, dac)) -> new_esEs11(vyw300, vyw4000, dac) 26.96/11.39 new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.39 new_esEs27(vyw4310, vyw4510, ty_Ordering) -> new_esEs10(vyw4310, vyw4510) 26.96/11.39 new_ltEs5(vyw4312, vyw4512, app(ty_Ratio, eg)) -> new_ltEs8(vyw4312, vyw4512, eg) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_ltEs15(False, True) -> True 26.96/11.40 new_compare110(vyw83, vyw84, vyw85, vyw86, False, bad, bae) -> GT 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dcc), bac) -> new_ltEs8(vyw4310, vyw4510, dcc) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(app(ty_Either, db), dc)) -> new_lt19(vyw4310, vyw4510, db, dc) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Bool) -> new_lt15(vyw4311, vyw4511) 26.96/11.40 new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs13(vyw32, vyw34) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, ty_Ordering) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.40 new_sr0(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Char) -> new_ltEs10(vyw431, vyw451) 26.96/11.40 new_compare5(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, app(app(app(ty_@3, fc), fd), ff)) -> new_ltEs4(vyw4312, vyw4512, fc, fd, ff) 26.96/11.40 new_compare24(vyw430, vyw450, False, gb, gc) -> new_compare10(vyw430, vyw450, new_ltEs18(vyw430, vyw450, gb, gc), gb, gc) 26.96/11.40 new_ltEs4(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bf, bg, bh) -> new_pePe(new_lt5(vyw4310, vyw4510, bf), new_asAs(new_esEs8(vyw4310, vyw4510, bf), new_pePe(new_lt4(vyw4311, vyw4511, bg), new_asAs(new_esEs9(vyw4311, vyw4511, bg), new_ltEs5(vyw4312, vyw4512, bh))))) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) 26.96/11.40 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.96/11.40 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), ga) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, ga), ga) 26.96/11.40 new_esEs31(vyw30, vyw400, app(app(ty_Either, bhh), caa)) -> new_esEs7(vyw30, vyw400, bhh, caa) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Char) -> new_ltEs10(vyw4312, vyw4512) 26.96/11.40 new_compare111(vyw430, vyw450, True, gf) -> LT 26.96/11.40 new_esEs13(@0, @0) -> True 26.96/11.40 new_esEs25(vyw301, vyw4001, app(ty_Maybe, cbd)) -> new_esEs4(vyw301, vyw4001, cbd) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Double) -> new_esEs14(vyw4311, vyw4511) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Ordering) -> new_lt6(vyw4310, vyw4510) 26.96/11.40 new_ltEs8(vyw431, vyw451, hf) -> new_not(new_esEs10(new_compare8(vyw431, vyw451, hf), GT)) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_@0) -> new_esEs13(vyw4310, vyw4510) 26.96/11.40 new_esEs21(vyw300, vyw4000, app(ty_[], bcb)) -> new_esEs16(vyw300, vyw4000, bcb) 26.96/11.40 new_ltEs18(Left(vyw4310), Right(vyw4510), bab, bac) -> True 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.40 new_compare11(vyw430, vyw450, True) -> LT 26.96/11.40 new_esEs10(EQ, GT) -> False 26.96/11.40 new_esEs10(GT, EQ) -> False 26.96/11.40 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.96/11.40 new_esEs17(False, False) -> True 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Int) -> new_esEs19(vyw4311, vyw4511) 26.96/11.40 new_compare17(@0, @0) -> EQ 26.96/11.40 new_ltEs12(vyw431, vyw451) -> new_not(new_esEs10(new_compare18(vyw431, vyw451), GT)) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Float) -> new_ltEs16(vyw4312, vyw4512) 26.96/11.40 new_ltEs18(Right(vyw4310), Left(vyw4510), bab, bac) -> False 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) 26.96/11.40 new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs12(vyw30, vyw400) 26.96/11.40 new_compare110(vyw83, vyw84, vyw85, vyw86, True, bad, bae) -> LT 26.96/11.40 new_esEs24(vyw300, vyw4000, app(ty_Ratio, cag)) -> new_esEs11(vyw300, vyw4000, cag) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Bool, bac) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.40 new_esEs27(vyw4310, vyw4510, app(ty_Maybe, cdh)) -> new_esEs4(vyw4310, vyw4510, cdh) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Ordering) -> new_ltEs6(vyw4311, vyw4511) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), bhh, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bab, app(ty_[], ddh)) -> new_ltEs14(vyw4310, vyw4510, ddh) 26.96/11.40 new_esEs16(:(vyw300, vyw301), [], bbh) -> False 26.96/11.40 new_esEs16([], :(vyw4000, vyw4001), bbh) -> False 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Float) -> new_ltEs16(vyw431, vyw451) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Char) -> new_ltEs10(vyw4311, vyw4511) 26.96/11.40 new_esEs23(vyw301, vyw4001, app(ty_[], beh)) -> new_esEs16(vyw301, vyw4001, beh) 26.96/11.40 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.96/11.40 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Double, bac) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.40 new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs12(vyw32, vyw34) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Int) -> new_esEs19(vyw4310, vyw4510) 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_lt21(vyw4310, vyw4510, app(app(app(ty_@3, cee), cef), ceg)) -> new_lt18(vyw4310, vyw4510, cee, cef, ceg) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.40 new_esEs26(vyw302, vyw4002, app(ty_Maybe, ccf)) -> new_esEs4(vyw302, vyw4002, ccf) 26.96/11.40 new_primEqNat0(Zero, Zero) -> True 26.96/11.40 new_lt19(vyw430, vyw450, gb, gc) -> new_esEs10(new_compare6(vyw430, vyw450, gb, gc), LT) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.40 new_compare15(vyw430, vyw450, gf) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, gf), gf) 26.96/11.40 new_ltEs15(True, False) -> False 26.96/11.40 new_esEs25(vyw301, vyw4001, app(ty_Ratio, cca)) -> new_esEs11(vyw301, vyw4001, cca) 26.96/11.40 new_lt21(vyw4310, vyw4510, app(ty_Maybe, cdh)) -> new_lt7(vyw4310, vyw4510, cdh) 26.96/11.40 new_esEs16(:(vyw300, vyw301), :(vyw4000, vyw4001), bbh) -> new_asAs(new_esEs21(vyw300, vyw4000, bbh), new_esEs16(vyw301, vyw4001, bbh)) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_@0) -> new_esEs13(vyw4311, vyw4511) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Ordering) -> new_lt6(vyw4311, vyw4511) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(app(app(ty_@3, cf), cg), da)) -> new_lt18(vyw4310, vyw4510, cf, cg, da) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_esEs22(vyw300, vyw4000, app(ty_[], bdf)) -> new_esEs16(vyw300, vyw4000, bdf) 26.96/11.40 new_asAs(False, vyw53) -> False 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Char) -> new_esEs12(vyw430, vyw450) 26.96/11.40 new_lt20(vyw430, vyw450, ty_Ordering) -> new_lt6(vyw430, vyw450) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs4(vyw4311, vyw4511, cfg, cfh, cga) 26.96/11.40 new_compare27(vyw430, vyw450, True) -> EQ 26.96/11.40 new_ltEs15(False, False) -> True 26.96/11.40 new_esEs7(Left(vyw300), Right(vyw4000), bhh, caa) -> False 26.96/11.40 new_esEs7(Right(vyw300), Left(vyw4000), bhh, caa) -> False 26.96/11.40 new_ltEs6(GT, LT) -> False 26.96/11.40 new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bhd, bhe, bhf) -> new_asAs(new_esEs24(vyw300, vyw4000, bhd), new_asAs(new_esEs25(vyw301, vyw4001, bhe), new_esEs26(vyw302, vyw4002, bhf))) 26.96/11.40 new_compare27(vyw430, vyw450, False) -> new_compare113(vyw430, vyw450, new_ltEs6(vyw430, vyw450)) 26.96/11.40 26.96/11.40 The set Q consists of the following terms: 26.96/11.40 26.96/11.40 new_primCompAux00(x0, EQ) 26.96/11.40 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.96/11.40 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.96/11.40 new_compare113(x0, x1, False) 26.96/11.40 new_ltEs19(x0, x1, ty_Bool) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.96/11.40 new_lt5(x0, x1, ty_Char) 26.96/11.40 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_compare14(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_lt20(x0, x1, ty_Bool) 26.96/11.40 new_lt21(x0, x1, ty_@0) 26.96/11.40 new_esEs9(x0, x1, ty_Bool) 26.96/11.40 new_esEs24(x0, x1, ty_Bool) 26.96/11.40 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs23(x0, x1, app(ty_[], x2)) 26.96/11.40 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.96/11.40 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 26.96/11.40 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_compare112(x0, x1, False, x2, x3, x4) 26.96/11.40 new_esEs32(x0, x1, ty_Char) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_@0) 26.96/11.40 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.96/11.40 new_lt4(x0, x1, ty_@0) 26.96/11.40 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_lt4(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs22(x0, x1, ty_Integer) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.96/11.40 new_esEs23(x0, x1, ty_Integer) 26.96/11.40 new_esEs22(x0, x1, ty_Bool) 26.96/11.40 new_esEs22(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs25(x0, x1, ty_Integer) 26.96/11.40 new_ltEs20(x0, x1, app(ty_[], x2)) 26.96/11.40 new_lt20(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs6(LT, LT) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.96/11.40 new_esEs10(EQ, EQ) 26.96/11.40 new_esEs24(x0, x1, ty_Integer) 26.96/11.40 new_lt20(x0, x1, ty_Integer) 26.96/11.40 new_primEqInt(Pos(Zero), Pos(Zero)) 26.96/11.40 new_compare0([], :(x0, x1), x2) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs26(x0, x1, ty_Float) 26.96/11.40 new_ltEs16(x0, x1) 26.96/11.40 new_esEs24(x0, x1, ty_@0) 26.96/11.40 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs5(x0, x1, ty_Integer) 26.96/11.40 new_esEs8(x0, x1, ty_Bool) 26.96/11.40 new_esEs17(False, False) 26.96/11.40 new_ltEs20(x0, x1, ty_Float) 26.96/11.40 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs29(x0, x1, ty_Integer) 26.96/11.40 new_ltEs5(x0, x1, ty_Float) 26.96/11.40 new_lt8(x0, x1, x2) 26.96/11.40 new_lt4(x0, x1, ty_Char) 26.96/11.40 new_compare17(@0, @0) 26.96/11.40 new_sr0(x0, x1) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Bool) 26.96/11.40 new_primEqInt(Neg(Zero), Neg(Zero)) 26.96/11.40 new_pePe(True, x0) 26.96/11.40 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_lt20(x0, x1, ty_@0) 26.96/11.40 new_esEs28(x0, x1, ty_Integer) 26.96/11.40 new_esEs20(x0, x1, ty_Double) 26.96/11.40 new_compare211(x0, x1, True, x2) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 26.96/11.40 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 26.96/11.40 new_ltEs15(False, True) 26.96/11.40 new_ltEs15(True, False) 26.96/11.40 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs31(x0, x1, ty_Double) 26.96/11.40 new_lt21(x0, x1, ty_Integer) 26.96/11.40 new_ltEs15(True, True) 26.96/11.40 new_esEs31(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.96/11.40 new_esEs32(x0, x1, ty_@0) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.96/11.40 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.96/11.40 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Char) 26.96/11.40 new_esEs32(x0, x1, ty_Double) 26.96/11.40 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.96/11.40 new_lt11(x0, x1) 26.96/11.40 new_lt21(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs16(:(x0, x1), [], x2) 26.96/11.40 new_compare0(:(x0, x1), :(x2, x3), x4) 26.96/11.40 new_esEs25(x0, x1, ty_Bool) 26.96/11.40 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs28(x0, x1, ty_Int) 26.96/11.40 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.96/11.40 new_ltEs19(x0, x1, ty_Char) 26.96/11.40 new_lt21(x0, x1, ty_Int) 26.96/11.40 new_esEs8(x0, x1, ty_Integer) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.96/11.40 new_lt21(x0, x1, ty_Char) 26.96/11.40 new_compare12(x0, x1, x2, x3, False, x4, x5, x6) 26.96/11.40 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Int) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.96/11.40 new_esEs9(x0, x1, ty_Char) 26.96/11.40 new_lt4(x0, x1, ty_Integer) 26.96/11.40 new_lt13(x0, x1) 26.96/11.40 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs22(x0, x1, ty_Char) 26.96/11.40 new_esEs21(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 26.96/11.40 new_esEs32(x0, x1, ty_Int) 26.96/11.40 new_lt4(x0, x1, ty_Bool) 26.96/11.40 new_ltEs19(x0, x1, ty_Int) 26.96/11.40 new_primEqInt(Pos(Zero), Neg(Zero)) 26.96/11.40 new_primEqInt(Neg(Zero), Pos(Zero)) 26.96/11.40 new_esEs22(x0, x1, ty_@0) 26.96/11.40 new_esEs24(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs26(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.96/11.40 new_esEs9(x0, x1, ty_Int) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.96/11.40 new_primMulNat0(Succ(x0), Zero) 26.96/11.40 new_ltEs5(x0, x1, ty_Bool) 26.96/11.40 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.96/11.40 new_lt5(x0, x1, ty_Ordering) 26.96/11.40 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.96/11.40 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.96/11.40 new_compare0(:(x0, x1), [], x2) 26.96/11.40 new_esEs4(Nothing, Just(x0), x1) 26.96/11.40 new_esEs9(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs8(x0, x1, ty_Ordering) 26.96/11.40 new_esEs9(x0, x1, ty_@0) 26.96/11.40 new_lt21(x0, x1, ty_Bool) 26.96/11.40 new_ltEs19(x0, x1, ty_@0) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 26.96/11.40 new_lt4(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs9(x0, x1, ty_Double) 26.96/11.40 new_primEqNat0(Succ(x0), Zero) 26.96/11.40 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs24(x0, x1, ty_Ordering) 26.96/11.40 new_esEs25(x0, x1, ty_Char) 26.96/11.40 new_compare6(x0, x1, x2, x3) 26.96/11.40 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs22(x0, x1, ty_Int) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Ordering) 26.96/11.40 new_esEs9(x0, x1, ty_Float) 26.96/11.40 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs32(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs7(Left(x0), Right(x1), x2, x3) 26.96/11.40 new_esEs7(Right(x0), Left(x1), x2, x3) 26.96/11.40 new_lt20(x0, x1, ty_Float) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.96/11.40 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_lt4(x0, x1, ty_Float) 26.96/11.40 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.96/11.40 new_esEs24(x0, x1, ty_Float) 26.96/11.40 new_compare113(x0, x1, True) 26.96/11.40 new_esEs27(x0, x1, ty_Int) 26.96/11.40 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.96/11.40 new_compare14(x0, x1, ty_Float) 26.96/11.40 new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.96/11.40 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs31(x0, x1, ty_Int) 26.96/11.40 new_lt14(x0, x1, x2) 26.96/11.40 new_primMulInt(Pos(x0), Pos(x1)) 26.96/11.40 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_lt17(x0, x1) 26.96/11.40 new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 26.96/11.40 new_esEs20(x0, x1, ty_Int) 26.96/11.40 new_esEs22(x0, x1, ty_Float) 26.96/11.40 new_compare28(x0, x1) 26.96/11.40 new_esEs24(x0, x1, ty_Char) 26.96/11.40 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_compare14(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs25(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Char) 26.96/11.40 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs20(x0, x1, ty_Char) 26.96/11.40 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Integer) 26.96/11.40 new_esEs31(x0, x1, ty_Char) 26.96/11.40 new_lt21(x0, x1, ty_Float) 26.96/11.40 new_lt20(x0, x1, ty_Int) 26.96/11.40 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.96/11.40 new_lt9(x0, x1, x2, x3) 26.96/11.40 new_ltEs5(x0, x1, ty_@0) 26.96/11.40 new_compare19(Integer(x0), Integer(x1)) 26.96/11.40 new_ltEs20(x0, x1, ty_@0) 26.96/11.40 new_compare14(x0, x1, app(ty_[], x2)) 26.96/11.40 new_compare14(x0, x1, ty_Int) 26.96/11.40 new_lt20(x0, x1, ty_Ordering) 26.96/11.40 new_esEs24(x0, x1, ty_Int) 26.96/11.40 new_esEs26(x0, x1, ty_@0) 26.96/11.40 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.96/11.40 new_esEs11(:%(x0, x1), :%(x2, x3), x4) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.96/11.40 new_esEs23(x0, x1, ty_Double) 26.96/11.40 new_lt5(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_primPlusNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_lt4(x0, x1, ty_Int) 26.96/11.40 new_lt5(x0, x1, ty_@0) 26.96/11.40 new_esEs32(x0, x1, ty_Bool) 26.96/11.40 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs31(x0, x1, ty_Float) 26.96/11.40 new_ltEs7(Nothing, Nothing, x0) 26.96/11.40 new_lt12(x0, x1) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 26.96/11.40 new_esEs23(x0, x1, ty_@0) 26.96/11.40 new_lt5(x0, x1, ty_Double) 26.96/11.40 new_primEqNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_ltEs6(LT, GT) 26.96/11.40 new_ltEs6(GT, LT) 26.96/11.40 new_esEs32(x0, x1, ty_Ordering) 26.96/11.40 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.96/11.40 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.96/11.40 new_esEs20(x0, x1, ty_Bool) 26.96/11.40 new_compare12(x0, x1, x2, x3, True, x4, x5, x6) 26.96/11.40 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_ltEs12(x0, x1) 26.96/11.40 new_ltEs6(EQ, GT) 26.96/11.40 new_ltEs6(GT, EQ) 26.96/11.40 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_lt20(x0, x1, ty_Char) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs10(LT, GT) 26.96/11.40 new_esEs10(GT, LT) 26.96/11.40 new_esEs25(x0, x1, ty_Float) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 26.96/11.40 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs26(x0, x1, ty_Double) 26.96/11.40 new_lt5(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_primCompAux00(x0, GT) 26.96/11.40 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs21(x0, x1, ty_Double) 26.96/11.40 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_ltEs15(False, False) 26.96/11.40 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs20(x0, x1, ty_Ordering) 26.96/11.40 new_lt6(x0, x1) 26.96/11.40 new_esEs20(x0, x1, ty_Integer) 26.96/11.40 new_compare10(x0, x1, False, x2, x3) 26.96/11.40 new_esEs8(x0, x1, ty_Char) 26.96/11.40 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 26.96/11.40 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.96/11.40 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.96/11.40 new_pePe(False, x0) 26.96/11.40 new_esEs8(x0, x1, ty_Float) 26.96/11.40 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs19(x0, x1, ty_Integer) 26.96/11.40 new_primCmpNat0(Zero, Succ(x0)) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.96/11.40 new_compare110(x0, x1, x2, x3, False, x4, x5) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 26.96/11.40 new_esEs25(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Integer) 26.96/11.40 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) 26.96/11.40 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs20(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs10(EQ, GT) 26.96/11.40 new_esEs10(GT, EQ) 26.96/11.40 new_esEs30(x0, x1, x2, x3, True, x4, x5) 26.96/11.40 new_esEs8(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Float) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 26.96/11.40 new_ltEs19(x0, x1, app(ty_[], x2)) 26.96/11.40 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs19(x0, x1, ty_Ordering) 26.96/11.40 new_asAs(False, x0) 26.96/11.40 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 26.96/11.40 new_esEs32(x0, x1, ty_Integer) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Char) 26.96/11.40 new_compare15(x0, x1, x2) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 26.96/11.40 new_esEs27(x0, x1, ty_Bool) 26.96/11.40 new_compare16(x0, x1, x2, x3) 26.96/11.40 new_compare14(x0, x1, ty_Bool) 26.96/11.40 new_compare14(x0, x1, ty_@0) 26.96/11.40 new_esEs21(x0, x1, ty_Integer) 26.96/11.40 new_compare24(x0, x1, False, x2, x3) 26.96/11.40 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.96/11.40 new_ltEs8(x0, x1, x2) 26.96/11.40 new_primMulNat0(Zero, Zero) 26.96/11.40 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_ltEs5(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs27(x0, x1, ty_@0) 26.96/11.40 new_ltEs17(x0, x1) 26.96/11.40 new_ltEs14(x0, x1, x2) 26.96/11.40 new_compare25(x0, x1, False) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.96/11.40 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_ltEs20(x0, x1, ty_Double) 26.96/11.40 new_ltEs20(x0, x1, ty_Ordering) 26.96/11.40 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs17(True, True) 26.96/11.40 new_ltEs6(EQ, EQ) 26.96/11.40 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Int) 26.96/11.40 new_compare27(x0, x1, False) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 26.96/11.40 new_compare111(x0, x1, True, x2) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 26.96/11.40 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_compare11(x0, x1, True) 26.96/11.40 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 26.96/11.40 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_compare210(x0, x1, True, x2, x3, x4) 26.96/11.40 new_esEs21(x0, x1, ty_@0) 26.96/11.40 new_ltEs5(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs13(x0, x1) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.96/11.40 new_primPlusNat0(Zero, Zero) 26.96/11.40 new_esEs26(x0, x1, ty_Ordering) 26.96/11.40 new_esEs10(LT, LT) 26.96/11.40 new_esEs32(x0, x1, ty_Float) 26.96/11.40 new_esEs31(x0, x1, ty_Bool) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.96/11.40 new_not(True) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Double) 26.96/11.40 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_@0) 26.96/11.40 new_esEs31(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_lt10(x0, x1) 26.96/11.40 new_ltEs11(x0, x1) 26.96/11.40 new_esEs20(x0, x1, ty_Float) 26.96/11.40 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_compare211(x0, x1, False, x2) 26.96/11.40 new_esEs23(x0, x1, ty_Ordering) 26.96/11.40 new_compare14(x0, x1, ty_Char) 26.96/11.40 new_primCompAux0(x0, x1, x2, x3) 26.96/11.40 new_compare210(x0, x1, False, x2, x3, x4) 26.96/11.40 new_primPlusNat1(Succ(x0), x1) 26.96/11.40 new_esEs8(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs16([], :(x0, x1), x2) 26.96/11.40 new_compare7(x0, x1) 26.96/11.40 new_lt5(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs25(x0, x1, ty_Double) 26.96/11.40 new_esEs16([], [], x0) 26.96/11.40 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs20(x0, x1, ty_@0) 26.96/11.40 new_ltEs5(x0, x1, ty_Double) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 26.96/11.40 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_compare14(x0, x1, ty_Integer) 26.96/11.40 new_compare27(x0, x1, True) 26.96/11.40 new_esEs27(x0, x1, ty_Integer) 26.96/11.40 new_primCmpNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.96/11.40 new_lt16(x0, x1) 26.96/11.40 new_esEs22(x0, x1, ty_Double) 26.96/11.40 new_esEs17(False, True) 26.96/11.40 new_esEs17(True, False) 26.96/11.40 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs31(x0, x1, ty_Integer) 26.96/11.40 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs18(Left(x0), Right(x1), x2, x3) 26.96/11.40 new_ltEs18(Right(x0), Left(x1), x2, x3) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 26.96/11.40 new_primMulNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs18(Float(x0, x1), Float(x2, x3)) 26.96/11.40 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_compare112(x0, x1, True, x2, x3, x4) 26.96/11.40 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_compare11(x0, x1, False) 26.96/11.40 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_primCmpNat0(Succ(x0), Zero) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.96/11.40 new_primMulInt(Pos(x0), Neg(x1)) 26.96/11.40 new_primMulInt(Neg(x0), Pos(x1)) 26.96/11.40 new_compare111(x0, x1, False, x2) 26.96/11.40 new_compare0([], [], x0) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Bool) 26.96/11.40 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Float) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.96/11.40 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Double) 26.96/11.40 new_lt4(x0, x1, app(ty_[], x2)) 26.96/11.40 new_compare14(x0, x1, ty_Double) 26.96/11.40 new_ltEs6(LT, EQ) 26.96/11.40 new_ltEs6(EQ, LT) 26.96/11.40 new_esEs10(GT, GT) 26.96/11.40 new_esEs21(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Ordering) 26.96/11.40 new_esEs23(x0, x1, ty_Char) 26.96/11.40 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs24(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs6(GT, GT) 26.96/11.40 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs25(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs19(x0, x1) 26.96/11.40 new_compare14(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 26.96/11.40 new_ltEs19(x0, x1, ty_Float) 26.96/11.40 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.96/11.40 new_compare9(Char(x0), Char(x1)) 26.96/11.40 new_esEs10(LT, EQ) 26.96/11.40 new_esEs10(EQ, LT) 26.96/11.40 new_esEs24(x0, x1, ty_Double) 26.96/11.40 new_esEs24(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_lt20(x0, x1, ty_Double) 26.96/11.40 new_compare13(x0, x1) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.96/11.40 new_lt21(x0, x1, ty_Double) 26.96/11.40 new_esEs22(x0, x1, ty_Ordering) 26.96/11.40 new_compare26(x0, x1, True, x2, x3) 26.96/11.40 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs29(x0, x1, ty_Int) 26.96/11.40 new_ltEs7(Just(x0), Nothing, x1) 26.96/11.40 new_ltEs19(x0, x1, ty_Double) 26.96/11.40 new_compare24(x0, x1, True, x2, x3) 26.96/11.40 new_ltEs5(x0, x1, ty_Char) 26.96/11.40 new_lt5(x0, x1, ty_Integer) 26.96/11.40 new_primPlusNat0(Zero, Succ(x0)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.96/11.40 new_esEs21(x0, x1, ty_Char) 26.96/11.40 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.96/11.40 new_compare29(x0, x1, x2, x3, x4) 26.96/11.40 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs26(x0, x1, ty_Char) 26.96/11.40 new_lt18(x0, x1, x2, x3, x4) 26.96/11.40 new_esEs21(x0, x1, ty_Float) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.96/11.40 new_compare110(x0, x1, x2, x3, True, x4, x5) 26.96/11.40 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_lt21(x0, x1, ty_Ordering) 26.96/11.40 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.96/11.40 new_esEs12(Char(x0), Char(x1)) 26.96/11.40 new_lt7(x0, x1, x2) 26.96/11.40 new_compare10(x0, x1, True, x2, x3) 26.96/11.40 new_primPlusNat0(Succ(x0), Zero) 26.96/11.40 new_lt4(x0, x1, ty_Double) 26.96/11.40 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.96/11.40 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.96/11.40 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_lt4(x0, x1, ty_Ordering) 26.96/11.40 new_lt19(x0, x1, x2, x3) 26.96/11.40 new_ltEs5(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Double) 26.96/11.40 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.96/11.40 new_esEs15(Integer(x0), Integer(x1)) 26.96/11.40 new_esEs26(x0, x1, ty_Int) 26.96/11.40 new_asAs(True, x0) 26.96/11.40 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.96/11.40 new_esEs25(x0, x1, ty_Ordering) 26.96/11.40 new_primEqNat0(Zero, Succ(x0)) 26.96/11.40 new_esEs30(x0, x1, x2, x3, False, x4, x5) 26.96/11.40 new_esEs21(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs20(x0, x1, ty_Integer) 26.96/11.40 new_primEqNat0(Zero, Zero) 26.96/11.40 new_ltEs10(x0, x1) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.96/11.40 new_esEs25(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs25(x0, x1, ty_@0) 26.96/11.40 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.96/11.40 new_esEs23(x0, x1, ty_Float) 26.96/11.40 new_not(False) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Float) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.96/11.40 new_ltEs20(x0, x1, ty_Int) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 26.96/11.40 new_primMulNat0(Zero, Succ(x0)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.96/11.40 new_lt5(x0, x1, ty_Bool) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.96/11.40 new_esEs26(x0, x1, ty_Integer) 26.96/11.40 new_esEs4(Nothing, Nothing, x0) 26.96/11.40 new_ltEs20(x0, x1, ty_Char) 26.96/11.40 new_primMulInt(Neg(x0), Neg(x1)) 26.96/11.40 new_lt5(x0, x1, ty_Float) 26.96/11.40 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs31(x0, x1, ty_@0) 26.96/11.40 new_esEs4(Just(x0), Nothing, x1) 26.96/11.40 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.96/11.40 new_esEs8(x0, x1, ty_Double) 26.96/11.40 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs27(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs23(x0, x1, ty_Bool) 26.96/11.40 new_esEs8(x0, x1, ty_@0) 26.96/11.40 new_primCompAux00(x0, LT) 26.96/11.40 new_esEs23(x0, x1, ty_Int) 26.96/11.40 new_sr(Integer(x0), Integer(x1)) 26.96/11.40 new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.96/11.40 new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.96/11.40 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.96/11.40 new_primPlusNat1(Zero, x0) 26.96/11.40 new_ltEs20(x0, x1, ty_Bool) 26.96/11.40 new_lt15(x0, x1) 26.96/11.40 new_esEs21(x0, x1, ty_Bool) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.96/11.40 new_esEs26(x0, x1, ty_Bool) 26.96/11.40 new_compare25(x0, x1, True) 26.96/11.40 new_esEs9(x0, x1, ty_Integer) 26.96/11.40 new_lt5(x0, x1, ty_Int) 26.96/11.40 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs9(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 26.96/11.40 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.96/11.40 new_ltEs7(Nothing, Just(x0), x1) 26.96/11.40 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs14(Double(x0, x1), Double(x2, x3)) 26.96/11.40 new_esEs13(@0, @0) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.96/11.40 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_primCmpNat0(Zero, Zero) 26.96/11.40 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.96/11.40 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.96/11.40 26.96/11.40 We have to consider all minimal (P,Q,R)-chains. 26.96/11.40 ---------------------------------------- 26.96/11.40 26.96/11.40 (23) QDPSizeChangeProof (EQUIVALENT) 26.96/11.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. 26.96/11.40 26.96/11.40 From the DPs we obtained the following set of size-change graphs: 26.96/11.40 *new_elemFM01(Branch(@2(vyw400, vyw401), vyw41, vyw42, vyw43, vyw44), @2(vyw30, vyw31), bc, bd, be) -> new_elemFM0(vyw400, vyw401, vyw41, vyw42, vyw43, vyw44, vyw30, vyw31, new_esEs30(vyw30, vyw31, vyw400, vyw401, new_esEs31(vyw30, vyw400, bd), bd, be), bc, bd, be) 26.96/11.40 The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 10, 4 >= 11, 5 >= 12 26.96/11.40 26.96/11.40 26.96/11.40 *new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs10(new_compare26(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs22(vyw21, vyw15, ba), new_esEs23(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 26.96/11.40 26.96/11.40 26.96/11.40 *new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw19, @2(vyw21, vyw22), h, ba, bb) 26.96/11.40 The graph contains the following edges 5 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 26.96/11.40 26.96/11.40 26.96/11.40 *new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw20, @2(vyw21, vyw22), h, ba, bb) 26.96/11.40 The graph contains the following edges 6 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 26.96/11.40 26.96/11.40 26.96/11.40 ---------------------------------------- 26.96/11.40 26.96/11.40 (24) 26.96/11.40 YES 26.96/11.40 26.96/11.40 ---------------------------------------- 26.96/11.40 26.96/11.40 (25) 26.96/11.40 Obligation: 26.96/11.40 Q DP problem: 26.96/11.40 The TRS P consists of the following rules: 26.96/11.40 26.96/11.40 new_primMulNat(Succ(vyw30100), Succ(vyw400000)) -> new_primMulNat(vyw30100, Succ(vyw400000)) 26.96/11.40 26.96/11.40 R is empty. 26.96/11.40 Q is empty. 26.96/11.40 We have to consider all minimal (P,Q,R)-chains. 26.96/11.40 ---------------------------------------- 26.96/11.40 26.96/11.40 (26) QDPSizeChangeProof (EQUIVALENT) 26.96/11.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. 26.96/11.40 26.96/11.40 From the DPs we obtained the following set of size-change graphs: 26.96/11.40 *new_primMulNat(Succ(vyw30100), Succ(vyw400000)) -> new_primMulNat(vyw30100, Succ(vyw400000)) 26.96/11.40 The graph contains the following edges 1 > 1, 2 >= 2 26.96/11.40 26.96/11.40 26.96/11.40 ---------------------------------------- 26.96/11.40 26.96/11.40 (27) 26.96/11.40 YES 26.96/11.40 26.96/11.40 ---------------------------------------- 26.96/11.40 26.96/11.40 (28) 26.96/11.40 Obligation: 26.96/11.40 Q DP problem: 26.96/11.40 The TRS P consists of the following rules: 26.96/11.40 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(app(app(ty_@3, ea), eb), ec)), de)) -> new_lt2(vyw4310, vyw4510, ea, eb, ec) 26.96/11.40 new_ltEs3(Left(vyw4310), Left(vyw4510), app(ty_Maybe, bcd), bce) -> new_ltEs(vyw4310, vyw4510, bcd) 26.96/11.40 new_lt0(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(ty_[], ce)) -> new_ltEs1(vyw4311, vyw4511, ce) 26.96/11.40 new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(ty_[], beb)) -> new_ltEs1(vyw4310, vyw4510, beb) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(app(ty_@2, ha), hb))) -> new_ltEs0(vyw4312, vyw4512, ha, hb) 26.96/11.40 new_primCompAux(vyw4300, vyw4500, vyw102, app(app(app(ty_@3, fd), ff), fg)) -> new_compare3(vyw4300, vyw4500, fd, ff, fg) 26.96/11.40 new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(app(ty_@2, ba), bb))) -> new_ltEs0(vyw4310, vyw4510, ba, bb) 26.96/11.40 new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(app(ty_@2, ha), hb)) -> new_ltEs0(vyw4312, vyw4512, ha, hb) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(app(ty_@2, cc), cd)) -> new_ltEs0(vyw4311, vyw4511, cc, cd) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bbf), gg, bab) -> new_lt1(vyw4310, vyw4510, bbf) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, ed), ee), de) -> new_lt3(vyw4310, vyw4510, ed, ee) 26.96/11.40 new_compare20(vyw430, vyw450, False, gb) -> new_ltEs(vyw430, vyw450, gb) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(app(ty_@2, cc), cd))) -> new_ltEs0(vyw4311, vyw4511, cc, cd) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bbd), bbe), gg, bab) -> new_lt0(vyw4310, vyw4510, bbd, bbe) 26.96/11.40 new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(ty_Maybe, bdg))) -> new_ltEs(vyw4310, vyw4510, bdg) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(app(ty_@2, bac), bad), bab) -> new_lt0(vyw4311, vyw4511, bac, bad) 26.96/11.40 new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(ty_Maybe, baa), bab) -> new_lt(vyw4311, vyw4511, baa) 26.96/11.40 new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bg), bh)) -> new_ltEs3(vyw4310, vyw4510, bg, bh) 26.96/11.40 new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(app(ty_Either, bef), beg))) -> new_ltEs3(vyw4310, vyw4510, bef, beg) 26.96/11.40 new_ltEs(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) 26.96/11.40 new_primCompAux(vyw4300, vyw4500, vyw102, app(app(ty_@2, fa), fb)) -> new_compare2(vyw4300, vyw4500, fa, fb) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(ty_[], bbf)), gg), bab)) -> new_lt1(vyw4310, vyw4510, bbf) 26.96/11.40 new_ltEs3(Left(vyw4310), Left(vyw4510), app(ty_[], bch), bce) -> new_ltEs1(vyw4310, vyw4510, bch) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(ty_Maybe, cb)) -> new_ltEs(vyw4311, vyw4511, cb) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], dh), de) -> new_lt1(vyw4310, vyw4510, dh) 26.96/11.40 new_lt2(vyw430, vyw450, bfa, bfb, bfc) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(app(ty_Either, db), dc))) -> new_ltEs3(vyw4311, vyw4511, db, dc) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(app(ty_Either, ed), ee)), de)) -> new_lt3(vyw4310, vyw4510, ed, ee) 26.96/11.40 new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf))) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) 26.96/11.40 new_compare23(vyw430, vyw450, False, bfd, bfe) -> new_ltEs3(vyw430, vyw450, bfd, bfe) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(ty_[], ce))) -> new_ltEs1(vyw4311, vyw4511, ce) 26.96/11.40 new_ltEs3(Left(vyw4310), Left(vyw4510), app(app(ty_@2, bcf), bcg), bce) -> new_ltEs0(vyw4310, vyw4510, bcf, bcg) 26.96/11.40 new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(app(app(ty_@3, bda), bdb), bdc)), bce)) -> new_ltEs2(vyw4310, vyw4510, bda, bdb, bdc) 26.96/11.40 new_compare2(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, df), dg), de) -> new_lt0(vyw4310, vyw4510, df, dg) 26.96/11.40 new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(ty_[], beb))) -> new_ltEs1(vyw4310, vyw4510, beb) 26.96/11.40 new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(app(app(ty_@3, bec), bed), bee))) -> new_ltEs2(vyw4310, vyw4510, bec, bed, bee) 26.96/11.40 new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(ty_[], bc))) -> new_ltEs1(vyw4310, vyw4510, bc) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(app(ty_Either, bba), bbb)), bab)) -> new_lt3(vyw4311, vyw4511, bba, bbb) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(ty_Maybe, cb))) -> new_ltEs(vyw4311, vyw4511, cb) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(app(ty_Either, bcb), bcc)), gg), bab)) -> new_lt3(vyw4310, vyw4510, bcb, bcc) 26.96/11.40 new_ltEs3(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, bda), bdb), bdc), bce) -> new_ltEs2(vyw4310, vyw4510, bda, bdb, bdc) 26.96/11.40 new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(app(ty_@2, bcf), bcg)), bce)) -> new_ltEs0(vyw4310, vyw4510, bcf, bcg) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(app(ty_Either, hg), hh)) -> new_ltEs3(vyw4312, vyw4512, hg, hh) 26.96/11.40 new_compare4(vyw430, vyw450, bfd, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(ty_[], bae)), bab)) -> new_lt1(vyw4311, vyw4511, bae) 26.96/11.40 new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(ty_Maybe, bcd)), bce)) -> new_ltEs(vyw4310, vyw4510, bcd) 26.96/11.40 new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw4310, vyw4510, h) 26.96/11.40 new_lt(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bbg), bbh), bca), gg, bab) -> new_lt2(vyw4310, vyw4510, bbg, bbh, bca) 26.96/11.40 new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, ge, app(ty_[], ef)) -> new_compare(vyw431, vyw451, ef) 26.96/11.40 new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(ty_[], bch)), bce)) -> new_ltEs1(vyw4310, vyw4510, bch) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs2(vyw4312, vyw4512, hd, he, hf) 26.96/11.40 new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), beh) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) 26.96/11.40 new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, bfa), bfb), bfc), beh) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(ty_[], hc)) -> new_ltEs1(vyw4312, vyw4512, hc) 26.96/11.40 new_ltEs3(Left(vyw4310), Left(vyw4510), app(app(ty_Either, bdd), bde), bce) -> new_ltEs3(vyw4310, vyw4510, bdd, bde) 26.96/11.40 new_primCompAux(vyw4300, vyw4500, vyw102, app(ty_Maybe, eh)) -> new_compare1(vyw4300, vyw4500, eh) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(app(ty_Either, hg), hh))) -> new_ltEs3(vyw4312, vyw4512, hg, hh) 26.96/11.40 new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(app(ty_Either, bdd), bde)), bce)) -> new_ltEs3(vyw4310, vyw4510, bdd, bde) 26.96/11.40 new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, gc), gd), beh) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, bcb), bcc), gg, bab) -> new_lt3(vyw4310, vyw4510, bcb, bcc) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(ty_Maybe, gh))) -> new_ltEs(vyw4312, vyw4512, gh) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(ty_[], bae), bab) -> new_lt1(vyw4311, vyw4511, bae) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(app(ty_@2, bac), bad)), bab)) -> new_lt0(vyw4311, vyw4511, bac, bad) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(app(ty_@2, bbd), bbe)), gg), bab)) -> new_lt0(vyw4310, vyw4510, bbd, bbe) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(app(ty_@2, df), dg)), de)) -> new_lt0(vyw4310, vyw4510, df, dg) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), gg), bab)) -> new_lt2(vyw4310, vyw4510, bbg, bbh, bca) 26.96/11.40 new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(app(ty_@2, bdh), bea))) -> new_ltEs0(vyw4310, vyw4510, bdh, bea) 26.96/11.40 new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(app(ty_@2, bdh), bea)) -> new_ltEs0(vyw4310, vyw4510, bdh, bea) 26.96/11.40 new_compare3(vyw430, vyw450, bfa, bfb, bfc) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(ty_Maybe, gh)) -> new_ltEs(vyw4312, vyw4512, gh) 26.96/11.40 new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), beh) -> new_compare(vyw4301, vyw4501, eg) 26.96/11.40 new_primCompAux(vyw4300, vyw4500, vyw102, app(app(ty_Either, fh), ga)) -> new_compare4(vyw4300, vyw4500, fh, ga) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs2(vyw4311, vyw4511, cf, cg, da) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, dd), de) -> new_lt(vyw4310, vyw4510, dd) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(ty_[], dh)), de)) -> new_lt1(vyw4310, vyw4510, dh) 26.96/11.40 new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(app(ty_Either, bef), beg)) -> new_ltEs3(vyw4310, vyw4510, bef, beg) 26.96/11.40 new_compare1(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(app(app(ty_@3, baf), bag), bah)), bab)) -> new_lt2(vyw4311, vyw4511, baf, bag, bah) 26.96/11.40 new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(ty_[], hc))) -> new_ltEs1(vyw4312, vyw4512, hc) 26.96/11.40 new_ltEs1(vyw431, vyw451, ef) -> new_compare(vyw431, vyw451, ef) 26.96/11.40 new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, bfd), bfe), beh) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.40 new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(app(ty_Either, bg), bh))) -> new_ltEs3(vyw4310, vyw4510, bg, bh) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(app(app(ty_@3, cf), cg), da))) -> new_ltEs2(vyw4311, vyw4511, cf, cg, da) 26.96/11.40 new_compare22(vyw430, vyw450, False, bfa, bfb, bfc) -> new_ltEs2(vyw430, vyw450, bfa, bfb, bfc) 26.96/11.40 new_primCompAux(vyw4300, vyw4500, vyw102, app(ty_[], fc)) -> new_compare(vyw4300, vyw4500, fc) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(app(ty_Either, db), dc)) -> new_ltEs3(vyw4311, vyw4511, db, dc) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs2(vyw4312, vyw4512, hd, he, hf) 26.96/11.40 new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(ty_Maybe, dd)), de)) -> new_lt(vyw4310, vyw4510, dd) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(ty_Maybe, bbc)), gg), bab)) -> new_lt(vyw4310, vyw4510, bbc) 26.96/11.40 new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_@2, ba), bb)) -> new_ltEs0(vyw4310, vyw4510, ba, bb) 26.96/11.40 new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_Maybe, h)) -> new_ltEs(vyw4310, vyw4510, h) 26.96/11.40 new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bbc), gg, bab) -> new_lt(vyw4310, vyw4510, bbc) 26.96/11.40 new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(ty_Maybe, baa)), bab)) -> new_lt(vyw4311, vyw4511, baa) 26.96/11.40 new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, ea), eb), ec), de) -> new_lt2(vyw4310, vyw4510, ea, eb, ec) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(app(app(ty_@3, baf), bag), bah), bab) -> new_lt2(vyw4311, vyw4511, baf, bag, bah) 26.96/11.40 new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_[], bc)) -> new_ltEs1(vyw4310, vyw4510, bc) 26.96/11.40 new_lt3(vyw430, vyw450, bfd, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.40 new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(app(ty_Either, bba), bbb), bab) -> new_lt3(vyw4311, vyw4511, bba, bbb) 26.96/11.40 new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, gb), beh) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) 26.96/11.40 new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(ty_Maybe, bdg)) -> new_ltEs(vyw4310, vyw4510, bdg) 26.96/11.40 new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs2(vyw4310, vyw4510, bec, bed, bee) 26.96/11.40 26.96/11.40 The TRS R consists of the following rules: 26.96/11.40 26.96/11.40 new_ltEs6(EQ, EQ) -> True 26.96/11.40 new_lt20(vyw430, vyw450, ty_Double) -> new_lt12(vyw430, vyw450) 26.96/11.40 new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT 26.96/11.40 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.96/11.40 new_primPlusNat0(Zero, Zero) -> Zero 26.96/11.40 new_esEs8(vyw4310, vyw4510, app(app(ty_@2, bbd), bbe)) -> new_esEs5(vyw4310, vyw4510, bbd, bbe) 26.96/11.40 new_esEs25(vyw301, vyw4001, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(vyw301, vyw4001, cgb, cgc, cgd) 26.96/11.40 new_pePe(True, vyw101) -> True 26.96/11.40 new_compare29(vyw430, vyw450, bfa, bfb, bfc) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, app(app(ty_@2, ha), hb)) -> new_ltEs9(vyw4312, vyw4512, ha, hb) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_Float) -> new_esEs18(vyw4310, vyw4510) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.40 new_ltEs6(GT, GT) -> True 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Float, bce) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_Int) -> new_lt17(vyw4310, vyw4510) 26.96/11.40 new_lt20(vyw430, vyw450, ty_Bool) -> new_lt15(vyw430, vyw450) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Ordering) -> new_esEs10(vyw4311, vyw4511) 26.96/11.40 new_esEs27(vyw4310, vyw4510, app(ty_[], dh)) -> new_esEs16(vyw4310, vyw4510, dh) 26.96/11.40 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.96/11.40 new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT 26.96/11.40 new_compare26(vyw43, vyw45, True, ge, beh) -> EQ 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.40 new_compare16(vyw430, vyw450, gc, gd) -> new_compare26(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_Char) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.40 new_compare210(vyw430, vyw450, True, bfa, bfb, bfc) -> EQ 26.96/11.40 new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) 26.96/11.40 new_compare211(vyw430, vyw450, True, gb) -> EQ 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_@0) -> new_ltEs11(vyw431, vyw451) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.40 new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) 26.96/11.40 new_compare14(vyw4300, vyw4500, app(app(ty_Either, fh), ga)) -> new_compare6(vyw4300, vyw4500, fh, ga) 26.96/11.40 new_ltEs6(EQ, GT) -> True 26.96/11.40 new_lt21(vyw4310, vyw4510, app(app(ty_Either, ed), ee)) -> new_lt19(vyw4310, vyw4510, ed, ee) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Integer, bce) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.40 new_esEs25(vyw301, vyw4001, app(app(ty_@2, cgf), cgg)) -> new_esEs5(vyw301, vyw4001, cgf, cgg) 26.96/11.40 new_compare113(vyw430, vyw450, False) -> GT 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cdc), cdd), cde)) -> new_esEs6(vyw300, vyw4000, cdc, cdd, cde) 26.96/11.40 new_lt15(vyw430, vyw450) -> new_esEs10(new_compare28(vyw430, vyw450), LT) 26.96/11.40 new_esEs8(vyw4310, vyw4510, app(app(app(ty_@3, bbg), bbh), bca)) -> new_esEs6(vyw4310, vyw4510, bbg, bbh, bca) 26.96/11.40 new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False 26.96/11.40 new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, app(app(app(ty_@3, dcd), dce), dcf)) -> new_esEs6(vyw300, vyw4000, dcd, dce, dcf) 26.96/11.40 new_esEs20(vyw430, vyw450, app(app(ty_@2, gc), gd)) -> new_esEs5(vyw430, vyw450, gc, gd) 26.96/11.40 new_ltEs17(vyw431, vyw451) -> new_not(new_esEs10(new_compare13(vyw431, vyw451), GT)) 26.96/11.40 new_lt20(vyw430, vyw450, app(ty_Maybe, gb)) -> new_lt7(vyw430, vyw450, gb) 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Int) -> new_esEs19(vyw430, vyw450) 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_esEs22(vyw300, vyw4000, app(ty_Maybe, cad)) -> new_esEs4(vyw300, vyw4000, cad) 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_@0) -> new_compare17(vyw4300, vyw4500) 26.96/11.40 new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.40 new_esEs26(vyw302, vyw4002, app(ty_Ratio, chg)) -> new_esEs11(vyw302, vyw4002, chg) 26.96/11.40 new_compare14(vyw4300, vyw4500, app(ty_Maybe, eh)) -> new_compare15(vyw4300, vyw4500, eh) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_Integer) -> new_esEs15(vyw4310, vyw4510) 26.96/11.40 new_esEs10(GT, GT) -> True 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, app(app(ty_@2, bdh), bea)) -> new_ltEs9(vyw4310, vyw4510, bdh, bea) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.40 new_not(True) -> False 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_Ordering) -> new_compare7(vyw4300, vyw4500) 26.96/11.40 new_lt7(vyw430, vyw450, gb) -> new_esEs10(new_compare15(vyw430, vyw450, gb), LT) 26.96/11.40 new_lt20(vyw430, vyw450, ty_Float) -> new_lt16(vyw430, vyw450) 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_Char) -> new_compare9(vyw4300, vyw4500) 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_Double) -> new_esEs14(vyw4310, vyw4510) 26.96/11.40 new_primCompAux00(vyw108, LT) -> LT 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_Ordering, daf) -> new_esEs10(vyw300, vyw4000) 26.96/11.40 new_primCmpNat0(Zero, Zero) -> EQ 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, cdf)) -> new_esEs11(vyw300, vyw4000, cdf) 26.96/11.40 new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bhb), bhc), bhd)) -> new_esEs6(vyw300, vyw4000, bhb, bhc, bhd) 26.96/11.40 new_lt4(vyw4311, vyw4511, app(ty_Ratio, bfg)) -> new_lt8(vyw4311, vyw4511, bfg) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Ordering) -> new_esEs10(vyw301, vyw4001) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(ty_@2, bcf), bcg), bce) -> new_ltEs9(vyw4310, vyw4510, bcf, bcg) 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) 26.96/11.40 new_compare11(vyw430, vyw450, False) -> GT 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Ordering) -> new_ltEs6(vyw4312, vyw4512) 26.96/11.40 new_lt8(vyw430, vyw450, bga) -> new_esEs10(new_compare8(vyw430, vyw450, bga), LT) 26.96/11.40 new_esEs20(vyw430, vyw450, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs6(vyw430, vyw450, bfa, bfb, bfc) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, cdg), cdh)) -> new_esEs5(vyw300, vyw4000, cdg, cdh) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) 26.96/11.40 new_esEs20(vyw430, vyw450, app(app(ty_Either, bfd), bfe)) -> new_esEs7(vyw430, vyw450, bfd, bfe) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Float) -> new_lt16(vyw4311, vyw4511) 26.96/11.40 new_ltEs6(LT, GT) -> True 26.96/11.40 new_lt9(vyw430, vyw450, gc, gd) -> new_esEs10(new_compare16(vyw430, vyw450, gc, gd), LT) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_@0) -> new_esEs13(vyw302, vyw4002) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_Integer, daf) -> new_esEs15(vyw300, vyw4000) 26.96/11.40 new_compare14(vyw4300, vyw4500, app(ty_Ratio, bgd)) -> new_compare8(vyw4300, vyw4500, bgd) 26.96/11.40 new_compare9(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) 26.96/11.40 new_primEqNat0(Succ(vyw3000), Zero) -> False 26.96/11.40 new_primEqNat0(Zero, Succ(vyw40000)) -> False 26.96/11.40 new_compare210(vyw430, vyw450, False, bfa, bfb, bfc) -> new_compare112(vyw430, vyw450, new_ltEs4(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.40 new_lt20(vyw430, vyw450, app(ty_Ratio, bga)) -> new_lt8(vyw430, vyw450, bga) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_Ordering) -> new_esEs10(vyw302, vyw4002) 26.96/11.40 new_ltEs7(Nothing, Just(vyw4510), bgb) -> True 26.96/11.40 new_esEs21(vyw300, vyw4000, app(ty_Ratio, bhe)) -> new_esEs11(vyw300, vyw4000, bhe) 26.96/11.40 new_compare10(vyw430, vyw450, True, bfd, bfe) -> LT 26.96/11.40 new_ltEs5(vyw4312, vyw4512, app(app(ty_Either, hg), hh)) -> new_ltEs18(vyw4312, vyw4512, hg, hh) 26.96/11.40 new_esEs29(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.40 new_lt20(vyw430, vyw450, app(ty_[], eg)) -> new_lt14(vyw430, vyw450, eg) 26.96/11.40 new_lt14(vyw430, vyw450, eg) -> new_esEs10(new_compare0(vyw430, vyw450, eg), LT) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Float) -> new_lt16(vyw4310, vyw4510) 26.96/11.40 new_compare18(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, app(ty_Ratio, dae)) -> new_ltEs8(vyw4311, vyw4511, dae) 26.96/11.40 new_primCompAux00(vyw108, GT) -> GT 26.96/11.40 new_esEs10(EQ, EQ) -> True 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_Float, daf) -> new_esEs18(vyw300, vyw4000) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_@0) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.40 new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), ddg) -> new_asAs(new_esEs28(vyw300, vyw4000, ddg), new_esEs29(vyw301, vyw4001, ddg)) 26.96/11.40 new_lt4(vyw4311, vyw4511, app(app(ty_Either, bba), bbb)) -> new_lt19(vyw4311, vyw4511, bba, bbb) 26.96/11.40 new_esEs20(vyw430, vyw450, ty_@0) -> new_esEs13(vyw430, vyw450) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Integer) -> new_lt13(vyw4311, vyw4511) 26.96/11.40 new_esEs8(vyw4310, vyw4510, app(app(ty_Either, bcb), bcc)) -> new_esEs7(vyw4310, vyw4510, bcb, bcc) 26.96/11.40 new_lt20(vyw430, vyw450, ty_Integer) -> new_lt13(vyw430, vyw450) 26.96/11.40 new_esEs5(@2(vyw300, vyw301), @2(vyw4000, vyw4001), cab, cac) -> new_asAs(new_esEs22(vyw300, vyw4000, cab), new_esEs23(vyw301, vyw4001, cac)) 26.96/11.40 new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_@0) -> new_ltEs11(vyw4311, vyw4511) 26.96/11.40 new_lt4(vyw4311, vyw4511, app(ty_Maybe, baa)) -> new_lt7(vyw4311, vyw4511, baa) 26.96/11.40 new_compare28(vyw430, vyw450) -> new_compare25(vyw430, vyw450, new_esEs17(vyw430, vyw450)) 26.96/11.40 new_compare7(vyw430, vyw450) -> new_compare27(vyw430, vyw450, new_esEs10(vyw430, vyw450)) 26.96/11.40 new_lt13(vyw430, vyw450) -> new_esEs10(new_compare19(vyw430, vyw450), LT) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_Double) -> new_esEs14(vyw302, vyw4002) 26.96/11.40 new_esEs9(vyw4311, vyw4511, app(ty_Ratio, bfg)) -> new_esEs11(vyw4311, vyw4511, bfg) 26.96/11.40 new_compare12(vyw83, vyw84, vyw85, vyw86, True, vyw88, bge, bgf) -> new_compare110(vyw83, vyw84, vyw85, vyw86, True, bge, bgf) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_Int) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.40 new_esEs22(vyw300, vyw4000, app(ty_Ratio, cba)) -> new_esEs11(vyw300, vyw4000, cba) 26.96/11.40 new_ltEs10(vyw431, vyw451) -> new_not(new_esEs10(new_compare9(vyw431, vyw451), GT)) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_Float) -> new_esEs18(vyw302, vyw4002) 26.96/11.40 new_esEs19(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_Bool, daf) -> new_esEs17(vyw300, vyw4000) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, app(app(ty_Either, bef), beg)) -> new_ltEs18(vyw4310, vyw4510, bef, beg) 26.96/11.40 new_compare18(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.40 new_compare18(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.40 new_primCmpNat0(Zero, Succ(vyw45000)) -> LT 26.96/11.40 new_compare14(vyw4300, vyw4500, app(app(app(ty_@3, fd), ff), fg)) -> new_compare29(vyw4300, vyw4500, fd, ff, fg) 26.96/11.40 new_esEs10(LT, EQ) -> False 26.96/11.40 new_esEs10(EQ, LT) -> False 26.96/11.40 new_compare26(@2(vyw430, vyw431), @2(vyw450, vyw451), False, ge, beh) -> new_compare12(vyw430, vyw431, vyw450, vyw451, new_lt20(vyw430, vyw450, ge), new_asAs(new_esEs20(vyw430, vyw450, ge), new_ltEs19(vyw431, vyw451, beh)), ge, beh) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, dba), dbb), dbc), daf) -> new_esEs6(vyw300, vyw4000, dba, dbb, dbc) 26.96/11.40 new_esEs21(vyw300, vyw4000, app(app(ty_@2, bhf), bhg)) -> new_esEs5(vyw300, vyw4000, bhf, bhg) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_Bool) -> new_esEs17(vyw302, vyw4002) 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Ordering) -> new_esEs10(vyw430, vyw450) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, app(ty_Maybe, cb)) -> new_ltEs7(vyw4311, vyw4511, cb) 26.96/11.40 new_lt4(vyw4311, vyw4511, app(ty_[], bae)) -> new_lt14(vyw4311, vyw4511, bae) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_@0) -> new_esEs13(vyw301, vyw4001) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_Double, daf) -> new_esEs14(vyw300, vyw4000) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Int) -> new_lt17(vyw4310, vyw4510) 26.96/11.40 new_sr(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) 26.96/11.40 new_primCmpNat0(Succ(vyw43000), Zero) -> GT 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Int) -> new_lt17(vyw4311, vyw4511) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Ordering, bce) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(ty_Either, bdd), bde), bce) -> new_ltEs18(vyw4310, vyw4510, bdd, bde) 26.96/11.40 new_pePe(False, vyw101) -> vyw101 26.96/11.40 new_lt20(vyw430, vyw450, ty_@0) -> new_lt11(vyw430, vyw450) 26.96/11.40 new_esEs8(vyw4310, vyw4510, app(ty_Ratio, bff)) -> new_esEs11(vyw4310, vyw4510, bff) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_Maybe, bcd), bce) -> new_ltEs7(vyw4310, vyw4510, bcd) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Bool) -> new_ltEs15(vyw4312, vyw4512) 26.96/11.40 new_esEs26(vyw302, vyw4002, app(app(ty_@2, chh), daa)) -> new_esEs5(vyw302, vyw4002, chh, daa) 26.96/11.40 new_ltEs6(LT, LT) -> True 26.96/11.40 new_esEs9(vyw4311, vyw4511, app(app(ty_@2, bac), bad)) -> new_esEs5(vyw4311, vyw4511, bac, bad) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.40 new_compare211(vyw430, vyw450, False, gb) -> new_compare111(vyw430, vyw450, new_ltEs7(vyw430, vyw450, gb), gb) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Double) -> new_lt12(vyw4310, vyw4510) 26.96/11.40 new_esEs18(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs19(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, app(ty_Maybe, gh)) -> new_ltEs7(vyw4312, vyw4512, gh) 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_Integer) -> new_compare19(vyw4300, vyw4500) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Integer) -> new_ltEs13(vyw4312, vyw4512) 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Bool) -> new_ltEs15(vyw431, vyw451) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Bool) -> new_lt15(vyw4310, vyw4510) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Double) -> new_ltEs12(vyw4312, vyw4512) 26.96/11.40 new_esEs23(vyw301, vyw4001, app(ty_Maybe, cbf)) -> new_esEs4(vyw301, vyw4001, cbf) 26.96/11.40 new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False 26.96/11.40 new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Int) -> new_ltEs17(vyw4312, vyw4512) 26.96/11.40 new_lt16(vyw430, vyw450) -> new_esEs10(new_compare5(vyw430, vyw450), LT) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.40 new_compare14(vyw4300, vyw4500, app(ty_[], fc)) -> new_compare0(vyw4300, vyw4500, fc) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Bool) -> new_ltEs15(vyw4311, vyw4511) 26.96/11.40 new_esEs23(vyw301, vyw4001, app(app(ty_Either, ccf), ccg)) -> new_esEs7(vyw301, vyw4001, ccf, ccg) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_Char) -> new_esEs12(vyw302, vyw4002) 26.96/11.40 new_compare5(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.40 new_compare5(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.40 new_esEs26(vyw302, vyw4002, app(ty_[], chc)) -> new_esEs16(vyw302, vyw4002, chc) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Ordering) -> new_esEs10(vyw4310, vyw4510) 26.96/11.40 new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.40 new_ltEs19(vyw431, vyw451, app(ty_[], ef)) -> new_ltEs14(vyw431, vyw451, ef) 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_Bool) -> new_compare28(vyw4300, vyw4500) 26.96/11.40 new_esEs20(vyw430, vyw450, app(ty_Ratio, bga)) -> new_esEs11(vyw430, vyw450, bga) 26.96/11.40 new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_@0, daf) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_lt18(vyw430, vyw450, bfa, bfb, bfc) -> new_esEs10(new_compare29(vyw430, vyw450, bfa, bfb, bfc), LT) 26.96/11.40 new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_@0) -> new_lt11(vyw4310, vyw4510) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Ratio, ddd)) -> new_ltEs8(vyw4310, vyw4510, ddd) 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Double) -> new_ltEs12(vyw431, vyw451) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_Either, dbg), dbh), daf) -> new_esEs7(vyw300, vyw4000, dbg, dbh) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Ratio, dbd), daf) -> new_esEs11(vyw300, vyw4000, dbd) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Float) -> new_esEs18(vyw4311, vyw4511) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_[], bch), bce) -> new_ltEs14(vyw4310, vyw4510, bch) 26.96/11.40 new_esEs24(vyw300, vyw4000, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs6(vyw300, vyw4000, ceh, cfa, cfb) 26.96/11.40 new_primMulNat0(Succ(vyw30100), Zero) -> Zero 26.96/11.40 new_primMulNat0(Zero, Succ(vyw400000)) -> Zero 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Integer) -> new_lt13(vyw4310, vyw4510) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.40 new_ltEs6(LT, EQ) -> True 26.96/11.40 new_esEs25(vyw301, vyw4001, app(app(ty_Either, cgh), cha)) -> new_esEs7(vyw301, vyw4001, cgh, cha) 26.96/11.40 new_compare14(vyw4300, vyw4500, app(app(ty_@2, fa), fb)) -> new_compare16(vyw4300, vyw4500, fa, fb) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Double) -> new_ltEs12(vyw4311, vyw4511) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Integer) -> new_ltEs13(vyw431, vyw451) 26.96/11.40 new_primPlusNat1(Succ(vyw740), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw740, vyw400000))) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, app(ty_[], hc)) -> new_ltEs14(vyw4312, vyw4512, hc) 26.96/11.40 new_lt10(vyw430, vyw450) -> new_esEs10(new_compare9(vyw430, vyw450), LT) 26.96/11.40 new_lt21(vyw4310, vyw4510, app(ty_[], dh)) -> new_lt14(vyw4310, vyw4510, dh) 26.96/11.40 new_esEs28(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_primPlusNat0(Succ(vyw7400), Zero) -> Succ(vyw7400) 26.96/11.40 new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Char) -> new_lt10(vyw4311, vyw4511) 26.96/11.40 new_lt21(vyw4310, vyw4510, app(ty_Ratio, dad)) -> new_lt8(vyw4310, vyw4510, dad) 26.96/11.40 new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Float) -> new_esEs18(vyw301, vyw4001) 26.96/11.40 new_compare19(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(app(ty_@2, bbd), bbe)) -> new_lt9(vyw4310, vyw4510, bbd, bbe) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.40 new_esEs9(vyw4311, vyw4511, app(ty_Maybe, baa)) -> new_esEs4(vyw4311, vyw4511, baa) 26.96/11.40 new_esEs20(vyw430, vyw450, app(ty_Maybe, gb)) -> new_esEs4(vyw430, vyw450, gb) 26.96/11.40 new_esEs22(vyw300, vyw4000, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(vyw300, vyw4000, caf, cag, cah) 26.96/11.40 new_esEs9(vyw4311, vyw4511, app(app(app(ty_@3, baf), bag), bah)) -> new_esEs6(vyw4311, vyw4511, baf, bag, bah) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_Char) -> new_lt10(vyw4310, vyw4510) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.40 new_lt20(vyw430, vyw450, ty_Char) -> new_lt10(vyw430, vyw450) 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_Int) -> new_compare13(vyw4300, vyw4500) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Maybe, dag), daf) -> new_esEs4(vyw300, vyw4000, dag) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.40 new_esEs23(vyw301, vyw4001, app(app(ty_@2, ccd), cce)) -> new_esEs5(vyw301, vyw4001, ccd, cce) 26.96/11.40 new_lt4(vyw4311, vyw4511, app(app(ty_@2, bac), bad)) -> new_lt9(vyw4311, vyw4511, bac, bad) 26.96/11.40 new_ltEs9(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, de) -> new_pePe(new_lt21(vyw4310, vyw4510, ca), new_asAs(new_esEs27(vyw4310, vyw4510, ca), new_ltEs20(vyw4311, vyw4511, de))) 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_Float) -> new_compare5(vyw4300, vyw4500) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, app(ty_Ratio, ddf)) -> new_ltEs8(vyw4310, vyw4510, ddf) 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_@0) -> new_esEs13(vyw4310, vyw4510) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_Char, daf) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs4(vyw4310, vyw4510, bd, be, bf) 26.96/11.40 new_esEs23(vyw301, vyw4001, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs6(vyw301, vyw4001, cbh, cca, ccb) 26.96/11.40 new_esEs16([], [], bgg) -> True 26.96/11.40 new_esEs21(vyw300, vyw4000, app(ty_Maybe, bgh)) -> new_esEs4(vyw300, vyw4000, bgh) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Ordering) -> new_esEs10(vyw301, vyw4001) 26.96/11.40 new_lt20(vyw430, vyw450, app(app(ty_@2, gc), gd)) -> new_lt9(vyw430, vyw450, gc, gd) 26.96/11.40 new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.40 new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) 26.96/11.40 new_ltEs13(vyw431, vyw451) -> new_not(new_esEs10(new_compare19(vyw431, vyw451), GT)) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) 26.96/11.40 new_esEs28(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.40 new_compare14(vyw4300, vyw4500, ty_Double) -> new_compare18(vyw4300, vyw4500) 26.96/11.40 new_compare6(vyw430, vyw450, bfd, bfe) -> new_compare24(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_Int) -> new_esEs19(vyw4310, vyw4510) 26.96/11.40 new_esEs24(vyw300, vyw4000, app(app(ty_@2, cfd), cfe)) -> new_esEs5(vyw300, vyw4000, cfd, cfe) 26.96/11.40 new_esEs10(LT, LT) -> True 26.96/11.40 new_esEs24(vyw300, vyw4000, app(app(ty_Either, cff), cfg)) -> new_esEs7(vyw300, vyw4000, cff, cfg) 26.96/11.40 new_esEs14(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs19(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) 26.96/11.40 new_lt17(vyw430, vyw450) -> new_esEs10(new_compare13(vyw430, vyw450), LT) 26.96/11.40 new_esEs8(vyw4310, vyw4510, app(ty_Maybe, bbc)) -> new_esEs4(vyw4310, vyw4510, bbc) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, cda)) -> new_esEs4(vyw300, vyw4000, cda) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_@0) -> new_ltEs11(vyw4312, vyw4512) 26.96/11.40 new_esEs27(vyw4310, vyw4510, app(app(ty_@2, df), dg)) -> new_esEs5(vyw4310, vyw4510, df, dg) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Float) -> new_esEs18(vyw4310, vyw4510) 26.96/11.40 new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.40 new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) 26.96/11.40 new_esEs12(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) 26.96/11.40 new_esEs26(vyw302, vyw4002, app(app(ty_Either, dab), dac)) -> new_esEs7(vyw302, vyw4002, dab, dac) 26.96/11.40 new_lt6(vyw430, vyw450) -> new_esEs10(new_compare7(vyw430, vyw450), LT) 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Integer) -> new_esEs15(vyw430, vyw450) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, bda), bdb), bdc), bce) -> new_ltEs4(vyw4310, vyw4510, bda, bdb, bdc) 26.96/11.40 new_ltEs15(True, True) -> True 26.96/11.40 new_esEs24(vyw300, vyw4000, app(ty_Maybe, cef)) -> new_esEs4(vyw300, vyw4000, cef) 26.96/11.40 new_ltEs6(GT, EQ) -> False 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_Char) -> new_esEs12(vyw4310, vyw4510) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_@0) -> new_lt11(vyw4310, vyw4510) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.40 new_esEs27(vyw4310, vyw4510, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs6(vyw4310, vyw4510, ea, eb, ec) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_Ordering) -> new_lt6(vyw4310, vyw4510) 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Bool) -> new_esEs17(vyw430, vyw450) 26.96/11.40 new_ltEs11(vyw431, vyw451) -> new_not(new_esEs10(new_compare17(vyw431, vyw451), GT)) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_@0) -> new_esEs13(vyw301, vyw4001) 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), app(ty_[], dah), daf) -> new_esEs16(vyw300, vyw4000, dah) 26.96/11.40 new_lt20(vyw430, vyw450, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt18(vyw430, vyw450, bfa, bfb, bfc) 26.96/11.40 new_esEs29(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Float) -> new_esEs18(vyw301, vyw4001) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Integer) -> new_esEs15(vyw4310, vyw4510) 26.96/11.40 new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Float) -> new_esEs18(vyw430, vyw450) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_Double) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.40 new_compare0([], :(vyw4500, vyw4501), eg) -> LT 26.96/11.40 new_asAs(True, vyw53) -> vyw53 26.96/11.40 new_compare10(vyw430, vyw450, False, bfd, bfe) -> GT 26.96/11.40 new_compare113(vyw430, vyw450, True) -> LT 26.96/11.40 new_esEs17(False, True) -> False 26.96/11.40 new_esEs17(True, False) -> False 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), ty_Int, daf) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, app(app(ty_@2, cc), cd)) -> new_ltEs9(vyw4311, vyw4511, cc, cd) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_Float) -> new_ltEs16(vyw4310, vyw4510) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_Bool) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.40 new_esEs26(vyw302, vyw4002, ty_Int) -> new_esEs19(vyw302, vyw4002) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, app(ty_Maybe, dcb)) -> new_esEs4(vyw300, vyw4000, dcb) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_Ordering) -> new_esEs10(vyw300, vyw4000) 26.96/11.40 new_lt11(vyw430, vyw450) -> new_esEs10(new_compare17(vyw430, vyw450), LT) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.40 new_lt20(vyw430, vyw450, ty_Int) -> new_lt17(vyw430, vyw450) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Float) -> new_ltEs16(vyw4311, vyw4511) 26.96/11.40 new_lt21(vyw4310, vyw4510, app(app(ty_@2, df), dg)) -> new_lt9(vyw4310, vyw4510, df, dg) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.40 new_compare24(vyw430, vyw450, True, bfd, bfe) -> EQ 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_@2, ba), bb)) -> new_ltEs9(vyw4310, vyw4510, ba, bb) 26.96/11.40 new_ltEs19(vyw431, vyw451, app(app(ty_@2, ca), de)) -> new_ltEs9(vyw431, vyw451, ca, de) 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Ordering) -> new_ltEs6(vyw431, vyw451) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Char, bce) -> new_ltEs10(vyw4310, vyw4510) 26.96/11.40 new_esEs8(vyw4310, vyw4510, app(ty_[], bbf)) -> new_esEs16(vyw4310, vyw4510, bbf) 26.96/11.40 new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(ty_Maybe, bbc)) -> new_lt7(vyw4310, vyw4510, bbc) 26.96/11.40 new_primCompAux00(vyw108, EQ) -> vyw108 26.96/11.40 new_compare0([], [], eg) -> EQ 26.96/11.40 new_ltEs16(vyw431, vyw451) -> new_not(new_esEs10(new_compare5(vyw431, vyw451), GT)) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Char) -> new_lt10(vyw4310, vyw4510) 26.96/11.40 new_ltEs7(Nothing, Nothing, bgb) -> True 26.96/11.40 new_esEs23(vyw301, vyw4001, app(ty_Ratio, ccc)) -> new_esEs11(vyw301, vyw4001, ccc) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.40 new_esEs21(vyw300, vyw4000, app(app(ty_Either, bhh), caa)) -> new_esEs7(vyw300, vyw4000, bhh, caa) 26.96/11.40 new_primMulNat0(Zero, Zero) -> Zero 26.96/11.40 new_lt12(vyw430, vyw450) -> new_esEs10(new_compare18(vyw430, vyw450), LT) 26.96/11.40 new_compare13(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], cdb)) -> new_esEs16(vyw300, vyw4000, cdb) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_[], bc)) -> new_ltEs14(vyw4310, vyw4510, bc) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Double) -> new_esEs14(vyw4310, vyw4510) 26.96/11.40 new_esEs24(vyw300, vyw4000, app(ty_[], ceg)) -> new_esEs16(vyw300, vyw4000, ceg) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_@0, bce) -> new_ltEs11(vyw4310, vyw4510) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Char) -> new_esEs12(vyw301, vyw4001) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, app(ty_[], ce)) -> new_ltEs14(vyw4311, vyw4511, ce) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Int, bce) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.40 new_esEs22(vyw300, vyw4000, app(app(ty_@2, cbb), cbc)) -> new_esEs5(vyw300, vyw4000, cbb, cbc) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.40 new_ltEs7(Just(vyw4310), Nothing, bgb) -> False 26.96/11.40 new_compare18(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(ty_[], bbf)) -> new_lt14(vyw4310, vyw4510, bbf) 26.96/11.40 new_ltEs6(EQ, LT) -> False 26.96/11.40 new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_@2, dbe), dbf), daf) -> new_esEs5(vyw300, vyw4000, dbe, dbf) 26.96/11.40 new_esEs22(vyw300, vyw4000, app(app(ty_Either, cbd), cbe)) -> new_esEs7(vyw300, vyw4000, cbd, cbe) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Integer) -> new_ltEs13(vyw4311, vyw4511) 26.96/11.40 new_esEs4(Nothing, Nothing, cch) -> True 26.96/11.40 new_esEs4(Nothing, Just(vyw4000), cch) -> False 26.96/11.40 new_esEs4(Just(vyw300), Nothing, cch) -> False 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.40 new_esEs9(vyw4311, vyw4511, app(app(ty_Either, bba), bbb)) -> new_esEs7(vyw4311, vyw4511, bba, bbb) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_Integer) -> new_lt13(vyw4310, vyw4510) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(ty_Ratio, bff)) -> new_lt8(vyw4310, vyw4510, bff) 26.96/11.40 new_compare5(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare13(new_sr0(vyw4300, Neg(vyw45010)), new_sr0(Neg(vyw43010), vyw4500)) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.40 new_ltEs14(vyw431, vyw451, ef) -> new_not(new_esEs10(new_compare0(vyw431, vyw451, ef), GT)) 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Int) -> new_ltEs17(vyw431, vyw451) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, cea), ceb)) -> new_esEs7(vyw300, vyw4000, cea, ceb) 26.96/11.40 new_primCompAux0(vyw4300, vyw4500, vyw102, eg) -> new_primCompAux00(vyw102, new_compare14(vyw4300, vyw4500, eg)) 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Double) -> new_esEs14(vyw430, vyw450) 26.96/11.40 new_ltEs19(vyw431, vyw451, app(ty_Maybe, bgb)) -> new_ltEs7(vyw431, vyw451, bgb) 26.96/11.40 new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False 26.96/11.40 new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False 26.96/11.40 new_ltEs20(vyw4311, vyw4511, app(app(ty_Either, db), dc)) -> new_ltEs18(vyw4311, vyw4511, db, dc) 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.40 new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) 26.96/11.40 new_esEs20(vyw430, vyw450, app(ty_[], eg)) -> new_esEs16(vyw430, vyw450, eg) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Bool) -> new_esEs17(vyw4310, vyw4510) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_@0) -> new_lt11(vyw4311, vyw4511) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, app(ty_[], dcc)) -> new_esEs16(vyw300, vyw4000, dcc) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, app(app(ty_@2, dch), dda)) -> new_esEs5(vyw300, vyw4000, dch, dda) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, app(app(ty_Either, ddb), ddc)) -> new_esEs7(vyw300, vyw4000, ddb, ddc) 26.96/11.40 new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False 26.96/11.40 new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False 26.96/11.40 new_esEs27(vyw4310, vyw4510, app(ty_Ratio, dad)) -> new_esEs11(vyw4310, vyw4510, dad) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_Double) -> new_lt12(vyw4310, vyw4510) 26.96/11.40 new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bg), bh)) -> new_ltEs18(vyw4310, vyw4510, bg, bh) 26.96/11.40 new_compare8(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare13(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs4(vyw4310, vyw4510, bec, bed, bee) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_Float) -> new_lt16(vyw4310, vyw4510) 26.96/11.40 new_ltEs19(vyw431, vyw451, app(app(ty_Either, bdf), bce)) -> new_ltEs18(vyw431, vyw451, bdf, bce) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs18(vyw300, vyw4000) 26.96/11.40 new_esEs25(vyw301, vyw4001, app(ty_[], cga)) -> new_esEs16(vyw301, vyw4001, cga) 26.96/11.40 new_lt5(vyw4310, vyw4510, ty_Bool) -> new_lt15(vyw4310, vyw4510) 26.96/11.40 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.96/11.40 new_compare12(vyw83, vyw84, vyw85, vyw86, False, vyw88, bge, bgf) -> new_compare110(vyw83, vyw84, vyw85, vyw86, vyw88, bge, bgf) 26.96/11.40 new_compare111(vyw430, vyw450, False, gb) -> GT 26.96/11.40 new_ltEs19(vyw431, vyw451, app(app(app(ty_@3, gf), gg), bab)) -> new_ltEs4(vyw431, vyw451, gf, gg, bab) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, app(ty_Maybe, bdg)) -> new_ltEs7(vyw4310, vyw4510, bdg) 26.96/11.40 new_esEs17(True, True) -> True 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs17(vyw4310, vyw4510) 26.96/11.40 new_esEs10(LT, GT) -> False 26.96/11.40 new_esEs10(GT, LT) -> False 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) 26.96/11.40 new_esEs9(vyw4311, vyw4511, app(ty_[], bae)) -> new_esEs16(vyw4311, vyw4511, bae) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Maybe, h)) -> new_ltEs7(vyw4310, vyw4510, h) 26.96/11.40 new_esEs26(vyw302, vyw4002, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(vyw302, vyw4002, chd, che, chf) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Double) -> new_esEs14(vyw301, vyw4001) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Int) -> new_ltEs17(vyw4311, vyw4511) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.40 new_compare8(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare19(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.40 new_ltEs19(vyw431, vyw451, app(ty_Ratio, bgc)) -> new_ltEs8(vyw431, vyw451, bgc) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Integer) -> new_esEs15(vyw4311, vyw4511) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) 26.96/11.40 new_not(False) -> True 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs14(vyw300, vyw4000) 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.40 new_compare112(vyw430, vyw450, True, bfa, bfb, bfc) -> LT 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Double) -> new_lt12(vyw4311, vyw4511) 26.96/11.40 new_esEs27(vyw4310, vyw4510, app(app(ty_Either, ed), ee)) -> new_esEs7(vyw4310, vyw4510, ed, ee) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Char) -> new_esEs12(vyw4311, vyw4511) 26.96/11.40 new_compare25(vyw430, vyw450, False) -> new_compare11(vyw430, vyw450, new_ltEs15(vyw430, vyw450)) 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_compare0(:(vyw4300, vyw4301), [], eg) -> GT 26.96/11.40 new_primPlusNat0(Succ(vyw7400), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw7400, vyw4000000))) 26.96/11.40 new_lt20(vyw430, vyw450, app(app(ty_Either, bfd), bfe)) -> new_lt19(vyw430, vyw450, bfd, bfe) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Bool) -> new_esEs17(vyw4311, vyw4511) 26.96/11.40 new_lt4(vyw4311, vyw4511, app(app(app(ty_@3, baf), bag), bah)) -> new_lt18(vyw4311, vyw4511, baf, bag, bah) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Double) -> new_esEs14(vyw301, vyw4001) 26.96/11.40 new_compare112(vyw430, vyw450, False, bfa, bfb, bfc) -> GT 26.96/11.40 new_compare25(vyw430, vyw450, True) -> EQ 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, app(ty_Ratio, dcg)) -> new_esEs11(vyw300, vyw4000, dcg) 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_esEs27(vyw4310, vyw4510, ty_Ordering) -> new_esEs10(vyw4310, vyw4510) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, app(ty_Ratio, bfh)) -> new_ltEs8(vyw4312, vyw4512, bfh) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_ltEs15(False, True) -> True 26.96/11.40 new_compare110(vyw83, vyw84, vyw85, vyw86, False, bge, bgf) -> GT 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dde), bce) -> new_ltEs8(vyw4310, vyw4510, dde) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(app(ty_Either, bcb), bcc)) -> new_lt19(vyw4310, vyw4510, bcb, bcc) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Bool) -> new_lt15(vyw4311, vyw4511) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, ty_Ordering) -> new_ltEs6(vyw4310, vyw4510) 26.96/11.40 new_sr0(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Char) -> new_ltEs10(vyw431, vyw451) 26.96/11.40 new_compare5(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare13(new_sr0(vyw4300, Pos(vyw45010)), new_sr0(Pos(vyw43010), vyw4500)) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs4(vyw4312, vyw4512, hd, he, hf) 26.96/11.40 new_compare24(vyw430, vyw450, False, bfd, bfe) -> new_compare10(vyw430, vyw450, new_ltEs18(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.40 new_ltEs4(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, bab) -> new_pePe(new_lt5(vyw4310, vyw4510, gf), new_asAs(new_esEs8(vyw4310, vyw4510, gf), new_pePe(new_lt4(vyw4311, vyw4511, gg), new_asAs(new_esEs9(vyw4311, vyw4511, gg), new_ltEs5(vyw4312, vyw4512, bab))))) 26.96/11.40 new_esEs25(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) 26.96/11.40 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.96/11.40 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Char) -> new_ltEs10(vyw4312, vyw4512) 26.96/11.40 new_compare111(vyw430, vyw450, True, gb) -> LT 26.96/11.40 new_esEs13(@0, @0) -> True 26.96/11.40 new_esEs25(vyw301, vyw4001, app(ty_Maybe, cfh)) -> new_esEs4(vyw301, vyw4001, cfh) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Double) -> new_esEs14(vyw4311, vyw4511) 26.96/11.40 new_lt21(vyw4310, vyw4510, ty_Ordering) -> new_lt6(vyw4310, vyw4510) 26.96/11.40 new_ltEs8(vyw431, vyw451, bgc) -> new_not(new_esEs10(new_compare8(vyw431, vyw451, bgc), GT)) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Int) -> new_esEs19(vyw301, vyw4001) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_@0) -> new_esEs13(vyw4310, vyw4510) 26.96/11.40 new_esEs21(vyw300, vyw4000, app(ty_[], bha)) -> new_esEs16(vyw300, vyw4000, bha) 26.96/11.40 new_ltEs18(Left(vyw4310), Right(vyw4510), bdf, bce) -> True 26.96/11.40 new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs13(vyw4310, vyw4510) 26.96/11.40 new_compare11(vyw430, vyw450, True) -> LT 26.96/11.40 new_esEs10(EQ, GT) -> False 26.96/11.40 new_esEs10(GT, EQ) -> False 26.96/11.40 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.96/11.40 new_esEs17(False, False) -> True 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_@0) -> new_esEs13(vyw300, vyw4000) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_Int) -> new_esEs19(vyw4311, vyw4511) 26.96/11.40 new_compare17(@0, @0) -> EQ 26.96/11.40 new_ltEs12(vyw431, vyw451) -> new_not(new_esEs10(new_compare18(vyw431, vyw451), GT)) 26.96/11.40 new_ltEs5(vyw4312, vyw4512, ty_Float) -> new_ltEs16(vyw4312, vyw4512) 26.96/11.40 new_ltEs18(Right(vyw4310), Left(vyw4510), bdf, bce) -> False 26.96/11.40 new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs12(vyw300, vyw4000) 26.96/11.40 new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) 26.96/11.40 new_compare110(vyw83, vyw84, vyw85, vyw86, True, bge, bgf) -> LT 26.96/11.40 new_esEs24(vyw300, vyw4000, app(ty_Ratio, cfc)) -> new_esEs11(vyw300, vyw4000, cfc) 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Bool, bce) -> new_ltEs15(vyw4310, vyw4510) 26.96/11.40 new_esEs27(vyw4310, vyw4510, app(ty_Maybe, dd)) -> new_esEs4(vyw4310, vyw4510, dd) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Ordering) -> new_ltEs6(vyw4311, vyw4511) 26.96/11.40 new_esEs7(Right(vyw300), Right(vyw4000), dca, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_ltEs18(Right(vyw4310), Right(vyw4510), bdf, app(ty_[], beb)) -> new_ltEs14(vyw4310, vyw4510, beb) 26.96/11.40 new_esEs16(:(vyw300, vyw301), [], bgg) -> False 26.96/11.40 new_esEs16([], :(vyw4000, vyw4001), bgg) -> False 26.96/11.40 new_ltEs19(vyw431, vyw451, ty_Float) -> new_ltEs16(vyw431, vyw451) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, ty_Char) -> new_ltEs10(vyw4311, vyw4511) 26.96/11.40 new_esEs23(vyw301, vyw4001, app(ty_[], cbg)) -> new_esEs16(vyw301, vyw4001, cbg) 26.96/11.40 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.96/11.40 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.96/11.40 new_ltEs18(Left(vyw4310), Left(vyw4510), ty_Double, bce) -> new_ltEs12(vyw4310, vyw4510) 26.96/11.40 new_esEs8(vyw4310, vyw4510, ty_Int) -> new_esEs19(vyw4310, vyw4510) 26.96/11.40 new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_lt21(vyw4310, vyw4510, app(app(app(ty_@3, ea), eb), ec)) -> new_lt18(vyw4310, vyw4510, ea, eb, ec) 26.96/11.40 new_esEs23(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) 26.96/11.40 new_esEs26(vyw302, vyw4002, app(ty_Maybe, chb)) -> new_esEs4(vyw302, vyw4002, chb) 26.96/11.40 new_primEqNat0(Zero, Zero) -> True 26.96/11.40 new_lt19(vyw430, vyw450, bfd, bfe) -> new_esEs10(new_compare6(vyw430, vyw450, bfd, bfe), LT) 26.96/11.40 new_esEs24(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) 26.96/11.40 new_compare15(vyw430, vyw450, gb) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) 26.96/11.40 new_ltEs15(True, False) -> False 26.96/11.40 new_esEs25(vyw301, vyw4001, app(ty_Ratio, cge)) -> new_esEs11(vyw301, vyw4001, cge) 26.96/11.40 new_lt21(vyw4310, vyw4510, app(ty_Maybe, dd)) -> new_lt7(vyw4310, vyw4510, dd) 26.96/11.40 new_esEs16(:(vyw300, vyw301), :(vyw4000, vyw4001), bgg) -> new_asAs(new_esEs21(vyw300, vyw4000, bgg), new_esEs16(vyw301, vyw4001, bgg)) 26.96/11.40 new_esEs9(vyw4311, vyw4511, ty_@0) -> new_esEs13(vyw4311, vyw4511) 26.96/11.40 new_lt4(vyw4311, vyw4511, ty_Ordering) -> new_lt6(vyw4311, vyw4511) 26.96/11.40 new_lt5(vyw4310, vyw4510, app(app(app(ty_@3, bbg), bbh), bca)) -> new_lt18(vyw4310, vyw4510, bbg, bbh, bca) 26.96/11.40 new_esEs22(vyw300, vyw4000, ty_Int) -> new_esEs19(vyw300, vyw4000) 26.96/11.40 new_esEs22(vyw300, vyw4000, app(ty_[], cae)) -> new_esEs16(vyw300, vyw4000, cae) 26.96/11.40 new_asAs(False, vyw53) -> False 26.96/11.40 new_esEs20(vyw430, vyw450, ty_Char) -> new_esEs12(vyw430, vyw450) 26.96/11.40 new_lt20(vyw430, vyw450, ty_Ordering) -> new_lt6(vyw430, vyw450) 26.96/11.40 new_ltEs20(vyw4311, vyw4511, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs4(vyw4311, vyw4511, cf, cg, da) 26.96/11.40 new_compare27(vyw430, vyw450, True) -> EQ 26.96/11.40 new_ltEs15(False, False) -> True 26.96/11.40 new_esEs7(Left(vyw300), Right(vyw4000), dca, daf) -> False 26.96/11.40 new_esEs7(Right(vyw300), Left(vyw4000), dca, daf) -> False 26.96/11.40 new_ltEs6(GT, LT) -> False 26.96/11.40 new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cec, ced, cee) -> new_asAs(new_esEs24(vyw300, vyw4000, cec), new_asAs(new_esEs25(vyw301, vyw4001, ced), new_esEs26(vyw302, vyw4002, cee))) 26.96/11.40 new_compare27(vyw430, vyw450, False) -> new_compare113(vyw430, vyw450, new_ltEs6(vyw430, vyw450)) 26.96/11.40 26.96/11.40 The set Q consists of the following terms: 26.96/11.40 26.96/11.40 new_primCompAux00(x0, EQ) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.96/11.40 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.96/11.40 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.96/11.40 new_compare113(x0, x1, False) 26.96/11.40 new_lt9(x0, x1, x2, x3) 26.96/11.40 new_ltEs19(x0, x1, ty_Bool) 26.96/11.40 new_lt5(x0, x1, ty_Char) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Int, x2) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.96/11.40 new_lt20(x0, x1, ty_Bool) 26.96/11.40 new_lt21(x0, x1, ty_@0) 26.96/11.40 new_esEs9(x0, x1, ty_Bool) 26.96/11.40 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs24(x0, x1, ty_Bool) 26.96/11.40 new_lt7(x0, x1, x2) 26.96/11.40 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.96/11.40 new_compare8(:%(x0, x1), :%(x2, x3), ty_Integer) 26.96/11.40 new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_@0) 26.96/11.40 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.96/11.40 new_lt4(x0, x1, ty_@0) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) 26.96/11.40 new_esEs22(x0, x1, ty_Integer) 26.96/11.40 new_esEs23(x0, x1, ty_Integer) 26.96/11.40 new_esEs22(x0, x1, ty_Bool) 26.96/11.40 new_esEs25(x0, x1, ty_Integer) 26.96/11.40 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_ltEs6(LT, LT) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Integer) 26.96/11.40 new_esEs10(EQ, EQ) 26.96/11.40 new_esEs24(x0, x1, ty_Integer) 26.96/11.40 new_lt20(x0, x1, ty_Integer) 26.96/11.40 new_primEqInt(Pos(Zero), Pos(Zero)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) 26.96/11.40 new_esEs26(x0, x1, ty_Float) 26.96/11.40 new_ltEs16(x0, x1) 26.96/11.40 new_ltEs7(Nothing, Nothing, x0) 26.96/11.40 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_@0, x2) 26.96/11.40 new_esEs24(x0, x1, ty_@0) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) 26.96/11.40 new_compare14(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Double, x2) 26.96/11.40 new_ltEs5(x0, x1, ty_Integer) 26.96/11.40 new_esEs8(x0, x1, ty_Bool) 26.96/11.40 new_esEs17(False, False) 26.96/11.40 new_ltEs20(x0, x1, ty_Float) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) 26.96/11.40 new_esEs29(x0, x1, ty_Integer) 26.96/11.40 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs5(x0, x1, ty_Float) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_lt4(x0, x1, ty_Char) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Char, x2) 26.96/11.40 new_ltEs19(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) 26.96/11.40 new_compare17(@0, @0) 26.96/11.40 new_sr0(x0, x1) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Bool) 26.96/11.40 new_primEqInt(Neg(Zero), Neg(Zero)) 26.96/11.40 new_pePe(True, x0) 26.96/11.40 new_compare12(x0, x1, x2, x3, True, x4, x5, x6) 26.96/11.40 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_lt20(x0, x1, ty_@0) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.96/11.40 new_ltEs5(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs28(x0, x1, ty_Integer) 26.96/11.40 new_esEs20(x0, x1, ty_Double) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) 26.96/11.40 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.96/11.40 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.96/11.40 new_esEs4(Nothing, Nothing, x0) 26.96/11.40 new_ltEs15(False, True) 26.96/11.40 new_ltEs15(True, False) 26.96/11.40 new_lt21(x0, x1, ty_Integer) 26.96/11.40 new_ltEs15(True, True) 26.96/11.40 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.96/11.40 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Char) 26.96/11.40 new_esEs23(x0, x1, app(ty_[], x2)) 26.96/11.40 new_lt11(x0, x1) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.96/11.40 new_esEs25(x0, x1, ty_Bool) 26.96/11.40 new_compare210(x0, x1, False, x2, x3, x4) 26.96/11.40 new_esEs28(x0, x1, ty_Int) 26.96/11.40 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.96/11.40 new_ltEs19(x0, x1, ty_Char) 26.96/11.40 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_lt21(x0, x1, ty_Int) 26.96/11.40 new_esEs8(x0, x1, ty_Integer) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.96/11.40 new_lt21(x0, x1, ty_Char) 26.96/11.40 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Float) 26.96/11.40 new_esEs4(Nothing, Just(x0), x1) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Int) 26.96/11.40 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs9(x0, x1, ty_Char) 26.96/11.40 new_compare26(x0, x1, True, x2, x3) 26.96/11.40 new_lt4(x0, x1, ty_Integer) 26.96/11.40 new_lt13(x0, x1) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.96/11.40 new_esEs22(x0, x1, ty_Char) 26.96/11.40 new_lt4(x0, x1, ty_Bool) 26.96/11.40 new_ltEs19(x0, x1, ty_Int) 26.96/11.40 new_primEqInt(Pos(Zero), Neg(Zero)) 26.96/11.40 new_primEqInt(Neg(Zero), Pos(Zero)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Bool, x2) 26.96/11.40 new_ltEs5(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) 26.96/11.40 new_esEs22(x0, x1, ty_@0) 26.96/11.40 new_compare112(x0, x1, True, x2, x3, x4) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.96/11.40 new_esEs16(:(x0, x1), [], x2) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Char, x2) 26.96/11.40 new_esEs9(x0, x1, ty_Int) 26.96/11.40 new_ltEs9(@2(x0, x1), @2(x2, x3), x4, x5) 26.96/11.40 new_lt14(x0, x1, x2) 26.96/11.40 new_primMulNat0(Succ(x0), Zero) 26.96/11.40 new_ltEs5(x0, x1, ty_Bool) 26.96/11.40 new_esEs25(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_lt5(x0, x1, ty_Ordering) 26.96/11.40 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.96/11.40 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.96/11.40 new_esEs25(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs8(x0, x1, ty_Ordering) 26.96/11.40 new_esEs9(x0, x1, ty_@0) 26.96/11.40 new_lt21(x0, x1, ty_Bool) 26.96/11.40 new_ltEs19(x0, x1, ty_@0) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.96/11.40 new_esEs9(x0, x1, ty_Double) 26.96/11.40 new_primEqNat0(Succ(x0), Zero) 26.96/11.40 new_esEs24(x0, x1, ty_Ordering) 26.96/11.40 new_esEs25(x0, x1, ty_Char) 26.96/11.40 new_lt5(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.96/11.40 new_lt8(x0, x1, x2) 26.96/11.40 new_esEs22(x0, x1, ty_Int) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Ordering) 26.96/11.40 new_esEs9(x0, x1, ty_Float) 26.96/11.40 new_ltEs14(x0, x1, x2) 26.96/11.40 new_lt20(x0, x1, ty_Float) 26.96/11.40 new_esEs24(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs11(:%(x0, x1), :%(x2, x3), x4) 26.96/11.40 new_lt4(x0, x1, ty_Float) 26.96/11.40 new_esEs26(x0, x1, app(ty_[], x2)) 26.96/11.40 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Integer, x2) 26.96/11.40 new_esEs24(x0, x1, ty_Float) 26.96/11.40 new_compare113(x0, x1, True) 26.96/11.40 new_esEs27(x0, x1, ty_Int) 26.96/11.40 new_compare14(x0, x1, app(ty_[], x2)) 26.96/11.40 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.96/11.40 new_compare14(x0, x1, ty_Float) 26.96/11.40 new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.96/11.40 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs16([], :(x0, x1), x2) 26.96/11.40 new_primMulInt(Pos(x0), Pos(x1)) 26.96/11.40 new_lt17(x0, x1) 26.96/11.40 new_esEs25(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.96/11.40 new_esEs20(x0, x1, ty_Int) 26.96/11.40 new_esEs22(x0, x1, ty_Float) 26.96/11.40 new_compare28(x0, x1) 26.96/11.40 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) 26.96/11.40 new_esEs24(x0, x1, ty_Char) 26.96/11.40 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs25(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Char) 26.96/11.40 new_compare111(x0, x1, False, x2) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_@0) 26.96/11.40 new_esEs20(x0, x1, ty_Char) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Integer) 26.96/11.40 new_lt21(x0, x1, ty_Float) 26.96/11.40 new_lt5(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs8(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_lt20(x0, x1, ty_Int) 26.96/11.40 new_compare16(x0, x1, x2, x3) 26.96/11.40 new_lt4(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_lt4(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_ltEs5(x0, x1, ty_@0) 26.96/11.40 new_compare0([], [], x0) 26.96/11.40 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_compare19(Integer(x0), Integer(x1)) 26.96/11.40 new_esEs7(Left(x0), Right(x1), x2, x3) 26.96/11.40 new_esEs7(Right(x0), Left(x1), x2, x3) 26.96/11.40 new_ltEs20(x0, x1, ty_@0) 26.96/11.40 new_compare14(x0, x1, ty_Int) 26.96/11.40 new_lt20(x0, x1, ty_Ordering) 26.96/11.40 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.96/11.40 new_esEs24(x0, x1, ty_Int) 26.96/11.40 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs26(x0, x1, ty_@0) 26.96/11.40 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.96/11.40 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs23(x0, x1, ty_Double) 26.96/11.40 new_compare24(x0, x1, False, x2, x3) 26.96/11.40 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_primPlusNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_lt4(x0, x1, ty_Int) 26.96/11.40 new_lt5(x0, x1, ty_@0) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.96/11.40 new_lt12(x0, x1) 26.96/11.40 new_esEs23(x0, x1, ty_@0) 26.96/11.40 new_lt4(x0, x1, app(ty_[], x2)) 26.96/11.40 new_lt5(x0, x1, ty_Double) 26.96/11.40 new_primEqNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs6(LT, GT) 26.96/11.40 new_ltEs6(GT, LT) 26.96/11.40 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.96/11.40 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.96/11.40 new_esEs20(x0, x1, ty_Bool) 26.96/11.40 new_compare110(x0, x1, x2, x3, False, x4, x5) 26.96/11.40 new_esEs16(:(x0, x1), :(x2, x3), x4) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Double) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_@0, x2) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) 26.96/11.40 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs12(x0, x1) 26.96/11.40 new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs9(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs6(EQ, GT) 26.96/11.40 new_compare6(x0, x1, x2, x3) 26.96/11.40 new_ltEs6(GT, EQ) 26.96/11.40 new_lt20(x0, x1, ty_Char) 26.96/11.40 new_esEs10(LT, GT) 26.96/11.40 new_esEs10(GT, LT) 26.96/11.40 new_esEs25(x0, x1, ty_Float) 26.96/11.40 new_compare15(x0, x1, x2) 26.96/11.40 new_esEs22(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs20(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs26(x0, x1, ty_Double) 26.96/11.40 new_primCompAux00(x0, GT) 26.96/11.40 new_esEs21(x0, x1, ty_Double) 26.96/11.40 new_ltEs15(False, False) 26.96/11.40 new_esEs20(x0, x1, ty_Ordering) 26.96/11.40 new_lt6(x0, x1) 26.96/11.40 new_esEs20(x0, x1, ty_Integer) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Double) 26.96/11.40 new_compare112(x0, x1, False, x2, x3, x4) 26.96/11.40 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs8(x0, x1, ty_Char) 26.96/11.40 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_compare18(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.96/11.40 new_compare18(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.96/11.40 new_pePe(False, x0) 26.96/11.40 new_esEs8(x0, x1, ty_Float) 26.96/11.40 new_compare14(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs19(x0, x1, ty_Integer) 26.96/11.40 new_primCmpNat0(Zero, Succ(x0)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Integer) 26.96/11.40 new_esEs9(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs10(EQ, GT) 26.96/11.40 new_esEs10(GT, EQ) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.96/11.40 new_esEs8(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Float) 26.96/11.40 new_ltEs19(x0, x1, ty_Ordering) 26.96/11.40 new_asAs(False, x0) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_@0) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Char) 26.96/11.40 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_compare0(:(x0, x1), :(x2, x3), x4) 26.96/11.40 new_esEs27(x0, x1, ty_Bool) 26.96/11.40 new_esEs8(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_compare14(x0, x1, ty_Bool) 26.96/11.40 new_compare14(x0, x1, ty_@0) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.96/11.40 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs21(x0, x1, ty_Integer) 26.96/11.40 new_primMulNat0(Zero, Zero) 26.96/11.40 new_compare0([], :(x0, x1), x2) 26.96/11.40 new_esEs27(x0, x1, ty_@0) 26.96/11.40 new_ltEs17(x0, x1) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.96/11.40 new_ltEs18(Left(x0), Right(x1), x2, x3) 26.96/11.40 new_ltEs18(Right(x0), Left(x1), x2, x3) 26.96/11.40 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_compare25(x0, x1, False) 26.96/11.40 new_ltEs20(x0, x1, ty_Double) 26.96/11.40 new_ltEs20(x0, x1, ty_Ordering) 26.96/11.40 new_compare14(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs17(True, True) 26.96/11.40 new_ltEs6(EQ, EQ) 26.96/11.40 new_esEs8(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Int) 26.96/11.40 new_compare27(x0, x1, False) 26.96/11.40 new_compare211(x0, x1, False, x2) 26.96/11.40 new_compare29(x0, x1, x2, x3, x4) 26.96/11.40 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_compare10(x0, x1, False, x2, x3) 26.96/11.40 new_compare11(x0, x1, True) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Ordering) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.96/11.40 new_esEs21(x0, x1, ty_@0) 26.96/11.40 new_lt4(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs5(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs13(x0, x1) 26.96/11.40 new_lt18(x0, x1, x2, x3, x4) 26.96/11.40 new_lt20(x0, x1, app(ty_[], x2)) 26.96/11.40 new_primPlusNat0(Zero, Zero) 26.96/11.40 new_esEs26(x0, x1, ty_Ordering) 26.96/11.40 new_esEs10(LT, LT) 26.96/11.40 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.96/11.40 new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_not(True) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Double) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_@0) 26.96/11.40 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_lt10(x0, x1) 26.96/11.40 new_ltEs11(x0, x1) 26.96/11.40 new_esEs20(x0, x1, ty_Float) 26.96/11.40 new_ltEs5(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs23(x0, x1, ty_Ordering) 26.96/11.40 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_compare14(x0, x1, ty_Char) 26.96/11.40 new_primPlusNat1(Succ(x0), x1) 26.96/11.40 new_compare7(x0, x1) 26.96/11.40 new_esEs25(x0, x1, ty_Double) 26.96/11.40 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_compare210(x0, x1, True, x2, x3, x4) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) 26.96/11.40 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs20(x0, x1, ty_@0) 26.96/11.40 new_ltEs5(x0, x1, ty_Double) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.96/11.40 new_compare14(x0, x1, ty_Integer) 26.96/11.40 new_compare27(x0, x1, True) 26.96/11.40 new_ltEs8(x0, x1, x2) 26.96/11.40 new_esEs27(x0, x1, ty_Integer) 26.96/11.40 new_esEs9(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_primCmpNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_lt16(x0, x1) 26.96/11.40 new_esEs22(x0, x1, ty_Double) 26.96/11.40 new_esEs17(False, True) 26.96/11.40 new_esEs17(True, False) 26.96/11.40 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.96/11.40 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Double, x2) 26.96/11.40 new_primMulNat0(Succ(x0), Succ(x1)) 26.96/11.40 new_compare211(x0, x1, True, x2) 26.96/11.40 new_esEs18(Float(x0, x1), Float(x2, x3)) 26.96/11.40 new_compare12(x0, x1, x2, x3, False, x4, x5, x6) 26.96/11.40 new_compare111(x0, x1, True, x2) 26.96/11.40 new_compare11(x0, x1, False) 26.96/11.40 new_primCmpNat0(Succ(x0), Zero) 26.96/11.40 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_primMulInt(Pos(x0), Neg(x1)) 26.96/11.40 new_primMulInt(Neg(x0), Pos(x1)) 26.96/11.40 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Bool) 26.96/11.40 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.96/11.40 new_compare26(@2(x0, x1), @2(x2, x3), False, x4, x5) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Float) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) 26.96/11.40 new_esEs4(Just(x0), Just(x1), ty_Double) 26.96/11.40 new_compare14(x0, x1, ty_Double) 26.96/11.40 new_ltEs6(LT, EQ) 26.96/11.40 new_ltEs6(EQ, LT) 26.96/11.40 new_esEs10(GT, GT) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Int, x2) 26.96/11.40 new_esEs16([], [], x0) 26.96/11.40 new_esEs21(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.96/11.40 new_esEs23(x0, x1, ty_Char) 26.96/11.40 new_ltEs6(GT, GT) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Int) 26.96/11.40 new_esEs19(x0, x1) 26.96/11.40 new_lt21(x0, x1, app(ty_[], x2)) 26.96/11.40 new_compare14(x0, x1, ty_Ordering) 26.96/11.40 new_compare8(:%(x0, x1), :%(x2, x3), ty_Int) 26.96/11.40 new_ltEs19(x0, x1, ty_Float) 26.96/11.40 new_compare9(Char(x0), Char(x1)) 26.96/11.40 new_esEs10(LT, EQ) 26.96/11.40 new_esEs10(EQ, LT) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.96/11.40 new_esEs24(x0, x1, ty_Double) 26.96/11.40 new_lt20(x0, x1, ty_Double) 26.96/11.40 new_compare13(x0, x1) 26.96/11.40 new_lt4(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_lt21(x0, x1, ty_Double) 26.96/11.40 new_esEs22(x0, x1, ty_Ordering) 26.96/11.40 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs29(x0, x1, ty_Int) 26.96/11.40 new_ltEs19(x0, x1, ty_Double) 26.96/11.40 new_ltEs5(x0, x1, ty_Char) 26.96/11.40 new_esEs24(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_lt5(x0, x1, ty_Integer) 26.96/11.40 new_primPlusNat0(Zero, Succ(x0)) 26.96/11.40 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs22(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_esEs21(x0, x1, ty_Char) 26.96/11.40 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.96/11.40 new_ltEs20(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs26(x0, x1, ty_Char) 26.96/11.40 new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs21(x0, x1, ty_Float) 26.96/11.40 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_lt21(x0, x1, ty_Ordering) 26.96/11.40 new_compare18(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.96/11.40 new_esEs12(Char(x0), Char(x1)) 26.96/11.40 new_primPlusNat0(Succ(x0), Zero) 26.96/11.40 new_lt4(x0, x1, ty_Double) 26.96/11.40 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_esEs8(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.96/11.40 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.96/11.40 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs7(Just(x0), Nothing, x1) 26.96/11.40 new_lt4(x0, x1, ty_Ordering) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Char) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.96/11.40 new_primCompAux0(x0, x1, x2, x3) 26.96/11.40 new_esEs8(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_ltEs5(x0, x1, ty_Int) 26.96/11.40 new_esEs27(x0, x1, ty_Double) 26.96/11.40 new_compare18(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.96/11.40 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs15(Integer(x0), Integer(x1)) 26.96/11.40 new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) 26.96/11.40 new_esEs26(x0, x1, ty_Int) 26.96/11.40 new_asAs(True, x0) 26.96/11.40 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.96/11.40 new_esEs25(x0, x1, ty_Ordering) 26.96/11.40 new_primEqNat0(Zero, Succ(x0)) 26.96/11.40 new_compare0(:(x0, x1), [], x2) 26.96/11.40 new_esEs21(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Int) 26.96/11.40 new_esEs21(x0, x1, ty_Ordering) 26.96/11.40 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_ltEs18(Left(x0), Left(x1), ty_Float, x2) 26.96/11.40 new_compare24(x0, x1, True, x2, x3) 26.96/11.40 new_ltEs20(x0, x1, ty_Integer) 26.96/11.40 new_primEqNat0(Zero, Zero) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) 26.96/11.40 new_esEs22(x0, x1, app(ty_[], x2)) 26.96/11.40 new_esEs7(Right(x0), Right(x1), x2, ty_Bool) 26.96/11.40 new_ltEs10(x0, x1) 26.96/11.40 new_esEs25(x0, x1, ty_@0) 26.96/11.40 new_esEs23(x0, x1, ty_Float) 26.96/11.40 new_not(False) 26.96/11.40 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_ltEs7(Just(x0), Just(x1), ty_Float) 26.96/11.40 new_ltEs20(x0, x1, ty_Int) 26.96/11.40 new_primMulNat0(Zero, Succ(x0)) 26.96/11.40 new_lt4(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_lt5(x0, x1, ty_Bool) 26.96/11.40 new_esEs26(x0, x1, ty_Integer) 26.96/11.40 new_ltEs20(x0, x1, ty_Char) 26.96/11.40 new_primMulInt(Neg(x0), Neg(x1)) 26.96/11.40 new_lt5(x0, x1, ty_Float) 26.96/11.40 new_esEs24(x0, x1, app(ty_[], x2)) 26.96/11.40 new_ltEs7(Nothing, Just(x0), x1) 26.96/11.40 new_esEs7(Left(x0), Left(x1), ty_Float, x2) 26.96/11.40 new_esEs8(x0, x1, ty_Double) 26.96/11.40 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.96/11.40 new_compare110(x0, x1, x2, x3, True, x4, x5) 26.96/11.40 new_esEs23(x0, x1, ty_Bool) 26.96/11.40 new_esEs8(x0, x1, ty_@0) 26.96/11.40 new_lt5(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Char) 26.96/11.40 new_primCompAux00(x0, LT) 26.96/11.40 new_esEs23(x0, x1, ty_Int) 26.96/11.40 new_sr(Integer(x0), Integer(x1)) 26.96/11.40 new_compare14(x0, x1, app(ty_Maybe, x2)) 26.96/11.40 new_esEs27(x0, x1, app(ty_[], x2)) 26.96/11.40 new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.96/11.40 new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.96/11.40 new_esEs8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_primPlusNat1(Zero, x0) 26.96/11.40 new_lt19(x0, x1, x2, x3) 26.96/11.40 new_ltEs20(x0, x1, ty_Bool) 26.96/11.40 new_lt15(x0, x1) 26.96/11.40 new_esEs21(x0, x1, ty_Bool) 26.96/11.40 new_esEs26(x0, x1, ty_Bool) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, ty_Float) 26.96/11.40 new_compare25(x0, x1, True) 26.96/11.40 new_esEs9(x0, x1, ty_Integer) 26.96/11.40 new_compare10(x0, x1, True, x2, x3) 26.96/11.40 new_lt5(x0, x1, ty_Int) 26.96/11.40 new_esEs9(x0, x1, ty_Ordering) 26.96/11.40 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.96/11.40 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.96/11.40 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.96/11.40 new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.96/11.40 new_esEs14(Double(x0, x1), Double(x2, x3)) 26.96/11.40 new_esEs13(@0, @0) 26.96/11.40 new_esEs4(Just(x0), Nothing, x1) 26.96/11.40 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.96/11.40 new_primCmpNat0(Zero, Zero) 26.96/11.40 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.96/11.40 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.96/11.40 26.96/11.40 We have to consider all minimal (P,Q,R)-chains. 26.96/11.40 ---------------------------------------- 26.96/11.40 26.96/11.40 (29) QDPSizeChangeProof (EQUIVALENT) 26.96/11.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. 26.96/11.40 26.96/11.40 From the DPs we obtained the following set of size-change graphs: 26.96/11.40 *new_lt2(vyw430, vyw450, bfa, bfb, bfc) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_Either, bg), bh)) -> new_ltEs3(vyw4310, vyw4510, bg, bh) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, gc), gd), beh) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_@2, ba), bb)) -> new_ltEs0(vyw4310, vyw4510, ba, bb) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs1(vyw431, vyw451, ef) -> new_compare(vyw431, vyw451, ef) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(app(ty_Either, db), dc)) -> new_ltEs3(vyw4311, vyw4511, db, dc) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, df), dg), de) -> new_lt0(vyw4310, vyw4510, df, dg) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(app(ty_@2, cc), cd)) -> new_ltEs0(vyw4311, vyw4511, cc, cd) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), beh) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare3(vyw430, vyw450, bfa, bfb, bfc) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], dh), de) -> new_lt1(vyw4310, vyw4510, dh) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs2(vyw4311, vyw4511, cf, cg, da) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.96/11.40 26.96/11.40 26.96/11.40 *new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.96/11.40 26.96/11.40 26.96/11.40 *new_lt3(vyw430, vyw450, bfd, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, gb), beh) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_lt0(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare2(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.96/11.40 26.96/11.40 26.96/11.40 *new_lt(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare1(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_Maybe, h)) -> new_ltEs(vyw4310, vyw4510, h) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_[], bc)) -> new_ltEs1(vyw4310, vyw4510, bc) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(app(ty_@2, ha), hb)) -> new_ltEs0(vyw4312, vyw4512, ha, hb) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(ty_Maybe, cb)) -> new_ltEs(vyw4311, vyw4511, cb) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.40 26.96/11.40 26.96/11.40 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(app(ty_Either, hg), hh)) -> new_ltEs3(vyw4312, vyw4512, hg, hh) 26.96/11.40 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.40 26.96/11.40 26.96/11.40 *new_compare23(vyw430, vyw450, False, bfd, bfe) -> new_ltEs3(vyw430, vyw450, bfd, bfe) 26.96/11.40 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(app(app(ty_@3, hd), he), hf)) -> new_ltEs2(vyw4312, vyw4512, hd, he, hf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare22(vyw430, vyw450, False, bfa, bfb, bfc) -> new_ltEs2(vyw430, vyw450, bfa, bfb, bfc) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(ty_Maybe, gh)) -> new_ltEs(vyw4312, vyw4512, gh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare20(vyw430, vyw450, False, gb) -> new_ltEs(vyw430, vyw450, gb) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare4(vyw430, vyw450, bfd, bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, ea), eb), ec), de) -> new_lt2(vyw4310, vyw4510, ea, eb, ec) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, bfd), bfe), beh) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfd, bfe), bfd, bfe) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_primCompAux(vyw4300, vyw4500, vyw102, app(app(ty_@2, fa), fb)) -> new_compare2(vyw4300, vyw4500, fa, fb) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_primCompAux(vyw4300, vyw4500, vyw102, app(app(ty_Either, fh), ga)) -> new_compare4(vyw4300, vyw4500, fh, ga) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, dd), de) -> new_lt(vyw4310, vyw4510, dd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_primCompAux(vyw4300, vyw4500, vyw102, app(app(app(ty_@3, fd), ff), fg)) -> new_compare3(vyw4300, vyw4500, fd, ff, fg) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_primCompAux(vyw4300, vyw4500, vyw102, app(ty_Maybe, eh)) -> new_compare1(vyw4300, vyw4500, eh) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_primCompAux(vyw4300, vyw4500, vyw102, app(ty_[], fc)) -> new_compare(vyw4300, vyw4500, fc) 26.96/11.41 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), ca, app(ty_[], ce)) -> new_ltEs1(vyw4311, vyw4511, ce) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs0(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, ed), ee), de) -> new_lt3(vyw4310, vyw4510, ed, ee) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, gg, app(ty_[], hc)) -> new_ltEs1(vyw4312, vyw4512, hc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, bfa), bfb), bfc), beh) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, bfa, bfb, bfc), bfa, bfb, bfc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(app(ty_Either, bef), beg))) -> new_ltEs3(vyw4310, vyw4510, bef, beg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(app(ty_Either, db), dc))) -> new_ltEs3(vyw4311, vyw4511, db, dc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(app(ty_Either, hg), hh))) -> new_ltEs3(vyw4312, vyw4512, hg, hh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(app(ty_Either, bdd), bde)), bce)) -> new_ltEs3(vyw4310, vyw4510, bdd, bde) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(app(ty_Either, bg), bh))) -> new_ltEs3(vyw4310, vyw4510, bg, bh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Left(vyw4310), Left(vyw4510), app(app(ty_Either, bdd), bde), bce) -> new_ltEs3(vyw4310, vyw4510, bdd, bde) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(app(ty_Either, bef), beg)) -> new_ltEs3(vyw4310, vyw4510, bef, beg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(app(ty_@2, bac), bad)), bab)) -> new_lt0(vyw4311, vyw4511, bac, bad) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(app(ty_@2, bbd), bbe)), gg), bab)) -> new_lt0(vyw4310, vyw4510, bbd, bbe) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(app(ty_@2, df), dg)), de)) -> new_lt0(vyw4310, vyw4510, df, dg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(app(ty_@2, ha), hb))) -> new_ltEs0(vyw4312, vyw4512, ha, hb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(app(ty_@2, ba), bb))) -> new_ltEs0(vyw4310, vyw4510, ba, bb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(app(ty_@2, cc), cd))) -> new_ltEs0(vyw4311, vyw4511, cc, cd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(app(ty_@2, bcf), bcg)), bce)) -> new_ltEs0(vyw4310, vyw4510, bcf, bcg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(app(ty_@2, bdh), bea))) -> new_ltEs0(vyw4310, vyw4510, bdh, bea) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(ty_[], bbf)), gg), bab)) -> new_lt1(vyw4310, vyw4510, bbf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(ty_[], bae)), bab)) -> new_lt1(vyw4311, vyw4511, bae) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(ty_[], dh)), de)) -> new_lt1(vyw4310, vyw4510, dh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf))) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(app(app(ty_@3, bda), bdb), bdc)), bce)) -> new_ltEs2(vyw4310, vyw4510, bda, bdb, bdc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(app(app(ty_@3, bec), bed), bee))) -> new_ltEs2(vyw4310, vyw4510, bec, bed, bee) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(app(app(ty_@3, hd), he), hf))) -> new_ltEs2(vyw4312, vyw4512, hd, he, hf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(app(app(ty_@3, cf), cg), da))) -> new_ltEs2(vyw4311, vyw4511, cf, cg, da) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(ty_Maybe, bdg))) -> new_ltEs(vyw4310, vyw4510, bdg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(ty_Maybe, cb))) -> new_ltEs(vyw4311, vyw4511, cb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(ty_Maybe, bcd)), bce)) -> new_ltEs(vyw4310, vyw4510, bcd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw4310, vyw4510, h) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(ty_Maybe, gh))) -> new_ltEs(vyw4312, vyw4512, gh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(app(app(ty_@3, ea), eb), ec)), de)) -> new_lt2(vyw4310, vyw4510, ea, eb, ec) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(app(app(ty_@3, bbg), bbh), bca)), gg), bab)) -> new_lt2(vyw4310, vyw4510, bbg, bbh, bca) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(app(app(ty_@3, baf), bag), bah)), bab)) -> new_lt2(vyw4311, vyw4511, baf, bag, bah) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(ty_Maybe, dd)), de)) -> new_lt(vyw4310, vyw4510, dd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(ty_Maybe, bbc)), gg), bab)) -> new_lt(vyw4310, vyw4510, bbc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(ty_Maybe, baa)), bab)) -> new_lt(vyw4311, vyw4511, baa) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, vyw431), @2(vyw450, vyw451), False, ge, app(ty_[], ef)) -> new_compare(vyw431, vyw451, ef) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), beh) -> new_compare(vyw4301, vyw4501, eg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, ca), app(ty_[], ce))) -> new_ltEs1(vyw4311, vyw4511, ce) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, ge, app(app(ty_Either, bdf), app(ty_[], beb))) -> new_ltEs1(vyw4310, vyw4510, beb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, ge, app(ty_Maybe, app(ty_[], bc))) -> new_ltEs1(vyw4310, vyw4510, bc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, ge, app(app(ty_Either, app(ty_[], bch)), bce)) -> new_ltEs1(vyw4310, vyw4510, bch) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), gg), app(ty_[], hc))) -> new_ltEs1(vyw4312, vyw4512, hc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, ge, app(app(ty_@2, app(app(ty_Either, ed), ee)), de)) -> new_lt3(vyw4310, vyw4510, ed, ee) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, gf), app(app(ty_Either, bba), bbb)), bab)) -> new_lt3(vyw4311, vyw4511, bba, bbb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_compare21(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, ge, app(app(app(ty_@3, app(app(ty_Either, bcb), bcc)), gg), bab)) -> new_lt3(vyw4310, vyw4510, bcb, bcc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bbd), bbe), gg, bab) -> new_lt0(vyw4310, vyw4510, bbd, bbe) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(app(ty_@2, bac), bad), bab) -> new_lt0(vyw4311, vyw4511, bac, bad) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Left(vyw4310), Left(vyw4510), app(app(ty_@2, bcf), bcg), bce) -> new_ltEs0(vyw4310, vyw4510, bcf, bcg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(app(ty_@2, bdh), bea)) -> new_ltEs0(vyw4310, vyw4510, bdh, bea) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bbf), gg, bab) -> new_lt1(vyw4310, vyw4510, bbf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(ty_[], bae), bab) -> new_lt1(vyw4311, vyw4511, bae) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, bda), bdb), bdc), bce) -> new_ltEs2(vyw4310, vyw4510, bda, bdb, bdc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(app(app(ty_@3, bec), bed), bee)) -> new_ltEs2(vyw4310, vyw4510, bec, bed, bee) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Left(vyw4310), Left(vyw4510), app(ty_Maybe, bcd), bce) -> new_ltEs(vyw4310, vyw4510, bcd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(ty_Maybe, bdg)) -> new_ltEs(vyw4310, vyw4510, bdg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Right(vyw4310), Right(vyw4510), bdf, app(ty_[], beb)) -> new_ltEs1(vyw4310, vyw4510, beb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs3(Left(vyw4310), Left(vyw4510), app(ty_[], bch), bce) -> new_ltEs1(vyw4310, vyw4510, bch) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bbg), bbh), bca), gg, bab) -> new_lt2(vyw4310, vyw4510, bbg, bbh, bca) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(app(app(ty_@3, baf), bag), bah), bab) -> new_lt2(vyw4311, vyw4511, baf, bag, bah) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(ty_Maybe, baa), bab) -> new_lt(vyw4311, vyw4511, baa) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bbc), gg, bab) -> new_lt(vyw4310, vyw4510, bbc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, bcb), bcc), gg, bab) -> new_lt3(vyw4310, vyw4510, bcb, bcc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gf, app(app(ty_Either, bba), bbb), bab) -> new_lt3(vyw4311, vyw4511, bba, bbb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (30) 26.96/11.41 YES 26.96/11.41 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (31) 26.96/11.41 Obligation: 26.96/11.41 Q DP problem: 26.96/11.41 The TRS P consists of the following rules: 26.96/11.41 26.96/11.41 new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_@2, be), bf)) -> new_esEs2(vyw300, vyw4000, be, bf) 26.96/11.41 new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vyw300, vyw4000, bcg, bch) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(ty_[], bag)) -> new_esEs0(vyw301, vyw4001, bag) 26.96/11.41 new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdc)) -> new_esEs0(vyw300, vyw4000, bdc) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vyw301, vyw4001, bbc, bbd) 26.96/11.41 new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, cf), cg)) -> new_esEs2(vyw300, vyw4000, cf, cg) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, dh), ea), eb), de, df) -> new_esEs1(vyw300, vyw4000, dh, ea, eb) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], he), hd) -> new_esEs0(vyw300, vyw4000, he) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bac), bad), hd) -> new_esEs3(vyw300, vyw4000, bac, bad) 26.96/11.41 new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_Maybe, bdb)) -> new_esEs(vyw300, vyw4000, bdb) 26.96/11.41 new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs1(vyw300, vyw4000, cc, cd, ce) 26.96/11.41 new_esEs(Just(vyw300), Just(vyw4000), app(ty_Maybe, h)) -> new_esEs(vyw300, vyw4000, h) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, ec), ed), de, df) -> new_esEs2(vyw300, vyw4000, ec, ed) 26.96/11.41 new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(vyw300, vyw4000, bdg, bdh) 26.96/11.41 new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], cb)) -> new_esEs0(vyw300, vyw4000, cb) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(ty_Maybe, baf)) -> new_esEs(vyw301, vyw4001, baf) 26.96/11.41 new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs1(vyw300, vyw4000, bb, bc, bd) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, baa), bab), hd) -> new_esEs2(vyw300, vyw4000, baa, bab) 26.96/11.41 new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw300, vyw4000, bea, beb) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(ty_Maybe, gb)) -> new_esEs(vyw302, vyw4002, gb) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, hc), hd) -> new_esEs(vyw300, vyw4000, hc) 26.96/11.41 new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), dc) -> new_esEs0(vyw301, vyw4001, dc) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, ee), ef), de, df) -> new_esEs3(vyw300, vyw4000, ee, ef) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(ty_Maybe, eh), df) -> new_esEs(vyw301, vyw4001, eh) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw301, vyw4001, bbe, bbf) 26.96/11.41 new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs1(vyw300, vyw4000, bdd, bde, bdf) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, dd), de, df) -> new_esEs(vyw300, vyw4000, dd) 26.96/11.41 new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs(vyw300, vyw4000, ca) 26.96/11.41 new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bca), bbh) -> new_esEs0(vyw300, vyw4000, bca) 26.96/11.41 new_esEs3(Left(vyw300), Left(vyw4000), app(ty_Maybe, bbg), bbh) -> new_esEs(vyw300, vyw4000, bbg) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(ty_[], fa), df) -> new_esEs0(vyw301, vyw4001, fa) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs1(vyw302, vyw4002, gd, ge, gf) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(vyw301, vyw4001, bah, bba, bbb) 26.96/11.41 new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bce), bcf), bbh) -> new_esEs2(vyw300, vyw4000, bce, bcf) 26.96/11.41 new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_Either, bg), bh)) -> new_esEs3(vyw300, vyw4000, bg, bh) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(app(ty_Either, fh), ga), df) -> new_esEs3(vyw301, vyw4001, fh, ga) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(ty_[], gc)) -> new_esEs0(vyw302, vyw4002, gc) 26.96/11.41 new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_esEs1(vyw300, vyw4000, bcb, bcc, bcd) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(app(ty_Either, ha), hb)) -> new_esEs3(vyw302, vyw4002, ha, hb) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], dg), de, df) -> new_esEs0(vyw300, vyw4000, dg) 26.96/11.41 new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], ba)) -> new_esEs0(vyw300, vyw4000, ba) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(app(ty_@2, ff), fg), df) -> new_esEs2(vyw301, vyw4001, ff, fg) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(app(app(ty_@3, fb), fc), fd), df) -> new_esEs1(vyw301, vyw4001, fb, fc, fd) 26.96/11.41 new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(app(ty_@2, gg), gh)) -> new_esEs2(vyw302, vyw4002, gg, gh) 26.96/11.41 new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, hf), hg), hh), hd) -> new_esEs1(vyw300, vyw4000, hf, hg, hh) 26.96/11.41 new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, da), db)) -> new_esEs3(vyw300, vyw4000, da, db) 26.96/11.41 26.96/11.41 R is empty. 26.96/11.41 Q is empty. 26.96/11.41 We have to consider all minimal (P,Q,R)-chains. 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (32) QDPSizeChangeProof (EQUIVALENT) 26.96/11.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. 26.96/11.41 26.96/11.41 From the DPs we obtained the following set of size-change graphs: 26.96/11.41 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, ca)) -> new_esEs(vyw300, vyw4000, ca) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, da), db)) -> new_esEs3(vyw300, vyw4000, da, db) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, cf), cg)) -> new_esEs2(vyw300, vyw4000, cf, cg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, cc), cd), ce)) -> new_esEs1(vyw300, vyw4000, cc, cd, ce) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs(Just(vyw300), Just(vyw4000), app(ty_Maybe, h)) -> new_esEs(vyw300, vyw4000, h) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_Either, bg), bh)) -> new_esEs3(vyw300, vyw4000, bg, bh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_@2, be), bf)) -> new_esEs2(vyw300, vyw4000, be, bf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], ba)) -> new_esEs0(vyw300, vyw4000, ba) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs1(vyw300, vyw4000, bb, bc, bd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(ty_Maybe, baf)) -> new_esEs(vyw301, vyw4001, baf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, hc), hd) -> new_esEs(vyw300, vyw4000, hc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bac), bad), hd) -> new_esEs3(vyw300, vyw4000, bac, bad) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw301, vyw4001, bbe, bbf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(app(ty_@2, bbc), bbd)) -> new_esEs2(vyw301, vyw4001, bbc, bbd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, baa), bab), hd) -> new_esEs2(vyw300, vyw4000, baa, bab) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(ty_[], bag)) -> new_esEs0(vyw301, vyw4001, bag) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], he), hd) -> new_esEs0(vyw300, vyw4000, he) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs1(vyw301, vyw4001, bah, bba, bbb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, hf), hg), hh), hd) -> new_esEs1(vyw300, vyw4000, hf, hg, hh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_Maybe, bdb)) -> new_esEs(vyw300, vyw4000, bdb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Left(vyw300), Left(vyw4000), app(ty_Maybe, bbg), bbh) -> new_esEs(vyw300, vyw4000, bbg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(ty_Maybe, gb)) -> new_esEs(vyw302, vyw4002, gb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(ty_Maybe, eh), df) -> new_esEs(vyw301, vyw4001, eh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, dd), de, df) -> new_esEs(vyw300, vyw4000, dd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vyw300, vyw4000, bcg, bch) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw300, vyw4000, bea, beb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(vyw300, vyw4000, bdg, bdh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bce), bcf), bbh) -> new_esEs2(vyw300, vyw4000, bce, bcf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdc)) -> new_esEs0(vyw300, vyw4000, bdc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bca), bbh) -> new_esEs0(vyw300, vyw4000, bca) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs1(vyw300, vyw4000, bdd, bde, bdf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_esEs1(vyw300, vyw4000, bcb, bcc, bcd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, ee), ef), de, df) -> new_esEs3(vyw300, vyw4000, ee, ef) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(app(ty_Either, fh), ga), df) -> new_esEs3(vyw301, vyw4001, fh, ga) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(app(ty_Either, ha), hb)) -> new_esEs3(vyw302, vyw4002, ha, hb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], cb)) -> new_esEs0(vyw300, vyw4000, cb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), dc) -> new_esEs0(vyw301, vyw4001, dc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, ec), ed), de, df) -> new_esEs2(vyw300, vyw4000, ec, ed) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(app(ty_@2, ff), fg), df) -> new_esEs2(vyw301, vyw4001, ff, fg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(app(ty_@2, gg), gh)) -> new_esEs2(vyw302, vyw4002, gg, gh) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(ty_[], fa), df) -> new_esEs0(vyw301, vyw4001, fa) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(ty_[], gc)) -> new_esEs0(vyw302, vyw4002, gc) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], dg), de, df) -> new_esEs0(vyw300, vyw4000, dg) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, dh), ea), eb), de, df) -> new_esEs1(vyw300, vyw4000, dh, ea, eb) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, de, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs1(vyw302, vyw4002, gd, ge, gf) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.96/11.41 26.96/11.41 26.96/11.41 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), eg, app(app(app(ty_@3, fb), fc), fd), df) -> new_esEs1(vyw301, vyw4001, fb, fc, fd) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.96/11.41 26.96/11.41 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (33) 26.96/11.41 YES 26.96/11.41 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (34) 26.96/11.41 Obligation: 26.96/11.41 Q DP problem: 26.96/11.41 The TRS P consists of the following rules: 26.96/11.41 26.96/11.41 new_primPlusNat(Succ(vyw7400), Succ(vyw4000000)) -> new_primPlusNat(vyw7400, vyw4000000) 26.96/11.41 26.96/11.41 R is empty. 26.96/11.41 Q is empty. 26.96/11.41 We have to consider all minimal (P,Q,R)-chains. 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (35) QDPSizeChangeProof (EQUIVALENT) 26.96/11.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. 26.96/11.41 26.96/11.41 From the DPs we obtained the following set of size-change graphs: 26.96/11.41 *new_primPlusNat(Succ(vyw7400), Succ(vyw4000000)) -> new_primPlusNat(vyw7400, vyw4000000) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2 26.96/11.41 26.96/11.41 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (36) 26.96/11.41 YES 26.96/11.41 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (37) 26.96/11.41 Obligation: 26.96/11.41 Q DP problem: 26.96/11.41 The TRS P consists of the following rules: 26.96/11.41 26.96/11.41 new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) 26.96/11.41 26.96/11.41 R is empty. 26.96/11.41 Q is empty. 26.96/11.41 We have to consider all minimal (P,Q,R)-chains. 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (38) QDPSizeChangeProof (EQUIVALENT) 26.96/11.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. 26.96/11.41 26.96/11.41 From the DPs we obtained the following set of size-change graphs: 26.96/11.41 *new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) 26.96/11.41 The graph contains the following edges 1 > 1, 2 > 2 26.96/11.41 26.96/11.41 26.96/11.41 ---------------------------------------- 26.96/11.41 26.96/11.41 (39) 26.96/11.41 YES 27.05/11.45 EOF