/export/starexec/sandbox2/solver/bin/starexec_run_standard /export/starexec/sandbox2/benchmark/theBenchmark.hs /export/starexec/sandbox2/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox2/benchmark/theBenchmark.hs # AProVE Commit ID: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 3 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 136 ms] (22) YES (23) QDP (24) DependencyGraphProof [EQUIVALENT, 0 ms] (25) AND (26) QDP (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] (28) YES (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (3) CR (EQUIVALENT) Case Reductions: The following Case expression "case compare x y of { EQ -> o; LT -> LT; GT -> GT} " is transformed to "primCompAux0 o EQ = o; primCompAux0 o LT = LT; primCompAux0 o GT = GT; " The following Case expression "case lookupFM fm key of { Nothing -> False; Just elt -> True} " is transformed to "elemFM0 Nothing = False; elemFM0 (Just elt) = True; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (5) IFR (EQUIVALENT) If Reductions: The following If expression "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" is transformed to "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); primDivNatS0 x y False = Zero; " The following If expression "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" is transformed to "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); primModNatS0 x y False = Succ x; " ---------------------------------------- (6) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "lookupFM EmptyFM key = Nothing; 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; " is transformed to "lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; " "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 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); " "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; " "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; " "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); " "lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 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); 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); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } " are unpacked to the following functions on top level "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2D vyu vyv = gcd vyu vyv; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 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); 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); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (13) NumRed (SOUND) Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. ---------------------------------------- (14) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord b => b -> FiniteMap b a -> Bool; elemFM key fm = elemFM0 (lookupFM fm key); elemFM0 Nothing = False; elemFM0 (Just elt) = True; fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; 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); 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); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = Pos Zero; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (15) Narrow (SOUND) Haskell To QDPs digraph dp_graph { node [outthreshold=100, inthreshold=100];1[label="FiniteMap.elemFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.elemFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.elemFM vyw3 vyw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 5[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw4 vyw3)",fontsize=16,color="burlywood",shape="triangle"];3746[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 3746[label="",style="solid", color="burlywood", weight=9]; 3746 -> 6[label="",style="solid", color="burlywood", weight=3]; 3747[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 3747[label="",style="solid", color="burlywood", weight=9]; 3747 -> 7[label="",style="solid", color="burlywood", weight=3]; 6[label="FiniteMap.elemFM0 (FiniteMap.lookupFM FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 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]; 8[label="FiniteMap.elemFM0 (FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw3)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 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]; 10[label="FiniteMap.elemFM0 Nothing",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 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]; 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]; 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]; 15[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 vyw3 (compare2 vyw3 vyw40 (vyw3 == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];3748[label="vyw3/Left vyw30",fontsize=10,color="white",style="solid",shape="box"];15 -> 3748[label="",style="solid", color="burlywood", weight=9]; 3748 -> 16[label="",style="solid", color="burlywood", weight=3]; 3749[label="vyw3/Right vyw30",fontsize=10,color="white",style="solid",shape="box"];15 -> 3749[label="",style="solid", color="burlywood", weight=9]; 3749 -> 17[label="",style="solid", color="burlywood", weight=3]; 16[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 (Left vyw30) (compare2 (Left vyw30) vyw40 (Left vyw30 == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];3750[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];16 -> 3750[label="",style="solid", color="burlywood", weight=9]; 3750 -> 18[label="",style="solid", color="burlywood", weight=3]; 3751[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];16 -> 3751[label="",style="solid", color="burlywood", weight=9]; 3751 -> 19[label="",style="solid", color="burlywood", weight=3]; 17[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 (Right vyw30) (compare2 (Right vyw30) vyw40 (Right vyw30 == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];3752[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];17 -> 3752[label="",style="solid", color="burlywood", weight=9]; 3752 -> 20[label="",style="solid", color="burlywood", weight=3]; 3753[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];17 -> 3753[label="",style="solid", color="burlywood", weight=9]; 3753 -> 21[label="",style="solid", color="burlywood", weight=3]; 18[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) (compare2 (Left vyw30) (Left vyw400) (Left vyw30 == Left vyw400) == LT))",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) (compare2 (Left vyw30) (Right vyw400) (Left vyw30 == Right vyw400) == LT))",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) (compare2 (Right vyw30) (Left vyw400) (Right vyw30 == Left vyw400) == LT))",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 21[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) (compare2 (Right vyw30) (Right vyw400) (Right vyw30 == Right vyw400) == LT))",fontsize=16,color="black",shape="box"];21 -> 25[label="",style="solid", color="black", weight=3]; 22 -> 184[label="",style="dashed", color="red", weight=0]; 22[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) (compare2 (Left vyw30) (Left vyw400) (vyw30 == vyw400) == LT))",fontsize=16,color="magenta"];22 -> 185[label="",style="dashed", color="magenta", weight=3]; 22 -> 186[label="",style="dashed", color="magenta", weight=3]; 22 -> 187[label="",style="dashed", color="magenta", weight=3]; 22 -> 188[label="",style="dashed", color="magenta", weight=3]; 22 -> 189[label="",style="dashed", color="magenta", weight=3]; 22 -> 190[label="",style="dashed", color="magenta", weight=3]; 22 -> 191[label="",style="dashed", color="magenta", weight=3]; 23 -> 100[label="",style="dashed", color="red", weight=0]; 23[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) (compare2 (Left vyw30) (Right vyw400) False == LT))",fontsize=16,color="magenta"];23 -> 101[label="",style="dashed", color="magenta", weight=3]; 24 -> 108[label="",style="dashed", color="red", weight=0]; 24[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) (compare2 (Right vyw30) (Left vyw400) False == LT))",fontsize=16,color="magenta"];24 -> 109[label="",style="dashed", color="magenta", weight=3]; 25 -> 206[label="",style="dashed", color="red", weight=0]; 25[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) (compare2 (Right vyw30) (Right vyw400) (vyw30 == vyw400) == LT))",fontsize=16,color="magenta"];25 -> 207[label="",style="dashed", color="magenta", weight=3]; 25 -> 208[label="",style="dashed", color="magenta", weight=3]; 25 -> 209[label="",style="dashed", color="magenta", weight=3]; 25 -> 210[label="",style="dashed", color="magenta", weight=3]; 25 -> 211[label="",style="dashed", color="magenta", weight=3]; 25 -> 212[label="",style="dashed", color="magenta", weight=3]; 25 -> 213[label="",style="dashed", color="magenta", weight=3]; 185[label="vyw41",fontsize=16,color="green",shape="box"];186[label="vyw30",fontsize=16,color="green",shape="box"];187[label="vyw42",fontsize=16,color="green",shape="box"];188[label="vyw44",fontsize=16,color="green",shape="box"];189 -> 52[label="",style="dashed", color="red", weight=0]; 189[label="compare2 (Left vyw30) (Left vyw400) (vyw30 == vyw400) == LT",fontsize=16,color="magenta"];189 -> 195[label="",style="dashed", color="magenta", weight=3]; 189 -> 196[label="",style="dashed", color="magenta", weight=3]; 190[label="vyw43",fontsize=16,color="green",shape="box"];191[label="vyw400",fontsize=16,color="green",shape="box"];184[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) vyw37)",fontsize=16,color="burlywood",shape="triangle"];3754[label="vyw37/False",fontsize=10,color="white",style="solid",shape="box"];184 -> 3754[label="",style="solid", color="burlywood", weight=9]; 3754 -> 197[label="",style="solid", color="burlywood", weight=3]; 3755[label="vyw37/True",fontsize=10,color="white",style="solid",shape="box"];184 -> 3755[label="",style="solid", color="burlywood", weight=9]; 3755 -> 198[label="",style="solid", color="burlywood", weight=3]; 101 -> 52[label="",style="dashed", color="red", weight=0]; 101[label="compare2 (Left vyw30) (Right vyw400) False == LT",fontsize=16,color="magenta"];101 -> 104[label="",style="dashed", color="magenta", weight=3]; 101 -> 105[label="",style="dashed", color="magenta", weight=3]; 100[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) vyw35)",fontsize=16,color="burlywood",shape="triangle"];3756[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];100 -> 3756[label="",style="solid", color="burlywood", weight=9]; 3756 -> 106[label="",style="solid", color="burlywood", weight=3]; 3757[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];100 -> 3757[label="",style="solid", color="burlywood", weight=9]; 3757 -> 107[label="",style="solid", color="burlywood", weight=3]; 109 -> 52[label="",style="dashed", color="red", weight=0]; 109[label="compare2 (Right vyw30) (Left vyw400) False == LT",fontsize=16,color="magenta"];109 -> 112[label="",style="dashed", color="magenta", weight=3]; 109 -> 113[label="",style="dashed", color="magenta", weight=3]; 108[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) vyw36)",fontsize=16,color="burlywood",shape="triangle"];3758[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];108 -> 3758[label="",style="solid", color="burlywood", weight=9]; 3758 -> 114[label="",style="solid", color="burlywood", weight=3]; 3759[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];108 -> 3759[label="",style="solid", color="burlywood", weight=9]; 3759 -> 115[label="",style="solid", color="burlywood", weight=3]; 207 -> 52[label="",style="dashed", color="red", weight=0]; 207[label="compare2 (Right vyw30) (Right vyw400) (vyw30 == vyw400) == LT",fontsize=16,color="magenta"];207 -> 217[label="",style="dashed", color="magenta", weight=3]; 207 -> 218[label="",style="dashed", color="magenta", weight=3]; 208[label="vyw41",fontsize=16,color="green",shape="box"];209[label="vyw30",fontsize=16,color="green",shape="box"];210[label="vyw44",fontsize=16,color="green",shape="box"];211[label="vyw43",fontsize=16,color="green",shape="box"];212[label="vyw400",fontsize=16,color="green",shape="box"];213[label="vyw42",fontsize=16,color="green",shape="box"];206[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) vyw38)",fontsize=16,color="burlywood",shape="triangle"];3760[label="vyw38/False",fontsize=10,color="white",style="solid",shape="box"];206 -> 3760[label="",style="solid", color="burlywood", weight=9]; 3760 -> 219[label="",style="solid", color="burlywood", weight=3]; 3761[label="vyw38/True",fontsize=10,color="white",style="solid",shape="box"];206 -> 3761[label="",style="solid", color="burlywood", weight=9]; 3761 -> 220[label="",style="solid", color="burlywood", weight=3]; 195[label="LT",fontsize=16,color="green",shape="box"];196 -> 1884[label="",style="dashed", color="red", weight=0]; 196[label="compare2 (Left vyw30) (Left vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];196 -> 1885[label="",style="dashed", color="magenta", weight=3]; 196 -> 1886[label="",style="dashed", color="magenta", weight=3]; 196 -> 1887[label="",style="dashed", color="magenta", weight=3]; 52[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3762[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];52 -> 3762[label="",style="solid", color="burlywood", weight=9]; 3762 -> 88[label="",style="solid", color="burlywood", weight=3]; 3763[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];52 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 89[label="",style="solid", color="burlywood", weight=3]; 3764[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];52 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 90[label="",style="solid", color="burlywood", weight=3]; 197[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) False)",fontsize=16,color="black",shape="box"];197 -> 225[label="",style="solid", color="black", weight=3]; 198[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True)",fontsize=16,color="black",shape="box"];198 -> 226[label="",style="solid", color="black", weight=3]; 104[label="LT",fontsize=16,color="green",shape="box"];105 -> 1884[label="",style="dashed", color="red", weight=0]; 105[label="compare2 (Left vyw30) (Right vyw400) False",fontsize=16,color="magenta"];105 -> 1888[label="",style="dashed", color="magenta", weight=3]; 105 -> 1889[label="",style="dashed", color="magenta", weight=3]; 105 -> 1890[label="",style="dashed", color="magenta", weight=3]; 106[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) False)",fontsize=16,color="black",shape="box"];106 -> 117[label="",style="solid", color="black", weight=3]; 107[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) True)",fontsize=16,color="black",shape="box"];107 -> 118[label="",style="solid", color="black", weight=3]; 112[label="LT",fontsize=16,color="green",shape="box"];113 -> 1884[label="",style="dashed", color="red", weight=0]; 113[label="compare2 (Right vyw30) (Left vyw400) False",fontsize=16,color="magenta"];113 -> 1891[label="",style="dashed", color="magenta", weight=3]; 113 -> 1892[label="",style="dashed", color="magenta", weight=3]; 113 -> 1893[label="",style="dashed", color="magenta", weight=3]; 114[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) False)",fontsize=16,color="black",shape="box"];114 -> 200[label="",style="solid", color="black", weight=3]; 115[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) True)",fontsize=16,color="black",shape="box"];115 -> 201[label="",style="solid", color="black", weight=3]; 217[label="LT",fontsize=16,color="green",shape="box"];218 -> 1884[label="",style="dashed", color="red", weight=0]; 218[label="compare2 (Right vyw30) (Right vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];218 -> 1894[label="",style="dashed", color="magenta", weight=3]; 218 -> 1895[label="",style="dashed", color="magenta", weight=3]; 218 -> 1896[label="",style="dashed", color="magenta", weight=3]; 219[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) False)",fontsize=16,color="black",shape="box"];219 -> 231[label="",style="solid", color="black", weight=3]; 220[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True)",fontsize=16,color="black",shape="box"];220 -> 232[label="",style="solid", color="black", weight=3]; 1885[label="Left vyw400",fontsize=16,color="green",shape="box"];1886[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3765[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3765[label="",style="solid", color="blue", weight=9]; 3765 -> 1922[label="",style="solid", color="blue", weight=3]; 3766[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3766[label="",style="solid", color="blue", weight=9]; 3766 -> 1923[label="",style="solid", color="blue", weight=3]; 3767[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3767[label="",style="solid", color="blue", weight=9]; 3767 -> 1924[label="",style="solid", color="blue", weight=3]; 3768[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3768[label="",style="solid", color="blue", weight=9]; 3768 -> 1925[label="",style="solid", color="blue", weight=3]; 3769[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3769[label="",style="solid", color="blue", weight=9]; 3769 -> 1926[label="",style="solid", color="blue", weight=3]; 3770[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3770[label="",style="solid", color="blue", weight=9]; 3770 -> 1927[label="",style="solid", color="blue", weight=3]; 3771[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3771[label="",style="solid", color="blue", weight=9]; 3771 -> 1928[label="",style="solid", color="blue", weight=3]; 3772[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3772[label="",style="solid", color="blue", weight=9]; 3772 -> 1929[label="",style="solid", color="blue", weight=3]; 3773[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3773[label="",style="solid", color="blue", weight=9]; 3773 -> 1930[label="",style="solid", color="blue", weight=3]; 3774[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3774[label="",style="solid", color="blue", weight=9]; 3774 -> 1931[label="",style="solid", color="blue", weight=3]; 3775[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3775[label="",style="solid", color="blue", weight=9]; 3775 -> 1932[label="",style="solid", color="blue", weight=3]; 3776[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3776[label="",style="solid", color="blue", weight=9]; 3776 -> 1933[label="",style="solid", color="blue", weight=3]; 3777[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3777[label="",style="solid", color="blue", weight=9]; 3777 -> 1934[label="",style="solid", color="blue", weight=3]; 3778[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3778[label="",style="solid", color="blue", weight=9]; 3778 -> 1935[label="",style="solid", color="blue", weight=3]; 1887[label="Left vyw30",fontsize=16,color="green",shape="box"];1884[label="compare2 vyw430 vyw440 vyw110",fontsize=16,color="burlywood",shape="triangle"];3779[label="vyw110/False",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 1936[label="",style="solid", color="burlywood", weight=3]; 3780[label="vyw110/True",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 1937[label="",style="solid", color="burlywood", weight=3]; 88[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];3781[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];88 -> 3781[label="",style="solid", color="burlywood", weight=9]; 3781 -> 163[label="",style="solid", color="burlywood", weight=3]; 3782[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];88 -> 3782[label="",style="solid", color="burlywood", weight=9]; 3782 -> 164[label="",style="solid", color="burlywood", weight=3]; 3783[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];88 -> 3783[label="",style="solid", color="burlywood", weight=9]; 3783 -> 165[label="",style="solid", color="burlywood", weight=3]; 89[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];3784[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];89 -> 3784[label="",style="solid", color="burlywood", weight=9]; 3784 -> 166[label="",style="solid", color="burlywood", weight=3]; 3785[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];89 -> 3785[label="",style="solid", color="burlywood", weight=9]; 3785 -> 167[label="",style="solid", color="burlywood", weight=3]; 3786[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];89 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 168[label="",style="solid", color="burlywood", weight=3]; 90[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];3787[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];90 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 169[label="",style="solid", color="burlywood", weight=3]; 3788[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];90 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 170[label="",style="solid", color="burlywood", weight=3]; 3789[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];90 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 171[label="",style="solid", color="burlywood", weight=3]; 225 -> 307[label="",style="dashed", color="red", weight=0]; 225[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) (Left vyw18 > Left vyw13))",fontsize=16,color="magenta"];225 -> 308[label="",style="dashed", color="magenta", weight=3]; 226 -> 5[label="",style="dashed", color="red", weight=0]; 226[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw16 (Left vyw18))",fontsize=16,color="magenta"];226 -> 250[label="",style="dashed", color="magenta", weight=3]; 226 -> 251[label="",style="dashed", color="magenta", weight=3]; 1888[label="Right vyw400",fontsize=16,color="green",shape="box"];1889[label="False",fontsize=16,color="green",shape="box"];1890[label="Left vyw30",fontsize=16,color="green",shape="box"];117 -> 282[label="",style="dashed", color="red", weight=0]; 117[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) (Left vyw30 > Right vyw400))",fontsize=16,color="magenta"];117 -> 283[label="",style="dashed", color="magenta", weight=3]; 118 -> 5[label="",style="dashed", color="red", weight=0]; 118[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw43 (Left vyw30))",fontsize=16,color="magenta"];118 -> 204[label="",style="dashed", color="magenta", weight=3]; 118 -> 205[label="",style="dashed", color="magenta", weight=3]; 1891[label="Left vyw400",fontsize=16,color="green",shape="box"];1892[label="False",fontsize=16,color="green",shape="box"];1893[label="Right vyw30",fontsize=16,color="green",shape="box"];200 -> 317[label="",style="dashed", color="red", weight=0]; 200[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) (Right vyw30 > Left vyw400))",fontsize=16,color="magenta"];200 -> 318[label="",style="dashed", color="magenta", weight=3]; 201 -> 5[label="",style="dashed", color="red", weight=0]; 201[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw43 (Right vyw30))",fontsize=16,color="magenta"];201 -> 254[label="",style="dashed", color="magenta", weight=3]; 201 -> 255[label="",style="dashed", color="magenta", weight=3]; 1894[label="Right vyw400",fontsize=16,color="green",shape="box"];1895[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3790[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3790[label="",style="solid", color="blue", weight=9]; 3790 -> 1938[label="",style="solid", color="blue", weight=3]; 3791[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3791[label="",style="solid", color="blue", weight=9]; 3791 -> 1939[label="",style="solid", color="blue", weight=3]; 3792[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3792[label="",style="solid", color="blue", weight=9]; 3792 -> 1940[label="",style="solid", color="blue", weight=3]; 3793[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3793[label="",style="solid", color="blue", weight=9]; 3793 -> 1941[label="",style="solid", color="blue", weight=3]; 3794[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3794[label="",style="solid", color="blue", weight=9]; 3794 -> 1942[label="",style="solid", color="blue", weight=3]; 3795[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3795[label="",style="solid", color="blue", weight=9]; 3795 -> 1943[label="",style="solid", color="blue", weight=3]; 3796[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3796[label="",style="solid", color="blue", weight=9]; 3796 -> 1944[label="",style="solid", color="blue", weight=3]; 3797[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3797[label="",style="solid", color="blue", weight=9]; 3797 -> 1945[label="",style="solid", color="blue", weight=3]; 3798[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3798[label="",style="solid", color="blue", weight=9]; 3798 -> 1946[label="",style="solid", color="blue", weight=3]; 3799[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3799[label="",style="solid", color="blue", weight=9]; 3799 -> 1947[label="",style="solid", color="blue", weight=3]; 3800[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3800[label="",style="solid", color="blue", weight=9]; 3800 -> 1948[label="",style="solid", color="blue", weight=3]; 3801[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3801[label="",style="solid", color="blue", weight=9]; 3801 -> 1949[label="",style="solid", color="blue", weight=3]; 3802[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3802[label="",style="solid", color="blue", weight=9]; 3802 -> 1950[label="",style="solid", color="blue", weight=3]; 3803[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3803[label="",style="solid", color="blue", weight=9]; 3803 -> 1951[label="",style="solid", color="blue", weight=3]; 1896[label="Right vyw30",fontsize=16,color="green",shape="box"];231 -> 353[label="",style="dashed", color="red", weight=0]; 231[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) (Right vyw33 > Right vyw28))",fontsize=16,color="magenta"];231 -> 354[label="",style="dashed", color="magenta", weight=3]; 232 -> 5[label="",style="dashed", color="red", weight=0]; 232[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw31 (Right vyw33))",fontsize=16,color="magenta"];232 -> 286[label="",style="dashed", color="magenta", weight=3]; 232 -> 287[label="",style="dashed", color="magenta", weight=3]; 1922[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1922 -> 1956[label="",style="solid", color="black", weight=3]; 1923[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3804[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 1957[label="",style="solid", color="burlywood", weight=3]; 3805[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 1958[label="",style="solid", color="burlywood", weight=3]; 1924[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1924 -> 1959[label="",style="solid", color="black", weight=3]; 1925[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3806[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1925 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 1960[label="",style="solid", color="burlywood", weight=3]; 3807[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];1925 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 1961[label="",style="solid", color="burlywood", weight=3]; 1926[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3808[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];1926 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 1962[label="",style="solid", color="burlywood", weight=3]; 1927[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3809[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 1963[label="",style="solid", color="burlywood", weight=3]; 1928[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3810[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 1964[label="",style="solid", color="burlywood", weight=3]; 1929[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3811[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];1929 -> 3811[label="",style="solid", color="burlywood", weight=9]; 3811 -> 1965[label="",style="solid", color="burlywood", weight=3]; 1930 -> 52[label="",style="dashed", color="red", weight=0]; 1930[label="vyw30 == vyw400",fontsize=16,color="magenta"];1931[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3812[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3812[label="",style="solid", color="burlywood", weight=9]; 3812 -> 1966[label="",style="solid", color="burlywood", weight=3]; 3813[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3813[label="",style="solid", color="burlywood", weight=9]; 3813 -> 1967[label="",style="solid", color="burlywood", weight=3]; 1932[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1932 -> 1968[label="",style="solid", color="black", weight=3]; 1933[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3814[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3814[label="",style="solid", color="burlywood", weight=9]; 3814 -> 1969[label="",style="solid", color="burlywood", weight=3]; 1934[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1934 -> 1970[label="",style="solid", color="black", weight=3]; 1935[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3815[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3815[label="",style="solid", color="burlywood", weight=9]; 3815 -> 1971[label="",style="solid", color="burlywood", weight=3]; 3816[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3816[label="",style="solid", color="burlywood", weight=9]; 3816 -> 1972[label="",style="solid", color="burlywood", weight=3]; 1936[label="compare2 vyw430 vyw440 False",fontsize=16,color="black",shape="box"];1936 -> 1973[label="",style="solid", color="black", weight=3]; 1937[label="compare2 vyw430 vyw440 True",fontsize=16,color="black",shape="box"];1937 -> 1974[label="",style="solid", color="black", weight=3]; 163[label="LT == LT",fontsize=16,color="black",shape="box"];163 -> 272[label="",style="solid", color="black", weight=3]; 164[label="LT == EQ",fontsize=16,color="black",shape="box"];164 -> 273[label="",style="solid", color="black", weight=3]; 165[label="LT == GT",fontsize=16,color="black",shape="box"];165 -> 274[label="",style="solid", color="black", weight=3]; 166[label="EQ == LT",fontsize=16,color="black",shape="box"];166 -> 275[label="",style="solid", color="black", weight=3]; 167[label="EQ == EQ",fontsize=16,color="black",shape="box"];167 -> 276[label="",style="solid", color="black", weight=3]; 168[label="EQ == GT",fontsize=16,color="black",shape="box"];168 -> 277[label="",style="solid", color="black", weight=3]; 169[label="GT == LT",fontsize=16,color="black",shape="box"];169 -> 278[label="",style="solid", color="black", weight=3]; 170[label="GT == EQ",fontsize=16,color="black",shape="box"];170 -> 279[label="",style="solid", color="black", weight=3]; 171[label="GT == GT",fontsize=16,color="black",shape="box"];171 -> 280[label="",style="solid", color="black", weight=3]; 308[label="Left vyw18 > Left vyw13",fontsize=16,color="black",shape="box"];308 -> 310[label="",style="solid", color="black", weight=3]; 307[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) vyw54)",fontsize=16,color="burlywood",shape="triangle"];3817[label="vyw54/False",fontsize=10,color="white",style="solid",shape="box"];307 -> 3817[label="",style="solid", color="burlywood", weight=9]; 3817 -> 311[label="",style="solid", color="burlywood", weight=3]; 3818[label="vyw54/True",fontsize=10,color="white",style="solid",shape="box"];307 -> 3818[label="",style="solid", color="burlywood", weight=9]; 3818 -> 312[label="",style="solid", color="burlywood", weight=3]; 250[label="vyw16",fontsize=16,color="green",shape="box"];251[label="Left vyw18",fontsize=16,color="green",shape="box"];283[label="Left vyw30 > Right vyw400",fontsize=16,color="black",shape="box"];283 -> 313[label="",style="solid", color="black", weight=3]; 282[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) vyw53)",fontsize=16,color="burlywood",shape="triangle"];3819[label="vyw53/False",fontsize=10,color="white",style="solid",shape="box"];282 -> 3819[label="",style="solid", color="burlywood", weight=9]; 3819 -> 314[label="",style="solid", color="burlywood", weight=3]; 3820[label="vyw53/True",fontsize=10,color="white",style="solid",shape="box"];282 -> 3820[label="",style="solid", color="burlywood", weight=9]; 3820 -> 315[label="",style="solid", color="burlywood", weight=3]; 204[label="vyw43",fontsize=16,color="green",shape="box"];205[label="Left vyw30",fontsize=16,color="green",shape="box"];318[label="Right vyw30 > Left vyw400",fontsize=16,color="black",shape="box"];318 -> 320[label="",style="solid", color="black", weight=3]; 317[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) vyw55)",fontsize=16,color="burlywood",shape="triangle"];3821[label="vyw55/False",fontsize=10,color="white",style="solid",shape="box"];317 -> 3821[label="",style="solid", color="burlywood", weight=9]; 3821 -> 321[label="",style="solid", color="burlywood", weight=3]; 3822[label="vyw55/True",fontsize=10,color="white",style="solid",shape="box"];317 -> 3822[label="",style="solid", color="burlywood", weight=9]; 3822 -> 322[label="",style="solid", color="burlywood", weight=3]; 254[label="vyw43",fontsize=16,color="green",shape="box"];255[label="Right vyw30",fontsize=16,color="green",shape="box"];1938 -> 1922[label="",style="dashed", color="red", weight=0]; 1938[label="vyw30 == vyw400",fontsize=16,color="magenta"];1938 -> 1975[label="",style="dashed", color="magenta", weight=3]; 1938 -> 1976[label="",style="dashed", color="magenta", weight=3]; 1939 -> 1923[label="",style="dashed", color="red", weight=0]; 1939[label="vyw30 == vyw400",fontsize=16,color="magenta"];1939 -> 1977[label="",style="dashed", color="magenta", weight=3]; 1939 -> 1978[label="",style="dashed", color="magenta", weight=3]; 1940 -> 1924[label="",style="dashed", color="red", weight=0]; 1940[label="vyw30 == vyw400",fontsize=16,color="magenta"];1940 -> 1979[label="",style="dashed", color="magenta", weight=3]; 1940 -> 1980[label="",style="dashed", color="magenta", weight=3]; 1941 -> 1925[label="",style="dashed", color="red", weight=0]; 1941[label="vyw30 == vyw400",fontsize=16,color="magenta"];1941 -> 1981[label="",style="dashed", color="magenta", weight=3]; 1941 -> 1982[label="",style="dashed", color="magenta", weight=3]; 1942 -> 1926[label="",style="dashed", color="red", weight=0]; 1942[label="vyw30 == vyw400",fontsize=16,color="magenta"];1942 -> 1983[label="",style="dashed", color="magenta", weight=3]; 1942 -> 1984[label="",style="dashed", color="magenta", weight=3]; 1943 -> 1927[label="",style="dashed", color="red", weight=0]; 1943[label="vyw30 == vyw400",fontsize=16,color="magenta"];1943 -> 1985[label="",style="dashed", color="magenta", weight=3]; 1943 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1944 -> 1928[label="",style="dashed", color="red", weight=0]; 1944[label="vyw30 == vyw400",fontsize=16,color="magenta"];1944 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1944 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1945 -> 1929[label="",style="dashed", color="red", weight=0]; 1945[label="vyw30 == vyw400",fontsize=16,color="magenta"];1945 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1945 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1946 -> 52[label="",style="dashed", color="red", weight=0]; 1946[label="vyw30 == vyw400",fontsize=16,color="magenta"];1946 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1946 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1947 -> 1931[label="",style="dashed", color="red", weight=0]; 1947[label="vyw30 == vyw400",fontsize=16,color="magenta"];1947 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1947 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1948 -> 1932[label="",style="dashed", color="red", weight=0]; 1948[label="vyw30 == vyw400",fontsize=16,color="magenta"];1948 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1948 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1949 -> 1933[label="",style="dashed", color="red", weight=0]; 1949[label="vyw30 == vyw400",fontsize=16,color="magenta"];1949 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1949 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1950 -> 1934[label="",style="dashed", color="red", weight=0]; 1950[label="vyw30 == vyw400",fontsize=16,color="magenta"];1950 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1950 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1951 -> 1935[label="",style="dashed", color="red", weight=0]; 1951[label="vyw30 == vyw400",fontsize=16,color="magenta"];1951 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1951 -> 2002[label="",style="dashed", color="magenta", weight=3]; 354[label="Right vyw33 > Right vyw28",fontsize=16,color="black",shape="box"];354 -> 356[label="",style="solid", color="black", weight=3]; 353[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) vyw56)",fontsize=16,color="burlywood",shape="triangle"];3823[label="vyw56/False",fontsize=10,color="white",style="solid",shape="box"];353 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 357[label="",style="solid", color="burlywood", weight=3]; 3824[label="vyw56/True",fontsize=10,color="white",style="solid",shape="box"];353 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 358[label="",style="solid", color="burlywood", weight=3]; 286[label="vyw31",fontsize=16,color="green",shape="box"];287[label="Right vyw33",fontsize=16,color="green",shape="box"];1956[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3825[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1956 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 2031[label="",style="solid", color="burlywood", weight=3]; 1957[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];3826[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1957 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 2032[label="",style="solid", color="burlywood", weight=3]; 3827[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1957 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 2033[label="",style="solid", color="burlywood", weight=3]; 1958[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];3828[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 2034[label="",style="solid", color="burlywood", weight=3]; 3829[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1958 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 2035[label="",style="solid", color="burlywood", weight=3]; 1959[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3830[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];1959 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 2036[label="",style="solid", color="burlywood", weight=3]; 1960[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];3831[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3831[label="",style="solid", color="burlywood", weight=9]; 3831 -> 2037[label="",style="solid", color="burlywood", weight=3]; 3832[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1960 -> 3832[label="",style="solid", color="burlywood", weight=9]; 3832 -> 2038[label="",style="solid", color="burlywood", weight=3]; 1961[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3833[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3833[label="",style="solid", color="burlywood", weight=9]; 3833 -> 2039[label="",style="solid", color="burlywood", weight=3]; 3834[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1961 -> 3834[label="",style="solid", color="burlywood", weight=9]; 3834 -> 2040[label="",style="solid", color="burlywood", weight=3]; 1962[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];3835[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];1962 -> 3835[label="",style="solid", color="burlywood", weight=9]; 3835 -> 2041[label="",style="solid", color="burlywood", weight=3]; 1963[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3836[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];1963 -> 3836[label="",style="solid", color="burlywood", weight=9]; 3836 -> 2042[label="",style="solid", color="burlywood", weight=3]; 1964[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];3837[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];1964 -> 3837[label="",style="solid", color="burlywood", weight=9]; 3837 -> 2043[label="",style="solid", color="burlywood", weight=3]; 1965[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];3838[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];1965 -> 3838[label="",style="solid", color="burlywood", weight=9]; 3838 -> 2044[label="",style="solid", color="burlywood", weight=3]; 1966[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3839[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3839[label="",style="solid", color="burlywood", weight=9]; 3839 -> 2045[label="",style="solid", color="burlywood", weight=3]; 3840[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1966 -> 3840[label="",style="solid", color="burlywood", weight=9]; 3840 -> 2046[label="",style="solid", color="burlywood", weight=3]; 1967[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];3841[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1967 -> 3841[label="",style="solid", color="burlywood", weight=9]; 3841 -> 2047[label="",style="solid", color="burlywood", weight=3]; 3842[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1967 -> 3842[label="",style="solid", color="burlywood", weight=9]; 3842 -> 2048[label="",style="solid", color="burlywood", weight=3]; 1968[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3843[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];1968 -> 3843[label="",style="solid", color="burlywood", weight=9]; 3843 -> 2049[label="",style="solid", color="burlywood", weight=3]; 3844[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];1968 -> 3844[label="",style="solid", color="burlywood", weight=9]; 3844 -> 2050[label="",style="solid", color="burlywood", weight=3]; 1969[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3845[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];1969 -> 3845[label="",style="solid", color="burlywood", weight=9]; 3845 -> 2051[label="",style="solid", color="burlywood", weight=3]; 1970[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3846[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1970 -> 3846[label="",style="solid", color="burlywood", weight=9]; 3846 -> 2052[label="",style="solid", color="burlywood", weight=3]; 1971[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3847[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3847[label="",style="solid", color="burlywood", weight=9]; 3847 -> 2053[label="",style="solid", color="burlywood", weight=3]; 3848[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1971 -> 3848[label="",style="solid", color="burlywood", weight=9]; 3848 -> 2054[label="",style="solid", color="burlywood", weight=3]; 1972[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3849[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1972 -> 3849[label="",style="solid", color="burlywood", weight=9]; 3849 -> 2055[label="",style="solid", color="burlywood", weight=3]; 3850[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1972 -> 3850[label="",style="solid", color="burlywood", weight=9]; 3850 -> 2056[label="",style="solid", color="burlywood", weight=3]; 1973[label="compare1 vyw430 vyw440 (vyw430 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3851[label="vyw430/Left vyw4300",fontsize=10,color="white",style="solid",shape="box"];1973 -> 3851[label="",style="solid", color="burlywood", weight=9]; 3851 -> 2057[label="",style="solid", color="burlywood", weight=3]; 3852[label="vyw430/Right vyw4300",fontsize=10,color="white",style="solid",shape="box"];1973 -> 3852[label="",style="solid", color="burlywood", weight=9]; 3852 -> 2058[label="",style="solid", color="burlywood", weight=3]; 1974[label="EQ",fontsize=16,color="green",shape="box"];272[label="True",fontsize=16,color="green",shape="box"];273[label="False",fontsize=16,color="green",shape="box"];274[label="False",fontsize=16,color="green",shape="box"];275[label="False",fontsize=16,color="green",shape="box"];276[label="True",fontsize=16,color="green",shape="box"];277[label="False",fontsize=16,color="green",shape="box"];278[label="False",fontsize=16,color="green",shape="box"];279[label="False",fontsize=16,color="green",shape="box"];280[label="True",fontsize=16,color="green",shape="box"];310 -> 52[label="",style="dashed", color="red", weight=0]; 310[label="compare (Left vyw18) (Left vyw13) == GT",fontsize=16,color="magenta"];310 -> 386[label="",style="dashed", color="magenta", weight=3]; 310 -> 387[label="",style="dashed", color="magenta", weight=3]; 311[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) False)",fontsize=16,color="black",shape="box"];311 -> 388[label="",style="solid", color="black", weight=3]; 312[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True)",fontsize=16,color="black",shape="box"];312 -> 389[label="",style="solid", color="black", weight=3]; 313 -> 52[label="",style="dashed", color="red", weight=0]; 313[label="compare (Left vyw30) (Right vyw400) == GT",fontsize=16,color="magenta"];313 -> 390[label="",style="dashed", color="magenta", weight=3]; 313 -> 391[label="",style="dashed", color="magenta", weight=3]; 314[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) False)",fontsize=16,color="black",shape="box"];314 -> 392[label="",style="solid", color="black", weight=3]; 315[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) True)",fontsize=16,color="black",shape="box"];315 -> 393[label="",style="solid", color="black", weight=3]; 320 -> 52[label="",style="dashed", color="red", weight=0]; 320[label="compare (Right vyw30) (Left vyw400) == GT",fontsize=16,color="magenta"];320 -> 395[label="",style="dashed", color="magenta", weight=3]; 320 -> 396[label="",style="dashed", color="magenta", weight=3]; 321[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) False)",fontsize=16,color="black",shape="box"];321 -> 397[label="",style="solid", color="black", weight=3]; 322[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) True)",fontsize=16,color="black",shape="box"];322 -> 398[label="",style="solid", color="black", weight=3]; 1975[label="vyw400",fontsize=16,color="green",shape="box"];1976[label="vyw30",fontsize=16,color="green",shape="box"];1977[label="vyw400",fontsize=16,color="green",shape="box"];1978[label="vyw30",fontsize=16,color="green",shape="box"];1979[label="vyw400",fontsize=16,color="green",shape="box"];1980[label="vyw30",fontsize=16,color="green",shape="box"];1981[label="vyw400",fontsize=16,color="green",shape="box"];1982[label="vyw30",fontsize=16,color="green",shape="box"];1983[label="vyw400",fontsize=16,color="green",shape="box"];1984[label="vyw30",fontsize=16,color="green",shape="box"];1985[label="vyw400",fontsize=16,color="green",shape="box"];1986[label="vyw30",fontsize=16,color="green",shape="box"];1987[label="vyw400",fontsize=16,color="green",shape="box"];1988[label="vyw30",fontsize=16,color="green",shape="box"];1989[label="vyw400",fontsize=16,color="green",shape="box"];1990[label="vyw30",fontsize=16,color="green",shape="box"];1991[label="vyw400",fontsize=16,color="green",shape="box"];1992[label="vyw30",fontsize=16,color="green",shape="box"];1993[label="vyw400",fontsize=16,color="green",shape="box"];1994[label="vyw30",fontsize=16,color="green",shape="box"];1995[label="vyw400",fontsize=16,color="green",shape="box"];1996[label="vyw30",fontsize=16,color="green",shape="box"];1997[label="vyw400",fontsize=16,color="green",shape="box"];1998[label="vyw30",fontsize=16,color="green",shape="box"];1999[label="vyw400",fontsize=16,color="green",shape="box"];2000[label="vyw30",fontsize=16,color="green",shape="box"];2001[label="vyw400",fontsize=16,color="green",shape="box"];2002[label="vyw30",fontsize=16,color="green",shape="box"];356 -> 52[label="",style="dashed", color="red", weight=0]; 356[label="compare (Right vyw33) (Right vyw28) == GT",fontsize=16,color="magenta"];356 -> 400[label="",style="dashed", color="magenta", weight=3]; 356 -> 401[label="",style="dashed", color="magenta", weight=3]; 357[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) False)",fontsize=16,color="black",shape="box"];357 -> 402[label="",style="solid", color="black", weight=3]; 358[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True)",fontsize=16,color="black",shape="box"];358 -> 403[label="",style="solid", color="black", weight=3]; 2031[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3853[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];2031 -> 3853[label="",style="solid", color="burlywood", weight=9]; 3853 -> 2115[label="",style="solid", color="burlywood", weight=3]; 2032[label="False == False",fontsize=16,color="black",shape="box"];2032 -> 2116[label="",style="solid", color="black", weight=3]; 2033[label="False == True",fontsize=16,color="black",shape="box"];2033 -> 2117[label="",style="solid", color="black", weight=3]; 2034[label="True == False",fontsize=16,color="black",shape="box"];2034 -> 2118[label="",style="solid", color="black", weight=3]; 2035[label="True == True",fontsize=16,color="black",shape="box"];2035 -> 2119[label="",style="solid", color="black", weight=3]; 2036[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3854[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];2036 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 2120[label="",style="solid", color="burlywood", weight=3]; 2037[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];2037 -> 2121[label="",style="solid", color="black", weight=3]; 2038[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];2038 -> 2122[label="",style="solid", color="black", weight=3]; 2039[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];2039 -> 2123[label="",style="solid", color="black", weight=3]; 2040[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];2040 -> 2124[label="",style="solid", color="black", weight=3]; 2041[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];2041 -> 2125[label="",style="solid", color="black", weight=3]; 2042[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];2042 -> 2126[label="",style="solid", color="black", weight=3]; 2043[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];2043 -> 2127[label="",style="solid", color="black", weight=3]; 2044[label="() == ()",fontsize=16,color="black",shape="box"];2044 -> 2128[label="",style="solid", color="black", weight=3]; 2045[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];2045 -> 2129[label="",style="solid", color="black", weight=3]; 2046[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];2046 -> 2130[label="",style="solid", color="black", weight=3]; 2047[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];2047 -> 2131[label="",style="solid", color="black", weight=3]; 2048[label="[] == []",fontsize=16,color="black",shape="box"];2048 -> 2132[label="",style="solid", color="black", weight=3]; 2049[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3855[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];2049 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 2133[label="",style="solid", color="burlywood", weight=3]; 3856[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];2049 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 2134[label="",style="solid", color="burlywood", weight=3]; 2050[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3857[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];2050 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 2135[label="",style="solid", color="burlywood", weight=3]; 3858[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];2050 -> 3858[label="",style="solid", color="burlywood", weight=9]; 3858 -> 2136[label="",style="solid", color="burlywood", weight=3]; 2051[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];2051 -> 2137[label="",style="solid", color="black", weight=3]; 2052[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3859[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];2052 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 2138[label="",style="solid", color="burlywood", weight=3]; 2053[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];2053 -> 2139[label="",style="solid", color="black", weight=3]; 2054[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];2054 -> 2140[label="",style="solid", color="black", weight=3]; 2055[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];2055 -> 2141[label="",style="solid", color="black", weight=3]; 2056[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];2056 -> 2142[label="",style="solid", color="black", weight=3]; 2057[label="compare1 (Left vyw4300) vyw440 (Left vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3860[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2057 -> 3860[label="",style="solid", color="burlywood", weight=9]; 3860 -> 2143[label="",style="solid", color="burlywood", weight=3]; 3861[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2057 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 2144[label="",style="solid", color="burlywood", weight=3]; 2058[label="compare1 (Right vyw4300) vyw440 (Right vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3862[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2058 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 2145[label="",style="solid", color="burlywood", weight=3]; 3863[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2058 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 2146[label="",style="solid", color="burlywood", weight=3]; 386[label="GT",fontsize=16,color="green",shape="box"];387[label="compare (Left vyw18) (Left vyw13)",fontsize=16,color="black",shape="box"];387 -> 442[label="",style="solid", color="black", weight=3]; 388[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) otherwise)",fontsize=16,color="black",shape="box"];388 -> 443[label="",style="solid", color="black", weight=3]; 389 -> 5[label="",style="dashed", color="red", weight=0]; 389[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw17 (Left vyw18))",fontsize=16,color="magenta"];389 -> 444[label="",style="dashed", color="magenta", weight=3]; 389 -> 445[label="",style="dashed", color="magenta", weight=3]; 390[label="GT",fontsize=16,color="green",shape="box"];391[label="compare (Left vyw30) (Right vyw400)",fontsize=16,color="black",shape="box"];391 -> 446[label="",style="solid", color="black", weight=3]; 392[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) otherwise)",fontsize=16,color="black",shape="box"];392 -> 447[label="",style="solid", color="black", weight=3]; 393 -> 5[label="",style="dashed", color="red", weight=0]; 393[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw44 (Left vyw30))",fontsize=16,color="magenta"];393 -> 448[label="",style="dashed", color="magenta", weight=3]; 393 -> 449[label="",style="dashed", color="magenta", weight=3]; 395[label="GT",fontsize=16,color="green",shape="box"];396[label="compare (Right vyw30) (Left vyw400)",fontsize=16,color="black",shape="box"];396 -> 451[label="",style="solid", color="black", weight=3]; 397[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) otherwise)",fontsize=16,color="black",shape="box"];397 -> 452[label="",style="solid", color="black", weight=3]; 398 -> 5[label="",style="dashed", color="red", weight=0]; 398[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw44 (Right vyw30))",fontsize=16,color="magenta"];398 -> 453[label="",style="dashed", color="magenta", weight=3]; 398 -> 454[label="",style="dashed", color="magenta", weight=3]; 400[label="GT",fontsize=16,color="green",shape="box"];401[label="compare (Right vyw33) (Right vyw28)",fontsize=16,color="black",shape="box"];401 -> 465[label="",style="solid", color="black", weight=3]; 402[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) otherwise)",fontsize=16,color="black",shape="box"];402 -> 466[label="",style="solid", color="black", weight=3]; 403 -> 5[label="",style="dashed", color="red", weight=0]; 403[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw32 (Right vyw33))",fontsize=16,color="magenta"];403 -> 467[label="",style="dashed", color="magenta", weight=3]; 403 -> 468[label="",style="dashed", color="magenta", weight=3]; 2115[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];2115 -> 2147[label="",style="solid", color="black", weight=3]; 2116[label="True",fontsize=16,color="green",shape="box"];2117[label="False",fontsize=16,color="green",shape="box"];2118[label="False",fontsize=16,color="green",shape="box"];2119[label="True",fontsize=16,color="green",shape="box"];2120[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];2120 -> 2148[label="",style="solid", color="black", weight=3]; 2121[label="True",fontsize=16,color="green",shape="box"];2122[label="False",fontsize=16,color="green",shape="box"];2123[label="False",fontsize=16,color="green",shape="box"];2124[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3864[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3864[label="",style="solid", color="blue", weight=9]; 3864 -> 2149[label="",style="solid", color="blue", weight=3]; 3865[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3865[label="",style="solid", color="blue", weight=9]; 3865 -> 2150[label="",style="solid", color="blue", weight=3]; 3866[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3866[label="",style="solid", color="blue", weight=9]; 3866 -> 2151[label="",style="solid", color="blue", weight=3]; 3867[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3867[label="",style="solid", color="blue", weight=9]; 3867 -> 2152[label="",style="solid", color="blue", weight=3]; 3868[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3868[label="",style="solid", color="blue", weight=9]; 3868 -> 2153[label="",style="solid", color="blue", weight=3]; 3869[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3869[label="",style="solid", color="blue", weight=9]; 3869 -> 2154[label="",style="solid", color="blue", weight=3]; 3870[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3870[label="",style="solid", color="blue", weight=9]; 3870 -> 2155[label="",style="solid", color="blue", weight=3]; 3871[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3871[label="",style="solid", color="blue", weight=9]; 3871 -> 2156[label="",style="solid", color="blue", weight=3]; 3872[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3872[label="",style="solid", color="blue", weight=9]; 3872 -> 2157[label="",style="solid", color="blue", weight=3]; 3873[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 2158[label="",style="solid", color="blue", weight=3]; 3874[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 2159[label="",style="solid", color="blue", weight=3]; 3875[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 2160[label="",style="solid", color="blue", weight=3]; 3876[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 2161[label="",style="solid", color="blue", weight=3]; 3877[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2124 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 2162[label="",style="solid", color="blue", weight=3]; 2125 -> 2268[label="",style="dashed", color="red", weight=0]; 2125[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];2125 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2126 -> 1968[label="",style="dashed", color="red", weight=0]; 2126[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];2126 -> 2169[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2268[label="",style="dashed", color="red", weight=0]; 2127[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];2127 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2128[label="True",fontsize=16,color="green",shape="box"];2129 -> 2268[label="",style="dashed", color="red", weight=0]; 2129[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];2129 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2130[label="False",fontsize=16,color="green",shape="box"];2131[label="False",fontsize=16,color="green",shape="box"];2132[label="True",fontsize=16,color="green",shape="box"];2133[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3878[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2133 -> 3878[label="",style="solid", color="burlywood", weight=9]; 3878 -> 2181[label="",style="solid", color="burlywood", weight=3]; 3879[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2133 -> 3879[label="",style="solid", color="burlywood", weight=9]; 3879 -> 2182[label="",style="solid", color="burlywood", weight=3]; 2134[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3880[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2134 -> 3880[label="",style="solid", color="burlywood", weight=9]; 3880 -> 2183[label="",style="solid", color="burlywood", weight=3]; 3881[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2134 -> 3881[label="",style="solid", color="burlywood", weight=9]; 3881 -> 2184[label="",style="solid", color="burlywood", weight=3]; 2135[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3882[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3882[label="",style="solid", color="burlywood", weight=9]; 3882 -> 2185[label="",style="solid", color="burlywood", weight=3]; 3883[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2135 -> 3883[label="",style="solid", color="burlywood", weight=9]; 3883 -> 2186[label="",style="solid", color="burlywood", weight=3]; 2136[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3884[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2136 -> 3884[label="",style="solid", color="burlywood", weight=9]; 3884 -> 2187[label="",style="solid", color="burlywood", weight=3]; 3885[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2136 -> 3885[label="",style="solid", color="burlywood", weight=9]; 3885 -> 2188[label="",style="solid", color="burlywood", weight=3]; 2137 -> 2268[label="",style="dashed", color="red", weight=0]; 2137[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];2137 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2138[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];2138 -> 2189[label="",style="solid", color="black", weight=3]; 2139[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3886[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 2190[label="",style="solid", color="blue", weight=3]; 3887[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 2191[label="",style="solid", color="blue", weight=3]; 3888[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 2192[label="",style="solid", color="blue", weight=3]; 3889[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 2193[label="",style="solid", color="blue", weight=3]; 3890[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 2194[label="",style="solid", color="blue", weight=3]; 3891[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 2195[label="",style="solid", color="blue", weight=3]; 3892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 2196[label="",style="solid", color="blue", weight=3]; 3893[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 2197[label="",style="solid", color="blue", weight=3]; 3894[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 2198[label="",style="solid", color="blue", weight=3]; 3895[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 2199[label="",style="solid", color="blue", weight=3]; 3896[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 2200[label="",style="solid", color="blue", weight=3]; 3897[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 2201[label="",style="solid", color="blue", weight=3]; 3898[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 2202[label="",style="solid", color="blue", weight=3]; 3899[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2139 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 2203[label="",style="solid", color="blue", weight=3]; 2140[label="False",fontsize=16,color="green",shape="box"];2141[label="False",fontsize=16,color="green",shape="box"];2142[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3900[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 2204[label="",style="solid", color="blue", weight=3]; 3901[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 2205[label="",style="solid", color="blue", weight=3]; 3902[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 2206[label="",style="solid", color="blue", weight=3]; 3903[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 2207[label="",style="solid", color="blue", weight=3]; 3904[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 2208[label="",style="solid", color="blue", weight=3]; 3905[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 2209[label="",style="solid", color="blue", weight=3]; 3906[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 2210[label="",style="solid", color="blue", weight=3]; 3907[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 2211[label="",style="solid", color="blue", weight=3]; 3908[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 2212[label="",style="solid", color="blue", weight=3]; 3909[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 2213[label="",style="solid", color="blue", weight=3]; 3910[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 2214[label="",style="solid", color="blue", weight=3]; 3911[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 2215[label="",style="solid", color="blue", weight=3]; 3912[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 2216[label="",style="solid", color="blue", weight=3]; 3913[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2142 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 2217[label="",style="solid", color="blue", weight=3]; 2143[label="compare1 (Left vyw4300) (Left vyw4400) (Left vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2143 -> 2218[label="",style="solid", color="black", weight=3]; 2144[label="compare1 (Left vyw4300) (Right vyw4400) (Left vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2144 -> 2219[label="",style="solid", color="black", weight=3]; 2145[label="compare1 (Right vyw4300) (Left vyw4400) (Right vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2145 -> 2220[label="",style="solid", color="black", weight=3]; 2146[label="compare1 (Right vyw4300) (Right vyw4400) (Right vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2146 -> 2221[label="",style="solid", color="black", weight=3]; 442[label="compare3 (Left vyw18) (Left vyw13)",fontsize=16,color="black",shape="box"];442 -> 556[label="",style="solid", color="black", weight=3]; 443[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True)",fontsize=16,color="black",shape="box"];443 -> 557[label="",style="solid", color="black", weight=3]; 444[label="vyw17",fontsize=16,color="green",shape="box"];445[label="Left vyw18",fontsize=16,color="green",shape="box"];446[label="compare3 (Left vyw30) (Right vyw400)",fontsize=16,color="black",shape="box"];446 -> 558[label="",style="solid", color="black", weight=3]; 447[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Right vyw400) vyw41 vyw42 vyw43 vyw44 (Left vyw30) True)",fontsize=16,color="black",shape="box"];447 -> 559[label="",style="solid", color="black", weight=3]; 448[label="vyw44",fontsize=16,color="green",shape="box"];449[label="Left vyw30",fontsize=16,color="green",shape="box"];451[label="compare3 (Right vyw30) (Left vyw400)",fontsize=16,color="black",shape="box"];451 -> 560[label="",style="solid", color="black", weight=3]; 452[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Left vyw400) vyw41 vyw42 vyw43 vyw44 (Right vyw30) True)",fontsize=16,color="black",shape="box"];452 -> 561[label="",style="solid", color="black", weight=3]; 453[label="vyw44",fontsize=16,color="green",shape="box"];454[label="Right vyw30",fontsize=16,color="green",shape="box"];465[label="compare3 (Right vyw33) (Right vyw28)",fontsize=16,color="black",shape="box"];465 -> 578[label="",style="solid", color="black", weight=3]; 466[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True)",fontsize=16,color="black",shape="box"];466 -> 579[label="",style="solid", color="black", weight=3]; 467[label="vyw32",fontsize=16,color="green",shape="box"];468[label="Right vyw33",fontsize=16,color="green",shape="box"];2147 -> 1932[label="",style="dashed", color="red", weight=0]; 2147[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];2147 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2147 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2148[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3914[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3914[label="",style="solid", color="burlywood", weight=9]; 3914 -> 2224[label="",style="solid", color="burlywood", weight=3]; 3915[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];2148 -> 3915[label="",style="solid", color="burlywood", weight=9]; 3915 -> 2225[label="",style="solid", color="burlywood", weight=3]; 2149 -> 1922[label="",style="dashed", color="red", weight=0]; 2149[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2149 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2150 -> 1923[label="",style="dashed", color="red", weight=0]; 2150[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2150 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2150 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2151 -> 1924[label="",style="dashed", color="red", weight=0]; 2151[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2151 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2152 -> 1925[label="",style="dashed", color="red", weight=0]; 2152[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2152 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2153 -> 1926[label="",style="dashed", color="red", weight=0]; 2153[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2153 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2154 -> 1927[label="",style="dashed", color="red", weight=0]; 2154[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2154 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2155 -> 1928[label="",style="dashed", color="red", weight=0]; 2155[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2155 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2156 -> 1929[label="",style="dashed", color="red", weight=0]; 2156[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2156 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2157 -> 52[label="",style="dashed", color="red", weight=0]; 2157[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2157 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2158 -> 1931[label="",style="dashed", color="red", weight=0]; 2158[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2158 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2159 -> 1932[label="",style="dashed", color="red", weight=0]; 2159[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2159 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2160 -> 1933[label="",style="dashed", color="red", weight=0]; 2160[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2160 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2161 -> 1934[label="",style="dashed", color="red", weight=0]; 2161[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2161 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2162 -> 1935[label="",style="dashed", color="red", weight=0]; 2162[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2162 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2269[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3916[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 2280[label="",style="solid", color="blue", weight=3]; 3917[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 2281[label="",style="solid", color="blue", weight=3]; 3918[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 2282[label="",style="solid", color="blue", weight=3]; 3919[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 2283[label="",style="solid", color="blue", weight=3]; 3920[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 2284[label="",style="solid", color="blue", weight=3]; 3921[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 2285[label="",style="solid", color="blue", weight=3]; 3922[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 2286[label="",style="solid", color="blue", weight=3]; 3923[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 2287[label="",style="solid", color="blue", weight=3]; 3924[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 2288[label="",style="solid", color="blue", weight=3]; 3925[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 2289[label="",style="solid", color="blue", weight=3]; 3926[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 2290[label="",style="solid", color="blue", weight=3]; 3927[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 2291[label="",style="solid", color="blue", weight=3]; 3928[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 2292[label="",style="solid", color="blue", weight=3]; 3929[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2269 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 2293[label="",style="solid", color="blue", weight=3]; 2270 -> 2268[label="",style="dashed", color="red", weight=0]; 2270[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];2270 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2268[label="vyw117 && vyw129",fontsize=16,color="burlywood",shape="triangle"];3930[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];2268 -> 3930[label="",style="solid", color="burlywood", weight=9]; 3930 -> 2296[label="",style="solid", color="burlywood", weight=3]; 3931[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];2268 -> 3931[label="",style="solid", color="burlywood", weight=9]; 3931 -> 2297[label="",style="solid", color="burlywood", weight=3]; 2169[label="vyw4000",fontsize=16,color="green",shape="box"];2170[label="vyw300",fontsize=16,color="green",shape="box"];2271[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3932[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 2298[label="",style="solid", color="blue", weight=3]; 3933[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 2299[label="",style="solid", color="blue", weight=3]; 3934[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 2300[label="",style="solid", color="blue", weight=3]; 3935[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 2301[label="",style="solid", color="blue", weight=3]; 3936[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 2302[label="",style="solid", color="blue", weight=3]; 3937[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3937[label="",style="solid", color="blue", weight=9]; 3937 -> 2303[label="",style="solid", color="blue", weight=3]; 3938[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3938[label="",style="solid", color="blue", weight=9]; 3938 -> 2304[label="",style="solid", color="blue", weight=3]; 3939[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 2305[label="",style="solid", color="blue", weight=3]; 3940[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 2306[label="",style="solid", color="blue", weight=3]; 3941[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 2307[label="",style="solid", color="blue", weight=3]; 3942[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 2308[label="",style="solid", color="blue", weight=3]; 3943[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 2309[label="",style="solid", color="blue", weight=3]; 3944[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 2310[label="",style="solid", color="blue", weight=3]; 3945[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2271 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 2311[label="",style="solid", color="blue", weight=3]; 2272[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3946[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 2312[label="",style="solid", color="blue", weight=3]; 3947[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 2313[label="",style="solid", color="blue", weight=3]; 3948[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3948[label="",style="solid", color="blue", weight=9]; 3948 -> 2314[label="",style="solid", color="blue", weight=3]; 3949[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 2315[label="",style="solid", color="blue", weight=3]; 3950[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3950[label="",style="solid", color="blue", weight=9]; 3950 -> 2316[label="",style="solid", color="blue", weight=3]; 3951[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3951[label="",style="solid", color="blue", weight=9]; 3951 -> 2317[label="",style="solid", color="blue", weight=3]; 3952[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3952[label="",style="solid", color="blue", weight=9]; 3952 -> 2318[label="",style="solid", color="blue", weight=3]; 3953[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3953[label="",style="solid", color="blue", weight=9]; 3953 -> 2319[label="",style="solid", color="blue", weight=3]; 3954[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 2320[label="",style="solid", color="blue", weight=3]; 3955[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 2321[label="",style="solid", color="blue", weight=3]; 3956[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 2322[label="",style="solid", color="blue", weight=3]; 3957[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 2323[label="",style="solid", color="blue", weight=3]; 3958[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 2324[label="",style="solid", color="blue", weight=3]; 3959[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2272 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 2325[label="",style="solid", color="blue", weight=3]; 2273[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3960[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 2326[label="",style="solid", color="blue", weight=3]; 3961[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 2327[label="",style="solid", color="blue", weight=3]; 3962[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 2328[label="",style="solid", color="blue", weight=3]; 3963[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 2329[label="",style="solid", color="blue", weight=3]; 3964[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 2330[label="",style="solid", color="blue", weight=3]; 3965[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 2331[label="",style="solid", color="blue", weight=3]; 3966[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 2332[label="",style="solid", color="blue", weight=3]; 3967[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 2333[label="",style="solid", color="blue", weight=3]; 3968[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3968[label="",style="solid", color="blue", weight=9]; 3968 -> 2334[label="",style="solid", color="blue", weight=3]; 3969[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3969[label="",style="solid", color="blue", weight=9]; 3969 -> 2335[label="",style="solid", color="blue", weight=3]; 3970[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 2336[label="",style="solid", color="blue", weight=3]; 3971[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 2337[label="",style="solid", color="blue", weight=3]; 3972[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 2338[label="",style="solid", color="blue", weight=3]; 3973[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2273 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 2339[label="",style="solid", color="blue", weight=3]; 2274 -> 1931[label="",style="dashed", color="red", weight=0]; 2274[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2274 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2181[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3974[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2181 -> 3974[label="",style="solid", color="burlywood", weight=9]; 3974 -> 2342[label="",style="solid", color="burlywood", weight=3]; 3975[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2181 -> 3975[label="",style="solid", color="burlywood", weight=9]; 3975 -> 2343[label="",style="solid", color="burlywood", weight=3]; 2182[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];2182 -> 2344[label="",style="solid", color="black", weight=3]; 2183[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3976[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2183 -> 3976[label="",style="solid", color="burlywood", weight=9]; 3976 -> 2345[label="",style="solid", color="burlywood", weight=3]; 3977[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2183 -> 3977[label="",style="solid", color="burlywood", weight=9]; 3977 -> 2346[label="",style="solid", color="burlywood", weight=3]; 2184[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3978[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2184 -> 3978[label="",style="solid", color="burlywood", weight=9]; 3978 -> 2347[label="",style="solid", color="burlywood", weight=3]; 3979[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2184 -> 3979[label="",style="solid", color="burlywood", weight=9]; 3979 -> 2348[label="",style="solid", color="burlywood", weight=3]; 2185[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];2185 -> 2349[label="",style="solid", color="black", weight=3]; 2186[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3980[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2186 -> 3980[label="",style="solid", color="burlywood", weight=9]; 3980 -> 2350[label="",style="solid", color="burlywood", weight=3]; 3981[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2186 -> 3981[label="",style="solid", color="burlywood", weight=9]; 3981 -> 2351[label="",style="solid", color="burlywood", weight=3]; 2187[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3982[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2187 -> 3982[label="",style="solid", color="burlywood", weight=9]; 3982 -> 2352[label="",style="solid", color="burlywood", weight=3]; 3983[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2187 -> 3983[label="",style="solid", color="burlywood", weight=9]; 3983 -> 2353[label="",style="solid", color="burlywood", weight=3]; 2188[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3984[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2188 -> 3984[label="",style="solid", color="burlywood", weight=9]; 3984 -> 2354[label="",style="solid", color="burlywood", weight=3]; 3985[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2188 -> 3985[label="",style="solid", color="burlywood", weight=9]; 3985 -> 2355[label="",style="solid", color="burlywood", weight=3]; 2275[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3986[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 2356[label="",style="solid", color="blue", weight=3]; 3987[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2275 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 2357[label="",style="solid", color="blue", weight=3]; 2276[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3988[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 2358[label="",style="solid", color="blue", weight=3]; 3989[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2276 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 2359[label="",style="solid", color="blue", weight=3]; 2189 -> 1932[label="",style="dashed", color="red", weight=0]; 2189[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];2189 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2190 -> 1922[label="",style="dashed", color="red", weight=0]; 2190[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2190 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2191 -> 1923[label="",style="dashed", color="red", weight=0]; 2191[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2191 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2365[label="",style="dashed", color="magenta", weight=3]; 2192 -> 1924[label="",style="dashed", color="red", weight=0]; 2192[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2192 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2193 -> 1925[label="",style="dashed", color="red", weight=0]; 2193[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2193 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2194 -> 1926[label="",style="dashed", color="red", weight=0]; 2194[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2194 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2194 -> 2371[label="",style="dashed", color="magenta", weight=3]; 2195 -> 1927[label="",style="dashed", color="red", weight=0]; 2195[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2195 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2195 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2196 -> 1928[label="",style="dashed", color="red", weight=0]; 2196[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2196 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2196 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2197 -> 1929[label="",style="dashed", color="red", weight=0]; 2197[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2197 -> 2376[label="",style="dashed", color="magenta", weight=3]; 2197 -> 2377[label="",style="dashed", color="magenta", weight=3]; 2198 -> 52[label="",style="dashed", color="red", weight=0]; 2198[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2198 -> 2378[label="",style="dashed", color="magenta", weight=3]; 2198 -> 2379[label="",style="dashed", color="magenta", weight=3]; 2199 -> 1931[label="",style="dashed", color="red", weight=0]; 2199[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2199 -> 2380[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2381[label="",style="dashed", color="magenta", weight=3]; 2200 -> 1932[label="",style="dashed", color="red", weight=0]; 2200[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2200 -> 2382[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2383[label="",style="dashed", color="magenta", weight=3]; 2201 -> 1933[label="",style="dashed", color="red", weight=0]; 2201[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2201 -> 2384[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2385[label="",style="dashed", color="magenta", weight=3]; 2202 -> 1934[label="",style="dashed", color="red", weight=0]; 2202[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2202 -> 2386[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2387[label="",style="dashed", color="magenta", weight=3]; 2203 -> 1935[label="",style="dashed", color="red", weight=0]; 2203[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2203 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2204 -> 1922[label="",style="dashed", color="red", weight=0]; 2204[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2204 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2205 -> 1923[label="",style="dashed", color="red", weight=0]; 2205[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2205 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2206 -> 1924[label="",style="dashed", color="red", weight=0]; 2206[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2206 -> 2394[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2395[label="",style="dashed", color="magenta", weight=3]; 2207 -> 1925[label="",style="dashed", color="red", weight=0]; 2207[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2207 -> 2396[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2397[label="",style="dashed", color="magenta", weight=3]; 2208 -> 1926[label="",style="dashed", color="red", weight=0]; 2208[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2208 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2209 -> 1927[label="",style="dashed", color="red", weight=0]; 2209[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2209 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2210 -> 1928[label="",style="dashed", color="red", weight=0]; 2210[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2210 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2211 -> 1929[label="",style="dashed", color="red", weight=0]; 2211[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2211 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2212 -> 52[label="",style="dashed", color="red", weight=0]; 2212[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2212 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2213 -> 1931[label="",style="dashed", color="red", weight=0]; 2213[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2213 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2214 -> 1932[label="",style="dashed", color="red", weight=0]; 2214[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2214 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2215 -> 1933[label="",style="dashed", color="red", weight=0]; 2215[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2215 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2216 -> 1934[label="",style="dashed", color="red", weight=0]; 2216[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2216 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2217 -> 1935[label="",style="dashed", color="red", weight=0]; 2217[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2217 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2418[label="",style="dashed", color="red", weight=0]; 2218[label="compare1 (Left vyw4300) (Left vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2218 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2219[label="compare1 (Left vyw4300) (Right vyw4400) True",fontsize=16,color="black",shape="box"];2219 -> 2422[label="",style="solid", color="black", weight=3]; 2220[label="compare1 (Right vyw4300) (Left vyw4400) False",fontsize=16,color="black",shape="box"];2220 -> 2423[label="",style="solid", color="black", weight=3]; 2221 -> 2424[label="",style="dashed", color="red", weight=0]; 2221[label="compare1 (Right vyw4300) (Right vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2221 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2221 -> 2427[label="",style="dashed", color="magenta", weight=3]; 556 -> 1884[label="",style="dashed", color="red", weight=0]; 556[label="compare2 (Left vyw18) (Left vyw13) (Left vyw18 == Left vyw13)",fontsize=16,color="magenta"];556 -> 1909[label="",style="dashed", color="magenta", weight=3]; 556 -> 1910[label="",style="dashed", color="magenta", weight=3]; 556 -> 1911[label="",style="dashed", color="magenta", weight=3]; 557[label="FiniteMap.elemFM0 (Just vyw14)",fontsize=16,color="black",shape="triangle"];557 -> 799[label="",style="solid", color="black", weight=3]; 558 -> 1884[label="",style="dashed", color="red", weight=0]; 558[label="compare2 (Left vyw30) (Right vyw400) (Left vyw30 == Right vyw400)",fontsize=16,color="magenta"];558 -> 1912[label="",style="dashed", color="magenta", weight=3]; 558 -> 1913[label="",style="dashed", color="magenta", weight=3]; 558 -> 1914[label="",style="dashed", color="magenta", weight=3]; 559 -> 557[label="",style="dashed", color="red", weight=0]; 559[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="magenta"];559 -> 805[label="",style="dashed", color="magenta", weight=3]; 560 -> 1884[label="",style="dashed", color="red", weight=0]; 560[label="compare2 (Right vyw30) (Left vyw400) (Right vyw30 == Left vyw400)",fontsize=16,color="magenta"];560 -> 1915[label="",style="dashed", color="magenta", weight=3]; 560 -> 1916[label="",style="dashed", color="magenta", weight=3]; 560 -> 1917[label="",style="dashed", color="magenta", weight=3]; 561 -> 557[label="",style="dashed", color="red", weight=0]; 561[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="magenta"];561 -> 813[label="",style="dashed", color="magenta", weight=3]; 578 -> 1884[label="",style="dashed", color="red", weight=0]; 578[label="compare2 (Right vyw33) (Right vyw28) (Right vyw33 == Right vyw28)",fontsize=16,color="magenta"];578 -> 1918[label="",style="dashed", color="magenta", weight=3]; 578 -> 1919[label="",style="dashed", color="magenta", weight=3]; 578 -> 1920[label="",style="dashed", color="magenta", weight=3]; 579 -> 557[label="",style="dashed", color="red", weight=0]; 579[label="FiniteMap.elemFM0 (Just vyw29)",fontsize=16,color="magenta"];579 -> 846[label="",style="dashed", color="magenta", weight=3]; 2222[label="vyw301 * vyw4000",fontsize=16,color="black",shape="triangle"];2222 -> 2428[label="",style="solid", color="black", weight=3]; 2223 -> 2222[label="",style="dashed", color="red", weight=0]; 2223[label="vyw300 * vyw4001",fontsize=16,color="magenta"];2223 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2224[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];3990[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3990[label="",style="solid", color="burlywood", weight=9]; 3990 -> 2431[label="",style="solid", color="burlywood", weight=3]; 3991[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2224 -> 3991[label="",style="solid", color="burlywood", weight=9]; 3991 -> 2432[label="",style="solid", color="burlywood", weight=3]; 2225[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];3992[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3992[label="",style="solid", color="burlywood", weight=9]; 3992 -> 2433[label="",style="solid", color="burlywood", weight=3]; 3993[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2225 -> 3993[label="",style="solid", color="burlywood", weight=9]; 3993 -> 2434[label="",style="solid", color="burlywood", weight=3]; 2226[label="vyw4000",fontsize=16,color="green",shape="box"];2227[label="vyw300",fontsize=16,color="green",shape="box"];2228[label="vyw4000",fontsize=16,color="green",shape="box"];2229[label="vyw300",fontsize=16,color="green",shape="box"];2230[label="vyw4000",fontsize=16,color="green",shape="box"];2231[label="vyw300",fontsize=16,color="green",shape="box"];2232[label="vyw4000",fontsize=16,color="green",shape="box"];2233[label="vyw300",fontsize=16,color="green",shape="box"];2234[label="vyw4000",fontsize=16,color="green",shape="box"];2235[label="vyw300",fontsize=16,color="green",shape="box"];2236[label="vyw4000",fontsize=16,color="green",shape="box"];2237[label="vyw300",fontsize=16,color="green",shape="box"];2238[label="vyw4000",fontsize=16,color="green",shape="box"];2239[label="vyw300",fontsize=16,color="green",shape="box"];2240[label="vyw4000",fontsize=16,color="green",shape="box"];2241[label="vyw300",fontsize=16,color="green",shape="box"];2242[label="vyw4000",fontsize=16,color="green",shape="box"];2243[label="vyw300",fontsize=16,color="green",shape="box"];2244[label="vyw4000",fontsize=16,color="green",shape="box"];2245[label="vyw300",fontsize=16,color="green",shape="box"];2246[label="vyw4000",fontsize=16,color="green",shape="box"];2247[label="vyw300",fontsize=16,color="green",shape="box"];2248[label="vyw4000",fontsize=16,color="green",shape="box"];2249[label="vyw300",fontsize=16,color="green",shape="box"];2250[label="vyw4000",fontsize=16,color="green",shape="box"];2251[label="vyw300",fontsize=16,color="green",shape="box"];2252[label="vyw4000",fontsize=16,color="green",shape="box"];2253[label="vyw300",fontsize=16,color="green",shape="box"];2280 -> 1922[label="",style="dashed", color="red", weight=0]; 2280[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2280 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2281 -> 1923[label="",style="dashed", color="red", weight=0]; 2281[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2281 -> 2437[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2438[label="",style="dashed", color="magenta", weight=3]; 2282 -> 1924[label="",style="dashed", color="red", weight=0]; 2282[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2282 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2283 -> 1925[label="",style="dashed", color="red", weight=0]; 2283[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2283 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2284 -> 1926[label="",style="dashed", color="red", weight=0]; 2284[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2284 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2285 -> 1927[label="",style="dashed", color="red", weight=0]; 2285[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2285 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2286 -> 1928[label="",style="dashed", color="red", weight=0]; 2286[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2286 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2287 -> 1929[label="",style="dashed", color="red", weight=0]; 2287[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2287 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2288 -> 52[label="",style="dashed", color="red", weight=0]; 2288[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2288 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2289 -> 1931[label="",style="dashed", color="red", weight=0]; 2289[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2289 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2290 -> 1932[label="",style="dashed", color="red", weight=0]; 2290[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2290 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2291 -> 1933[label="",style="dashed", color="red", weight=0]; 2291[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2291 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2292 -> 1934[label="",style="dashed", color="red", weight=0]; 2292[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2292 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2293 -> 1935[label="",style="dashed", color="red", weight=0]; 2293[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2293 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2294[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3994[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 2463[label="",style="solid", color="blue", weight=3]; 3995[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 2464[label="",style="solid", color="blue", weight=3]; 3996[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 2465[label="",style="solid", color="blue", weight=3]; 3997[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 2466[label="",style="solid", color="blue", weight=3]; 3998[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 2467[label="",style="solid", color="blue", weight=3]; 3999[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 3999[label="",style="solid", color="blue", weight=9]; 3999 -> 2468[label="",style="solid", color="blue", weight=3]; 4000[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4000[label="",style="solid", color="blue", weight=9]; 4000 -> 2469[label="",style="solid", color="blue", weight=3]; 4001[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4001[label="",style="solid", color="blue", weight=9]; 4001 -> 2470[label="",style="solid", color="blue", weight=3]; 4002[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4002[label="",style="solid", color="blue", weight=9]; 4002 -> 2471[label="",style="solid", color="blue", weight=3]; 4003[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4003[label="",style="solid", color="blue", weight=9]; 4003 -> 2472[label="",style="solid", color="blue", weight=3]; 4004[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4004[label="",style="solid", color="blue", weight=9]; 4004 -> 2473[label="",style="solid", color="blue", weight=3]; 4005[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4005[label="",style="solid", color="blue", weight=9]; 4005 -> 2474[label="",style="solid", color="blue", weight=3]; 4006[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4006[label="",style="solid", color="blue", weight=9]; 4006 -> 2475[label="",style="solid", color="blue", weight=3]; 4007[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2294 -> 4007[label="",style="solid", color="blue", weight=9]; 4007 -> 2476[label="",style="solid", color="blue", weight=3]; 2295[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];4008[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4008[label="",style="solid", color="blue", weight=9]; 4008 -> 2477[label="",style="solid", color="blue", weight=3]; 4009[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4009[label="",style="solid", color="blue", weight=9]; 4009 -> 2478[label="",style="solid", color="blue", weight=3]; 4010[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4010[label="",style="solid", color="blue", weight=9]; 4010 -> 2479[label="",style="solid", color="blue", weight=3]; 4011[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4011[label="",style="solid", color="blue", weight=9]; 4011 -> 2480[label="",style="solid", color="blue", weight=3]; 4012[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 2481[label="",style="solid", color="blue", weight=3]; 4013[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 2482[label="",style="solid", color="blue", weight=3]; 4014[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 2483[label="",style="solid", color="blue", weight=3]; 4015[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 2484[label="",style="solid", color="blue", weight=3]; 4016[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 2485[label="",style="solid", color="blue", weight=3]; 4017[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 2486[label="",style="solid", color="blue", weight=3]; 4018[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 2487[label="",style="solid", color="blue", weight=3]; 4019[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 2488[label="",style="solid", color="blue", weight=3]; 4020[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 2489[label="",style="solid", color="blue", weight=3]; 4021[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2295 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 2490[label="",style="solid", color="blue", weight=3]; 2296[label="False && vyw129",fontsize=16,color="black",shape="box"];2296 -> 2491[label="",style="solid", color="black", weight=3]; 2297[label="True && vyw129",fontsize=16,color="black",shape="box"];2297 -> 2492[label="",style="solid", color="black", weight=3]; 2298 -> 1922[label="",style="dashed", color="red", weight=0]; 2298[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2298 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2299 -> 1923[label="",style="dashed", color="red", weight=0]; 2299[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2299 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2300 -> 1924[label="",style="dashed", color="red", weight=0]; 2300[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2300 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2301 -> 1925[label="",style="dashed", color="red", weight=0]; 2301[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2301 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2302 -> 1926[label="",style="dashed", color="red", weight=0]; 2302[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2302 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2303 -> 1927[label="",style="dashed", color="red", weight=0]; 2303[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2303 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2304 -> 1928[label="",style="dashed", color="red", weight=0]; 2304[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2304 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2305 -> 1929[label="",style="dashed", color="red", weight=0]; 2305[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2305 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2306 -> 52[label="",style="dashed", color="red", weight=0]; 2306[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2306 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2307 -> 1931[label="",style="dashed", color="red", weight=0]; 2307[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2307 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2308 -> 1932[label="",style="dashed", color="red", weight=0]; 2308[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2308 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2309 -> 1933[label="",style="dashed", color="red", weight=0]; 2309[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2309 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2310 -> 1934[label="",style="dashed", color="red", weight=0]; 2310[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2310 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2311 -> 1935[label="",style="dashed", color="red", weight=0]; 2311[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2311 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2312 -> 1922[label="",style="dashed", color="red", weight=0]; 2312[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2312 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2313 -> 1923[label="",style="dashed", color="red", weight=0]; 2313[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2313 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2314 -> 1924[label="",style="dashed", color="red", weight=0]; 2314[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2314 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2315 -> 1925[label="",style="dashed", color="red", weight=0]; 2315[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2315 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2316 -> 1926[label="",style="dashed", color="red", weight=0]; 2316[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2316 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2317 -> 1927[label="",style="dashed", color="red", weight=0]; 2317[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2317 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2317 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2318 -> 1928[label="",style="dashed", color="red", weight=0]; 2318[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2318 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2319 -> 1929[label="",style="dashed", color="red", weight=0]; 2319[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2319 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2320 -> 52[label="",style="dashed", color="red", weight=0]; 2320[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2320 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2321 -> 1931[label="",style="dashed", color="red", weight=0]; 2321[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2321 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2322 -> 1932[label="",style="dashed", color="red", weight=0]; 2322[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2322 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2323 -> 1933[label="",style="dashed", color="red", weight=0]; 2323[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2323 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2324 -> 1934[label="",style="dashed", color="red", weight=0]; 2324[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2324 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2325 -> 1935[label="",style="dashed", color="red", weight=0]; 2325[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2325 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2325 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2326 -> 1922[label="",style="dashed", color="red", weight=0]; 2326[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2326 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2326 -> 2550[label="",style="dashed", color="magenta", weight=3]; 2327 -> 1923[label="",style="dashed", color="red", weight=0]; 2327[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2327 -> 2551[label="",style="dashed", color="magenta", weight=3]; 2327 -> 2552[label="",style="dashed", color="magenta", weight=3]; 2328 -> 1924[label="",style="dashed", color="red", weight=0]; 2328[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2328 -> 2553[label="",style="dashed", color="magenta", weight=3]; 2328 -> 2554[label="",style="dashed", color="magenta", weight=3]; 2329 -> 1925[label="",style="dashed", color="red", weight=0]; 2329[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2329 -> 2555[label="",style="dashed", color="magenta", weight=3]; 2329 -> 2556[label="",style="dashed", color="magenta", weight=3]; 2330 -> 1926[label="",style="dashed", color="red", weight=0]; 2330[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2330 -> 2557[label="",style="dashed", color="magenta", weight=3]; 2330 -> 2558[label="",style="dashed", color="magenta", weight=3]; 2331 -> 1927[label="",style="dashed", color="red", weight=0]; 2331[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2331 -> 2559[label="",style="dashed", color="magenta", weight=3]; 2331 -> 2560[label="",style="dashed", color="magenta", weight=3]; 2332 -> 1928[label="",style="dashed", color="red", weight=0]; 2332[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2332 -> 2561[label="",style="dashed", color="magenta", weight=3]; 2332 -> 2562[label="",style="dashed", color="magenta", weight=3]; 2333 -> 1929[label="",style="dashed", color="red", weight=0]; 2333[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2333 -> 2563[label="",style="dashed", color="magenta", weight=3]; 2333 -> 2564[label="",style="dashed", color="magenta", weight=3]; 2334 -> 52[label="",style="dashed", color="red", weight=0]; 2334[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2334 -> 2565[label="",style="dashed", color="magenta", weight=3]; 2334 -> 2566[label="",style="dashed", color="magenta", weight=3]; 2335 -> 1931[label="",style="dashed", color="red", weight=0]; 2335[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2335 -> 2567[label="",style="dashed", color="magenta", weight=3]; 2335 -> 2568[label="",style="dashed", color="magenta", weight=3]; 2336 -> 1932[label="",style="dashed", color="red", weight=0]; 2336[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2336 -> 2569[label="",style="dashed", color="magenta", weight=3]; 2336 -> 2570[label="",style="dashed", color="magenta", weight=3]; 2337 -> 1933[label="",style="dashed", color="red", weight=0]; 2337[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2337 -> 2571[label="",style="dashed", color="magenta", weight=3]; 2337 -> 2572[label="",style="dashed", color="magenta", weight=3]; 2338 -> 1934[label="",style="dashed", color="red", weight=0]; 2338[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2338 -> 2573[label="",style="dashed", color="magenta", weight=3]; 2338 -> 2574[label="",style="dashed", color="magenta", weight=3]; 2339 -> 1935[label="",style="dashed", color="red", weight=0]; 2339[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2339 -> 2575[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2576[label="",style="dashed", color="magenta", weight=3]; 2340[label="vyw4001",fontsize=16,color="green",shape="box"];2341[label="vyw301",fontsize=16,color="green",shape="box"];2342[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2342 -> 2577[label="",style="solid", color="black", weight=3]; 2343[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2343 -> 2578[label="",style="solid", color="black", weight=3]; 2344[label="False",fontsize=16,color="green",shape="box"];2345[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2345 -> 2579[label="",style="solid", color="black", weight=3]; 2346[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2346 -> 2580[label="",style="solid", color="black", weight=3]; 2347[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2347 -> 2581[label="",style="solid", color="black", weight=3]; 2348[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2348 -> 2582[label="",style="solid", color="black", weight=3]; 2349[label="False",fontsize=16,color="green",shape="box"];2350[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2350 -> 2583[label="",style="solid", color="black", weight=3]; 2351[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2351 -> 2584[label="",style="solid", color="black", weight=3]; 2352[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2352 -> 2585[label="",style="solid", color="black", weight=3]; 2353[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2353 -> 2586[label="",style="solid", color="black", weight=3]; 2354[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2354 -> 2587[label="",style="solid", color="black", weight=3]; 2355[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2355 -> 2588[label="",style="solid", color="black", weight=3]; 2356 -> 1927[label="",style="dashed", color="red", weight=0]; 2356[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2356 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2357 -> 1932[label="",style="dashed", color="red", weight=0]; 2357[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2357 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2358 -> 1927[label="",style="dashed", color="red", weight=0]; 2358[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2358 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2359 -> 1932[label="",style="dashed", color="red", weight=0]; 2359[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2359 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2222[label="",style="dashed", color="red", weight=0]; 2360[label="vyw301 * vyw4000",fontsize=16,color="magenta"];2360 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2222[label="",style="dashed", color="red", weight=0]; 2361[label="vyw300 * vyw4001",fontsize=16,color="magenta"];2361 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2362[label="vyw4000",fontsize=16,color="green",shape="box"];2363[label="vyw300",fontsize=16,color="green",shape="box"];2364[label="vyw4000",fontsize=16,color="green",shape="box"];2365[label="vyw300",fontsize=16,color="green",shape="box"];2366[label="vyw4000",fontsize=16,color="green",shape="box"];2367[label="vyw300",fontsize=16,color="green",shape="box"];2368[label="vyw4000",fontsize=16,color="green",shape="box"];2369[label="vyw300",fontsize=16,color="green",shape="box"];2370[label="vyw4000",fontsize=16,color="green",shape="box"];2371[label="vyw300",fontsize=16,color="green",shape="box"];2372[label="vyw4000",fontsize=16,color="green",shape="box"];2373[label="vyw300",fontsize=16,color="green",shape="box"];2374[label="vyw4000",fontsize=16,color="green",shape="box"];2375[label="vyw300",fontsize=16,color="green",shape="box"];2376[label="vyw4000",fontsize=16,color="green",shape="box"];2377[label="vyw300",fontsize=16,color="green",shape="box"];2378[label="vyw4000",fontsize=16,color="green",shape="box"];2379[label="vyw300",fontsize=16,color="green",shape="box"];2380[label="vyw4000",fontsize=16,color="green",shape="box"];2381[label="vyw300",fontsize=16,color="green",shape="box"];2382[label="vyw4000",fontsize=16,color="green",shape="box"];2383[label="vyw300",fontsize=16,color="green",shape="box"];2384[label="vyw4000",fontsize=16,color="green",shape="box"];2385[label="vyw300",fontsize=16,color="green",shape="box"];2386[label="vyw4000",fontsize=16,color="green",shape="box"];2387[label="vyw300",fontsize=16,color="green",shape="box"];2388[label="vyw4000",fontsize=16,color="green",shape="box"];2389[label="vyw300",fontsize=16,color="green",shape="box"];2390[label="vyw4000",fontsize=16,color="green",shape="box"];2391[label="vyw300",fontsize=16,color="green",shape="box"];2392[label="vyw4000",fontsize=16,color="green",shape="box"];2393[label="vyw300",fontsize=16,color="green",shape="box"];2394[label="vyw4000",fontsize=16,color="green",shape="box"];2395[label="vyw300",fontsize=16,color="green",shape="box"];2396[label="vyw4000",fontsize=16,color="green",shape="box"];2397[label="vyw300",fontsize=16,color="green",shape="box"];2398[label="vyw4000",fontsize=16,color="green",shape="box"];2399[label="vyw300",fontsize=16,color="green",shape="box"];2400[label="vyw4000",fontsize=16,color="green",shape="box"];2401[label="vyw300",fontsize=16,color="green",shape="box"];2402[label="vyw4000",fontsize=16,color="green",shape="box"];2403[label="vyw300",fontsize=16,color="green",shape="box"];2404[label="vyw4000",fontsize=16,color="green",shape="box"];2405[label="vyw300",fontsize=16,color="green",shape="box"];2406[label="vyw4000",fontsize=16,color="green",shape="box"];2407[label="vyw300",fontsize=16,color="green",shape="box"];2408[label="vyw4000",fontsize=16,color="green",shape="box"];2409[label="vyw300",fontsize=16,color="green",shape="box"];2410[label="vyw4000",fontsize=16,color="green",shape="box"];2411[label="vyw300",fontsize=16,color="green",shape="box"];2412[label="vyw4000",fontsize=16,color="green",shape="box"];2413[label="vyw300",fontsize=16,color="green",shape="box"];2414[label="vyw4000",fontsize=16,color="green",shape="box"];2415[label="vyw300",fontsize=16,color="green",shape="box"];2416[label="vyw4000",fontsize=16,color="green",shape="box"];2417[label="vyw300",fontsize=16,color="green",shape="box"];2419[label="vyw4300",fontsize=16,color="green",shape="box"];2420[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];4022[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4022[label="",style="solid", color="blue", weight=9]; 4022 -> 2601[label="",style="solid", color="blue", weight=3]; 4023[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4023[label="",style="solid", color="blue", weight=9]; 4023 -> 2602[label="",style="solid", color="blue", weight=3]; 4024[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4024[label="",style="solid", color="blue", weight=9]; 4024 -> 2603[label="",style="solid", color="blue", weight=3]; 4025[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4025[label="",style="solid", color="blue", weight=9]; 4025 -> 2604[label="",style="solid", color="blue", weight=3]; 4026[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4026[label="",style="solid", color="blue", weight=9]; 4026 -> 2605[label="",style="solid", color="blue", weight=3]; 4027[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4027[label="",style="solid", color="blue", weight=9]; 4027 -> 2606[label="",style="solid", color="blue", weight=3]; 4028[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4028[label="",style="solid", color="blue", weight=9]; 4028 -> 2607[label="",style="solid", color="blue", weight=3]; 4029[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 2608[label="",style="solid", color="blue", weight=3]; 4030[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 2609[label="",style="solid", color="blue", weight=3]; 4031[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 2610[label="",style="solid", color="blue", weight=3]; 4032[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 2611[label="",style="solid", color="blue", weight=3]; 4033[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 2612[label="",style="solid", color="blue", weight=3]; 4034[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 2613[label="",style="solid", color="blue", weight=3]; 4035[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2420 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 2614[label="",style="solid", color="blue", weight=3]; 2421[label="vyw4400",fontsize=16,color="green",shape="box"];2418[label="compare1 (Left vyw134) (Left vyw135) vyw136",fontsize=16,color="burlywood",shape="triangle"];4036[label="vyw136/False",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4036[label="",style="solid", color="burlywood", weight=9]; 4036 -> 2615[label="",style="solid", color="burlywood", weight=3]; 4037[label="vyw136/True",fontsize=10,color="white",style="solid",shape="box"];2418 -> 4037[label="",style="solid", color="burlywood", weight=9]; 4037 -> 2616[label="",style="solid", color="burlywood", weight=3]; 2422[label="LT",fontsize=16,color="green",shape="box"];2423[label="compare0 (Right vyw4300) (Left vyw4400) otherwise",fontsize=16,color="black",shape="box"];2423 -> 2617[label="",style="solid", color="black", weight=3]; 2425[label="vyw4300",fontsize=16,color="green",shape="box"];2426[label="vyw4400",fontsize=16,color="green",shape="box"];2427[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];4038[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4038[label="",style="solid", color="blue", weight=9]; 4038 -> 2618[label="",style="solid", color="blue", weight=3]; 4039[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4039[label="",style="solid", color="blue", weight=9]; 4039 -> 2619[label="",style="solid", color="blue", weight=3]; 4040[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4040[label="",style="solid", color="blue", weight=9]; 4040 -> 2620[label="",style="solid", color="blue", weight=3]; 4041[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4041[label="",style="solid", color="blue", weight=9]; 4041 -> 2621[label="",style="solid", color="blue", weight=3]; 4042[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4042[label="",style="solid", color="blue", weight=9]; 4042 -> 2622[label="",style="solid", color="blue", weight=3]; 4043[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4043[label="",style="solid", color="blue", weight=9]; 4043 -> 2623[label="",style="solid", color="blue", weight=3]; 4044[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4044[label="",style="solid", color="blue", weight=9]; 4044 -> 2624[label="",style="solid", color="blue", weight=3]; 4045[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4045[label="",style="solid", color="blue", weight=9]; 4045 -> 2625[label="",style="solid", color="blue", weight=3]; 4046[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4046[label="",style="solid", color="blue", weight=9]; 4046 -> 2626[label="",style="solid", color="blue", weight=3]; 4047[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4047[label="",style="solid", color="blue", weight=9]; 4047 -> 2627[label="",style="solid", color="blue", weight=3]; 4048[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4048[label="",style="solid", color="blue", weight=9]; 4048 -> 2628[label="",style="solid", color="blue", weight=3]; 4049[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4049[label="",style="solid", color="blue", weight=9]; 4049 -> 2629[label="",style="solid", color="blue", weight=3]; 4050[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4050[label="",style="solid", color="blue", weight=9]; 4050 -> 2630[label="",style="solid", color="blue", weight=3]; 4051[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2427 -> 4051[label="",style="solid", color="blue", weight=9]; 4051 -> 2631[label="",style="solid", color="blue", weight=3]; 2424[label="compare1 (Right vyw141) (Right vyw142) vyw143",fontsize=16,color="burlywood",shape="triangle"];4052[label="vyw143/False",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4052[label="",style="solid", color="burlywood", weight=9]; 4052 -> 2632[label="",style="solid", color="burlywood", weight=3]; 4053[label="vyw143/True",fontsize=10,color="white",style="solid",shape="box"];2424 -> 4053[label="",style="solid", color="burlywood", weight=9]; 4053 -> 2633[label="",style="solid", color="burlywood", weight=3]; 1909[label="Left vyw13",fontsize=16,color="green",shape="box"];1910[label="Left vyw18 == Left vyw13",fontsize=16,color="black",shape="box"];1910 -> 1952[label="",style="solid", color="black", weight=3]; 1911[label="Left vyw18",fontsize=16,color="green",shape="box"];799[label="True",fontsize=16,color="green",shape="box"];1912[label="Right vyw400",fontsize=16,color="green",shape="box"];1913[label="Left vyw30 == Right vyw400",fontsize=16,color="black",shape="box"];1913 -> 1953[label="",style="solid", color="black", weight=3]; 1914[label="Left vyw30",fontsize=16,color="green",shape="box"];805[label="vyw41",fontsize=16,color="green",shape="box"];1915[label="Left vyw400",fontsize=16,color="green",shape="box"];1916[label="Right vyw30 == Left vyw400",fontsize=16,color="black",shape="box"];1916 -> 1954[label="",style="solid", color="black", weight=3]; 1917[label="Right vyw30",fontsize=16,color="green",shape="box"];813[label="vyw41",fontsize=16,color="green",shape="box"];1918[label="Right vyw28",fontsize=16,color="green",shape="box"];1919[label="Right vyw33 == Right vyw28",fontsize=16,color="black",shape="box"];1919 -> 1955[label="",style="solid", color="black", weight=3]; 1920[label="Right vyw33",fontsize=16,color="green",shape="box"];846[label="vyw29",fontsize=16,color="green",shape="box"];2428[label="primMulInt vyw301 vyw4000",fontsize=16,color="burlywood",shape="triangle"];4054[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];2428 -> 4054[label="",style="solid", color="burlywood", weight=9]; 4054 -> 2634[label="",style="solid", color="burlywood", weight=3]; 4055[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];2428 -> 4055[label="",style="solid", color="burlywood", weight=9]; 4055 -> 2635[label="",style="solid", color="burlywood", weight=3]; 2429[label="vyw300",fontsize=16,color="green",shape="box"];2430[label="vyw4001",fontsize=16,color="green",shape="box"];2431[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];2431 -> 2636[label="",style="solid", color="black", weight=3]; 2432[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];2432 -> 2637[label="",style="solid", color="black", weight=3]; 2433[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];2433 -> 2638[label="",style="solid", color="black", weight=3]; 2434[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2434 -> 2639[label="",style="solid", color="black", weight=3]; 2435[label="vyw4000",fontsize=16,color="green",shape="box"];2436[label="vyw300",fontsize=16,color="green",shape="box"];2437[label="vyw4000",fontsize=16,color="green",shape="box"];2438[label="vyw300",fontsize=16,color="green",shape="box"];2439[label="vyw4000",fontsize=16,color="green",shape="box"];2440[label="vyw300",fontsize=16,color="green",shape="box"];2441[label="vyw4000",fontsize=16,color="green",shape="box"];2442[label="vyw300",fontsize=16,color="green",shape="box"];2443[label="vyw4000",fontsize=16,color="green",shape="box"];2444[label="vyw300",fontsize=16,color="green",shape="box"];2445[label="vyw4000",fontsize=16,color="green",shape="box"];2446[label="vyw300",fontsize=16,color="green",shape="box"];2447[label="vyw4000",fontsize=16,color="green",shape="box"];2448[label="vyw300",fontsize=16,color="green",shape="box"];2449[label="vyw4000",fontsize=16,color="green",shape="box"];2450[label="vyw300",fontsize=16,color="green",shape="box"];2451[label="vyw4000",fontsize=16,color="green",shape="box"];2452[label="vyw300",fontsize=16,color="green",shape="box"];2453[label="vyw4000",fontsize=16,color="green",shape="box"];2454[label="vyw300",fontsize=16,color="green",shape="box"];2455[label="vyw4000",fontsize=16,color="green",shape="box"];2456[label="vyw300",fontsize=16,color="green",shape="box"];2457[label="vyw4000",fontsize=16,color="green",shape="box"];2458[label="vyw300",fontsize=16,color="green",shape="box"];2459[label="vyw4000",fontsize=16,color="green",shape="box"];2460[label="vyw300",fontsize=16,color="green",shape="box"];2461[label="vyw4000",fontsize=16,color="green",shape="box"];2462[label="vyw300",fontsize=16,color="green",shape="box"];2463 -> 1922[label="",style="dashed", color="red", weight=0]; 2463[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2463 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2463 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2464 -> 1923[label="",style="dashed", color="red", weight=0]; 2464[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2464 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2464 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2465 -> 1924[label="",style="dashed", color="red", weight=0]; 2465[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2465 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2465 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2466 -> 1925[label="",style="dashed", color="red", weight=0]; 2466[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2466 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2466 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2467 -> 1926[label="",style="dashed", color="red", weight=0]; 2467[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2467 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2467 -> 2649[label="",style="dashed", color="magenta", weight=3]; 2468 -> 1927[label="",style="dashed", color="red", weight=0]; 2468[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2468 -> 2650[label="",style="dashed", color="magenta", weight=3]; 2468 -> 2651[label="",style="dashed", color="magenta", weight=3]; 2469 -> 1928[label="",style="dashed", color="red", weight=0]; 2469[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2469 -> 2652[label="",style="dashed", color="magenta", weight=3]; 2469 -> 2653[label="",style="dashed", color="magenta", weight=3]; 2470 -> 1929[label="",style="dashed", color="red", weight=0]; 2470[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2470 -> 2654[label="",style="dashed", color="magenta", weight=3]; 2470 -> 2655[label="",style="dashed", color="magenta", weight=3]; 2471 -> 52[label="",style="dashed", color="red", weight=0]; 2471[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2471 -> 2656[label="",style="dashed", color="magenta", weight=3]; 2471 -> 2657[label="",style="dashed", color="magenta", weight=3]; 2472 -> 1931[label="",style="dashed", color="red", weight=0]; 2472[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2472 -> 2658[label="",style="dashed", color="magenta", weight=3]; 2472 -> 2659[label="",style="dashed", color="magenta", weight=3]; 2473 -> 1932[label="",style="dashed", color="red", weight=0]; 2473[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2473 -> 2660[label="",style="dashed", color="magenta", weight=3]; 2473 -> 2661[label="",style="dashed", color="magenta", weight=3]; 2474 -> 1933[label="",style="dashed", color="red", weight=0]; 2474[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2474 -> 2662[label="",style="dashed", color="magenta", weight=3]; 2474 -> 2663[label="",style="dashed", color="magenta", weight=3]; 2475 -> 1934[label="",style="dashed", color="red", weight=0]; 2475[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2475 -> 2664[label="",style="dashed", color="magenta", weight=3]; 2475 -> 2665[label="",style="dashed", color="magenta", weight=3]; 2476 -> 1935[label="",style="dashed", color="red", weight=0]; 2476[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2476 -> 2666[label="",style="dashed", color="magenta", weight=3]; 2476 -> 2667[label="",style="dashed", color="magenta", weight=3]; 2477 -> 1922[label="",style="dashed", color="red", weight=0]; 2477[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2477 -> 2668[label="",style="dashed", color="magenta", weight=3]; 2477 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2478 -> 1923[label="",style="dashed", color="red", weight=0]; 2478[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2478 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2478 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2479 -> 1924[label="",style="dashed", color="red", weight=0]; 2479[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2479 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2479 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2480 -> 1925[label="",style="dashed", color="red", weight=0]; 2480[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2480 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2480 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2481 -> 1926[label="",style="dashed", color="red", weight=0]; 2481[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2481 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2481 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2482 -> 1927[label="",style="dashed", color="red", weight=0]; 2482[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2482 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2483 -> 1928[label="",style="dashed", color="red", weight=0]; 2483[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2483 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2483 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2484 -> 1929[label="",style="dashed", color="red", weight=0]; 2484[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2484 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2484 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2485 -> 52[label="",style="dashed", color="red", weight=0]; 2485[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2485 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2485 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2486 -> 1931[label="",style="dashed", color="red", weight=0]; 2486[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2486 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2486 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2487 -> 1932[label="",style="dashed", color="red", weight=0]; 2487[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2487 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2487 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2488 -> 1933[label="",style="dashed", color="red", weight=0]; 2488[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2488 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2489 -> 1934[label="",style="dashed", color="red", weight=0]; 2489[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2489 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2489 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2490 -> 1935[label="",style="dashed", color="red", weight=0]; 2490[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2490 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2490 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2491[label="False",fontsize=16,color="green",shape="box"];2492[label="vyw129",fontsize=16,color="green",shape="box"];2493[label="vyw4000",fontsize=16,color="green",shape="box"];2494[label="vyw300",fontsize=16,color="green",shape="box"];2495[label="vyw4000",fontsize=16,color="green",shape="box"];2496[label="vyw300",fontsize=16,color="green",shape="box"];2497[label="vyw4000",fontsize=16,color="green",shape="box"];2498[label="vyw300",fontsize=16,color="green",shape="box"];2499[label="vyw4000",fontsize=16,color="green",shape="box"];2500[label="vyw300",fontsize=16,color="green",shape="box"];2501[label="vyw4000",fontsize=16,color="green",shape="box"];2502[label="vyw300",fontsize=16,color="green",shape="box"];2503[label="vyw4000",fontsize=16,color="green",shape="box"];2504[label="vyw300",fontsize=16,color="green",shape="box"];2505[label="vyw4000",fontsize=16,color="green",shape="box"];2506[label="vyw300",fontsize=16,color="green",shape="box"];2507[label="vyw4000",fontsize=16,color="green",shape="box"];2508[label="vyw300",fontsize=16,color="green",shape="box"];2509[label="vyw4000",fontsize=16,color="green",shape="box"];2510[label="vyw300",fontsize=16,color="green",shape="box"];2511[label="vyw4000",fontsize=16,color="green",shape="box"];2512[label="vyw300",fontsize=16,color="green",shape="box"];2513[label="vyw4000",fontsize=16,color="green",shape="box"];2514[label="vyw300",fontsize=16,color="green",shape="box"];2515[label="vyw4000",fontsize=16,color="green",shape="box"];2516[label="vyw300",fontsize=16,color="green",shape="box"];2517[label="vyw4000",fontsize=16,color="green",shape="box"];2518[label="vyw300",fontsize=16,color="green",shape="box"];2519[label="vyw4000",fontsize=16,color="green",shape="box"];2520[label="vyw300",fontsize=16,color="green",shape="box"];2521[label="vyw4001",fontsize=16,color="green",shape="box"];2522[label="vyw301",fontsize=16,color="green",shape="box"];2523[label="vyw4001",fontsize=16,color="green",shape="box"];2524[label="vyw301",fontsize=16,color="green",shape="box"];2525[label="vyw4001",fontsize=16,color="green",shape="box"];2526[label="vyw301",fontsize=16,color="green",shape="box"];2527[label="vyw4001",fontsize=16,color="green",shape="box"];2528[label="vyw301",fontsize=16,color="green",shape="box"];2529[label="vyw4001",fontsize=16,color="green",shape="box"];2530[label="vyw301",fontsize=16,color="green",shape="box"];2531[label="vyw4001",fontsize=16,color="green",shape="box"];2532[label="vyw301",fontsize=16,color="green",shape="box"];2533[label="vyw4001",fontsize=16,color="green",shape="box"];2534[label="vyw301",fontsize=16,color="green",shape="box"];2535[label="vyw4001",fontsize=16,color="green",shape="box"];2536[label="vyw301",fontsize=16,color="green",shape="box"];2537[label="vyw4001",fontsize=16,color="green",shape="box"];2538[label="vyw301",fontsize=16,color="green",shape="box"];2539[label="vyw4001",fontsize=16,color="green",shape="box"];2540[label="vyw301",fontsize=16,color="green",shape="box"];2541[label="vyw4001",fontsize=16,color="green",shape="box"];2542[label="vyw301",fontsize=16,color="green",shape="box"];2543[label="vyw4001",fontsize=16,color="green",shape="box"];2544[label="vyw301",fontsize=16,color="green",shape="box"];2545[label="vyw4001",fontsize=16,color="green",shape="box"];2546[label="vyw301",fontsize=16,color="green",shape="box"];2547[label="vyw4001",fontsize=16,color="green",shape="box"];2548[label="vyw301",fontsize=16,color="green",shape="box"];2549[label="vyw4000",fontsize=16,color="green",shape="box"];2550[label="vyw300",fontsize=16,color="green",shape="box"];2551[label="vyw4000",fontsize=16,color="green",shape="box"];2552[label="vyw300",fontsize=16,color="green",shape="box"];2553[label="vyw4000",fontsize=16,color="green",shape="box"];2554[label="vyw300",fontsize=16,color="green",shape="box"];2555[label="vyw4000",fontsize=16,color="green",shape="box"];2556[label="vyw300",fontsize=16,color="green",shape="box"];2557[label="vyw4000",fontsize=16,color="green",shape="box"];2558[label="vyw300",fontsize=16,color="green",shape="box"];2559[label="vyw4000",fontsize=16,color="green",shape="box"];2560[label="vyw300",fontsize=16,color="green",shape="box"];2561[label="vyw4000",fontsize=16,color="green",shape="box"];2562[label="vyw300",fontsize=16,color="green",shape="box"];2563[label="vyw4000",fontsize=16,color="green",shape="box"];2564[label="vyw300",fontsize=16,color="green",shape="box"];2565[label="vyw4000",fontsize=16,color="green",shape="box"];2566[label="vyw300",fontsize=16,color="green",shape="box"];2567[label="vyw4000",fontsize=16,color="green",shape="box"];2568[label="vyw300",fontsize=16,color="green",shape="box"];2569[label="vyw4000",fontsize=16,color="green",shape="box"];2570[label="vyw300",fontsize=16,color="green",shape="box"];2571[label="vyw4000",fontsize=16,color="green",shape="box"];2572[label="vyw300",fontsize=16,color="green",shape="box"];2573[label="vyw4000",fontsize=16,color="green",shape="box"];2574[label="vyw300",fontsize=16,color="green",shape="box"];2575[label="vyw4000",fontsize=16,color="green",shape="box"];2576[label="vyw300",fontsize=16,color="green",shape="box"];2577 -> 2148[label="",style="dashed", color="red", weight=0]; 2577[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2577 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2578[label="False",fontsize=16,color="green",shape="box"];2579[label="False",fontsize=16,color="green",shape="box"];2580[label="True",fontsize=16,color="green",shape="box"];2581[label="False",fontsize=16,color="green",shape="box"];2582[label="True",fontsize=16,color="green",shape="box"];2583 -> 2148[label="",style="dashed", color="red", weight=0]; 2583[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2583 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2699[label="",style="dashed", color="magenta", weight=3]; 2584[label="False",fontsize=16,color="green",shape="box"];2585[label="False",fontsize=16,color="green",shape="box"];2586[label="True",fontsize=16,color="green",shape="box"];2587[label="False",fontsize=16,color="green",shape="box"];2588[label="True",fontsize=16,color="green",shape="box"];2589[label="vyw4000",fontsize=16,color="green",shape="box"];2590[label="vyw300",fontsize=16,color="green",shape="box"];2591[label="vyw4000",fontsize=16,color="green",shape="box"];2592[label="vyw300",fontsize=16,color="green",shape="box"];2593[label="vyw4001",fontsize=16,color="green",shape="box"];2594[label="vyw301",fontsize=16,color="green",shape="box"];2595[label="vyw4001",fontsize=16,color="green",shape="box"];2596[label="vyw301",fontsize=16,color="green",shape="box"];2597[label="vyw301",fontsize=16,color="green",shape="box"];2598[label="vyw4000",fontsize=16,color="green",shape="box"];2599[label="vyw300",fontsize=16,color="green",shape="box"];2600[label="vyw4001",fontsize=16,color="green",shape="box"];2601[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4056[label="vyw4300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4056[label="",style="solid", color="burlywood", weight=9]; 4056 -> 2700[label="",style="solid", color="burlywood", weight=3]; 4057[label="vyw4300/Just vyw43000",fontsize=10,color="white",style="solid",shape="box"];2601 -> 4057[label="",style="solid", color="burlywood", weight=9]; 4057 -> 2701[label="",style="solid", color="burlywood", weight=3]; 2602[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2602 -> 2702[label="",style="solid", color="black", weight=3]; 2603[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2603 -> 2703[label="",style="solid", color="black", weight=3]; 2604[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2604 -> 2704[label="",style="solid", color="black", weight=3]; 2605[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4058[label="vyw4300/Left vyw43000",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 2705[label="",style="solid", color="burlywood", weight=3]; 4059[label="vyw4300/Right vyw43000",fontsize=10,color="white",style="solid",shape="box"];2605 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 2706[label="",style="solid", color="burlywood", weight=3]; 2606[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2606 -> 2707[label="",style="solid", color="black", weight=3]; 2607[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2607 -> 2708[label="",style="solid", color="black", weight=3]; 2608[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4060[label="vyw4300/False",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 2709[label="",style="solid", color="burlywood", weight=3]; 4061[label="vyw4300/True",fontsize=10,color="white",style="solid",shape="box"];2608 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 2710[label="",style="solid", color="burlywood", weight=3]; 2609[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2609 -> 2711[label="",style="solid", color="black", weight=3]; 2610[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2610 -> 2712[label="",style="solid", color="black", weight=3]; 2611[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4062[label="vyw4300/(vyw43000,vyw43001,vyw43002)",fontsize=10,color="white",style="solid",shape="box"];2611 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 2713[label="",style="solid", color="burlywood", weight=3]; 2612[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4063[label="vyw4300/(vyw43000,vyw43001)",fontsize=10,color="white",style="solid",shape="box"];2612 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 2714[label="",style="solid", color="burlywood", weight=3]; 2613[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2613 -> 2715[label="",style="solid", color="black", weight=3]; 2614[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4064[label="vyw4300/LT",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 2716[label="",style="solid", color="burlywood", weight=3]; 4065[label="vyw4300/EQ",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 2717[label="",style="solid", color="burlywood", weight=3]; 4066[label="vyw4300/GT",fontsize=10,color="white",style="solid",shape="box"];2614 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 2718[label="",style="solid", color="burlywood", weight=3]; 2615[label="compare1 (Left vyw134) (Left vyw135) False",fontsize=16,color="black",shape="box"];2615 -> 2719[label="",style="solid", color="black", weight=3]; 2616[label="compare1 (Left vyw134) (Left vyw135) True",fontsize=16,color="black",shape="box"];2616 -> 2720[label="",style="solid", color="black", weight=3]; 2617[label="compare0 (Right vyw4300) (Left vyw4400) True",fontsize=16,color="black",shape="box"];2617 -> 2721[label="",style="solid", color="black", weight=3]; 2618 -> 2601[label="",style="dashed", color="red", weight=0]; 2618[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2618 -> 2722[label="",style="dashed", color="magenta", weight=3]; 2618 -> 2723[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2602[label="",style="dashed", color="red", weight=0]; 2619[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2619 -> 2724[label="",style="dashed", color="magenta", weight=3]; 2619 -> 2725[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2603[label="",style="dashed", color="red", weight=0]; 2620[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2620 -> 2726[label="",style="dashed", color="magenta", weight=3]; 2620 -> 2727[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2604[label="",style="dashed", color="red", weight=0]; 2621[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2621 -> 2728[label="",style="dashed", color="magenta", weight=3]; 2621 -> 2729[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2605[label="",style="dashed", color="red", weight=0]; 2622[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2622 -> 2730[label="",style="dashed", color="magenta", weight=3]; 2622 -> 2731[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2606[label="",style="dashed", color="red", weight=0]; 2623[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2623 -> 2732[label="",style="dashed", color="magenta", weight=3]; 2623 -> 2733[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2607[label="",style="dashed", color="red", weight=0]; 2624[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2624 -> 2734[label="",style="dashed", color="magenta", weight=3]; 2624 -> 2735[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2608[label="",style="dashed", color="red", weight=0]; 2625[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2625 -> 2736[label="",style="dashed", color="magenta", weight=3]; 2625 -> 2737[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2609[label="",style="dashed", color="red", weight=0]; 2626[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2626 -> 2738[label="",style="dashed", color="magenta", weight=3]; 2626 -> 2739[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2610[label="",style="dashed", color="red", weight=0]; 2627[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2627 -> 2740[label="",style="dashed", color="magenta", weight=3]; 2627 -> 2741[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2611[label="",style="dashed", color="red", weight=0]; 2628[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2628 -> 2742[label="",style="dashed", color="magenta", weight=3]; 2628 -> 2743[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2612[label="",style="dashed", color="red", weight=0]; 2629[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2629 -> 2744[label="",style="dashed", color="magenta", weight=3]; 2629 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2613[label="",style="dashed", color="red", weight=0]; 2630[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2630 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2630 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2614[label="",style="dashed", color="red", weight=0]; 2631[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2631 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2631 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2632[label="compare1 (Right vyw141) (Right vyw142) False",fontsize=16,color="black",shape="box"];2632 -> 2750[label="",style="solid", color="black", weight=3]; 2633[label="compare1 (Right vyw141) (Right vyw142) True",fontsize=16,color="black",shape="box"];2633 -> 2751[label="",style="solid", color="black", weight=3]; 1952[label="vyw18 == vyw13",fontsize=16,color="blue",shape="box"];4067[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4067[label="",style="solid", color="blue", weight=9]; 4067 -> 2003[label="",style="solid", color="blue", weight=3]; 4068[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4068[label="",style="solid", color="blue", weight=9]; 4068 -> 2004[label="",style="solid", color="blue", weight=3]; 4069[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4069[label="",style="solid", color="blue", weight=9]; 4069 -> 2005[label="",style="solid", color="blue", weight=3]; 4070[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4070[label="",style="solid", color="blue", weight=9]; 4070 -> 2006[label="",style="solid", color="blue", weight=3]; 4071[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4071[label="",style="solid", color="blue", weight=9]; 4071 -> 2007[label="",style="solid", color="blue", weight=3]; 4072[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4072[label="",style="solid", color="blue", weight=9]; 4072 -> 2008[label="",style="solid", color="blue", weight=3]; 4073[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4073[label="",style="solid", color="blue", weight=9]; 4073 -> 2009[label="",style="solid", color="blue", weight=3]; 4074[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 2010[label="",style="solid", color="blue", weight=3]; 4075[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 2011[label="",style="solid", color="blue", weight=3]; 4076[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 2012[label="",style="solid", color="blue", weight=3]; 4077[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 2013[label="",style="solid", color="blue", weight=3]; 4078[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 2014[label="",style="solid", color="blue", weight=3]; 4079[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 2015[label="",style="solid", color="blue", weight=3]; 4080[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1952 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 2016[label="",style="solid", color="blue", weight=3]; 1953[label="False",fontsize=16,color="green",shape="box"];1954[label="False",fontsize=16,color="green",shape="box"];1955[label="vyw33 == vyw28",fontsize=16,color="blue",shape="box"];4081[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4081[label="",style="solid", color="blue", weight=9]; 4081 -> 2017[label="",style="solid", color="blue", weight=3]; 4082[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4082[label="",style="solid", color="blue", weight=9]; 4082 -> 2018[label="",style="solid", color="blue", weight=3]; 4083[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 2019[label="",style="solid", color="blue", weight=3]; 4084[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 2020[label="",style="solid", color="blue", weight=3]; 4085[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 2021[label="",style="solid", color="blue", weight=3]; 4086[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 2022[label="",style="solid", color="blue", weight=3]; 4087[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 2023[label="",style="solid", color="blue", weight=3]; 4088[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4088[label="",style="solid", color="blue", weight=9]; 4088 -> 2024[label="",style="solid", color="blue", weight=3]; 4089[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4089[label="",style="solid", color="blue", weight=9]; 4089 -> 2025[label="",style="solid", color="blue", weight=3]; 4090[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 2026[label="",style="solid", color="blue", weight=3]; 4091[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 2027[label="",style="solid", color="blue", weight=3]; 4092[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 2028[label="",style="solid", color="blue", weight=3]; 4093[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 2029[label="",style="solid", color="blue", weight=3]; 4094[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1955 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 2030[label="",style="solid", color="blue", weight=3]; 2634[label="primMulInt (Pos vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];4095[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];2634 -> 4095[label="",style="solid", color="burlywood", weight=9]; 4095 -> 2752[label="",style="solid", color="burlywood", weight=3]; 4096[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];2634 -> 4096[label="",style="solid", color="burlywood", weight=9]; 4096 -> 2753[label="",style="solid", color="burlywood", weight=3]; 2635[label="primMulInt (Neg vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];4097[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4097[label="",style="solid", color="burlywood", weight=9]; 4097 -> 2754[label="",style="solid", color="burlywood", weight=3]; 4098[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];2635 -> 4098[label="",style="solid", color="burlywood", weight=9]; 4098 -> 2755[label="",style="solid", color="burlywood", weight=3]; 2636 -> 2148[label="",style="dashed", color="red", weight=0]; 2636[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2636 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2636 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2637[label="False",fontsize=16,color="green",shape="box"];2638[label="False",fontsize=16,color="green",shape="box"];2639[label="True",fontsize=16,color="green",shape="box"];2640[label="vyw4001",fontsize=16,color="green",shape="box"];2641[label="vyw301",fontsize=16,color="green",shape="box"];2642[label="vyw4001",fontsize=16,color="green",shape="box"];2643[label="vyw301",fontsize=16,color="green",shape="box"];2644[label="vyw4001",fontsize=16,color="green",shape="box"];2645[label="vyw301",fontsize=16,color="green",shape="box"];2646[label="vyw4001",fontsize=16,color="green",shape="box"];2647[label="vyw301",fontsize=16,color="green",shape="box"];2648[label="vyw4001",fontsize=16,color="green",shape="box"];2649[label="vyw301",fontsize=16,color="green",shape="box"];2650[label="vyw4001",fontsize=16,color="green",shape="box"];2651[label="vyw301",fontsize=16,color="green",shape="box"];2652[label="vyw4001",fontsize=16,color="green",shape="box"];2653[label="vyw301",fontsize=16,color="green",shape="box"];2654[label="vyw4001",fontsize=16,color="green",shape="box"];2655[label="vyw301",fontsize=16,color="green",shape="box"];2656[label="vyw4001",fontsize=16,color="green",shape="box"];2657[label="vyw301",fontsize=16,color="green",shape="box"];2658[label="vyw4001",fontsize=16,color="green",shape="box"];2659[label="vyw301",fontsize=16,color="green",shape="box"];2660[label="vyw4001",fontsize=16,color="green",shape="box"];2661[label="vyw301",fontsize=16,color="green",shape="box"];2662[label="vyw4001",fontsize=16,color="green",shape="box"];2663[label="vyw301",fontsize=16,color="green",shape="box"];2664[label="vyw4001",fontsize=16,color="green",shape="box"];2665[label="vyw301",fontsize=16,color="green",shape="box"];2666[label="vyw4001",fontsize=16,color="green",shape="box"];2667[label="vyw301",fontsize=16,color="green",shape="box"];2668[label="vyw4002",fontsize=16,color="green",shape="box"];2669[label="vyw302",fontsize=16,color="green",shape="box"];2670[label="vyw4002",fontsize=16,color="green",shape="box"];2671[label="vyw302",fontsize=16,color="green",shape="box"];2672[label="vyw4002",fontsize=16,color="green",shape="box"];2673[label="vyw302",fontsize=16,color="green",shape="box"];2674[label="vyw4002",fontsize=16,color="green",shape="box"];2675[label="vyw302",fontsize=16,color="green",shape="box"];2676[label="vyw4002",fontsize=16,color="green",shape="box"];2677[label="vyw302",fontsize=16,color="green",shape="box"];2678[label="vyw4002",fontsize=16,color="green",shape="box"];2679[label="vyw302",fontsize=16,color="green",shape="box"];2680[label="vyw4002",fontsize=16,color="green",shape="box"];2681[label="vyw302",fontsize=16,color="green",shape="box"];2682[label="vyw4002",fontsize=16,color="green",shape="box"];2683[label="vyw302",fontsize=16,color="green",shape="box"];2684[label="vyw4002",fontsize=16,color="green",shape="box"];2685[label="vyw302",fontsize=16,color="green",shape="box"];2686[label="vyw4002",fontsize=16,color="green",shape="box"];2687[label="vyw302",fontsize=16,color="green",shape="box"];2688[label="vyw4002",fontsize=16,color="green",shape="box"];2689[label="vyw302",fontsize=16,color="green",shape="box"];2690[label="vyw4002",fontsize=16,color="green",shape="box"];2691[label="vyw302",fontsize=16,color="green",shape="box"];2692[label="vyw4002",fontsize=16,color="green",shape="box"];2693[label="vyw302",fontsize=16,color="green",shape="box"];2694[label="vyw4002",fontsize=16,color="green",shape="box"];2695[label="vyw302",fontsize=16,color="green",shape="box"];2696[label="vyw40000",fontsize=16,color="green",shape="box"];2697[label="vyw3000",fontsize=16,color="green",shape="box"];2698[label="vyw40000",fontsize=16,color="green",shape="box"];2699[label="vyw3000",fontsize=16,color="green",shape="box"];2700[label="Nothing <= vyw4400",fontsize=16,color="burlywood",shape="box"];4099[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2700 -> 4099[label="",style="solid", color="burlywood", weight=9]; 4099 -> 2758[label="",style="solid", color="burlywood", weight=3]; 4100[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2700 -> 4100[label="",style="solid", color="burlywood", weight=9]; 4100 -> 2759[label="",style="solid", color="burlywood", weight=3]; 2701[label="Just vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4101[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2701 -> 4101[label="",style="solid", color="burlywood", weight=9]; 4101 -> 2760[label="",style="solid", color="burlywood", weight=3]; 4102[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2701 -> 4102[label="",style="solid", color="burlywood", weight=9]; 4102 -> 2761[label="",style="solid", color="burlywood", weight=3]; 2702[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2702 -> 2762[label="",style="solid", color="black", weight=3]; 2703[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2703 -> 2763[label="",style="solid", color="black", weight=3]; 2704[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2704 -> 2764[label="",style="solid", color="black", weight=3]; 2705[label="Left vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4103[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4103[label="",style="solid", color="burlywood", weight=9]; 4103 -> 2765[label="",style="solid", color="burlywood", weight=3]; 4104[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2705 -> 4104[label="",style="solid", color="burlywood", weight=9]; 4104 -> 2766[label="",style="solid", color="burlywood", weight=3]; 2706[label="Right vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4105[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4105[label="",style="solid", color="burlywood", weight=9]; 4105 -> 2767[label="",style="solid", color="burlywood", weight=3]; 4106[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2706 -> 4106[label="",style="solid", color="burlywood", weight=9]; 4106 -> 2768[label="",style="solid", color="burlywood", weight=3]; 2707[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2707 -> 2769[label="",style="solid", color="black", weight=3]; 2708[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2708 -> 2770[label="",style="solid", color="black", weight=3]; 2709[label="False <= vyw4400",fontsize=16,color="burlywood",shape="box"];4107[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2709 -> 4107[label="",style="solid", color="burlywood", weight=9]; 4107 -> 2771[label="",style="solid", color="burlywood", weight=3]; 4108[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2709 -> 4108[label="",style="solid", color="burlywood", weight=9]; 4108 -> 2772[label="",style="solid", color="burlywood", weight=3]; 2710[label="True <= vyw4400",fontsize=16,color="burlywood",shape="box"];4109[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4109[label="",style="solid", color="burlywood", weight=9]; 4109 -> 2773[label="",style="solid", color="burlywood", weight=3]; 4110[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2710 -> 4110[label="",style="solid", color="burlywood", weight=9]; 4110 -> 2774[label="",style="solid", color="burlywood", weight=3]; 2711[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2711 -> 2775[label="",style="solid", color="black", weight=3]; 2712[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2712 -> 2776[label="",style="solid", color="black", weight=3]; 2713[label="(vyw43000,vyw43001,vyw43002) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4111[label="vyw4400/(vyw44000,vyw44001,vyw44002)",fontsize=10,color="white",style="solid",shape="box"];2713 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 2777[label="",style="solid", color="burlywood", weight=3]; 2714[label="(vyw43000,vyw43001) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4112[label="vyw4400/(vyw44000,vyw44001)",fontsize=10,color="white",style="solid",shape="box"];2714 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 2778[label="",style="solid", color="burlywood", weight=3]; 2715[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2715 -> 2779[label="",style="solid", color="black", weight=3]; 2716[label="LT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4113[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2716 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 2780[label="",style="solid", color="burlywood", weight=3]; 4114[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2716 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 2781[label="",style="solid", color="burlywood", weight=3]; 4115[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2716 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 2782[label="",style="solid", color="burlywood", weight=3]; 2717[label="EQ <= vyw4400",fontsize=16,color="burlywood",shape="box"];4116[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4116[label="",style="solid", color="burlywood", weight=9]; 4116 -> 2783[label="",style="solid", color="burlywood", weight=3]; 4117[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4117[label="",style="solid", color="burlywood", weight=9]; 4117 -> 2784[label="",style="solid", color="burlywood", weight=3]; 4118[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2717 -> 4118[label="",style="solid", color="burlywood", weight=9]; 4118 -> 2785[label="",style="solid", color="burlywood", weight=3]; 2718[label="GT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4119[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4119[label="",style="solid", color="burlywood", weight=9]; 4119 -> 2786[label="",style="solid", color="burlywood", weight=3]; 4120[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4120[label="",style="solid", color="burlywood", weight=9]; 4120 -> 2787[label="",style="solid", color="burlywood", weight=3]; 4121[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2718 -> 4121[label="",style="solid", color="burlywood", weight=9]; 4121 -> 2788[label="",style="solid", color="burlywood", weight=3]; 2719[label="compare0 (Left vyw134) (Left vyw135) otherwise",fontsize=16,color="black",shape="box"];2719 -> 2789[label="",style="solid", color="black", weight=3]; 2720[label="LT",fontsize=16,color="green",shape="box"];2721[label="GT",fontsize=16,color="green",shape="box"];2722[label="vyw4300",fontsize=16,color="green",shape="box"];2723[label="vyw4400",fontsize=16,color="green",shape="box"];2724[label="vyw4300",fontsize=16,color="green",shape="box"];2725[label="vyw4400",fontsize=16,color="green",shape="box"];2726[label="vyw4300",fontsize=16,color="green",shape="box"];2727[label="vyw4400",fontsize=16,color="green",shape="box"];2728[label="vyw4300",fontsize=16,color="green",shape="box"];2729[label="vyw4400",fontsize=16,color="green",shape="box"];2730[label="vyw4300",fontsize=16,color="green",shape="box"];2731[label="vyw4400",fontsize=16,color="green",shape="box"];2732[label="vyw4300",fontsize=16,color="green",shape="box"];2733[label="vyw4400",fontsize=16,color="green",shape="box"];2734[label="vyw4300",fontsize=16,color="green",shape="box"];2735[label="vyw4400",fontsize=16,color="green",shape="box"];2736[label="vyw4300",fontsize=16,color="green",shape="box"];2737[label="vyw4400",fontsize=16,color="green",shape="box"];2738[label="vyw4300",fontsize=16,color="green",shape="box"];2739[label="vyw4400",fontsize=16,color="green",shape="box"];2740[label="vyw4300",fontsize=16,color="green",shape="box"];2741[label="vyw4400",fontsize=16,color="green",shape="box"];2742[label="vyw4300",fontsize=16,color="green",shape="box"];2743[label="vyw4400",fontsize=16,color="green",shape="box"];2744[label="vyw4300",fontsize=16,color="green",shape="box"];2745[label="vyw4400",fontsize=16,color="green",shape="box"];2746[label="vyw4300",fontsize=16,color="green",shape="box"];2747[label="vyw4400",fontsize=16,color="green",shape="box"];2748[label="vyw4300",fontsize=16,color="green",shape="box"];2749[label="vyw4400",fontsize=16,color="green",shape="box"];2750[label="compare0 (Right vyw141) (Right vyw142) otherwise",fontsize=16,color="black",shape="box"];2750 -> 2790[label="",style="solid", color="black", weight=3]; 2751[label="LT",fontsize=16,color="green",shape="box"];2003 -> 1922[label="",style="dashed", color="red", weight=0]; 2003[label="vyw18 == vyw13",fontsize=16,color="magenta"];2003 -> 2059[label="",style="dashed", color="magenta", weight=3]; 2003 -> 2060[label="",style="dashed", color="magenta", weight=3]; 2004 -> 1923[label="",style="dashed", color="red", weight=0]; 2004[label="vyw18 == vyw13",fontsize=16,color="magenta"];2004 -> 2061[label="",style="dashed", color="magenta", weight=3]; 2004 -> 2062[label="",style="dashed", color="magenta", weight=3]; 2005 -> 1924[label="",style="dashed", color="red", weight=0]; 2005[label="vyw18 == vyw13",fontsize=16,color="magenta"];2005 -> 2063[label="",style="dashed", color="magenta", weight=3]; 2005 -> 2064[label="",style="dashed", color="magenta", weight=3]; 2006 -> 1925[label="",style="dashed", color="red", weight=0]; 2006[label="vyw18 == vyw13",fontsize=16,color="magenta"];2006 -> 2065[label="",style="dashed", color="magenta", weight=3]; 2006 -> 2066[label="",style="dashed", color="magenta", weight=3]; 2007 -> 1926[label="",style="dashed", color="red", weight=0]; 2007[label="vyw18 == vyw13",fontsize=16,color="magenta"];2007 -> 2067[label="",style="dashed", color="magenta", weight=3]; 2007 -> 2068[label="",style="dashed", color="magenta", weight=3]; 2008 -> 1927[label="",style="dashed", color="red", weight=0]; 2008[label="vyw18 == vyw13",fontsize=16,color="magenta"];2008 -> 2069[label="",style="dashed", color="magenta", weight=3]; 2008 -> 2070[label="",style="dashed", color="magenta", weight=3]; 2009 -> 1928[label="",style="dashed", color="red", weight=0]; 2009[label="vyw18 == vyw13",fontsize=16,color="magenta"];2009 -> 2071[label="",style="dashed", color="magenta", weight=3]; 2009 -> 2072[label="",style="dashed", color="magenta", weight=3]; 2010 -> 1929[label="",style="dashed", color="red", weight=0]; 2010[label="vyw18 == vyw13",fontsize=16,color="magenta"];2010 -> 2073[label="",style="dashed", color="magenta", weight=3]; 2010 -> 2074[label="",style="dashed", color="magenta", weight=3]; 2011 -> 52[label="",style="dashed", color="red", weight=0]; 2011[label="vyw18 == vyw13",fontsize=16,color="magenta"];2011 -> 2075[label="",style="dashed", color="magenta", weight=3]; 2011 -> 2076[label="",style="dashed", color="magenta", weight=3]; 2012 -> 1931[label="",style="dashed", color="red", weight=0]; 2012[label="vyw18 == vyw13",fontsize=16,color="magenta"];2012 -> 2077[label="",style="dashed", color="magenta", weight=3]; 2012 -> 2078[label="",style="dashed", color="magenta", weight=3]; 2013 -> 1932[label="",style="dashed", color="red", weight=0]; 2013[label="vyw18 == vyw13",fontsize=16,color="magenta"];2013 -> 2079[label="",style="dashed", color="magenta", weight=3]; 2013 -> 2080[label="",style="dashed", color="magenta", weight=3]; 2014 -> 1933[label="",style="dashed", color="red", weight=0]; 2014[label="vyw18 == vyw13",fontsize=16,color="magenta"];2014 -> 2081[label="",style="dashed", color="magenta", weight=3]; 2014 -> 2082[label="",style="dashed", color="magenta", weight=3]; 2015 -> 1934[label="",style="dashed", color="red", weight=0]; 2015[label="vyw18 == vyw13",fontsize=16,color="magenta"];2015 -> 2083[label="",style="dashed", color="magenta", weight=3]; 2015 -> 2084[label="",style="dashed", color="magenta", weight=3]; 2016 -> 1935[label="",style="dashed", color="red", weight=0]; 2016[label="vyw18 == vyw13",fontsize=16,color="magenta"];2016 -> 2085[label="",style="dashed", color="magenta", weight=3]; 2016 -> 2086[label="",style="dashed", color="magenta", weight=3]; 2017 -> 1922[label="",style="dashed", color="red", weight=0]; 2017[label="vyw33 == vyw28",fontsize=16,color="magenta"];2017 -> 2087[label="",style="dashed", color="magenta", weight=3]; 2017 -> 2088[label="",style="dashed", color="magenta", weight=3]; 2018 -> 1923[label="",style="dashed", color="red", weight=0]; 2018[label="vyw33 == vyw28",fontsize=16,color="magenta"];2018 -> 2089[label="",style="dashed", color="magenta", weight=3]; 2018 -> 2090[label="",style="dashed", color="magenta", weight=3]; 2019 -> 1924[label="",style="dashed", color="red", weight=0]; 2019[label="vyw33 == vyw28",fontsize=16,color="magenta"];2019 -> 2091[label="",style="dashed", color="magenta", weight=3]; 2019 -> 2092[label="",style="dashed", color="magenta", weight=3]; 2020 -> 1925[label="",style="dashed", color="red", weight=0]; 2020[label="vyw33 == vyw28",fontsize=16,color="magenta"];2020 -> 2093[label="",style="dashed", color="magenta", weight=3]; 2020 -> 2094[label="",style="dashed", color="magenta", weight=3]; 2021 -> 1926[label="",style="dashed", color="red", weight=0]; 2021[label="vyw33 == vyw28",fontsize=16,color="magenta"];2021 -> 2095[label="",style="dashed", color="magenta", weight=3]; 2021 -> 2096[label="",style="dashed", color="magenta", weight=3]; 2022 -> 1927[label="",style="dashed", color="red", weight=0]; 2022[label="vyw33 == vyw28",fontsize=16,color="magenta"];2022 -> 2097[label="",style="dashed", color="magenta", weight=3]; 2022 -> 2098[label="",style="dashed", color="magenta", weight=3]; 2023 -> 1928[label="",style="dashed", color="red", weight=0]; 2023[label="vyw33 == vyw28",fontsize=16,color="magenta"];2023 -> 2099[label="",style="dashed", color="magenta", weight=3]; 2023 -> 2100[label="",style="dashed", color="magenta", weight=3]; 2024 -> 1929[label="",style="dashed", color="red", weight=0]; 2024[label="vyw33 == vyw28",fontsize=16,color="magenta"];2024 -> 2101[label="",style="dashed", color="magenta", weight=3]; 2024 -> 2102[label="",style="dashed", color="magenta", weight=3]; 2025 -> 52[label="",style="dashed", color="red", weight=0]; 2025[label="vyw33 == vyw28",fontsize=16,color="magenta"];2025 -> 2103[label="",style="dashed", color="magenta", weight=3]; 2025 -> 2104[label="",style="dashed", color="magenta", weight=3]; 2026 -> 1931[label="",style="dashed", color="red", weight=0]; 2026[label="vyw33 == vyw28",fontsize=16,color="magenta"];2026 -> 2105[label="",style="dashed", color="magenta", weight=3]; 2026 -> 2106[label="",style="dashed", color="magenta", weight=3]; 2027 -> 1932[label="",style="dashed", color="red", weight=0]; 2027[label="vyw33 == vyw28",fontsize=16,color="magenta"];2027 -> 2107[label="",style="dashed", color="magenta", weight=3]; 2027 -> 2108[label="",style="dashed", color="magenta", weight=3]; 2028 -> 1933[label="",style="dashed", color="red", weight=0]; 2028[label="vyw33 == vyw28",fontsize=16,color="magenta"];2028 -> 2109[label="",style="dashed", color="magenta", weight=3]; 2028 -> 2110[label="",style="dashed", color="magenta", weight=3]; 2029 -> 1934[label="",style="dashed", color="red", weight=0]; 2029[label="vyw33 == vyw28",fontsize=16,color="magenta"];2029 -> 2111[label="",style="dashed", color="magenta", weight=3]; 2029 -> 2112[label="",style="dashed", color="magenta", weight=3]; 2030 -> 1935[label="",style="dashed", color="red", weight=0]; 2030[label="vyw33 == vyw28",fontsize=16,color="magenta"];2030 -> 2113[label="",style="dashed", color="magenta", weight=3]; 2030 -> 2114[label="",style="dashed", color="magenta", weight=3]; 2752[label="primMulInt (Pos vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];2752 -> 2791[label="",style="solid", color="black", weight=3]; 2753[label="primMulInt (Pos vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];2753 -> 2792[label="",style="solid", color="black", weight=3]; 2754[label="primMulInt (Neg vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];2754 -> 2793[label="",style="solid", color="black", weight=3]; 2755[label="primMulInt (Neg vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];2755 -> 2794[label="",style="solid", color="black", weight=3]; 2756[label="vyw40000",fontsize=16,color="green",shape="box"];2757[label="vyw3000",fontsize=16,color="green",shape="box"];2758[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2758 -> 2795[label="",style="solid", color="black", weight=3]; 2759[label="Nothing <= Just vyw44000",fontsize=16,color="black",shape="box"];2759 -> 2796[label="",style="solid", color="black", weight=3]; 2760[label="Just vyw43000 <= Nothing",fontsize=16,color="black",shape="box"];2760 -> 2797[label="",style="solid", color="black", weight=3]; 2761[label="Just vyw43000 <= Just vyw44000",fontsize=16,color="black",shape="box"];2761 -> 2798[label="",style="solid", color="black", weight=3]; 2762 -> 2799[label="",style="dashed", color="red", weight=0]; 2762[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2762 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2799[label="",style="dashed", color="red", weight=0]; 2763[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2763 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2799[label="",style="dashed", color="red", weight=0]; 2764[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2764 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2765[label="Left vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2765 -> 2808[label="",style="solid", color="black", weight=3]; 2766[label="Left vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2766 -> 2809[label="",style="solid", color="black", weight=3]; 2767[label="Right vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2767 -> 2810[label="",style="solid", color="black", weight=3]; 2768[label="Right vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2768 -> 2811[label="",style="solid", color="black", weight=3]; 2769 -> 2799[label="",style="dashed", color="red", weight=0]; 2769[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2769 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2770 -> 2799[label="",style="dashed", color="red", weight=0]; 2770[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2770 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2771[label="False <= False",fontsize=16,color="black",shape="box"];2771 -> 2812[label="",style="solid", color="black", weight=3]; 2772[label="False <= True",fontsize=16,color="black",shape="box"];2772 -> 2813[label="",style="solid", color="black", weight=3]; 2773[label="True <= False",fontsize=16,color="black",shape="box"];2773 -> 2814[label="",style="solid", color="black", weight=3]; 2774[label="True <= True",fontsize=16,color="black",shape="box"];2774 -> 2815[label="",style="solid", color="black", weight=3]; 2775 -> 2799[label="",style="dashed", color="red", weight=0]; 2775[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2775 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2776 -> 2799[label="",style="dashed", color="red", weight=0]; 2776[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2776 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2777[label="(vyw43000,vyw43001,vyw43002) <= (vyw44000,vyw44001,vyw44002)",fontsize=16,color="black",shape="box"];2777 -> 2816[label="",style="solid", color="black", weight=3]; 2778[label="(vyw43000,vyw43001) <= (vyw44000,vyw44001)",fontsize=16,color="black",shape="box"];2778 -> 2817[label="",style="solid", color="black", weight=3]; 2779 -> 2799[label="",style="dashed", color="red", weight=0]; 2779[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2779 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2780[label="LT <= LT",fontsize=16,color="black",shape="box"];2780 -> 2818[label="",style="solid", color="black", weight=3]; 2781[label="LT <= EQ",fontsize=16,color="black",shape="box"];2781 -> 2819[label="",style="solid", color="black", weight=3]; 2782[label="LT <= GT",fontsize=16,color="black",shape="box"];2782 -> 2820[label="",style="solid", color="black", weight=3]; 2783[label="EQ <= LT",fontsize=16,color="black",shape="box"];2783 -> 2821[label="",style="solid", color="black", weight=3]; 2784[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2784 -> 2822[label="",style="solid", color="black", weight=3]; 2785[label="EQ <= GT",fontsize=16,color="black",shape="box"];2785 -> 2823[label="",style="solid", color="black", weight=3]; 2786[label="GT <= LT",fontsize=16,color="black",shape="box"];2786 -> 2824[label="",style="solid", color="black", weight=3]; 2787[label="GT <= EQ",fontsize=16,color="black",shape="box"];2787 -> 2825[label="",style="solid", color="black", weight=3]; 2788[label="GT <= GT",fontsize=16,color="black",shape="box"];2788 -> 2826[label="",style="solid", color="black", weight=3]; 2789[label="compare0 (Left vyw134) (Left vyw135) True",fontsize=16,color="black",shape="box"];2789 -> 2827[label="",style="solid", color="black", weight=3]; 2790[label="compare0 (Right vyw141) (Right vyw142) True",fontsize=16,color="black",shape="box"];2790 -> 2828[label="",style="solid", color="black", weight=3]; 2059[label="vyw13",fontsize=16,color="green",shape="box"];2060[label="vyw18",fontsize=16,color="green",shape="box"];2061[label="vyw13",fontsize=16,color="green",shape="box"];2062[label="vyw18",fontsize=16,color="green",shape="box"];2063[label="vyw13",fontsize=16,color="green",shape="box"];2064[label="vyw18",fontsize=16,color="green",shape="box"];2065[label="vyw13",fontsize=16,color="green",shape="box"];2066[label="vyw18",fontsize=16,color="green",shape="box"];2067[label="vyw13",fontsize=16,color="green",shape="box"];2068[label="vyw18",fontsize=16,color="green",shape="box"];2069[label="vyw13",fontsize=16,color="green",shape="box"];2070[label="vyw18",fontsize=16,color="green",shape="box"];2071[label="vyw13",fontsize=16,color="green",shape="box"];2072[label="vyw18",fontsize=16,color="green",shape="box"];2073[label="vyw13",fontsize=16,color="green",shape="box"];2074[label="vyw18",fontsize=16,color="green",shape="box"];2075[label="vyw13",fontsize=16,color="green",shape="box"];2076[label="vyw18",fontsize=16,color="green",shape="box"];2077[label="vyw13",fontsize=16,color="green",shape="box"];2078[label="vyw18",fontsize=16,color="green",shape="box"];2079[label="vyw13",fontsize=16,color="green",shape="box"];2080[label="vyw18",fontsize=16,color="green",shape="box"];2081[label="vyw13",fontsize=16,color="green",shape="box"];2082[label="vyw18",fontsize=16,color="green",shape="box"];2083[label="vyw13",fontsize=16,color="green",shape="box"];2084[label="vyw18",fontsize=16,color="green",shape="box"];2085[label="vyw13",fontsize=16,color="green",shape="box"];2086[label="vyw18",fontsize=16,color="green",shape="box"];2087[label="vyw28",fontsize=16,color="green",shape="box"];2088[label="vyw33",fontsize=16,color="green",shape="box"];2089[label="vyw28",fontsize=16,color="green",shape="box"];2090[label="vyw33",fontsize=16,color="green",shape="box"];2091[label="vyw28",fontsize=16,color="green",shape="box"];2092[label="vyw33",fontsize=16,color="green",shape="box"];2093[label="vyw28",fontsize=16,color="green",shape="box"];2094[label="vyw33",fontsize=16,color="green",shape="box"];2095[label="vyw28",fontsize=16,color="green",shape="box"];2096[label="vyw33",fontsize=16,color="green",shape="box"];2097[label="vyw28",fontsize=16,color="green",shape="box"];2098[label="vyw33",fontsize=16,color="green",shape="box"];2099[label="vyw28",fontsize=16,color="green",shape="box"];2100[label="vyw33",fontsize=16,color="green",shape="box"];2101[label="vyw28",fontsize=16,color="green",shape="box"];2102[label="vyw33",fontsize=16,color="green",shape="box"];2103[label="vyw28",fontsize=16,color="green",shape="box"];2104[label="vyw33",fontsize=16,color="green",shape="box"];2105[label="vyw28",fontsize=16,color="green",shape="box"];2106[label="vyw33",fontsize=16,color="green",shape="box"];2107[label="vyw28",fontsize=16,color="green",shape="box"];2108[label="vyw33",fontsize=16,color="green",shape="box"];2109[label="vyw28",fontsize=16,color="green",shape="box"];2110[label="vyw33",fontsize=16,color="green",shape="box"];2111[label="vyw28",fontsize=16,color="green",shape="box"];2112[label="vyw33",fontsize=16,color="green",shape="box"];2113[label="vyw28",fontsize=16,color="green",shape="box"];2114[label="vyw33",fontsize=16,color="green",shape="box"];2791[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2791 -> 2829[label="",style="dashed", color="green", weight=3]; 2792[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2792 -> 2830[label="",style="dashed", color="green", weight=3]; 2793[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2793 -> 2831[label="",style="dashed", color="green", weight=3]; 2794[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2794 -> 2832[label="",style="dashed", color="green", weight=3]; 2795[label="True",fontsize=16,color="green",shape="box"];2796[label="True",fontsize=16,color="green",shape="box"];2797[label="False",fontsize=16,color="green",shape="box"];2798[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4122[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 2833[label="",style="solid", color="blue", weight=3]; 4123[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 2834[label="",style="solid", color="blue", weight=3]; 4124[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 2835[label="",style="solid", color="blue", weight=3]; 4125[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 2836[label="",style="solid", color="blue", weight=3]; 4126[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 2837[label="",style="solid", color="blue", weight=3]; 4127[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 2838[label="",style="solid", color="blue", weight=3]; 4128[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 2839[label="",style="solid", color="blue", weight=3]; 4129[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 2840[label="",style="solid", color="blue", weight=3]; 4130[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4130[label="",style="solid", color="blue", weight=9]; 4130 -> 2841[label="",style="solid", color="blue", weight=3]; 4131[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4131[label="",style="solid", color="blue", weight=9]; 4131 -> 2842[label="",style="solid", color="blue", weight=3]; 4132[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 2843[label="",style="solid", color="blue", weight=3]; 4133[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 2844[label="",style="solid", color="blue", weight=3]; 4134[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 2845[label="",style="solid", color="blue", weight=3]; 4135[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2798 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 2846[label="",style="solid", color="blue", weight=3]; 2800 -> 52[label="",style="dashed", color="red", weight=0]; 2800[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2800 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2800 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2799[label="not vyw144",fontsize=16,color="burlywood",shape="triangle"];4136[label="vyw144/False",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4136[label="",style="solid", color="burlywood", weight=9]; 4136 -> 2849[label="",style="solid", color="burlywood", weight=3]; 4137[label="vyw144/True",fontsize=10,color="white",style="solid",shape="box"];2799 -> 4137[label="",style="solid", color="burlywood", weight=9]; 4137 -> 2850[label="",style="solid", color="burlywood", weight=3]; 2801 -> 52[label="",style="dashed", color="red", weight=0]; 2801[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2801 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2801 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2802 -> 52[label="",style="dashed", color="red", weight=0]; 2802[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2802 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2808[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4138[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 2865[label="",style="solid", color="blue", weight=3]; 4139[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 2866[label="",style="solid", color="blue", weight=3]; 4140[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 2867[label="",style="solid", color="blue", weight=3]; 4141[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 2868[label="",style="solid", color="blue", weight=3]; 4142[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 2869[label="",style="solid", color="blue", weight=3]; 4143[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 2870[label="",style="solid", color="blue", weight=3]; 4144[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 2871[label="",style="solid", color="blue", weight=3]; 4145[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 2872[label="",style="solid", color="blue", weight=3]; 4146[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 2873[label="",style="solid", color="blue", weight=3]; 4147[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 2874[label="",style="solid", color="blue", weight=3]; 4148[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4148[label="",style="solid", color="blue", weight=9]; 4148 -> 2875[label="",style="solid", color="blue", weight=3]; 4149[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4149[label="",style="solid", color="blue", weight=9]; 4149 -> 2876[label="",style="solid", color="blue", weight=3]; 4150[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4150[label="",style="solid", color="blue", weight=9]; 4150 -> 2877[label="",style="solid", color="blue", weight=3]; 4151[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2808 -> 4151[label="",style="solid", color="blue", weight=9]; 4151 -> 2878[label="",style="solid", color="blue", weight=3]; 2809[label="True",fontsize=16,color="green",shape="box"];2810[label="False",fontsize=16,color="green",shape="box"];2811[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4152[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4152[label="",style="solid", color="blue", weight=9]; 4152 -> 2879[label="",style="solid", color="blue", weight=3]; 4153[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 2880[label="",style="solid", color="blue", weight=3]; 4154[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 2881[label="",style="solid", color="blue", weight=3]; 4155[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 2882[label="",style="solid", color="blue", weight=3]; 4156[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 2883[label="",style="solid", color="blue", weight=3]; 4157[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 2884[label="",style="solid", color="blue", weight=3]; 4158[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 2885[label="",style="solid", color="blue", weight=3]; 4159[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 2886[label="",style="solid", color="blue", weight=3]; 4160[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 2887[label="",style="solid", color="blue", weight=3]; 4161[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 2888[label="",style="solid", color="blue", weight=3]; 4162[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 2889[label="",style="solid", color="blue", weight=3]; 4163[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 2890[label="",style="solid", color="blue", weight=3]; 4164[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 2891[label="",style="solid", color="blue", weight=3]; 4165[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2811 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 2892[label="",style="solid", color="blue", weight=3]; 2803 -> 52[label="",style="dashed", color="red", weight=0]; 2803[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2803 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2803 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2804 -> 52[label="",style="dashed", color="red", weight=0]; 2804[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2804 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2812[label="True",fontsize=16,color="green",shape="box"];2813[label="True",fontsize=16,color="green",shape="box"];2814[label="False",fontsize=16,color="green",shape="box"];2815[label="True",fontsize=16,color="green",shape="box"];2805 -> 52[label="",style="dashed", color="red", weight=0]; 2805[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2805 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2806 -> 52[label="",style="dashed", color="red", weight=0]; 2806[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2806 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2816 -> 3000[label="",style="dashed", color="red", weight=0]; 2816[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];2816 -> 3001[label="",style="dashed", color="magenta", weight=3]; 2816 -> 3002[label="",style="dashed", color="magenta", weight=3]; 2817 -> 3000[label="",style="dashed", color="red", weight=0]; 2817[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];2817 -> 3003[label="",style="dashed", color="magenta", weight=3]; 2817 -> 3004[label="",style="dashed", color="magenta", weight=3]; 2807 -> 52[label="",style="dashed", color="red", weight=0]; 2807[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2807 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2807 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2818[label="True",fontsize=16,color="green",shape="box"];2819[label="True",fontsize=16,color="green",shape="box"];2820[label="True",fontsize=16,color="green",shape="box"];2821[label="False",fontsize=16,color="green",shape="box"];2822[label="True",fontsize=16,color="green",shape="box"];2823[label="True",fontsize=16,color="green",shape="box"];2824[label="False",fontsize=16,color="green",shape="box"];2825[label="False",fontsize=16,color="green",shape="box"];2826[label="True",fontsize=16,color="green",shape="box"];2827[label="GT",fontsize=16,color="green",shape="box"];2828[label="GT",fontsize=16,color="green",shape="box"];2829[label="primMulNat vyw3010 vyw40000",fontsize=16,color="burlywood",shape="triangle"];4166[label="vyw3010/Succ vyw30100",fontsize=10,color="white",style="solid",shape="box"];2829 -> 4166[label="",style="solid", color="burlywood", weight=9]; 4166 -> 2898[label="",style="solid", color="burlywood", weight=3]; 4167[label="vyw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];2829 -> 4167[label="",style="solid", color="burlywood", weight=9]; 4167 -> 2899[label="",style="solid", color="burlywood", weight=3]; 2830 -> 2829[label="",style="dashed", color="red", weight=0]; 2830[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];2830 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2829[label="",style="dashed", color="red", weight=0]; 2831[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];2831 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2829[label="",style="dashed", color="red", weight=0]; 2832[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];2832 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2601[label="",style="dashed", color="red", weight=0]; 2833[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2833 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2602[label="",style="dashed", color="red", weight=0]; 2834[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2834 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2603[label="",style="dashed", color="red", weight=0]; 2835[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2835 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2604[label="",style="dashed", color="red", weight=0]; 2836[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2836 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2605[label="",style="dashed", color="red", weight=0]; 2837[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2837 -> 2912[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2913[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2606[label="",style="dashed", color="red", weight=0]; 2838[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2838 -> 2914[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2915[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2607[label="",style="dashed", color="red", weight=0]; 2839[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2839 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2608[label="",style="dashed", color="red", weight=0]; 2840[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2840 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2609[label="",style="dashed", color="red", weight=0]; 2841[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2841 -> 2920[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2921[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2610[label="",style="dashed", color="red", weight=0]; 2842[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2842 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2611[label="",style="dashed", color="red", weight=0]; 2843[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2843 -> 2924[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2925[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2612[label="",style="dashed", color="red", weight=0]; 2844[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2844 -> 2926[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2927[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2613[label="",style="dashed", color="red", weight=0]; 2845[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2845 -> 2928[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2929[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2614[label="",style="dashed", color="red", weight=0]; 2846[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2846 -> 2930[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2847[label="GT",fontsize=16,color="green",shape="box"];2848[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4168[label="vyw4300/Integer vyw43000",fontsize=10,color="white",style="solid",shape="box"];2848 -> 4168[label="",style="solid", color="burlywood", weight=9]; 4168 -> 2932[label="",style="solid", color="burlywood", weight=3]; 2849[label="not False",fontsize=16,color="black",shape="box"];2849 -> 2933[label="",style="solid", color="black", weight=3]; 2850[label="not True",fontsize=16,color="black",shape="box"];2850 -> 2934[label="",style="solid", color="black", weight=3]; 2851[label="GT",fontsize=16,color="green",shape="box"];2852[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2852 -> 2935[label="",style="solid", color="black", weight=3]; 2853[label="GT",fontsize=16,color="green",shape="box"];2854[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2854 -> 2936[label="",style="solid", color="black", weight=3]; 2865 -> 2601[label="",style="dashed", color="red", weight=0]; 2865[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2865 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2865 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2602[label="",style="dashed", color="red", weight=0]; 2866[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2866 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2866 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2603[label="",style="dashed", color="red", weight=0]; 2867[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2867 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2867 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2604[label="",style="dashed", color="red", weight=0]; 2868[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2868 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2868 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2605[label="",style="dashed", color="red", weight=0]; 2869[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2869 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2869 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2870 -> 2606[label="",style="dashed", color="red", weight=0]; 2870[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2870 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2870 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2607[label="",style="dashed", color="red", weight=0]; 2871[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2871 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2871 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2608[label="",style="dashed", color="red", weight=0]; 2872[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2872 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2872 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2609[label="",style="dashed", color="red", weight=0]; 2873[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2873 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2873 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2874 -> 2610[label="",style="dashed", color="red", weight=0]; 2874[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2874 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2874 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2875 -> 2611[label="",style="dashed", color="red", weight=0]; 2875[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2875 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2875 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2876 -> 2612[label="",style="dashed", color="red", weight=0]; 2876[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2876 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2876 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2877 -> 2613[label="",style="dashed", color="red", weight=0]; 2877[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2877 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2877 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2878 -> 2614[label="",style="dashed", color="red", weight=0]; 2878[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2878 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2878 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2601[label="",style="dashed", color="red", weight=0]; 2879[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2879 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2879 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2880 -> 2602[label="",style="dashed", color="red", weight=0]; 2880[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2880 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2880 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2881 -> 2603[label="",style="dashed", color="red", weight=0]; 2881[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2881 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2881 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2882 -> 2604[label="",style="dashed", color="red", weight=0]; 2882[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2882 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2882 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2883 -> 2605[label="",style="dashed", color="red", weight=0]; 2883[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2883 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2883 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2884 -> 2606[label="",style="dashed", color="red", weight=0]; 2884[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2884 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2884 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2885 -> 2607[label="",style="dashed", color="red", weight=0]; 2885[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2885 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2885 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2886 -> 2608[label="",style="dashed", color="red", weight=0]; 2886[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2886 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2886 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2887 -> 2609[label="",style="dashed", color="red", weight=0]; 2887[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2887 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2887 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2888 -> 2610[label="",style="dashed", color="red", weight=0]; 2888[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2888 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2888 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2889 -> 2611[label="",style="dashed", color="red", weight=0]; 2889[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2889 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2889 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2890 -> 2612[label="",style="dashed", color="red", weight=0]; 2890[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2890 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2890 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2891 -> 2613[label="",style="dashed", color="red", weight=0]; 2891[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2891 -> 2989[label="",style="dashed", color="magenta", weight=3]; 2891 -> 2990[label="",style="dashed", color="magenta", weight=3]; 2892 -> 2614[label="",style="dashed", color="red", weight=0]; 2892[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2892 -> 2991[label="",style="dashed", color="magenta", weight=3]; 2892 -> 2992[label="",style="dashed", color="magenta", weight=3]; 2855[label="GT",fontsize=16,color="green",shape="box"];2856[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2856 -> 2993[label="",style="solid", color="black", weight=3]; 2857[label="GT",fontsize=16,color="green",shape="box"];2858[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4169[label="vyw4300/vyw43000 :% vyw43001",fontsize=10,color="white",style="solid",shape="box"];2858 -> 4169[label="",style="solid", color="burlywood", weight=9]; 4169 -> 2994[label="",style="solid", color="burlywood", weight=3]; 2859[label="GT",fontsize=16,color="green",shape="box"];2860[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2860 -> 2995[label="",style="solid", color="black", weight=3]; 2861[label="GT",fontsize=16,color="green",shape="box"];2862[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4170[label="vyw4300/vyw43000 : vyw43001",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4170[label="",style="solid", color="burlywood", weight=9]; 4170 -> 2996[label="",style="solid", color="burlywood", weight=3]; 4171[label="vyw4300/[]",fontsize=10,color="white",style="solid",shape="box"];2862 -> 4171[label="",style="solid", color="burlywood", weight=9]; 4171 -> 2997[label="",style="solid", color="burlywood", weight=3]; 3001[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4172[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 3009[label="",style="solid", color="blue", weight=3]; 4173[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 3010[label="",style="solid", color="blue", weight=3]; 4174[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 3011[label="",style="solid", color="blue", weight=3]; 4175[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 3012[label="",style="solid", color="blue", weight=3]; 4176[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 3013[label="",style="solid", color="blue", weight=3]; 4177[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 3014[label="",style="solid", color="blue", weight=3]; 4178[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 3015[label="",style="solid", color="blue", weight=3]; 4179[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 3016[label="",style="solid", color="blue", weight=3]; 4180[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 3017[label="",style="solid", color="blue", weight=3]; 4181[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 3018[label="",style="solid", color="blue", weight=3]; 4182[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 3019[label="",style="solid", color="blue", weight=3]; 4183[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 3020[label="",style="solid", color="blue", weight=3]; 4184[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 3021[label="",style="solid", color="blue", weight=3]; 4185[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3001 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 3022[label="",style="solid", color="blue", weight=3]; 3002 -> 2268[label="",style="dashed", color="red", weight=0]; 3002[label="vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];3002 -> 3023[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3024[label="",style="dashed", color="magenta", weight=3]; 3000[label="vyw150 || vyw151",fontsize=16,color="burlywood",shape="triangle"];4186[label="vyw150/False",fontsize=10,color="white",style="solid",shape="box"];3000 -> 4186[label="",style="solid", color="burlywood", weight=9]; 4186 -> 3025[label="",style="solid", color="burlywood", weight=3]; 4187[label="vyw150/True",fontsize=10,color="white",style="solid",shape="box"];3000 -> 4187[label="",style="solid", color="burlywood", weight=9]; 4187 -> 3026[label="",style="solid", color="burlywood", weight=3]; 3003[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4188[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 3027[label="",style="solid", color="blue", weight=3]; 4189[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 3028[label="",style="solid", color="blue", weight=3]; 4190[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 3029[label="",style="solid", color="blue", weight=3]; 4191[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 3030[label="",style="solid", color="blue", weight=3]; 4192[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 3031[label="",style="solid", color="blue", weight=3]; 4193[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 3032[label="",style="solid", color="blue", weight=3]; 4194[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 3033[label="",style="solid", color="blue", weight=3]; 4195[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 3034[label="",style="solid", color="blue", weight=3]; 4196[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 3035[label="",style="solid", color="blue", weight=3]; 4197[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 3036[label="",style="solid", color="blue", weight=3]; 4198[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 3037[label="",style="solid", color="blue", weight=3]; 4199[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 3038[label="",style="solid", color="blue", weight=3]; 4200[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 3039[label="",style="solid", color="blue", weight=3]; 4201[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3003 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 3040[label="",style="solid", color="blue", weight=3]; 3004 -> 2268[label="",style="dashed", color="red", weight=0]; 3004[label="vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];3004 -> 3041[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2863[label="GT",fontsize=16,color="green",shape="box"];2864[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4202[label="vyw4300/()",fontsize=10,color="white",style="solid",shape="box"];2864 -> 4202[label="",style="solid", color="burlywood", weight=9]; 4202 -> 3043[label="",style="solid", color="burlywood", weight=3]; 2898[label="primMulNat (Succ vyw30100) vyw40000",fontsize=16,color="burlywood",shape="box"];4203[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4203[label="",style="solid", color="burlywood", weight=9]; 4203 -> 3044[label="",style="solid", color="burlywood", weight=3]; 4204[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2898 -> 4204[label="",style="solid", color="burlywood", weight=9]; 4204 -> 3045[label="",style="solid", color="burlywood", weight=3]; 2899[label="primMulNat Zero vyw40000",fontsize=16,color="burlywood",shape="box"];4205[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4205[label="",style="solid", color="burlywood", weight=9]; 4205 -> 3046[label="",style="solid", color="burlywood", weight=3]; 4206[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2899 -> 4206[label="",style="solid", color="burlywood", weight=9]; 4206 -> 3047[label="",style="solid", color="burlywood", weight=3]; 2900[label="vyw40000",fontsize=16,color="green",shape="box"];2901[label="vyw3010",fontsize=16,color="green",shape="box"];2902[label="vyw3010",fontsize=16,color="green",shape="box"];2903[label="vyw40000",fontsize=16,color="green",shape="box"];2904[label="vyw43000",fontsize=16,color="green",shape="box"];2905[label="vyw44000",fontsize=16,color="green",shape="box"];2906[label="vyw43000",fontsize=16,color="green",shape="box"];2907[label="vyw44000",fontsize=16,color="green",shape="box"];2908[label="vyw43000",fontsize=16,color="green",shape="box"];2909[label="vyw44000",fontsize=16,color="green",shape="box"];2910[label="vyw43000",fontsize=16,color="green",shape="box"];2911[label="vyw44000",fontsize=16,color="green",shape="box"];2912[label="vyw43000",fontsize=16,color="green",shape="box"];2913[label="vyw44000",fontsize=16,color="green",shape="box"];2914[label="vyw43000",fontsize=16,color="green",shape="box"];2915[label="vyw44000",fontsize=16,color="green",shape="box"];2916[label="vyw43000",fontsize=16,color="green",shape="box"];2917[label="vyw44000",fontsize=16,color="green",shape="box"];2918[label="vyw43000",fontsize=16,color="green",shape="box"];2919[label="vyw44000",fontsize=16,color="green",shape="box"];2920[label="vyw43000",fontsize=16,color="green",shape="box"];2921[label="vyw44000",fontsize=16,color="green",shape="box"];2922[label="vyw43000",fontsize=16,color="green",shape="box"];2923[label="vyw44000",fontsize=16,color="green",shape="box"];2924[label="vyw43000",fontsize=16,color="green",shape="box"];2925[label="vyw44000",fontsize=16,color="green",shape="box"];2926[label="vyw43000",fontsize=16,color="green",shape="box"];2927[label="vyw44000",fontsize=16,color="green",shape="box"];2928[label="vyw43000",fontsize=16,color="green",shape="box"];2929[label="vyw44000",fontsize=16,color="green",shape="box"];2930[label="vyw43000",fontsize=16,color="green",shape="box"];2931[label="vyw44000",fontsize=16,color="green",shape="box"];2932[label="compare (Integer vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4207[label="vyw4400/Integer vyw44000",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4207[label="",style="solid", color="burlywood", weight=9]; 4207 -> 3048[label="",style="solid", color="burlywood", weight=3]; 2933[label="True",fontsize=16,color="green",shape="box"];2934[label="False",fontsize=16,color="green",shape="box"];2935[label="primCmpChar vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4208[label="vyw4300/Char vyw43000",fontsize=10,color="white",style="solid",shape="box"];2935 -> 4208[label="",style="solid", color="burlywood", weight=9]; 4208 -> 3049[label="",style="solid", color="burlywood", weight=3]; 2936[label="primCmpInt vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4209[label="vyw4300/Pos vyw43000",fontsize=10,color="white",style="solid",shape="box"];2936 -> 4209[label="",style="solid", color="burlywood", weight=9]; 4209 -> 3050[label="",style="solid", color="burlywood", weight=3]; 4210[label="vyw4300/Neg vyw43000",fontsize=10,color="white",style="solid",shape="box"];2936 -> 4210[label="",style="solid", color="burlywood", weight=9]; 4210 -> 3051[label="",style="solid", color="burlywood", weight=3]; 2937[label="vyw43000",fontsize=16,color="green",shape="box"];2938[label="vyw44000",fontsize=16,color="green",shape="box"];2939[label="vyw43000",fontsize=16,color="green",shape="box"];2940[label="vyw44000",fontsize=16,color="green",shape="box"];2941[label="vyw43000",fontsize=16,color="green",shape="box"];2942[label="vyw44000",fontsize=16,color="green",shape="box"];2943[label="vyw43000",fontsize=16,color="green",shape="box"];2944[label="vyw44000",fontsize=16,color="green",shape="box"];2945[label="vyw43000",fontsize=16,color="green",shape="box"];2946[label="vyw44000",fontsize=16,color="green",shape="box"];2947[label="vyw43000",fontsize=16,color="green",shape="box"];2948[label="vyw44000",fontsize=16,color="green",shape="box"];2949[label="vyw43000",fontsize=16,color="green",shape="box"];2950[label="vyw44000",fontsize=16,color="green",shape="box"];2951[label="vyw43000",fontsize=16,color="green",shape="box"];2952[label="vyw44000",fontsize=16,color="green",shape="box"];2953[label="vyw43000",fontsize=16,color="green",shape="box"];2954[label="vyw44000",fontsize=16,color="green",shape="box"];2955[label="vyw43000",fontsize=16,color="green",shape="box"];2956[label="vyw44000",fontsize=16,color="green",shape="box"];2957[label="vyw43000",fontsize=16,color="green",shape="box"];2958[label="vyw44000",fontsize=16,color="green",shape="box"];2959[label="vyw43000",fontsize=16,color="green",shape="box"];2960[label="vyw44000",fontsize=16,color="green",shape="box"];2961[label="vyw43000",fontsize=16,color="green",shape="box"];2962[label="vyw44000",fontsize=16,color="green",shape="box"];2963[label="vyw43000",fontsize=16,color="green",shape="box"];2964[label="vyw44000",fontsize=16,color="green",shape="box"];2965[label="vyw43000",fontsize=16,color="green",shape="box"];2966[label="vyw44000",fontsize=16,color="green",shape="box"];2967[label="vyw43000",fontsize=16,color="green",shape="box"];2968[label="vyw44000",fontsize=16,color="green",shape="box"];2969[label="vyw43000",fontsize=16,color="green",shape="box"];2970[label="vyw44000",fontsize=16,color="green",shape="box"];2971[label="vyw43000",fontsize=16,color="green",shape="box"];2972[label="vyw44000",fontsize=16,color="green",shape="box"];2973[label="vyw43000",fontsize=16,color="green",shape="box"];2974[label="vyw44000",fontsize=16,color="green",shape="box"];2975[label="vyw43000",fontsize=16,color="green",shape="box"];2976[label="vyw44000",fontsize=16,color="green",shape="box"];2977[label="vyw43000",fontsize=16,color="green",shape="box"];2978[label="vyw44000",fontsize=16,color="green",shape="box"];2979[label="vyw43000",fontsize=16,color="green",shape="box"];2980[label="vyw44000",fontsize=16,color="green",shape="box"];2981[label="vyw43000",fontsize=16,color="green",shape="box"];2982[label="vyw44000",fontsize=16,color="green",shape="box"];2983[label="vyw43000",fontsize=16,color="green",shape="box"];2984[label="vyw44000",fontsize=16,color="green",shape="box"];2985[label="vyw43000",fontsize=16,color="green",shape="box"];2986[label="vyw44000",fontsize=16,color="green",shape="box"];2987[label="vyw43000",fontsize=16,color="green",shape="box"];2988[label="vyw44000",fontsize=16,color="green",shape="box"];2989[label="vyw43000",fontsize=16,color="green",shape="box"];2990[label="vyw44000",fontsize=16,color="green",shape="box"];2991[label="vyw43000",fontsize=16,color="green",shape="box"];2992[label="vyw44000",fontsize=16,color="green",shape="box"];2993[label="primCmpFloat vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4211[label="vyw4300/Float vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2993 -> 4211[label="",style="solid", color="burlywood", weight=9]; 4211 -> 3052[label="",style="solid", color="burlywood", weight=3]; 2994[label="compare (vyw43000 :% vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4212[label="vyw4400/vyw44000 :% vyw44001",fontsize=10,color="white",style="solid",shape="box"];2994 -> 4212[label="",style="solid", color="burlywood", weight=9]; 4212 -> 3053[label="",style="solid", color="burlywood", weight=3]; 2995[label="primCmpDouble vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4213[label="vyw4300/Double vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 3054[label="",style="solid", color="burlywood", weight=3]; 2996[label="compare (vyw43000 : vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4214[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4214[label="",style="solid", color="burlywood", weight=9]; 4214 -> 3055[label="",style="solid", color="burlywood", weight=3]; 4215[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2996 -> 4215[label="",style="solid", color="burlywood", weight=9]; 4215 -> 3056[label="",style="solid", color="burlywood", weight=3]; 2997[label="compare [] vyw4400",fontsize=16,color="burlywood",shape="box"];4216[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2997 -> 4216[label="",style="solid", color="burlywood", weight=9]; 4216 -> 3057[label="",style="solid", color="burlywood", weight=3]; 4217[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2997 -> 4217[label="",style="solid", color="burlywood", weight=9]; 4217 -> 3058[label="",style="solid", color="burlywood", weight=3]; 3009[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3009 -> 3059[label="",style="solid", color="black", weight=3]; 3010[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3010 -> 3060[label="",style="solid", color="black", weight=3]; 3011[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3011 -> 3061[label="",style="solid", color="black", weight=3]; 3012[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3012 -> 3062[label="",style="solid", color="black", weight=3]; 3013[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3013 -> 3063[label="",style="solid", color="black", weight=3]; 3014[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3014 -> 3064[label="",style="solid", color="black", weight=3]; 3015[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3015 -> 3065[label="",style="solid", color="black", weight=3]; 3016[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3016 -> 3066[label="",style="solid", color="black", weight=3]; 3017[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3017 -> 3067[label="",style="solid", color="black", weight=3]; 3018[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3018 -> 3068[label="",style="solid", color="black", weight=3]; 3019[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3019 -> 3069[label="",style="solid", color="black", weight=3]; 3020[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3020 -> 3070[label="",style="solid", color="black", weight=3]; 3021[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3021 -> 3071[label="",style="solid", color="black", weight=3]; 3022[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];3022 -> 3072[label="",style="solid", color="black", weight=3]; 3023[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4218[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 3073[label="",style="solid", color="blue", weight=3]; 4219[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 3074[label="",style="solid", color="blue", weight=3]; 4220[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 3075[label="",style="solid", color="blue", weight=3]; 4221[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 3076[label="",style="solid", color="blue", weight=3]; 4222[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 3077[label="",style="solid", color="blue", weight=3]; 4223[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 3078[label="",style="solid", color="blue", weight=3]; 4224[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 3079[label="",style="solid", color="blue", weight=3]; 4225[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 3080[label="",style="solid", color="blue", weight=3]; 4226[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 3081[label="",style="solid", color="blue", weight=3]; 4227[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 3082[label="",style="solid", color="blue", weight=3]; 4228[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 3083[label="",style="solid", color="blue", weight=3]; 4229[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 3084[label="",style="solid", color="blue", weight=3]; 4230[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 3085[label="",style="solid", color="blue", weight=3]; 4231[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3023 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 3086[label="",style="solid", color="blue", weight=3]; 3024 -> 3000[label="",style="dashed", color="red", weight=0]; 3024[label="vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];3024 -> 3087[label="",style="dashed", color="magenta", weight=3]; 3024 -> 3088[label="",style="dashed", color="magenta", weight=3]; 3025[label="False || vyw151",fontsize=16,color="black",shape="box"];3025 -> 3089[label="",style="solid", color="black", weight=3]; 3026[label="True || vyw151",fontsize=16,color="black",shape="box"];3026 -> 3090[label="",style="solid", color="black", weight=3]; 3027 -> 3009[label="",style="dashed", color="red", weight=0]; 3027[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3027 -> 3091[label="",style="dashed", color="magenta", weight=3]; 3027 -> 3092[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3010[label="",style="dashed", color="red", weight=0]; 3028[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3028 -> 3093[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3094[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3011[label="",style="dashed", color="red", weight=0]; 3029[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3029 -> 3095[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3096[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3012[label="",style="dashed", color="red", weight=0]; 3030[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3030 -> 3097[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3098[label="",style="dashed", color="magenta", weight=3]; 3031 -> 3013[label="",style="dashed", color="red", weight=0]; 3031[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3031 -> 3099[label="",style="dashed", color="magenta", weight=3]; 3031 -> 3100[label="",style="dashed", color="magenta", weight=3]; 3032 -> 3014[label="",style="dashed", color="red", weight=0]; 3032[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3032 -> 3101[label="",style="dashed", color="magenta", weight=3]; 3032 -> 3102[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3015[label="",style="dashed", color="red", weight=0]; 3033[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3033 -> 3103[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3104[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3016[label="",style="dashed", color="red", weight=0]; 3034[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3034 -> 3105[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3017[label="",style="dashed", color="red", weight=0]; 3035[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3035 -> 3107[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3018[label="",style="dashed", color="red", weight=0]; 3036[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3036 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3037 -> 3019[label="",style="dashed", color="red", weight=0]; 3037[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3037 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3037 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3038 -> 3020[label="",style="dashed", color="red", weight=0]; 3038[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3038 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3038 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3039 -> 3021[label="",style="dashed", color="red", weight=0]; 3039[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3039 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3039 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3040 -> 3022[label="",style="dashed", color="red", weight=0]; 3040[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];3040 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3040 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3041[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4232[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 3119[label="",style="solid", color="blue", weight=3]; 4233[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 3120[label="",style="solid", color="blue", weight=3]; 4234[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 3121[label="",style="solid", color="blue", weight=3]; 4235[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 3122[label="",style="solid", color="blue", weight=3]; 4236[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 3123[label="",style="solid", color="blue", weight=3]; 4237[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 3124[label="",style="solid", color="blue", weight=3]; 4238[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 3125[label="",style="solid", color="blue", weight=3]; 4239[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 3126[label="",style="solid", color="blue", weight=3]; 4240[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 3127[label="",style="solid", color="blue", weight=3]; 4241[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 3128[label="",style="solid", color="blue", weight=3]; 4242[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 3129[label="",style="solid", color="blue", weight=3]; 4243[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 3130[label="",style="solid", color="blue", weight=3]; 4244[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 3131[label="",style="solid", color="blue", weight=3]; 4245[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3041 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 3132[label="",style="solid", color="blue", weight=3]; 3042[label="vyw43001 <= vyw44001",fontsize=16,color="blue",shape="box"];4246[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 3133[label="",style="solid", color="blue", weight=3]; 4247[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 3134[label="",style="solid", color="blue", weight=3]; 4248[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 3135[label="",style="solid", color="blue", weight=3]; 4249[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 3136[label="",style="solid", color="blue", weight=3]; 4250[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 3137[label="",style="solid", color="blue", weight=3]; 4251[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 3138[label="",style="solid", color="blue", weight=3]; 4252[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 3139[label="",style="solid", color="blue", weight=3]; 4253[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 3140[label="",style="solid", color="blue", weight=3]; 4254[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 3141[label="",style="solid", color="blue", weight=3]; 4255[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 3142[label="",style="solid", color="blue", weight=3]; 4256[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 3143[label="",style="solid", color="blue", weight=3]; 4257[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 3144[label="",style="solid", color="blue", weight=3]; 4258[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 3145[label="",style="solid", color="blue", weight=3]; 4259[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 3146[label="",style="solid", color="blue", weight=3]; 3043[label="compare () vyw4400",fontsize=16,color="burlywood",shape="box"];4260[label="vyw4400/()",fontsize=10,color="white",style="solid",shape="box"];3043 -> 4260[label="",style="solid", color="burlywood", weight=9]; 4260 -> 3147[label="",style="solid", color="burlywood", weight=3]; 3044[label="primMulNat (Succ vyw30100) (Succ vyw400000)",fontsize=16,color="black",shape="box"];3044 -> 3148[label="",style="solid", color="black", weight=3]; 3045[label="primMulNat (Succ vyw30100) Zero",fontsize=16,color="black",shape="box"];3045 -> 3149[label="",style="solid", color="black", weight=3]; 3046[label="primMulNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];3046 -> 3150[label="",style="solid", color="black", weight=3]; 3047[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];3047 -> 3151[label="",style="solid", color="black", weight=3]; 3048[label="compare (Integer vyw43000) (Integer vyw44000)",fontsize=16,color="black",shape="box"];3048 -> 3152[label="",style="solid", color="black", weight=3]; 3049[label="primCmpChar (Char vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4261[label="vyw4400/Char vyw44000",fontsize=10,color="white",style="solid",shape="box"];3049 -> 4261[label="",style="solid", color="burlywood", weight=9]; 4261 -> 3153[label="",style="solid", color="burlywood", weight=3]; 3050[label="primCmpInt (Pos vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4262[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4262[label="",style="solid", color="burlywood", weight=9]; 4262 -> 3154[label="",style="solid", color="burlywood", weight=3]; 4263[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3050 -> 4263[label="",style="solid", color="burlywood", weight=9]; 4263 -> 3155[label="",style="solid", color="burlywood", weight=3]; 3051[label="primCmpInt (Neg vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4264[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3051 -> 4264[label="",style="solid", color="burlywood", weight=9]; 4264 -> 3156[label="",style="solid", color="burlywood", weight=3]; 4265[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3051 -> 4265[label="",style="solid", color="burlywood", weight=9]; 4265 -> 3157[label="",style="solid", color="burlywood", weight=3]; 3052[label="primCmpFloat (Float vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4266[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3052 -> 4266[label="",style="solid", color="burlywood", weight=9]; 4266 -> 3158[label="",style="solid", color="burlywood", weight=3]; 4267[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3052 -> 4267[label="",style="solid", color="burlywood", weight=9]; 4267 -> 3159[label="",style="solid", color="burlywood", weight=3]; 3053[label="compare (vyw43000 :% vyw43001) (vyw44000 :% vyw44001)",fontsize=16,color="black",shape="box"];3053 -> 3160[label="",style="solid", color="black", weight=3]; 3054[label="primCmpDouble (Double vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4268[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3054 -> 4268[label="",style="solid", color="burlywood", weight=9]; 4268 -> 3161[label="",style="solid", color="burlywood", weight=3]; 4269[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3054 -> 4269[label="",style="solid", color="burlywood", weight=9]; 4269 -> 3162[label="",style="solid", color="burlywood", weight=3]; 3055[label="compare (vyw43000 : vyw43001) (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3055 -> 3163[label="",style="solid", color="black", weight=3]; 3056[label="compare (vyw43000 : vyw43001) []",fontsize=16,color="black",shape="box"];3056 -> 3164[label="",style="solid", color="black", weight=3]; 3057[label="compare [] (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3057 -> 3165[label="",style="solid", color="black", weight=3]; 3058[label="compare [] []",fontsize=16,color="black",shape="box"];3058 -> 3166[label="",style="solid", color="black", weight=3]; 3059 -> 52[label="",style="dashed", color="red", weight=0]; 3059[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3059 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3059 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3060 -> 52[label="",style="dashed", color="red", weight=0]; 3060[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3060 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3060 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3061 -> 52[label="",style="dashed", color="red", weight=0]; 3061[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3061 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3061 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3062 -> 52[label="",style="dashed", color="red", weight=0]; 3062[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3062 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3062 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3063 -> 52[label="",style="dashed", color="red", weight=0]; 3063[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3063 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3063 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3064 -> 52[label="",style="dashed", color="red", weight=0]; 3064[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3064 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3064 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3065 -> 52[label="",style="dashed", color="red", weight=0]; 3065[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3065 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3065 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3066 -> 52[label="",style="dashed", color="red", weight=0]; 3066[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3066 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3066 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3067 -> 52[label="",style="dashed", color="red", weight=0]; 3067[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3067 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3067 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3068 -> 52[label="",style="dashed", color="red", weight=0]; 3068[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3068 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3068 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3069 -> 52[label="",style="dashed", color="red", weight=0]; 3069[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3069 -> 3187[label="",style="dashed", color="magenta", weight=3]; 3069 -> 3188[label="",style="dashed", color="magenta", weight=3]; 3070 -> 52[label="",style="dashed", color="red", weight=0]; 3070[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3070 -> 3189[label="",style="dashed", color="magenta", weight=3]; 3070 -> 3190[label="",style="dashed", color="magenta", weight=3]; 3071 -> 52[label="",style="dashed", color="red", weight=0]; 3071[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3071 -> 3191[label="",style="dashed", color="magenta", weight=3]; 3071 -> 3192[label="",style="dashed", color="magenta", weight=3]; 3072 -> 52[label="",style="dashed", color="red", weight=0]; 3072[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3072 -> 3193[label="",style="dashed", color="magenta", weight=3]; 3072 -> 3194[label="",style="dashed", color="magenta", weight=3]; 3073 -> 1925[label="",style="dashed", color="red", weight=0]; 3073[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3073 -> 3195[label="",style="dashed", color="magenta", weight=3]; 3073 -> 3196[label="",style="dashed", color="magenta", weight=3]; 3074 -> 1927[label="",style="dashed", color="red", weight=0]; 3074[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3074 -> 3197[label="",style="dashed", color="magenta", weight=3]; 3074 -> 3198[label="",style="dashed", color="magenta", weight=3]; 3075 -> 1924[label="",style="dashed", color="red", weight=0]; 3075[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3075 -> 3199[label="",style="dashed", color="magenta", weight=3]; 3075 -> 3200[label="",style="dashed", color="magenta", weight=3]; 3076 -> 1932[label="",style="dashed", color="red", weight=0]; 3076[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3076 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3076 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3077 -> 1935[label="",style="dashed", color="red", weight=0]; 3077[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3077 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3077 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3078 -> 1934[label="",style="dashed", color="red", weight=0]; 3078[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3078 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3079 -> 1933[label="",style="dashed", color="red", weight=0]; 3079[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3079 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3080 -> 1923[label="",style="dashed", color="red", weight=0]; 3080[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3080 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3080 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3081 -> 1922[label="",style="dashed", color="red", weight=0]; 3081[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3081 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3081 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3082 -> 1931[label="",style="dashed", color="red", weight=0]; 3082[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3082 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3083 -> 1926[label="",style="dashed", color="red", weight=0]; 3083[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3083 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3083 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3084 -> 1928[label="",style="dashed", color="red", weight=0]; 3084[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3084 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3085 -> 1929[label="",style="dashed", color="red", weight=0]; 3085[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3085 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3085 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3086 -> 52[label="",style="dashed", color="red", weight=0]; 3086[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3086 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3086 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3087[label="vyw43001 < vyw44001",fontsize=16,color="blue",shape="box"];4270[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 3223[label="",style="solid", color="blue", weight=3]; 4271[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4271[label="",style="solid", color="blue", weight=9]; 4271 -> 3224[label="",style="solid", color="blue", weight=3]; 4272[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4272[label="",style="solid", color="blue", weight=9]; 4272 -> 3225[label="",style="solid", color="blue", weight=3]; 4273[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4273[label="",style="solid", color="blue", weight=9]; 4273 -> 3226[label="",style="solid", color="blue", weight=3]; 4274[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4274[label="",style="solid", color="blue", weight=9]; 4274 -> 3227[label="",style="solid", color="blue", weight=3]; 4275[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4275[label="",style="solid", color="blue", weight=9]; 4275 -> 3228[label="",style="solid", color="blue", weight=3]; 4276[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4276[label="",style="solid", color="blue", weight=9]; 4276 -> 3229[label="",style="solid", color="blue", weight=3]; 4277[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4277[label="",style="solid", color="blue", weight=9]; 4277 -> 3230[label="",style="solid", color="blue", weight=3]; 4278[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4278[label="",style="solid", color="blue", weight=9]; 4278 -> 3231[label="",style="solid", color="blue", weight=3]; 4279[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4279[label="",style="solid", color="blue", weight=9]; 4279 -> 3232[label="",style="solid", color="blue", weight=3]; 4280[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4280[label="",style="solid", color="blue", weight=9]; 4280 -> 3233[label="",style="solid", color="blue", weight=3]; 4281[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4281[label="",style="solid", color="blue", weight=9]; 4281 -> 3234[label="",style="solid", color="blue", weight=3]; 4282[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4282[label="",style="solid", color="blue", weight=9]; 4282 -> 3235[label="",style="solid", color="blue", weight=3]; 4283[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3087 -> 4283[label="",style="solid", color="blue", weight=9]; 4283 -> 3236[label="",style="solid", color="blue", weight=3]; 3088 -> 2268[label="",style="dashed", color="red", weight=0]; 3088[label="vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];3088 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3089[label="vyw151",fontsize=16,color="green",shape="box"];3090[label="True",fontsize=16,color="green",shape="box"];3091[label="vyw44000",fontsize=16,color="green",shape="box"];3092[label="vyw43000",fontsize=16,color="green",shape="box"];3093[label="vyw44000",fontsize=16,color="green",shape="box"];3094[label="vyw43000",fontsize=16,color="green",shape="box"];3095[label="vyw44000",fontsize=16,color="green",shape="box"];3096[label="vyw43000",fontsize=16,color="green",shape="box"];3097[label="vyw44000",fontsize=16,color="green",shape="box"];3098[label="vyw43000",fontsize=16,color="green",shape="box"];3099[label="vyw44000",fontsize=16,color="green",shape="box"];3100[label="vyw43000",fontsize=16,color="green",shape="box"];3101[label="vyw44000",fontsize=16,color="green",shape="box"];3102[label="vyw43000",fontsize=16,color="green",shape="box"];3103[label="vyw44000",fontsize=16,color="green",shape="box"];3104[label="vyw43000",fontsize=16,color="green",shape="box"];3105[label="vyw44000",fontsize=16,color="green",shape="box"];3106[label="vyw43000",fontsize=16,color="green",shape="box"];3107[label="vyw44000",fontsize=16,color="green",shape="box"];3108[label="vyw43000",fontsize=16,color="green",shape="box"];3109[label="vyw44000",fontsize=16,color="green",shape="box"];3110[label="vyw43000",fontsize=16,color="green",shape="box"];3111[label="vyw44000",fontsize=16,color="green",shape="box"];3112[label="vyw43000",fontsize=16,color="green",shape="box"];3113[label="vyw44000",fontsize=16,color="green",shape="box"];3114[label="vyw43000",fontsize=16,color="green",shape="box"];3115[label="vyw44000",fontsize=16,color="green",shape="box"];3116[label="vyw43000",fontsize=16,color="green",shape="box"];3117[label="vyw44000",fontsize=16,color="green",shape="box"];3118[label="vyw43000",fontsize=16,color="green",shape="box"];3119 -> 1925[label="",style="dashed", color="red", weight=0]; 3119[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3119 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3120 -> 1927[label="",style="dashed", color="red", weight=0]; 3120[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3120 -> 3241[label="",style="dashed", color="magenta", weight=3]; 3120 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3121 -> 1924[label="",style="dashed", color="red", weight=0]; 3121[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3121 -> 3243[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3122 -> 1932[label="",style="dashed", color="red", weight=0]; 3122[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3122 -> 3245[label="",style="dashed", color="magenta", weight=3]; 3122 -> 3246[label="",style="dashed", color="magenta", weight=3]; 3123 -> 1935[label="",style="dashed", color="red", weight=0]; 3123[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3123 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3123 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3124 -> 1934[label="",style="dashed", color="red", weight=0]; 3124[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3124 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3124 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3125 -> 1933[label="",style="dashed", color="red", weight=0]; 3125[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3125 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3125 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3126 -> 1923[label="",style="dashed", color="red", weight=0]; 3126[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3126 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3126 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3127 -> 1922[label="",style="dashed", color="red", weight=0]; 3127[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3127 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3127 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3128 -> 1931[label="",style="dashed", color="red", weight=0]; 3128[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3128 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3128 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3129 -> 1926[label="",style="dashed", color="red", weight=0]; 3129[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3129 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3129 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3130 -> 1928[label="",style="dashed", color="red", weight=0]; 3130[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3130 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3130 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3131 -> 1929[label="",style="dashed", color="red", weight=0]; 3131[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3131 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3131 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3132 -> 52[label="",style="dashed", color="red", weight=0]; 3132[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3132 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3132 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3133 -> 2601[label="",style="dashed", color="red", weight=0]; 3133[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3133 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3133 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3134 -> 2602[label="",style="dashed", color="red", weight=0]; 3134[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3134 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3134 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3135 -> 2603[label="",style="dashed", color="red", weight=0]; 3135[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3135 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3135 -> 3272[label="",style="dashed", color="magenta", weight=3]; 3136 -> 2604[label="",style="dashed", color="red", weight=0]; 3136[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3136 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3136 -> 3274[label="",style="dashed", color="magenta", weight=3]; 3137 -> 2605[label="",style="dashed", color="red", weight=0]; 3137[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3137 -> 3275[label="",style="dashed", color="magenta", weight=3]; 3137 -> 3276[label="",style="dashed", color="magenta", weight=3]; 3138 -> 2606[label="",style="dashed", color="red", weight=0]; 3138[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3138 -> 3277[label="",style="dashed", color="magenta", weight=3]; 3138 -> 3278[label="",style="dashed", color="magenta", weight=3]; 3139 -> 2607[label="",style="dashed", color="red", weight=0]; 3139[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3139 -> 3279[label="",style="dashed", color="magenta", weight=3]; 3139 -> 3280[label="",style="dashed", color="magenta", weight=3]; 3140 -> 2608[label="",style="dashed", color="red", weight=0]; 3140[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3140 -> 3281[label="",style="dashed", color="magenta", weight=3]; 3140 -> 3282[label="",style="dashed", color="magenta", weight=3]; 3141 -> 2609[label="",style="dashed", color="red", weight=0]; 3141[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3141 -> 3283[label="",style="dashed", color="magenta", weight=3]; 3141 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3142 -> 2610[label="",style="dashed", color="red", weight=0]; 3142[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3142 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3142 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3143 -> 2611[label="",style="dashed", color="red", weight=0]; 3143[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3143 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3143 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3144 -> 2612[label="",style="dashed", color="red", weight=0]; 3144[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3144 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3144 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3145 -> 2613[label="",style="dashed", color="red", weight=0]; 3145[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3145 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3145 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3146 -> 2614[label="",style="dashed", color="red", weight=0]; 3146[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3146 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3146 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3147[label="compare () ()",fontsize=16,color="black",shape="box"];3147 -> 3295[label="",style="solid", color="black", weight=3]; 3148 -> 3296[label="",style="dashed", color="red", weight=0]; 3148[label="primPlusNat (primMulNat vyw30100 (Succ vyw400000)) (Succ vyw400000)",fontsize=16,color="magenta"];3148 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3149[label="Zero",fontsize=16,color="green",shape="box"];3150[label="Zero",fontsize=16,color="green",shape="box"];3151[label="Zero",fontsize=16,color="green",shape="box"];3152 -> 2936[label="",style="dashed", color="red", weight=0]; 3152[label="primCmpInt vyw43000 vyw44000",fontsize=16,color="magenta"];3152 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3152 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3153[label="primCmpChar (Char vyw43000) (Char vyw44000)",fontsize=16,color="black",shape="box"];3153 -> 3300[label="",style="solid", color="black", weight=3]; 3154[label="primCmpInt (Pos (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4284[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3154 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 3301[label="",style="solid", color="burlywood", weight=3]; 4285[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3154 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 3302[label="",style="solid", color="burlywood", weight=3]; 3155[label="primCmpInt (Pos Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4286[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3155 -> 4286[label="",style="solid", color="burlywood", weight=9]; 4286 -> 3303[label="",style="solid", color="burlywood", weight=3]; 4287[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3155 -> 4287[label="",style="solid", color="burlywood", weight=9]; 4287 -> 3304[label="",style="solid", color="burlywood", weight=3]; 3156[label="primCmpInt (Neg (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4288[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3156 -> 4288[label="",style="solid", color="burlywood", weight=9]; 4288 -> 3305[label="",style="solid", color="burlywood", weight=3]; 4289[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3156 -> 4289[label="",style="solid", color="burlywood", weight=9]; 4289 -> 3306[label="",style="solid", color="burlywood", weight=3]; 3157[label="primCmpInt (Neg Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4290[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3157 -> 4290[label="",style="solid", color="burlywood", weight=9]; 4290 -> 3307[label="",style="solid", color="burlywood", weight=3]; 4291[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3157 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 3308[label="",style="solid", color="burlywood", weight=3]; 3158[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4292[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3158 -> 4292[label="",style="solid", color="burlywood", weight=9]; 4292 -> 3309[label="",style="solid", color="burlywood", weight=3]; 3159[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4293[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3159 -> 4293[label="",style="solid", color="burlywood", weight=9]; 4293 -> 3310[label="",style="solid", color="burlywood", weight=3]; 3160[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="blue",shape="box"];4294[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4294[label="",style="solid", color="blue", weight=9]; 4294 -> 3311[label="",style="solid", color="blue", weight=3]; 4295[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3160 -> 4295[label="",style="solid", color="blue", weight=9]; 4295 -> 3312[label="",style="solid", color="blue", weight=3]; 3161[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4296[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3161 -> 4296[label="",style="solid", color="burlywood", weight=9]; 4296 -> 3313[label="",style="solid", color="burlywood", weight=3]; 3162[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4297[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3162 -> 4297[label="",style="solid", color="burlywood", weight=9]; 4297 -> 3314[label="",style="solid", color="burlywood", weight=3]; 3163 -> 3315[label="",style="dashed", color="red", weight=0]; 3163[label="primCompAux vyw43000 vyw44000 (compare vyw43001 vyw44001)",fontsize=16,color="magenta"];3163 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3164[label="GT",fontsize=16,color="green",shape="box"];3165[label="LT",fontsize=16,color="green",shape="box"];3166[label="EQ",fontsize=16,color="green",shape="box"];3167[label="LT",fontsize=16,color="green",shape="box"];3168[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3168 -> 3317[label="",style="solid", color="black", weight=3]; 3169[label="LT",fontsize=16,color="green",shape="box"];3170 -> 2848[label="",style="dashed", color="red", weight=0]; 3170[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3170 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3170 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3171[label="LT",fontsize=16,color="green",shape="box"];3172 -> 2852[label="",style="dashed", color="red", weight=0]; 3172[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3172 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3172 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3173[label="LT",fontsize=16,color="green",shape="box"];3174 -> 2854[label="",style="dashed", color="red", weight=0]; 3174[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3174 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3174 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3175[label="LT",fontsize=16,color="green",shape="box"];3176[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3176 -> 3324[label="",style="solid", color="black", weight=3]; 3177[label="LT",fontsize=16,color="green",shape="box"];3178 -> 2856[label="",style="dashed", color="red", weight=0]; 3178[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3178 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3178 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3179[label="LT",fontsize=16,color="green",shape="box"];3180 -> 2858[label="",style="dashed", color="red", weight=0]; 3180[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3180 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3328[label="",style="dashed", color="magenta", weight=3]; 3181[label="LT",fontsize=16,color="green",shape="box"];3182[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3182 -> 3329[label="",style="solid", color="black", weight=3]; 3183[label="LT",fontsize=16,color="green",shape="box"];3184 -> 2860[label="",style="dashed", color="red", weight=0]; 3184[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3184 -> 3330[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3331[label="",style="dashed", color="magenta", weight=3]; 3185[label="LT",fontsize=16,color="green",shape="box"];3186 -> 2862[label="",style="dashed", color="red", weight=0]; 3186[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3186 -> 3332[label="",style="dashed", color="magenta", weight=3]; 3186 -> 3333[label="",style="dashed", color="magenta", weight=3]; 3187[label="LT",fontsize=16,color="green",shape="box"];3188[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3188 -> 3334[label="",style="solid", color="black", weight=3]; 3189[label="LT",fontsize=16,color="green",shape="box"];3190[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3190 -> 3335[label="",style="solid", color="black", weight=3]; 3191[label="LT",fontsize=16,color="green",shape="box"];3192 -> 2864[label="",style="dashed", color="red", weight=0]; 3192[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3192 -> 3336[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3337[label="",style="dashed", color="magenta", weight=3]; 3193[label="LT",fontsize=16,color="green",shape="box"];3194[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3194 -> 3338[label="",style="solid", color="black", weight=3]; 3195[label="vyw44000",fontsize=16,color="green",shape="box"];3196[label="vyw43000",fontsize=16,color="green",shape="box"];3197[label="vyw44000",fontsize=16,color="green",shape="box"];3198[label="vyw43000",fontsize=16,color="green",shape="box"];3199[label="vyw44000",fontsize=16,color="green",shape="box"];3200[label="vyw43000",fontsize=16,color="green",shape="box"];3201[label="vyw44000",fontsize=16,color="green",shape="box"];3202[label="vyw43000",fontsize=16,color="green",shape="box"];3203[label="vyw44000",fontsize=16,color="green",shape="box"];3204[label="vyw43000",fontsize=16,color="green",shape="box"];3205[label="vyw44000",fontsize=16,color="green",shape="box"];3206[label="vyw43000",fontsize=16,color="green",shape="box"];3207[label="vyw44000",fontsize=16,color="green",shape="box"];3208[label="vyw43000",fontsize=16,color="green",shape="box"];3209[label="vyw44000",fontsize=16,color="green",shape="box"];3210[label="vyw43000",fontsize=16,color="green",shape="box"];3211[label="vyw44000",fontsize=16,color="green",shape="box"];3212[label="vyw43000",fontsize=16,color="green",shape="box"];3213[label="vyw44000",fontsize=16,color="green",shape="box"];3214[label="vyw43000",fontsize=16,color="green",shape="box"];3215[label="vyw44000",fontsize=16,color="green",shape="box"];3216[label="vyw43000",fontsize=16,color="green",shape="box"];3217[label="vyw44000",fontsize=16,color="green",shape="box"];3218[label="vyw43000",fontsize=16,color="green",shape="box"];3219[label="vyw44000",fontsize=16,color="green",shape="box"];3220[label="vyw43000",fontsize=16,color="green",shape="box"];3221[label="vyw44000",fontsize=16,color="green",shape="box"];3222[label="vyw43000",fontsize=16,color="green",shape="box"];3223 -> 3009[label="",style="dashed", color="red", weight=0]; 3223[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3223 -> 3339[label="",style="dashed", color="magenta", weight=3]; 3223 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3010[label="",style="dashed", color="red", weight=0]; 3224[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3224 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3224 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3011[label="",style="dashed", color="red", weight=0]; 3225[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3225 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3225 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3012[label="",style="dashed", color="red", weight=0]; 3226[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3226 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3226 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3013[label="",style="dashed", color="red", weight=0]; 3227[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3227 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3227 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3014[label="",style="dashed", color="red", weight=0]; 3228[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3228 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3228 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3015[label="",style="dashed", color="red", weight=0]; 3229[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3229 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3352[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3016[label="",style="dashed", color="red", weight=0]; 3230[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3230 -> 3353[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3354[label="",style="dashed", color="magenta", weight=3]; 3231 -> 3017[label="",style="dashed", color="red", weight=0]; 3231[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3231 -> 3355[label="",style="dashed", color="magenta", weight=3]; 3231 -> 3356[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3018[label="",style="dashed", color="red", weight=0]; 3232[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3232 -> 3357[label="",style="dashed", color="magenta", weight=3]; 3232 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3233 -> 3019[label="",style="dashed", color="red", weight=0]; 3233[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3233 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3233 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3020[label="",style="dashed", color="red", weight=0]; 3234[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3234 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3234 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3235 -> 3021[label="",style="dashed", color="red", weight=0]; 3235[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3235 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3235 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3022[label="",style="dashed", color="red", weight=0]; 3236[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3236 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3236 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3237[label="vyw43001 == vyw44001",fontsize=16,color="blue",shape="box"];4298[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4298[label="",style="solid", color="blue", weight=9]; 4298 -> 3367[label="",style="solid", color="blue", weight=3]; 4299[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4299[label="",style="solid", color="blue", weight=9]; 4299 -> 3368[label="",style="solid", color="blue", weight=3]; 4300[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4300[label="",style="solid", color="blue", weight=9]; 4300 -> 3369[label="",style="solid", color="blue", weight=3]; 4301[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4301[label="",style="solid", color="blue", weight=9]; 4301 -> 3370[label="",style="solid", color="blue", weight=3]; 4302[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4302[label="",style="solid", color="blue", weight=9]; 4302 -> 3371[label="",style="solid", color="blue", weight=3]; 4303[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4303[label="",style="solid", color="blue", weight=9]; 4303 -> 3372[label="",style="solid", color="blue", weight=3]; 4304[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4304[label="",style="solid", color="blue", weight=9]; 4304 -> 3373[label="",style="solid", color="blue", weight=3]; 4305[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4305[label="",style="solid", color="blue", weight=9]; 4305 -> 3374[label="",style="solid", color="blue", weight=3]; 4306[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4306[label="",style="solid", color="blue", weight=9]; 4306 -> 3375[label="",style="solid", color="blue", weight=3]; 4307[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 3376[label="",style="solid", color="blue", weight=3]; 4308[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 3377[label="",style="solid", color="blue", weight=3]; 4309[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 3378[label="",style="solid", color="blue", weight=3]; 4310[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 3379[label="",style="solid", color="blue", weight=3]; 4311[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 3380[label="",style="solid", color="blue", weight=3]; 3238[label="vyw43002 <= vyw44002",fontsize=16,color="blue",shape="box"];4312[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 3381[label="",style="solid", color="blue", weight=3]; 4313[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 3382[label="",style="solid", color="blue", weight=3]; 4314[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 3383[label="",style="solid", color="blue", weight=3]; 4315[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 3384[label="",style="solid", color="blue", weight=3]; 4316[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 3385[label="",style="solid", color="blue", weight=3]; 4317[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 3386[label="",style="solid", color="blue", weight=3]; 4318[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 3387[label="",style="solid", color="blue", weight=3]; 4319[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 3388[label="",style="solid", color="blue", weight=3]; 4320[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 3389[label="",style="solid", color="blue", weight=3]; 4321[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 3390[label="",style="solid", color="blue", weight=3]; 4322[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 3391[label="",style="solid", color="blue", weight=3]; 4323[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4323[label="",style="solid", color="blue", weight=9]; 4323 -> 3392[label="",style="solid", color="blue", weight=3]; 4324[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4324[label="",style="solid", color="blue", weight=9]; 4324 -> 3393[label="",style="solid", color="blue", weight=3]; 4325[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3238 -> 4325[label="",style="solid", color="blue", weight=9]; 4325 -> 3394[label="",style="solid", color="blue", weight=3]; 3239[label="vyw44000",fontsize=16,color="green",shape="box"];3240[label="vyw43000",fontsize=16,color="green",shape="box"];3241[label="vyw44000",fontsize=16,color="green",shape="box"];3242[label="vyw43000",fontsize=16,color="green",shape="box"];3243[label="vyw44000",fontsize=16,color="green",shape="box"];3244[label="vyw43000",fontsize=16,color="green",shape="box"];3245[label="vyw44000",fontsize=16,color="green",shape="box"];3246[label="vyw43000",fontsize=16,color="green",shape="box"];3247[label="vyw44000",fontsize=16,color="green",shape="box"];3248[label="vyw43000",fontsize=16,color="green",shape="box"];3249[label="vyw44000",fontsize=16,color="green",shape="box"];3250[label="vyw43000",fontsize=16,color="green",shape="box"];3251[label="vyw44000",fontsize=16,color="green",shape="box"];3252[label="vyw43000",fontsize=16,color="green",shape="box"];3253[label="vyw44000",fontsize=16,color="green",shape="box"];3254[label="vyw43000",fontsize=16,color="green",shape="box"];3255[label="vyw44000",fontsize=16,color="green",shape="box"];3256[label="vyw43000",fontsize=16,color="green",shape="box"];3257[label="vyw44000",fontsize=16,color="green",shape="box"];3258[label="vyw43000",fontsize=16,color="green",shape="box"];3259[label="vyw44000",fontsize=16,color="green",shape="box"];3260[label="vyw43000",fontsize=16,color="green",shape="box"];3261[label="vyw44000",fontsize=16,color="green",shape="box"];3262[label="vyw43000",fontsize=16,color="green",shape="box"];3263[label="vyw44000",fontsize=16,color="green",shape="box"];3264[label="vyw43000",fontsize=16,color="green",shape="box"];3265[label="vyw44000",fontsize=16,color="green",shape="box"];3266[label="vyw43000",fontsize=16,color="green",shape="box"];3267[label="vyw43001",fontsize=16,color="green",shape="box"];3268[label="vyw44001",fontsize=16,color="green",shape="box"];3269[label="vyw43001",fontsize=16,color="green",shape="box"];3270[label="vyw44001",fontsize=16,color="green",shape="box"];3271[label="vyw43001",fontsize=16,color="green",shape="box"];3272[label="vyw44001",fontsize=16,color="green",shape="box"];3273[label="vyw43001",fontsize=16,color="green",shape="box"];3274[label="vyw44001",fontsize=16,color="green",shape="box"];3275[label="vyw43001",fontsize=16,color="green",shape="box"];3276[label="vyw44001",fontsize=16,color="green",shape="box"];3277[label="vyw43001",fontsize=16,color="green",shape="box"];3278[label="vyw44001",fontsize=16,color="green",shape="box"];3279[label="vyw43001",fontsize=16,color="green",shape="box"];3280[label="vyw44001",fontsize=16,color="green",shape="box"];3281[label="vyw43001",fontsize=16,color="green",shape="box"];3282[label="vyw44001",fontsize=16,color="green",shape="box"];3283[label="vyw43001",fontsize=16,color="green",shape="box"];3284[label="vyw44001",fontsize=16,color="green",shape="box"];3285[label="vyw43001",fontsize=16,color="green",shape="box"];3286[label="vyw44001",fontsize=16,color="green",shape="box"];3287[label="vyw43001",fontsize=16,color="green",shape="box"];3288[label="vyw44001",fontsize=16,color="green",shape="box"];3289[label="vyw43001",fontsize=16,color="green",shape="box"];3290[label="vyw44001",fontsize=16,color="green",shape="box"];3291[label="vyw43001",fontsize=16,color="green",shape="box"];3292[label="vyw44001",fontsize=16,color="green",shape="box"];3293[label="vyw43001",fontsize=16,color="green",shape="box"];3294[label="vyw44001",fontsize=16,color="green",shape="box"];3295[label="EQ",fontsize=16,color="green",shape="box"];3297 -> 2829[label="",style="dashed", color="red", weight=0]; 3297[label="primMulNat vyw30100 (Succ vyw400000)",fontsize=16,color="magenta"];3297 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3297 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3296[label="primPlusNat vyw152 (Succ vyw400000)",fontsize=16,color="burlywood",shape="triangle"];4326[label="vyw152/Succ vyw1520",fontsize=10,color="white",style="solid",shape="box"];3296 -> 4326[label="",style="solid", color="burlywood", weight=9]; 4326 -> 3397[label="",style="solid", color="burlywood", weight=3]; 4327[label="vyw152/Zero",fontsize=10,color="white",style="solid",shape="box"];3296 -> 4327[label="",style="solid", color="burlywood", weight=9]; 4327 -> 3398[label="",style="solid", color="burlywood", weight=3]; 3298[label="vyw43000",fontsize=16,color="green",shape="box"];3299[label="vyw44000",fontsize=16,color="green",shape="box"];3300[label="primCmpNat vyw43000 vyw44000",fontsize=16,color="burlywood",shape="triangle"];4328[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4328[label="",style="solid", color="burlywood", weight=9]; 4328 -> 3399[label="",style="solid", color="burlywood", weight=3]; 4329[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3300 -> 4329[label="",style="solid", color="burlywood", weight=9]; 4329 -> 3400[label="",style="solid", color="burlywood", weight=3]; 3301[label="primCmpInt (Pos (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3301 -> 3401[label="",style="solid", color="black", weight=3]; 3302[label="primCmpInt (Pos (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3302 -> 3402[label="",style="solid", color="black", weight=3]; 3303[label="primCmpInt (Pos Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4330[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4330[label="",style="solid", color="burlywood", weight=9]; 4330 -> 3403[label="",style="solid", color="burlywood", weight=3]; 4331[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3303 -> 4331[label="",style="solid", color="burlywood", weight=9]; 4331 -> 3404[label="",style="solid", color="burlywood", weight=3]; 3304[label="primCmpInt (Pos Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4332[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3304 -> 4332[label="",style="solid", color="burlywood", weight=9]; 4332 -> 3405[label="",style="solid", color="burlywood", weight=3]; 4333[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3304 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 3406[label="",style="solid", color="burlywood", weight=3]; 3305[label="primCmpInt (Neg (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3305 -> 3407[label="",style="solid", color="black", weight=3]; 3306[label="primCmpInt (Neg (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3306 -> 3408[label="",style="solid", color="black", weight=3]; 3307[label="primCmpInt (Neg Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4334[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3307 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 3409[label="",style="solid", color="burlywood", weight=3]; 4335[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3307 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 3410[label="",style="solid", color="burlywood", weight=3]; 3308[label="primCmpInt (Neg Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4336[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3308 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 3411[label="",style="solid", color="burlywood", weight=3]; 4337[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3308 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 3412[label="",style="solid", color="burlywood", weight=3]; 3309[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4338[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3309 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 3413[label="",style="solid", color="burlywood", weight=3]; 4339[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3309 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 3414[label="",style="solid", color="burlywood", weight=3]; 3310[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4340[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3310 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 3415[label="",style="solid", color="burlywood", weight=3]; 4341[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3310 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 3416[label="",style="solid", color="burlywood", weight=3]; 3311 -> 2848[label="",style="dashed", color="red", weight=0]; 3311[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3311 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3311 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3312 -> 2854[label="",style="dashed", color="red", weight=0]; 3312[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3312 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3313[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4342[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3313 -> 4342[label="",style="solid", color="burlywood", weight=9]; 4342 -> 3421[label="",style="solid", color="burlywood", weight=3]; 4343[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3313 -> 4343[label="",style="solid", color="burlywood", weight=9]; 4343 -> 3422[label="",style="solid", color="burlywood", weight=3]; 3314[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4344[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4344[label="",style="solid", color="burlywood", weight=9]; 4344 -> 3423[label="",style="solid", color="burlywood", weight=3]; 4345[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3314 -> 4345[label="",style="solid", color="burlywood", weight=9]; 4345 -> 3424[label="",style="solid", color="burlywood", weight=3]; 3316 -> 2862[label="",style="dashed", color="red", weight=0]; 3316[label="compare vyw43001 vyw44001",fontsize=16,color="magenta"];3316 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3316 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3315[label="primCompAux vyw43000 vyw44000 vyw153",fontsize=16,color="black",shape="triangle"];3315 -> 3427[label="",style="solid", color="black", weight=3]; 3317[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3317 -> 3428[label="",style="solid", color="black", weight=3]; 3318[label="vyw43000",fontsize=16,color="green",shape="box"];3319[label="vyw44000",fontsize=16,color="green",shape="box"];3320[label="vyw43000",fontsize=16,color="green",shape="box"];3321[label="vyw44000",fontsize=16,color="green",shape="box"];3322[label="vyw43000",fontsize=16,color="green",shape="box"];3323[label="vyw44000",fontsize=16,color="green",shape="box"];3324[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3324 -> 3429[label="",style="solid", color="black", weight=3]; 3325[label="vyw43000",fontsize=16,color="green",shape="box"];3326[label="vyw44000",fontsize=16,color="green",shape="box"];3327[label="vyw43000",fontsize=16,color="green",shape="box"];3328[label="vyw44000",fontsize=16,color="green",shape="box"];3329[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3329 -> 3430[label="",style="solid", color="black", weight=3]; 3330[label="vyw43000",fontsize=16,color="green",shape="box"];3331[label="vyw44000",fontsize=16,color="green",shape="box"];3332[label="vyw43000",fontsize=16,color="green",shape="box"];3333[label="vyw44000",fontsize=16,color="green",shape="box"];3334[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3334 -> 3431[label="",style="solid", color="black", weight=3]; 3335[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3335 -> 3432[label="",style="solid", color="black", weight=3]; 3336[label="vyw43000",fontsize=16,color="green",shape="box"];3337[label="vyw44000",fontsize=16,color="green",shape="box"];3338[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3338 -> 3433[label="",style="solid", color="black", weight=3]; 3339[label="vyw44001",fontsize=16,color="green",shape="box"];3340[label="vyw43001",fontsize=16,color="green",shape="box"];3341[label="vyw44001",fontsize=16,color="green",shape="box"];3342[label="vyw43001",fontsize=16,color="green",shape="box"];3343[label="vyw44001",fontsize=16,color="green",shape="box"];3344[label="vyw43001",fontsize=16,color="green",shape="box"];3345[label="vyw44001",fontsize=16,color="green",shape="box"];3346[label="vyw43001",fontsize=16,color="green",shape="box"];3347[label="vyw44001",fontsize=16,color="green",shape="box"];3348[label="vyw43001",fontsize=16,color="green",shape="box"];3349[label="vyw44001",fontsize=16,color="green",shape="box"];3350[label="vyw43001",fontsize=16,color="green",shape="box"];3351[label="vyw44001",fontsize=16,color="green",shape="box"];3352[label="vyw43001",fontsize=16,color="green",shape="box"];3353[label="vyw44001",fontsize=16,color="green",shape="box"];3354[label="vyw43001",fontsize=16,color="green",shape="box"];3355[label="vyw44001",fontsize=16,color="green",shape="box"];3356[label="vyw43001",fontsize=16,color="green",shape="box"];3357[label="vyw44001",fontsize=16,color="green",shape="box"];3358[label="vyw43001",fontsize=16,color="green",shape="box"];3359[label="vyw44001",fontsize=16,color="green",shape="box"];3360[label="vyw43001",fontsize=16,color="green",shape="box"];3361[label="vyw44001",fontsize=16,color="green",shape="box"];3362[label="vyw43001",fontsize=16,color="green",shape="box"];3363[label="vyw44001",fontsize=16,color="green",shape="box"];3364[label="vyw43001",fontsize=16,color="green",shape="box"];3365[label="vyw44001",fontsize=16,color="green",shape="box"];3366[label="vyw43001",fontsize=16,color="green",shape="box"];3367 -> 1925[label="",style="dashed", color="red", weight=0]; 3367[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3367 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3367 -> 3435[label="",style="dashed", color="magenta", weight=3]; 3368 -> 1927[label="",style="dashed", color="red", weight=0]; 3368[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3368 -> 3436[label="",style="dashed", color="magenta", weight=3]; 3368 -> 3437[label="",style="dashed", color="magenta", weight=3]; 3369 -> 1924[label="",style="dashed", color="red", weight=0]; 3369[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3369 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3369 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3370 -> 1932[label="",style="dashed", color="red", weight=0]; 3370[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3370 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3370 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3371 -> 1935[label="",style="dashed", color="red", weight=0]; 3371[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3371 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3371 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3372 -> 1934[label="",style="dashed", color="red", weight=0]; 3372[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3372 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3372 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3373 -> 1933[label="",style="dashed", color="red", weight=0]; 3373[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3373 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3373 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3374 -> 1923[label="",style="dashed", color="red", weight=0]; 3374[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3374 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3374 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3375 -> 1922[label="",style="dashed", color="red", weight=0]; 3375[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3375 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3375 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3376 -> 1931[label="",style="dashed", color="red", weight=0]; 3376[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3376 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3376 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3377 -> 1926[label="",style="dashed", color="red", weight=0]; 3377[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3377 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3377 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3378 -> 1928[label="",style="dashed", color="red", weight=0]; 3378[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3378 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3378 -> 3457[label="",style="dashed", color="magenta", weight=3]; 3379 -> 1929[label="",style="dashed", color="red", weight=0]; 3379[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3379 -> 3458[label="",style="dashed", color="magenta", weight=3]; 3379 -> 3459[label="",style="dashed", color="magenta", weight=3]; 3380 -> 52[label="",style="dashed", color="red", weight=0]; 3380[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3380 -> 3460[label="",style="dashed", color="magenta", weight=3]; 3380 -> 3461[label="",style="dashed", color="magenta", weight=3]; 3381 -> 2601[label="",style="dashed", color="red", weight=0]; 3381[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3381 -> 3462[label="",style="dashed", color="magenta", weight=3]; 3381 -> 3463[label="",style="dashed", color="magenta", weight=3]; 3382 -> 2602[label="",style="dashed", color="red", weight=0]; 3382[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3382 -> 3464[label="",style="dashed", color="magenta", weight=3]; 3382 -> 3465[label="",style="dashed", color="magenta", weight=3]; 3383 -> 2603[label="",style="dashed", color="red", weight=0]; 3383[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3383 -> 3466[label="",style="dashed", color="magenta", weight=3]; 3383 -> 3467[label="",style="dashed", color="magenta", weight=3]; 3384 -> 2604[label="",style="dashed", color="red", weight=0]; 3384[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3384 -> 3468[label="",style="dashed", color="magenta", weight=3]; 3384 -> 3469[label="",style="dashed", color="magenta", weight=3]; 3385 -> 2605[label="",style="dashed", color="red", weight=0]; 3385[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3385 -> 3470[label="",style="dashed", color="magenta", weight=3]; 3385 -> 3471[label="",style="dashed", color="magenta", weight=3]; 3386 -> 2606[label="",style="dashed", color="red", weight=0]; 3386[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3386 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3386 -> 3473[label="",style="dashed", color="magenta", weight=3]; 3387 -> 2607[label="",style="dashed", color="red", weight=0]; 3387[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3387 -> 3474[label="",style="dashed", color="magenta", weight=3]; 3387 -> 3475[label="",style="dashed", color="magenta", weight=3]; 3388 -> 2608[label="",style="dashed", color="red", weight=0]; 3388[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3388 -> 3476[label="",style="dashed", color="magenta", weight=3]; 3388 -> 3477[label="",style="dashed", color="magenta", weight=3]; 3389 -> 2609[label="",style="dashed", color="red", weight=0]; 3389[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3389 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3389 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3390 -> 2610[label="",style="dashed", color="red", weight=0]; 3390[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3390 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3390 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3391 -> 2611[label="",style="dashed", color="red", weight=0]; 3391[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3391 -> 3482[label="",style="dashed", color="magenta", weight=3]; 3391 -> 3483[label="",style="dashed", color="magenta", weight=3]; 3392 -> 2612[label="",style="dashed", color="red", weight=0]; 3392[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3392 -> 3484[label="",style="dashed", color="magenta", weight=3]; 3392 -> 3485[label="",style="dashed", color="magenta", weight=3]; 3393 -> 2613[label="",style="dashed", color="red", weight=0]; 3393[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3393 -> 3486[label="",style="dashed", color="magenta", weight=3]; 3393 -> 3487[label="",style="dashed", color="magenta", weight=3]; 3394 -> 2614[label="",style="dashed", color="red", weight=0]; 3394[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3394 -> 3488[label="",style="dashed", color="magenta", weight=3]; 3394 -> 3489[label="",style="dashed", color="magenta", weight=3]; 3395[label="vyw30100",fontsize=16,color="green",shape="box"];3396[label="Succ vyw400000",fontsize=16,color="green",shape="box"];3397[label="primPlusNat (Succ vyw1520) (Succ vyw400000)",fontsize=16,color="black",shape="box"];3397 -> 3490[label="",style="solid", color="black", weight=3]; 3398[label="primPlusNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];3398 -> 3491[label="",style="solid", color="black", weight=3]; 3399[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="burlywood",shape="box"];4346[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3399 -> 4346[label="",style="solid", color="burlywood", weight=9]; 4346 -> 3492[label="",style="solid", color="burlywood", weight=3]; 4347[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3399 -> 4347[label="",style="solid", color="burlywood", weight=9]; 4347 -> 3493[label="",style="solid", color="burlywood", weight=3]; 3400[label="primCmpNat Zero vyw44000",fontsize=16,color="burlywood",shape="box"];4348[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3400 -> 4348[label="",style="solid", color="burlywood", weight=9]; 4348 -> 3494[label="",style="solid", color="burlywood", weight=3]; 4349[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3400 -> 4349[label="",style="solid", color="burlywood", weight=9]; 4349 -> 3495[label="",style="solid", color="burlywood", weight=3]; 3401 -> 3300[label="",style="dashed", color="red", weight=0]; 3401[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="magenta"];3401 -> 3496[label="",style="dashed", color="magenta", weight=3]; 3401 -> 3497[label="",style="dashed", color="magenta", weight=3]; 3402[label="GT",fontsize=16,color="green",shape="box"];3403[label="primCmpInt (Pos Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3403 -> 3498[label="",style="solid", color="black", weight=3]; 3404[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3404 -> 3499[label="",style="solid", color="black", weight=3]; 3405[label="primCmpInt (Pos Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3405 -> 3500[label="",style="solid", color="black", weight=3]; 3406[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3406 -> 3501[label="",style="solid", color="black", weight=3]; 3407[label="LT",fontsize=16,color="green",shape="box"];3408 -> 3300[label="",style="dashed", color="red", weight=0]; 3408[label="primCmpNat vyw44000 (Succ vyw430000)",fontsize=16,color="magenta"];3408 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3408 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3409[label="primCmpInt (Neg Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3409 -> 3504[label="",style="solid", color="black", weight=3]; 3410[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3410 -> 3505[label="",style="solid", color="black", weight=3]; 3411[label="primCmpInt (Neg Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3411 -> 3506[label="",style="solid", color="black", weight=3]; 3412[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3412 -> 3507[label="",style="solid", color="black", weight=3]; 3413[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3413 -> 3508[label="",style="solid", color="black", weight=3]; 3414[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3414 -> 3509[label="",style="solid", color="black", weight=3]; 3415[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3415 -> 3510[label="",style="solid", color="black", weight=3]; 3416[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3416 -> 3511[label="",style="solid", color="black", weight=3]; 3417[label="vyw43000 * vyw44001",fontsize=16,color="burlywood",shape="triangle"];4350[label="vyw43000/Integer vyw430000",fontsize=10,color="white",style="solid",shape="box"];3417 -> 4350[label="",style="solid", color="burlywood", weight=9]; 4350 -> 3512[label="",style="solid", color="burlywood", weight=3]; 3418 -> 3417[label="",style="dashed", color="red", weight=0]; 3418[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3418 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3418 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3419 -> 2222[label="",style="dashed", color="red", weight=0]; 3419[label="vyw43000 * vyw44001",fontsize=16,color="magenta"];3419 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3419 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3420 -> 2222[label="",style="dashed", color="red", weight=0]; 3420[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3420 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3420 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3421[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3421 -> 3519[label="",style="solid", color="black", weight=3]; 3422[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3422 -> 3520[label="",style="solid", color="black", weight=3]; 3423[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3423 -> 3521[label="",style="solid", color="black", weight=3]; 3424[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3424 -> 3522[label="",style="solid", color="black", weight=3]; 3425[label="vyw43001",fontsize=16,color="green",shape="box"];3426[label="vyw44001",fontsize=16,color="green",shape="box"];3427 -> 3523[label="",style="dashed", color="red", weight=0]; 3427[label="primCompAux0 vyw153 (compare vyw43000 vyw44000)",fontsize=16,color="magenta"];3427 -> 3524[label="",style="dashed", color="magenta", weight=3]; 3427 -> 3525[label="",style="dashed", color="magenta", weight=3]; 3428 -> 3526[label="",style="dashed", color="red", weight=0]; 3428[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3428 -> 3527[label="",style="dashed", color="magenta", weight=3]; 3429 -> 1884[label="",style="dashed", color="red", weight=0]; 3429[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3429 -> 3528[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3529[label="",style="dashed", color="magenta", weight=3]; 3429 -> 3530[label="",style="dashed", color="magenta", weight=3]; 3430 -> 3531[label="",style="dashed", color="red", weight=0]; 3430[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3430 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3431 -> 3533[label="",style="dashed", color="red", weight=0]; 3431[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3431 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3535[label="",style="dashed", color="red", weight=0]; 3432[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3432 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3433 -> 3537[label="",style="dashed", color="red", weight=0]; 3433[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3433 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3434[label="vyw44001",fontsize=16,color="green",shape="box"];3435[label="vyw43001",fontsize=16,color="green",shape="box"];3436[label="vyw44001",fontsize=16,color="green",shape="box"];3437[label="vyw43001",fontsize=16,color="green",shape="box"];3438[label="vyw44001",fontsize=16,color="green",shape="box"];3439[label="vyw43001",fontsize=16,color="green",shape="box"];3440[label="vyw44001",fontsize=16,color="green",shape="box"];3441[label="vyw43001",fontsize=16,color="green",shape="box"];3442[label="vyw44001",fontsize=16,color="green",shape="box"];3443[label="vyw43001",fontsize=16,color="green",shape="box"];3444[label="vyw44001",fontsize=16,color="green",shape="box"];3445[label="vyw43001",fontsize=16,color="green",shape="box"];3446[label="vyw44001",fontsize=16,color="green",shape="box"];3447[label="vyw43001",fontsize=16,color="green",shape="box"];3448[label="vyw44001",fontsize=16,color="green",shape="box"];3449[label="vyw43001",fontsize=16,color="green",shape="box"];3450[label="vyw44001",fontsize=16,color="green",shape="box"];3451[label="vyw43001",fontsize=16,color="green",shape="box"];3452[label="vyw44001",fontsize=16,color="green",shape="box"];3453[label="vyw43001",fontsize=16,color="green",shape="box"];3454[label="vyw44001",fontsize=16,color="green",shape="box"];3455[label="vyw43001",fontsize=16,color="green",shape="box"];3456[label="vyw44001",fontsize=16,color="green",shape="box"];3457[label="vyw43001",fontsize=16,color="green",shape="box"];3458[label="vyw44001",fontsize=16,color="green",shape="box"];3459[label="vyw43001",fontsize=16,color="green",shape="box"];3460[label="vyw44001",fontsize=16,color="green",shape="box"];3461[label="vyw43001",fontsize=16,color="green",shape="box"];3462[label="vyw43002",fontsize=16,color="green",shape="box"];3463[label="vyw44002",fontsize=16,color="green",shape="box"];3464[label="vyw43002",fontsize=16,color="green",shape="box"];3465[label="vyw44002",fontsize=16,color="green",shape="box"];3466[label="vyw43002",fontsize=16,color="green",shape="box"];3467[label="vyw44002",fontsize=16,color="green",shape="box"];3468[label="vyw43002",fontsize=16,color="green",shape="box"];3469[label="vyw44002",fontsize=16,color="green",shape="box"];3470[label="vyw43002",fontsize=16,color="green",shape="box"];3471[label="vyw44002",fontsize=16,color="green",shape="box"];3472[label="vyw43002",fontsize=16,color="green",shape="box"];3473[label="vyw44002",fontsize=16,color="green",shape="box"];3474[label="vyw43002",fontsize=16,color="green",shape="box"];3475[label="vyw44002",fontsize=16,color="green",shape="box"];3476[label="vyw43002",fontsize=16,color="green",shape="box"];3477[label="vyw44002",fontsize=16,color="green",shape="box"];3478[label="vyw43002",fontsize=16,color="green",shape="box"];3479[label="vyw44002",fontsize=16,color="green",shape="box"];3480[label="vyw43002",fontsize=16,color="green",shape="box"];3481[label="vyw44002",fontsize=16,color="green",shape="box"];3482[label="vyw43002",fontsize=16,color="green",shape="box"];3483[label="vyw44002",fontsize=16,color="green",shape="box"];3484[label="vyw43002",fontsize=16,color="green",shape="box"];3485[label="vyw44002",fontsize=16,color="green",shape="box"];3486[label="vyw43002",fontsize=16,color="green",shape="box"];3487[label="vyw44002",fontsize=16,color="green",shape="box"];3488[label="vyw43002",fontsize=16,color="green",shape="box"];3489[label="vyw44002",fontsize=16,color="green",shape="box"];3490[label="Succ (Succ (primPlusNat vyw1520 vyw400000))",fontsize=16,color="green",shape="box"];3490 -> 3539[label="",style="dashed", color="green", weight=3]; 3491[label="Succ vyw400000",fontsize=16,color="green",shape="box"];3492[label="primCmpNat (Succ vyw430000) (Succ vyw440000)",fontsize=16,color="black",shape="box"];3492 -> 3540[label="",style="solid", color="black", weight=3]; 3493[label="primCmpNat (Succ vyw430000) Zero",fontsize=16,color="black",shape="box"];3493 -> 3541[label="",style="solid", color="black", weight=3]; 3494[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="black",shape="box"];3494 -> 3542[label="",style="solid", color="black", weight=3]; 3495[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3495 -> 3543[label="",style="solid", color="black", weight=3]; 3496[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3497[label="vyw44000",fontsize=16,color="green",shape="box"];3498 -> 3300[label="",style="dashed", color="red", weight=0]; 3498[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="magenta"];3498 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3498 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3499[label="EQ",fontsize=16,color="green",shape="box"];3500[label="GT",fontsize=16,color="green",shape="box"];3501[label="EQ",fontsize=16,color="green",shape="box"];3502[label="vyw44000",fontsize=16,color="green",shape="box"];3503[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3504[label="LT",fontsize=16,color="green",shape="box"];3505[label="EQ",fontsize=16,color="green",shape="box"];3506 -> 3300[label="",style="dashed", color="red", weight=0]; 3506[label="primCmpNat (Succ vyw440000) Zero",fontsize=16,color="magenta"];3506 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3506 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3507[label="EQ",fontsize=16,color="green",shape="box"];3508 -> 2854[label="",style="dashed", color="red", weight=0]; 3508[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3508 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3508 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3509 -> 2854[label="",style="dashed", color="red", weight=0]; 3509[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3509 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3509 -> 3551[label="",style="dashed", color="magenta", weight=3]; 3510 -> 2854[label="",style="dashed", color="red", weight=0]; 3510[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3510 -> 3552[label="",style="dashed", color="magenta", weight=3]; 3510 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3511 -> 2854[label="",style="dashed", color="red", weight=0]; 3511[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3511 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3511 -> 3555[label="",style="dashed", color="magenta", weight=3]; 3512[label="Integer vyw430000 * vyw44001",fontsize=16,color="burlywood",shape="box"];4351[label="vyw44001/Integer vyw440010",fontsize=10,color="white",style="solid",shape="box"];3512 -> 4351[label="",style="solid", color="burlywood", weight=9]; 4351 -> 3556[label="",style="solid", color="burlywood", weight=3]; 3513[label="vyw43001",fontsize=16,color="green",shape="box"];3514[label="vyw44000",fontsize=16,color="green",shape="box"];3515[label="vyw43000",fontsize=16,color="green",shape="box"];3516[label="vyw44001",fontsize=16,color="green",shape="box"];3517[label="vyw44000",fontsize=16,color="green",shape="box"];3518[label="vyw43001",fontsize=16,color="green",shape="box"];3519 -> 2854[label="",style="dashed", color="red", weight=0]; 3519[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3519 -> 3557[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3558[label="",style="dashed", color="magenta", weight=3]; 3520 -> 2854[label="",style="dashed", color="red", weight=0]; 3520[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3520 -> 3559[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3560[label="",style="dashed", color="magenta", weight=3]; 3521 -> 2854[label="",style="dashed", color="red", weight=0]; 3521[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3521 -> 3561[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3522 -> 2854[label="",style="dashed", color="red", weight=0]; 3522[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3522 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3524[label="vyw153",fontsize=16,color="green",shape="box"];3525[label="compare vyw43000 vyw44000",fontsize=16,color="blue",shape="box"];4352[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4352[label="",style="solid", color="blue", weight=9]; 4352 -> 3565[label="",style="solid", color="blue", weight=3]; 4353[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4353[label="",style="solid", color="blue", weight=9]; 4353 -> 3566[label="",style="solid", color="blue", weight=3]; 4354[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4354[label="",style="solid", color="blue", weight=9]; 4354 -> 3567[label="",style="solid", color="blue", weight=3]; 4355[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4355[label="",style="solid", color="blue", weight=9]; 4355 -> 3568[label="",style="solid", color="blue", weight=3]; 4356[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4356[label="",style="solid", color="blue", weight=9]; 4356 -> 3569[label="",style="solid", color="blue", weight=3]; 4357[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4357[label="",style="solid", color="blue", weight=9]; 4357 -> 3570[label="",style="solid", color="blue", weight=3]; 4358[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4358[label="",style="solid", color="blue", weight=9]; 4358 -> 3571[label="",style="solid", color="blue", weight=3]; 4359[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4359[label="",style="solid", color="blue", weight=9]; 4359 -> 3572[label="",style="solid", color="blue", weight=3]; 4360[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4360[label="",style="solid", color="blue", weight=9]; 4360 -> 3573[label="",style="solid", color="blue", weight=3]; 4361[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4361[label="",style="solid", color="blue", weight=9]; 4361 -> 3574[label="",style="solid", color="blue", weight=3]; 4362[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4362[label="",style="solid", color="blue", weight=9]; 4362 -> 3575[label="",style="solid", color="blue", weight=3]; 4363[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4363[label="",style="solid", color="blue", weight=9]; 4363 -> 3576[label="",style="solid", color="blue", weight=3]; 4364[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4364[label="",style="solid", color="blue", weight=9]; 4364 -> 3577[label="",style="solid", color="blue", weight=3]; 4365[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3525 -> 4365[label="",style="solid", color="blue", weight=9]; 4365 -> 3578[label="",style="solid", color="blue", weight=3]; 3523[label="primCompAux0 vyw157 vyw158",fontsize=16,color="burlywood",shape="triangle"];4366[label="vyw158/LT",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4366[label="",style="solid", color="burlywood", weight=9]; 4366 -> 3579[label="",style="solid", color="burlywood", weight=3]; 4367[label="vyw158/EQ",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4367[label="",style="solid", color="burlywood", weight=9]; 4367 -> 3580[label="",style="solid", color="burlywood", weight=3]; 4368[label="vyw158/GT",fontsize=10,color="white",style="solid",shape="box"];3523 -> 4368[label="",style="solid", color="burlywood", weight=9]; 4368 -> 3581[label="",style="solid", color="burlywood", weight=3]; 3527 -> 1925[label="",style="dashed", color="red", weight=0]; 3527[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3527 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3527 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3526[label="compare2 vyw43000 vyw44000 vyw159",fontsize=16,color="burlywood",shape="triangle"];4369[label="vyw159/False",fontsize=10,color="white",style="solid",shape="box"];3526 -> 4369[label="",style="solid", color="burlywood", weight=9]; 4369 -> 3584[label="",style="solid", color="burlywood", weight=3]; 4370[label="vyw159/True",fontsize=10,color="white",style="solid",shape="box"];3526 -> 4370[label="",style="solid", color="burlywood", weight=9]; 4370 -> 3585[label="",style="solid", color="burlywood", weight=3]; 3528[label="vyw44000",fontsize=16,color="green",shape="box"];3529 -> 1935[label="",style="dashed", color="red", weight=0]; 3529[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3529 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3530[label="vyw43000",fontsize=16,color="green",shape="box"];3532 -> 1923[label="",style="dashed", color="red", weight=0]; 3532[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3532 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3532 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3531[label="compare2 vyw43000 vyw44000 vyw160",fontsize=16,color="burlywood",shape="triangle"];4371[label="vyw160/False",fontsize=10,color="white",style="solid",shape="box"];3531 -> 4371[label="",style="solid", color="burlywood", weight=9]; 4371 -> 3590[label="",style="solid", color="burlywood", weight=3]; 4372[label="vyw160/True",fontsize=10,color="white",style="solid",shape="box"];3531 -> 4372[label="",style="solid", color="burlywood", weight=9]; 4372 -> 3591[label="",style="solid", color="burlywood", weight=3]; 3534 -> 1926[label="",style="dashed", color="red", weight=0]; 3534[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3534 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3533[label="compare2 vyw43000 vyw44000 vyw161",fontsize=16,color="burlywood",shape="triangle"];4373[label="vyw161/False",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4373[label="",style="solid", color="burlywood", weight=9]; 4373 -> 3594[label="",style="solid", color="burlywood", weight=3]; 4374[label="vyw161/True",fontsize=10,color="white",style="solid",shape="box"];3533 -> 4374[label="",style="solid", color="burlywood", weight=9]; 4374 -> 3595[label="",style="solid", color="burlywood", weight=3]; 3536 -> 1928[label="",style="dashed", color="red", weight=0]; 3536[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3536 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3536 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3535[label="compare2 vyw43000 vyw44000 vyw162",fontsize=16,color="burlywood",shape="triangle"];4375[label="vyw162/False",fontsize=10,color="white",style="solid",shape="box"];3535 -> 4375[label="",style="solid", color="burlywood", weight=9]; 4375 -> 3598[label="",style="solid", color="burlywood", weight=3]; 4376[label="vyw162/True",fontsize=10,color="white",style="solid",shape="box"];3535 -> 4376[label="",style="solid", color="burlywood", weight=9]; 4376 -> 3599[label="",style="solid", color="burlywood", weight=3]; 3538 -> 52[label="",style="dashed", color="red", weight=0]; 3538[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3538 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3538 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3537[label="compare2 vyw43000 vyw44000 vyw163",fontsize=16,color="burlywood",shape="triangle"];4377[label="vyw163/False",fontsize=10,color="white",style="solid",shape="box"];3537 -> 4377[label="",style="solid", color="burlywood", weight=9]; 4377 -> 3602[label="",style="solid", color="burlywood", weight=3]; 4378[label="vyw163/True",fontsize=10,color="white",style="solid",shape="box"];3537 -> 4378[label="",style="solid", color="burlywood", weight=9]; 4378 -> 3603[label="",style="solid", color="burlywood", weight=3]; 3539[label="primPlusNat vyw1520 vyw400000",fontsize=16,color="burlywood",shape="triangle"];4379[label="vyw1520/Succ vyw15200",fontsize=10,color="white",style="solid",shape="box"];3539 -> 4379[label="",style="solid", color="burlywood", weight=9]; 4379 -> 3604[label="",style="solid", color="burlywood", weight=3]; 4380[label="vyw1520/Zero",fontsize=10,color="white",style="solid",shape="box"];3539 -> 4380[label="",style="solid", color="burlywood", weight=9]; 4380 -> 3605[label="",style="solid", color="burlywood", weight=3]; 3540 -> 3300[label="",style="dashed", color="red", weight=0]; 3540[label="primCmpNat vyw430000 vyw440000",fontsize=16,color="magenta"];3540 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3541[label="GT",fontsize=16,color="green",shape="box"];3542[label="LT",fontsize=16,color="green",shape="box"];3543[label="EQ",fontsize=16,color="green",shape="box"];3544[label="Zero",fontsize=16,color="green",shape="box"];3545[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3546[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3547[label="Zero",fontsize=16,color="green",shape="box"];3548 -> 2222[label="",style="dashed", color="red", weight=0]; 3548[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3548 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3548 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3549 -> 2222[label="",style="dashed", color="red", weight=0]; 3549[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3549 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3549 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3550 -> 2222[label="",style="dashed", color="red", weight=0]; 3550[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3550 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3550 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3551 -> 2222[label="",style="dashed", color="red", weight=0]; 3551[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3551 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3551 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3552 -> 2222[label="",style="dashed", color="red", weight=0]; 3552[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3552 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3552 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3553 -> 2222[label="",style="dashed", color="red", weight=0]; 3553[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3553 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3553 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3554 -> 2222[label="",style="dashed", color="red", weight=0]; 3554[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3554 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3554 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3555 -> 2222[label="",style="dashed", color="red", weight=0]; 3555[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3555 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3555 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3556[label="Integer vyw430000 * Integer vyw440010",fontsize=16,color="black",shape="box"];3556 -> 3624[label="",style="solid", color="black", weight=3]; 3557 -> 2222[label="",style="dashed", color="red", weight=0]; 3557[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3557 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3557 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3558 -> 2222[label="",style="dashed", color="red", weight=0]; 3558[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3558 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3558 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3559 -> 2222[label="",style="dashed", color="red", weight=0]; 3559[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3559 -> 3629[label="",style="dashed", color="magenta", weight=3]; 3559 -> 3630[label="",style="dashed", color="magenta", weight=3]; 3560 -> 2222[label="",style="dashed", color="red", weight=0]; 3560[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3560 -> 3631[label="",style="dashed", color="magenta", weight=3]; 3560 -> 3632[label="",style="dashed", color="magenta", weight=3]; 3561 -> 2222[label="",style="dashed", color="red", weight=0]; 3561[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3561 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3561 -> 3634[label="",style="dashed", color="magenta", weight=3]; 3562 -> 2222[label="",style="dashed", color="red", weight=0]; 3562[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3562 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3562 -> 3636[label="",style="dashed", color="magenta", weight=3]; 3563 -> 2222[label="",style="dashed", color="red", weight=0]; 3563[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3563 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3563 -> 3638[label="",style="dashed", color="magenta", weight=3]; 3564 -> 2222[label="",style="dashed", color="red", weight=0]; 3564[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3564 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3564 -> 3640[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3168[label="",style="dashed", color="red", weight=0]; 3565[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3565 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3565 -> 3642[label="",style="dashed", color="magenta", weight=3]; 3566 -> 2848[label="",style="dashed", color="red", weight=0]; 3566[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3566 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3566 -> 3644[label="",style="dashed", color="magenta", weight=3]; 3567 -> 2852[label="",style="dashed", color="red", weight=0]; 3567[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3567 -> 3645[label="",style="dashed", color="magenta", weight=3]; 3567 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3568 -> 2854[label="",style="dashed", color="red", weight=0]; 3568[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3568 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3568 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3176[label="",style="dashed", color="red", weight=0]; 3569[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3569 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3569 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3570 -> 2856[label="",style="dashed", color="red", weight=0]; 3570[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3570 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3570 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3571 -> 2858[label="",style="dashed", color="red", weight=0]; 3571[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3571 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3571 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3182[label="",style="dashed", color="red", weight=0]; 3572[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3572 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3572 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3573 -> 2860[label="",style="dashed", color="red", weight=0]; 3573[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3573 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3573 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3574 -> 2862[label="",style="dashed", color="red", weight=0]; 3574[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3574 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3574 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3188[label="",style="dashed", color="red", weight=0]; 3575[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3575 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3575 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3190[label="",style="dashed", color="red", weight=0]; 3576[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3576 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3576 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3577 -> 2864[label="",style="dashed", color="red", weight=0]; 3577[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3577 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3577 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3194[label="",style="dashed", color="red", weight=0]; 3578[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3578 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3578 -> 3668[label="",style="dashed", color="magenta", weight=3]; 3579[label="primCompAux0 vyw157 LT",fontsize=16,color="black",shape="box"];3579 -> 3669[label="",style="solid", color="black", weight=3]; 3580[label="primCompAux0 vyw157 EQ",fontsize=16,color="black",shape="box"];3580 -> 3670[label="",style="solid", color="black", weight=3]; 3581[label="primCompAux0 vyw157 GT",fontsize=16,color="black",shape="box"];3581 -> 3671[label="",style="solid", color="black", weight=3]; 3582[label="vyw44000",fontsize=16,color="green",shape="box"];3583[label="vyw43000",fontsize=16,color="green",shape="box"];3584[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3584 -> 3672[label="",style="solid", color="black", weight=3]; 3585[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3585 -> 3673[label="",style="solid", color="black", weight=3]; 3586[label="vyw44000",fontsize=16,color="green",shape="box"];3587[label="vyw43000",fontsize=16,color="green",shape="box"];3588[label="vyw44000",fontsize=16,color="green",shape="box"];3589[label="vyw43000",fontsize=16,color="green",shape="box"];3590[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3590 -> 3674[label="",style="solid", color="black", weight=3]; 3591[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3591 -> 3675[label="",style="solid", color="black", weight=3]; 3592[label="vyw44000",fontsize=16,color="green",shape="box"];3593[label="vyw43000",fontsize=16,color="green",shape="box"];3594[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3594 -> 3676[label="",style="solid", color="black", weight=3]; 3595[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3595 -> 3677[label="",style="solid", color="black", weight=3]; 3596[label="vyw44000",fontsize=16,color="green",shape="box"];3597[label="vyw43000",fontsize=16,color="green",shape="box"];3598[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3598 -> 3678[label="",style="solid", color="black", weight=3]; 3599[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3599 -> 3679[label="",style="solid", color="black", weight=3]; 3600[label="vyw44000",fontsize=16,color="green",shape="box"];3601[label="vyw43000",fontsize=16,color="green",shape="box"];3602[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3602 -> 3680[label="",style="solid", color="black", weight=3]; 3603[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3603 -> 3681[label="",style="solid", color="black", weight=3]; 3604[label="primPlusNat (Succ vyw15200) vyw400000",fontsize=16,color="burlywood",shape="box"];4381[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];3604 -> 4381[label="",style="solid", color="burlywood", weight=9]; 4381 -> 3682[label="",style="solid", color="burlywood", weight=3]; 4382[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];3604 -> 4382[label="",style="solid", color="burlywood", weight=9]; 4382 -> 3683[label="",style="solid", color="burlywood", weight=3]; 3605[label="primPlusNat Zero vyw400000",fontsize=16,color="burlywood",shape="box"];4383[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];3605 -> 4383[label="",style="solid", color="burlywood", weight=9]; 4383 -> 3684[label="",style="solid", color="burlywood", weight=3]; 4384[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];3605 -> 4384[label="",style="solid", color="burlywood", weight=9]; 4384 -> 3685[label="",style="solid", color="burlywood", weight=3]; 3606[label="vyw430000",fontsize=16,color="green",shape="box"];3607[label="vyw440000",fontsize=16,color="green",shape="box"];3608[label="vyw43000",fontsize=16,color="green",shape="box"];3609[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3610[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3611[label="vyw44000",fontsize=16,color="green",shape="box"];3612[label="vyw43000",fontsize=16,color="green",shape="box"];3613[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3614[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3615[label="vyw44000",fontsize=16,color="green",shape="box"];3616[label="vyw43000",fontsize=16,color="green",shape="box"];3617[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3618[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3619[label="vyw44000",fontsize=16,color="green",shape="box"];3620[label="vyw43000",fontsize=16,color="green",shape="box"];3621[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3622[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3623[label="vyw44000",fontsize=16,color="green",shape="box"];3624[label="Integer (primMulInt vyw430000 vyw440010)",fontsize=16,color="green",shape="box"];3624 -> 3686[label="",style="dashed", color="green", weight=3]; 3625[label="vyw43000",fontsize=16,color="green",shape="box"];3626[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3627[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3628[label="vyw44000",fontsize=16,color="green",shape="box"];3629[label="vyw43000",fontsize=16,color="green",shape="box"];3630[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3631[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3632[label="vyw44000",fontsize=16,color="green",shape="box"];3633[label="vyw43000",fontsize=16,color="green",shape="box"];3634[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3635[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3636[label="vyw44000",fontsize=16,color="green",shape="box"];3637[label="vyw43000",fontsize=16,color="green",shape="box"];3638[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3639[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3640[label="vyw44000",fontsize=16,color="green",shape="box"];3641[label="vyw44000",fontsize=16,color="green",shape="box"];3642[label="vyw43000",fontsize=16,color="green",shape="box"];3643[label="vyw43000",fontsize=16,color="green",shape="box"];3644[label="vyw44000",fontsize=16,color="green",shape="box"];3645[label="vyw43000",fontsize=16,color="green",shape="box"];3646[label="vyw44000",fontsize=16,color="green",shape="box"];3647[label="vyw43000",fontsize=16,color="green",shape="box"];3648[label="vyw44000",fontsize=16,color="green",shape="box"];3649[label="vyw44000",fontsize=16,color="green",shape="box"];3650[label="vyw43000",fontsize=16,color="green",shape="box"];3651[label="vyw43000",fontsize=16,color="green",shape="box"];3652[label="vyw44000",fontsize=16,color="green",shape="box"];3653[label="vyw43000",fontsize=16,color="green",shape="box"];3654[label="vyw44000",fontsize=16,color="green",shape="box"];3655[label="vyw44000",fontsize=16,color="green",shape="box"];3656[label="vyw43000",fontsize=16,color="green",shape="box"];3657[label="vyw43000",fontsize=16,color="green",shape="box"];3658[label="vyw44000",fontsize=16,color="green",shape="box"];3659[label="vyw43000",fontsize=16,color="green",shape="box"];3660[label="vyw44000",fontsize=16,color="green",shape="box"];3661[label="vyw44000",fontsize=16,color="green",shape="box"];3662[label="vyw43000",fontsize=16,color="green",shape="box"];3663[label="vyw44000",fontsize=16,color="green",shape="box"];3664[label="vyw43000",fontsize=16,color="green",shape="box"];3665[label="vyw43000",fontsize=16,color="green",shape="box"];3666[label="vyw44000",fontsize=16,color="green",shape="box"];3667[label="vyw44000",fontsize=16,color="green",shape="box"];3668[label="vyw43000",fontsize=16,color="green",shape="box"];3669[label="LT",fontsize=16,color="green",shape="box"];3670[label="vyw157",fontsize=16,color="green",shape="box"];3671[label="GT",fontsize=16,color="green",shape="box"];3672 -> 3687[label="",style="dashed", color="red", weight=0]; 3672[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3672 -> 3688[label="",style="dashed", color="magenta", weight=3]; 3673[label="EQ",fontsize=16,color="green",shape="box"];3674 -> 3689[label="",style="dashed", color="red", weight=0]; 3674[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3674 -> 3690[label="",style="dashed", color="magenta", weight=3]; 3675[label="EQ",fontsize=16,color="green",shape="box"];3676 -> 3691[label="",style="dashed", color="red", weight=0]; 3676[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3676 -> 3692[label="",style="dashed", color="magenta", weight=3]; 3677[label="EQ",fontsize=16,color="green",shape="box"];3678 -> 3693[label="",style="dashed", color="red", weight=0]; 3678[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3678 -> 3694[label="",style="dashed", color="magenta", weight=3]; 3679[label="EQ",fontsize=16,color="green",shape="box"];3680 -> 3695[label="",style="dashed", color="red", weight=0]; 3680[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3680 -> 3696[label="",style="dashed", color="magenta", weight=3]; 3681[label="EQ",fontsize=16,color="green",shape="box"];3682[label="primPlusNat (Succ vyw15200) (Succ vyw4000000)",fontsize=16,color="black",shape="box"];3682 -> 3697[label="",style="solid", color="black", weight=3]; 3683[label="primPlusNat (Succ vyw15200) Zero",fontsize=16,color="black",shape="box"];3683 -> 3698[label="",style="solid", color="black", weight=3]; 3684[label="primPlusNat Zero (Succ vyw4000000)",fontsize=16,color="black",shape="box"];3684 -> 3699[label="",style="solid", color="black", weight=3]; 3685[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3685 -> 3700[label="",style="solid", color="black", weight=3]; 3686 -> 2428[label="",style="dashed", color="red", weight=0]; 3686[label="primMulInt vyw430000 vyw440010",fontsize=16,color="magenta"];3686 -> 3701[label="",style="dashed", color="magenta", weight=3]; 3686 -> 3702[label="",style="dashed", color="magenta", weight=3]; 3688 -> 2601[label="",style="dashed", color="red", weight=0]; 3688[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3688 -> 3703[label="",style="dashed", color="magenta", weight=3]; 3688 -> 3704[label="",style="dashed", color="magenta", weight=3]; 3687[label="compare1 vyw43000 vyw44000 vyw164",fontsize=16,color="burlywood",shape="triangle"];4385[label="vyw164/False",fontsize=10,color="white",style="solid",shape="box"];3687 -> 4385[label="",style="solid", color="burlywood", weight=9]; 4385 -> 3705[label="",style="solid", color="burlywood", weight=3]; 4386[label="vyw164/True",fontsize=10,color="white",style="solid",shape="box"];3687 -> 4386[label="",style="solid", color="burlywood", weight=9]; 4386 -> 3706[label="",style="solid", color="burlywood", weight=3]; 3690 -> 2608[label="",style="dashed", color="red", weight=0]; 3690[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3690 -> 3707[label="",style="dashed", color="magenta", weight=3]; 3690 -> 3708[label="",style="dashed", color="magenta", weight=3]; 3689[label="compare1 vyw43000 vyw44000 vyw165",fontsize=16,color="burlywood",shape="triangle"];4387[label="vyw165/False",fontsize=10,color="white",style="solid",shape="box"];3689 -> 4387[label="",style="solid", color="burlywood", weight=9]; 4387 -> 3709[label="",style="solid", color="burlywood", weight=3]; 4388[label="vyw165/True",fontsize=10,color="white",style="solid",shape="box"];3689 -> 4388[label="",style="solid", color="burlywood", weight=9]; 4388 -> 3710[label="",style="solid", color="burlywood", weight=3]; 3692 -> 2611[label="",style="dashed", color="red", weight=0]; 3692[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3692 -> 3711[label="",style="dashed", color="magenta", weight=3]; 3692 -> 3712[label="",style="dashed", color="magenta", weight=3]; 3691[label="compare1 vyw43000 vyw44000 vyw166",fontsize=16,color="burlywood",shape="triangle"];4389[label="vyw166/False",fontsize=10,color="white",style="solid",shape="box"];3691 -> 4389[label="",style="solid", color="burlywood", weight=9]; 4389 -> 3713[label="",style="solid", color="burlywood", weight=3]; 4390[label="vyw166/True",fontsize=10,color="white",style="solid",shape="box"];3691 -> 4390[label="",style="solid", color="burlywood", weight=9]; 4390 -> 3714[label="",style="solid", color="burlywood", weight=3]; 3694 -> 2612[label="",style="dashed", color="red", weight=0]; 3694[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3694 -> 3715[label="",style="dashed", color="magenta", weight=3]; 3694 -> 3716[label="",style="dashed", color="magenta", weight=3]; 3693[label="compare1 vyw43000 vyw44000 vyw167",fontsize=16,color="burlywood",shape="triangle"];4391[label="vyw167/False",fontsize=10,color="white",style="solid",shape="box"];3693 -> 4391[label="",style="solid", color="burlywood", weight=9]; 4391 -> 3717[label="",style="solid", color="burlywood", weight=3]; 4392[label="vyw167/True",fontsize=10,color="white",style="solid",shape="box"];3693 -> 4392[label="",style="solid", color="burlywood", weight=9]; 4392 -> 3718[label="",style="solid", color="burlywood", weight=3]; 3696 -> 2614[label="",style="dashed", color="red", weight=0]; 3696[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3696 -> 3719[label="",style="dashed", color="magenta", weight=3]; 3696 -> 3720[label="",style="dashed", color="magenta", weight=3]; 3695[label="compare1 vyw43000 vyw44000 vyw168",fontsize=16,color="burlywood",shape="triangle"];4393[label="vyw168/False",fontsize=10,color="white",style="solid",shape="box"];3695 -> 4393[label="",style="solid", color="burlywood", weight=9]; 4393 -> 3721[label="",style="solid", color="burlywood", weight=3]; 4394[label="vyw168/True",fontsize=10,color="white",style="solid",shape="box"];3695 -> 4394[label="",style="solid", color="burlywood", weight=9]; 4394 -> 3722[label="",style="solid", color="burlywood", weight=3]; 3697[label="Succ (Succ (primPlusNat vyw15200 vyw4000000))",fontsize=16,color="green",shape="box"];3697 -> 3723[label="",style="dashed", color="green", weight=3]; 3698[label="Succ vyw15200",fontsize=16,color="green",shape="box"];3699[label="Succ vyw4000000",fontsize=16,color="green",shape="box"];3700[label="Zero",fontsize=16,color="green",shape="box"];3701[label="vyw430000",fontsize=16,color="green",shape="box"];3702[label="vyw440010",fontsize=16,color="green",shape="box"];3703[label="vyw43000",fontsize=16,color="green",shape="box"];3704[label="vyw44000",fontsize=16,color="green",shape="box"];3705[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3705 -> 3724[label="",style="solid", color="black", weight=3]; 3706[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3706 -> 3725[label="",style="solid", color="black", weight=3]; 3707[label="vyw43000",fontsize=16,color="green",shape="box"];3708[label="vyw44000",fontsize=16,color="green",shape="box"];3709[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3709 -> 3726[label="",style="solid", color="black", weight=3]; 3710[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3710 -> 3727[label="",style="solid", color="black", weight=3]; 3711[label="vyw43000",fontsize=16,color="green",shape="box"];3712[label="vyw44000",fontsize=16,color="green",shape="box"];3713[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3713 -> 3728[label="",style="solid", color="black", weight=3]; 3714[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3714 -> 3729[label="",style="solid", color="black", weight=3]; 3715[label="vyw43000",fontsize=16,color="green",shape="box"];3716[label="vyw44000",fontsize=16,color="green",shape="box"];3717[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3717 -> 3730[label="",style="solid", color="black", weight=3]; 3718[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3718 -> 3731[label="",style="solid", color="black", weight=3]; 3719[label="vyw43000",fontsize=16,color="green",shape="box"];3720[label="vyw44000",fontsize=16,color="green",shape="box"];3721[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3721 -> 3732[label="",style="solid", color="black", weight=3]; 3722[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3722 -> 3733[label="",style="solid", color="black", weight=3]; 3723 -> 3539[label="",style="dashed", color="red", weight=0]; 3723[label="primPlusNat vyw15200 vyw4000000",fontsize=16,color="magenta"];3723 -> 3734[label="",style="dashed", color="magenta", weight=3]; 3723 -> 3735[label="",style="dashed", color="magenta", weight=3]; 3724[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3724 -> 3736[label="",style="solid", color="black", weight=3]; 3725[label="LT",fontsize=16,color="green",shape="box"];3726[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3726 -> 3737[label="",style="solid", color="black", weight=3]; 3727[label="LT",fontsize=16,color="green",shape="box"];3728[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3728 -> 3738[label="",style="solid", color="black", weight=3]; 3729[label="LT",fontsize=16,color="green",shape="box"];3730[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3730 -> 3739[label="",style="solid", color="black", weight=3]; 3731[label="LT",fontsize=16,color="green",shape="box"];3732[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3732 -> 3740[label="",style="solid", color="black", weight=3]; 3733[label="LT",fontsize=16,color="green",shape="box"];3734[label="vyw15200",fontsize=16,color="green",shape="box"];3735[label="vyw4000000",fontsize=16,color="green",shape="box"];3736[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3736 -> 3741[label="",style="solid", color="black", weight=3]; 3737[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3737 -> 3742[label="",style="solid", color="black", weight=3]; 3738[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3738 -> 3743[label="",style="solid", color="black", weight=3]; 3739[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3739 -> 3744[label="",style="solid", color="black", weight=3]; 3740[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3740 -> 3745[label="",style="solid", color="black", weight=3]; 3741[label="GT",fontsize=16,color="green",shape="box"];3742[label="GT",fontsize=16,color="green",shape="box"];3743[label="GT",fontsize=16,color="green",shape="box"];3744[label="GT",fontsize=16,color="green",shape="box"];3745[label="GT",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat(vyw430000, vyw440000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat(vyw430000, vyw440000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCompAux(vyw43000, vyw44000, vyw153, app(ty_[], fb)) -> new_compare0(vyw43000, vyw44000, fb) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(app(ty_@2, beb), bec)), gd) -> new_ltEs3(vyw43001, vyw44001, beb, bec) new_lt0(vyw43000, vyw44000, gb, gc) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, bcb), bcc)), bca), gd) -> new_lt0(vyw43000, vyw44000, bcb, bcc) new_ltEs0(Left(vyw43000), Left(vyw44000), app(app(ty_@2, db), dc), cb) -> new_ltEs3(vyw43000, vyw44000, db, dc) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, gh), ha), hb)), ge), gf), gd) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) new_primCompAux(vyw43000, vyw44000, vyw153, app(app(app(ty_@3, fc), fd), ff)) -> new_compare3(vyw43000, vyw44000, fc, fd, ff) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(app(ty_Either, bah), bba)), gd) -> new_ltEs0(vyw43002, vyw44002, bah, bba) new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(app(ty_@2, ed), ee)), gd) -> new_ltEs3(vyw43000, vyw44000, ed, ee) new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], ce)), cb), gd) -> new_ltEs1(vyw43000, vyw44000, ce) new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, db), dc)), cb), gd) -> new_ltEs3(vyw43000, vyw44000, db, dc) new_compare20(vyw43000, vyw44000, False, ga) -> new_ltEs(vyw43000, vyw44000, ga) new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, ef), ef) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, gh), ha), hb), ge, gf) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(ty_Maybe, hf), gf) -> new_lt(vyw43001, vyw44001, hf) new_ltEs(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs2(vyw43000, vyw44000, bd, be, bf) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(app(ty_Either, hg), hh)), gf), gd) -> new_lt0(vyw43001, vyw44001, hg, hh) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(app(ty_@2, beb), bec)) -> new_ltEs3(vyw43001, vyw44001, beb, bec) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, bch), bda), bca) -> new_lt3(vyw43000, vyw44000, bch, bda) new_lt2(vyw43000, vyw44000, gh, ha, hb) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, bch), bda)), bca), gd) -> new_lt3(vyw43000, vyw44000, bch, bda) new_compare23(vyw43000, vyw44000, False, hc, hd) -> new_ltEs3(vyw43000, vyw44000, hc, hd) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, bbh), bca) -> new_lt(vyw43000, vyw44000, bbh) new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs2(vyw4300, vyw4400, bfa, bfb, bfc) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_@2, hc), hd), ge, gf) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) new_compare2(vyw43000, vyw44000, gb, gc) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare0(vyw43001, vyw44001, ef) new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, ba), bb)), gd) -> new_ltEs0(vyw43000, vyw44000, ba, bb) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(ty_Maybe, bdc)), gd) -> new_ltEs(vyw43001, vyw44001, bdc) new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(app(ty_@2, ed), ee)) -> new_ltEs3(vyw43000, vyw44000, ed, ee) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bca), gd) -> new_lt2(vyw43000, vyw44000, bce, bcf, bcg) new_compare4(vyw43000, vyw44000, hc, hd) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare0(vyw43001, vyw44001, ef) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(app(ty_@2, bae), baf), gf) -> new_lt3(vyw43001, vyw44001, bae, baf) new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), gd) -> new_primCompAux(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, ef), ef) new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, bg), bh)), gd) -> new_ltEs3(vyw43000, vyw44000, bg, bh) new_lt(vyw43000, vyw44000, ga) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(ty_[], baa)), gf), gd) -> new_lt1(vyw43001, vyw44001, baa) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(app(ty_Either, bah), bba)) -> new_ltEs0(vyw43002, vyw44002, bah, bba) new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(app(app(ty_@3, ea), eb), ec)), gd) -> new_ltEs2(vyw43000, vyw44000, ea, eb, ec) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(ty_[], bbb)) -> new_ltEs1(vyw43002, vyw44002, bbb) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(app(ty_Either, bdd), bde)), gd) -> new_ltEs0(vyw43001, vyw44001, bdd, bde) new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, h)), gd) -> new_ltEs(vyw43000, vyw44000, h) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(app(ty_@2, bbf), bbg)) -> new_ltEs3(vyw43002, vyw44002, bbf, bbg) new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(ty_[], dh)), gd) -> new_ltEs1(vyw43000, vyw44000, dh) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(ty_Maybe, bag)), gd) -> new_ltEs(vyw43002, vyw44002, bag) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(ty_Maybe, bdc)) -> new_ltEs(vyw43001, vyw44001, bdc) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(app(ty_Either, bdd), bde)) -> new_ltEs0(vyw43001, vyw44001, bdd, bde) new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_Maybe, bee)) -> new_ltEs(vyw4300, vyw4400, bee) new_lt1(vyw43000, vyw44000, gg) -> new_compare0(vyw43000, vyw44000, gg) new_primCompAux(vyw43000, vyw44000, vyw153, app(ty_Maybe, eg)) -> new_compare1(vyw43000, vyw44000, eg) new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(vyw43000, vyw44000, ea, eb, ec) new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, bfd), bfe)) -> new_ltEs3(vyw4300, vyw4400, bfd, bfe) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, hc), hd)), ge), gf), gd) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], bcd)), bca), gd) -> new_lt1(vyw43000, vyw44000, bcd) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, gb), gc)), ge), gf), gd) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(ty_[], baa), gf) -> new_lt1(vyw43001, vyw44001, baa) new_ltEs0(Left(vyw43000), Left(vyw44000), app(ty_[], ce), cb) -> new_ltEs1(vyw43000, vyw44000, ce) new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(vyw43000, vyw44000, df, dg) new_compare3(vyw43000, vyw44000, gh, ha, hb) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_[], beh)) -> new_ltEs1(vyw4300, vyw4400, beh) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(ty_Maybe, bag)) -> new_ltEs(vyw43002, vyw44002, bag) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, bcb), bcc), bca) -> new_lt0(vyw43000, vyw44000, bcb, bcc) new_primCompAux(vyw43000, vyw44000, vyw153, app(app(ty_Either, eh), fa)) -> new_compare2(vyw43000, vyw44000, eh, fa) new_ltEs0(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, cf), cg), da), cb) -> new_ltEs2(vyw43000, vyw44000, cf, cg, da) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(ty_[], bbb)), gd) -> new_ltEs1(vyw43002, vyw44002, bbb) new_ltEs0(Left(vyw43000), Left(vyw44000), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(vyw43000, vyw44000, cc, cd) new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], bc)), gd) -> new_ltEs1(vyw43000, vyw44000, bc) new_compare1(vyw43000, vyw44000, ga) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), gd) -> new_compare0(vyw43001, vyw44001, ef) new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(app(ty_Either, df), dg)), gd) -> new_ltEs0(vyw43000, vyw44000, df, dg) new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_@2, bg), bh)) -> new_ltEs3(vyw43000, vyw44000, bg, bh) new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_Either, ba), bb)) -> new_ltEs0(vyw43000, vyw44000, ba, bb) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(app(ty_@2, bbf), bbg)), gd) -> new_ltEs3(vyw43002, vyw44002, bbf, bbg) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(ty_[], bdf)), gd) -> new_ltEs1(vyw43001, vyw44001, bdf) new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, ef), ef) new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf)), gd) -> new_ltEs2(vyw43000, vyw44000, bd, be, bf) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(app(ty_Either, hg), hh), gf) -> new_lt0(vyw43001, vyw44001, hg, hh) new_compare22(vyw43000, vyw44000, False, gh, ha, hb) -> new_ltEs2(vyw43000, vyw44000, gh, ha, hb) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], bcd), bca) -> new_lt1(vyw43000, vyw44000, bcd) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs2(vyw43002, vyw44002, bbc, bbd, bbe) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, bbh)), bca), gd) -> new_lt(vyw43000, vyw44000, bbh) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs2(vyw43001, vyw44001, bdg, bdh, bea) new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, ca)), cb), gd) -> new_ltEs(vyw43000, vyw44000, ca) new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb), gd) -> new_ltEs0(vyw43000, vyw44000, cc, cd) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, bce), bcf), bcg), bca) -> new_lt2(vyw43000, vyw44000, bce, bcf, bcg) new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, cf), cg), da)), cb), gd) -> new_ltEs2(vyw43000, vyw44000, cf, cg, da) new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(ty_Maybe, de)) -> new_ltEs(vyw43000, vyw44000, de) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(app(ty_@2, bae), baf)), gf), gd) -> new_lt3(vyw43001, vyw44001, bae, baf) new_ltEs(Just(vyw43000), Just(vyw44000), app(ty_Maybe, h)) -> new_ltEs(vyw43000, vyw44000, h) new_primCompAux(vyw43000, vyw44000, vyw153, app(app(ty_@2, fg), fh)) -> new_compare4(vyw43000, vyw44000, fg, fh) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], gg)), ge), gf), gd) -> new_compare0(vyw43000, vyw44000, gg) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(app(app(ty_@3, bab), bac), bad)), gf), gd) -> new_lt2(vyw43001, vyw44001, bab, bac, bad) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, ga), ge, gf) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(ty_[], bdf)) -> new_ltEs1(vyw43001, vyw44001, bdf) new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(app(app(ty_@3, bdg), bdh), bea)), gd) -> new_ltEs2(vyw43001, vyw44001, bdg, bdh, bea) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(app(app(ty_@3, bbc), bbd), bbe)), gd) -> new_ltEs2(vyw43002, vyw44002, bbc, bbd, bbe) new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, bef), beg)) -> new_ltEs0(vyw4300, vyw4400, bef, beg) new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(ty_[], dh)) -> new_ltEs1(vyw43000, vyw44000, dh) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(app(app(ty_@3, bab), bac), bad), gf) -> new_lt2(vyw43001, vyw44001, bab, bac, bad) new_ltEs(Just(vyw43000), Just(vyw44000), app(ty_[], bc)) -> new_ltEs1(vyw43000, vyw44000, bc) new_lt3(vyw43000, vyw44000, hc, hd) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) new_ltEs0(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ca), cb) -> new_ltEs(vyw43000, vyw44000, ca) new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(ty_Maybe, de)), gd) -> new_ltEs(vyw43000, vyw44000, de) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, ga)), ge), gf), gd) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, gb), gc), ge, gf) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], gg), ge, gf) -> new_compare0(vyw43000, vyw44000, gg) new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(ty_Maybe, hf)), gf), gd) -> new_lt(vyw43001, vyw44001, hf) The TRS R consists of the following rules: new_compare27(vyw43000, vyw44000) -> new_compare29(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs11(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs17(LT, EQ) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Ratio, cgb)) -> new_esEs19(vyw43000, vyw44000, cgb) new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(ty_[], cff)) -> new_esEs17(vyw300, vyw4000, cff) new_ltEs18(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare19(vyw43000, vyw44000, gb, gc) -> new_compare211(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) new_pePe(True, vyw151) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, chb) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw141, vyw142, False, cgc, cgd) -> GT new_esEs11(vyw301, vyw4001, app(app(ty_@2, bhg), bhh)) -> new_esEs7(vyw301, vyw4001, bhg, bhh) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs16(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs10(vyw300, vyw4000, app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs6(vyw300, vyw4000, bgb, bgc, bgd) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs20(vyw43001, vyw44001) new_compare(:(vyw43000, vyw43001), [], ef) -> GT new_lt18(vyw43001, vyw44001, app(app(ty_Either, hg), hh)) -> new_lt16(vyw43001, vyw44001, hg, hh) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Double, cb) -> new_ltEs12(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, hg), hh)) -> new_esEs5(vyw43001, vyw44001, hg, hh) new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_esEs26(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs26(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux0(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, ef), ef) new_esEs11(vyw301, vyw4001, app(ty_Ratio, cab)) -> new_esEs19(vyw301, vyw4001, cab) new_esEs12(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_lt17(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Int) -> new_compare18(vyw43000, vyw44000) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs26(vyw43000, vyw44000, app(app(ty_@2, hc), hd)) -> new_esEs7(vyw43000, vyw44000, hc, hd) new_compare111(vyw134, vyw135, True, cgh, cha) -> LT new_lt18(vyw43001, vyw44001, app(app(app(ty_@3, bab), bac), bad)) -> new_lt13(vyw43001, vyw44001, bab, bac, bad) new_esEs9(False, False) -> True new_compare113(vyw43000, vyw44000, False) -> GT new_esEs19(:%(vyw300, vyw301), :%(vyw4000, vyw4001), dbh) -> new_asAs(new_esEs24(vyw300, vyw4000, dbh), new_esEs25(vyw301, vyw4001, dbh)) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs6(vyw300, vyw4000, dcg, dch, dda) new_esEs11(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bff, bfg, bfh) -> new_asAs(new_esEs10(vyw300, vyw4000, bff), new_asAs(new_esEs11(vyw301, vyw4001, bfg), new_esEs12(vyw302, vyw4002, bfh))) new_esEs12(vyw302, vyw4002, ty_@0) -> new_esEs16(vyw302, vyw4002) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs23(vyw300, vyw4000, app(app(ty_Either, cfh), cga)) -> new_esEs5(vyw300, vyw4000, cfh, cga) new_compare11(vyw43000, vyw44000, hc, hd) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) new_esEs26(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs17(vyw43001, vyw44001) new_compare7(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_compare211(Left(vyw4300), Right(vyw4400), False, bed, gd) -> LT new_esEs27(vyw43001, vyw44001, app(ty_[], baa)) -> new_esEs17(vyw43001, vyw44001, baa) new_esEs8(EQ, EQ) -> True new_esEs22(vyw301, vyw4001, app(ty_Maybe, cde)) -> new_esEs4(vyw301, vyw4001, cde) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_compare14(vyw43000, vyw44000, app(ty_Maybe, eg)) -> new_compare15(vyw43000, vyw44000, eg) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs15(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, cf), cg), da), cb) -> new_ltEs14(vyw43000, vyw44000, cf, cg, da) new_ltEs21(vyw43001, vyw44001, app(ty_[], bdf)) -> new_ltEs13(vyw43001, vyw44001, bdf) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_esEs12(vyw302, vyw4002, app(app(ty_Either, cbe), cbf)) -> new_esEs5(vyw302, vyw4002, cbe, cbf) new_ltEs17(LT, GT) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_@2, db), dc), cb) -> new_ltEs15(vyw43000, vyw44000, db, dc) new_ltEs18(vyw4300, vyw4400, app(ty_Maybe, cgf)) -> new_ltEs7(vyw4300, vyw4400, cgf) new_not(True) -> False new_esEs20(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_primCompAux00(vyw157, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs6(vyw300, vyw4000, ccd, cce, ccf) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(ty_Maybe, cae)) -> new_esEs4(vyw302, vyw4002, cae) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), dae, app(ty_Maybe, daf)) -> new_esEs4(vyw300, vyw4000, daf) new_esEs22(vyw301, vyw4001, app(ty_Ratio, ced)) -> new_esEs19(vyw301, vyw4001, ced) new_ltEs17(EQ, GT) -> True new_esEs11(vyw301, vyw4001, app(ty_Maybe, bhc)) -> new_esEs4(vyw301, vyw4001, bhc) new_esEs26(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, ga) -> new_compare10(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, ga), ga) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, chb) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt13(vyw43000, vyw44000, gh, ha, hb) -> new_esEs8(new_compare26(vyw43000, vyw44000, gh, ha, hb), LT) new_esEs10(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs18(vyw4300, vyw4400, app(app(ty_Either, dd), cb)) -> new_ltEs6(vyw4300, vyw4400, dd, cb) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_Either, cc), cd), cb) -> new_ltEs6(vyw43000, vyw44000, cc, cd) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare16(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, chg), chh), chb) -> new_esEs7(vyw300, vyw4000, chg, chh) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_lt12(vyw43000, vyw44000, ga) -> new_esEs8(new_compare15(vyw43000, vyw44000, ga), LT) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs7(Nothing, Just(vyw44000), cgf) -> True new_lt18(vyw43001, vyw44001, ty_@0) -> new_lt11(vyw43001, vyw44001) new_ltEs20(vyw43002, vyw44002, ty_Int) -> new_ltEs10(vyw43002, vyw44002) new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_Double) -> new_esEs13(vyw300, vyw4000) new_lt17(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_ltEs17(LT, LT) -> True new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt13(vyw43000, vyw44000, bce, bcf, bcg) new_esEs22(vyw301, vyw4001, app(app(ty_@2, cea), ceb)) -> new_esEs7(vyw301, vyw4001, cea, ceb) new_primCompAux00(vyw157, GT) -> GT new_compare110(vyw43000, vyw44000, True) -> LT new_compare14(vyw43000, vyw44000, ty_Integer) -> new_compare16(vyw43000, vyw44000) new_esEs12(vyw302, vyw4002, app(ty_Ratio, cbd)) -> new_esEs19(vyw302, vyw4002, cbd) new_lt17(vyw43000, vyw44000, app(ty_Ratio, cgb)) -> new_lt5(vyw43000, vyw44000, cgb) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Integer, cb) -> new_ltEs8(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ca), cb) -> new_ltEs7(vyw43000, vyw44000, ca) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs12(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs14(vyw43001, vyw44001, bdg, bdh, bea) new_esEs5(Right(vyw300), Right(vyw4000), dae, app(ty_Ratio, dbe)) -> new_esEs19(vyw300, vyw4000, dbe) new_ltEs5(False, True) -> True new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_Char) -> new_esEs14(vyw300, vyw4000) new_lt17(vyw43000, vyw44000, app(ty_[], gg)) -> new_lt7(vyw43000, vyw44000, gg) new_primPlusNat1(Succ(vyw15200), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat1(vyw15200, vyw4000000))) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, chc), chb) -> new_esEs4(vyw300, vyw4000, chc) new_esEs12(vyw302, vyw4002, ty_Float) -> new_esEs20(vyw302, vyw4002) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, hc, hd) -> new_esEs8(new_compare11(vyw43000, vyw44000, hc, hd), LT) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), dd, app(ty_Maybe, de)) -> new_ltEs7(vyw43000, vyw44000, de) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs9(vyw43001, vyw44001) new_ltEs20(vyw43002, vyw44002, app(ty_Maybe, bag)) -> new_ltEs7(vyw43002, vyw44002, bag) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Char) -> new_compare17(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], bc)) -> new_ltEs13(vyw43000, vyw44000, bc) new_ltEs19(vyw4300, vyw4400, app(ty_[], beh)) -> new_ltEs13(vyw4300, vyw4400, beh) new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_esEs27(vyw43001, vyw44001, app(app(ty_@2, bae), baf)) -> new_esEs7(vyw43001, vyw44001, bae, baf) new_pePe(False, vyw151) -> vyw151 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs13(vyw43001, vyw44001) new_esEs11(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare25(vyw43000, vyw44000, True, hc, hd) -> EQ new_lt18(vyw43001, vyw44001, ty_Bool) -> new_lt9(vyw43001, vyw44001) new_compare210(vyw43000, vyw44000, True, ga) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs14(vyw4300, vyw4400, bfa, bfb, bfc) new_compare112(vyw43000, vyw44000, True, hc, hd) -> LT new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs18(vyw43001, vyw44001) new_esEs17([], [], ceg) -> True new_compare14(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_compare10(vyw43000, vyw44000, False, ga) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs23(vyw300, vyw4000, app(ty_Maybe, ceh)) -> new_esEs4(vyw300, vyw4000, ceh) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs12(vyw302, vyw4002, app(app(ty_@2, cba), cbb)) -> new_esEs7(vyw302, vyw4002, cba, cbb) new_ltEs14(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, gf) -> new_pePe(new_lt17(vyw43000, vyw44000, he), new_asAs(new_esEs26(vyw43000, vyw44000, he), new_pePe(new_lt18(vyw43001, vyw44001, ge), new_asAs(new_esEs27(vyw43001, vyw44001, ge), new_ltEs20(vyw43002, vyw44002, gf))))) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, beb), bec)) -> new_ltEs15(vyw43001, vyw44001, beb, bec) new_ltEs20(vyw43002, vyw44002, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs14(vyw43002, vyw44002, bbc, bbd, bbe) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_esEs5(Right(vyw300), Right(vyw4000), dae, app(app(ty_@2, dbb), dbc)) -> new_esEs7(vyw300, vyw4000, dbb, dbc) new_lt20(vyw43000, vyw44000, app(ty_Maybe, bbh)) -> new_lt12(vyw43000, vyw44000, bbh) new_ltEs20(vyw43002, vyw44002, ty_Float) -> new_ltEs4(vyw43002, vyw44002) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw43002, vyw44002, ty_@0) -> new_ltEs16(vyw43002, vyw44002) new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_compare211(Right(vyw4300), Right(vyw4400), False, bed, gd) -> new_compare12(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, gd), bed, gd) new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare27(vyw43000, vyw44000), LT) new_lt18(vyw43001, vyw44001, app(ty_Ratio, dcc)) -> new_lt5(vyw43001, vyw44001, dcc) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, dcc)) -> new_esEs19(vyw43001, vyw44001, dcc) new_compare10(vyw43000, vyw44000, True, ga) -> LT new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_primPlusNat0(Zero, vyw400000) -> Succ(vyw400000) new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs20(vyw43002, vyw44002, ty_Double) -> new_ltEs12(vyw43002, vyw44002) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, app(app(ty_Either, df), dg)) -> new_ltEs6(vyw43000, vyw44000, df, dg) new_ltEs5(True, False) -> False new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare17(vyw4300, vyw4400), GT)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, dac), dad), chb) -> new_esEs5(vyw300, vyw4000, dac, dad) new_esEs28(vyw43000, vyw44000, app(ty_[], bcd)) -> new_esEs17(vyw43000, vyw44000, bcd) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs10(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, app(app(ty_Either, cdc), cdd)) -> new_esEs5(vyw300, vyw4000, cdc, cdd) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_esEs8(LT, LT) -> True new_esEs12(vyw302, vyw4002, ty_Bool) -> new_esEs9(vyw302, vyw4002) new_compare13(vyw43000, vyw44000, False, gh, ha, hb) -> GT new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs6(vyw301, vyw4001, cdf, cdg, cdh) new_primPlusNat1(Succ(vyw15200), Zero) -> Succ(vyw15200) new_primPlusNat1(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_compare14(vyw43000, vyw44000, app(app(ty_Either, eh), fa)) -> new_compare19(vyw43000, vyw44000, eh, fa) new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], daa), chb) -> new_esEs17(vyw300, vyw4000, daa) new_esEs10(vyw300, vyw4000, app(ty_Maybe, bga)) -> new_esEs4(vyw300, vyw4000, bga) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Float) -> new_compare5(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, app(app(app(ty_@3, fc), fd), ff)) -> new_compare26(vyw43000, vyw44000, fc, fd, ff) new_esEs26(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs6(vyw300, vyw4000, cfa, cfb, cfc) new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, dea)) -> new_ltEs11(vyw43001, vyw44001, dea) new_esEs21(vyw300, vyw4000, app(ty_Maybe, ccc)) -> new_esEs4(vyw300, vyw4000, ccc) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_lt20(vyw43000, vyw44000, app(ty_Ratio, ddh)) -> new_lt5(vyw43000, vyw44000, ddh) new_compare([], :(vyw44000, vyw44001), ef) -> LT new_esEs11(vyw301, vyw4001, app(app(ty_Either, cac), cad)) -> new_esEs5(vyw301, vyw4001, cac, cad) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, chb) -> new_esEs9(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_@2, hc), hd)) -> new_lt6(vyw43000, vyw44000, hc, hd) new_ltEs18(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs22(vyw301, vyw4001, app(app(ty_Either, cee), cef)) -> new_esEs5(vyw301, vyw4001, cee, cef) new_ltEs17(EQ, EQ) -> True new_ltEs20(vyw43002, vyw44002, ty_Ordering) -> new_ltEs17(vyw43002, vyw44002) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, dcf)) -> new_esEs4(vyw300, vyw4000, dcf) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs18(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, app(app(app(ty_@3, bhd), bhe), bhf)) -> new_esEs6(vyw301, vyw4001, bhd, bhe, bhf) new_compare14(vyw43000, vyw44000, ty_Ordering) -> new_compare27(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, app(app(app(ty_@3, he), ge), gf)) -> new_ltEs14(vyw4300, vyw4400, he, ge, gf) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_compare18(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_ltEs17(GT, LT) -> False new_esEs10(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs17(EQ, LT) -> False new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, bg), bh)) -> new_ltEs15(vyw43000, vyw44000, bg, bh) new_lt5(vyw43000, vyw44000, cgb) -> new_esEs8(new_compare9(vyw43000, vyw44000, cgb), LT) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), dae, app(app(app(ty_@3, dag), dah), dba)) -> new_esEs6(vyw300, vyw4000, dag, dah, dba) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Bool, cb) -> new_ltEs5(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], ddd)) -> new_esEs17(vyw300, vyw4000, ddd) new_lt17(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs4(vyw43001, vyw44001) new_ltEs5(False, False) -> True new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_esEs10(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs6(vyw43001, vyw44001, bab, bac, bad) new_esEs10(vyw300, vyw4000, app(app(ty_Either, bha), bhb)) -> new_esEs5(vyw300, vyw4000, bha, bhb) new_lt16(vyw43000, vyw44000, gb, gc) -> new_esEs8(new_compare19(vyw43000, vyw44000, gb, gc), LT) new_lt20(vyw43000, vyw44000, app(ty_[], bcd)) -> new_lt7(vyw43000, vyw44000, bcd) new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs16(vyw43001, vyw44001) new_lt18(vyw43001, vyw44001, ty_Double) -> new_lt4(vyw43001, vyw44001) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, bfd), bfe)) -> new_ltEs15(vyw4300, vyw4400, bfd, bfe) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_asAs(True, vyw129) -> vyw129 new_lt18(vyw43001, vyw44001, app(app(ty_@2, bae), baf)) -> new_lt6(vyw43001, vyw44001, bae, baf) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) new_compare113(vyw43000, vyw44000, True) -> LT new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs10(vyw300, vyw4000, app(ty_[], bgg)) -> new_esEs17(vyw300, vyw4000, bgg) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Ratio, cbg), cb) -> new_ltEs11(vyw43000, vyw44000, cbg) new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, bdc)) -> new_ltEs7(vyw43001, vyw44001, bdc) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, chb) -> new_esEs15(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs6(vyw302, vyw4002, caf, cag, cah) new_esEs16(@0, @0) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Int, cb) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs20(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, app(ty_Ratio, cbh)) -> new_ltEs11(vyw43000, vyw44000, cbh) new_esEs10(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_compare111(vyw134, vyw135, False, cgh, cha) -> GT new_ltEs20(vyw43002, vyw44002, app(app(ty_@2, bbf), bbg)) -> new_ltEs15(vyw43002, vyw44002, bbf, bbg) new_ltEs20(vyw43002, vyw44002, ty_Integer) -> new_ltEs8(vyw43002, vyw44002) new_ltEs20(vyw43002, vyw44002, app(ty_Ratio, dcd)) -> new_ltEs11(vyw43002, vyw44002, dcd) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs16(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, ddf), ddg)) -> new_esEs5(vyw300, vyw4000, ddf, ddg) new_compare24(vyw43000, vyw44000, False) -> new_compare113(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare16(vyw43000, vyw44000), LT) new_compare110(vyw43000, vyw44000, False) -> GT new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCompAux00(vyw157, EQ) -> vyw157 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, bdd), bde)) -> new_ltEs6(vyw43001, vyw44001, bdd, bde) new_ltEs7(Nothing, Nothing, cgf) -> True new_esEs9(True, True) -> True new_lt18(vyw43001, vyw44001, ty_Ordering) -> new_lt19(vyw43001, vyw44001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare17(vyw43000, vyw44000), LT) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, ty_Double) -> new_compare6(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, chb) -> new_esEs14(vyw300, vyw4000) new_primMulNat0(Zero, Zero) -> Zero new_lt7(vyw43000, vyw44000, gg) -> new_esEs8(new_compare(vyw43000, vyw44000, gg), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, chb) -> new_esEs13(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), ceg) -> new_asAs(new_esEs23(vyw300, vyw4000, ceg), new_esEs17(vyw301, vyw4001, ceg)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, app(ty_[], ef)) -> new_ltEs13(vyw4300, vyw4400, ef) new_ltEs7(Just(vyw43000), Nothing, cgf) -> False new_esEs28(vyw43000, vyw44000, app(ty_Maybe, bbh)) -> new_esEs4(vyw43000, vyw44000, bbh) new_esEs23(vyw300, vyw4000, app(app(ty_@2, cfd), cfe)) -> new_esEs7(vyw300, vyw4000, cfd, cfe) new_esEs5(Right(vyw300), Right(vyw4000), dae, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_compare14(vyw43000, vyw44000, ty_Bool) -> new_compare7(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, True, gh, ha, hb) -> EQ new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_esEs4(Nothing, Nothing, dce) -> True new_esEs5(Right(vyw300), Right(vyw4000), dae, app(app(ty_Either, dbf), dbg)) -> new_esEs5(vyw300, vyw4000, dbf, dbg) new_esEs4(Nothing, Just(vyw4000), dce) -> False new_esEs4(Just(vyw300), Nothing, dce) -> False new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cgg)) -> new_ltEs11(vyw43000, vyw44000, cgg) new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, dcb)) -> new_ltEs11(vyw4300, vyw4400, dcb) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_compare26(vyw43000, vyw44000, gh, ha, hb) -> new_compare28(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Float, cb) -> new_ltEs4(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, chb) -> new_esEs20(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, app(ty_[], dh)) -> new_ltEs13(vyw43000, vyw44000, dh) new_primCompAux0(vyw43000, vyw44000, vyw153, ef) -> new_primCompAux00(vyw153, new_compare14(vyw43000, vyw44000, ef)) new_ltEs18(vyw4300, vyw4400, app(ty_Ratio, dca)) -> new_ltEs11(vyw4300, vyw4400, dca) new_esEs21(vyw300, vyw4000, app(ty_[], cda)) -> new_esEs17(vyw300, vyw4000, cda) new_ltEs13(vyw4300, vyw4400, ef) -> new_not(new_esEs8(new_compare(vyw4300, vyw4400, ef), GT)) new_esEs7(@2(vyw300, vyw301), @2(vyw4000, vyw4001), cca, ccb) -> new_asAs(new_esEs21(vyw300, vyw4000, cca), new_esEs22(vyw301, vyw4001, ccb)) new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, bee)) -> new_ltEs7(vyw4300, vyw4400, bee) new_lt18(vyw43001, vyw44001, ty_Float) -> new_lt8(vyw43001, vyw44001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_compare([], [], ef) -> EQ new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_lt18(vyw43001, vyw44001, ty_Int) -> new_lt10(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs8(vyw43001, vyw44001) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, ddh)) -> new_esEs19(vyw43000, vyw44000, ddh) new_lt17(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw43002, vyw44002, app(app(ty_Either, bah), bba)) -> new_ltEs6(vyw43002, vyw44002, bah, bba) new_lt17(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs28(vyw43000, vyw44000, app(app(ty_@2, bch), bda)) -> new_esEs7(vyw43000, vyw44000, bch, bda) new_ltEs18(vyw4300, vyw4400, app(app(ty_@2, bdb), bca)) -> new_ltEs15(vyw4300, vyw4400, bdb, bca) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_lt8(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs15(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, bca) -> new_pePe(new_lt20(vyw43000, vyw44000, bdb), new_asAs(new_esEs28(vyw43000, vyw44000, bdb), new_ltEs21(vyw43001, vyw44001, bca))) new_esEs26(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_lt18(vyw43001, vyw44001, app(ty_Maybe, hf)) -> new_lt12(vyw43001, vyw44001, hf) new_lt20(vyw43000, vyw44000, app(app(ty_@2, bch), bda)) -> new_lt6(vyw43000, vyw44000, bch, bda) new_esEs23(vyw300, vyw4000, app(ty_Ratio, cfg)) -> new_esEs19(vyw300, vyw4000, cfg) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_esEs26(vyw43000, vyw44000, app(ty_[], gg)) -> new_esEs17(vyw43000, vyw44000, gg) new_esEs10(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_compare211(vyw430, vyw440, True, bed, gd) -> EQ new_compare13(vyw43000, vyw44000, True, gh, ha, hb) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), dd, ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, bef), beg)) -> new_ltEs6(vyw4300, vyw4400, bef, beg) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, ba), bb)) -> new_ltEs6(vyw43000, vyw44000, ba, bb) new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs26(vyw43000, vyw44000, app(app(ty_Either, gb), gc)) -> new_esEs5(vyw43000, vyw44000, gb, gc) new_esEs12(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_Either, gb), gc)) -> new_lt16(vyw43000, vyw44000, gb, gc) new_compare14(vyw43000, vyw44000, app(ty_[], fb)) -> new_compare(vyw43000, vyw44000, fb) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, chd), che), chf), chb) -> new_esEs6(vyw300, vyw4000, chd, che, chf) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, h)) -> new_ltEs7(vyw43000, vyw44000, h) new_esEs26(vyw43000, vyw44000, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs6(vyw43000, vyw44000, gh, ha, hb) new_compare112(vyw43000, vyw44000, False, hc, hd) -> GT new_esEs10(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, app(app(app(ty_@3, gh), ha), hb)) -> new_lt13(vyw43000, vyw44000, gh, ha, hb) new_ltEs20(vyw43002, vyw44002, app(ty_[], bbb)) -> new_ltEs13(vyw43002, vyw44002, bbb) new_compare16(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_ltEs6(Right(vyw43000), Left(vyw44000), dd, cb) -> False new_esEs11(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_not(False) -> True new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, dab), chb) -> new_esEs19(vyw300, vyw4000, dab) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_[], ce), cb) -> new_ltEs13(vyw43000, vyw44000, ce) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_esEs10(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Char, cb) -> new_ltEs9(vyw43000, vyw44000) new_compare211(Right(vyw4300), Left(vyw4400), False, bed, gd) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw43000, vyw44000, True) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) new_esEs5(Left(vyw300), Right(vyw4000), dae, chb) -> False new_esEs5(Right(vyw300), Left(vyw4000), dae, chb) -> False new_lt18(vyw43001, vyw44001, app(ty_[], baa)) -> new_lt7(vyw43001, vyw44001, baa) new_compare15(vyw43000, vyw44000, ga) -> new_compare210(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_primPlusNat0(Succ(vyw1520), vyw400000) -> Succ(Succ(new_primPlusNat1(vyw1520, vyw400000))) new_lt17(vyw43000, vyw44000, app(ty_Maybe, ga)) -> new_lt12(vyw43000, vyw44000, ga) new_compare28(vyw43000, vyw44000, False, gh, ha, hb) -> new_compare13(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) new_lt17(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_sr0(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs14(vyw43000, vyw44000, bd, be, bf) new_esEs12(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs11(vyw4300, vyw4400, dca) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, dca), GT)) new_compare14(vyw43000, vyw44000, app(ty_Ratio, cge)) -> new_compare9(vyw43000, vyw44000, cge) new_primPlusNat1(Zero, Zero) -> Zero new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs5(True, True) -> True new_esEs22(vyw301, vyw4001, app(ty_[], cec)) -> new_esEs17(vyw301, vyw4001, cec) new_esEs10(vyw300, vyw4000, app(ty_Ratio, bgh)) -> new_esEs19(vyw300, vyw4000, bgh) new_esEs10(vyw300, vyw4000, app(app(ty_@2, bge), bgf)) -> new_esEs7(vyw300, vyw4000, bge, bgf) new_ltEs17(GT, EQ) -> False new_esEs26(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_lt18(vyw43001, vyw44001, ty_Char) -> new_lt14(vyw43001, vyw44001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt17(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_compare211(Left(vyw4300), Left(vyw4400), False, bed, gd) -> new_compare111(vyw4300, vyw4400, new_ltEs18(vyw4300, vyw4400, bed), bed, gd) new_esEs21(vyw300, vyw4000, app(ty_Ratio, cdb)) -> new_esEs19(vyw300, vyw4000, cdb) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, app(app(ty_@2, ed), ee)) -> new_ltEs15(vyw43000, vyw44000, ed, ee) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat0(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, app(app(ty_Either, bcb), bcc)) -> new_lt16(vyw43000, vyw44000, bcb, bcc) new_esEs12(vyw302, vyw4002, app(ty_[], cbc)) -> new_esEs17(vyw302, vyw4002, cbc) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_@0, cb) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, app(app(ty_@2, ccg), cch)) -> new_esEs7(vyw300, vyw4000, ccg, cch) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, hf)) -> new_esEs4(vyw43001, vyw44001, hf) new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, chb) -> new_esEs16(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw300, vyw4000, ddb, ddc) new_esEs11(vyw301, vyw4001, app(ty_[], caa)) -> new_esEs17(vyw301, vyw4001, caa) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs5(vyw43001, vyw44001) new_compare8(@0, @0) -> EQ new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs17(GT, GT) -> True new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dde)) -> new_esEs19(vyw300, vyw4000, dde) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Ordering, cb) -> new_ltEs17(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Maybe, ga)) -> new_esEs4(vyw43000, vyw44000, ga) new_primEqNat0(Zero, Zero) -> True new_compare17(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, bcb), bcc)) -> new_esEs5(vyw43000, vyw44000, bcb, bcc) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs6(vyw43000, vyw44000, bce, bcf, bcg) new_asAs(False, vyw129) -> False new_esEs17(:(vyw300, vyw301), [], ceg) -> False new_esEs17([], :(vyw4000, vyw4001), ceg) -> False new_ltEs20(vyw43002, vyw44002, ty_Bool) -> new_ltEs5(vyw43002, vyw44002) new_ltEs8(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare16(vyw4300, vyw4400), GT)) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare18(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs6(Right(vyw43000), Right(vyw44000), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs14(vyw43000, vyw44000, ea, eb, ec) new_ltEs6(Left(vyw43000), Right(vyw44000), dd, cb) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare12(vyw141, vyw142, True, cgc, cgd) -> LT new_lt18(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) new_esEs5(Right(vyw300), Right(vyw4000), dae, app(ty_[], dbd)) -> new_esEs17(vyw300, vyw4000, dbd) new_compare14(vyw43000, vyw44000, app(app(ty_@2, fg), fh)) -> new_compare11(vyw43000, vyw44000, fg, fh) new_esEs10(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_compare25(vyw43000, vyw44000, False, hc, hd) -> new_compare112(vyw43000, vyw44000, new_ltEs15(vyw43000, vyw44000, hc, hd), hc, hd) new_esEs26(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) The set Q consists of the following terms: new_esEs12(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_lt18(x0, x1, app(ty_Maybe, x2)) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Int) new_lt18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_lt17(x0, x1, app(app(ty_Either, x2), x3)) new_lt18(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Double) new_ltEs17(EQ, EQ) new_ltEs18(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, ty_Double) new_lt17(x0, x1, ty_Int) new_esEs4(Just(x0), Just(x1), ty_@0) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, ty_@0) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Integer) new_ltEs13(x0, x1, x2) new_compare110(x0, x1, False) new_esEs25(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_@0) new_lt17(x0, x1, ty_Double) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Integer) new_compare(:(x0, x1), :(x2, x3), x4) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_@0) new_lt5(x0, x1, x2) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_compare12(x0, x1, False, x2, x3) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs26(x0, x1, ty_Bool) new_ltEs5(False, True) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_ltEs5(True, False) new_compare11(x0, x1, x2, x3) new_compare14(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, True, x2, x3, x4) new_sr0(x0, x1) new_ltEs20(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), ty_Bool) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_primEqInt(Neg(Zero), Neg(Zero)) new_pePe(False, x0) new_compare211(Left(x0), Right(x1), False, x2, x3) new_compare211(Right(x0), Left(x1), False, x2, x3) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_compare14(x0, x1, ty_Double) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Nothing, x1) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_compare211(Right(x0), Right(x1), False, x2, x3) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_compare14(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Char) new_compare29(x0, x1, False) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Float) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt18(x0, x1, app(ty_Ratio, x2)) new_esEs9(False, False) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Double) new_esEs4(Just(x0), Just(x1), ty_Int) new_esEs10(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_lt8(x0, x1) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, ty_Int) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Char) new_primPlusNat0(Zero, x0) new_lt17(x0, x1, ty_@0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_ltEs21(x0, x1, ty_Ordering) new_compare8(@0, @0) new_lt18(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs22(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, EQ) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt18(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, app(ty_Maybe, x2)) new_ltEs18(x0, x1, ty_Int) new_compare14(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Char) new_compare211(x0, x1, True, x2, x3) new_esEs27(x0, x1, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Bool) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_esEs26(x0, x1, ty_Int) new_compare25(x0, x1, False, x2, x3) new_ltEs18(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Ordering) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, ty_Float) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare113(x0, x1, True) new_esEs23(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare14(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Float) new_compare12(x0, x1, True, x2, x3) new_esEs4(Nothing, Just(x0), x1) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, True) new_ltEs8(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs9(x0, x1) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_compare10(x0, x1, False, x2) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare28(x0, x1, True, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs12(x0, x1) new_esEs25(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_esEs22(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_esEs17(:(x0, x1), [], x2) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs24(x0, x1, ty_Int) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt16(x0, x1, x2, x3) new_compare19(x0, x1, x2, x3) new_ltEs17(LT, LT) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs19(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, ty_@0) new_lt18(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs10(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare14(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_lt13(x0, x1, x2, x3, x4) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primPlusNat1(Succ(x0), Zero) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs12(x0, x1, ty_@0) new_ltEs5(True, True) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs21(x0, x1, ty_Double) new_compare210(x0, x1, True, x2) new_compare29(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_ltEs17(GT, GT) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_esEs10(x0, x1, ty_Bool) new_lt18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_compare17(Char(x0), Char(x1)) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_compare13(x0, x1, False, x2, x3, x4) new_esEs9(True, True) new_esEs4(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, ty_Float) new_esEs12(x0, x1, ty_Double) new_esEs16(@0, @0) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_ltEs21(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Bool) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17([], :(x0, x1), x2) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs20(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_compare18(x0, x1) new_primMulNat0(Zero, Zero) new_esEs4(Nothing, Nothing, x0) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_compare111(x0, x1, False, x2, x3) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_compare113(x0, x1, False) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_sr(Integer(x0), Integer(x1)) new_compare112(x0, x1, True, x2, x3) new_compare15(x0, x1, x2) new_ltEs18(x0, x1, ty_Float) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_compare24(x0, x1, False) new_esEs22(x0, x1, ty_Integer) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Nothing, Just(x0), x1) new_esEs23(x0, x1, ty_Bool) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_compare([], :(x0, x1), x2) new_esEs21(x0, x1, ty_@0) new_esEs17([], [], x0) new_esEs22(x0, x1, ty_Bool) new_esEs12(x0, x1, app(ty_[], x2)) new_not(True) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs11(x0, x1, x2) new_ltEs4(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs7(Just(x0), Nothing, x1) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Integer) new_lt17(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(x0, x1) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_compare10(x0, x1, True, x2) new_esEs12(x0, x1, ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs27(x0, x1, ty_Int) new_compare14(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs17(:(x0, x1), :(x2, x3), x4) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt17(x0, x1, ty_Float) new_asAs(True, x0) new_lt18(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Integer) new_compare25(x0, x1, True, x2, x3) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Just(x0), Just(x1), ty_Float) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Just(x0), Just(x1), ty_Double) new_compare28(x0, x1, False, x2, x3, x4) new_primCmpNat0(Succ(x0), Zero) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Just(x0), Just(x1), ty_Double) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(Double(x0, x1), Double(x2, x3)) new_ltEs21(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_lt17(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Ordering) new_compare211(Left(x0), Left(x1), False, x2, x3) new_ltEs18(x0, x1, app(ty_[], x2)) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs12(x0, x1, ty_Int) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt20(x0, x1, ty_Ordering) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs27(x0, x1, ty_Char) new_esEs18(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_compare111(x0, x1, True, x2, x3) new_compare110(x0, x1, True) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs11(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Char) new_primCompAux00(x0, GT) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt12(x0, x1, x2) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_@0) new_lt15(x0, x1) new_esEs21(x0, x1, ty_Float) new_compare(:(x0, x1), [], x2) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_lt6(x0, x1, x2, x3) new_compare210(x0, x1, False, x2) new_esEs12(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Double) new_compare14(x0, x1, ty_Bool) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, ty_Int) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt9(x0, x1) new_lt17(x0, x1, ty_Bool) new_esEs9(False, True) new_esEs9(True, False) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs15(Integer(x0), Integer(x1)) new_esEs28(x0, x1, ty_Float) new_ltEs21(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare14(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_lt11(x0, x1) new_primEqNat0(Zero, Succ(x0)) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt18(x0, x1, ty_Float) new_not(False) new_compare([], [], x0) new_esEs26(x0, x1, app(ty_[], x2)) new_compare14(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_compare7(x0, x1) new_ltEs19(x0, x1, ty_Int) new_esEs12(x0, x1, ty_Bool) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_compare14(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Double) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_esEs26(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt18(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_compare27(x0, x1) new_compare112(x0, x1, False, x2, x3) new_lt17(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Bool) new_pePe(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs12(x0, x1, ty_Char) new_compare16(Integer(x0), Integer(x1)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_compare26(x0, x1, x2, x3, x4) new_lt17(x0, x1, ty_Ordering) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_primCmpNat0(Zero, Zero) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Nothing, Nothing, x0) new_lt4(x0, x1) new_primCmpNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare0(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), gd) -> new_primCompAux(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, bcb), bcc), bca) -> new_lt0(vyw43000, vyw44000, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, gb), gc)), ge), gf), gd) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(app(ty_Either, hg), hh), gf) -> new_lt0(vyw43001, vyw44001, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_lt0(vyw43000, vyw44000, gb, gc) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(app(ty_Either, bdd), bde)) -> new_ltEs0(vyw43001, vyw44001, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(vyw43000, vyw44000, False, gh, ha, hb) -> new_ltEs2(vyw43000, vyw44000, gh, ha, hb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare3(vyw43000, vyw44000, gh, ha, hb) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare0(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, ga)), ge), gf), gd) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_Either, ba), bb)) -> new_ltEs0(vyw43000, vyw44000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(app(ty_Either, bah), bba)) -> new_ltEs0(vyw43002, vyw44002, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(ty_[], bdf)) -> new_ltEs1(vyw43001, vyw44001, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Just(vyw43000), Just(vyw44000), app(ty_[], bc)) -> new_ltEs1(vyw43000, vyw44000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(ty_[], bbb)) -> new_ltEs1(vyw43002, vyw44002, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs2(vyw43001, vyw44001, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs2(vyw43000, vyw44000, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_ltEs2(vyw43002, vyw44002, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_lt(vyw43000, vyw44000, ga) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(ty_Maybe, bdc)) -> new_ltEs(vyw43001, vyw44001, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, gb), gc), ge, gf) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare2(vyw43000, vyw44000, gb, gc) -> new_compare21(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, gb, gc), gb, gc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs(Just(vyw43000), Just(vyw44000), app(ty_Maybe, h)) -> new_ltEs(vyw43000, vyw44000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_@2, bg), bh)) -> new_ltEs3(vyw43000, vyw44000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, ga), ge, gf) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare1(vyw43000, vyw44000, ga) -> new_compare20(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(ty_Maybe, bag)) -> new_ltEs(vyw43002, vyw44002, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare20(vyw43000, vyw44000, False, ga) -> new_ltEs(vyw43000, vyw44000, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), bdb, app(app(ty_@2, beb), bec)) -> new_ltEs3(vyw43001, vyw44001, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, ge, app(app(ty_@2, bbf), bbg)) -> new_ltEs3(vyw43002, vyw44002, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(vyw43000, vyw44000, False, hc, hd) -> new_ltEs3(vyw43000, vyw44000, hc, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt3(vyw43000, vyw44000, hc, hd) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, bce), bcf), bcg), bca) -> new_lt2(vyw43000, vyw44000, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(app(app(ty_@3, bab), bac), bad), gf) -> new_lt2(vyw43001, vyw44001, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, hc), hd)), ge), gf), gd) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_@2, hc), hd), ge, gf) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare4(vyw43000, vyw44000, hc, hd) -> new_compare23(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, hc, hd), hc, hd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(vyw43000, vyw44000, vyw153, app(app(ty_Either, eh), fa)) -> new_compare2(vyw43000, vyw44000, eh, fa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_lt2(vyw43000, vyw44000, gh, ha, hb) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_lt1(vyw43000, vyw44000, gg) -> new_compare0(vyw43000, vyw44000, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_primCompAux(vyw43000, vyw44000, vyw153, app(app(ty_@2, fg), fh)) -> new_compare4(vyw43000, vyw44000, fg, fh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw43000, vyw44000, vyw153, app(ty_[], fb)) -> new_compare0(vyw43000, vyw44000, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], gg), ge, gf) -> new_compare0(vyw43000, vyw44000, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, bbh), bca) -> new_lt(vyw43000, vyw44000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(ty_Maybe, hf), gf) -> new_lt(vyw43001, vyw44001, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], bcd), bca) -> new_lt1(vyw43000, vyw44000, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, bch), bda), bca) -> new_lt3(vyw43000, vyw44000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(ty_[], baa), gf) -> new_lt1(vyw43001, vyw44001, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_primCompAux(vyw43000, vyw44000, vyw153, app(app(app(ty_@3, fc), fd), ff)) -> new_compare3(vyw43000, vyw44000, fc, fd, ff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vyw43000, vyw44000, vyw153, app(ty_Maybe, eg)) -> new_compare1(vyw43000, vyw44000, eg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, gh), ha), hb)), ge), gf), gd) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, gh), ha), hb), ge, gf) -> new_compare22(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, gh, ha, hb), gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), he, app(app(ty_@2, bae), baf), gf) -> new_lt3(vyw43001, vyw44001, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, bcb), bcc)), bca), gd) -> new_lt0(vyw43000, vyw44000, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(app(ty_Either, hg), hh)), gf), gd) -> new_lt0(vyw43001, vyw44001, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(app(ty_Either, bah), bba)), gd) -> new_ltEs0(vyw43002, vyw44002, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, ba), bb)), gd) -> new_ltEs0(vyw43000, vyw44000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(app(ty_Either, bdd), bde)), gd) -> new_ltEs0(vyw43001, vyw44001, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(app(ty_Either, df), dg)), gd) -> new_ltEs0(vyw43000, vyw44000, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb), gd) -> new_ltEs0(vyw43000, vyw44000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, bef), beg)) -> new_ltEs0(vyw4300, vyw4400, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], ce)), cb), gd) -> new_ltEs1(vyw43000, vyw44000, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(ty_[], dh)), gd) -> new_ltEs1(vyw43000, vyw44000, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_[], beh)) -> new_ltEs1(vyw4300, vyw4400, beh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(ty_[], bbb)), gd) -> new_ltEs1(vyw43002, vyw44002, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], bc)), gd) -> new_ltEs1(vyw43000, vyw44000, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(ty_[], bdf)), gd) -> new_ltEs1(vyw43001, vyw44001, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs2(vyw4300, vyw4400, bfa, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(app(app(ty_@3, ea), eb), ec)), gd) -> new_ltEs2(vyw43000, vyw44000, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf)), gd) -> new_ltEs2(vyw43000, vyw44000, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, cf), cg), da)), cb), gd) -> new_ltEs2(vyw43000, vyw44000, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(app(app(ty_@3, bdg), bdh), bea)), gd) -> new_ltEs2(vyw43001, vyw44001, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(app(app(ty_@3, bbc), bbd), bbe)), gd) -> new_ltEs2(vyw43002, vyw44002, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(ty_Maybe, bdc)), gd) -> new_ltEs(vyw43001, vyw44001, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, h)), gd) -> new_ltEs(vyw43000, vyw44000, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(ty_Maybe, bag)), gd) -> new_ltEs(vyw43002, vyw44002, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(ty_Maybe, bee)) -> new_ltEs(vyw4300, vyw4400, bee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, ca)), cb), gd) -> new_ltEs(vyw43000, vyw44000, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(ty_Maybe, de)), gd) -> new_ltEs(vyw43000, vyw44000, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, bdb), app(app(ty_@2, beb), bec)), gd) -> new_ltEs3(vyw43001, vyw44001, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, dd), app(app(ty_@2, ed), ee)), gd) -> new_ltEs3(vyw43000, vyw44000, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, db), dc)), cb), gd) -> new_ltEs3(vyw43000, vyw44000, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, bg), bh)), gd) -> new_ltEs3(vyw43000, vyw44000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, bfd), bfe)) -> new_ltEs3(vyw4300, vyw4400, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), ge), app(app(ty_@2, bbf), bbg)), gd) -> new_ltEs3(vyw43002, vyw44002, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bca), gd) -> new_lt2(vyw43000, vyw44000, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(app(app(ty_@3, bab), bac), bad)), gf), gd) -> new_lt2(vyw43001, vyw44001, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), gd) -> new_compare0(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], gg)), ge), gf), gd) -> new_compare0(vyw43000, vyw44000, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, bbh)), bca), gd) -> new_lt(vyw43000, vyw44000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(ty_Maybe, hf)), gf), gd) -> new_lt(vyw43001, vyw44001, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(ty_[], baa)), gf), gd) -> new_lt1(vyw43001, vyw44001, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], bcd)), bca), gd) -> new_lt1(vyw43000, vyw44000, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare21(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, bch), bda)), bca), gd) -> new_lt3(vyw43000, vyw44000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare21(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, he), app(app(ty_@2, bae), baf)), gf), gd) -> new_lt3(vyw43001, vyw44001, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(vyw43000, vyw44000, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyw43000), Left(vyw44000), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(vyw43000, vyw44000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Left(vyw43000), Left(vyw44000), app(ty_[], ce), cb) -> new_ltEs1(vyw43000, vyw44000, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(ty_[], dh)) -> new_ltEs1(vyw43000, vyw44000, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(vyw43000, vyw44000, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, cf), cg), da), cb) -> new_ltEs2(vyw43000, vyw44000, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(ty_Maybe, de)) -> new_ltEs(vyw43000, vyw44000, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ca), cb) -> new_ltEs(vyw43000, vyw44000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Left(vyw43000), Left(vyw44000), app(app(ty_@2, db), dc), cb) -> new_ltEs3(vyw43000, vyw44000, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vyw43000), Right(vyw44000), dd, app(app(ty_@2, ed), ee)) -> new_ltEs3(vyw43000, vyw44000, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare211(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_elemFM01(vyw17, Left(vyw18), h, ba, bb) new_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Right(vyw400), False, bd, be), LT), bc, bd, be) new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Left(vyw400), False, bd, be), GT), bc, bd, be) new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Right(vyw30), bc, bd, be) new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw44, Left(vyw30), bc, bd, be) new_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Right(vyw400), new_esEs31(vyw30, vyw400, be), bd, be), LT), bc, bd, be) new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Left(vyw30), bc, bd, be) new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Left(vyw400), False, bd, be), LT), bc, bd, be) new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_elemFM01(vyw16, Left(vyw18), h, ba, bb) new_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare211(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) new_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_elemFM01(vyw31, Right(vyw33), bf, bg, bh) new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM0(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Left(vyw400), new_esEs30(vyw30, vyw400, bd), bd, be), LT), bc, bd, be) new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Right(vyw400), False, bd, be), GT), bc, bd, be) new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_elemFM01(vyw32, Right(vyw33), bf, bg, bh) new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw44, Right(vyw30), bc, bd, be) The TRS R consists of the following rules: new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs9(vyw33, vyw28) new_compare27(vyw43000, vyw44000) -> new_compare29(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs11(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs17(LT, EQ) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Ratio, bfc)) -> new_esEs19(vyw43000, vyw44000, bfc) new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(ty_[], beg)) -> new_esEs17(vyw300, vyw4000, beg) new_ltEs18(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare19(vyw43000, vyw44000, cee, cef) -> new_compare211(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cee, cef), cee, cef) new_pePe(True, vyw151) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, cbd) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw141, vyw142, False, bha, bhb) -> GT new_esEs30(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs11(vyw301, vyw4001, app(app(ty_@2, ec), ed)) -> new_esEs7(vyw301, vyw4001, ec, ed) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs16(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs10(vyw300, vyw4000, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs6(vyw300, vyw4000, ce, cf, cg) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs20(vyw43001, vyw44001) new_compare(:(vyw43000, vyw43001), [], bhf) -> GT new_lt18(vyw43001, vyw44001, app(app(ty_Either, dch), dda)) -> new_lt16(vyw43001, vyw44001, dch, dda) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Double, ge) -> new_ltEs12(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, dch), dda)) -> new_esEs5(vyw43001, vyw44001, dch, dda) new_esEs32(vyw33, vyw28, app(ty_Ratio, cdg)) -> new_esEs19(vyw33, vyw28, cdg) new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_esEs26(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs26(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bhf) -> new_primCompAux0(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, bhf), bhf) new_esEs11(vyw301, vyw4001, app(ty_Ratio, ef)) -> new_esEs19(vyw301, vyw4001, ef) new_esEs12(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_lt17(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Int) -> new_compare18(vyw43000, vyw44000) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs26(vyw43000, vyw44000, app(app(ty_@2, bfe), bff)) -> new_esEs7(vyw43000, vyw44000, bfe, bff) new_compare111(vyw134, vyw135, True, cec, ced) -> LT new_lt18(vyw43001, vyw44001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt13(vyw43001, vyw44001, ddd, dde, ddf) new_esEs9(False, False) -> True new_compare113(vyw43000, vyw44000, False) -> GT new_esEs19(:%(vyw300, vyw301), :%(vyw4000, vyw4001), cbb) -> new_asAs(new_esEs24(vyw300, vyw4000, cbb), new_esEs25(vyw301, vyw4001, cbb)) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs6(vyw300, vyw4000, dfd, dfe, dff) new_esEs11(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, cc) -> new_asAs(new_esEs10(vyw300, vyw4000, ca), new_asAs(new_esEs11(vyw301, vyw4001, cb), new_esEs12(vyw302, vyw4002, cc))) new_esEs12(vyw302, vyw4002, ty_@0) -> new_esEs16(vyw302, vyw4002) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs13(vyw33, vyw28) new_esEs23(vyw300, vyw4000, app(app(ty_Either, bfa), bfb)) -> new_esEs5(vyw300, vyw4000, bfa, bfb) new_compare11(vyw43000, vyw44000, bfe, bff) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, bfe, bff), bfe, bff) new_esEs26(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs17(vyw43001, vyw44001) new_compare7(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs8(GT, GT) -> True new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs14(vyw33, vyw28) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(vyw18, vyw13, chd, che, chf) new_compare211(Left(vyw4300), Right(vyw4400), False, dae, daf) -> LT new_esEs27(vyw43001, vyw44001, app(ty_[], ddc)) -> new_esEs17(vyw43001, vyw44001, ddc) new_esEs8(EQ, EQ) -> True new_esEs22(vyw301, vyw4001, app(ty_Maybe, bcf)) -> new_esEs4(vyw301, vyw4001, bcf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_compare14(vyw43000, vyw44000, app(ty_Maybe, bhg)) -> new_compare15(vyw43000, vyw44000, bhg) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs15(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, hb), hc), hd), ge) -> new_ltEs14(vyw43000, vyw44000, hb, hc, hd) new_ltEs21(vyw43001, vyw44001, app(ty_[], eac)) -> new_ltEs13(vyw43001, vyw44001, eac) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_esEs12(vyw302, vyw4002, app(app(ty_Either, gb), gc)) -> new_esEs5(vyw302, vyw4002, gb, gc) new_ltEs17(LT, GT) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_@2, he), hf), ge) -> new_ltEs15(vyw43000, vyw44000, he, hf) new_ltEs18(vyw4300, vyw4400, app(ty_Maybe, cbe)) -> new_ltEs7(vyw4300, vyw4400, cbe) new_not(True) -> False new_esEs20(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_primCompAux00(vyw157, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs6(vyw300, vyw4000, bbe, bbf, bbg) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(ty_Maybe, fa)) -> new_esEs4(vyw302, vyw4002, fa) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_Maybe, cga)) -> new_esEs4(vyw300, vyw4000, cga) new_esEs22(vyw301, vyw4001, app(ty_Ratio, bde)) -> new_esEs19(vyw301, vyw4001, bde) new_esEs30(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs17(EQ, GT) -> True new_esEs11(vyw301, vyw4001, app(ty_Maybe, dg)) -> new_esEs4(vyw301, vyw4001, dg) new_esEs26(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, bfd) -> new_compare10(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, bfd), bfd) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, cbd) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs15(vyw33, vyw28) new_lt13(vyw43000, vyw44000, bhc, bhd, bhe) -> new_esEs8(new_compare26(vyw43000, vyw44000, bhc, bhd, bhe), LT) new_esEs10(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs18(vyw4300, vyw4400, app(app(ty_Either, hg), ge)) -> new_ltEs6(vyw4300, vyw4400, hg, ge) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_Either, gf), gg), ge) -> new_ltEs6(vyw43000, vyw44000, gf, gg) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare16(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, cfc), cfd), cbd) -> new_esEs7(vyw300, vyw4000, cfc, cfd) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_lt12(vyw43000, vyw44000, bfd) -> new_esEs8(new_compare15(vyw43000, vyw44000, bfd), LT) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs7(Nothing, Just(vyw44000), cbe) -> True new_lt18(vyw43001, vyw44001, ty_@0) -> new_lt11(vyw43001, vyw44001) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_ltEs20(vyw43002, vyw44002, ty_Int) -> new_ltEs10(vyw43002, vyw44002) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Double) -> new_esEs13(vyw300, vyw4000) new_lt17(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_ltEs17(LT, LT) -> True new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_lt13(vyw43000, vyw44000, dhb, dhc, dhd) new_esEs22(vyw301, vyw4001, app(app(ty_@2, bdb), bdc)) -> new_esEs7(vyw301, vyw4001, bdb, bdc) new_primCompAux00(vyw157, GT) -> GT new_compare110(vyw43000, vyw44000, True) -> LT new_compare14(vyw43000, vyw44000, ty_Integer) -> new_compare16(vyw43000, vyw44000) new_esEs12(vyw302, vyw4002, app(ty_Ratio, ga)) -> new_esEs19(vyw302, vyw4002, ga) new_lt17(vyw43000, vyw44000, app(ty_Ratio, bfc)) -> new_lt5(vyw43000, vyw44000, bfc) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Integer, ge) -> new_ltEs8(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Maybe, gd), ge) -> new_ltEs7(vyw43000, vyw44000, gd) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs12(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, ead), eae), eaf)) -> new_ltEs14(vyw43001, vyw44001, ead, eae, eaf) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_Ratio, cgh)) -> new_esEs19(vyw300, vyw4000, cgh) new_ltEs5(False, True) -> True new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_lt17(vyw43000, vyw44000, app(ty_[], ceb)) -> new_lt7(vyw43000, vyw44000, ceb) new_primPlusNat1(Succ(vyw15200), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat1(vyw15200, vyw4000000))) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, ceg), cbd) -> new_esEs4(vyw300, vyw4000, ceg) new_esEs12(vyw302, vyw4002, ty_Float) -> new_esEs20(vyw302, vyw4002) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs6(vyw30, vyw400, bfh, bga, bgb) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, bfe, bff) -> new_esEs8(new_compare11(vyw43000, vyw44000, bfe, bff), LT) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_Maybe, hh)) -> new_ltEs7(vyw43000, vyw44000, hh) new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs9(vyw43001, vyw44001) new_ltEs20(vyw43002, vyw44002, app(ty_Maybe, dea)) -> new_ltEs7(vyw43002, vyw44002, dea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Char) -> new_compare17(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], ccb)) -> new_ltEs13(vyw43000, vyw44000, ccb) new_ltEs19(vyw4300, vyw4400, app(ty_[], dca)) -> new_ltEs13(vyw4300, vyw4400, dca) new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_esEs27(vyw43001, vyw44001, app(app(ty_@2, ddg), ddh)) -> new_esEs7(vyw43001, vyw44001, ddg, ddh) new_pePe(False, vyw151) -> vyw151 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs13(vyw43001, vyw44001) new_esEs11(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare25(vyw43000, vyw44000, True, bfe, bff) -> EQ new_lt18(vyw43001, vyw44001, ty_Bool) -> new_lt9(vyw43001, vyw44001) new_compare210(vyw43000, vyw44000, True, bfd) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs14(vyw4300, vyw4400, dcb, dcc, dcd) new_compare112(vyw43000, vyw44000, True, bfe, bff) -> LT new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs18(vyw43001, vyw44001) new_esEs17([], [], bdh) -> True new_compare14(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_compare10(vyw43000, vyw44000, False, bfd) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs23(vyw300, vyw4000, app(ty_Maybe, bea)) -> new_esEs4(vyw300, vyw4000, bea) new_esEs32(vyw33, vyw28, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs6(vyw33, vyw28, cda, cdb, cdc) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs12(vyw302, vyw4002, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw302, vyw4002, ff, fg) new_ltEs14(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), dah, dba, dbb) -> new_pePe(new_lt17(vyw43000, vyw44000, dah), new_asAs(new_esEs26(vyw43000, vyw44000, dah), new_pePe(new_lt18(vyw43001, vyw44001, dba), new_asAs(new_esEs27(vyw43001, vyw44001, dba), new_ltEs20(vyw43002, vyw44002, dbb))))) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs30(vyw30, vyw400, app(ty_[], bdh)) -> new_esEs17(vyw30, vyw400, bdh) new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, eag), eah)) -> new_ltEs15(vyw43001, vyw44001, eag, eah) new_ltEs20(vyw43002, vyw44002, app(app(app(ty_@3, def), deg), deh)) -> new_ltEs14(vyw43002, vyw44002, def, deg, deh) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(ty_@2, cge), cgf)) -> new_esEs7(vyw300, vyw4000, cge, cgf) new_lt20(vyw43000, vyw44000, app(ty_Maybe, dge)) -> new_lt12(vyw43000, vyw44000, dge) new_ltEs20(vyw43002, vyw44002, ty_Float) -> new_ltEs4(vyw43002, vyw44002) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw43002, vyw44002, ty_@0) -> new_ltEs16(vyw43002, vyw44002) new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_compare211(Right(vyw4300), Right(vyw4400), False, dae, daf) -> new_compare12(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, daf), dae, daf) new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare27(vyw43000, vyw44000), LT) new_lt18(vyw43001, vyw44001, app(ty_Ratio, ddb)) -> new_lt5(vyw43001, vyw44001, ddb) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, ddb)) -> new_esEs19(vyw43001, vyw44001, ddb) new_esEs32(vyw33, vyw28, app(app(ty_Either, cdh), cea)) -> new_esEs5(vyw33, vyw28, cdh, cea) new_compare10(vyw43000, vyw44000, True, bfd) -> LT new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs16(vyw33, vyw28) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_primPlusNat0(Zero, vyw400000) -> Succ(vyw400000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs20(vyw43002, vyw44002, ty_Double) -> new_ltEs12(vyw43002, vyw44002) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(ty_Either, baa), bab)) -> new_ltEs6(vyw43000, vyw44000, baa, bab) new_esEs31(vyw30, vyw400, app(ty_Maybe, bfg)) -> new_esEs4(vyw30, vyw400, bfg) new_ltEs5(True, False) -> False new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare17(vyw4300, vyw4400), GT)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, cfg), cfh), cbd) -> new_esEs5(vyw300, vyw4000, cfg, cfh) new_esEs28(vyw43000, vyw44000, app(ty_[], dha)) -> new_esEs17(vyw43000, vyw44000, dha) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs10(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bcd), bce)) -> new_esEs5(vyw300, vyw4000, bcd, bce) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_esEs8(LT, LT) -> True new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs20(vyw30, vyw400) new_esEs12(vyw302, vyw4002, ty_Bool) -> new_esEs9(vyw302, vyw4002) new_compare13(vyw43000, vyw44000, False, bhc, bhd, bhe) -> GT new_esEs29(vyw18, vyw13, app(ty_[], daa)) -> new_esEs17(vyw18, vyw13, daa) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(vyw301, vyw4001, bcg, bch, bda) new_esEs30(vyw30, vyw400, ty_@0) -> new_esEs16(vyw30, vyw400) new_primPlusNat1(Succ(vyw15200), Zero) -> Succ(vyw15200) new_primPlusNat1(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_compare14(vyw43000, vyw44000, app(app(ty_Either, bhh), caa)) -> new_compare19(vyw43000, vyw44000, bhh, caa) new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], cfe), cbd) -> new_esEs17(vyw300, vyw4000, cfe) new_esEs10(vyw300, vyw4000, app(ty_Maybe, cd)) -> new_esEs4(vyw300, vyw4000, cd) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Float) -> new_compare5(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, app(app(app(ty_@3, cad), cae), caf)) -> new_compare26(vyw43000, vyw44000, cad, cae, caf) new_esEs26(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(vyw300, vyw4000, beb, bec, bed) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs16(vyw30, vyw400) new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, eab)) -> new_ltEs11(vyw43001, vyw44001, eab) new_esEs21(vyw300, vyw4000, app(ty_Maybe, bbd)) -> new_esEs4(vyw300, vyw4000, bbd) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_lt20(vyw43000, vyw44000, app(ty_Ratio, dgh)) -> new_lt5(vyw43000, vyw44000, dgh) new_compare([], :(vyw44000, vyw44001), bhf) -> LT new_esEs11(vyw301, vyw4001, app(app(ty_Either, eg), eh)) -> new_esEs5(vyw301, vyw4001, eg, eh) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, cbd) -> new_esEs9(vyw300, vyw4000) new_esEs32(vyw33, vyw28, app(ty_Maybe, cch)) -> new_esEs4(vyw33, vyw28, cch) new_esEs12(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_@2, bfe), bff)) -> new_lt6(vyw43000, vyw44000, bfe, bff) new_ltEs18(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs22(vyw301, vyw4001, app(app(ty_Either, bdf), bdg)) -> new_esEs5(vyw301, vyw4001, bdf, bdg) new_ltEs17(EQ, EQ) -> True new_ltEs20(vyw43002, vyw44002, ty_Ordering) -> new_ltEs17(vyw43002, vyw44002) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, dfc)) -> new_esEs4(vyw300, vyw4000, dfc) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs20(vyw33, vyw28) new_ltEs18(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs6(vyw301, vyw4001, dh, ea, eb) new_compare14(vyw43000, vyw44000, ty_Ordering) -> new_compare27(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs14(vyw4300, vyw4400, dah, dba, dbb) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_compare18(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_ltEs17(GT, LT) -> False new_esEs10(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs17(EQ, LT) -> False new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, ccf), ccg)) -> new_ltEs15(vyw43000, vyw44000, ccf, ccg) new_lt5(vyw43000, vyw44000, bfc) -> new_esEs8(new_compare9(vyw43000, vyw44000, bfc), LT) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgb, cgc, cgd) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Bool, ge) -> new_ltEs5(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_Maybe, cba)) -> new_esEs4(vyw30, vyw400, cba) new_esEs31(vyw30, vyw400, app(ty_[], bge)) -> new_esEs17(vyw30, vyw400, bge) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], dga)) -> new_esEs17(vyw300, vyw4000, dga) new_lt17(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs4(vyw43001, vyw44001) new_ltEs5(False, False) -> True new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_esEs10(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(vyw43001, vyw44001, ddd, dde, ddf) new_esEs10(vyw300, vyw4000, app(app(ty_Either, de), df)) -> new_esEs5(vyw300, vyw4000, de, df) new_lt16(vyw43000, vyw44000, cee, cef) -> new_esEs8(new_compare19(vyw43000, vyw44000, cee, cef), LT) new_lt20(vyw43000, vyw44000, app(ty_[], dha)) -> new_lt7(vyw43000, vyw44000, dha) new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs16(vyw43001, vyw44001) new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_lt18(vyw43001, vyw44001, ty_Double) -> new_lt4(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, dce), dcf)) -> new_ltEs15(vyw4300, vyw4400, dce, dcf) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs16(vyw18, vyw13) new_asAs(True, vyw129) -> vyw129 new_lt18(vyw43001, vyw44001, app(app(ty_@2, ddg), ddh)) -> new_lt6(vyw43001, vyw44001, ddg, ddh) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) new_compare113(vyw43000, vyw44000, True) -> LT new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_Ratio, cbb)) -> new_esEs19(vyw30, vyw400, cbb) new_esEs10(vyw300, vyw4000, app(ty_[], dc)) -> new_esEs17(vyw300, vyw4000, dc) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Ratio, gh), ge) -> new_ltEs11(vyw43000, vyw44000, gh) new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, dhg)) -> new_ltEs7(vyw43001, vyw44001, dhg) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, cbd) -> new_esEs15(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(vyw302, vyw4002, fb, fc, fd) new_esEs16(@0, @0) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Int, ge) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs20(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_Ratio, bac)) -> new_ltEs11(vyw43000, vyw44000, bac) new_esEs10(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_compare111(vyw134, vyw135, False, cec, ced) -> GT new_ltEs20(vyw43002, vyw44002, app(app(ty_@2, dfa), dfb)) -> new_ltEs15(vyw43002, vyw44002, dfa, dfb) new_ltEs20(vyw43002, vyw44002, ty_Integer) -> new_ltEs8(vyw43002, vyw44002) new_ltEs20(vyw43002, vyw44002, app(ty_Ratio, ded)) -> new_ltEs11(vyw43002, vyw44002, ded) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs16(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, dgc), dgd)) -> new_esEs5(vyw300, vyw4000, dgc, dgd) new_esEs30(vyw30, vyw400, app(app(ty_@2, bbb), bbc)) -> new_esEs7(vyw30, vyw400, bbb, bbc) new_compare24(vyw43000, vyw44000, False) -> new_compare113(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare16(vyw43000, vyw44000), LT) new_esEs29(vyw18, vyw13, app(app(ty_Either, dac), dad)) -> new_esEs5(vyw18, vyw13, dac, dad) new_compare110(vyw43000, vyw44000, False) -> GT new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCompAux00(vyw157, EQ) -> vyw157 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, dhh), eaa)) -> new_ltEs6(vyw43001, vyw44001, dhh, eaa) new_ltEs7(Nothing, Nothing, cbe) -> True new_esEs9(True, True) -> True new_lt18(vyw43001, vyw44001, ty_Ordering) -> new_lt19(vyw43001, vyw44001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare17(vyw43000, vyw44000), LT) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, ty_Double) -> new_compare6(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, cbd) -> new_esEs14(vyw300, vyw4000) new_primMulNat0(Zero, Zero) -> Zero new_lt7(vyw43000, vyw44000, ceb) -> new_esEs8(new_compare(vyw43000, vyw44000, ceb), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, cbd) -> new_esEs13(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs30(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bdh) -> new_asAs(new_esEs23(vyw300, vyw4000, bdh), new_esEs17(vyw301, vyw4001, bdh)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, app(ty_[], bhf)) -> new_ltEs13(vyw4300, vyw4400, bhf) new_ltEs7(Just(vyw43000), Nothing, cbe) -> False new_esEs28(vyw43000, vyw44000, app(ty_Maybe, dge)) -> new_esEs4(vyw43000, vyw44000, dge) new_esEs23(vyw300, vyw4000, app(app(ty_@2, bee), bef)) -> new_esEs7(vyw300, vyw4000, bee, bef) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_compare14(vyw43000, vyw44000, ty_Bool) -> new_compare7(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, True, bhc, bhd, bhe) -> EQ new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_esEs4(Nothing, Nothing, cba) -> True new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(ty_Either, cha), chb)) -> new_esEs5(vyw300, vyw4000, cha, chb) new_esEs4(Nothing, Just(vyw4000), cba) -> False new_esEs4(Just(vyw300), Nothing, cba) -> False new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cca)) -> new_ltEs11(vyw43000, vyw44000, cca) new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, dbh)) -> new_ltEs11(vyw4300, vyw4400, dbh) new_esEs29(vyw18, vyw13, app(ty_Ratio, dab)) -> new_esEs19(vyw18, vyw13, dab) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_compare26(vyw43000, vyw44000, bhc, bhd, bhe) -> new_compare28(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, bhc, bhd, bhe), bhc, bhd, bhe) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Float, ge) -> new_ltEs4(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, cbd) -> new_esEs20(vyw300, vyw4000) new_esEs30(vyw30, vyw400, ty_Float) -> new_esEs20(vyw30, vyw400) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_[], bad)) -> new_ltEs13(vyw43000, vyw44000, bad) new_primCompAux0(vyw43000, vyw44000, vyw153, bhf) -> new_primCompAux00(vyw153, new_compare14(vyw43000, vyw44000, bhf)) new_ltEs18(vyw4300, vyw4400, app(ty_Ratio, dag)) -> new_ltEs11(vyw4300, vyw4400, dag) new_esEs21(vyw300, vyw4000, app(ty_[], bcb)) -> new_esEs17(vyw300, vyw4000, bcb) new_ltEs13(vyw4300, vyw4400, bhf) -> new_not(new_esEs8(new_compare(vyw4300, vyw4400, bhf), GT)) new_esEs7(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbb, bbc) -> new_asAs(new_esEs21(vyw300, vyw4000, bbb), new_esEs22(vyw301, vyw4001, bbc)) new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, dbe)) -> new_ltEs7(vyw4300, vyw4400, dbe) new_lt18(vyw43001, vyw44001, ty_Float) -> new_lt8(vyw43001, vyw44001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_compare([], [], bhf) -> EQ new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_lt18(vyw43001, vyw44001, ty_Int) -> new_lt10(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs8(vyw43001, vyw44001) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs20(vyw18, vyw13) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, dgh)) -> new_esEs19(vyw43000, vyw44000, dgh) new_lt17(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw43002, vyw44002, app(app(ty_Either, deb), dec)) -> new_ltEs6(vyw43002, vyw44002, deb, dec) new_lt17(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs28(vyw43000, vyw44000, app(app(ty_@2, dhe), dhf)) -> new_esEs7(vyw43000, vyw44000, dhe, dhf) new_ltEs18(vyw4300, vyw4400, app(app(ty_@2, dbc), dbd)) -> new_ltEs15(vyw4300, vyw4400, dbc, dbd) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_lt8(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs15(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dbc, dbd) -> new_pePe(new_lt20(vyw43000, vyw44000, dbc), new_asAs(new_esEs28(vyw43000, vyw44000, dbc), new_ltEs21(vyw43001, vyw44001, dbd))) new_esEs26(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_lt18(vyw43001, vyw44001, app(ty_Maybe, dcg)) -> new_lt12(vyw43001, vyw44001, dcg) new_lt20(vyw43000, vyw44000, app(app(ty_@2, dhe), dhf)) -> new_lt6(vyw43000, vyw44000, dhe, dhf) new_esEs23(vyw300, vyw4000, app(ty_Ratio, beh)) -> new_esEs19(vyw300, vyw4000, beh) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_esEs32(vyw33, vyw28, app(ty_[], cdf)) -> new_esEs17(vyw33, vyw28, cdf) new_esEs26(vyw43000, vyw44000, app(ty_[], ceb)) -> new_esEs17(vyw43000, vyw44000, ceb) new_esEs31(vyw30, vyw400, app(app(ty_Either, bgg), bgh)) -> new_esEs5(vyw30, vyw400, bgg, bgh) new_esEs10(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_compare211(vyw430, vyw440, True, dae, daf) -> EQ new_compare13(vyw43000, vyw44000, True, bhc, bhd, bhe) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, dbf), dbg)) -> new_ltEs6(vyw4300, vyw4400, dbf, dbg) new_esEs29(vyw18, vyw13, app(ty_Maybe, chc)) -> new_esEs4(vyw18, vyw13, chc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, cbg), cbh)) -> new_ltEs6(vyw43000, vyw44000, cbg, cbh) new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs26(vyw43000, vyw44000, app(app(ty_Either, cee), cef)) -> new_esEs5(vyw43000, vyw44000, cee, cef) new_esEs12(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_Either, cee), cef)) -> new_lt16(vyw43000, vyw44000, cee, cef) new_compare14(vyw43000, vyw44000, app(ty_[], cac)) -> new_compare(vyw43000, vyw44000, cac) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, ceh), cfa), cfb), cbd) -> new_esEs6(vyw300, vyw4000, ceh, cfa, cfb) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cbf)) -> new_ltEs7(vyw43000, vyw44000, cbf) new_esEs26(vyw43000, vyw44000, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs6(vyw43000, vyw44000, bhc, bhd, bhe) new_compare112(vyw43000, vyw44000, False, bfe, bff) -> GT new_esEs10(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_lt13(vyw43000, vyw44000, bhc, bhd, bhe) new_ltEs20(vyw43002, vyw44002, app(ty_[], dee)) -> new_ltEs13(vyw43002, vyw44002, dee) new_compare16(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs9(vyw30, vyw400) new_ltEs6(Right(vyw43000), Left(vyw44000), hg, ge) -> False new_esEs11(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_not(False) -> True new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, cff), cbd) -> new_esEs19(vyw300, vyw4000, cff) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_[], ha), ge) -> new_ltEs13(vyw43000, vyw44000, ha) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_esEs10(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Char, ge) -> new_ltEs9(vyw43000, vyw44000) new_compare211(Right(vyw4300), Left(vyw4400), False, dae, daf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw43000, vyw44000, True) -> EQ new_esEs31(vyw30, vyw400, app(ty_Ratio, bgf)) -> new_esEs19(vyw30, vyw400, bgf) new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) new_esEs5(Left(vyw300), Right(vyw4000), cbc, cbd) -> False new_esEs5(Right(vyw300), Left(vyw4000), cbc, cbd) -> False new_lt18(vyw43001, vyw44001, app(ty_[], ddc)) -> new_lt7(vyw43001, vyw44001, ddc) new_compare15(vyw43000, vyw44000, bfd) -> new_compare210(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, bfd), bfd) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_@2, chg), chh)) -> new_esEs7(vyw18, vyw13, chg, chh) new_esEs30(vyw30, vyw400, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs6(vyw30, vyw400, ca, cb, cc) new_esEs30(vyw30, vyw400, app(app(ty_Either, cbc), cbd)) -> new_esEs5(vyw30, vyw400, cbc, cbd) new_primPlusNat0(Succ(vyw1520), vyw400000) -> Succ(Succ(new_primPlusNat1(vyw1520, vyw400000))) new_lt17(vyw43000, vyw44000, app(ty_Maybe, bfd)) -> new_lt12(vyw43000, vyw44000, bfd) new_compare28(vyw43000, vyw44000, False, bhc, bhd, bhe) -> new_compare13(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, bhc, bhd, bhe), bhc, bhd, bhe) new_lt17(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_sr0(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, ccc), ccd), cce)) -> new_ltEs14(vyw43000, vyw44000, ccc, ccd, cce) new_esEs12(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs11(vyw4300, vyw4400, dag) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, dag), GT)) new_compare14(vyw43000, vyw44000, app(ty_Ratio, cab)) -> new_compare9(vyw43000, vyw44000, cab) new_primPlusNat1(Zero, Zero) -> Zero new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs5(True, True) -> True new_esEs22(vyw301, vyw4001, app(ty_[], bdd)) -> new_esEs17(vyw301, vyw4001, bdd) new_esEs10(vyw300, vyw4000, app(ty_Ratio, dd)) -> new_esEs19(vyw300, vyw4000, dd) new_esEs10(vyw300, vyw4000, app(app(ty_@2, da), db)) -> new_esEs7(vyw300, vyw4000, da, db) new_ltEs17(GT, EQ) -> False new_esEs26(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_lt18(vyw43001, vyw44001, ty_Char) -> new_lt14(vyw43001, vyw44001) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt17(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_compare211(Left(vyw4300), Left(vyw4400), False, dae, daf) -> new_compare111(vyw4300, vyw4400, new_ltEs18(vyw4300, vyw4400, dae), dae, daf) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bcc)) -> new_esEs19(vyw300, vyw4000, bcc) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(ty_@2, bah), bba)) -> new_ltEs15(vyw43000, vyw44000, bah, bba) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat0(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, app(app(ty_Either, dgf), dgg)) -> new_lt16(vyw43000, vyw44000, dgf, dgg) new_esEs12(vyw302, vyw4002, app(ty_[], fh)) -> new_esEs17(vyw302, vyw4002, fh) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_@0, ge) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, app(app(ty_@2, bbh), bca)) -> new_esEs7(vyw300, vyw4000, bbh, bca) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, dcg)) -> new_esEs4(vyw43001, vyw44001, dcg) new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, cbd) -> new_esEs16(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dfg), dfh)) -> new_esEs7(vyw300, vyw4000, dfg, dfh) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs9(vyw18, vyw13) new_esEs11(vyw301, vyw4001, app(ty_[], ee)) -> new_esEs17(vyw301, vyw4001, ee) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs5(vyw43001, vyw44001) new_compare8(@0, @0) -> EQ new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs17(GT, GT) -> True new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dgb)) -> new_esEs19(vyw300, vyw4000, dgb) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Ordering, ge) -> new_ltEs17(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Maybe, bfd)) -> new_esEs4(vyw43000, vyw44000, bfd) new_primEqNat0(Zero, Zero) -> True new_compare17(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, dgf), dgg)) -> new_esEs5(vyw43000, vyw44000, dgf, dgg) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs32(vyw33, vyw28, app(app(ty_@2, cdd), cde)) -> new_esEs7(vyw33, vyw28, cdd, cde) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs6(vyw43000, vyw44000, dhb, dhc, dhd) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_esEs31(vyw30, vyw400, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw30, vyw400, bgc, bgd) new_esEs30(vyw30, vyw400, ty_Bool) -> new_esEs9(vyw30, vyw400) new_asAs(False, vyw129) -> False new_esEs17(:(vyw300, vyw301), [], bdh) -> False new_esEs17([], :(vyw4000, vyw4001), bdh) -> False new_ltEs20(vyw43002, vyw44002, ty_Bool) -> new_ltEs5(vyw43002, vyw44002) new_ltEs8(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare16(vyw4300, vyw4400), GT)) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare18(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs14(vyw43000, vyw44000, bae, baf, bag) new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs18(vyw33, vyw28) new_ltEs6(Left(vyw43000), Right(vyw44000), hg, ge) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare12(vyw141, vyw142, True, bha, bhb) -> LT new_lt18(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_[], cgg)) -> new_esEs17(vyw300, vyw4000, cgg) new_compare14(vyw43000, vyw44000, app(app(ty_@2, cag), cah)) -> new_compare11(vyw43000, vyw44000, cag, cah) new_esEs10(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_compare25(vyw43000, vyw44000, False, bfe, bff) -> new_compare112(vyw43000, vyw44000, new_ltEs15(vyw43000, vyw44000, bfe, bff), bfe, bff) new_esEs26(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) The set Q consists of the following terms: new_esEs12(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Int) new_lt18(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_ltEs17(EQ, EQ) new_compare210(x0, x1, False, x2) new_ltEs18(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, ty_Double) new_lt17(x0, x1, ty_Int) new_esEs4(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs11(x0, x1, ty_@0) new_esEs4(Nothing, Just(x0), x1) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_@0) new_lt17(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, False, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Integer) new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_@0) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, False, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, False, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_sr0(x0, x1) new_ltEs20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_pePe(False, x0) new_esEs29(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_ltEs11(x0, x1, x2) new_compare14(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare([], :(x0, x1), x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare211(x0, x1, True, x2, x3) new_lt13(x0, x1, x2, x3, x4) new_lt6(x0, x1, x2, x3) new_compare14(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Double) new_compare(:(x0, x1), [], x2) new_ltEs18(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare29(x0, x1, False) new_esEs31(x0, x1, ty_Ordering) new_lt16(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_Float) new_compare211(Left(x0), Right(x1), False, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare211(Right(x0), Left(x1), False, x2, x3) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs7(Nothing, Nothing, x0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs9(False, False) new_esEs22(x0, x1, ty_Double) new_esEs4(Just(x0), Just(x1), ty_Int) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_lt8(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs28(x0, x1, ty_Char) new_primPlusNat0(Zero, x0) new_lt17(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt17(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(Right(x0), Right(x1), False, x2, x3) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt18(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, EQ) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt18(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Nothing, x1) new_ltEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Char) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare112(x0, x1, False, x2, x3) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_@0) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_Int) new_compare210(x0, x1, True, x2) new_ltEs18(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Ordering) new_esEs17([], :(x0, x1), x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, ty_Float) new_esEs4(Nothing, Nothing, x0) new_ltEs13(x0, x1, x2) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_compare14(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare113(x0, x1, True) new_esEs23(x0, x1, ty_Int) new_lt18(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare14(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare211(Left(x0), Left(x1), False, x2, x3) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, True) new_esEs31(x0, x1, ty_Int) new_ltEs8(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_ltEs9(x0, x1) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_compare(:(x0, x1), :(x2, x3), x4) new_lt5(x0, x1, x2) new_esEs22(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs24(x0, x1, ty_Int) new_ltEs17(LT, LT) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_lt18(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs10(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Float) new_ltEs7(Nothing, Just(x0), x1) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs12(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_compare29(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs17(GT, GT) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_esEs17(:(x0, x1), :(x2, x3), x4) new_lt18(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs10(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare17(Char(x0), Char(x1)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(True, True) new_esEs4(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs12(x0, x1, ty_Double) new_esEs16(@0, @0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs7(Just(x0), Nothing, x1) new_lt19(x0, x1) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, ty_Bool) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs20(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Double) new_compare112(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_compare18(x0, x1) new_primMulNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, x2) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare113(x0, x1, False) new_ltEs21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_sr(Integer(x0), Integer(x1)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare25(x0, x1, True, x2, x3) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, False) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Bool) new_not(True) new_compare15(x0, x1, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare13(x0, x1, True, x2, x3, x4) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs10(x0, x1) new_compare19(x0, x1, x2, x3) new_esEs12(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Int) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_compare14(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Integer) new_compare12(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Int) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt17(x0, x1, ty_Float) new_asAs(True, x0) new_lt18(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Just(x0), Just(x1), ty_Float) new_ltEs7(Just(x0), Just(x1), ty_Double) new_primCmpNat0(Succ(x0), Zero) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs12(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare14(x0, x1, app(ty_Maybe, x2)) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs27(x0, x1, ty_Char) new_esEs18(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs11(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Char) new_primCompAux00(x0, GT) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt15(x0, x1) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Float) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Double) new_compare14(x0, x1, ty_Bool) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs17([], [], x0) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1) new_lt17(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_@0) new_esEs9(False, True) new_esEs9(True, False) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs15(Integer(x0), Integer(x1)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Float) new_asAs(False, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare14(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt11(x0, x1) new_primEqNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_lt7(x0, x1, x2) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_lt18(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_not(False) new_lt17(x0, x1, app(ty_Ratio, x2)) new_compare14(x0, x1, ty_Integer) new_compare([], [], x0) new_esEs22(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, x2, x3, x4) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_esEs31(x0, x1, ty_@0) new_compare7(x0, x1) new_lt17(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs12(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare14(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Double) new_compare25(x0, x1, False, x2, x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Float) new_lt18(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1) new_lt17(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Integer) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs12(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare16(Integer(x0), Integer(x1)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt17(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_lt4(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (25) Complex Obligation (AND) ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw44, Right(vyw30), bc, bd, be) new_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Right(vyw400), new_esEs31(vyw30, vyw400, be), bd, be), LT), bc, bd, be) new_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare211(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_elemFM01(vyw32, Right(vyw33), bf, bg, bh) new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Left(vyw400), False, bd, be), LT), bc, bd, be) new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Left(vyw400), False, bd, be), GT), bc, bd, be) new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Right(vyw30), bc, bd, be) new_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_elemFM01(vyw31, Right(vyw33), bf, bg, bh) The TRS R consists of the following rules: new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs9(vyw33, vyw28) new_compare27(vyw43000, vyw44000) -> new_compare29(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs11(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs17(LT, EQ) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Ratio, bfc)) -> new_esEs19(vyw43000, vyw44000, bfc) new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(ty_[], beg)) -> new_esEs17(vyw300, vyw4000, beg) new_ltEs18(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare19(vyw43000, vyw44000, cee, cef) -> new_compare211(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cee, cef), cee, cef) new_pePe(True, vyw151) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, cbd) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw141, vyw142, False, bha, bhb) -> GT new_esEs30(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs11(vyw301, vyw4001, app(app(ty_@2, ec), ed)) -> new_esEs7(vyw301, vyw4001, ec, ed) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs16(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs10(vyw300, vyw4000, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs6(vyw300, vyw4000, ce, cf, cg) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs20(vyw43001, vyw44001) new_compare(:(vyw43000, vyw43001), [], bhf) -> GT new_lt18(vyw43001, vyw44001, app(app(ty_Either, dch), dda)) -> new_lt16(vyw43001, vyw44001, dch, dda) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Double, ge) -> new_ltEs12(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, dch), dda)) -> new_esEs5(vyw43001, vyw44001, dch, dda) new_esEs32(vyw33, vyw28, app(ty_Ratio, cdg)) -> new_esEs19(vyw33, vyw28, cdg) new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_esEs26(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs26(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bhf) -> new_primCompAux0(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, bhf), bhf) new_esEs11(vyw301, vyw4001, app(ty_Ratio, ef)) -> new_esEs19(vyw301, vyw4001, ef) new_esEs12(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_lt17(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Int) -> new_compare18(vyw43000, vyw44000) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs26(vyw43000, vyw44000, app(app(ty_@2, bfe), bff)) -> new_esEs7(vyw43000, vyw44000, bfe, bff) new_compare111(vyw134, vyw135, True, cec, ced) -> LT new_lt18(vyw43001, vyw44001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt13(vyw43001, vyw44001, ddd, dde, ddf) new_esEs9(False, False) -> True new_compare113(vyw43000, vyw44000, False) -> GT new_esEs19(:%(vyw300, vyw301), :%(vyw4000, vyw4001), cbb) -> new_asAs(new_esEs24(vyw300, vyw4000, cbb), new_esEs25(vyw301, vyw4001, cbb)) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs6(vyw300, vyw4000, dfd, dfe, dff) new_esEs11(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, cc) -> new_asAs(new_esEs10(vyw300, vyw4000, ca), new_asAs(new_esEs11(vyw301, vyw4001, cb), new_esEs12(vyw302, vyw4002, cc))) new_esEs12(vyw302, vyw4002, ty_@0) -> new_esEs16(vyw302, vyw4002) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs13(vyw33, vyw28) new_esEs23(vyw300, vyw4000, app(app(ty_Either, bfa), bfb)) -> new_esEs5(vyw300, vyw4000, bfa, bfb) new_compare11(vyw43000, vyw44000, bfe, bff) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, bfe, bff), bfe, bff) new_esEs26(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs17(vyw43001, vyw44001) new_compare7(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs8(GT, GT) -> True new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs14(vyw33, vyw28) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(vyw18, vyw13, chd, che, chf) new_compare211(Left(vyw4300), Right(vyw4400), False, dae, daf) -> LT new_esEs27(vyw43001, vyw44001, app(ty_[], ddc)) -> new_esEs17(vyw43001, vyw44001, ddc) new_esEs8(EQ, EQ) -> True new_esEs22(vyw301, vyw4001, app(ty_Maybe, bcf)) -> new_esEs4(vyw301, vyw4001, bcf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_compare14(vyw43000, vyw44000, app(ty_Maybe, bhg)) -> new_compare15(vyw43000, vyw44000, bhg) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs15(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, hb), hc), hd), ge) -> new_ltEs14(vyw43000, vyw44000, hb, hc, hd) new_ltEs21(vyw43001, vyw44001, app(ty_[], eac)) -> new_ltEs13(vyw43001, vyw44001, eac) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_esEs12(vyw302, vyw4002, app(app(ty_Either, gb), gc)) -> new_esEs5(vyw302, vyw4002, gb, gc) new_ltEs17(LT, GT) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_@2, he), hf), ge) -> new_ltEs15(vyw43000, vyw44000, he, hf) new_ltEs18(vyw4300, vyw4400, app(ty_Maybe, cbe)) -> new_ltEs7(vyw4300, vyw4400, cbe) new_not(True) -> False new_esEs20(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_primCompAux00(vyw157, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs6(vyw300, vyw4000, bbe, bbf, bbg) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(ty_Maybe, fa)) -> new_esEs4(vyw302, vyw4002, fa) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_Maybe, cga)) -> new_esEs4(vyw300, vyw4000, cga) new_esEs22(vyw301, vyw4001, app(ty_Ratio, bde)) -> new_esEs19(vyw301, vyw4001, bde) new_esEs30(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs17(EQ, GT) -> True new_esEs11(vyw301, vyw4001, app(ty_Maybe, dg)) -> new_esEs4(vyw301, vyw4001, dg) new_esEs26(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, bfd) -> new_compare10(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, bfd), bfd) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, cbd) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs15(vyw33, vyw28) new_lt13(vyw43000, vyw44000, bhc, bhd, bhe) -> new_esEs8(new_compare26(vyw43000, vyw44000, bhc, bhd, bhe), LT) new_esEs10(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs18(vyw4300, vyw4400, app(app(ty_Either, hg), ge)) -> new_ltEs6(vyw4300, vyw4400, hg, ge) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_Either, gf), gg), ge) -> new_ltEs6(vyw43000, vyw44000, gf, gg) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare16(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, cfc), cfd), cbd) -> new_esEs7(vyw300, vyw4000, cfc, cfd) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_lt12(vyw43000, vyw44000, bfd) -> new_esEs8(new_compare15(vyw43000, vyw44000, bfd), LT) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs7(Nothing, Just(vyw44000), cbe) -> True new_lt18(vyw43001, vyw44001, ty_@0) -> new_lt11(vyw43001, vyw44001) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_ltEs20(vyw43002, vyw44002, ty_Int) -> new_ltEs10(vyw43002, vyw44002) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Double) -> new_esEs13(vyw300, vyw4000) new_lt17(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_ltEs17(LT, LT) -> True new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_lt13(vyw43000, vyw44000, dhb, dhc, dhd) new_esEs22(vyw301, vyw4001, app(app(ty_@2, bdb), bdc)) -> new_esEs7(vyw301, vyw4001, bdb, bdc) new_primCompAux00(vyw157, GT) -> GT new_compare110(vyw43000, vyw44000, True) -> LT new_compare14(vyw43000, vyw44000, ty_Integer) -> new_compare16(vyw43000, vyw44000) new_esEs12(vyw302, vyw4002, app(ty_Ratio, ga)) -> new_esEs19(vyw302, vyw4002, ga) new_lt17(vyw43000, vyw44000, app(ty_Ratio, bfc)) -> new_lt5(vyw43000, vyw44000, bfc) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Integer, ge) -> new_ltEs8(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Maybe, gd), ge) -> new_ltEs7(vyw43000, vyw44000, gd) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs12(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, ead), eae), eaf)) -> new_ltEs14(vyw43001, vyw44001, ead, eae, eaf) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_Ratio, cgh)) -> new_esEs19(vyw300, vyw4000, cgh) new_ltEs5(False, True) -> True new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_lt17(vyw43000, vyw44000, app(ty_[], ceb)) -> new_lt7(vyw43000, vyw44000, ceb) new_primPlusNat1(Succ(vyw15200), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat1(vyw15200, vyw4000000))) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, ceg), cbd) -> new_esEs4(vyw300, vyw4000, ceg) new_esEs12(vyw302, vyw4002, ty_Float) -> new_esEs20(vyw302, vyw4002) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs6(vyw30, vyw400, bfh, bga, bgb) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, bfe, bff) -> new_esEs8(new_compare11(vyw43000, vyw44000, bfe, bff), LT) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_Maybe, hh)) -> new_ltEs7(vyw43000, vyw44000, hh) new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs9(vyw43001, vyw44001) new_ltEs20(vyw43002, vyw44002, app(ty_Maybe, dea)) -> new_ltEs7(vyw43002, vyw44002, dea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Char) -> new_compare17(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], ccb)) -> new_ltEs13(vyw43000, vyw44000, ccb) new_ltEs19(vyw4300, vyw4400, app(ty_[], dca)) -> new_ltEs13(vyw4300, vyw4400, dca) new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_esEs27(vyw43001, vyw44001, app(app(ty_@2, ddg), ddh)) -> new_esEs7(vyw43001, vyw44001, ddg, ddh) new_pePe(False, vyw151) -> vyw151 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs13(vyw43001, vyw44001) new_esEs11(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare25(vyw43000, vyw44000, True, bfe, bff) -> EQ new_lt18(vyw43001, vyw44001, ty_Bool) -> new_lt9(vyw43001, vyw44001) new_compare210(vyw43000, vyw44000, True, bfd) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs14(vyw4300, vyw4400, dcb, dcc, dcd) new_compare112(vyw43000, vyw44000, True, bfe, bff) -> LT new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs18(vyw43001, vyw44001) new_esEs17([], [], bdh) -> True new_compare14(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_compare10(vyw43000, vyw44000, False, bfd) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs23(vyw300, vyw4000, app(ty_Maybe, bea)) -> new_esEs4(vyw300, vyw4000, bea) new_esEs32(vyw33, vyw28, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs6(vyw33, vyw28, cda, cdb, cdc) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs12(vyw302, vyw4002, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw302, vyw4002, ff, fg) new_ltEs14(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), dah, dba, dbb) -> new_pePe(new_lt17(vyw43000, vyw44000, dah), new_asAs(new_esEs26(vyw43000, vyw44000, dah), new_pePe(new_lt18(vyw43001, vyw44001, dba), new_asAs(new_esEs27(vyw43001, vyw44001, dba), new_ltEs20(vyw43002, vyw44002, dbb))))) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs30(vyw30, vyw400, app(ty_[], bdh)) -> new_esEs17(vyw30, vyw400, bdh) new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, eag), eah)) -> new_ltEs15(vyw43001, vyw44001, eag, eah) new_ltEs20(vyw43002, vyw44002, app(app(app(ty_@3, def), deg), deh)) -> new_ltEs14(vyw43002, vyw44002, def, deg, deh) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(ty_@2, cge), cgf)) -> new_esEs7(vyw300, vyw4000, cge, cgf) new_lt20(vyw43000, vyw44000, app(ty_Maybe, dge)) -> new_lt12(vyw43000, vyw44000, dge) new_ltEs20(vyw43002, vyw44002, ty_Float) -> new_ltEs4(vyw43002, vyw44002) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw43002, vyw44002, ty_@0) -> new_ltEs16(vyw43002, vyw44002) new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_compare211(Right(vyw4300), Right(vyw4400), False, dae, daf) -> new_compare12(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, daf), dae, daf) new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare27(vyw43000, vyw44000), LT) new_lt18(vyw43001, vyw44001, app(ty_Ratio, ddb)) -> new_lt5(vyw43001, vyw44001, ddb) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, ddb)) -> new_esEs19(vyw43001, vyw44001, ddb) new_esEs32(vyw33, vyw28, app(app(ty_Either, cdh), cea)) -> new_esEs5(vyw33, vyw28, cdh, cea) new_compare10(vyw43000, vyw44000, True, bfd) -> LT new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs16(vyw33, vyw28) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_primPlusNat0(Zero, vyw400000) -> Succ(vyw400000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs20(vyw43002, vyw44002, ty_Double) -> new_ltEs12(vyw43002, vyw44002) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(ty_Either, baa), bab)) -> new_ltEs6(vyw43000, vyw44000, baa, bab) new_esEs31(vyw30, vyw400, app(ty_Maybe, bfg)) -> new_esEs4(vyw30, vyw400, bfg) new_ltEs5(True, False) -> False new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare17(vyw4300, vyw4400), GT)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, cfg), cfh), cbd) -> new_esEs5(vyw300, vyw4000, cfg, cfh) new_esEs28(vyw43000, vyw44000, app(ty_[], dha)) -> new_esEs17(vyw43000, vyw44000, dha) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs10(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bcd), bce)) -> new_esEs5(vyw300, vyw4000, bcd, bce) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_esEs8(LT, LT) -> True new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs20(vyw30, vyw400) new_esEs12(vyw302, vyw4002, ty_Bool) -> new_esEs9(vyw302, vyw4002) new_compare13(vyw43000, vyw44000, False, bhc, bhd, bhe) -> GT new_esEs29(vyw18, vyw13, app(ty_[], daa)) -> new_esEs17(vyw18, vyw13, daa) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(vyw301, vyw4001, bcg, bch, bda) new_esEs30(vyw30, vyw400, ty_@0) -> new_esEs16(vyw30, vyw400) new_primPlusNat1(Succ(vyw15200), Zero) -> Succ(vyw15200) new_primPlusNat1(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_compare14(vyw43000, vyw44000, app(app(ty_Either, bhh), caa)) -> new_compare19(vyw43000, vyw44000, bhh, caa) new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], cfe), cbd) -> new_esEs17(vyw300, vyw4000, cfe) new_esEs10(vyw300, vyw4000, app(ty_Maybe, cd)) -> new_esEs4(vyw300, vyw4000, cd) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Float) -> new_compare5(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, app(app(app(ty_@3, cad), cae), caf)) -> new_compare26(vyw43000, vyw44000, cad, cae, caf) new_esEs26(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(vyw300, vyw4000, beb, bec, bed) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs16(vyw30, vyw400) new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, eab)) -> new_ltEs11(vyw43001, vyw44001, eab) new_esEs21(vyw300, vyw4000, app(ty_Maybe, bbd)) -> new_esEs4(vyw300, vyw4000, bbd) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_lt20(vyw43000, vyw44000, app(ty_Ratio, dgh)) -> new_lt5(vyw43000, vyw44000, dgh) new_compare([], :(vyw44000, vyw44001), bhf) -> LT new_esEs11(vyw301, vyw4001, app(app(ty_Either, eg), eh)) -> new_esEs5(vyw301, vyw4001, eg, eh) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, cbd) -> new_esEs9(vyw300, vyw4000) new_esEs32(vyw33, vyw28, app(ty_Maybe, cch)) -> new_esEs4(vyw33, vyw28, cch) new_esEs12(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_@2, bfe), bff)) -> new_lt6(vyw43000, vyw44000, bfe, bff) new_ltEs18(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs22(vyw301, vyw4001, app(app(ty_Either, bdf), bdg)) -> new_esEs5(vyw301, vyw4001, bdf, bdg) new_ltEs17(EQ, EQ) -> True new_ltEs20(vyw43002, vyw44002, ty_Ordering) -> new_ltEs17(vyw43002, vyw44002) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, dfc)) -> new_esEs4(vyw300, vyw4000, dfc) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs20(vyw33, vyw28) new_ltEs18(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs6(vyw301, vyw4001, dh, ea, eb) new_compare14(vyw43000, vyw44000, ty_Ordering) -> new_compare27(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs14(vyw4300, vyw4400, dah, dba, dbb) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_compare18(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_ltEs17(GT, LT) -> False new_esEs10(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs17(EQ, LT) -> False new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, ccf), ccg)) -> new_ltEs15(vyw43000, vyw44000, ccf, ccg) new_lt5(vyw43000, vyw44000, bfc) -> new_esEs8(new_compare9(vyw43000, vyw44000, bfc), LT) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgb, cgc, cgd) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Bool, ge) -> new_ltEs5(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_Maybe, cba)) -> new_esEs4(vyw30, vyw400, cba) new_esEs31(vyw30, vyw400, app(ty_[], bge)) -> new_esEs17(vyw30, vyw400, bge) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], dga)) -> new_esEs17(vyw300, vyw4000, dga) new_lt17(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs4(vyw43001, vyw44001) new_ltEs5(False, False) -> True new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_esEs10(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(vyw43001, vyw44001, ddd, dde, ddf) new_esEs10(vyw300, vyw4000, app(app(ty_Either, de), df)) -> new_esEs5(vyw300, vyw4000, de, df) new_lt16(vyw43000, vyw44000, cee, cef) -> new_esEs8(new_compare19(vyw43000, vyw44000, cee, cef), LT) new_lt20(vyw43000, vyw44000, app(ty_[], dha)) -> new_lt7(vyw43000, vyw44000, dha) new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs16(vyw43001, vyw44001) new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_lt18(vyw43001, vyw44001, ty_Double) -> new_lt4(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, dce), dcf)) -> new_ltEs15(vyw4300, vyw4400, dce, dcf) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs16(vyw18, vyw13) new_asAs(True, vyw129) -> vyw129 new_lt18(vyw43001, vyw44001, app(app(ty_@2, ddg), ddh)) -> new_lt6(vyw43001, vyw44001, ddg, ddh) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) new_compare113(vyw43000, vyw44000, True) -> LT new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_Ratio, cbb)) -> new_esEs19(vyw30, vyw400, cbb) new_esEs10(vyw300, vyw4000, app(ty_[], dc)) -> new_esEs17(vyw300, vyw4000, dc) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Ratio, gh), ge) -> new_ltEs11(vyw43000, vyw44000, gh) new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, dhg)) -> new_ltEs7(vyw43001, vyw44001, dhg) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, cbd) -> new_esEs15(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(vyw302, vyw4002, fb, fc, fd) new_esEs16(@0, @0) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Int, ge) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs20(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_Ratio, bac)) -> new_ltEs11(vyw43000, vyw44000, bac) new_esEs10(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_compare111(vyw134, vyw135, False, cec, ced) -> GT new_ltEs20(vyw43002, vyw44002, app(app(ty_@2, dfa), dfb)) -> new_ltEs15(vyw43002, vyw44002, dfa, dfb) new_ltEs20(vyw43002, vyw44002, ty_Integer) -> new_ltEs8(vyw43002, vyw44002) new_ltEs20(vyw43002, vyw44002, app(ty_Ratio, ded)) -> new_ltEs11(vyw43002, vyw44002, ded) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs16(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, dgc), dgd)) -> new_esEs5(vyw300, vyw4000, dgc, dgd) new_esEs30(vyw30, vyw400, app(app(ty_@2, bbb), bbc)) -> new_esEs7(vyw30, vyw400, bbb, bbc) new_compare24(vyw43000, vyw44000, False) -> new_compare113(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare16(vyw43000, vyw44000), LT) new_esEs29(vyw18, vyw13, app(app(ty_Either, dac), dad)) -> new_esEs5(vyw18, vyw13, dac, dad) new_compare110(vyw43000, vyw44000, False) -> GT new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCompAux00(vyw157, EQ) -> vyw157 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, dhh), eaa)) -> new_ltEs6(vyw43001, vyw44001, dhh, eaa) new_ltEs7(Nothing, Nothing, cbe) -> True new_esEs9(True, True) -> True new_lt18(vyw43001, vyw44001, ty_Ordering) -> new_lt19(vyw43001, vyw44001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare17(vyw43000, vyw44000), LT) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, ty_Double) -> new_compare6(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, cbd) -> new_esEs14(vyw300, vyw4000) new_primMulNat0(Zero, Zero) -> Zero new_lt7(vyw43000, vyw44000, ceb) -> new_esEs8(new_compare(vyw43000, vyw44000, ceb), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, cbd) -> new_esEs13(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs30(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bdh) -> new_asAs(new_esEs23(vyw300, vyw4000, bdh), new_esEs17(vyw301, vyw4001, bdh)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, app(ty_[], bhf)) -> new_ltEs13(vyw4300, vyw4400, bhf) new_ltEs7(Just(vyw43000), Nothing, cbe) -> False new_esEs28(vyw43000, vyw44000, app(ty_Maybe, dge)) -> new_esEs4(vyw43000, vyw44000, dge) new_esEs23(vyw300, vyw4000, app(app(ty_@2, bee), bef)) -> new_esEs7(vyw300, vyw4000, bee, bef) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_compare14(vyw43000, vyw44000, ty_Bool) -> new_compare7(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, True, bhc, bhd, bhe) -> EQ new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_esEs4(Nothing, Nothing, cba) -> True new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(ty_Either, cha), chb)) -> new_esEs5(vyw300, vyw4000, cha, chb) new_esEs4(Nothing, Just(vyw4000), cba) -> False new_esEs4(Just(vyw300), Nothing, cba) -> False new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cca)) -> new_ltEs11(vyw43000, vyw44000, cca) new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, dbh)) -> new_ltEs11(vyw4300, vyw4400, dbh) new_esEs29(vyw18, vyw13, app(ty_Ratio, dab)) -> new_esEs19(vyw18, vyw13, dab) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_compare26(vyw43000, vyw44000, bhc, bhd, bhe) -> new_compare28(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, bhc, bhd, bhe), bhc, bhd, bhe) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Float, ge) -> new_ltEs4(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, cbd) -> new_esEs20(vyw300, vyw4000) new_esEs30(vyw30, vyw400, ty_Float) -> new_esEs20(vyw30, vyw400) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_[], bad)) -> new_ltEs13(vyw43000, vyw44000, bad) new_primCompAux0(vyw43000, vyw44000, vyw153, bhf) -> new_primCompAux00(vyw153, new_compare14(vyw43000, vyw44000, bhf)) new_ltEs18(vyw4300, vyw4400, app(ty_Ratio, dag)) -> new_ltEs11(vyw4300, vyw4400, dag) new_esEs21(vyw300, vyw4000, app(ty_[], bcb)) -> new_esEs17(vyw300, vyw4000, bcb) new_ltEs13(vyw4300, vyw4400, bhf) -> new_not(new_esEs8(new_compare(vyw4300, vyw4400, bhf), GT)) new_esEs7(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbb, bbc) -> new_asAs(new_esEs21(vyw300, vyw4000, bbb), new_esEs22(vyw301, vyw4001, bbc)) new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, dbe)) -> new_ltEs7(vyw4300, vyw4400, dbe) new_lt18(vyw43001, vyw44001, ty_Float) -> new_lt8(vyw43001, vyw44001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_compare([], [], bhf) -> EQ new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_lt18(vyw43001, vyw44001, ty_Int) -> new_lt10(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs8(vyw43001, vyw44001) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs20(vyw18, vyw13) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, dgh)) -> new_esEs19(vyw43000, vyw44000, dgh) new_lt17(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw43002, vyw44002, app(app(ty_Either, deb), dec)) -> new_ltEs6(vyw43002, vyw44002, deb, dec) new_lt17(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs28(vyw43000, vyw44000, app(app(ty_@2, dhe), dhf)) -> new_esEs7(vyw43000, vyw44000, dhe, dhf) new_ltEs18(vyw4300, vyw4400, app(app(ty_@2, dbc), dbd)) -> new_ltEs15(vyw4300, vyw4400, dbc, dbd) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_lt8(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs15(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dbc, dbd) -> new_pePe(new_lt20(vyw43000, vyw44000, dbc), new_asAs(new_esEs28(vyw43000, vyw44000, dbc), new_ltEs21(vyw43001, vyw44001, dbd))) new_esEs26(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_lt18(vyw43001, vyw44001, app(ty_Maybe, dcg)) -> new_lt12(vyw43001, vyw44001, dcg) new_lt20(vyw43000, vyw44000, app(app(ty_@2, dhe), dhf)) -> new_lt6(vyw43000, vyw44000, dhe, dhf) new_esEs23(vyw300, vyw4000, app(ty_Ratio, beh)) -> new_esEs19(vyw300, vyw4000, beh) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_esEs32(vyw33, vyw28, app(ty_[], cdf)) -> new_esEs17(vyw33, vyw28, cdf) new_esEs26(vyw43000, vyw44000, app(ty_[], ceb)) -> new_esEs17(vyw43000, vyw44000, ceb) new_esEs31(vyw30, vyw400, app(app(ty_Either, bgg), bgh)) -> new_esEs5(vyw30, vyw400, bgg, bgh) new_esEs10(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_compare211(vyw430, vyw440, True, dae, daf) -> EQ new_compare13(vyw43000, vyw44000, True, bhc, bhd, bhe) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, dbf), dbg)) -> new_ltEs6(vyw4300, vyw4400, dbf, dbg) new_esEs29(vyw18, vyw13, app(ty_Maybe, chc)) -> new_esEs4(vyw18, vyw13, chc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, cbg), cbh)) -> new_ltEs6(vyw43000, vyw44000, cbg, cbh) new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs26(vyw43000, vyw44000, app(app(ty_Either, cee), cef)) -> new_esEs5(vyw43000, vyw44000, cee, cef) new_esEs12(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_Either, cee), cef)) -> new_lt16(vyw43000, vyw44000, cee, cef) new_compare14(vyw43000, vyw44000, app(ty_[], cac)) -> new_compare(vyw43000, vyw44000, cac) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, ceh), cfa), cfb), cbd) -> new_esEs6(vyw300, vyw4000, ceh, cfa, cfb) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cbf)) -> new_ltEs7(vyw43000, vyw44000, cbf) new_esEs26(vyw43000, vyw44000, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs6(vyw43000, vyw44000, bhc, bhd, bhe) new_compare112(vyw43000, vyw44000, False, bfe, bff) -> GT new_esEs10(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_lt13(vyw43000, vyw44000, bhc, bhd, bhe) new_ltEs20(vyw43002, vyw44002, app(ty_[], dee)) -> new_ltEs13(vyw43002, vyw44002, dee) new_compare16(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs9(vyw30, vyw400) new_ltEs6(Right(vyw43000), Left(vyw44000), hg, ge) -> False new_esEs11(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_not(False) -> True new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, cff), cbd) -> new_esEs19(vyw300, vyw4000, cff) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_[], ha), ge) -> new_ltEs13(vyw43000, vyw44000, ha) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_esEs10(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Char, ge) -> new_ltEs9(vyw43000, vyw44000) new_compare211(Right(vyw4300), Left(vyw4400), False, dae, daf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw43000, vyw44000, True) -> EQ new_esEs31(vyw30, vyw400, app(ty_Ratio, bgf)) -> new_esEs19(vyw30, vyw400, bgf) new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) new_esEs5(Left(vyw300), Right(vyw4000), cbc, cbd) -> False new_esEs5(Right(vyw300), Left(vyw4000), cbc, cbd) -> False new_lt18(vyw43001, vyw44001, app(ty_[], ddc)) -> new_lt7(vyw43001, vyw44001, ddc) new_compare15(vyw43000, vyw44000, bfd) -> new_compare210(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, bfd), bfd) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_@2, chg), chh)) -> new_esEs7(vyw18, vyw13, chg, chh) new_esEs30(vyw30, vyw400, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs6(vyw30, vyw400, ca, cb, cc) new_esEs30(vyw30, vyw400, app(app(ty_Either, cbc), cbd)) -> new_esEs5(vyw30, vyw400, cbc, cbd) new_primPlusNat0(Succ(vyw1520), vyw400000) -> Succ(Succ(new_primPlusNat1(vyw1520, vyw400000))) new_lt17(vyw43000, vyw44000, app(ty_Maybe, bfd)) -> new_lt12(vyw43000, vyw44000, bfd) new_compare28(vyw43000, vyw44000, False, bhc, bhd, bhe) -> new_compare13(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, bhc, bhd, bhe), bhc, bhd, bhe) new_lt17(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_sr0(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, ccc), ccd), cce)) -> new_ltEs14(vyw43000, vyw44000, ccc, ccd, cce) new_esEs12(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs11(vyw4300, vyw4400, dag) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, dag), GT)) new_compare14(vyw43000, vyw44000, app(ty_Ratio, cab)) -> new_compare9(vyw43000, vyw44000, cab) new_primPlusNat1(Zero, Zero) -> Zero new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs5(True, True) -> True new_esEs22(vyw301, vyw4001, app(ty_[], bdd)) -> new_esEs17(vyw301, vyw4001, bdd) new_esEs10(vyw300, vyw4000, app(ty_Ratio, dd)) -> new_esEs19(vyw300, vyw4000, dd) new_esEs10(vyw300, vyw4000, app(app(ty_@2, da), db)) -> new_esEs7(vyw300, vyw4000, da, db) new_ltEs17(GT, EQ) -> False new_esEs26(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_lt18(vyw43001, vyw44001, ty_Char) -> new_lt14(vyw43001, vyw44001) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt17(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_compare211(Left(vyw4300), Left(vyw4400), False, dae, daf) -> new_compare111(vyw4300, vyw4400, new_ltEs18(vyw4300, vyw4400, dae), dae, daf) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bcc)) -> new_esEs19(vyw300, vyw4000, bcc) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(ty_@2, bah), bba)) -> new_ltEs15(vyw43000, vyw44000, bah, bba) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat0(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, app(app(ty_Either, dgf), dgg)) -> new_lt16(vyw43000, vyw44000, dgf, dgg) new_esEs12(vyw302, vyw4002, app(ty_[], fh)) -> new_esEs17(vyw302, vyw4002, fh) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_@0, ge) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, app(app(ty_@2, bbh), bca)) -> new_esEs7(vyw300, vyw4000, bbh, bca) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, dcg)) -> new_esEs4(vyw43001, vyw44001, dcg) new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, cbd) -> new_esEs16(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dfg), dfh)) -> new_esEs7(vyw300, vyw4000, dfg, dfh) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs9(vyw18, vyw13) new_esEs11(vyw301, vyw4001, app(ty_[], ee)) -> new_esEs17(vyw301, vyw4001, ee) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs5(vyw43001, vyw44001) new_compare8(@0, @0) -> EQ new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs17(GT, GT) -> True new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dgb)) -> new_esEs19(vyw300, vyw4000, dgb) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Ordering, ge) -> new_ltEs17(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Maybe, bfd)) -> new_esEs4(vyw43000, vyw44000, bfd) new_primEqNat0(Zero, Zero) -> True new_compare17(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, dgf), dgg)) -> new_esEs5(vyw43000, vyw44000, dgf, dgg) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs32(vyw33, vyw28, app(app(ty_@2, cdd), cde)) -> new_esEs7(vyw33, vyw28, cdd, cde) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs6(vyw43000, vyw44000, dhb, dhc, dhd) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_esEs31(vyw30, vyw400, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw30, vyw400, bgc, bgd) new_esEs30(vyw30, vyw400, ty_Bool) -> new_esEs9(vyw30, vyw400) new_asAs(False, vyw129) -> False new_esEs17(:(vyw300, vyw301), [], bdh) -> False new_esEs17([], :(vyw4000, vyw4001), bdh) -> False new_ltEs20(vyw43002, vyw44002, ty_Bool) -> new_ltEs5(vyw43002, vyw44002) new_ltEs8(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare16(vyw4300, vyw4400), GT)) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare18(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs14(vyw43000, vyw44000, bae, baf, bag) new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs18(vyw33, vyw28) new_ltEs6(Left(vyw43000), Right(vyw44000), hg, ge) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare12(vyw141, vyw142, True, bha, bhb) -> LT new_lt18(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_[], cgg)) -> new_esEs17(vyw300, vyw4000, cgg) new_compare14(vyw43000, vyw44000, app(app(ty_@2, cag), cah)) -> new_compare11(vyw43000, vyw44000, cag, cah) new_esEs10(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_compare25(vyw43000, vyw44000, False, bfe, bff) -> new_compare112(vyw43000, vyw44000, new_ltEs15(vyw43000, vyw44000, bfe, bff), bfe, bff) new_esEs26(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) The set Q consists of the following terms: new_esEs12(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Int) new_lt18(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_ltEs17(EQ, EQ) new_compare210(x0, x1, False, x2) new_ltEs18(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, ty_Double) new_lt17(x0, x1, ty_Int) new_esEs4(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs11(x0, x1, ty_@0) new_esEs4(Nothing, Just(x0), x1) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_@0) new_lt17(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, False, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Integer) new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_@0) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, False, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, False, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_sr0(x0, x1) new_ltEs20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_pePe(False, x0) new_esEs29(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_ltEs11(x0, x1, x2) new_compare14(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare([], :(x0, x1), x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare211(x0, x1, True, x2, x3) new_lt13(x0, x1, x2, x3, x4) new_lt6(x0, x1, x2, x3) new_compare14(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Double) new_compare(:(x0, x1), [], x2) new_ltEs18(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare29(x0, x1, False) new_esEs31(x0, x1, ty_Ordering) new_lt16(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_Float) new_compare211(Left(x0), Right(x1), False, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare211(Right(x0), Left(x1), False, x2, x3) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs7(Nothing, Nothing, x0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs9(False, False) new_esEs22(x0, x1, ty_Double) new_esEs4(Just(x0), Just(x1), ty_Int) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_lt8(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs28(x0, x1, ty_Char) new_primPlusNat0(Zero, x0) new_lt17(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt17(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(Right(x0), Right(x1), False, x2, x3) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt18(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, EQ) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt18(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Nothing, x1) new_ltEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Char) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare112(x0, x1, False, x2, x3) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_@0) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_Int) new_compare210(x0, x1, True, x2) new_ltEs18(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Ordering) new_esEs17([], :(x0, x1), x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, ty_Float) new_esEs4(Nothing, Nothing, x0) new_ltEs13(x0, x1, x2) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_compare14(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare113(x0, x1, True) new_esEs23(x0, x1, ty_Int) new_lt18(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare14(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare211(Left(x0), Left(x1), False, x2, x3) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, True) new_esEs31(x0, x1, ty_Int) new_ltEs8(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_ltEs9(x0, x1) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_compare(:(x0, x1), :(x2, x3), x4) new_lt5(x0, x1, x2) new_esEs22(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs24(x0, x1, ty_Int) new_ltEs17(LT, LT) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_lt18(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs10(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Float) new_ltEs7(Nothing, Just(x0), x1) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs12(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_compare29(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs17(GT, GT) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_esEs17(:(x0, x1), :(x2, x3), x4) new_lt18(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs10(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare17(Char(x0), Char(x1)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(True, True) new_esEs4(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs12(x0, x1, ty_Double) new_esEs16(@0, @0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs7(Just(x0), Nothing, x1) new_lt19(x0, x1) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, ty_Bool) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs20(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Double) new_compare112(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_compare18(x0, x1) new_primMulNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, x2) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare113(x0, x1, False) new_ltEs21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_sr(Integer(x0), Integer(x1)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare25(x0, x1, True, x2, x3) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, False) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Bool) new_not(True) new_compare15(x0, x1, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare13(x0, x1, True, x2, x3, x4) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs10(x0, x1) new_compare19(x0, x1, x2, x3) new_esEs12(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Int) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_compare14(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Integer) new_compare12(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Int) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt17(x0, x1, ty_Float) new_asAs(True, x0) new_lt18(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Just(x0), Just(x1), ty_Float) new_ltEs7(Just(x0), Just(x1), ty_Double) new_primCmpNat0(Succ(x0), Zero) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs12(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare14(x0, x1, app(ty_Maybe, x2)) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs27(x0, x1, ty_Char) new_esEs18(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs11(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Char) new_primCompAux00(x0, GT) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt15(x0, x1) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Float) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Double) new_compare14(x0, x1, ty_Bool) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs17([], [], x0) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1) new_lt17(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_@0) new_esEs9(False, True) new_esEs9(True, False) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs15(Integer(x0), Integer(x1)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Float) new_asAs(False, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare14(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt11(x0, x1) new_primEqNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_lt7(x0, x1, x2) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_lt18(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_not(False) new_lt17(x0, x1, app(ty_Ratio, x2)) new_compare14(x0, x1, ty_Integer) new_compare([], [], x0) new_esEs22(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, x2, x3, x4) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_esEs31(x0, x1, ty_@0) new_compare7(x0, x1) new_lt17(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs12(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare14(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Double) new_compare25(x0, x1, False, x2, x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Float) new_lt18(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1) new_lt17(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Integer) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs12(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare16(Integer(x0), Integer(x1)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt17(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_lt4(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Left(vyw400), False, bd, be), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_elemFM01(vyw31, Right(vyw33), bf, bg, bh) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare211(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Right(vyw400), new_esEs31(vyw30, vyw400, be), bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Right(vyw30), Left(vyw400), False, bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_elemFM01(vyw32, Right(vyw33), bf, bg, bh) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Right(vyw30), bc, bd, be) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw44, Right(vyw30), bc, bd, be) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (28) YES ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_elemFM01(vyw17, Left(vyw18), h, ba, bb) new_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Right(vyw400), False, bd, be), LT), bc, bd, be) new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Left(vyw30), bc, bd, be) new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM0(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Left(vyw400), new_esEs30(vyw30, vyw400, bd), bd, be), LT), bc, bd, be) new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare211(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_elemFM01(vyw16, Left(vyw18), h, ba, bb) new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Right(vyw400), False, bd, be), GT), bc, bd, be) new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw44, Left(vyw30), bc, bd, be) The TRS R consists of the following rules: new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs9(vyw33, vyw28) new_compare27(vyw43000, vyw44000) -> new_compare29(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs11(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_ltEs17(LT, EQ) -> True new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Ratio, bfc)) -> new_esEs19(vyw43000, vyw44000, bfc) new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(ty_[], beg)) -> new_esEs17(vyw300, vyw4000, beg) new_ltEs18(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare19(vyw43000, vyw44000, cee, cef) -> new_compare211(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cee, cef), cee, cef) new_pePe(True, vyw151) -> True new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, cbd) -> new_esEs8(vyw300, vyw4000) new_compare12(vyw141, vyw142, False, bha, bhb) -> GT new_esEs30(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs11(vyw301, vyw4001, app(app(ty_@2, ec), ed)) -> new_esEs7(vyw301, vyw4001, ec, ed) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs16(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs10(vyw300, vyw4000, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs6(vyw300, vyw4000, ce, cf, cg) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs20(vyw43001, vyw44001) new_compare(:(vyw43000, vyw43001), [], bhf) -> GT new_lt18(vyw43001, vyw44001, app(app(ty_Either, dch), dda)) -> new_lt16(vyw43001, vyw44001, dch, dda) new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Double, ge) -> new_ltEs12(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, dch), dda)) -> new_esEs5(vyw43001, vyw44001, dch, dda) new_esEs32(vyw33, vyw28, app(ty_Ratio, cdg)) -> new_esEs19(vyw33, vyw28, cdg) new_ltEs4(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare5(vyw4300, vyw4400), GT)) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_esEs26(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs26(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bhf) -> new_primCompAux0(vyw43000, vyw44000, new_compare(vyw43001, vyw44001, bhf), bhf) new_esEs11(vyw301, vyw4001, app(ty_Ratio, ef)) -> new_esEs19(vyw301, vyw4001, ef) new_esEs12(vyw302, vyw4002, ty_Integer) -> new_esEs15(vyw302, vyw4002) new_esEs22(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_lt17(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Int) -> new_compare18(vyw43000, vyw44000) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs26(vyw43000, vyw44000, app(app(ty_@2, bfe), bff)) -> new_esEs7(vyw43000, vyw44000, bfe, bff) new_compare111(vyw134, vyw135, True, cec, ced) -> LT new_lt18(vyw43001, vyw44001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_lt13(vyw43001, vyw44001, ddd, dde, ddf) new_esEs9(False, False) -> True new_compare113(vyw43000, vyw44000, False) -> GT new_esEs19(:%(vyw300, vyw301), :%(vyw4000, vyw4001), cbb) -> new_asAs(new_esEs24(vyw300, vyw4000, cbb), new_esEs25(vyw301, vyw4001, cbb)) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, dfd), dfe), dff)) -> new_esEs6(vyw300, vyw4000, dfd, dfe, dff) new_esEs11(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, cc) -> new_asAs(new_esEs10(vyw300, vyw4000, ca), new_asAs(new_esEs11(vyw301, vyw4001, cb), new_esEs12(vyw302, vyw4002, cc))) new_esEs12(vyw302, vyw4002, ty_@0) -> new_esEs16(vyw302, vyw4002) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs13(vyw33, vyw28) new_esEs23(vyw300, vyw4000, app(app(ty_Either, bfa), bfb)) -> new_esEs5(vyw300, vyw4000, bfa, bfb) new_compare11(vyw43000, vyw44000, bfe, bff) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, bfe, bff), bfe, bff) new_esEs26(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs21(vyw43001, vyw44001, ty_Ordering) -> new_ltEs17(vyw43001, vyw44001) new_compare7(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs8(GT, GT) -> True new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs14(vyw33, vyw28) new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(vyw18, vyw13, chd, che, chf) new_compare211(Left(vyw4300), Right(vyw4400), False, dae, daf) -> LT new_esEs27(vyw43001, vyw44001, app(ty_[], ddc)) -> new_esEs17(vyw43001, vyw44001, ddc) new_esEs8(EQ, EQ) -> True new_esEs22(vyw301, vyw4001, app(ty_Maybe, bcf)) -> new_esEs4(vyw301, vyw4001, bcf) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_compare14(vyw43000, vyw44000, app(ty_Maybe, bhg)) -> new_compare15(vyw43000, vyw44000, bhg) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs15(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, hb), hc), hd), ge) -> new_ltEs14(vyw43000, vyw44000, hb, hc, hd) new_ltEs21(vyw43001, vyw44001, app(ty_[], eac)) -> new_ltEs13(vyw43001, vyw44001, eac) new_esEs22(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_esEs12(vyw302, vyw4002, app(app(ty_Either, gb), gc)) -> new_esEs5(vyw302, vyw4002, gb, gc) new_ltEs17(LT, GT) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_@2, he), hf), ge) -> new_ltEs15(vyw43000, vyw44000, he, hf) new_ltEs18(vyw4300, vyw4400, app(ty_Maybe, cbe)) -> new_ltEs7(vyw4300, vyw4400, cbe) new_not(True) -> False new_esEs20(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs23(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_primCompAux00(vyw157, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bbe), bbf), bbg)) -> new_esEs6(vyw300, vyw4000, bbe, bbf, bbg) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs13(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(ty_Maybe, fa)) -> new_esEs4(vyw302, vyw4002, fa) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_Maybe, cga)) -> new_esEs4(vyw300, vyw4000, cga) new_esEs22(vyw301, vyw4001, app(ty_Ratio, bde)) -> new_esEs19(vyw301, vyw4001, bde) new_esEs30(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_ltEs17(EQ, GT) -> True new_esEs11(vyw301, vyw4001, app(ty_Maybe, dg)) -> new_esEs4(vyw301, vyw4001, dg) new_esEs26(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, bfd) -> new_compare10(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, bfd), bfd) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, cbd) -> new_esEs18(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs15(vyw33, vyw28) new_lt13(vyw43000, vyw44000, bhc, bhd, bhe) -> new_esEs8(new_compare26(vyw43000, vyw44000, bhc, bhd, bhe), LT) new_esEs10(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs18(vyw4300, vyw4400, app(app(ty_Either, hg), ge)) -> new_ltEs6(vyw4300, vyw4400, hg, ge) new_ltEs6(Left(vyw43000), Left(vyw44000), app(app(ty_Either, gf), gg), ge) -> new_ltEs6(vyw43000, vyw44000, gf, gg) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare16(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, cfc), cfd), cbd) -> new_esEs7(vyw300, vyw4000, cfc, cfd) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_lt12(vyw43000, vyw44000, bfd) -> new_esEs8(new_compare15(vyw43000, vyw44000, bfd), LT) new_esEs23(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_ltEs7(Nothing, Just(vyw44000), cbe) -> True new_lt18(vyw43001, vyw44001, ty_@0) -> new_lt11(vyw43001, vyw44001) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_ltEs20(vyw43002, vyw44002, ty_Int) -> new_ltEs10(vyw43002, vyw44002) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Double) -> new_esEs13(vyw300, vyw4000) new_lt17(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_ltEs17(LT, LT) -> True new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_lt13(vyw43000, vyw44000, dhb, dhc, dhd) new_esEs22(vyw301, vyw4001, app(app(ty_@2, bdb), bdc)) -> new_esEs7(vyw301, vyw4001, bdb, bdc) new_primCompAux00(vyw157, GT) -> GT new_compare110(vyw43000, vyw44000, True) -> LT new_compare14(vyw43000, vyw44000, ty_Integer) -> new_compare16(vyw43000, vyw44000) new_esEs12(vyw302, vyw4002, app(ty_Ratio, ga)) -> new_esEs19(vyw302, vyw4002, ga) new_lt17(vyw43000, vyw44000, app(ty_Ratio, bfc)) -> new_lt5(vyw43000, vyw44000, bfc) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Integer, ge) -> new_ltEs8(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Maybe, gd), ge) -> new_ltEs7(vyw43000, vyw44000, gd) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs22(vyw301, vyw4001, ty_Bool) -> new_esEs9(vyw301, vyw4001) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, ty_Double) -> new_ltEs12(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, app(app(app(ty_@3, ead), eae), eaf)) -> new_ltEs14(vyw43001, vyw44001, ead, eae, eaf) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_Ratio, cgh)) -> new_esEs19(vyw300, vyw4000, cgh) new_ltEs5(False, True) -> True new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_lt17(vyw43000, vyw44000, app(ty_[], ceb)) -> new_lt7(vyw43000, vyw44000, ceb) new_primPlusNat1(Succ(vyw15200), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat1(vyw15200, vyw4000000))) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, ceg), cbd) -> new_esEs4(vyw300, vyw4000, ceg) new_esEs12(vyw302, vyw4002, ty_Float) -> new_esEs20(vyw302, vyw4002) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bfh), bga), bgb)) -> new_esEs6(vyw30, vyw400, bfh, bga, bgb) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, bfe, bff) -> new_esEs8(new_compare11(vyw43000, vyw44000, bfe, bff), LT) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_Maybe, hh)) -> new_ltEs7(vyw43000, vyw44000, hh) new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs18(vyw18, vyw13) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs9(vyw43001, vyw44001) new_ltEs20(vyw43002, vyw44002, app(ty_Maybe, dea)) -> new_ltEs7(vyw43002, vyw44002, dea) new_esEs22(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Char) -> new_compare17(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], ccb)) -> new_ltEs13(vyw43000, vyw44000, ccb) new_ltEs19(vyw4300, vyw4400, app(ty_[], dca)) -> new_ltEs13(vyw4300, vyw4400, dca) new_sr(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_esEs27(vyw43001, vyw44001, app(app(ty_@2, ddg), ddh)) -> new_esEs7(vyw43001, vyw44001, ddg, ddh) new_pePe(False, vyw151) -> vyw151 new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs13(vyw43001, vyw44001) new_esEs11(vyw301, vyw4001, ty_Float) -> new_esEs20(vyw301, vyw4001) new_ltEs19(vyw4300, vyw4400, ty_Int) -> new_ltEs10(vyw4300, vyw4400) new_compare25(vyw43000, vyw44000, True, bfe, bff) -> EQ new_lt18(vyw43001, vyw44001, ty_Bool) -> new_lt9(vyw43001, vyw44001) new_compare210(vyw43000, vyw44000, True, bfd) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw4300, vyw4400, app(app(app(ty_@3, dcb), dcc), dcd)) -> new_ltEs14(vyw4300, vyw4400, dcb, dcc, dcd) new_compare112(vyw43000, vyw44000, True, bfe, bff) -> LT new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs18(vyw43001, vyw44001) new_esEs17([], [], bdh) -> True new_compare14(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_compare10(vyw43000, vyw44000, False, bfd) -> GT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs23(vyw300, vyw4000, app(ty_Maybe, bea)) -> new_esEs4(vyw300, vyw4000, bea) new_esEs32(vyw33, vyw28, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs6(vyw33, vyw28, cda, cdb, cdc) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs12(vyw302, vyw4002, app(app(ty_@2, ff), fg)) -> new_esEs7(vyw302, vyw4002, ff, fg) new_ltEs14(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), dah, dba, dbb) -> new_pePe(new_lt17(vyw43000, vyw44000, dah), new_asAs(new_esEs26(vyw43000, vyw44000, dah), new_pePe(new_lt18(vyw43001, vyw44001, dba), new_asAs(new_esEs27(vyw43001, vyw44001, dba), new_ltEs20(vyw43002, vyw44002, dbb))))) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs30(vyw30, vyw400, app(ty_[], bdh)) -> new_esEs17(vyw30, vyw400, bdh) new_ltEs21(vyw43001, vyw44001, app(app(ty_@2, eag), eah)) -> new_ltEs15(vyw43001, vyw44001, eag, eah) new_ltEs20(vyw43002, vyw44002, app(app(app(ty_@3, def), deg), deh)) -> new_ltEs14(vyw43002, vyw44002, def, deg, deh) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(ty_@2, cge), cgf)) -> new_esEs7(vyw300, vyw4000, cge, cgf) new_lt20(vyw43000, vyw44000, app(ty_Maybe, dge)) -> new_lt12(vyw43000, vyw44000, dge) new_ltEs20(vyw43002, vyw44002, ty_Float) -> new_ltEs4(vyw43002, vyw44002) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw43002, vyw44002, ty_@0) -> new_ltEs16(vyw43002, vyw44002) new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_compare211(Right(vyw4300), Right(vyw4400), False, dae, daf) -> new_compare12(vyw4300, vyw4400, new_ltEs19(vyw4300, vyw4400, daf), dae, daf) new_ltEs19(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare27(vyw43000, vyw44000), LT) new_lt18(vyw43001, vyw44001, app(ty_Ratio, ddb)) -> new_lt5(vyw43001, vyw44001, ddb) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, ddb)) -> new_esEs19(vyw43001, vyw44001, ddb) new_esEs32(vyw33, vyw28, app(app(ty_Either, cdh), cea)) -> new_esEs5(vyw33, vyw28, cdh, cea) new_compare10(vyw43000, vyw44000, True, bfd) -> LT new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs16(vyw33, vyw28) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs13(vyw18, vyw13) new_primPlusNat0(Zero, vyw400000) -> Succ(vyw400000) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs20(vyw43002, vyw44002, ty_Double) -> new_ltEs12(vyw43002, vyw44002) new_esEs23(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(ty_Either, baa), bab)) -> new_ltEs6(vyw43000, vyw44000, baa, bab) new_esEs31(vyw30, vyw400, app(ty_Maybe, bfg)) -> new_esEs4(vyw30, vyw400, bfg) new_ltEs5(True, False) -> False new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare17(vyw4300, vyw4400), GT)) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, cfg), cfh), cbd) -> new_esEs5(vyw300, vyw4000, cfg, cfh) new_esEs28(vyw43000, vyw44000, app(ty_[], dha)) -> new_esEs17(vyw43000, vyw44000, dha) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs20(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Int) -> new_ltEs10(vyw43001, vyw44001) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bcd), bce)) -> new_esEs5(vyw300, vyw4000, bcd, bce) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_esEs8(LT, LT) -> True new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs20(vyw30, vyw400) new_esEs12(vyw302, vyw4002, ty_Bool) -> new_esEs9(vyw302, vyw4002) new_compare13(vyw43000, vyw44000, False, bhc, bhd, bhe) -> GT new_esEs29(vyw18, vyw13, app(ty_[], daa)) -> new_esEs17(vyw18, vyw13, daa) new_esEs22(vyw301, vyw4001, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs6(vyw301, vyw4001, bcg, bch, bda) new_esEs30(vyw30, vyw400, ty_@0) -> new_esEs16(vyw30, vyw400) new_primPlusNat1(Succ(vyw15200), Zero) -> Succ(vyw15200) new_primPlusNat1(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_compare14(vyw43000, vyw44000, app(app(ty_Either, bhh), caa)) -> new_compare19(vyw43000, vyw44000, bhh, caa) new_ltEs19(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], cfe), cbd) -> new_esEs17(vyw300, vyw4000, cfe) new_esEs10(vyw300, vyw4000, app(ty_Maybe, cd)) -> new_esEs4(vyw300, vyw4000, cd) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Int) -> new_ltEs10(vyw43000, vyw44000) new_compare14(vyw43000, vyw44000, ty_Float) -> new_compare5(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs5(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, app(app(app(ty_@3, cad), cae), caf)) -> new_compare26(vyw43000, vyw44000, cad, cae, caf) new_esEs26(vyw43000, vyw44000, ty_Int) -> new_esEs18(vyw43000, vyw44000) new_esEs23(vyw300, vyw4000, app(app(app(ty_@3, beb), bec), bed)) -> new_esEs6(vyw300, vyw4000, beb, bec, bed) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs16(vyw30, vyw400) new_ltEs19(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Float) -> new_ltEs4(vyw4300, vyw4400) new_ltEs21(vyw43001, vyw44001, app(ty_Ratio, eab)) -> new_ltEs11(vyw43001, vyw44001, eab) new_esEs21(vyw300, vyw4000, app(ty_Maybe, bbd)) -> new_esEs4(vyw300, vyw4000, bbd) new_esEs9(False, True) -> False new_esEs9(True, False) -> False new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_lt20(vyw43000, vyw44000, app(ty_Ratio, dgh)) -> new_lt5(vyw43000, vyw44000, dgh) new_compare([], :(vyw44000, vyw44001), bhf) -> LT new_esEs11(vyw301, vyw4001, app(app(ty_Either, eg), eh)) -> new_esEs5(vyw301, vyw4001, eg, eh) new_esEs13(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs18(new_sr0(vyw300, vyw4001), new_sr0(vyw301, vyw4000)) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs15(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, cbd) -> new_esEs9(vyw300, vyw4000) new_esEs32(vyw33, vyw28, app(ty_Maybe, cch)) -> new_esEs4(vyw33, vyw28, cch) new_esEs12(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_@2, bfe), bff)) -> new_lt6(vyw43000, vyw44000, bfe, bff) new_ltEs18(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs18(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs22(vyw301, vyw4001, app(app(ty_Either, bdf), bdg)) -> new_esEs5(vyw301, vyw4001, bdf, bdg) new_ltEs17(EQ, EQ) -> True new_ltEs20(vyw43002, vyw44002, ty_Ordering) -> new_ltEs17(vyw43002, vyw44002) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, dfc)) -> new_esEs4(vyw300, vyw4000, dfc) new_esEs23(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs20(vyw33, vyw28) new_ltEs18(vyw4300, vyw4400, ty_Double) -> new_ltEs12(vyw4300, vyw4400) new_esEs11(vyw301, vyw4001, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs6(vyw301, vyw4001, dh, ea, eb) new_compare14(vyw43000, vyw44000, ty_Ordering) -> new_compare27(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, app(app(app(ty_@3, dah), dba), dbb)) -> new_ltEs14(vyw4300, vyw4400, dah, dba, dbb) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_compare18(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_ltEs17(GT, LT) -> False new_esEs10(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_ltEs17(EQ, LT) -> False new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, ccf), ccg)) -> new_ltEs15(vyw43000, vyw44000, ccf, ccg) new_lt5(vyw43000, vyw44000, bfc) -> new_esEs8(new_compare9(vyw43000, vyw44000, bfc), LT) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(vyw300, vyw4000, cgb, cgc, cgd) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs13(vyw43000, vyw44000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Bool, ge) -> new_ltEs5(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_Maybe, cba)) -> new_esEs4(vyw30, vyw400, cba) new_esEs31(vyw30, vyw400, app(ty_[], bge)) -> new_esEs17(vyw30, vyw400, bge) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], dga)) -> new_esEs17(vyw300, vyw4000, dga) new_lt17(vyw43000, vyw44000, ty_Char) -> new_lt14(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs21(vyw43001, vyw44001, ty_Float) -> new_ltEs4(vyw43001, vyw44001) new_ltEs5(False, False) -> True new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_esEs10(vyw300, vyw4000, ty_Float) -> new_esEs20(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, ddd), dde), ddf)) -> new_esEs6(vyw43001, vyw44001, ddd, dde, ddf) new_esEs10(vyw300, vyw4000, app(app(ty_Either, de), df)) -> new_esEs5(vyw300, vyw4000, de, df) new_lt16(vyw43000, vyw44000, cee, cef) -> new_esEs8(new_compare19(vyw43000, vyw44000, cee, cef), LT) new_lt20(vyw43000, vyw44000, app(ty_[], dha)) -> new_lt7(vyw43000, vyw44000, dha) new_ltEs21(vyw43001, vyw44001, ty_@0) -> new_ltEs16(vyw43001, vyw44001) new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs15(vyw18, vyw13) new_lt18(vyw43001, vyw44001, ty_Double) -> new_lt4(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_esEs15(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_Integer) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw4300, vyw4400, app(app(ty_@2, dce), dcf)) -> new_ltEs15(vyw4300, vyw4400, dce, dcf) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt10(vyw43000, vyw44000) new_esEs18(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs16(vyw18, vyw13) new_asAs(True, vyw129) -> vyw129 new_lt18(vyw43001, vyw44001, app(app(ty_@2, ddg), ddh)) -> new_lt6(vyw43001, vyw44001, ddg, ddh) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt8(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000)) new_compare113(vyw43000, vyw44000, True) -> LT new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs9(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_Ratio, cbb)) -> new_esEs19(vyw30, vyw400, cbb) new_esEs10(vyw300, vyw4000, app(ty_[], dc)) -> new_esEs17(vyw300, vyw4000, dc) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_Ratio, gh), ge) -> new_ltEs11(vyw43000, vyw44000, gh) new_ltEs21(vyw43001, vyw44001, app(ty_Maybe, dhg)) -> new_ltEs7(vyw43001, vyw44001, dhg) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, cbd) -> new_esEs15(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, app(app(app(ty_@3, fb), fc), fd)) -> new_esEs6(vyw302, vyw4002, fb, fc, fd) new_esEs16(@0, @0) -> True new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Int, ge) -> new_ltEs10(vyw43000, vyw44000) new_ltEs18(vyw4300, vyw4400, ty_Ordering) -> new_ltEs17(vyw4300, vyw4400) new_ltEs20(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_Ratio, bac)) -> new_ltEs11(vyw43000, vyw44000, bac) new_esEs10(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_lt10(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_compare111(vyw134, vyw135, False, cec, ced) -> GT new_ltEs20(vyw43002, vyw44002, app(app(ty_@2, dfa), dfb)) -> new_ltEs15(vyw43002, vyw44002, dfa, dfb) new_ltEs20(vyw43002, vyw44002, ty_Integer) -> new_ltEs8(vyw43002, vyw44002) new_ltEs20(vyw43002, vyw44002, app(ty_Ratio, ded)) -> new_ltEs11(vyw43002, vyw44002, ded) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs16(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, dgc), dgd)) -> new_esEs5(vyw300, vyw4000, dgc, dgd) new_esEs30(vyw30, vyw400, app(app(ty_@2, bbb), bbc)) -> new_esEs7(vyw30, vyw400, bbb, bbc) new_compare24(vyw43000, vyw44000, False) -> new_compare113(vyw43000, vyw44000, new_ltEs5(vyw43000, vyw44000)) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_lt15(vyw43000, vyw44000) -> new_esEs8(new_compare16(vyw43000, vyw44000), LT) new_esEs29(vyw18, vyw13, app(app(ty_Either, dac), dad)) -> new_esEs5(vyw18, vyw13, dac, dad) new_compare110(vyw43000, vyw44000, False) -> GT new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_primCompAux00(vyw157, EQ) -> vyw157 new_ltEs21(vyw43001, vyw44001, app(app(ty_Either, dhh), eaa)) -> new_ltEs6(vyw43001, vyw44001, dhh, eaa) new_ltEs7(Nothing, Nothing, cbe) -> True new_esEs9(True, True) -> True new_lt18(vyw43001, vyw44001, ty_Ordering) -> new_lt19(vyw43001, vyw44001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare17(vyw43000, vyw44000), LT) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_compare14(vyw43000, vyw44000, ty_Double) -> new_compare6(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, cbd) -> new_esEs14(vyw300, vyw4000) new_primMulNat0(Zero, Zero) -> Zero new_lt7(vyw43000, vyw44000, ceb) -> new_esEs8(new_compare(vyw43000, vyw44000, ceb), LT) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, cbd) -> new_esEs13(vyw300, vyw4000) new_ltEs21(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs30(vyw30, vyw400, ty_Double) -> new_esEs13(vyw30, vyw400) new_esEs17(:(vyw300, vyw301), :(vyw4000, vyw4001), bdh) -> new_asAs(new_esEs23(vyw300, vyw4000, bdh), new_esEs17(vyw301, vyw4001, bdh)) new_esEs23(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400, app(ty_[], bhf)) -> new_ltEs13(vyw4300, vyw4400, bhf) new_ltEs7(Just(vyw43000), Nothing, cbe) -> False new_esEs28(vyw43000, vyw44000, app(ty_Maybe, dge)) -> new_esEs4(vyw43000, vyw44000, dge) new_esEs23(vyw300, vyw4000, app(app(ty_@2, bee), bef)) -> new_esEs7(vyw300, vyw4000, bee, bef) new_esEs5(Right(vyw300), Right(vyw4000), cbc, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs16(vyw300, vyw4000) new_compare14(vyw43000, vyw44000, ty_Bool) -> new_compare7(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, True, bhc, bhd, bhe) -> EQ new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_esEs4(Nothing, Nothing, cba) -> True new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(app(ty_Either, cha), chb)) -> new_esEs5(vyw300, vyw4000, cha, chb) new_esEs4(Nothing, Just(vyw4000), cba) -> False new_esEs4(Just(vyw300), Nothing, cba) -> False new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cca)) -> new_ltEs11(vyw43000, vyw44000, cca) new_ltEs19(vyw4300, vyw4400, app(ty_Ratio, dbh)) -> new_ltEs11(vyw4300, vyw4400, dbh) new_esEs29(vyw18, vyw13, app(ty_Ratio, dab)) -> new_esEs19(vyw18, vyw13, dab) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs16(vyw43000, vyw44000) new_compare26(vyw43000, vyw44000, bhc, bhd, bhe) -> new_compare28(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, bhc, bhd, bhe), bhc, bhd, bhe) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Float, ge) -> new_ltEs4(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, ty_@0) -> new_ltEs16(vyw4300, vyw4400) new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs15(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, cbd) -> new_esEs20(vyw300, vyw4000) new_esEs30(vyw30, vyw400, ty_Float) -> new_esEs20(vyw30, vyw400) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(ty_[], bad)) -> new_ltEs13(vyw43000, vyw44000, bad) new_primCompAux0(vyw43000, vyw44000, vyw153, bhf) -> new_primCompAux00(vyw153, new_compare14(vyw43000, vyw44000, bhf)) new_ltEs18(vyw4300, vyw4400, app(ty_Ratio, dag)) -> new_ltEs11(vyw4300, vyw4400, dag) new_esEs21(vyw300, vyw4000, app(ty_[], bcb)) -> new_esEs17(vyw300, vyw4000, bcb) new_ltEs13(vyw4300, vyw4400, bhf) -> new_not(new_esEs8(new_compare(vyw4300, vyw4400, bhf), GT)) new_esEs7(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bbb, bbc) -> new_asAs(new_esEs21(vyw300, vyw4000, bbb), new_esEs22(vyw301, vyw4001, bbc)) new_ltEs19(vyw4300, vyw4400, app(ty_Maybe, dbe)) -> new_ltEs7(vyw4300, vyw4400, dbe) new_lt18(vyw43001, vyw44001, ty_Float) -> new_lt8(vyw43001, vyw44001) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_compare([], [], bhf) -> EQ new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_lt18(vyw43001, vyw44001, ty_Int) -> new_lt10(vyw43001, vyw44001) new_ltEs21(vyw43001, vyw44001, ty_Integer) -> new_ltEs8(vyw43001, vyw44001) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs20(vyw18, vyw13) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, dgh)) -> new_esEs19(vyw43000, vyw44000, dgh) new_lt17(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw43002, vyw44002, app(app(ty_Either, deb), dec)) -> new_ltEs6(vyw43002, vyw44002, deb, dec) new_lt17(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_compare6(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare6(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs28(vyw43000, vyw44000, app(app(ty_@2, dhe), dhf)) -> new_esEs7(vyw43000, vyw44000, dhe, dhf) new_ltEs18(vyw4300, vyw4400, app(app(ty_@2, dbc), dbd)) -> new_ltEs15(vyw4300, vyw4400, dbc, dbd) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt9(vyw43000, vyw44000) new_lt8(vyw43000, vyw44000) -> new_esEs8(new_compare5(vyw43000, vyw44000), LT) new_lt11(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs15(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dbc, dbd) -> new_pePe(new_lt20(vyw43000, vyw44000, dbc), new_asAs(new_esEs28(vyw43000, vyw44000, dbc), new_ltEs21(vyw43001, vyw44001, dbd))) new_esEs26(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_lt18(vyw43001, vyw44001, app(ty_Maybe, dcg)) -> new_lt12(vyw43001, vyw44001, dcg) new_lt20(vyw43000, vyw44000, app(app(ty_@2, dhe), dhf)) -> new_lt6(vyw43000, vyw44000, dhe, dhf) new_esEs23(vyw300, vyw4000, app(ty_Ratio, beh)) -> new_esEs19(vyw300, vyw4000, beh) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_esEs32(vyw33, vyw28, app(ty_[], cdf)) -> new_esEs17(vyw33, vyw28, cdf) new_esEs26(vyw43000, vyw44000, app(ty_[], ceb)) -> new_esEs17(vyw43000, vyw44000, ceb) new_esEs31(vyw30, vyw400, app(app(ty_Either, bgg), bgh)) -> new_esEs5(vyw30, vyw400, bgg, bgh) new_esEs10(vyw300, vyw4000, ty_Bool) -> new_esEs9(vyw300, vyw4000) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Integer) -> new_ltEs8(vyw43000, vyw44000) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_compare211(vyw430, vyw440, True, dae, daf) -> EQ new_compare13(vyw43000, vyw44000, True, bhc, bhd, bhe) -> LT new_ltEs6(Right(vyw43000), Right(vyw44000), hg, ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_ltEs19(vyw4300, vyw4400, app(app(ty_Either, dbf), dbg)) -> new_ltEs6(vyw4300, vyw4400, dbf, dbg) new_esEs29(vyw18, vyw13, app(ty_Maybe, chc)) -> new_esEs4(vyw18, vyw13, chc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, cbg), cbh)) -> new_ltEs6(vyw43000, vyw44000, cbg, cbh) new_ltEs19(vyw4300, vyw4400, ty_Bool) -> new_ltEs5(vyw4300, vyw4400) new_esEs26(vyw43000, vyw44000, app(app(ty_Either, cee), cef)) -> new_esEs5(vyw43000, vyw44000, cee, cef) new_esEs12(vyw302, vyw4002, ty_Int) -> new_esEs18(vyw302, vyw4002) new_lt17(vyw43000, vyw44000, app(app(ty_Either, cee), cef)) -> new_lt16(vyw43000, vyw44000, cee, cef) new_compare14(vyw43000, vyw44000, app(ty_[], cac)) -> new_compare(vyw43000, vyw44000, cac) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs17(vyw43000, vyw44000) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, ceh), cfa), cfb), cbd) -> new_esEs6(vyw300, vyw4000, ceh, cfa, cfb) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cbf)) -> new_ltEs7(vyw43000, vyw44000, cbf) new_esEs26(vyw43000, vyw44000, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_esEs6(vyw43000, vyw44000, bhc, bhd, bhe) new_compare112(vyw43000, vyw44000, False, bfe, bff) -> GT new_esEs10(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs12(vyw43000, vyw44000) new_lt17(vyw43000, vyw44000, app(app(app(ty_@3, bhc), bhd), bhe)) -> new_lt13(vyw43000, vyw44000, bhc, bhd, bhe) new_ltEs20(vyw43002, vyw44002, app(ty_[], dee)) -> new_ltEs13(vyw43002, vyw44002, dee) new_compare16(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs9(vyw30, vyw400) new_ltEs6(Right(vyw43000), Left(vyw44000), hg, ge) -> False new_esEs11(vyw301, vyw4001, ty_@0) -> new_esEs16(vyw301, vyw4001) new_not(False) -> True new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, cff), cbd) -> new_esEs19(vyw300, vyw4000, cff) new_ltEs6(Left(vyw43000), Left(vyw44000), app(ty_[], ha), ge) -> new_ltEs13(vyw43000, vyw44000, ha) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt19(vyw43000, vyw44000) new_esEs10(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs12(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Char, ge) -> new_ltEs9(vyw43000, vyw44000) new_compare211(Right(vyw4300), Left(vyw4400), False, dae, daf) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_compare29(vyw43000, vyw44000, True) -> EQ new_esEs31(vyw30, vyw400, app(ty_Ratio, bgf)) -> new_esEs19(vyw30, vyw400, bgf) new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs9(vyw300, vyw4000) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) new_esEs5(Left(vyw300), Right(vyw4000), cbc, cbd) -> False new_esEs5(Right(vyw300), Left(vyw4000), cbc, cbd) -> False new_lt18(vyw43001, vyw44001, app(ty_[], ddc)) -> new_lt7(vyw43001, vyw44001, ddc) new_compare15(vyw43000, vyw44000, bfd) -> new_compare210(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, bfd), bfd) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_@2, chg), chh)) -> new_esEs7(vyw18, vyw13, chg, chh) new_esEs30(vyw30, vyw400, app(app(app(ty_@3, ca), cb), cc)) -> new_esEs6(vyw30, vyw400, ca, cb, cc) new_esEs30(vyw30, vyw400, app(app(ty_Either, cbc), cbd)) -> new_esEs5(vyw30, vyw400, cbc, cbd) new_primPlusNat0(Succ(vyw1520), vyw400000) -> Succ(Succ(new_primPlusNat1(vyw1520, vyw400000))) new_lt17(vyw43000, vyw44000, app(ty_Maybe, bfd)) -> new_lt12(vyw43000, vyw44000, bfd) new_compare28(vyw43000, vyw44000, False, bhc, bhd, bhe) -> new_compare13(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, bhc, bhd, bhe), bhc, bhd, bhe) new_lt17(vyw43000, vyw44000, ty_Integer) -> new_lt15(vyw43000, vyw44000) new_sr0(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, ccc), ccd), cce)) -> new_ltEs14(vyw43000, vyw44000, ccc, ccd, cce) new_esEs12(vyw302, vyw4002, ty_Double) -> new_esEs13(vyw302, vyw4002) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_ltEs11(vyw4300, vyw4400, dag) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, dag), GT)) new_compare14(vyw43000, vyw44000, app(ty_Ratio, cab)) -> new_compare9(vyw43000, vyw44000, cab) new_primPlusNat1(Zero, Zero) -> Zero new_esEs22(vyw301, vyw4001, ty_Int) -> new_esEs18(vyw301, vyw4001) new_ltEs5(True, True) -> True new_esEs22(vyw301, vyw4001, app(ty_[], bdd)) -> new_esEs17(vyw301, vyw4001, bdd) new_esEs10(vyw300, vyw4000, app(ty_Ratio, dd)) -> new_esEs19(vyw300, vyw4000, dd) new_esEs10(vyw300, vyw4000, app(app(ty_@2, da), db)) -> new_esEs7(vyw300, vyw4000, da, db) new_ltEs17(GT, EQ) -> False new_esEs26(vyw43000, vyw44000, ty_@0) -> new_esEs16(vyw43000, vyw44000) new_lt18(vyw43001, vyw44001, ty_Char) -> new_lt14(vyw43001, vyw44001) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs18(vyw30, vyw400) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt17(vyw43000, vyw44000, ty_@0) -> new_lt11(vyw43000, vyw44000) new_compare211(Left(vyw4300), Left(vyw4400), False, dae, daf) -> new_compare111(vyw4300, vyw4400, new_ltEs18(vyw4300, vyw4400, dae), dae, daf) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bcc)) -> new_esEs19(vyw300, vyw4000, bcc) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(ty_@2, bah), bba)) -> new_ltEs15(vyw43000, vyw44000, bah, bba) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat0(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_esEs22(vyw301, vyw4001, ty_Double) -> new_esEs13(vyw301, vyw4001) new_lt20(vyw43000, vyw44000, app(app(ty_Either, dgf), dgg)) -> new_lt16(vyw43000, vyw44000, dgf, dgg) new_esEs12(vyw302, vyw4002, app(ty_[], fh)) -> new_esEs17(vyw302, vyw4002, fh) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_@0, ge) -> new_ltEs16(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, app(app(ty_@2, bbh), bca)) -> new_esEs7(vyw300, vyw4000, bbh, bca) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, dcg)) -> new_esEs4(vyw43001, vyw44001, dcg) new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, cbd) -> new_esEs16(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs4(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs22(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dfg), dfh)) -> new_esEs7(vyw300, vyw4000, dfg, dfh) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs9(vyw18, vyw13) new_esEs11(vyw301, vyw4001, app(ty_[], ee)) -> new_esEs17(vyw301, vyw4001, ee) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs21(vyw43001, vyw44001, ty_Bool) -> new_ltEs5(vyw43001, vyw44001) new_compare8(@0, @0) -> EQ new_esEs23(vyw300, vyw4000, ty_Double) -> new_esEs13(vyw300, vyw4000) new_ltEs17(GT, GT) -> True new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt4(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dgb)) -> new_esEs19(vyw300, vyw4000, dgb) new_ltEs6(Left(vyw43000), Left(vyw44000), ty_Ordering, ge) -> new_ltEs17(vyw43000, vyw44000) new_esEs11(vyw301, vyw4001, ty_Integer) -> new_esEs15(vyw301, vyw4001) new_esEs23(vyw300, vyw4000, ty_Integer) -> new_esEs15(vyw300, vyw4000) new_esEs26(vyw43000, vyw44000, app(ty_Maybe, bfd)) -> new_esEs4(vyw43000, vyw44000, bfd) new_primEqNat0(Zero, Zero) -> True new_compare17(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, dgf), dgg)) -> new_esEs5(vyw43000, vyw44000, dgf, dgg) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs18(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs32(vyw33, vyw28, app(app(ty_@2, cdd), cde)) -> new_esEs7(vyw33, vyw28, cdd, cde) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, dhb), dhc), dhd)) -> new_esEs6(vyw43000, vyw44000, dhb, dhc, dhd) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_esEs31(vyw30, vyw400, app(app(ty_@2, bgc), bgd)) -> new_esEs7(vyw30, vyw400, bgc, bgd) new_esEs30(vyw30, vyw400, ty_Bool) -> new_esEs9(vyw30, vyw400) new_asAs(False, vyw129) -> False new_esEs17(:(vyw300, vyw301), [], bdh) -> False new_esEs17([], :(vyw4000, vyw4001), bdh) -> False new_ltEs20(vyw43002, vyw44002, ty_Bool) -> new_ltEs5(vyw43002, vyw44002) new_ltEs8(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare16(vyw4300, vyw4400), GT)) new_compare5(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare18(new_sr0(vyw43000, Pos(vyw440010)), new_sr0(Neg(vyw430010), vyw44000)) new_compare5(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare18(new_sr0(vyw43000, Neg(vyw440010)), new_sr0(Pos(vyw430010), vyw44000)) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare18(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs6(Right(vyw43000), Right(vyw44000), hg, app(app(app(ty_@3, bae), baf), bag)) -> new_ltEs14(vyw43000, vyw44000, bae, baf, bag) new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs18(vyw33, vyw28) new_ltEs6(Left(vyw43000), Right(vyw44000), hg, ge) -> True new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs18(vyw300, vyw4000) new_compare12(vyw141, vyw142, True, bha, bhb) -> LT new_lt18(vyw43001, vyw44001, ty_Integer) -> new_lt15(vyw43001, vyw44001) new_esEs5(Right(vyw300), Right(vyw4000), cbc, app(ty_[], cgg)) -> new_esEs17(vyw300, vyw4000, cgg) new_compare14(vyw43000, vyw44000, app(app(ty_@2, cag), cah)) -> new_compare11(vyw43000, vyw44000, cag, cah) new_esEs10(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_compare25(vyw43000, vyw44000, False, bfe, bff) -> new_compare112(vyw43000, vyw44000, new_ltEs15(vyw43000, vyw44000, bfe, bff), bfe, bff) new_esEs26(vyw43000, vyw44000, ty_Float) -> new_esEs20(vyw43000, vyw44000) The set Q consists of the following terms: new_esEs12(x0, x1, ty_Integer) new_esEs8(EQ, EQ) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Int) new_lt18(x0, x1, ty_Char) new_esEs11(x0, x1, ty_Bool) new_ltEs19(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Double) new_ltEs17(EQ, EQ) new_compare210(x0, x1, False, x2) new_ltEs18(x0, x1, ty_Ordering) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_lt18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Just(x0), Just(x1), ty_Float) new_ltEs18(x0, x1, ty_Double) new_lt17(x0, x1, ty_Int) new_esEs4(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs11(x0, x1, ty_@0) new_esEs4(Nothing, Just(x0), x1) new_primPlusNat1(Zero, Zero) new_esEs26(x0, x1, ty_Integer) new_compare11(x0, x1, x2, x3) new_esEs30(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, False) new_esEs25(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs10(x0, x1, ty_@0) new_lt17(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1, ty_Double) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, app(ty_[], x2)) new_compare28(x0, x1, False, x2, x3, x4) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs24(x0, x1, ty_Integer) new_ltEs14(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primEqInt(Pos(Zero), Pos(Zero)) new_ltEs20(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_@0) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Integer) new_esEs11(x0, x1, ty_Integer) new_lt17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare12(x0, x1, False, x2, x3) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Bool) new_ltEs5(False, True) new_ltEs5(True, False) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, False, x2) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs6(Left(x0), Left(x1), ty_Float, x2) new_sr0(x0, x1) new_ltEs20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Char) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_pePe(False, x0) new_esEs29(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_ltEs11(x0, x1, x2) new_compare14(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare([], :(x0, x1), x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Bool) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_compare211(x0, x1, True, x2, x3) new_lt13(x0, x1, x2, x3, x4) new_lt6(x0, x1, x2, x3) new_compare14(x0, x1, ty_Int) new_esEs30(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Double) new_compare(:(x0, x1), [], x2) new_ltEs18(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_compare29(x0, x1, False) new_esEs31(x0, x1, ty_Ordering) new_lt16(x0, x1, x2, x3) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_esEs27(x0, x1, ty_Float) new_compare211(Left(x0), Right(x1), False, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_compare211(Right(x0), Left(x1), False, x2, x3) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs30(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs7(Nothing, Nothing, x0) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs6(Right(x0), Right(x1), x2, ty_Ordering) new_esEs9(False, False) new_esEs22(x0, x1, ty_Double) new_esEs4(Just(x0), Just(x1), ty_Int) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_lt17(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_lt8(x0, x1) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs28(x0, x1, ty_Char) new_primPlusNat0(Zero, x0) new_lt17(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_lt17(x0, x1, app(app(ty_Either, x2), x3)) new_compare211(Right(x0), Right(x1), False, x2, x3) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare8(@0, @0) new_lt18(x0, x1, ty_Ordering) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Bool) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Integer) new_primCompAux00(x0, EQ) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt18(x0, x1, ty_Integer) new_ltEs6(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Nothing, x1) new_ltEs18(x0, x1, ty_Int) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs30(x0, x1, ty_@0) new_esEs11(x0, x1, ty_Char) new_esEs12(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_@0) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare112(x0, x1, False, x2, x3) new_primEqNat0(Succ(x0), Zero) new_ltEs20(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_ltEs19(x0, x1, ty_@0) new_compare111(x0, x1, True, x2, x3) new_esEs26(x0, x1, ty_Int) new_compare210(x0, x1, True, x2) new_ltEs18(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Ordering) new_esEs17([], :(x0, x1), x2) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs11(x0, x1, ty_Float) new_esEs4(Nothing, Nothing, x0) new_ltEs13(x0, x1, x2) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_compare14(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare113(x0, x1, True) new_esEs23(x0, x1, ty_Int) new_lt18(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Bool) new_compare5(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare5(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_compare14(x0, x1, ty_@0) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare211(Left(x0), Left(x1), False, x2, x3) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Float) new_compare24(x0, x1, True) new_esEs31(x0, x1, ty_Int) new_ltEs8(x0, x1) new_primMulInt(Pos(x0), Pos(x1)) new_compare6(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs29(x0, x1, ty_@0) new_ltEs9(x0, x1) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Int) new_primCompAux00(x0, LT) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs12(x0, x1) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_compare(:(x0, x1), :(x2, x3), x4) new_lt5(x0, x1, x2) new_esEs22(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Integer) new_esEs11(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Char) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs8(GT, GT) new_esEs22(x0, x1, ty_Ordering) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs24(x0, x1, ty_Int) new_ltEs17(LT, LT) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs29(x0, x1, app(ty_[], x2)) new_lt18(x0, x1, app(app(ty_@2, x2), x3)) new_lt18(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Float) new_lt18(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), x1) new_esEs10(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Float) new_ltEs7(Nothing, Just(x0), x1) new_esEs12(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_@0) new_ltEs6(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Succ(x0), Zero) new_compare6(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs12(x0, x1, ty_@0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(True, True) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_compare13(x0, x1, False, x2, x3, x4) new_ltEs6(Right(x0), Right(x1), x2, ty_Bool) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_compare29(x0, x1, True) new_ltEs18(x0, x1, ty_Integer) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_compare28(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs17(GT, GT) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, ty_Char) new_esEs17(:(x0, x1), :(x2, x3), x4) new_lt18(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Float) new_esEs26(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_esEs10(x0, x1, ty_Bool) new_ltEs6(Right(x0), Right(x1), x2, ty_Int) new_compare17(Char(x0), Char(x1)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs9(True, True) new_esEs4(Just(x0), Just(x1), ty_Integer) new_esEs23(x0, x1, ty_Float) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_esEs12(x0, x1, ty_Double) new_esEs16(@0, @0) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs7(Just(x0), Nothing, x1) new_lt19(x0, x1) new_ltEs6(Right(x0), Right(x1), x2, ty_Char) new_ltEs20(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, app(ty_[], x2)) new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(LT, EQ) new_ltEs17(EQ, LT) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, ty_Int) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_lt20(x0, x1, ty_Bool) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, False, x2, x3) new_esEs17(:(x0, x1), [], x2) new_esEs20(Float(x0, x1), Float(x2, x3)) new_ltEs19(x0, x1, ty_Double) new_ltEs6(Left(x0), Left(x1), ty_Int, x2) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_Double) new_compare112(x0, x1, True, x2, x3) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_lt20(x0, x1, ty_@0) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, ty_Ordering) new_ltEs19(x0, x1, ty_Ordering) new_compare18(x0, x1) new_primMulNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt12(x0, x1, x2) new_ltEs6(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs6(Left(x0), Left(x1), ty_Char, x2) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare113(x0, x1, False) new_ltEs21(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_sr(Integer(x0), Integer(x1)) new_esEs28(x0, x1, app(ty_[], x2)) new_ltEs18(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Int) new_ltEs6(Left(x0), Left(x1), ty_Ordering, x2) new_compare25(x0, x1, True, x2, x3) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Int) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs19(:%(x0, x1), :%(x2, x3), x4) new_lt20(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, False) new_esEs22(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, ty_Bool) new_esEs11(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs22(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Bool) new_not(True) new_compare15(x0, x1, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs11(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(x0, x1) new_compare13(x0, x1, True, x2, x3, x4) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs6(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_esEs32(x0, x1, ty_Char) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs11(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Double) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_ltEs6(Right(x0), Left(x1), x2, x3) new_ltEs6(Left(x0), Right(x1), x2, x3) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Integer) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs10(x0, x1) new_compare19(x0, x1, x2, x3) new_esEs12(x0, x1, ty_Ordering) new_ltEs6(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs27(x0, x1, ty_Int) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_compare14(x0, x1, ty_Float) new_ltEs5(False, False) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, ty_Integer) new_compare12(x0, x1, True, x2, x3) new_esEs30(x0, x1, ty_Int) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs29(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primMulNat0(Succ(x0), Succ(x1)) new_lt17(x0, x1, ty_Float) new_asAs(True, x0) new_lt18(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Bool) new_esEs23(x0, x1, ty_Integer) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs11(x0, x1, ty_Double) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Just(x0), Just(x1), ty_Float) new_ltEs7(Just(x0), Just(x1), ty_Double) new_primCmpNat0(Succ(x0), Zero) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Just(x0), Just(x1), ty_Double) new_ltEs6(Left(x0), Left(x1), ty_Integer, x2) new_esEs13(Double(x0, x1), Double(x2, x3)) new_esEs32(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_esEs21(x0, x1, ty_Int) new_compare5(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs12(x0, x1, ty_Int) new_ltEs6(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_lt20(x0, x1, ty_Ordering) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_compare14(x0, x1, app(ty_Maybe, x2)) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs27(x0, x1, ty_Char) new_esEs18(x0, x1) new_esEs28(x0, x1, ty_Int) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, True) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs11(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Char) new_primCompAux00(x0, GT) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs22(x0, x1, ty_Char) new_esEs30(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt15(x0, x1) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Float) new_compare14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs12(x0, x1, ty_Float) new_esEs23(x0, x1, ty_Double) new_compare14(x0, x1, ty_Bool) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs22(x0, x1, ty_Int) new_esEs17([], [], x0) new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt9(x0, x1) new_lt17(x0, x1, ty_Bool) new_esEs32(x0, x1, ty_@0) new_esEs9(False, True) new_esEs9(True, False) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs15(Integer(x0), Integer(x1)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Float) new_asAs(False, x0) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare14(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_lt11(x0, x1) new_primEqNat0(Zero, Succ(x0)) new_esEs32(x0, x1, ty_Integer) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_lt18(x0, x1, ty_Bool) new_esEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_lt10(x0, x1) new_ltEs19(x0, x1, ty_Char) new_primEqNat0(Zero, Zero) new_esEs11(x0, x1, app(app(ty_Either, x2), x3)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_lt7(x0, x1, x2) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_lt18(x0, x1, ty_Float) new_ltEs6(Right(x0), Right(x1), x2, ty_@0) new_ltEs6(Right(x0), Right(x1), x2, ty_Double) new_not(False) new_lt17(x0, x1, app(ty_Ratio, x2)) new_compare14(x0, x1, ty_Integer) new_compare([], [], x0) new_esEs22(x0, x1, ty_Float) new_primMulNat0(Zero, Succ(x0)) new_ltEs6(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, x2, x3, x4) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_esEs31(x0, x1, ty_@0) new_compare7(x0, x1) new_lt17(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs15(@2(x0, x1), @2(x2, x3), x4, x5) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs6(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs19(x0, x1, ty_Int) new_esEs12(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare14(x0, x1, ty_Ordering) new_esEs10(x0, x1, ty_Double) new_compare25(x0, x1, False, x2, x3) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs26(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Float) new_lt18(x0, x1, ty_Int) new_compare6(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare6(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1) new_lt17(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Bool) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs23(x0, x1, ty_@0) new_esEs27(x0, x1, ty_Integer) new_compare14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs11(x0, x1, app(ty_Ratio, x2)) new_compare10(x0, x1, True, x2) new_esEs12(x0, x1, ty_Char) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_compare16(Integer(x0), Integer(x1)) new_compare5(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt17(x0, x1, ty_Ordering) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpNat0(Zero, Zero) new_lt4(x0, x1) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpNat0(Zero, Succ(x0)) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs27(x0, x1, ty_Ordering) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs6(Left(x0), Left(x1), ty_Bool, x2) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare211(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Left(vyw30), bc, bd, be) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Right(vyw400), False, bd, be), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Right(vyw400), False, bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM0(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs8(new_compare211(Left(vyw30), Left(vyw400), new_esEs30(vyw30, vyw400, bd), bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_elemFM01(vyw16, Left(vyw18), h, ba, bb) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_elemFM01(vyw17, Left(vyw18), h, ba, bb) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw44, Left(vyw30), bc, bd, be) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], bf)) -> new_esEs2(vyw300, vyw4000, bf) new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vyw300, vyw4000, bcg, bch) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(ty_Maybe, eg)) -> new_esEs(vyw302, vyw4002, eg) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), bbf) -> new_esEs2(vyw301, vyw4001, bbf) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdh)) -> new_esEs2(vyw300, vyw4000, bdh) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(app(ty_@2, fc), fd)) -> new_esEs1(vyw302, vyw4002, fc, fd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(app(ty_Either, ee), ef), cc) -> new_esEs3(vyw301, vyw4001, ee, ef) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(app(app(ty_@3, dg), dh), ea), cc) -> new_esEs0(vyw301, vyw4001, dg, dh, ea) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(app(ty_@2, eb), ec), cc) -> new_esEs1(vyw301, vyw4001, eb, ec) new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_@2, bd), be)) -> new_esEs1(vyw300, vyw4000, bd, be) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs0(vyw300, vyw4000, baf, bag, bah) new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bcd), bce), bbh) -> new_esEs1(vyw300, vyw4000, bcd, bce) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_Maybe, bdb)) -> new_esEs(vyw300, vyw4000, bdb) new_esEs(Just(vyw300), Just(vyw4000), app(ty_Maybe, h)) -> new_esEs(vyw300, vyw4000, h) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, gc), gd), ge), gb) -> new_esEs0(vyw300, vyw4000, gc, gd, ge) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(app(ty_Either, fg), fh)) -> new_esEs3(vyw302, vyw4002, fg, fh) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw300, vyw4000, bea, beb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs0(vyw302, vyw4002, eh, fa, fb) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(vyw301, vyw4001, he, hf, hg) new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(vyw300, vyw4000, bca, bcb, bcc) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, ga), gb) -> new_esEs(vyw300, vyw4000, ga) new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(vyw300, vyw4000, ba, bb, bc) new_esEs3(Left(vyw300), Left(vyw4000), app(ty_Maybe, bbg), bbh) -> new_esEs(vyw300, vyw4000, bbg) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(ty_Maybe, hd)) -> new_esEs(vyw301, vyw4001, hd) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, ha), hb), gb) -> new_esEs3(vyw300, vyw4000, ha, hb) new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_Either, bg), bh)) -> new_esEs3(vyw300, vyw4000, bg, bh) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, bae)) -> new_esEs(vyw300, vyw4000, bae) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(ty_[], bab)) -> new_esEs2(vyw301, vyw4001, bab) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, gf), gg), gb) -> new_esEs1(vyw300, vyw4000, gf, gg) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], bbc)) -> new_esEs2(vyw300, vyw4000, bbc) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(ty_[], ff)) -> new_esEs2(vyw302, vyw4002, ff) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], gh), gb) -> new_esEs2(vyw300, vyw4000, gh) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, bbd), bbe)) -> new_esEs3(vyw300, vyw4000, bbd, bbe) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(ty_[], ed), cc) -> new_esEs2(vyw301, vyw4001, ed) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], db), cb, cc) -> new_esEs2(vyw300, vyw4000, db) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(ty_@2, hh), baa)) -> new_esEs1(vyw301, vyw4001, hh, baa) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ca), cb, cc) -> new_esEs(vyw300, vyw4000, ca) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, cd), ce), cf), cb, cc) -> new_esEs0(vyw300, vyw4000, cd, ce, cf) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, cg), da), cb, cc) -> new_esEs1(vyw300, vyw4000, cg, da) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, dc), dd), cb, cc) -> new_esEs3(vyw300, vyw4000, dc, dd) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(ty_Either, bac), bad)) -> new_esEs3(vyw301, vyw4001, bac, bad) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bba), bbb)) -> new_esEs1(vyw300, vyw4000, bba, bbb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(ty_Maybe, df), cc) -> new_esEs(vyw301, vyw4001, df) new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bcf), bbh) -> new_esEs2(vyw300, vyw4000, bcf) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, bae)) -> new_esEs(vyw300, vyw4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, bbd), bbe)) -> new_esEs3(vyw300, vyw4000, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, baf), bag), bah)) -> new_esEs0(vyw300, vyw4000, baf, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Just(vyw300), Just(vyw4000), app(ty_Maybe, h)) -> new_esEs(vyw300, vyw4000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_Either, bg), bh)) -> new_esEs3(vyw300, vyw4000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(vyw300, vyw4000, ba, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bba), bbb)) -> new_esEs1(vyw300, vyw4000, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], bf)) -> new_esEs2(vyw300, vyw4000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_@2, bd), be)) -> new_esEs1(vyw300, vyw4000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), bbf) -> new_esEs2(vyw301, vyw4001, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], bbc)) -> new_esEs2(vyw300, vyw4000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_Maybe, bdb)) -> new_esEs(vyw300, vyw4000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(ty_Maybe, bbg), bbh) -> new_esEs(vyw300, vyw4000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, ga), gb) -> new_esEs(vyw300, vyw4000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(ty_Maybe, hd)) -> new_esEs(vyw301, vyw4001, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(ty_Maybe, eg)) -> new_esEs(vyw302, vyw4002, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, ca), cb, cc) -> new_esEs(vyw300, vyw4000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(ty_Maybe, df), cc) -> new_esEs(vyw301, vyw4001, df) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vyw300, vyw4000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw300, vyw4000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(vyw300, vyw4000, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdh)) -> new_esEs2(vyw300, vyw4000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bcf), bbh) -> new_esEs2(vyw300, vyw4000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bcd), bce), bbh) -> new_esEs1(vyw300, vyw4000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, ha), hb), gb) -> new_esEs3(vyw300, vyw4000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(ty_Either, bac), bad)) -> new_esEs3(vyw301, vyw4001, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(app(ty_Either, ee), ef), cc) -> new_esEs3(vyw301, vyw4001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(app(ty_Either, fg), fh)) -> new_esEs3(vyw302, vyw4002, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, dc), dd), cb, cc) -> new_esEs3(vyw300, vyw4000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, gc), gd), ge), gb) -> new_esEs0(vyw300, vyw4000, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(app(ty_@3, he), hf), hg)) -> new_esEs0(vyw301, vyw4001, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(app(app(ty_@3, dg), dh), ea), cc) -> new_esEs0(vyw301, vyw4001, dg, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(app(app(ty_@3, eh), fa), fb)) -> new_esEs0(vyw302, vyw4002, eh, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, cd), ce), cf), cb, cc) -> new_esEs0(vyw300, vyw4000, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(ty_[], bab)) -> new_esEs2(vyw301, vyw4001, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], gh), gb) -> new_esEs2(vyw300, vyw4000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(ty_[], ff)) -> new_esEs2(vyw302, vyw4002, ff) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(ty_[], ed), cc) -> new_esEs2(vyw301, vyw4001, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], db), cb, cc) -> new_esEs2(vyw300, vyw4000, db) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, gf), gg), gb) -> new_esEs1(vyw300, vyw4000, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(ty_@2, hh), baa)) -> new_esEs1(vyw301, vyw4001, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, cb, app(app(ty_@2, fc), fd)) -> new_esEs1(vyw302, vyw4002, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), de, app(app(ty_@2, eb), ec), cc) -> new_esEs1(vyw301, vyw4001, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, cg), da), cb, cc) -> new_esEs1(vyw300, vyw4000, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw30100), Succ(vyw400000)) -> new_primMulNat(vyw30100, Succ(vyw400000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vyw30100), Succ(vyw400000)) -> new_primMulNat(vyw30100, Succ(vyw400000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat(vyw3000, vyw40000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw15200), Succ(vyw4000000)) -> new_primPlusNat(vyw15200, vyw4000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) 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. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vyw15200), Succ(vyw4000000)) -> new_primPlusNat(vyw15200, vyw4000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (43) YES