/export/starexec/sandbox/solver/bin/starexec_run_standard /export/starexec/sandbox/benchmark/theBenchmark.hs /export/starexec/sandbox/output/output_files -------------------------------------------------------------------------------- YES proof of /export/starexec/sandbox/benchmark/theBenchmark.hs # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 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, 0 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 67 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] (25) YES (26) QDP (27) DependencyGraphProof [EQUIVALENT, 0 ms] (28) AND (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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; Just elt-> True; } ; fmToList :: FiniteMap a b -> [(a,b)]; 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 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; } ---------------------------------------- (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 b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } elemFM :: Ord a => a -> FiniteMap a b -> Bool; elemFM key fm = case lookupFM fm key of { Nothing-> False; 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 _ 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; } ---------------------------------------- (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 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 a => a -> FiniteMap a b -> 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 _ 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 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; } ---------------------------------------- (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 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 a => a -> FiniteMap a b -> 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 :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 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 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; } ---------------------------------------- (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 a => a -> FiniteMap a b -> 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 = 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 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; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: 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); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal0 x True = `negate` x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "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 "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 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 a => a -> FiniteMap a b -> 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; } ---------------------------------------- (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' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` 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 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 a => a -> FiniteMap a b -> 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; } ---------------------------------------- (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 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 a => a -> FiniteMap a b -> 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 -> b -> c -> c) -> c -> FiniteMap a b -> 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 = 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"];3691[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 3691[label="",style="solid", color="burlywood", weight=9]; 3691 -> 6[label="",style="solid", color="burlywood", weight=3]; 3692[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 3692[label="",style="solid", color="burlywood", weight=9]; 3692 -> 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"];3693[label="vyw3/Left vyw30",fontsize=10,color="white",style="solid",shape="box"];15 -> 3693[label="",style="solid", color="burlywood", weight=9]; 3693 -> 16[label="",style="solid", color="burlywood", weight=3]; 3694[label="vyw3/Right vyw30",fontsize=10,color="white",style="solid",shape="box"];15 -> 3694[label="",style="solid", color="burlywood", weight=9]; 3694 -> 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"];3695[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];16 -> 3695[label="",style="solid", color="burlywood", weight=9]; 3695 -> 18[label="",style="solid", color="burlywood", weight=3]; 3696[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];16 -> 3696[label="",style="solid", color="burlywood", weight=9]; 3696 -> 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"];3697[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];17 -> 3697[label="",style="solid", color="burlywood", weight=9]; 3697 -> 20[label="",style="solid", color="burlywood", weight=3]; 3698[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];17 -> 3698[label="",style="solid", color="burlywood", weight=9]; 3698 -> 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 -> 47[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"];3699[label="vyw37/False",fontsize=10,color="white",style="solid",shape="box"];184 -> 3699[label="",style="solid", color="burlywood", weight=9]; 3699 -> 197[label="",style="solid", color="burlywood", weight=3]; 3700[label="vyw37/True",fontsize=10,color="white",style="solid",shape="box"];184 -> 3700[label="",style="solid", color="burlywood", weight=9]; 3700 -> 198[label="",style="solid", color="burlywood", weight=3]; 101 -> 47[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"];3701[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];100 -> 3701[label="",style="solid", color="burlywood", weight=9]; 3701 -> 106[label="",style="solid", color="burlywood", weight=3]; 3702[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];100 -> 3702[label="",style="solid", color="burlywood", weight=9]; 3702 -> 107[label="",style="solid", color="burlywood", weight=3]; 109 -> 47[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"];3703[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];108 -> 3703[label="",style="solid", color="burlywood", weight=9]; 3703 -> 114[label="",style="solid", color="burlywood", weight=3]; 3704[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];108 -> 3704[label="",style="solid", color="burlywood", weight=9]; 3704 -> 115[label="",style="solid", color="burlywood", weight=3]; 207 -> 47[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"];3705[label="vyw38/False",fontsize=10,color="white",style="solid",shape="box"];206 -> 3705[label="",style="solid", color="burlywood", weight=9]; 3705 -> 219[label="",style="solid", color="burlywood", weight=3]; 3706[label="vyw38/True",fontsize=10,color="white",style="solid",shape="box"];206 -> 3706[label="",style="solid", color="burlywood", weight=9]; 3706 -> 220[label="",style="solid", color="burlywood", weight=3]; 195[label="LT",fontsize=16,color="green",shape="box"];196 -> 1847[label="",style="dashed", color="red", weight=0]; 196[label="compare2 (Left vyw30) (Left vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];196 -> 1848[label="",style="dashed", color="magenta", weight=3]; 196 -> 1849[label="",style="dashed", color="magenta", weight=3]; 196 -> 1850[label="",style="dashed", color="magenta", weight=3]; 47[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3707[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];47 -> 3707[label="",style="solid", color="burlywood", weight=9]; 3707 -> 82[label="",style="solid", color="burlywood", weight=3]; 3708[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];47 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 83[label="",style="solid", color="burlywood", weight=3]; 3709[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];47 -> 3709[label="",style="solid", color="burlywood", weight=9]; 3709 -> 84[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 -> 1847[label="",style="dashed", color="red", weight=0]; 105[label="compare2 (Left vyw30) (Right vyw400) False",fontsize=16,color="magenta"];105 -> 1851[label="",style="dashed", color="magenta", weight=3]; 105 -> 1852[label="",style="dashed", color="magenta", weight=3]; 105 -> 1853[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 -> 1847[label="",style="dashed", color="red", weight=0]; 113[label="compare2 (Right vyw30) (Left vyw400) False",fontsize=16,color="magenta"];113 -> 1854[label="",style="dashed", color="magenta", weight=3]; 113 -> 1855[label="",style="dashed", color="magenta", weight=3]; 113 -> 1856[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 -> 1847[label="",style="dashed", color="red", weight=0]; 218[label="compare2 (Right vyw30) (Right vyw400) (vyw30 == vyw400)",fontsize=16,color="magenta"];218 -> 1857[label="",style="dashed", color="magenta", weight=3]; 218 -> 1858[label="",style="dashed", color="magenta", weight=3]; 218 -> 1859[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]; 1848[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3710[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3710[label="",style="solid", color="blue", weight=9]; 3710 -> 1885[label="",style="solid", color="blue", weight=3]; 3711[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3711[label="",style="solid", color="blue", weight=9]; 3711 -> 1886[label="",style="solid", color="blue", weight=3]; 3712[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 1887[label="",style="solid", color="blue", weight=3]; 3713[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 1888[label="",style="solid", color="blue", weight=3]; 3714[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 1889[label="",style="solid", color="blue", weight=3]; 3715[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 1890[label="",style="solid", color="blue", weight=3]; 3716[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 1891[label="",style="solid", color="blue", weight=3]; 3717[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 1892[label="",style="solid", color="blue", weight=3]; 3718[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 1893[label="",style="solid", color="blue", weight=3]; 3719[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 1894[label="",style="solid", color="blue", weight=3]; 3720[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 1895[label="",style="solid", color="blue", weight=3]; 3721[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 1896[label="",style="solid", color="blue", weight=3]; 3722[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 1897[label="",style="solid", color="blue", weight=3]; 3723[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1848 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 1898[label="",style="solid", color="blue", weight=3]; 1849[label="Left vyw400",fontsize=16,color="green",shape="box"];1850[label="Left vyw30",fontsize=16,color="green",shape="box"];1847[label="compare2 vyw430 vyw440 vyw95",fontsize=16,color="burlywood",shape="triangle"];3724[label="vyw95/False",fontsize=10,color="white",style="solid",shape="box"];1847 -> 3724[label="",style="solid", color="burlywood", weight=9]; 3724 -> 1899[label="",style="solid", color="burlywood", weight=3]; 3725[label="vyw95/True",fontsize=10,color="white",style="solid",shape="box"];1847 -> 3725[label="",style="solid", color="burlywood", weight=9]; 3725 -> 1900[label="",style="solid", color="burlywood", weight=3]; 82[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];3726[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];82 -> 3726[label="",style="solid", color="burlywood", weight=9]; 3726 -> 155[label="",style="solid", color="burlywood", weight=3]; 3727[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];82 -> 3727[label="",style="solid", color="burlywood", weight=9]; 3727 -> 156[label="",style="solid", color="burlywood", weight=3]; 3728[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];82 -> 3728[label="",style="solid", color="burlywood", weight=9]; 3728 -> 157[label="",style="solid", color="burlywood", weight=3]; 83[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];3729[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];83 -> 3729[label="",style="solid", color="burlywood", weight=9]; 3729 -> 158[label="",style="solid", color="burlywood", weight=3]; 3730[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];83 -> 3730[label="",style="solid", color="burlywood", weight=9]; 3730 -> 159[label="",style="solid", color="burlywood", weight=3]; 3731[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];83 -> 3731[label="",style="solid", color="burlywood", weight=9]; 3731 -> 160[label="",style="solid", color="burlywood", weight=3]; 84[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];3732[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];84 -> 3732[label="",style="solid", color="burlywood", weight=9]; 3732 -> 161[label="",style="solid", color="burlywood", weight=3]; 3733[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];84 -> 3733[label="",style="solid", color="burlywood", weight=9]; 3733 -> 162[label="",style="solid", color="burlywood", weight=3]; 3734[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];84 -> 3734[label="",style="solid", color="burlywood", weight=9]; 3734 -> 163[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]; 1851[label="False",fontsize=16,color="green",shape="box"];1852[label="Right vyw400",fontsize=16,color="green",shape="box"];1853[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]; 1854[label="False",fontsize=16,color="green",shape="box"];1855[label="Left vyw400",fontsize=16,color="green",shape="box"];1856[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]; 1857[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];3735[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3735[label="",style="solid", color="blue", weight=9]; 3735 -> 1901[label="",style="solid", color="blue", weight=3]; 3736[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3736[label="",style="solid", color="blue", weight=9]; 3736 -> 1902[label="",style="solid", color="blue", weight=3]; 3737[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 1903[label="",style="solid", color="blue", weight=3]; 3738[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 1904[label="",style="solid", color="blue", weight=3]; 3739[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 1905[label="",style="solid", color="blue", weight=3]; 3740[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 1906[label="",style="solid", color="blue", weight=3]; 3741[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 1907[label="",style="solid", color="blue", weight=3]; 3742[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 1908[label="",style="solid", color="blue", weight=3]; 3743[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 1909[label="",style="solid", color="blue", weight=3]; 3744[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 1910[label="",style="solid", color="blue", weight=3]; 3745[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 1911[label="",style="solid", color="blue", weight=3]; 3746[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 1912[label="",style="solid", color="blue", weight=3]; 3747[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 1913[label="",style="solid", color="blue", weight=3]; 3748[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1857 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 1914[label="",style="solid", color="blue", weight=3]; 1858[label="Right vyw400",fontsize=16,color="green",shape="box"];1859[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]; 1885[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3749[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3749[label="",style="solid", color="burlywood", weight=9]; 3749 -> 1919[label="",style="solid", color="burlywood", weight=3]; 1886[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3750[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3750[label="",style="solid", color="burlywood", weight=9]; 3750 -> 1920[label="",style="solid", color="burlywood", weight=3]; 3751[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3751[label="",style="solid", color="burlywood", weight=9]; 3751 -> 1921[label="",style="solid", color="burlywood", weight=3]; 1887[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3752[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];1887 -> 3752[label="",style="solid", color="burlywood", weight=9]; 3752 -> 1922[label="",style="solid", color="burlywood", weight=3]; 1888 -> 47[label="",style="dashed", color="red", weight=0]; 1888[label="vyw30 == vyw400",fontsize=16,color="magenta"];1889[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1889 -> 1923[label="",style="solid", color="black", weight=3]; 1890[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1890 -> 1924[label="",style="solid", color="black", weight=3]; 1891[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1891 -> 1925[label="",style="solid", color="black", weight=3]; 1892[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];1892 -> 1926[label="",style="solid", color="black", weight=3]; 1893[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3753[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];1893 -> 3753[label="",style="solid", color="burlywood", weight=9]; 3753 -> 1927[label="",style="solid", color="burlywood", weight=3]; 3754[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];1893 -> 3754[label="",style="solid", color="burlywood", weight=9]; 3754 -> 1928[label="",style="solid", color="burlywood", weight=3]; 1894[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3755[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];1894 -> 3755[label="",style="solid", color="burlywood", weight=9]; 3755 -> 1929[label="",style="solid", color="burlywood", weight=3]; 1895[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3756[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];1895 -> 3756[label="",style="solid", color="burlywood", weight=9]; 3756 -> 1930[label="",style="solid", color="burlywood", weight=3]; 1896[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3757[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3757[label="",style="solid", color="burlywood", weight=9]; 3757 -> 1931[label="",style="solid", color="burlywood", weight=3]; 3758[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];1896 -> 3758[label="",style="solid", color="burlywood", weight=9]; 3758 -> 1932[label="",style="solid", color="burlywood", weight=3]; 1897[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3759[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];1897 -> 3759[label="",style="solid", color="burlywood", weight=9]; 3759 -> 1933[label="",style="solid", color="burlywood", weight=3]; 1898[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];3760[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3760[label="",style="solid", color="burlywood", weight=9]; 3760 -> 1934[label="",style="solid", color="burlywood", weight=3]; 3761[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];1898 -> 3761[label="",style="solid", color="burlywood", weight=9]; 3761 -> 1935[label="",style="solid", color="burlywood", weight=3]; 1899[label="compare2 vyw430 vyw440 False",fontsize=16,color="black",shape="box"];1899 -> 1936[label="",style="solid", color="black", weight=3]; 1900[label="compare2 vyw430 vyw440 True",fontsize=16,color="black",shape="box"];1900 -> 1937[label="",style="solid", color="black", weight=3]; 155[label="LT == LT",fontsize=16,color="black",shape="box"];155 -> 272[label="",style="solid", color="black", weight=3]; 156[label="LT == EQ",fontsize=16,color="black",shape="box"];156 -> 273[label="",style="solid", color="black", weight=3]; 157[label="LT == GT",fontsize=16,color="black",shape="box"];157 -> 274[label="",style="solid", color="black", weight=3]; 158[label="EQ == LT",fontsize=16,color="black",shape="box"];158 -> 275[label="",style="solid", color="black", weight=3]; 159[label="EQ == EQ",fontsize=16,color="black",shape="box"];159 -> 276[label="",style="solid", color="black", weight=3]; 160[label="EQ == GT",fontsize=16,color="black",shape="box"];160 -> 277[label="",style="solid", color="black", weight=3]; 161[label="GT == LT",fontsize=16,color="black",shape="box"];161 -> 278[label="",style="solid", color="black", weight=3]; 162[label="GT == EQ",fontsize=16,color="black",shape="box"];162 -> 279[label="",style="solid", color="black", weight=3]; 163[label="GT == GT",fontsize=16,color="black",shape="box"];163 -> 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"];3762[label="vyw54/False",fontsize=10,color="white",style="solid",shape="box"];307 -> 3762[label="",style="solid", color="burlywood", weight=9]; 3762 -> 311[label="",style="solid", color="burlywood", weight=3]; 3763[label="vyw54/True",fontsize=10,color="white",style="solid",shape="box"];307 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 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"];3764[label="vyw53/False",fontsize=10,color="white",style="solid",shape="box"];282 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 314[label="",style="solid", color="burlywood", weight=3]; 3765[label="vyw53/True",fontsize=10,color="white",style="solid",shape="box"];282 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 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"];3766[label="vyw55/False",fontsize=10,color="white",style="solid",shape="box"];317 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 321[label="",style="solid", color="burlywood", weight=3]; 3767[label="vyw55/True",fontsize=10,color="white",style="solid",shape="box"];317 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 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"];1901 -> 1885[label="",style="dashed", color="red", weight=0]; 1901[label="vyw30 == vyw400",fontsize=16,color="magenta"];1901 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1886[label="",style="dashed", color="red", weight=0]; 1902[label="vyw30 == vyw400",fontsize=16,color="magenta"];1902 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1887[label="",style="dashed", color="red", weight=0]; 1903[label="vyw30 == vyw400",fontsize=16,color="magenta"];1903 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1904 -> 47[label="",style="dashed", color="red", weight=0]; 1904[label="vyw30 == vyw400",fontsize=16,color="magenta"];1904 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1889[label="",style="dashed", color="red", weight=0]; 1905[label="vyw30 == vyw400",fontsize=16,color="magenta"];1905 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1906 -> 1890[label="",style="dashed", color="red", weight=0]; 1906[label="vyw30 == vyw400",fontsize=16,color="magenta"];1906 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1906 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1907 -> 1891[label="",style="dashed", color="red", weight=0]; 1907[label="vyw30 == vyw400",fontsize=16,color="magenta"];1907 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1907 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1892[label="",style="dashed", color="red", weight=0]; 1908[label="vyw30 == vyw400",fontsize=16,color="magenta"];1908 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1893[label="",style="dashed", color="red", weight=0]; 1909[label="vyw30 == vyw400",fontsize=16,color="magenta"];1909 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1894[label="",style="dashed", color="red", weight=0]; 1910[label="vyw30 == vyw400",fontsize=16,color="magenta"];1910 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1910 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1911 -> 1895[label="",style="dashed", color="red", weight=0]; 1911[label="vyw30 == vyw400",fontsize=16,color="magenta"];1911 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1911 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1912 -> 1896[label="",style="dashed", color="red", weight=0]; 1912[label="vyw30 == vyw400",fontsize=16,color="magenta"];1912 -> 1960[label="",style="dashed", color="magenta", weight=3]; 1912 -> 1961[label="",style="dashed", color="magenta", weight=3]; 1913 -> 1897[label="",style="dashed", color="red", weight=0]; 1913[label="vyw30 == vyw400",fontsize=16,color="magenta"];1913 -> 1962[label="",style="dashed", color="magenta", weight=3]; 1913 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1914 -> 1898[label="",style="dashed", color="red", weight=0]; 1914[label="vyw30 == vyw400",fontsize=16,color="magenta"];1914 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1914 -> 1965[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"];3768[label="vyw56/False",fontsize=10,color="white",style="solid",shape="box"];353 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 357[label="",style="solid", color="burlywood", weight=3]; 3769[label="vyw56/True",fontsize=10,color="white",style="solid",shape="box"];353 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 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"];1919[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3770[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 1994[label="",style="solid", color="burlywood", weight=3]; 1920[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];3771[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1920 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 1995[label="",style="solid", color="burlywood", weight=3]; 3772[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1920 -> 3772[label="",style="solid", color="burlywood", weight=9]; 3772 -> 1996[label="",style="solid", color="burlywood", weight=3]; 1921[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3773[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3773[label="",style="solid", color="burlywood", weight=9]; 3773 -> 1997[label="",style="solid", color="burlywood", weight=3]; 3774[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3774[label="",style="solid", color="burlywood", weight=9]; 3774 -> 1998[label="",style="solid", color="burlywood", weight=3]; 1922[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];3775[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3775[label="",style="solid", color="burlywood", weight=9]; 3775 -> 1999[label="",style="solid", color="burlywood", weight=3]; 1923[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];3776[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 2000[label="",style="solid", color="burlywood", weight=3]; 3777[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 2001[label="",style="solid", color="burlywood", weight=3]; 1924[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3778[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1924 -> 3778[label="",style="solid", color="burlywood", weight=9]; 3778 -> 2002[label="",style="solid", color="burlywood", weight=3]; 1925[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3779[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];1925 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 2003[label="",style="solid", color="burlywood", weight=3]; 1926[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];3780[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];1926 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 2004[label="",style="solid", color="burlywood", weight=3]; 1927[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3781[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3781[label="",style="solid", color="burlywood", weight=9]; 3781 -> 2005[label="",style="solid", color="burlywood", weight=3]; 3782[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3782[label="",style="solid", color="burlywood", weight=9]; 3782 -> 2006[label="",style="solid", color="burlywood", weight=3]; 1928[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];3783[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3783[label="",style="solid", color="burlywood", weight=9]; 3783 -> 2007[label="",style="solid", color="burlywood", weight=3]; 3784[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3784[label="",style="solid", color="burlywood", weight=9]; 3784 -> 2008[label="",style="solid", color="burlywood", weight=3]; 1929[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];3785[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];1929 -> 3785[label="",style="solid", color="burlywood", weight=9]; 3785 -> 2009[label="",style="solid", color="burlywood", weight=3]; 1930[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];3786[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];1930 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 2010[label="",style="solid", color="burlywood", weight=3]; 1931[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];3787[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 2011[label="",style="solid", color="burlywood", weight=3]; 3788[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 2012[label="",style="solid", color="burlywood", weight=3]; 1932[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];3789[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 2013[label="",style="solid", color="burlywood", weight=3]; 3790[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];1932 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 2014[label="",style="solid", color="burlywood", weight=3]; 1933[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];3791[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];1933 -> 3791[label="",style="solid", color="burlywood", weight=9]; 3791 -> 2015[label="",style="solid", color="burlywood", weight=3]; 1934[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3792[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3792[label="",style="solid", color="burlywood", weight=9]; 3792 -> 2016[label="",style="solid", color="burlywood", weight=3]; 3793[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1934 -> 3793[label="",style="solid", color="burlywood", weight=9]; 3793 -> 2017[label="",style="solid", color="burlywood", weight=3]; 1935[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];3794[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3794[label="",style="solid", color="burlywood", weight=9]; 3794 -> 2018[label="",style="solid", color="burlywood", weight=3]; 3795[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];1935 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 2019[label="",style="solid", color="burlywood", weight=3]; 1936[label="compare1 vyw430 vyw440 (vyw430 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3796[label="vyw430/Left vyw4300",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3796[label="",style="solid", color="burlywood", weight=9]; 3796 -> 2020[label="",style="solid", color="burlywood", weight=3]; 3797[label="vyw430/Right vyw4300",fontsize=10,color="white",style="solid",shape="box"];1936 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 2021[label="",style="solid", color="burlywood", weight=3]; 1937[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 -> 47[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 -> 47[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 -> 47[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]; 1938[label="vyw400",fontsize=16,color="green",shape="box"];1939[label="vyw30",fontsize=16,color="green",shape="box"];1940[label="vyw400",fontsize=16,color="green",shape="box"];1941[label="vyw30",fontsize=16,color="green",shape="box"];1942[label="vyw400",fontsize=16,color="green",shape="box"];1943[label="vyw30",fontsize=16,color="green",shape="box"];1944[label="vyw400",fontsize=16,color="green",shape="box"];1945[label="vyw30",fontsize=16,color="green",shape="box"];1946[label="vyw400",fontsize=16,color="green",shape="box"];1947[label="vyw30",fontsize=16,color="green",shape="box"];1948[label="vyw400",fontsize=16,color="green",shape="box"];1949[label="vyw30",fontsize=16,color="green",shape="box"];1950[label="vyw400",fontsize=16,color="green",shape="box"];1951[label="vyw30",fontsize=16,color="green",shape="box"];1952[label="vyw400",fontsize=16,color="green",shape="box"];1953[label="vyw30",fontsize=16,color="green",shape="box"];1954[label="vyw400",fontsize=16,color="green",shape="box"];1955[label="vyw30",fontsize=16,color="green",shape="box"];1956[label="vyw400",fontsize=16,color="green",shape="box"];1957[label="vyw30",fontsize=16,color="green",shape="box"];1958[label="vyw400",fontsize=16,color="green",shape="box"];1959[label="vyw30",fontsize=16,color="green",shape="box"];1960[label="vyw400",fontsize=16,color="green",shape="box"];1961[label="vyw30",fontsize=16,color="green",shape="box"];1962[label="vyw400",fontsize=16,color="green",shape="box"];1963[label="vyw30",fontsize=16,color="green",shape="box"];1964[label="vyw400",fontsize=16,color="green",shape="box"];1965[label="vyw30",fontsize=16,color="green",shape="box"];356 -> 47[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]; 1994[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];1994 -> 2078[label="",style="solid", color="black", weight=3]; 1995[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1995 -> 2079[label="",style="solid", color="black", weight=3]; 1996[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];1996 -> 2080[label="",style="solid", color="black", weight=3]; 1997[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];1997 -> 2081[label="",style="solid", color="black", weight=3]; 1998[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];1998 -> 2082[label="",style="solid", color="black", weight=3]; 1999[label="() == ()",fontsize=16,color="black",shape="box"];1999 -> 2083[label="",style="solid", color="black", weight=3]; 2000[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3798[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 2084[label="",style="solid", color="burlywood", weight=3]; 3799[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];2000 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 2085[label="",style="solid", color="burlywood", weight=3]; 2001[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3800[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 2086[label="",style="solid", color="burlywood", weight=3]; 3801[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];2001 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 2087[label="",style="solid", color="burlywood", weight=3]; 2002[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3802[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];2002 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 2088[label="",style="solid", color="burlywood", weight=3]; 2003[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];3803[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];2003 -> 3803[label="",style="solid", color="burlywood", weight=9]; 3803 -> 2089[label="",style="solid", color="burlywood", weight=3]; 2004[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];3804[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];2004 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 2090[label="",style="solid", color="burlywood", weight=3]; 2005[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];2005 -> 2091[label="",style="solid", color="black", weight=3]; 2006[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];2006 -> 2092[label="",style="solid", color="black", weight=3]; 2007[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];2007 -> 2093[label="",style="solid", color="black", weight=3]; 2008[label="[] == []",fontsize=16,color="black",shape="box"];2008 -> 2094[label="",style="solid", color="black", weight=3]; 2009[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];2009 -> 2095[label="",style="solid", color="black", weight=3]; 2010[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];2010 -> 2096[label="",style="solid", color="black", weight=3]; 2011[label="False == False",fontsize=16,color="black",shape="box"];2011 -> 2097[label="",style="solid", color="black", weight=3]; 2012[label="False == True",fontsize=16,color="black",shape="box"];2012 -> 2098[label="",style="solid", color="black", weight=3]; 2013[label="True == False",fontsize=16,color="black",shape="box"];2013 -> 2099[label="",style="solid", color="black", weight=3]; 2014[label="True == True",fontsize=16,color="black",shape="box"];2014 -> 2100[label="",style="solid", color="black", weight=3]; 2015[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];2015 -> 2101[label="",style="solid", color="black", weight=3]; 2016[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];2016 -> 2102[label="",style="solid", color="black", weight=3]; 2017[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];2017 -> 2103[label="",style="solid", color="black", weight=3]; 2018[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];2018 -> 2104[label="",style="solid", color="black", weight=3]; 2019[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];2019 -> 2105[label="",style="solid", color="black", weight=3]; 2020[label="compare1 (Left vyw4300) vyw440 (Left vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3805[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 2106[label="",style="solid", color="burlywood", weight=3]; 3806[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2020 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 2107[label="",style="solid", color="burlywood", weight=3]; 2021[label="compare1 (Right vyw4300) vyw440 (Right vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3807[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2021 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 2108[label="",style="solid", color="burlywood", weight=3]; 3808[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2021 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 2109[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]; 2078 -> 1923[label="",style="dashed", color="red", weight=0]; 2078[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];2078 -> 2110[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2111[label="",style="dashed", color="magenta", weight=3]; 2079[label="True",fontsize=16,color="green",shape="box"];2080[label="False",fontsize=16,color="green",shape="box"];2081[label="False",fontsize=16,color="green",shape="box"];2082[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3809[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3809[label="",style="solid", color="blue", weight=9]; 3809 -> 2112[label="",style="solid", color="blue", weight=3]; 3810[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3810[label="",style="solid", color="blue", weight=9]; 3810 -> 2113[label="",style="solid", color="blue", weight=3]; 3811[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3811[label="",style="solid", color="blue", weight=9]; 3811 -> 2114[label="",style="solid", color="blue", weight=3]; 3812[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3812[label="",style="solid", color="blue", weight=9]; 3812 -> 2115[label="",style="solid", color="blue", weight=3]; 3813[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3813[label="",style="solid", color="blue", weight=9]; 3813 -> 2116[label="",style="solid", color="blue", weight=3]; 3814[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3814[label="",style="solid", color="blue", weight=9]; 3814 -> 2117[label="",style="solid", color="blue", weight=3]; 3815[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3815[label="",style="solid", color="blue", weight=9]; 3815 -> 2118[label="",style="solid", color="blue", weight=3]; 3816[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3816[label="",style="solid", color="blue", weight=9]; 3816 -> 2119[label="",style="solid", color="blue", weight=3]; 3817[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3817[label="",style="solid", color="blue", weight=9]; 3817 -> 2120[label="",style="solid", color="blue", weight=3]; 3818[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3818[label="",style="solid", color="blue", weight=9]; 3818 -> 2121[label="",style="solid", color="blue", weight=3]; 3819[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 2122[label="",style="solid", color="blue", weight=3]; 3820[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 2123[label="",style="solid", color="blue", weight=3]; 3821[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 2124[label="",style="solid", color="blue", weight=3]; 3822[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2082 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 2125[label="",style="solid", color="blue", weight=3]; 2083[label="True",fontsize=16,color="green",shape="box"];2084[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3823[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3823[label="",style="solid", color="burlywood", weight=9]; 3823 -> 2126[label="",style="solid", color="burlywood", weight=3]; 3824[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3824[label="",style="solid", color="burlywood", weight=9]; 3824 -> 2127[label="",style="solid", color="burlywood", weight=3]; 2085[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3825[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3825[label="",style="solid", color="burlywood", weight=9]; 3825 -> 2128[label="",style="solid", color="burlywood", weight=3]; 3826[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2085 -> 3826[label="",style="solid", color="burlywood", weight=9]; 3826 -> 2129[label="",style="solid", color="burlywood", weight=3]; 2086[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];3827[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3827[label="",style="solid", color="burlywood", weight=9]; 3827 -> 2130[label="",style="solid", color="burlywood", weight=3]; 3828[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2086 -> 3828[label="",style="solid", color="burlywood", weight=9]; 3828 -> 2131[label="",style="solid", color="burlywood", weight=3]; 2087[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];3829[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];2087 -> 3829[label="",style="solid", color="burlywood", weight=9]; 3829 -> 2132[label="",style="solid", color="burlywood", weight=3]; 3830[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];2087 -> 3830[label="",style="solid", color="burlywood", weight=9]; 3830 -> 2133[label="",style="solid", color="burlywood", weight=3]; 2088[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];2088 -> 2134[label="",style="solid", color="black", weight=3]; 2089[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];2089 -> 2135[label="",style="solid", color="black", weight=3]; 2090[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];2090 -> 2136[label="",style="solid", color="black", weight=3]; 2091 -> 2230[label="",style="dashed", color="red", weight=0]; 2091[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];2091 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2092[label="False",fontsize=16,color="green",shape="box"];2093[label="False",fontsize=16,color="green",shape="box"];2094[label="True",fontsize=16,color="green",shape="box"];2095 -> 2230[label="",style="dashed", color="red", weight=0]; 2095[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];2095 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2095 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2230[label="",style="dashed", color="red", weight=0]; 2096[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];2096 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2096 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2097[label="True",fontsize=16,color="green",shape="box"];2098[label="False",fontsize=16,color="green",shape="box"];2099[label="False",fontsize=16,color="green",shape="box"];2100[label="True",fontsize=16,color="green",shape="box"];2101 -> 2230[label="",style="dashed", color="red", weight=0]; 2101[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];2101 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2101 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2102[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3831[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3831[label="",style="solid", color="blue", weight=9]; 3831 -> 2148[label="",style="solid", color="blue", weight=3]; 3832[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3832[label="",style="solid", color="blue", weight=9]; 3832 -> 2149[label="",style="solid", color="blue", weight=3]; 3833[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 2150[label="",style="solid", color="blue", weight=3]; 3834[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 2151[label="",style="solid", color="blue", weight=3]; 3835[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 2152[label="",style="solid", color="blue", weight=3]; 3836[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 2153[label="",style="solid", color="blue", weight=3]; 3837[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 2154[label="",style="solid", color="blue", weight=3]; 3838[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3838[label="",style="solid", color="blue", weight=9]; 3838 -> 2155[label="",style="solid", color="blue", weight=3]; 3839[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 2156[label="",style="solid", color="blue", weight=3]; 3840[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 2157[label="",style="solid", color="blue", weight=3]; 3841[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 2158[label="",style="solid", color="blue", weight=3]; 3842[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 2159[label="",style="solid", color="blue", weight=3]; 3843[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 2160[label="",style="solid", color="blue", weight=3]; 3844[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2102 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 2161[label="",style="solid", color="blue", weight=3]; 2103[label="False",fontsize=16,color="green",shape="box"];2104[label="False",fontsize=16,color="green",shape="box"];2105[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3845[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 2162[label="",style="solid", color="blue", weight=3]; 3846[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 2163[label="",style="solid", color="blue", weight=3]; 3847[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 2164[label="",style="solid", color="blue", weight=3]; 3848[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 2165[label="",style="solid", color="blue", weight=3]; 3849[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2166[label="",style="solid", color="blue", weight=3]; 3850[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2167[label="",style="solid", color="blue", weight=3]; 3851[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2168[label="",style="solid", color="blue", weight=3]; 3852[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2169[label="",style="solid", color="blue", weight=3]; 3853[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3853[label="",style="solid", color="blue", weight=9]; 3853 -> 2170[label="",style="solid", color="blue", weight=3]; 3854[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3854[label="",style="solid", color="blue", weight=9]; 3854 -> 2171[label="",style="solid", color="blue", weight=3]; 3855[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3855[label="",style="solid", color="blue", weight=9]; 3855 -> 2172[label="",style="solid", color="blue", weight=3]; 3856[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3856[label="",style="solid", color="blue", weight=9]; 3856 -> 2173[label="",style="solid", color="blue", weight=3]; 3857[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3857[label="",style="solid", color="blue", weight=9]; 3857 -> 2174[label="",style="solid", color="blue", weight=3]; 3858[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2105 -> 3858[label="",style="solid", color="blue", weight=9]; 3858 -> 2175[label="",style="solid", color="blue", weight=3]; 2106[label="compare1 (Left vyw4300) (Left vyw4400) (Left vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2106 -> 2176[label="",style="solid", color="black", weight=3]; 2107[label="compare1 (Left vyw4300) (Right vyw4400) (Left vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2107 -> 2177[label="",style="solid", color="black", weight=3]; 2108[label="compare1 (Right vyw4300) (Left vyw4400) (Right vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2108 -> 2178[label="",style="solid", color="black", weight=3]; 2109[label="compare1 (Right vyw4300) (Right vyw4400) (Right vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2109 -> 2179[label="",style="solid", color="black", weight=3]; 442[label="compare3 (Left vyw18) (Left vyw13)",fontsize=16,color="black",shape="box"];442 -> 551[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 -> 552[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 -> 553[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 -> 554[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 -> 555[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 -> 556[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 -> 573[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 -> 574[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"];2110[label="vyw4000",fontsize=16,color="green",shape="box"];2111[label="vyw300",fontsize=16,color="green",shape="box"];2112 -> 1885[label="",style="dashed", color="red", weight=0]; 2112[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2112 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2113 -> 1886[label="",style="dashed", color="red", weight=0]; 2113[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2113 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2114 -> 1887[label="",style="dashed", color="red", weight=0]; 2114[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2114 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2115 -> 47[label="",style="dashed", color="red", weight=0]; 2115[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2115 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2116 -> 1889[label="",style="dashed", color="red", weight=0]; 2116[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2116 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2117 -> 1890[label="",style="dashed", color="red", weight=0]; 2117[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2117 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2118 -> 1891[label="",style="dashed", color="red", weight=0]; 2118[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2118 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2119 -> 1892[label="",style="dashed", color="red", weight=0]; 2119[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2119 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2120 -> 1893[label="",style="dashed", color="red", weight=0]; 2120[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2120 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2121 -> 1894[label="",style="dashed", color="red", weight=0]; 2121[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2121 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2122 -> 1895[label="",style="dashed", color="red", weight=0]; 2122[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2122 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2123 -> 1896[label="",style="dashed", color="red", weight=0]; 2123[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2123 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2124 -> 1897[label="",style="dashed", color="red", weight=0]; 2124[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2124 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2125 -> 1898[label="",style="dashed", color="red", weight=0]; 2125[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2125 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2126[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3859[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 2208[label="",style="solid", color="burlywood", weight=3]; 3860[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2126 -> 3860[label="",style="solid", color="burlywood", weight=9]; 3860 -> 2209[label="",style="solid", color="burlywood", weight=3]; 2127[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];2127 -> 2210[label="",style="solid", color="black", weight=3]; 2128[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3861[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2128 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 2211[label="",style="solid", color="burlywood", weight=3]; 3862[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2128 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 2212[label="",style="solid", color="burlywood", weight=3]; 2129[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3863[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2129 -> 3863[label="",style="solid", color="burlywood", weight=9]; 3863 -> 2213[label="",style="solid", color="burlywood", weight=3]; 3864[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2129 -> 3864[label="",style="solid", color="burlywood", weight=9]; 3864 -> 2214[label="",style="solid", color="burlywood", weight=3]; 2130[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];2130 -> 2215[label="",style="solid", color="black", weight=3]; 2131[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3865[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2131 -> 3865[label="",style="solid", color="burlywood", weight=9]; 3865 -> 2216[label="",style="solid", color="burlywood", weight=3]; 3866[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2131 -> 3866[label="",style="solid", color="burlywood", weight=9]; 3866 -> 2217[label="",style="solid", color="burlywood", weight=3]; 2132[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];3867[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2132 -> 3867[label="",style="solid", color="burlywood", weight=9]; 3867 -> 2218[label="",style="solid", color="burlywood", weight=3]; 3868[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2132 -> 3868[label="",style="solid", color="burlywood", weight=9]; 3868 -> 2219[label="",style="solid", color="burlywood", weight=3]; 2133[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];3869[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2133 -> 3869[label="",style="solid", color="burlywood", weight=9]; 3869 -> 2220[label="",style="solid", color="burlywood", weight=3]; 3870[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2133 -> 3870[label="",style="solid", color="burlywood", weight=9]; 3870 -> 2221[label="",style="solid", color="burlywood", weight=3]; 2134 -> 1889[label="",style="dashed", color="red", weight=0]; 2134[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];2134 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2135 -> 1889[label="",style="dashed", color="red", weight=0]; 2135[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];2135 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2136[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3871[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];2136 -> 3871[label="",style="solid", color="burlywood", weight=9]; 3871 -> 2226[label="",style="solid", color="burlywood", weight=3]; 3872[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];2136 -> 3872[label="",style="solid", color="burlywood", weight=9]; 3872 -> 2227[label="",style="solid", color="burlywood", weight=3]; 2231 -> 1893[label="",style="dashed", color="red", weight=0]; 2231[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2231 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2231 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2232[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3873[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 2245[label="",style="solid", color="blue", weight=3]; 3874[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 2246[label="",style="solid", color="blue", weight=3]; 3875[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 2247[label="",style="solid", color="blue", weight=3]; 3876[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 2248[label="",style="solid", color="blue", weight=3]; 3877[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3877[label="",style="solid", color="blue", weight=9]; 3877 -> 2249[label="",style="solid", color="blue", weight=3]; 3878[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3878[label="",style="solid", color="blue", weight=9]; 3878 -> 2250[label="",style="solid", color="blue", weight=3]; 3879[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 2251[label="",style="solid", color="blue", weight=3]; 3880[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 2252[label="",style="solid", color="blue", weight=3]; 3881[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 2253[label="",style="solid", color="blue", weight=3]; 3882[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 2254[label="",style="solid", color="blue", weight=3]; 3883[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 2255[label="",style="solid", color="blue", weight=3]; 3884[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 2256[label="",style="solid", color="blue", weight=3]; 3885[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 2257[label="",style="solid", color="blue", weight=3]; 3886[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2232 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 2258[label="",style="solid", color="blue", weight=3]; 2230[label="vyw100 && vyw101",fontsize=16,color="burlywood",shape="triangle"];3887[label="vyw100/False",fontsize=10,color="white",style="solid",shape="box"];2230 -> 3887[label="",style="solid", color="burlywood", weight=9]; 3887 -> 2259[label="",style="solid", color="burlywood", weight=3]; 3888[label="vyw100/True",fontsize=10,color="white",style="solid",shape="box"];2230 -> 3888[label="",style="solid", color="burlywood", weight=9]; 3888 -> 2260[label="",style="solid", color="burlywood", weight=3]; 2233 -> 2230[label="",style="dashed", color="red", weight=0]; 2233[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];2233 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2233 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2234[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3889[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 2263[label="",style="solid", color="blue", weight=3]; 3890[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 2264[label="",style="solid", color="blue", weight=3]; 3891[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 2265[label="",style="solid", color="blue", weight=3]; 3892[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 2266[label="",style="solid", color="blue", weight=3]; 3893[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 2267[label="",style="solid", color="blue", weight=3]; 3894[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 2268[label="",style="solid", color="blue", weight=3]; 3895[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 2269[label="",style="solid", color="blue", weight=3]; 3896[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 2270[label="",style="solid", color="blue", weight=3]; 3897[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3897[label="",style="solid", color="blue", weight=9]; 3897 -> 2271[label="",style="solid", color="blue", weight=3]; 3898[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3898[label="",style="solid", color="blue", weight=9]; 3898 -> 2272[label="",style="solid", color="blue", weight=3]; 3899[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3899[label="",style="solid", color="blue", weight=9]; 3899 -> 2273[label="",style="solid", color="blue", weight=3]; 3900[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3900[label="",style="solid", color="blue", weight=9]; 3900 -> 2274[label="",style="solid", color="blue", weight=3]; 3901[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3901[label="",style="solid", color="blue", weight=9]; 3901 -> 2275[label="",style="solid", color="blue", weight=3]; 3902[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2234 -> 3902[label="",style="solid", color="blue", weight=9]; 3902 -> 2276[label="",style="solid", color="blue", weight=3]; 2235[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3903[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3903[label="",style="solid", color="blue", weight=9]; 3903 -> 2277[label="",style="solid", color="blue", weight=3]; 3904[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2235 -> 3904[label="",style="solid", color="blue", weight=9]; 3904 -> 2278[label="",style="solid", color="blue", weight=3]; 2236[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3905[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2236 -> 3905[label="",style="solid", color="blue", weight=9]; 3905 -> 2279[label="",style="solid", color="blue", weight=3]; 3906[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2236 -> 3906[label="",style="solid", color="blue", weight=9]; 3906 -> 2280[label="",style="solid", color="blue", weight=3]; 2237[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3907[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3907[label="",style="solid", color="blue", weight=9]; 3907 -> 2281[label="",style="solid", color="blue", weight=3]; 3908[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3908[label="",style="solid", color="blue", weight=9]; 3908 -> 2282[label="",style="solid", color="blue", weight=3]; 3909[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 2283[label="",style="solid", color="blue", weight=3]; 3910[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 2284[label="",style="solid", color="blue", weight=3]; 3911[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 2285[label="",style="solid", color="blue", weight=3]; 3912[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 2286[label="",style="solid", color="blue", weight=3]; 3913[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 2287[label="",style="solid", color="blue", weight=3]; 3914[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 2288[label="",style="solid", color="blue", weight=3]; 3915[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 2289[label="",style="solid", color="blue", weight=3]; 3916[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 2290[label="",style="solid", color="blue", weight=3]; 3917[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 2291[label="",style="solid", color="blue", weight=3]; 3918[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 2292[label="",style="solid", color="blue", weight=3]; 3919[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 2293[label="",style="solid", color="blue", weight=3]; 3920[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2237 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 2294[label="",style="solid", color="blue", weight=3]; 2238[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];3921[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 2295[label="",style="solid", color="blue", weight=3]; 3922[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 2296[label="",style="solid", color="blue", weight=3]; 3923[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 2297[label="",style="solid", color="blue", weight=3]; 3924[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 2298[label="",style="solid", color="blue", weight=3]; 3925[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 2299[label="",style="solid", color="blue", weight=3]; 3926[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 2300[label="",style="solid", color="blue", weight=3]; 3927[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 2301[label="",style="solid", color="blue", weight=3]; 3928[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 2302[label="",style="solid", color="blue", weight=3]; 3929[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 2303[label="",style="solid", color="blue", weight=3]; 3930[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 2304[label="",style="solid", color="blue", weight=3]; 3931[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 2305[label="",style="solid", color="blue", weight=3]; 3932[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 2306[label="",style="solid", color="blue", weight=3]; 3933[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 2307[label="",style="solid", color="blue", weight=3]; 3934[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2238 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 2308[label="",style="solid", color="blue", weight=3]; 2148 -> 1885[label="",style="dashed", color="red", weight=0]; 2148[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2148 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2310[label="",style="dashed", color="magenta", weight=3]; 2149 -> 1886[label="",style="dashed", color="red", weight=0]; 2149[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2149 -> 2311[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2312[label="",style="dashed", color="magenta", weight=3]; 2150 -> 1887[label="",style="dashed", color="red", weight=0]; 2150[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2150 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2150 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2151 -> 47[label="",style="dashed", color="red", weight=0]; 2151[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2151 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2152 -> 1889[label="",style="dashed", color="red", weight=0]; 2152[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2152 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2153 -> 1890[label="",style="dashed", color="red", weight=0]; 2153[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2153 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2154 -> 1891[label="",style="dashed", color="red", weight=0]; 2154[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2154 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2155 -> 1892[label="",style="dashed", color="red", weight=0]; 2155[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2155 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2156 -> 1893[label="",style="dashed", color="red", weight=0]; 2156[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2156 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2156 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2157 -> 1894[label="",style="dashed", color="red", weight=0]; 2157[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2157 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2157 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2158 -> 1895[label="",style="dashed", color="red", weight=0]; 2158[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2158 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2158 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2159 -> 1896[label="",style="dashed", color="red", weight=0]; 2159[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2159 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2159 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2160 -> 1897[label="",style="dashed", color="red", weight=0]; 2160[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2160 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2160 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2161 -> 1898[label="",style="dashed", color="red", weight=0]; 2161[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2161 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2161 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2162 -> 1885[label="",style="dashed", color="red", weight=0]; 2162[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2162 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2162 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2163 -> 1886[label="",style="dashed", color="red", weight=0]; 2163[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2163 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2163 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2164 -> 1887[label="",style="dashed", color="red", weight=0]; 2164[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2164 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2164 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2165 -> 47[label="",style="dashed", color="red", weight=0]; 2165[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2165 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2165 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2166 -> 1889[label="",style="dashed", color="red", weight=0]; 2166[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2166 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2166 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2167 -> 1890[label="",style="dashed", color="red", weight=0]; 2167[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2167 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2168 -> 1891[label="",style="dashed", color="red", weight=0]; 2168[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2168 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2169 -> 1892[label="",style="dashed", color="red", weight=0]; 2169[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2169 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2169 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2170 -> 1893[label="",style="dashed", color="red", weight=0]; 2170[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2170 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2170 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2171 -> 1894[label="",style="dashed", color="red", weight=0]; 2171[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2171 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2171 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2172 -> 1895[label="",style="dashed", color="red", weight=0]; 2172[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2172 -> 2357[label="",style="dashed", color="magenta", weight=3]; 2172 -> 2358[label="",style="dashed", color="magenta", weight=3]; 2173 -> 1896[label="",style="dashed", color="red", weight=0]; 2173[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2173 -> 2359[label="",style="dashed", color="magenta", weight=3]; 2173 -> 2360[label="",style="dashed", color="magenta", weight=3]; 2174 -> 1897[label="",style="dashed", color="red", weight=0]; 2174[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2174 -> 2361[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2362[label="",style="dashed", color="magenta", weight=3]; 2175 -> 1898[label="",style="dashed", color="red", weight=0]; 2175[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2175 -> 2363[label="",style="dashed", color="magenta", weight=3]; 2175 -> 2364[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2365[label="",style="dashed", color="red", weight=0]; 2176[label="compare1 (Left vyw4300) (Left vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2176 -> 2366[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2367[label="",style="dashed", color="magenta", weight=3]; 2176 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2177[label="compare1 (Left vyw4300) (Right vyw4400) True",fontsize=16,color="black",shape="box"];2177 -> 2369[label="",style="solid", color="black", weight=3]; 2178[label="compare1 (Right vyw4300) (Left vyw4400) False",fontsize=16,color="black",shape="box"];2178 -> 2370[label="",style="solid", color="black", weight=3]; 2179 -> 2371[label="",style="dashed", color="red", weight=0]; 2179[label="compare1 (Right vyw4300) (Right vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2179 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2179 -> 2374[label="",style="dashed", color="magenta", weight=3]; 551 -> 1847[label="",style="dashed", color="red", weight=0]; 551[label="compare2 (Left vyw18) (Left vyw13) (Left vyw18 == Left vyw13)",fontsize=16,color="magenta"];551 -> 1872[label="",style="dashed", color="magenta", weight=3]; 551 -> 1873[label="",style="dashed", color="magenta", weight=3]; 551 -> 1874[label="",style="dashed", color="magenta", weight=3]; 552[label="FiniteMap.elemFM0 (Just vyw14)",fontsize=16,color="black",shape="triangle"];552 -> 783[label="",style="solid", color="black", weight=3]; 553 -> 1847[label="",style="dashed", color="red", weight=0]; 553[label="compare2 (Left vyw30) (Right vyw400) (Left vyw30 == Right vyw400)",fontsize=16,color="magenta"];553 -> 1875[label="",style="dashed", color="magenta", weight=3]; 553 -> 1876[label="",style="dashed", color="magenta", weight=3]; 553 -> 1877[label="",style="dashed", color="magenta", weight=3]; 554 -> 552[label="",style="dashed", color="red", weight=0]; 554[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="magenta"];554 -> 789[label="",style="dashed", color="magenta", weight=3]; 555 -> 1847[label="",style="dashed", color="red", weight=0]; 555[label="compare2 (Right vyw30) (Left vyw400) (Right vyw30 == Left vyw400)",fontsize=16,color="magenta"];555 -> 1878[label="",style="dashed", color="magenta", weight=3]; 555 -> 1879[label="",style="dashed", color="magenta", weight=3]; 555 -> 1880[label="",style="dashed", color="magenta", weight=3]; 556 -> 552[label="",style="dashed", color="red", weight=0]; 556[label="FiniteMap.elemFM0 (Just vyw41)",fontsize=16,color="magenta"];556 -> 797[label="",style="dashed", color="magenta", weight=3]; 573 -> 1847[label="",style="dashed", color="red", weight=0]; 573[label="compare2 (Right vyw33) (Right vyw28) (Right vyw33 == Right vyw28)",fontsize=16,color="magenta"];573 -> 1881[label="",style="dashed", color="magenta", weight=3]; 573 -> 1882[label="",style="dashed", color="magenta", weight=3]; 573 -> 1883[label="",style="dashed", color="magenta", weight=3]; 574 -> 552[label="",style="dashed", color="red", weight=0]; 574[label="FiniteMap.elemFM0 (Just vyw29)",fontsize=16,color="magenta"];574 -> 830[label="",style="dashed", color="magenta", weight=3]; 2180[label="vyw4000",fontsize=16,color="green",shape="box"];2181[label="vyw300",fontsize=16,color="green",shape="box"];2182[label="vyw4000",fontsize=16,color="green",shape="box"];2183[label="vyw300",fontsize=16,color="green",shape="box"];2184[label="vyw4000",fontsize=16,color="green",shape="box"];2185[label="vyw300",fontsize=16,color="green",shape="box"];2186[label="vyw4000",fontsize=16,color="green",shape="box"];2187[label="vyw300",fontsize=16,color="green",shape="box"];2188[label="vyw4000",fontsize=16,color="green",shape="box"];2189[label="vyw300",fontsize=16,color="green",shape="box"];2190[label="vyw4000",fontsize=16,color="green",shape="box"];2191[label="vyw300",fontsize=16,color="green",shape="box"];2192[label="vyw4000",fontsize=16,color="green",shape="box"];2193[label="vyw300",fontsize=16,color="green",shape="box"];2194[label="vyw4000",fontsize=16,color="green",shape="box"];2195[label="vyw300",fontsize=16,color="green",shape="box"];2196[label="vyw4000",fontsize=16,color="green",shape="box"];2197[label="vyw300",fontsize=16,color="green",shape="box"];2198[label="vyw4000",fontsize=16,color="green",shape="box"];2199[label="vyw300",fontsize=16,color="green",shape="box"];2200[label="vyw4000",fontsize=16,color="green",shape="box"];2201[label="vyw300",fontsize=16,color="green",shape="box"];2202[label="vyw4000",fontsize=16,color="green",shape="box"];2203[label="vyw300",fontsize=16,color="green",shape="box"];2204[label="vyw4000",fontsize=16,color="green",shape="box"];2205[label="vyw300",fontsize=16,color="green",shape="box"];2206[label="vyw4000",fontsize=16,color="green",shape="box"];2207[label="vyw300",fontsize=16,color="green",shape="box"];2208[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2208 -> 2375[label="",style="solid", color="black", weight=3]; 2209[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2209 -> 2376[label="",style="solid", color="black", weight=3]; 2210[label="False",fontsize=16,color="green",shape="box"];2211[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2211 -> 2377[label="",style="solid", color="black", weight=3]; 2212[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2212 -> 2378[label="",style="solid", color="black", weight=3]; 2213[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2213 -> 2379[label="",style="solid", color="black", weight=3]; 2214[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2214 -> 2380[label="",style="solid", color="black", weight=3]; 2215[label="False",fontsize=16,color="green",shape="box"];2216[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2216 -> 2381[label="",style="solid", color="black", weight=3]; 2217[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2217 -> 2382[label="",style="solid", color="black", weight=3]; 2218[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];2218 -> 2383[label="",style="solid", color="black", weight=3]; 2219[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2219 -> 2384[label="",style="solid", color="black", weight=3]; 2220[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];2220 -> 2385[label="",style="solid", color="black", weight=3]; 2221[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2221 -> 2386[label="",style="solid", color="black", weight=3]; 2222[label="vyw301 * vyw4000",fontsize=16,color="black",shape="triangle"];2222 -> 2387[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 -> 2388[label="",style="dashed", color="magenta", weight=3]; 2223 -> 2389[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2222[label="",style="dashed", color="red", weight=0]; 2224[label="vyw301 * vyw4000",fontsize=16,color="magenta"];2224 -> 2390[label="",style="dashed", color="magenta", weight=3]; 2224 -> 2391[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2222[label="",style="dashed", color="red", weight=0]; 2225[label="vyw300 * vyw4001",fontsize=16,color="magenta"];2225 -> 2392[label="",style="dashed", color="magenta", weight=3]; 2225 -> 2393[label="",style="dashed", color="magenta", weight=3]; 2226[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];3935[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3935[label="",style="solid", color="burlywood", weight=9]; 3935 -> 2394[label="",style="solid", color="burlywood", weight=3]; 3936[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2226 -> 3936[label="",style="solid", color="burlywood", weight=9]; 3936 -> 2395[label="",style="solid", color="burlywood", weight=3]; 2227[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];3937[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];2227 -> 3937[label="",style="solid", color="burlywood", weight=9]; 3937 -> 2396[label="",style="solid", color="burlywood", weight=3]; 3938[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];2227 -> 3938[label="",style="solid", color="burlywood", weight=9]; 3938 -> 2397[label="",style="solid", color="burlywood", weight=3]; 2243[label="vyw4001",fontsize=16,color="green",shape="box"];2244[label="vyw301",fontsize=16,color="green",shape="box"];2245 -> 1885[label="",style="dashed", color="red", weight=0]; 2245[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2245 -> 2398[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2399[label="",style="dashed", color="magenta", weight=3]; 2246 -> 1886[label="",style="dashed", color="red", weight=0]; 2246[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2246 -> 2400[label="",style="dashed", color="magenta", weight=3]; 2246 -> 2401[label="",style="dashed", color="magenta", weight=3]; 2247 -> 1887[label="",style="dashed", color="red", weight=0]; 2247[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2247 -> 2402[label="",style="dashed", color="magenta", weight=3]; 2247 -> 2403[label="",style="dashed", color="magenta", weight=3]; 2248 -> 47[label="",style="dashed", color="red", weight=0]; 2248[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2248 -> 2404[label="",style="dashed", color="magenta", weight=3]; 2248 -> 2405[label="",style="dashed", color="magenta", weight=3]; 2249 -> 1889[label="",style="dashed", color="red", weight=0]; 2249[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2249 -> 2406[label="",style="dashed", color="magenta", weight=3]; 2249 -> 2407[label="",style="dashed", color="magenta", weight=3]; 2250 -> 1890[label="",style="dashed", color="red", weight=0]; 2250[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2250 -> 2408[label="",style="dashed", color="magenta", weight=3]; 2250 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2251 -> 1891[label="",style="dashed", color="red", weight=0]; 2251[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2251 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2251 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2252 -> 1892[label="",style="dashed", color="red", weight=0]; 2252[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2252 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2252 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2253 -> 1893[label="",style="dashed", color="red", weight=0]; 2253[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2253 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2253 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2254 -> 1894[label="",style="dashed", color="red", weight=0]; 2254[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2254 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2254 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2255 -> 1895[label="",style="dashed", color="red", weight=0]; 2255[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2255 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2255 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2256 -> 1896[label="",style="dashed", color="red", weight=0]; 2256[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2256 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2256 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2257 -> 1897[label="",style="dashed", color="red", weight=0]; 2257[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2257 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2258 -> 1898[label="",style="dashed", color="red", weight=0]; 2258[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2258 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2259[label="False && vyw101",fontsize=16,color="black",shape="box"];2259 -> 2426[label="",style="solid", color="black", weight=3]; 2260[label="True && vyw101",fontsize=16,color="black",shape="box"];2260 -> 2427[label="",style="solid", color="black", weight=3]; 2261[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];3939[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3939[label="",style="solid", color="blue", weight=9]; 3939 -> 2428[label="",style="solid", color="blue", weight=3]; 3940[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3940[label="",style="solid", color="blue", weight=9]; 3940 -> 2429[label="",style="solid", color="blue", weight=3]; 3941[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 2430[label="",style="solid", color="blue", weight=3]; 3942[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 2431[label="",style="solid", color="blue", weight=3]; 3943[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 2432[label="",style="solid", color="blue", weight=3]; 3944[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 2433[label="",style="solid", color="blue", weight=3]; 3945[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 2434[label="",style="solid", color="blue", weight=3]; 3946[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 2435[label="",style="solid", color="blue", weight=3]; 3947[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 2436[label="",style="solid", color="blue", weight=3]; 3948[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3948[label="",style="solid", color="blue", weight=9]; 3948 -> 2437[label="",style="solid", color="blue", weight=3]; 3949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 2438[label="",style="solid", color="blue", weight=3]; 3950[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3950[label="",style="solid", color="blue", weight=9]; 3950 -> 2439[label="",style="solid", color="blue", weight=3]; 3951[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3951[label="",style="solid", color="blue", weight=9]; 3951 -> 2440[label="",style="solid", color="blue", weight=3]; 3952[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2261 -> 3952[label="",style="solid", color="blue", weight=9]; 3952 -> 2441[label="",style="solid", color="blue", weight=3]; 2262[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];3953[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3953[label="",style="solid", color="blue", weight=9]; 3953 -> 2442[label="",style="solid", color="blue", weight=3]; 3954[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 2443[label="",style="solid", color="blue", weight=3]; 3955[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 2444[label="",style="solid", color="blue", weight=3]; 3956[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 2445[label="",style="solid", color="blue", weight=3]; 3957[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 2446[label="",style="solid", color="blue", weight=3]; 3958[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 2447[label="",style="solid", color="blue", weight=3]; 3959[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 2448[label="",style="solid", color="blue", weight=3]; 3960[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 2449[label="",style="solid", color="blue", weight=3]; 3961[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 2450[label="",style="solid", color="blue", weight=3]; 3962[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 2451[label="",style="solid", color="blue", weight=3]; 3963[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 2452[label="",style="solid", color="blue", weight=3]; 3964[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 2453[label="",style="solid", color="blue", weight=3]; 3965[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 2454[label="",style="solid", color="blue", weight=3]; 3966[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2262 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 2455[label="",style="solid", color="blue", weight=3]; 2263 -> 1885[label="",style="dashed", color="red", weight=0]; 2263[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2263 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2264 -> 1886[label="",style="dashed", color="red", weight=0]; 2264[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2264 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1887[label="",style="dashed", color="red", weight=0]; 2265[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2265 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2266 -> 47[label="",style="dashed", color="red", weight=0]; 2266[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2266 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2267 -> 1889[label="",style="dashed", color="red", weight=0]; 2267[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2267 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1890[label="",style="dashed", color="red", weight=0]; 2268[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2268 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2467[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1891[label="",style="dashed", color="red", weight=0]; 2269[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2269 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2270 -> 1892[label="",style="dashed", color="red", weight=0]; 2270[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2270 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2271 -> 1893[label="",style="dashed", color="red", weight=0]; 2271[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2271 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2271 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2272 -> 1894[label="",style="dashed", color="red", weight=0]; 2272[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2272 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2272 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2273 -> 1895[label="",style="dashed", color="red", weight=0]; 2273[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2273 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2273 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2274 -> 1896[label="",style="dashed", color="red", weight=0]; 2274[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2274 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2274 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2275 -> 1897[label="",style="dashed", color="red", weight=0]; 2275[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2275 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2275 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2276 -> 1898[label="",style="dashed", color="red", weight=0]; 2276[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2276 -> 2482[label="",style="dashed", color="magenta", weight=3]; 2276 -> 2483[label="",style="dashed", color="magenta", weight=3]; 2277 -> 1885[label="",style="dashed", color="red", weight=0]; 2277[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2277 -> 2484[label="",style="dashed", color="magenta", weight=3]; 2277 -> 2485[label="",style="dashed", color="magenta", weight=3]; 2278 -> 1889[label="",style="dashed", color="red", weight=0]; 2278[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2278 -> 2486[label="",style="dashed", color="magenta", weight=3]; 2278 -> 2487[label="",style="dashed", color="magenta", weight=3]; 2279 -> 1885[label="",style="dashed", color="red", weight=0]; 2279[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2279 -> 2488[label="",style="dashed", color="magenta", weight=3]; 2279 -> 2489[label="",style="dashed", color="magenta", weight=3]; 2280 -> 1889[label="",style="dashed", color="red", weight=0]; 2280[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2280 -> 2490[label="",style="dashed", color="magenta", weight=3]; 2280 -> 2491[label="",style="dashed", color="magenta", weight=3]; 2281 -> 1885[label="",style="dashed", color="red", weight=0]; 2281[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2281 -> 2492[label="",style="dashed", color="magenta", weight=3]; 2281 -> 2493[label="",style="dashed", color="magenta", weight=3]; 2282 -> 1886[label="",style="dashed", color="red", weight=0]; 2282[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2282 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2282 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2283 -> 1887[label="",style="dashed", color="red", weight=0]; 2283[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2283 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2283 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2284 -> 47[label="",style="dashed", color="red", weight=0]; 2284[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2284 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2284 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2285 -> 1889[label="",style="dashed", color="red", weight=0]; 2285[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2285 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2285 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2286 -> 1890[label="",style="dashed", color="red", weight=0]; 2286[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2286 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2286 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2287 -> 1891[label="",style="dashed", color="red", weight=0]; 2287[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2287 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2287 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2288 -> 1892[label="",style="dashed", color="red", weight=0]; 2288[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2288 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2288 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2289 -> 1893[label="",style="dashed", color="red", weight=0]; 2289[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2289 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2289 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2290 -> 1894[label="",style="dashed", color="red", weight=0]; 2290[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2290 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2290 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2291 -> 1895[label="",style="dashed", color="red", weight=0]; 2291[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2291 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2291 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2292 -> 1896[label="",style="dashed", color="red", weight=0]; 2292[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2292 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2292 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2293 -> 1897[label="",style="dashed", color="red", weight=0]; 2293[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2293 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2293 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2294 -> 1898[label="",style="dashed", color="red", weight=0]; 2294[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2294 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2294 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2295 -> 1885[label="",style="dashed", color="red", weight=0]; 2295[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2295 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2295 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2296 -> 1886[label="",style="dashed", color="red", weight=0]; 2296[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2296 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2296 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2297 -> 1887[label="",style="dashed", color="red", weight=0]; 2297[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2297 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2297 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2298 -> 47[label="",style="dashed", color="red", weight=0]; 2298[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2298 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2298 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2299 -> 1889[label="",style="dashed", color="red", weight=0]; 2299[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2299 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2299 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2300 -> 1890[label="",style="dashed", color="red", weight=0]; 2300[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2300 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2300 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2301 -> 1891[label="",style="dashed", color="red", weight=0]; 2301[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2301 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2301 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2302 -> 1892[label="",style="dashed", color="red", weight=0]; 2302[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2302 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2302 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2303 -> 1893[label="",style="dashed", color="red", weight=0]; 2303[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2303 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2304 -> 1894[label="",style="dashed", color="red", weight=0]; 2304[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2304 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2305 -> 1895[label="",style="dashed", color="red", weight=0]; 2305[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2305 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2306 -> 1896[label="",style="dashed", color="red", weight=0]; 2306[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2306 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2307 -> 1897[label="",style="dashed", color="red", weight=0]; 2307[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2307 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2308 -> 1898[label="",style="dashed", color="red", weight=0]; 2308[label="vyw300 == vyw4000",fontsize=16,color="magenta"];2308 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2309[label="vyw4000",fontsize=16,color="green",shape="box"];2310[label="vyw300",fontsize=16,color="green",shape="box"];2311[label="vyw4000",fontsize=16,color="green",shape="box"];2312[label="vyw300",fontsize=16,color="green",shape="box"];2313[label="vyw4000",fontsize=16,color="green",shape="box"];2314[label="vyw300",fontsize=16,color="green",shape="box"];2315[label="vyw4000",fontsize=16,color="green",shape="box"];2316[label="vyw300",fontsize=16,color="green",shape="box"];2317[label="vyw4000",fontsize=16,color="green",shape="box"];2318[label="vyw300",fontsize=16,color="green",shape="box"];2319[label="vyw4000",fontsize=16,color="green",shape="box"];2320[label="vyw300",fontsize=16,color="green",shape="box"];2321[label="vyw4000",fontsize=16,color="green",shape="box"];2322[label="vyw300",fontsize=16,color="green",shape="box"];2323[label="vyw4000",fontsize=16,color="green",shape="box"];2324[label="vyw300",fontsize=16,color="green",shape="box"];2325[label="vyw4000",fontsize=16,color="green",shape="box"];2326[label="vyw300",fontsize=16,color="green",shape="box"];2327[label="vyw4000",fontsize=16,color="green",shape="box"];2328[label="vyw300",fontsize=16,color="green",shape="box"];2329[label="vyw4000",fontsize=16,color="green",shape="box"];2330[label="vyw300",fontsize=16,color="green",shape="box"];2331[label="vyw4000",fontsize=16,color="green",shape="box"];2332[label="vyw300",fontsize=16,color="green",shape="box"];2333[label="vyw4000",fontsize=16,color="green",shape="box"];2334[label="vyw300",fontsize=16,color="green",shape="box"];2335[label="vyw4000",fontsize=16,color="green",shape="box"];2336[label="vyw300",fontsize=16,color="green",shape="box"];2337[label="vyw4000",fontsize=16,color="green",shape="box"];2338[label="vyw300",fontsize=16,color="green",shape="box"];2339[label="vyw4000",fontsize=16,color="green",shape="box"];2340[label="vyw300",fontsize=16,color="green",shape="box"];2341[label="vyw4000",fontsize=16,color="green",shape="box"];2342[label="vyw300",fontsize=16,color="green",shape="box"];2343[label="vyw4000",fontsize=16,color="green",shape="box"];2344[label="vyw300",fontsize=16,color="green",shape="box"];2345[label="vyw4000",fontsize=16,color="green",shape="box"];2346[label="vyw300",fontsize=16,color="green",shape="box"];2347[label="vyw4000",fontsize=16,color="green",shape="box"];2348[label="vyw300",fontsize=16,color="green",shape="box"];2349[label="vyw4000",fontsize=16,color="green",shape="box"];2350[label="vyw300",fontsize=16,color="green",shape="box"];2351[label="vyw4000",fontsize=16,color="green",shape="box"];2352[label="vyw300",fontsize=16,color="green",shape="box"];2353[label="vyw4000",fontsize=16,color="green",shape="box"];2354[label="vyw300",fontsize=16,color="green",shape="box"];2355[label="vyw4000",fontsize=16,color="green",shape="box"];2356[label="vyw300",fontsize=16,color="green",shape="box"];2357[label="vyw4000",fontsize=16,color="green",shape="box"];2358[label="vyw300",fontsize=16,color="green",shape="box"];2359[label="vyw4000",fontsize=16,color="green",shape="box"];2360[label="vyw300",fontsize=16,color="green",shape="box"];2361[label="vyw4000",fontsize=16,color="green",shape="box"];2362[label="vyw300",fontsize=16,color="green",shape="box"];2363[label="vyw4000",fontsize=16,color="green",shape="box"];2364[label="vyw300",fontsize=16,color="green",shape="box"];2366[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];3967[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 2548[label="",style="solid", color="blue", weight=3]; 3968[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3968[label="",style="solid", color="blue", weight=9]; 3968 -> 2549[label="",style="solid", color="blue", weight=3]; 3969[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3969[label="",style="solid", color="blue", weight=9]; 3969 -> 2550[label="",style="solid", color="blue", weight=3]; 3970[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 2551[label="",style="solid", color="blue", weight=3]; 3971[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 2552[label="",style="solid", color="blue", weight=3]; 3972[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 2553[label="",style="solid", color="blue", weight=3]; 3973[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 2554[label="",style="solid", color="blue", weight=3]; 3974[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 2555[label="",style="solid", color="blue", weight=3]; 3975[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 2556[label="",style="solid", color="blue", weight=3]; 3976[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 2557[label="",style="solid", color="blue", weight=3]; 3977[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 2558[label="",style="solid", color="blue", weight=3]; 3978[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 2559[label="",style="solid", color="blue", weight=3]; 3979[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 2560[label="",style="solid", color="blue", weight=3]; 3980[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2366 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 2561[label="",style="solid", color="blue", weight=3]; 2367[label="vyw4400",fontsize=16,color="green",shape="box"];2368[label="vyw4300",fontsize=16,color="green",shape="box"];2365[label="compare1 (Left vyw106) (Left vyw107) vyw108",fontsize=16,color="burlywood",shape="triangle"];3981[label="vyw108/False",fontsize=10,color="white",style="solid",shape="box"];2365 -> 3981[label="",style="solid", color="burlywood", weight=9]; 3981 -> 2562[label="",style="solid", color="burlywood", weight=3]; 3982[label="vyw108/True",fontsize=10,color="white",style="solid",shape="box"];2365 -> 3982[label="",style="solid", color="burlywood", weight=9]; 3982 -> 2563[label="",style="solid", color="burlywood", weight=3]; 2369[label="LT",fontsize=16,color="green",shape="box"];2370[label="compare0 (Right vyw4300) (Left vyw4400) otherwise",fontsize=16,color="black",shape="box"];2370 -> 2564[label="",style="solid", color="black", weight=3]; 2372[label="vyw4300",fontsize=16,color="green",shape="box"];2373[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];3983[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3983[label="",style="solid", color="blue", weight=9]; 3983 -> 2565[label="",style="solid", color="blue", weight=3]; 3984[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3984[label="",style="solid", color="blue", weight=9]; 3984 -> 2566[label="",style="solid", color="blue", weight=3]; 3985[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 2567[label="",style="solid", color="blue", weight=3]; 3986[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 2568[label="",style="solid", color="blue", weight=3]; 3987[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 2569[label="",style="solid", color="blue", weight=3]; 3988[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 2570[label="",style="solid", color="blue", weight=3]; 3989[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 2571[label="",style="solid", color="blue", weight=3]; 3990[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 2572[label="",style="solid", color="blue", weight=3]; 3991[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 2573[label="",style="solid", color="blue", weight=3]; 3992[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 2574[label="",style="solid", color="blue", weight=3]; 3993[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 2575[label="",style="solid", color="blue", weight=3]; 3994[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 2576[label="",style="solid", color="blue", weight=3]; 3995[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 2577[label="",style="solid", color="blue", weight=3]; 3996[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 2578[label="",style="solid", color="blue", weight=3]; 2374[label="vyw4400",fontsize=16,color="green",shape="box"];2371[label="compare1 (Right vyw113) (Right vyw114) vyw115",fontsize=16,color="burlywood",shape="triangle"];3997[label="vyw115/False",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3997[label="",style="solid", color="burlywood", weight=9]; 3997 -> 2579[label="",style="solid", color="burlywood", weight=3]; 3998[label="vyw115/True",fontsize=10,color="white",style="solid",shape="box"];2371 -> 3998[label="",style="solid", color="burlywood", weight=9]; 3998 -> 2580[label="",style="solid", color="burlywood", weight=3]; 1872[label="Left vyw18 == Left vyw13",fontsize=16,color="black",shape="box"];1872 -> 1915[label="",style="solid", color="black", weight=3]; 1873[label="Left vyw13",fontsize=16,color="green",shape="box"];1874[label="Left vyw18",fontsize=16,color="green",shape="box"];783[label="True",fontsize=16,color="green",shape="box"];1875[label="Left vyw30 == Right vyw400",fontsize=16,color="black",shape="box"];1875 -> 1916[label="",style="solid", color="black", weight=3]; 1876[label="Right vyw400",fontsize=16,color="green",shape="box"];1877[label="Left vyw30",fontsize=16,color="green",shape="box"];789[label="vyw41",fontsize=16,color="green",shape="box"];1878[label="Right vyw30 == Left vyw400",fontsize=16,color="black",shape="box"];1878 -> 1917[label="",style="solid", color="black", weight=3]; 1879[label="Left vyw400",fontsize=16,color="green",shape="box"];1880[label="Right vyw30",fontsize=16,color="green",shape="box"];797[label="vyw41",fontsize=16,color="green",shape="box"];1881[label="Right vyw33 == Right vyw28",fontsize=16,color="black",shape="box"];1881 -> 1918[label="",style="solid", color="black", weight=3]; 1882[label="Right vyw28",fontsize=16,color="green",shape="box"];1883[label="Right vyw33",fontsize=16,color="green",shape="box"];830[label="vyw29",fontsize=16,color="green",shape="box"];2375 -> 2136[label="",style="dashed", color="red", weight=0]; 2375[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2375 -> 2581[label="",style="dashed", color="magenta", weight=3]; 2375 -> 2582[label="",style="dashed", color="magenta", weight=3]; 2376[label="False",fontsize=16,color="green",shape="box"];2377[label="False",fontsize=16,color="green",shape="box"];2378[label="True",fontsize=16,color="green",shape="box"];2379[label="False",fontsize=16,color="green",shape="box"];2380[label="True",fontsize=16,color="green",shape="box"];2381 -> 2136[label="",style="dashed", color="red", weight=0]; 2381[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2381 -> 2583[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2584[label="",style="dashed", color="magenta", weight=3]; 2382[label="False",fontsize=16,color="green",shape="box"];2383[label="False",fontsize=16,color="green",shape="box"];2384[label="True",fontsize=16,color="green",shape="box"];2385[label="False",fontsize=16,color="green",shape="box"];2386[label="True",fontsize=16,color="green",shape="box"];2387[label="primMulInt vyw301 vyw4000",fontsize=16,color="burlywood",shape="triangle"];3999[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];2387 -> 3999[label="",style="solid", color="burlywood", weight=9]; 3999 -> 2585[label="",style="solid", color="burlywood", weight=3]; 4000[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];2387 -> 4000[label="",style="solid", color="burlywood", weight=9]; 4000 -> 2586[label="",style="solid", color="burlywood", weight=3]; 2388[label="vyw300",fontsize=16,color="green",shape="box"];2389[label="vyw4001",fontsize=16,color="green",shape="box"];2390[label="vyw301",fontsize=16,color="green",shape="box"];2391[label="vyw4000",fontsize=16,color="green",shape="box"];2392[label="vyw300",fontsize=16,color="green",shape="box"];2393[label="vyw4001",fontsize=16,color="green",shape="box"];2394[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];2394 -> 2587[label="",style="solid", color="black", weight=3]; 2395[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];2395 -> 2588[label="",style="solid", color="black", weight=3]; 2396[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];2396 -> 2589[label="",style="solid", color="black", weight=3]; 2397[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2397 -> 2590[label="",style="solid", color="black", weight=3]; 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"];2418[label="vyw4000",fontsize=16,color="green",shape="box"];2419[label="vyw300",fontsize=16,color="green",shape="box"];2420[label="vyw4000",fontsize=16,color="green",shape="box"];2421[label="vyw300",fontsize=16,color="green",shape="box"];2422[label="vyw4000",fontsize=16,color="green",shape="box"];2423[label="vyw300",fontsize=16,color="green",shape="box"];2424[label="vyw4000",fontsize=16,color="green",shape="box"];2425[label="vyw300",fontsize=16,color="green",shape="box"];2426[label="False",fontsize=16,color="green",shape="box"];2427[label="vyw101",fontsize=16,color="green",shape="box"];2428 -> 1885[label="",style="dashed", color="red", weight=0]; 2428[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2428 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2428 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2429 -> 1886[label="",style="dashed", color="red", weight=0]; 2429[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2429 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2429 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2430 -> 1887[label="",style="dashed", color="red", weight=0]; 2430[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2430 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2430 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2431 -> 47[label="",style="dashed", color="red", weight=0]; 2431[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2431 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2431 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2432 -> 1889[label="",style="dashed", color="red", weight=0]; 2432[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2432 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2432 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2433 -> 1890[label="",style="dashed", color="red", weight=0]; 2433[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2433 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2433 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2434 -> 1891[label="",style="dashed", color="red", weight=0]; 2434[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2434 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2434 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2435 -> 1892[label="",style="dashed", color="red", weight=0]; 2435[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2435 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2435 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2436 -> 1893[label="",style="dashed", color="red", weight=0]; 2436[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2436 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2436 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2437 -> 1894[label="",style="dashed", color="red", weight=0]; 2437[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2437 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2437 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2438 -> 1895[label="",style="dashed", color="red", weight=0]; 2438[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2438 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2438 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2439 -> 1896[label="",style="dashed", color="red", weight=0]; 2439[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2439 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2439 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2440 -> 1897[label="",style="dashed", color="red", weight=0]; 2440[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2440 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2440 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2441 -> 1898[label="",style="dashed", color="red", weight=0]; 2441[label="vyw302 == vyw4002",fontsize=16,color="magenta"];2441 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2441 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2442 -> 1885[label="",style="dashed", color="red", weight=0]; 2442[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2442 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2442 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2443 -> 1886[label="",style="dashed", color="red", weight=0]; 2443[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2443 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2443 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2444 -> 1887[label="",style="dashed", color="red", weight=0]; 2444[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2444 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2444 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2445 -> 47[label="",style="dashed", color="red", weight=0]; 2445[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2445 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2445 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2446 -> 1889[label="",style="dashed", color="red", weight=0]; 2446[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2446 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2446 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2447 -> 1890[label="",style="dashed", color="red", weight=0]; 2447[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2447 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2447 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2448 -> 1891[label="",style="dashed", color="red", weight=0]; 2448[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2448 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2448 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2449 -> 1892[label="",style="dashed", color="red", weight=0]; 2449[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2449 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2449 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2450 -> 1893[label="",style="dashed", color="red", weight=0]; 2450[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2450 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2450 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2451 -> 1894[label="",style="dashed", color="red", weight=0]; 2451[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2451 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2451 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2452 -> 1895[label="",style="dashed", color="red", weight=0]; 2452[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2452 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2452 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2453 -> 1896[label="",style="dashed", color="red", weight=0]; 2453[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2453 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2453 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2454 -> 1897[label="",style="dashed", color="red", weight=0]; 2454[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2454 -> 2643[label="",style="dashed", color="magenta", weight=3]; 2454 -> 2644[label="",style="dashed", color="magenta", weight=3]; 2455 -> 1898[label="",style="dashed", color="red", weight=0]; 2455[label="vyw301 == vyw4001",fontsize=16,color="magenta"];2455 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2455 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2456[label="vyw4000",fontsize=16,color="green",shape="box"];2457[label="vyw300",fontsize=16,color="green",shape="box"];2458[label="vyw4000",fontsize=16,color="green",shape="box"];2459[label="vyw300",fontsize=16,color="green",shape="box"];2460[label="vyw4000",fontsize=16,color="green",shape="box"];2461[label="vyw300",fontsize=16,color="green",shape="box"];2462[label="vyw4000",fontsize=16,color="green",shape="box"];2463[label="vyw300",fontsize=16,color="green",shape="box"];2464[label="vyw4000",fontsize=16,color="green",shape="box"];2465[label="vyw300",fontsize=16,color="green",shape="box"];2466[label="vyw4000",fontsize=16,color="green",shape="box"];2467[label="vyw300",fontsize=16,color="green",shape="box"];2468[label="vyw4000",fontsize=16,color="green",shape="box"];2469[label="vyw300",fontsize=16,color="green",shape="box"];2470[label="vyw4000",fontsize=16,color="green",shape="box"];2471[label="vyw300",fontsize=16,color="green",shape="box"];2472[label="vyw4000",fontsize=16,color="green",shape="box"];2473[label="vyw300",fontsize=16,color="green",shape="box"];2474[label="vyw4000",fontsize=16,color="green",shape="box"];2475[label="vyw300",fontsize=16,color="green",shape="box"];2476[label="vyw4000",fontsize=16,color="green",shape="box"];2477[label="vyw300",fontsize=16,color="green",shape="box"];2478[label="vyw4000",fontsize=16,color="green",shape="box"];2479[label="vyw300",fontsize=16,color="green",shape="box"];2480[label="vyw4000",fontsize=16,color="green",shape="box"];2481[label="vyw300",fontsize=16,color="green",shape="box"];2482[label="vyw4000",fontsize=16,color="green",shape="box"];2483[label="vyw300",fontsize=16,color="green",shape="box"];2484[label="vyw4001",fontsize=16,color="green",shape="box"];2485[label="vyw301",fontsize=16,color="green",shape="box"];2486[label="vyw4001",fontsize=16,color="green",shape="box"];2487[label="vyw301",fontsize=16,color="green",shape="box"];2488[label="vyw4000",fontsize=16,color="green",shape="box"];2489[label="vyw300",fontsize=16,color="green",shape="box"];2490[label="vyw4000",fontsize=16,color="green",shape="box"];2491[label="vyw300",fontsize=16,color="green",shape="box"];2492[label="vyw4001",fontsize=16,color="green",shape="box"];2493[label="vyw301",fontsize=16,color="green",shape="box"];2494[label="vyw4001",fontsize=16,color="green",shape="box"];2495[label="vyw301",fontsize=16,color="green",shape="box"];2496[label="vyw4001",fontsize=16,color="green",shape="box"];2497[label="vyw301",fontsize=16,color="green",shape="box"];2498[label="vyw4001",fontsize=16,color="green",shape="box"];2499[label="vyw301",fontsize=16,color="green",shape="box"];2500[label="vyw4001",fontsize=16,color="green",shape="box"];2501[label="vyw301",fontsize=16,color="green",shape="box"];2502[label="vyw4001",fontsize=16,color="green",shape="box"];2503[label="vyw301",fontsize=16,color="green",shape="box"];2504[label="vyw4001",fontsize=16,color="green",shape="box"];2505[label="vyw301",fontsize=16,color="green",shape="box"];2506[label="vyw4001",fontsize=16,color="green",shape="box"];2507[label="vyw301",fontsize=16,color="green",shape="box"];2508[label="vyw4001",fontsize=16,color="green",shape="box"];2509[label="vyw301",fontsize=16,color="green",shape="box"];2510[label="vyw4001",fontsize=16,color="green",shape="box"];2511[label="vyw301",fontsize=16,color="green",shape="box"];2512[label="vyw4001",fontsize=16,color="green",shape="box"];2513[label="vyw301",fontsize=16,color="green",shape="box"];2514[label="vyw4001",fontsize=16,color="green",shape="box"];2515[label="vyw301",fontsize=16,color="green",shape="box"];2516[label="vyw4001",fontsize=16,color="green",shape="box"];2517[label="vyw301",fontsize=16,color="green",shape="box"];2518[label="vyw4001",fontsize=16,color="green",shape="box"];2519[label="vyw301",fontsize=16,color="green",shape="box"];2520[label="vyw4000",fontsize=16,color="green",shape="box"];2521[label="vyw300",fontsize=16,color="green",shape="box"];2522[label="vyw4000",fontsize=16,color="green",shape="box"];2523[label="vyw300",fontsize=16,color="green",shape="box"];2524[label="vyw4000",fontsize=16,color="green",shape="box"];2525[label="vyw300",fontsize=16,color="green",shape="box"];2526[label="vyw4000",fontsize=16,color="green",shape="box"];2527[label="vyw300",fontsize=16,color="green",shape="box"];2528[label="vyw4000",fontsize=16,color="green",shape="box"];2529[label="vyw300",fontsize=16,color="green",shape="box"];2530[label="vyw4000",fontsize=16,color="green",shape="box"];2531[label="vyw300",fontsize=16,color="green",shape="box"];2532[label="vyw4000",fontsize=16,color="green",shape="box"];2533[label="vyw300",fontsize=16,color="green",shape="box"];2534[label="vyw4000",fontsize=16,color="green",shape="box"];2535[label="vyw300",fontsize=16,color="green",shape="box"];2536[label="vyw4000",fontsize=16,color="green",shape="box"];2537[label="vyw300",fontsize=16,color="green",shape="box"];2538[label="vyw4000",fontsize=16,color="green",shape="box"];2539[label="vyw300",fontsize=16,color="green",shape="box"];2540[label="vyw4000",fontsize=16,color="green",shape="box"];2541[label="vyw300",fontsize=16,color="green",shape="box"];2542[label="vyw4000",fontsize=16,color="green",shape="box"];2543[label="vyw300",fontsize=16,color="green",shape="box"];2544[label="vyw4000",fontsize=16,color="green",shape="box"];2545[label="vyw300",fontsize=16,color="green",shape="box"];2546[label="vyw4000",fontsize=16,color="green",shape="box"];2547[label="vyw300",fontsize=16,color="green",shape="box"];2548[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4001[label="vyw4300/LT",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4001[label="",style="solid", color="burlywood", weight=9]; 4001 -> 2647[label="",style="solid", color="burlywood", weight=3]; 4002[label="vyw4300/EQ",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4002[label="",style="solid", color="burlywood", weight=9]; 4002 -> 2648[label="",style="solid", color="burlywood", weight=3]; 4003[label="vyw4300/GT",fontsize=10,color="white",style="solid",shape="box"];2548 -> 4003[label="",style="solid", color="burlywood", weight=9]; 4003 -> 2649[label="",style="solid", color="burlywood", weight=3]; 2549[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4004[label="vyw4300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4004[label="",style="solid", color="burlywood", weight=9]; 4004 -> 2650[label="",style="solid", color="burlywood", weight=3]; 4005[label="vyw4300/Just vyw43000",fontsize=10,color="white",style="solid",shape="box"];2549 -> 4005[label="",style="solid", color="burlywood", weight=9]; 4005 -> 2651[label="",style="solid", color="burlywood", weight=3]; 2550[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2550 -> 2652[label="",style="solid", color="black", weight=3]; 2551[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4006[label="vyw4300/(vyw43000,vyw43001)",fontsize=10,color="white",style="solid",shape="box"];2551 -> 4006[label="",style="solid", color="burlywood", weight=9]; 4006 -> 2653[label="",style="solid", color="burlywood", weight=3]; 2552[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2552 -> 2654[label="",style="solid", color="black", weight=3]; 2553[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2553 -> 2655[label="",style="solid", color="black", weight=3]; 2554[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2554 -> 2656[label="",style="solid", color="black", weight=3]; 2555[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2555 -> 2657[label="",style="solid", color="black", weight=3]; 2556[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2556 -> 2658[label="",style="solid", color="black", weight=3]; 2557[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4007[label="vyw4300/False",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4007[label="",style="solid", color="burlywood", weight=9]; 4007 -> 2659[label="",style="solid", color="burlywood", weight=3]; 4008[label="vyw4300/True",fontsize=10,color="white",style="solid",shape="box"];2557 -> 4008[label="",style="solid", color="burlywood", weight=9]; 4008 -> 2660[label="",style="solid", color="burlywood", weight=3]; 2558[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2558 -> 2661[label="",style="solid", color="black", weight=3]; 2559[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2559 -> 2662[label="",style="solid", color="black", weight=3]; 2560[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4009[label="vyw4300/(vyw43000,vyw43001,vyw43002)",fontsize=10,color="white",style="solid",shape="box"];2560 -> 4009[label="",style="solid", color="burlywood", weight=9]; 4009 -> 2663[label="",style="solid", color="burlywood", weight=3]; 2561[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4010[label="vyw4300/Left vyw43000",fontsize=10,color="white",style="solid",shape="box"];2561 -> 4010[label="",style="solid", color="burlywood", weight=9]; 4010 -> 2664[label="",style="solid", color="burlywood", weight=3]; 4011[label="vyw4300/Right vyw43000",fontsize=10,color="white",style="solid",shape="box"];2561 -> 4011[label="",style="solid", color="burlywood", weight=9]; 4011 -> 2665[label="",style="solid", color="burlywood", weight=3]; 2562[label="compare1 (Left vyw106) (Left vyw107) False",fontsize=16,color="black",shape="box"];2562 -> 2666[label="",style="solid", color="black", weight=3]; 2563[label="compare1 (Left vyw106) (Left vyw107) True",fontsize=16,color="black",shape="box"];2563 -> 2667[label="",style="solid", color="black", weight=3]; 2564[label="compare0 (Right vyw4300) (Left vyw4400) True",fontsize=16,color="black",shape="box"];2564 -> 2668[label="",style="solid", color="black", weight=3]; 2565 -> 2548[label="",style="dashed", color="red", weight=0]; 2565[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2565 -> 2669[label="",style="dashed", color="magenta", weight=3]; 2565 -> 2670[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2549[label="",style="dashed", color="red", weight=0]; 2566[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2566 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2566 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2550[label="",style="dashed", color="red", weight=0]; 2567[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2567 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2551[label="",style="dashed", color="red", weight=0]; 2568[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2568 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2552[label="",style="dashed", color="red", weight=0]; 2569[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2569 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2553[label="",style="dashed", color="red", weight=0]; 2570[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2570 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2554[label="",style="dashed", color="red", weight=0]; 2571[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2571 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2555[label="",style="dashed", color="red", weight=0]; 2572[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2572 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2556[label="",style="dashed", color="red", weight=0]; 2573[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2573 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2557[label="",style="dashed", color="red", weight=0]; 2574[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2574 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2558[label="",style="dashed", color="red", weight=0]; 2575[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2575 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2559[label="",style="dashed", color="red", weight=0]; 2576[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2576 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2560[label="",style="dashed", color="red", weight=0]; 2577[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2577 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2561[label="",style="dashed", color="red", weight=0]; 2578[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2578 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2579[label="compare1 (Right vyw113) (Right vyw114) False",fontsize=16,color="black",shape="box"];2579 -> 2697[label="",style="solid", color="black", weight=3]; 2580[label="compare1 (Right vyw113) (Right vyw114) True",fontsize=16,color="black",shape="box"];2580 -> 2698[label="",style="solid", color="black", weight=3]; 1915[label="vyw18 == vyw13",fontsize=16,color="blue",shape="box"];4012[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4012[label="",style="solid", color="blue", weight=9]; 4012 -> 1966[label="",style="solid", color="blue", weight=3]; 4013[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4013[label="",style="solid", color="blue", weight=9]; 4013 -> 1967[label="",style="solid", color="blue", weight=3]; 4014[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 1968[label="",style="solid", color="blue", weight=3]; 4015[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 1969[label="",style="solid", color="blue", weight=3]; 4016[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 1970[label="",style="solid", color="blue", weight=3]; 4017[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 1971[label="",style="solid", color="blue", weight=3]; 4018[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 1972[label="",style="solid", color="blue", weight=3]; 4019[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 1973[label="",style="solid", color="blue", weight=3]; 4020[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 1974[label="",style="solid", color="blue", weight=3]; 4021[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 1975[label="",style="solid", color="blue", weight=3]; 4022[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4022[label="",style="solid", color="blue", weight=9]; 4022 -> 1976[label="",style="solid", color="blue", weight=3]; 4023[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4023[label="",style="solid", color="blue", weight=9]; 4023 -> 1977[label="",style="solid", color="blue", weight=3]; 4024[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4024[label="",style="solid", color="blue", weight=9]; 4024 -> 1978[label="",style="solid", color="blue", weight=3]; 4025[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1915 -> 4025[label="",style="solid", color="blue", weight=9]; 4025 -> 1979[label="",style="solid", color="blue", weight=3]; 1916[label="False",fontsize=16,color="green",shape="box"];1917[label="False",fontsize=16,color="green",shape="box"];1918[label="vyw33 == vyw28",fontsize=16,color="blue",shape="box"];4026[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4026[label="",style="solid", color="blue", weight=9]; 4026 -> 1980[label="",style="solid", color="blue", weight=3]; 4027[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4027[label="",style="solid", color="blue", weight=9]; 4027 -> 1981[label="",style="solid", color="blue", weight=3]; 4028[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4028[label="",style="solid", color="blue", weight=9]; 4028 -> 1982[label="",style="solid", color="blue", weight=3]; 4029[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 1983[label="",style="solid", color="blue", weight=3]; 4030[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 1984[label="",style="solid", color="blue", weight=3]; 4031[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 1985[label="",style="solid", color="blue", weight=3]; 4032[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 1986[label="",style="solid", color="blue", weight=3]; 4033[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 1987[label="",style="solid", color="blue", weight=3]; 4034[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 1988[label="",style="solid", color="blue", weight=3]; 4035[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 1989[label="",style="solid", color="blue", weight=3]; 4036[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4036[label="",style="solid", color="blue", weight=9]; 4036 -> 1990[label="",style="solid", color="blue", weight=3]; 4037[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4037[label="",style="solid", color="blue", weight=9]; 4037 -> 1991[label="",style="solid", color="blue", weight=3]; 4038[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4038[label="",style="solid", color="blue", weight=9]; 4038 -> 1992[label="",style="solid", color="blue", weight=3]; 4039[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1918 -> 4039[label="",style="solid", color="blue", weight=9]; 4039 -> 1993[label="",style="solid", color="blue", weight=3]; 2581[label="vyw40000",fontsize=16,color="green",shape="box"];2582[label="vyw3000",fontsize=16,color="green",shape="box"];2583[label="vyw40000",fontsize=16,color="green",shape="box"];2584[label="vyw3000",fontsize=16,color="green",shape="box"];2585[label="primMulInt (Pos vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];4040[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4040[label="",style="solid", color="burlywood", weight=9]; 4040 -> 2699[label="",style="solid", color="burlywood", weight=3]; 4041[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];2585 -> 4041[label="",style="solid", color="burlywood", weight=9]; 4041 -> 2700[label="",style="solid", color="burlywood", weight=3]; 2586[label="primMulInt (Neg vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];4042[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];2586 -> 4042[label="",style="solid", color="burlywood", weight=9]; 4042 -> 2701[label="",style="solid", color="burlywood", weight=3]; 4043[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];2586 -> 4043[label="",style="solid", color="burlywood", weight=9]; 4043 -> 2702[label="",style="solid", color="burlywood", weight=3]; 2587 -> 2136[label="",style="dashed", color="red", weight=0]; 2587[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];2587 -> 2703[label="",style="dashed", color="magenta", weight=3]; 2587 -> 2704[label="",style="dashed", color="magenta", weight=3]; 2588[label="False",fontsize=16,color="green",shape="box"];2589[label="False",fontsize=16,color="green",shape="box"];2590[label="True",fontsize=16,color="green",shape="box"];2591[label="vyw4002",fontsize=16,color="green",shape="box"];2592[label="vyw302",fontsize=16,color="green",shape="box"];2593[label="vyw4002",fontsize=16,color="green",shape="box"];2594[label="vyw302",fontsize=16,color="green",shape="box"];2595[label="vyw4002",fontsize=16,color="green",shape="box"];2596[label="vyw302",fontsize=16,color="green",shape="box"];2597[label="vyw4002",fontsize=16,color="green",shape="box"];2598[label="vyw302",fontsize=16,color="green",shape="box"];2599[label="vyw4002",fontsize=16,color="green",shape="box"];2600[label="vyw302",fontsize=16,color="green",shape="box"];2601[label="vyw4002",fontsize=16,color="green",shape="box"];2602[label="vyw302",fontsize=16,color="green",shape="box"];2603[label="vyw4002",fontsize=16,color="green",shape="box"];2604[label="vyw302",fontsize=16,color="green",shape="box"];2605[label="vyw4002",fontsize=16,color="green",shape="box"];2606[label="vyw302",fontsize=16,color="green",shape="box"];2607[label="vyw4002",fontsize=16,color="green",shape="box"];2608[label="vyw302",fontsize=16,color="green",shape="box"];2609[label="vyw4002",fontsize=16,color="green",shape="box"];2610[label="vyw302",fontsize=16,color="green",shape="box"];2611[label="vyw4002",fontsize=16,color="green",shape="box"];2612[label="vyw302",fontsize=16,color="green",shape="box"];2613[label="vyw4002",fontsize=16,color="green",shape="box"];2614[label="vyw302",fontsize=16,color="green",shape="box"];2615[label="vyw4002",fontsize=16,color="green",shape="box"];2616[label="vyw302",fontsize=16,color="green",shape="box"];2617[label="vyw4002",fontsize=16,color="green",shape="box"];2618[label="vyw302",fontsize=16,color="green",shape="box"];2619[label="vyw4001",fontsize=16,color="green",shape="box"];2620[label="vyw301",fontsize=16,color="green",shape="box"];2621[label="vyw4001",fontsize=16,color="green",shape="box"];2622[label="vyw301",fontsize=16,color="green",shape="box"];2623[label="vyw4001",fontsize=16,color="green",shape="box"];2624[label="vyw301",fontsize=16,color="green",shape="box"];2625[label="vyw4001",fontsize=16,color="green",shape="box"];2626[label="vyw301",fontsize=16,color="green",shape="box"];2627[label="vyw4001",fontsize=16,color="green",shape="box"];2628[label="vyw301",fontsize=16,color="green",shape="box"];2629[label="vyw4001",fontsize=16,color="green",shape="box"];2630[label="vyw301",fontsize=16,color="green",shape="box"];2631[label="vyw4001",fontsize=16,color="green",shape="box"];2632[label="vyw301",fontsize=16,color="green",shape="box"];2633[label="vyw4001",fontsize=16,color="green",shape="box"];2634[label="vyw301",fontsize=16,color="green",shape="box"];2635[label="vyw4001",fontsize=16,color="green",shape="box"];2636[label="vyw301",fontsize=16,color="green",shape="box"];2637[label="vyw4001",fontsize=16,color="green",shape="box"];2638[label="vyw301",fontsize=16,color="green",shape="box"];2639[label="vyw4001",fontsize=16,color="green",shape="box"];2640[label="vyw301",fontsize=16,color="green",shape="box"];2641[label="vyw4001",fontsize=16,color="green",shape="box"];2642[label="vyw301",fontsize=16,color="green",shape="box"];2643[label="vyw4001",fontsize=16,color="green",shape="box"];2644[label="vyw301",fontsize=16,color="green",shape="box"];2645[label="vyw4001",fontsize=16,color="green",shape="box"];2646[label="vyw301",fontsize=16,color="green",shape="box"];2647[label="LT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4044[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2647 -> 4044[label="",style="solid", color="burlywood", weight=9]; 4044 -> 2705[label="",style="solid", color="burlywood", weight=3]; 4045[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2647 -> 4045[label="",style="solid", color="burlywood", weight=9]; 4045 -> 2706[label="",style="solid", color="burlywood", weight=3]; 4046[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2647 -> 4046[label="",style="solid", color="burlywood", weight=9]; 4046 -> 2707[label="",style="solid", color="burlywood", weight=3]; 2648[label="EQ <= vyw4400",fontsize=16,color="burlywood",shape="box"];4047[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2648 -> 4047[label="",style="solid", color="burlywood", weight=9]; 4047 -> 2708[label="",style="solid", color="burlywood", weight=3]; 4048[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2648 -> 4048[label="",style="solid", color="burlywood", weight=9]; 4048 -> 2709[label="",style="solid", color="burlywood", weight=3]; 4049[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2648 -> 4049[label="",style="solid", color="burlywood", weight=9]; 4049 -> 2710[label="",style="solid", color="burlywood", weight=3]; 2649[label="GT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4050[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2649 -> 4050[label="",style="solid", color="burlywood", weight=9]; 4050 -> 2711[label="",style="solid", color="burlywood", weight=3]; 4051[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2649 -> 4051[label="",style="solid", color="burlywood", weight=9]; 4051 -> 2712[label="",style="solid", color="burlywood", weight=3]; 4052[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2649 -> 4052[label="",style="solid", color="burlywood", weight=9]; 4052 -> 2713[label="",style="solid", color="burlywood", weight=3]; 2650[label="Nothing <= vyw4400",fontsize=16,color="burlywood",shape="box"];4053[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4053[label="",style="solid", color="burlywood", weight=9]; 4053 -> 2714[label="",style="solid", color="burlywood", weight=3]; 4054[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4054[label="",style="solid", color="burlywood", weight=9]; 4054 -> 2715[label="",style="solid", color="burlywood", weight=3]; 2651[label="Just vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4055[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2651 -> 4055[label="",style="solid", color="burlywood", weight=9]; 4055 -> 2716[label="",style="solid", color="burlywood", weight=3]; 4056[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2651 -> 4056[label="",style="solid", color="burlywood", weight=9]; 4056 -> 2717[label="",style="solid", color="burlywood", weight=3]; 2652[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2652 -> 2718[label="",style="solid", color="black", weight=3]; 2653[label="(vyw43000,vyw43001) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4057[label="vyw4400/(vyw44000,vyw44001)",fontsize=10,color="white",style="solid",shape="box"];2653 -> 4057[label="",style="solid", color="burlywood", weight=9]; 4057 -> 2719[label="",style="solid", color="burlywood", weight=3]; 2654[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2654 -> 2720[label="",style="solid", color="black", weight=3]; 2655[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2655 -> 2721[label="",style="solid", color="black", weight=3]; 2656[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2656 -> 2722[label="",style="solid", color="black", weight=3]; 2657[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2657 -> 2723[label="",style="solid", color="black", weight=3]; 2658[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2658 -> 2724[label="",style="solid", color="black", weight=3]; 2659[label="False <= vyw4400",fontsize=16,color="burlywood",shape="box"];4058[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2659 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 2725[label="",style="solid", color="burlywood", weight=3]; 4059[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2659 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 2726[label="",style="solid", color="burlywood", weight=3]; 2660[label="True <= vyw4400",fontsize=16,color="burlywood",shape="box"];4060[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 2727[label="",style="solid", color="burlywood", weight=3]; 4061[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2660 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 2728[label="",style="solid", color="burlywood", weight=3]; 2661[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2661 -> 2729[label="",style="solid", color="black", weight=3]; 2662[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2662 -> 2730[label="",style="solid", color="black", weight=3]; 2663[label="(vyw43000,vyw43001,vyw43002) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4062[label="vyw4400/(vyw44000,vyw44001,vyw44002)",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 2731[label="",style="solid", color="burlywood", weight=3]; 2664[label="Left vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4063[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2664 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 2732[label="",style="solid", color="burlywood", weight=3]; 4064[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2664 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 2733[label="",style="solid", color="burlywood", weight=3]; 2665[label="Right vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4065[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2665 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 2734[label="",style="solid", color="burlywood", weight=3]; 4066[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2665 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 2735[label="",style="solid", color="burlywood", weight=3]; 2666[label="compare0 (Left vyw106) (Left vyw107) otherwise",fontsize=16,color="black",shape="box"];2666 -> 2736[label="",style="solid", color="black", weight=3]; 2667[label="LT",fontsize=16,color="green",shape="box"];2668[label="GT",fontsize=16,color="green",shape="box"];2669[label="vyw4300",fontsize=16,color="green",shape="box"];2670[label="vyw4400",fontsize=16,color="green",shape="box"];2671[label="vyw4300",fontsize=16,color="green",shape="box"];2672[label="vyw4400",fontsize=16,color="green",shape="box"];2673[label="vyw4300",fontsize=16,color="green",shape="box"];2674[label="vyw4400",fontsize=16,color="green",shape="box"];2675[label="vyw4300",fontsize=16,color="green",shape="box"];2676[label="vyw4400",fontsize=16,color="green",shape="box"];2677[label="vyw4300",fontsize=16,color="green",shape="box"];2678[label="vyw4400",fontsize=16,color="green",shape="box"];2679[label="vyw4300",fontsize=16,color="green",shape="box"];2680[label="vyw4400",fontsize=16,color="green",shape="box"];2681[label="vyw4300",fontsize=16,color="green",shape="box"];2682[label="vyw4400",fontsize=16,color="green",shape="box"];2683[label="vyw4300",fontsize=16,color="green",shape="box"];2684[label="vyw4400",fontsize=16,color="green",shape="box"];2685[label="vyw4300",fontsize=16,color="green",shape="box"];2686[label="vyw4400",fontsize=16,color="green",shape="box"];2687[label="vyw4300",fontsize=16,color="green",shape="box"];2688[label="vyw4400",fontsize=16,color="green",shape="box"];2689[label="vyw4300",fontsize=16,color="green",shape="box"];2690[label="vyw4400",fontsize=16,color="green",shape="box"];2691[label="vyw4300",fontsize=16,color="green",shape="box"];2692[label="vyw4400",fontsize=16,color="green",shape="box"];2693[label="vyw4300",fontsize=16,color="green",shape="box"];2694[label="vyw4400",fontsize=16,color="green",shape="box"];2695[label="vyw4300",fontsize=16,color="green",shape="box"];2696[label="vyw4400",fontsize=16,color="green",shape="box"];2697[label="compare0 (Right vyw113) (Right vyw114) otherwise",fontsize=16,color="black",shape="box"];2697 -> 2737[label="",style="solid", color="black", weight=3]; 2698[label="LT",fontsize=16,color="green",shape="box"];1966 -> 1885[label="",style="dashed", color="red", weight=0]; 1966[label="vyw18 == vyw13",fontsize=16,color="magenta"];1966 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1886[label="",style="dashed", color="red", weight=0]; 1967[label="vyw18 == vyw13",fontsize=16,color="magenta"];1967 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1968 -> 1887[label="",style="dashed", color="red", weight=0]; 1968[label="vyw18 == vyw13",fontsize=16,color="magenta"];1968 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1969 -> 47[label="",style="dashed", color="red", weight=0]; 1969[label="vyw18 == vyw13",fontsize=16,color="magenta"];1969 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1889[label="",style="dashed", color="red", weight=0]; 1970[label="vyw18 == vyw13",fontsize=16,color="magenta"];1970 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1890[label="",style="dashed", color="red", weight=0]; 1971[label="vyw18 == vyw13",fontsize=16,color="magenta"];1971 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1891[label="",style="dashed", color="red", weight=0]; 1972[label="vyw18 == vyw13",fontsize=16,color="magenta"];1972 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1892[label="",style="dashed", color="red", weight=0]; 1973[label="vyw18 == vyw13",fontsize=16,color="magenta"];1973 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1893[label="",style="dashed", color="red", weight=0]; 1974[label="vyw18 == vyw13",fontsize=16,color="magenta"];1974 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1894[label="",style="dashed", color="red", weight=0]; 1975[label="vyw18 == vyw13",fontsize=16,color="magenta"];1975 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1976 -> 1895[label="",style="dashed", color="red", weight=0]; 1976[label="vyw18 == vyw13",fontsize=16,color="magenta"];1976 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1977 -> 1896[label="",style="dashed", color="red", weight=0]; 1977[label="vyw18 == vyw13",fontsize=16,color="magenta"];1977 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1897[label="",style="dashed", color="red", weight=0]; 1978[label="vyw18 == vyw13",fontsize=16,color="magenta"];1978 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1898[label="",style="dashed", color="red", weight=0]; 1979[label="vyw18 == vyw13",fontsize=16,color="magenta"];1979 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1885[label="",style="dashed", color="red", weight=0]; 1980[label="vyw33 == vyw28",fontsize=16,color="magenta"];1980 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1886[label="",style="dashed", color="red", weight=0]; 1981[label="vyw33 == vyw28",fontsize=16,color="magenta"];1981 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1887[label="",style="dashed", color="red", weight=0]; 1982[label="vyw33 == vyw28",fontsize=16,color="magenta"];1982 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1983 -> 47[label="",style="dashed", color="red", weight=0]; 1983[label="vyw33 == vyw28",fontsize=16,color="magenta"];1983 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1984 -> 1889[label="",style="dashed", color="red", weight=0]; 1984[label="vyw33 == vyw28",fontsize=16,color="magenta"];1984 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1985 -> 1890[label="",style="dashed", color="red", weight=0]; 1985[label="vyw33 == vyw28",fontsize=16,color="magenta"];1985 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1986 -> 1891[label="",style="dashed", color="red", weight=0]; 1986[label="vyw33 == vyw28",fontsize=16,color="magenta"];1986 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1987 -> 1892[label="",style="dashed", color="red", weight=0]; 1987[label="vyw33 == vyw28",fontsize=16,color="magenta"];1987 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1988 -> 1893[label="",style="dashed", color="red", weight=0]; 1988[label="vyw33 == vyw28",fontsize=16,color="magenta"];1988 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1989 -> 1894[label="",style="dashed", color="red", weight=0]; 1989[label="vyw33 == vyw28",fontsize=16,color="magenta"];1989 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1989 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1990 -> 1895[label="",style="dashed", color="red", weight=0]; 1990[label="vyw33 == vyw28",fontsize=16,color="magenta"];1990 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1990 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1991 -> 1896[label="",style="dashed", color="red", weight=0]; 1991[label="vyw33 == vyw28",fontsize=16,color="magenta"];1991 -> 2072[label="",style="dashed", color="magenta", weight=3]; 1991 -> 2073[label="",style="dashed", color="magenta", weight=3]; 1992 -> 1897[label="",style="dashed", color="red", weight=0]; 1992[label="vyw33 == vyw28",fontsize=16,color="magenta"];1992 -> 2074[label="",style="dashed", color="magenta", weight=3]; 1992 -> 2075[label="",style="dashed", color="magenta", weight=3]; 1993 -> 1898[label="",style="dashed", color="red", weight=0]; 1993[label="vyw33 == vyw28",fontsize=16,color="magenta"];1993 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1993 -> 2077[label="",style="dashed", color="magenta", weight=3]; 2699[label="primMulInt (Pos vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];2699 -> 2738[label="",style="solid", color="black", weight=3]; 2700[label="primMulInt (Pos vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];2700 -> 2739[label="",style="solid", color="black", weight=3]; 2701[label="primMulInt (Neg vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];2701 -> 2740[label="",style="solid", color="black", weight=3]; 2702[label="primMulInt (Neg vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];2702 -> 2741[label="",style="solid", color="black", weight=3]; 2703[label="vyw40000",fontsize=16,color="green",shape="box"];2704[label="vyw3000",fontsize=16,color="green",shape="box"];2705[label="LT <= LT",fontsize=16,color="black",shape="box"];2705 -> 2742[label="",style="solid", color="black", weight=3]; 2706[label="LT <= EQ",fontsize=16,color="black",shape="box"];2706 -> 2743[label="",style="solid", color="black", weight=3]; 2707[label="LT <= GT",fontsize=16,color="black",shape="box"];2707 -> 2744[label="",style="solid", color="black", weight=3]; 2708[label="EQ <= LT",fontsize=16,color="black",shape="box"];2708 -> 2745[label="",style="solid", color="black", weight=3]; 2709[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2709 -> 2746[label="",style="solid", color="black", weight=3]; 2710[label="EQ <= GT",fontsize=16,color="black",shape="box"];2710 -> 2747[label="",style="solid", color="black", weight=3]; 2711[label="GT <= LT",fontsize=16,color="black",shape="box"];2711 -> 2748[label="",style="solid", color="black", weight=3]; 2712[label="GT <= EQ",fontsize=16,color="black",shape="box"];2712 -> 2749[label="",style="solid", color="black", weight=3]; 2713[label="GT <= GT",fontsize=16,color="black",shape="box"];2713 -> 2750[label="",style="solid", color="black", weight=3]; 2714[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2714 -> 2751[label="",style="solid", color="black", weight=3]; 2715[label="Nothing <= Just vyw44000",fontsize=16,color="black",shape="box"];2715 -> 2752[label="",style="solid", color="black", weight=3]; 2716[label="Just vyw43000 <= Nothing",fontsize=16,color="black",shape="box"];2716 -> 2753[label="",style="solid", color="black", weight=3]; 2717[label="Just vyw43000 <= Just vyw44000",fontsize=16,color="black",shape="box"];2717 -> 2754[label="",style="solid", color="black", weight=3]; 2718 -> 2755[label="",style="dashed", color="red", weight=0]; 2718[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2718 -> 2756[label="",style="dashed", color="magenta", weight=3]; 2719[label="(vyw43000,vyw43001) <= (vyw44000,vyw44001)",fontsize=16,color="black",shape="box"];2719 -> 2764[label="",style="solid", color="black", weight=3]; 2720 -> 2755[label="",style="dashed", color="red", weight=0]; 2720[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2720 -> 2757[label="",style="dashed", color="magenta", weight=3]; 2721 -> 2755[label="",style="dashed", color="red", weight=0]; 2721[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2721 -> 2758[label="",style="dashed", color="magenta", weight=3]; 2722 -> 2755[label="",style="dashed", color="red", weight=0]; 2722[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2722 -> 2759[label="",style="dashed", color="magenta", weight=3]; 2723 -> 2755[label="",style="dashed", color="red", weight=0]; 2723[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2723 -> 2760[label="",style="dashed", color="magenta", weight=3]; 2724 -> 2755[label="",style="dashed", color="red", weight=0]; 2724[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2724 -> 2761[label="",style="dashed", color="magenta", weight=3]; 2725[label="False <= False",fontsize=16,color="black",shape="box"];2725 -> 2765[label="",style="solid", color="black", weight=3]; 2726[label="False <= True",fontsize=16,color="black",shape="box"];2726 -> 2766[label="",style="solid", color="black", weight=3]; 2727[label="True <= False",fontsize=16,color="black",shape="box"];2727 -> 2767[label="",style="solid", color="black", weight=3]; 2728[label="True <= True",fontsize=16,color="black",shape="box"];2728 -> 2768[label="",style="solid", color="black", weight=3]; 2729 -> 2755[label="",style="dashed", color="red", weight=0]; 2729[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2729 -> 2762[label="",style="dashed", color="magenta", weight=3]; 2730 -> 2755[label="",style="dashed", color="red", weight=0]; 2730[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2730 -> 2763[label="",style="dashed", color="magenta", weight=3]; 2731[label="(vyw43000,vyw43001,vyw43002) <= (vyw44000,vyw44001,vyw44002)",fontsize=16,color="black",shape="box"];2731 -> 2769[label="",style="solid", color="black", weight=3]; 2732[label="Left vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2732 -> 2770[label="",style="solid", color="black", weight=3]; 2733[label="Left vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2733 -> 2771[label="",style="solid", color="black", weight=3]; 2734[label="Right vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2734 -> 2772[label="",style="solid", color="black", weight=3]; 2735[label="Right vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2735 -> 2773[label="",style="solid", color="black", weight=3]; 2736[label="compare0 (Left vyw106) (Left vyw107) True",fontsize=16,color="black",shape="box"];2736 -> 2774[label="",style="solid", color="black", weight=3]; 2737[label="compare0 (Right vyw113) (Right vyw114) True",fontsize=16,color="black",shape="box"];2737 -> 2775[label="",style="solid", color="black", weight=3]; 2022[label="vyw13",fontsize=16,color="green",shape="box"];2023[label="vyw18",fontsize=16,color="green",shape="box"];2024[label="vyw13",fontsize=16,color="green",shape="box"];2025[label="vyw18",fontsize=16,color="green",shape="box"];2026[label="vyw13",fontsize=16,color="green",shape="box"];2027[label="vyw18",fontsize=16,color="green",shape="box"];2028[label="vyw13",fontsize=16,color="green",shape="box"];2029[label="vyw18",fontsize=16,color="green",shape="box"];2030[label="vyw13",fontsize=16,color="green",shape="box"];2031[label="vyw18",fontsize=16,color="green",shape="box"];2032[label="vyw13",fontsize=16,color="green",shape="box"];2033[label="vyw18",fontsize=16,color="green",shape="box"];2034[label="vyw13",fontsize=16,color="green",shape="box"];2035[label="vyw18",fontsize=16,color="green",shape="box"];2036[label="vyw13",fontsize=16,color="green",shape="box"];2037[label="vyw18",fontsize=16,color="green",shape="box"];2038[label="vyw13",fontsize=16,color="green",shape="box"];2039[label="vyw18",fontsize=16,color="green",shape="box"];2040[label="vyw13",fontsize=16,color="green",shape="box"];2041[label="vyw18",fontsize=16,color="green",shape="box"];2042[label="vyw13",fontsize=16,color="green",shape="box"];2043[label="vyw18",fontsize=16,color="green",shape="box"];2044[label="vyw13",fontsize=16,color="green",shape="box"];2045[label="vyw18",fontsize=16,color="green",shape="box"];2046[label="vyw13",fontsize=16,color="green",shape="box"];2047[label="vyw18",fontsize=16,color="green",shape="box"];2048[label="vyw13",fontsize=16,color="green",shape="box"];2049[label="vyw18",fontsize=16,color="green",shape="box"];2050[label="vyw28",fontsize=16,color="green",shape="box"];2051[label="vyw33",fontsize=16,color="green",shape="box"];2052[label="vyw28",fontsize=16,color="green",shape="box"];2053[label="vyw33",fontsize=16,color="green",shape="box"];2054[label="vyw28",fontsize=16,color="green",shape="box"];2055[label="vyw33",fontsize=16,color="green",shape="box"];2056[label="vyw28",fontsize=16,color="green",shape="box"];2057[label="vyw33",fontsize=16,color="green",shape="box"];2058[label="vyw28",fontsize=16,color="green",shape="box"];2059[label="vyw33",fontsize=16,color="green",shape="box"];2060[label="vyw28",fontsize=16,color="green",shape="box"];2061[label="vyw33",fontsize=16,color="green",shape="box"];2062[label="vyw28",fontsize=16,color="green",shape="box"];2063[label="vyw33",fontsize=16,color="green",shape="box"];2064[label="vyw28",fontsize=16,color="green",shape="box"];2065[label="vyw33",fontsize=16,color="green",shape="box"];2066[label="vyw28",fontsize=16,color="green",shape="box"];2067[label="vyw33",fontsize=16,color="green",shape="box"];2068[label="vyw28",fontsize=16,color="green",shape="box"];2069[label="vyw33",fontsize=16,color="green",shape="box"];2070[label="vyw28",fontsize=16,color="green",shape="box"];2071[label="vyw33",fontsize=16,color="green",shape="box"];2072[label="vyw28",fontsize=16,color="green",shape="box"];2073[label="vyw33",fontsize=16,color="green",shape="box"];2074[label="vyw28",fontsize=16,color="green",shape="box"];2075[label="vyw33",fontsize=16,color="green",shape="box"];2076[label="vyw28",fontsize=16,color="green",shape="box"];2077[label="vyw33",fontsize=16,color="green",shape="box"];2738[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2738 -> 2776[label="",style="dashed", color="green", weight=3]; 2739[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2739 -> 2777[label="",style="dashed", color="green", weight=3]; 2740[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2740 -> 2778[label="",style="dashed", color="green", weight=3]; 2741[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];2741 -> 2779[label="",style="dashed", color="green", weight=3]; 2742[label="True",fontsize=16,color="green",shape="box"];2743[label="True",fontsize=16,color="green",shape="box"];2744[label="True",fontsize=16,color="green",shape="box"];2745[label="False",fontsize=16,color="green",shape="box"];2746[label="True",fontsize=16,color="green",shape="box"];2747[label="True",fontsize=16,color="green",shape="box"];2748[label="False",fontsize=16,color="green",shape="box"];2749[label="False",fontsize=16,color="green",shape="box"];2750[label="True",fontsize=16,color="green",shape="box"];2751[label="True",fontsize=16,color="green",shape="box"];2752[label="True",fontsize=16,color="green",shape="box"];2753[label="False",fontsize=16,color="green",shape="box"];2754[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4067[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4067[label="",style="solid", color="blue", weight=9]; 4067 -> 2780[label="",style="solid", color="blue", weight=3]; 4068[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4068[label="",style="solid", color="blue", weight=9]; 4068 -> 2781[label="",style="solid", color="blue", weight=3]; 4069[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4069[label="",style="solid", color="blue", weight=9]; 4069 -> 2782[label="",style="solid", color="blue", weight=3]; 4070[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4070[label="",style="solid", color="blue", weight=9]; 4070 -> 2783[label="",style="solid", color="blue", weight=3]; 4071[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4071[label="",style="solid", color="blue", weight=9]; 4071 -> 2784[label="",style="solid", color="blue", weight=3]; 4072[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4072[label="",style="solid", color="blue", weight=9]; 4072 -> 2785[label="",style="solid", color="blue", weight=3]; 4073[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4073[label="",style="solid", color="blue", weight=9]; 4073 -> 2786[label="",style="solid", color="blue", weight=3]; 4074[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 2787[label="",style="solid", color="blue", weight=3]; 4075[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 2788[label="",style="solid", color="blue", weight=3]; 4076[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 2789[label="",style="solid", color="blue", weight=3]; 4077[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 2790[label="",style="solid", color="blue", weight=3]; 4078[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 2791[label="",style="solid", color="blue", weight=3]; 4079[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 2792[label="",style="solid", color="blue", weight=3]; 4080[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2754 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 2793[label="",style="solid", color="blue", weight=3]; 2756 -> 47[label="",style="dashed", color="red", weight=0]; 2756[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2756 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2756 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2755[label="not vyw116",fontsize=16,color="burlywood",shape="triangle"];4081[label="vyw116/False",fontsize=10,color="white",style="solid",shape="box"];2755 -> 4081[label="",style="solid", color="burlywood", weight=9]; 4081 -> 2796[label="",style="solid", color="burlywood", weight=3]; 4082[label="vyw116/True",fontsize=10,color="white",style="solid",shape="box"];2755 -> 4082[label="",style="solid", color="burlywood", weight=9]; 4082 -> 2797[label="",style="solid", color="burlywood", weight=3]; 2764 -> 2884[label="",style="dashed", color="red", weight=0]; 2764[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];2764 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2764 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2757 -> 47[label="",style="dashed", color="red", weight=0]; 2757[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2757 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2757 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2758 -> 47[label="",style="dashed", color="red", weight=0]; 2758[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2758 -> 2800[label="",style="dashed", color="magenta", weight=3]; 2758 -> 2801[label="",style="dashed", color="magenta", weight=3]; 2759 -> 47[label="",style="dashed", color="red", weight=0]; 2759[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2759 -> 2802[label="",style="dashed", color="magenta", weight=3]; 2759 -> 2803[label="",style="dashed", color="magenta", weight=3]; 2760 -> 47[label="",style="dashed", color="red", weight=0]; 2760[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2760 -> 2804[label="",style="dashed", color="magenta", weight=3]; 2760 -> 2805[label="",style="dashed", color="magenta", weight=3]; 2761 -> 47[label="",style="dashed", color="red", weight=0]; 2761[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2761 -> 2806[label="",style="dashed", color="magenta", weight=3]; 2761 -> 2807[label="",style="dashed", color="magenta", weight=3]; 2765[label="True",fontsize=16,color="green",shape="box"];2766[label="True",fontsize=16,color="green",shape="box"];2767[label="False",fontsize=16,color="green",shape="box"];2768[label="True",fontsize=16,color="green",shape="box"];2762 -> 47[label="",style="dashed", color="red", weight=0]; 2762[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2762 -> 2808[label="",style="dashed", color="magenta", weight=3]; 2762 -> 2809[label="",style="dashed", color="magenta", weight=3]; 2763 -> 47[label="",style="dashed", color="red", weight=0]; 2763[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2763 -> 2810[label="",style="dashed", color="magenta", weight=3]; 2763 -> 2811[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2884[label="",style="dashed", color="red", weight=0]; 2769[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];2769 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2769 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2770[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4083[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 2817[label="",style="solid", color="blue", weight=3]; 4084[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 2818[label="",style="solid", color="blue", weight=3]; 4085[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 2819[label="",style="solid", color="blue", weight=3]; 4086[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 2820[label="",style="solid", color="blue", weight=3]; 4087[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 2821[label="",style="solid", color="blue", weight=3]; 4088[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4088[label="",style="solid", color="blue", weight=9]; 4088 -> 2822[label="",style="solid", color="blue", weight=3]; 4089[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4089[label="",style="solid", color="blue", weight=9]; 4089 -> 2823[label="",style="solid", color="blue", weight=3]; 4090[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 2824[label="",style="solid", color="blue", weight=3]; 4091[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 2825[label="",style="solid", color="blue", weight=3]; 4092[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 2826[label="",style="solid", color="blue", weight=3]; 4093[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 2827[label="",style="solid", color="blue", weight=3]; 4094[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 2828[label="",style="solid", color="blue", weight=3]; 4095[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 2829[label="",style="solid", color="blue", weight=3]; 4096[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2770 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 2830[label="",style="solid", color="blue", weight=3]; 2771[label="True",fontsize=16,color="green",shape="box"];2772[label="False",fontsize=16,color="green",shape="box"];2773[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4097[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 2831[label="",style="solid", color="blue", weight=3]; 4098[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 2832[label="",style="solid", color="blue", weight=3]; 4099[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 2833[label="",style="solid", color="blue", weight=3]; 4100[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 2834[label="",style="solid", color="blue", weight=3]; 4101[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 2835[label="",style="solid", color="blue", weight=3]; 4102[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 2836[label="",style="solid", color="blue", weight=3]; 4103[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 2837[label="",style="solid", color="blue", weight=3]; 4104[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 2838[label="",style="solid", color="blue", weight=3]; 4105[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4105[label="",style="solid", color="blue", weight=9]; 4105 -> 2839[label="",style="solid", color="blue", weight=3]; 4106[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 2840[label="",style="solid", color="blue", weight=3]; 4107[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 2841[label="",style="solid", color="blue", weight=3]; 4108[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 2842[label="",style="solid", color="blue", weight=3]; 4109[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 2843[label="",style="solid", color="blue", weight=3]; 4110[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2773 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 2844[label="",style="solid", color="blue", weight=3]; 2774[label="GT",fontsize=16,color="green",shape="box"];2775[label="GT",fontsize=16,color="green",shape="box"];2776[label="primMulNat vyw3010 vyw40000",fontsize=16,color="burlywood",shape="triangle"];4111[label="vyw3010/Succ vyw30100",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4111[label="",style="solid", color="burlywood", weight=9]; 4111 -> 2845[label="",style="solid", color="burlywood", weight=3]; 4112[label="vyw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];2776 -> 4112[label="",style="solid", color="burlywood", weight=9]; 4112 -> 2846[label="",style="solid", color="burlywood", weight=3]; 2777 -> 2776[label="",style="dashed", color="red", weight=0]; 2777[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];2777 -> 2847[label="",style="dashed", color="magenta", weight=3]; 2778 -> 2776[label="",style="dashed", color="red", weight=0]; 2778[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];2778 -> 2848[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2776[label="",style="dashed", color="red", weight=0]; 2779[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];2779 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2779 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2548[label="",style="dashed", color="red", weight=0]; 2780[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2780 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2549[label="",style="dashed", color="red", weight=0]; 2781[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2781 -> 2853[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2854[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2550[label="",style="dashed", color="red", weight=0]; 2782[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2782 -> 2855[label="",style="dashed", color="magenta", weight=3]; 2782 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2551[label="",style="dashed", color="red", weight=0]; 2783[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2783 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2783 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2552[label="",style="dashed", color="red", weight=0]; 2784[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2784 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2784 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2553[label="",style="dashed", color="red", weight=0]; 2785[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2785 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2785 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2554[label="",style="dashed", color="red", weight=0]; 2786[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2786 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2786 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2555[label="",style="dashed", color="red", weight=0]; 2787[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2787 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2787 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2556[label="",style="dashed", color="red", weight=0]; 2788[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2788 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2788 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2557[label="",style="dashed", color="red", weight=0]; 2789[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2789 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2789 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2558[label="",style="dashed", color="red", weight=0]; 2790[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2790 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2790 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2559[label="",style="dashed", color="red", weight=0]; 2791[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2791 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2791 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2560[label="",style="dashed", color="red", weight=0]; 2792[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2792 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2792 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2561[label="",style="dashed", color="red", weight=0]; 2793[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2793 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2793 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2794[label="GT",fontsize=16,color="green",shape="box"];2795[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4113[label="vyw4300/vyw43000 :% vyw43001",fontsize=10,color="white",style="solid",shape="box"];2795 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 2879[label="",style="solid", color="burlywood", weight=3]; 2796[label="not False",fontsize=16,color="black",shape="box"];2796 -> 2880[label="",style="solid", color="black", weight=3]; 2797[label="not True",fontsize=16,color="black",shape="box"];2797 -> 2881[label="",style="solid", color="black", weight=3]; 2885[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4114[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4114[label="",style="solid", color="blue", weight=9]; 4114 -> 2891[label="",style="solid", color="blue", weight=3]; 4115[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4115[label="",style="solid", color="blue", weight=9]; 4115 -> 2892[label="",style="solid", color="blue", weight=3]; 4116[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4116[label="",style="solid", color="blue", weight=9]; 4116 -> 2893[label="",style="solid", color="blue", weight=3]; 4117[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4117[label="",style="solid", color="blue", weight=9]; 4117 -> 2894[label="",style="solid", color="blue", weight=3]; 4118[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4118[label="",style="solid", color="blue", weight=9]; 4118 -> 2895[label="",style="solid", color="blue", weight=3]; 4119[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4119[label="",style="solid", color="blue", weight=9]; 4119 -> 2896[label="",style="solid", color="blue", weight=3]; 4120[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4120[label="",style="solid", color="blue", weight=9]; 4120 -> 2897[label="",style="solid", color="blue", weight=3]; 4121[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4121[label="",style="solid", color="blue", weight=9]; 4121 -> 2898[label="",style="solid", color="blue", weight=3]; 4122[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 2899[label="",style="solid", color="blue", weight=3]; 4123[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 2900[label="",style="solid", color="blue", weight=3]; 4124[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 2901[label="",style="solid", color="blue", weight=3]; 4125[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 2902[label="",style="solid", color="blue", weight=3]; 4126[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 2903[label="",style="solid", color="blue", weight=3]; 4127[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2885 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 2904[label="",style="solid", color="blue", weight=3]; 2886 -> 2230[label="",style="dashed", color="red", weight=0]; 2886[label="vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];2886 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2886 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2884[label="vyw121 || vyw122",fontsize=16,color="burlywood",shape="triangle"];4128[label="vyw121/False",fontsize=10,color="white",style="solid",shape="box"];2884 -> 4128[label="",style="solid", color="burlywood", weight=9]; 4128 -> 2907[label="",style="solid", color="burlywood", weight=3]; 4129[label="vyw121/True",fontsize=10,color="white",style="solid",shape="box"];2884 -> 4129[label="",style="solid", color="burlywood", weight=9]; 4129 -> 2908[label="",style="solid", color="burlywood", weight=3]; 2798[label="GT",fontsize=16,color="green",shape="box"];2799[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2799 -> 2909[label="",style="solid", color="black", weight=3]; 2800[label="GT",fontsize=16,color="green",shape="box"];2801[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4130[label="vyw4300/()",fontsize=10,color="white",style="solid",shape="box"];2801 -> 4130[label="",style="solid", color="burlywood", weight=9]; 4130 -> 2910[label="",style="solid", color="burlywood", weight=3]; 2802[label="GT",fontsize=16,color="green",shape="box"];2803[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2803 -> 2911[label="",style="solid", color="black", weight=3]; 2804[label="GT",fontsize=16,color="green",shape="box"];2805[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4131[label="vyw4300/Integer vyw43000",fontsize=10,color="white",style="solid",shape="box"];2805 -> 4131[label="",style="solid", color="burlywood", weight=9]; 4131 -> 2912[label="",style="solid", color="burlywood", weight=3]; 2806[label="GT",fontsize=16,color="green",shape="box"];2807[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4132[label="vyw4300/vyw43000 : vyw43001",fontsize=10,color="white",style="solid",shape="box"];2807 -> 4132[label="",style="solid", color="burlywood", weight=9]; 4132 -> 2913[label="",style="solid", color="burlywood", weight=3]; 4133[label="vyw4300/[]",fontsize=10,color="white",style="solid",shape="box"];2807 -> 4133[label="",style="solid", color="burlywood", weight=9]; 4133 -> 2914[label="",style="solid", color="burlywood", weight=3]; 2808[label="GT",fontsize=16,color="green",shape="box"];2809[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2809 -> 2915[label="",style="solid", color="black", weight=3]; 2810[label="GT",fontsize=16,color="green",shape="box"];2811[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2811 -> 2916[label="",style="solid", color="black", weight=3]; 2887[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4134[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 2917[label="",style="solid", color="blue", weight=3]; 4135[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 2918[label="",style="solid", color="blue", weight=3]; 4136[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4136[label="",style="solid", color="blue", weight=9]; 4136 -> 2919[label="",style="solid", color="blue", weight=3]; 4137[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4137[label="",style="solid", color="blue", weight=9]; 4137 -> 2920[label="",style="solid", color="blue", weight=3]; 4138[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 2921[label="",style="solid", color="blue", weight=3]; 4139[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 2922[label="",style="solid", color="blue", weight=3]; 4140[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 2923[label="",style="solid", color="blue", weight=3]; 4141[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 2924[label="",style="solid", color="blue", weight=3]; 4142[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 2925[label="",style="solid", color="blue", weight=3]; 4143[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 2926[label="",style="solid", color="blue", weight=3]; 4144[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 2927[label="",style="solid", color="blue", weight=3]; 4145[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 2928[label="",style="solid", color="blue", weight=3]; 4146[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4146[label="",style="solid", color="blue", weight=9]; 4146 -> 2929[label="",style="solid", color="blue", weight=3]; 4147[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2887 -> 4147[label="",style="solid", color="blue", weight=9]; 4147 -> 2930[label="",style="solid", color="blue", weight=3]; 2888 -> 2230[label="",style="dashed", color="red", weight=0]; 2888[label="vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];2888 -> 2931[label="",style="dashed", color="magenta", weight=3]; 2888 -> 2932[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2548[label="",style="dashed", color="red", weight=0]; 2817[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2817 -> 2933[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2934[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2549[label="",style="dashed", color="red", weight=0]; 2818[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2818 -> 2935[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2936[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2550[label="",style="dashed", color="red", weight=0]; 2819[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2819 -> 2937[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2938[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2551[label="",style="dashed", color="red", weight=0]; 2820[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2820 -> 2939[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2552[label="",style="dashed", color="red", weight=0]; 2821[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2821 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2942[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2553[label="",style="dashed", color="red", weight=0]; 2822[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2822 -> 2943[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2944[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2554[label="",style="dashed", color="red", weight=0]; 2823[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2823 -> 2945[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2946[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2555[label="",style="dashed", color="red", weight=0]; 2824[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2824 -> 2947[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2948[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2556[label="",style="dashed", color="red", weight=0]; 2825[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2825 -> 2949[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2950[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2557[label="",style="dashed", color="red", weight=0]; 2826[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2826 -> 2951[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2952[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2558[label="",style="dashed", color="red", weight=0]; 2827[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2827 -> 2953[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2954[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2559[label="",style="dashed", color="red", weight=0]; 2828[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2828 -> 2955[label="",style="dashed", color="magenta", weight=3]; 2828 -> 2956[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2560[label="",style="dashed", color="red", weight=0]; 2829[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2829 -> 2957[label="",style="dashed", color="magenta", weight=3]; 2829 -> 2958[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2561[label="",style="dashed", color="red", weight=0]; 2830[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2830 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2830 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2548[label="",style="dashed", color="red", weight=0]; 2831[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2831 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2831 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2549[label="",style="dashed", color="red", weight=0]; 2832[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2832 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2832 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2550[label="",style="dashed", color="red", weight=0]; 2833[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2833 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2551[label="",style="dashed", color="red", weight=0]; 2834[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2834 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2552[label="",style="dashed", color="red", weight=0]; 2835[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2835 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2553[label="",style="dashed", color="red", weight=0]; 2836[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2836 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2554[label="",style="dashed", color="red", weight=0]; 2837[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2837 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2555[label="",style="dashed", color="red", weight=0]; 2838[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2838 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2556[label="",style="dashed", color="red", weight=0]; 2839[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2839 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2557[label="",style="dashed", color="red", weight=0]; 2840[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2840 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2558[label="",style="dashed", color="red", weight=0]; 2841[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2841 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2559[label="",style="dashed", color="red", weight=0]; 2842[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2842 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2560[label="",style="dashed", color="red", weight=0]; 2843[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2843 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2561[label="",style="dashed", color="red", weight=0]; 2844[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2844 -> 2987[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2988[label="",style="dashed", color="magenta", weight=3]; 2845[label="primMulNat (Succ vyw30100) vyw40000",fontsize=16,color="burlywood",shape="box"];4148[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];2845 -> 4148[label="",style="solid", color="burlywood", weight=9]; 4148 -> 2989[label="",style="solid", color="burlywood", weight=3]; 4149[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2845 -> 4149[label="",style="solid", color="burlywood", weight=9]; 4149 -> 2990[label="",style="solid", color="burlywood", weight=3]; 2846[label="primMulNat Zero vyw40000",fontsize=16,color="burlywood",shape="box"];4150[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];2846 -> 4150[label="",style="solid", color="burlywood", weight=9]; 4150 -> 2991[label="",style="solid", color="burlywood", weight=3]; 4151[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];2846 -> 4151[label="",style="solid", color="burlywood", weight=9]; 4151 -> 2992[label="",style="solid", color="burlywood", weight=3]; 2847[label="vyw40000",fontsize=16,color="green",shape="box"];2848[label="vyw3010",fontsize=16,color="green",shape="box"];2849[label="vyw3010",fontsize=16,color="green",shape="box"];2850[label="vyw40000",fontsize=16,color="green",shape="box"];2851[label="vyw43000",fontsize=16,color="green",shape="box"];2852[label="vyw44000",fontsize=16,color="green",shape="box"];2853[label="vyw43000",fontsize=16,color="green",shape="box"];2854[label="vyw44000",fontsize=16,color="green",shape="box"];2855[label="vyw43000",fontsize=16,color="green",shape="box"];2856[label="vyw44000",fontsize=16,color="green",shape="box"];2857[label="vyw43000",fontsize=16,color="green",shape="box"];2858[label="vyw44000",fontsize=16,color="green",shape="box"];2859[label="vyw43000",fontsize=16,color="green",shape="box"];2860[label="vyw44000",fontsize=16,color="green",shape="box"];2861[label="vyw43000",fontsize=16,color="green",shape="box"];2862[label="vyw44000",fontsize=16,color="green",shape="box"];2863[label="vyw43000",fontsize=16,color="green",shape="box"];2864[label="vyw44000",fontsize=16,color="green",shape="box"];2865[label="vyw43000",fontsize=16,color="green",shape="box"];2866[label="vyw44000",fontsize=16,color="green",shape="box"];2867[label="vyw43000",fontsize=16,color="green",shape="box"];2868[label="vyw44000",fontsize=16,color="green",shape="box"];2869[label="vyw43000",fontsize=16,color="green",shape="box"];2870[label="vyw44000",fontsize=16,color="green",shape="box"];2871[label="vyw43000",fontsize=16,color="green",shape="box"];2872[label="vyw44000",fontsize=16,color="green",shape="box"];2873[label="vyw43000",fontsize=16,color="green",shape="box"];2874[label="vyw44000",fontsize=16,color="green",shape="box"];2875[label="vyw43000",fontsize=16,color="green",shape="box"];2876[label="vyw44000",fontsize=16,color="green",shape="box"];2877[label="vyw43000",fontsize=16,color="green",shape="box"];2878[label="vyw44000",fontsize=16,color="green",shape="box"];2879[label="compare (vyw43000 :% vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4152[label="vyw4400/vyw44000 :% vyw44001",fontsize=10,color="white",style="solid",shape="box"];2879 -> 4152[label="",style="solid", color="burlywood", weight=9]; 4152 -> 2993[label="",style="solid", color="burlywood", weight=3]; 2880[label="True",fontsize=16,color="green",shape="box"];2881[label="False",fontsize=16,color="green",shape="box"];2891[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2891 -> 2994[label="",style="solid", color="black", weight=3]; 2892[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2892 -> 2995[label="",style="solid", color="black", weight=3]; 2893[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2893 -> 2996[label="",style="solid", color="black", weight=3]; 2894[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2894 -> 2997[label="",style="solid", color="black", weight=3]; 2895[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2895 -> 2998[label="",style="solid", color="black", weight=3]; 2896[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2896 -> 2999[label="",style="solid", color="black", weight=3]; 2897[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2897 -> 3000[label="",style="solid", color="black", weight=3]; 2898[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2898 -> 3001[label="",style="solid", color="black", weight=3]; 2899[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2899 -> 3002[label="",style="solid", color="black", weight=3]; 2900[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2900 -> 3003[label="",style="solid", color="black", weight=3]; 2901[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2901 -> 3004[label="",style="solid", color="black", weight=3]; 2902[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2902 -> 3005[label="",style="solid", color="black", weight=3]; 2903[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2903 -> 3006[label="",style="solid", color="black", weight=3]; 2904[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2904 -> 3007[label="",style="solid", color="black", weight=3]; 2905[label="vyw43001 <= vyw44001",fontsize=16,color="blue",shape="box"];4153[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4153[label="",style="solid", color="blue", weight=9]; 4153 -> 3008[label="",style="solid", color="blue", weight=3]; 4154[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4154[label="",style="solid", color="blue", weight=9]; 4154 -> 3009[label="",style="solid", color="blue", weight=3]; 4155[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4155[label="",style="solid", color="blue", weight=9]; 4155 -> 3010[label="",style="solid", color="blue", weight=3]; 4156[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 3011[label="",style="solid", color="blue", weight=3]; 4157[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 3012[label="",style="solid", color="blue", weight=3]; 4158[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 3013[label="",style="solid", color="blue", weight=3]; 4159[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 3014[label="",style="solid", color="blue", weight=3]; 4160[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 3015[label="",style="solid", color="blue", weight=3]; 4161[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 3016[label="",style="solid", color="blue", weight=3]; 4162[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 3017[label="",style="solid", color="blue", weight=3]; 4163[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 3018[label="",style="solid", color="blue", weight=3]; 4164[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 3019[label="",style="solid", color="blue", weight=3]; 4165[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 3020[label="",style="solid", color="blue", weight=3]; 4166[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2905 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 3021[label="",style="solid", color="blue", weight=3]; 2906[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4167[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 3022[label="",style="solid", color="blue", weight=3]; 4168[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 3023[label="",style="solid", color="blue", weight=3]; 4169[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 3024[label="",style="solid", color="blue", weight=3]; 4170[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 3025[label="",style="solid", color="blue", weight=3]; 4171[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 3026[label="",style="solid", color="blue", weight=3]; 4172[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 3027[label="",style="solid", color="blue", weight=3]; 4173[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 3028[label="",style="solid", color="blue", weight=3]; 4174[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 3029[label="",style="solid", color="blue", weight=3]; 4175[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 3030[label="",style="solid", color="blue", weight=3]; 4176[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 3031[label="",style="solid", color="blue", weight=3]; 4177[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 3032[label="",style="solid", color="blue", weight=3]; 4178[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 3033[label="",style="solid", color="blue", weight=3]; 4179[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 3034[label="",style="solid", color="blue", weight=3]; 4180[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2906 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 3035[label="",style="solid", color="blue", weight=3]; 2907[label="False || vyw122",fontsize=16,color="black",shape="box"];2907 -> 3036[label="",style="solid", color="black", weight=3]; 2908[label="True || vyw122",fontsize=16,color="black",shape="box"];2908 -> 3037[label="",style="solid", color="black", weight=3]; 2909[label="primCmpChar vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4181[label="vyw4300/Char vyw43000",fontsize=10,color="white",style="solid",shape="box"];2909 -> 4181[label="",style="solid", color="burlywood", weight=9]; 4181 -> 3038[label="",style="solid", color="burlywood", weight=3]; 2910[label="compare () vyw4400",fontsize=16,color="burlywood",shape="box"];4182[label="vyw4400/()",fontsize=10,color="white",style="solid",shape="box"];2910 -> 4182[label="",style="solid", color="burlywood", weight=9]; 4182 -> 3039[label="",style="solid", color="burlywood", weight=3]; 2911[label="primCmpDouble vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4183[label="vyw4300/Double vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2911 -> 4183[label="",style="solid", color="burlywood", weight=9]; 4183 -> 3040[label="",style="solid", color="burlywood", weight=3]; 2912[label="compare (Integer vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4184[label="vyw4400/Integer vyw44000",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4184[label="",style="solid", color="burlywood", weight=9]; 4184 -> 3041[label="",style="solid", color="burlywood", weight=3]; 2913[label="compare (vyw43000 : vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4185[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4185[label="",style="solid", color="burlywood", weight=9]; 4185 -> 3042[label="",style="solid", color="burlywood", weight=3]; 4186[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2913 -> 4186[label="",style="solid", color="burlywood", weight=9]; 4186 -> 3043[label="",style="solid", color="burlywood", weight=3]; 2914[label="compare [] vyw4400",fontsize=16,color="burlywood",shape="box"];4187[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4187[label="",style="solid", color="burlywood", weight=9]; 4187 -> 3044[label="",style="solid", color="burlywood", weight=3]; 4188[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2914 -> 4188[label="",style="solid", color="burlywood", weight=9]; 4188 -> 3045[label="",style="solid", color="burlywood", weight=3]; 2915[label="primCmpFloat vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4189[label="vyw4300/Float vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4189[label="",style="solid", color="burlywood", weight=9]; 4189 -> 3046[label="",style="solid", color="burlywood", weight=3]; 2916[label="primCmpInt vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4190[label="vyw4300/Pos vyw43000",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4190[label="",style="solid", color="burlywood", weight=9]; 4190 -> 3047[label="",style="solid", color="burlywood", weight=3]; 4191[label="vyw4300/Neg vyw43000",fontsize=10,color="white",style="solid",shape="box"];2916 -> 4191[label="",style="solid", color="burlywood", weight=9]; 4191 -> 3048[label="",style="solid", color="burlywood", weight=3]; 2917 -> 2891[label="",style="dashed", color="red", weight=0]; 2917[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2917 -> 3049[label="",style="dashed", color="magenta", weight=3]; 2917 -> 3050[label="",style="dashed", color="magenta", weight=3]; 2918 -> 2892[label="",style="dashed", color="red", weight=0]; 2918[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2918 -> 3051[label="",style="dashed", color="magenta", weight=3]; 2918 -> 3052[label="",style="dashed", color="magenta", weight=3]; 2919 -> 2893[label="",style="dashed", color="red", weight=0]; 2919[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2919 -> 3053[label="",style="dashed", color="magenta", weight=3]; 2919 -> 3054[label="",style="dashed", color="magenta", weight=3]; 2920 -> 2894[label="",style="dashed", color="red", weight=0]; 2920[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2920 -> 3055[label="",style="dashed", color="magenta", weight=3]; 2920 -> 3056[label="",style="dashed", color="magenta", weight=3]; 2921 -> 2895[label="",style="dashed", color="red", weight=0]; 2921[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2921 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2921 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2922 -> 2896[label="",style="dashed", color="red", weight=0]; 2922[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2922 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2922 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2923 -> 2897[label="",style="dashed", color="red", weight=0]; 2923[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2923 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2923 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2924 -> 2898[label="",style="dashed", color="red", weight=0]; 2924[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2924 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2924 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2925 -> 2899[label="",style="dashed", color="red", weight=0]; 2925[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2925 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2925 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2926 -> 2900[label="",style="dashed", color="red", weight=0]; 2926[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2926 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2926 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2927 -> 2901[label="",style="dashed", color="red", weight=0]; 2927[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2927 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2927 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2928 -> 2902[label="",style="dashed", color="red", weight=0]; 2928[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2928 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2928 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2929 -> 2903[label="",style="dashed", color="red", weight=0]; 2929[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2929 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2929 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2930 -> 2904[label="",style="dashed", color="red", weight=0]; 2930[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2930 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2930 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2931 -> 2884[label="",style="dashed", color="red", weight=0]; 2931[label="vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];2931 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2931 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2932[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4192[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 3079[label="",style="solid", color="blue", weight=3]; 4193[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 3080[label="",style="solid", color="blue", weight=3]; 4194[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 3081[label="",style="solid", color="blue", weight=3]; 4195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 3082[label="",style="solid", color="blue", weight=3]; 4196[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 3083[label="",style="solid", color="blue", weight=3]; 4197[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 3084[label="",style="solid", color="blue", weight=3]; 4198[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4198[label="",style="solid", color="blue", weight=9]; 4198 -> 3085[label="",style="solid", color="blue", weight=3]; 4199[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4199[label="",style="solid", color="blue", weight=9]; 4199 -> 3086[label="",style="solid", color="blue", weight=3]; 4200[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4200[label="",style="solid", color="blue", weight=9]; 4200 -> 3087[label="",style="solid", color="blue", weight=3]; 4201[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4201[label="",style="solid", color="blue", weight=9]; 4201 -> 3088[label="",style="solid", color="blue", weight=3]; 4202[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4202[label="",style="solid", color="blue", weight=9]; 4202 -> 3089[label="",style="solid", color="blue", weight=3]; 4203[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4203[label="",style="solid", color="blue", weight=9]; 4203 -> 3090[label="",style="solid", color="blue", weight=3]; 4204[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4204[label="",style="solid", color="blue", weight=9]; 4204 -> 3091[label="",style="solid", color="blue", weight=3]; 4205[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2932 -> 4205[label="",style="solid", color="blue", weight=9]; 4205 -> 3092[label="",style="solid", color="blue", weight=3]; 2933[label="vyw43000",fontsize=16,color="green",shape="box"];2934[label="vyw44000",fontsize=16,color="green",shape="box"];2935[label="vyw43000",fontsize=16,color="green",shape="box"];2936[label="vyw44000",fontsize=16,color="green",shape="box"];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="primMulNat (Succ vyw30100) (Succ vyw400000)",fontsize=16,color="black",shape="box"];2989 -> 3093[label="",style="solid", color="black", weight=3]; 2990[label="primMulNat (Succ vyw30100) Zero",fontsize=16,color="black",shape="box"];2990 -> 3094[label="",style="solid", color="black", weight=3]; 2991[label="primMulNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];2991 -> 3095[label="",style="solid", color="black", weight=3]; 2992[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2992 -> 3096[label="",style="solid", color="black", weight=3]; 2993[label="compare (vyw43000 :% vyw43001) (vyw44000 :% vyw44001)",fontsize=16,color="black",shape="box"];2993 -> 3097[label="",style="solid", color="black", weight=3]; 2994 -> 47[label="",style="dashed", color="red", weight=0]; 2994[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];2994 -> 3098[label="",style="dashed", color="magenta", weight=3]; 2994 -> 3099[label="",style="dashed", color="magenta", weight=3]; 2995 -> 47[label="",style="dashed", color="red", weight=0]; 2995[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];2995 -> 3100[label="",style="dashed", color="magenta", weight=3]; 2995 -> 3101[label="",style="dashed", color="magenta", weight=3]; 2996 -> 47[label="",style="dashed", color="red", weight=0]; 2996[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];2996 -> 3102[label="",style="dashed", color="magenta", weight=3]; 2996 -> 3103[label="",style="dashed", color="magenta", weight=3]; 2997 -> 47[label="",style="dashed", color="red", weight=0]; 2997[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];2997 -> 3104[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3105[label="",style="dashed", color="magenta", weight=3]; 2998 -> 47[label="",style="dashed", color="red", weight=0]; 2998[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];2998 -> 3106[label="",style="dashed", color="magenta", weight=3]; 2998 -> 3107[label="",style="dashed", color="magenta", weight=3]; 2999 -> 47[label="",style="dashed", color="red", weight=0]; 2999[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];2999 -> 3108[label="",style="dashed", color="magenta", weight=3]; 2999 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3000 -> 47[label="",style="dashed", color="red", weight=0]; 3000[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3000 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3000 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3001 -> 47[label="",style="dashed", color="red", weight=0]; 3001[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3001 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3001 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3002 -> 47[label="",style="dashed", color="red", weight=0]; 3002[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3002 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3003 -> 47[label="",style="dashed", color="red", weight=0]; 3003[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3003 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3004 -> 47[label="",style="dashed", color="red", weight=0]; 3004[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3004 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3119[label="",style="dashed", color="magenta", weight=3]; 3005 -> 47[label="",style="dashed", color="red", weight=0]; 3005[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3005 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3006 -> 47[label="",style="dashed", color="red", weight=0]; 3006[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3006 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3007 -> 47[label="",style="dashed", color="red", weight=0]; 3007[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3007 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3007 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3008 -> 2548[label="",style="dashed", color="red", weight=0]; 3008[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3008 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3009 -> 2549[label="",style="dashed", color="red", weight=0]; 3009[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3009 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3010 -> 2550[label="",style="dashed", color="red", weight=0]; 3010[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3010 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3010 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3011 -> 2551[label="",style="dashed", color="red", weight=0]; 3011[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3011 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3011 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3012 -> 2552[label="",style="dashed", color="red", weight=0]; 3012[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3012 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3012 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3013 -> 2553[label="",style="dashed", color="red", weight=0]; 3013[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3013 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3013 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3014 -> 2554[label="",style="dashed", color="red", weight=0]; 3014[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3014 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3014 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3015 -> 2555[label="",style="dashed", color="red", weight=0]; 3015[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3015 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3015 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3016 -> 2556[label="",style="dashed", color="red", weight=0]; 3016[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3016 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3016 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3017 -> 2557[label="",style="dashed", color="red", weight=0]; 3017[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3017 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3017 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3018 -> 2558[label="",style="dashed", color="red", weight=0]; 3018[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3018 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3019 -> 2559[label="",style="dashed", color="red", weight=0]; 3019[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3019 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3019 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3020 -> 2560[label="",style="dashed", color="red", weight=0]; 3020[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3020 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3020 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3021 -> 2561[label="",style="dashed", color="red", weight=0]; 3021[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3021 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3021 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3022 -> 47[label="",style="dashed", color="red", weight=0]; 3022[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3022 -> 3154[label="",style="dashed", color="magenta", weight=3]; 3022 -> 3155[label="",style="dashed", color="magenta", weight=3]; 3023 -> 1886[label="",style="dashed", color="red", weight=0]; 3023[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3023 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3023 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3024 -> 1895[label="",style="dashed", color="red", weight=0]; 3024[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3024 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3024 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3025 -> 1897[label="",style="dashed", color="red", weight=0]; 3025[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3025 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3025 -> 3161[label="",style="dashed", color="magenta", weight=3]; 3026 -> 1892[label="",style="dashed", color="red", weight=0]; 3026[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3026 -> 3162[label="",style="dashed", color="magenta", weight=3]; 3026 -> 3163[label="",style="dashed", color="magenta", weight=3]; 3027 -> 1887[label="",style="dashed", color="red", weight=0]; 3027[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3027 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3027 -> 3165[label="",style="dashed", color="magenta", weight=3]; 3028 -> 1890[label="",style="dashed", color="red", weight=0]; 3028[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3028 -> 3166[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3029 -> 1885[label="",style="dashed", color="red", weight=0]; 3029[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3029 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3030 -> 1893[label="",style="dashed", color="red", weight=0]; 3030[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3030 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3031 -> 1896[label="",style="dashed", color="red", weight=0]; 3031[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3031 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3031 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3032 -> 1891[label="",style="dashed", color="red", weight=0]; 3032[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3032 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3032 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3033 -> 1889[label="",style="dashed", color="red", weight=0]; 3033[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3033 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3034 -> 1894[label="",style="dashed", color="red", weight=0]; 3034[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3034 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3035 -> 1898[label="",style="dashed", color="red", weight=0]; 3035[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3035 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3036[label="vyw122",fontsize=16,color="green",shape="box"];3037[label="True",fontsize=16,color="green",shape="box"];3038[label="primCmpChar (Char vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4206[label="vyw4400/Char vyw44000",fontsize=10,color="white",style="solid",shape="box"];3038 -> 4206[label="",style="solid", color="burlywood", weight=9]; 4206 -> 3182[label="",style="solid", color="burlywood", weight=3]; 3039[label="compare () ()",fontsize=16,color="black",shape="box"];3039 -> 3183[label="",style="solid", color="black", weight=3]; 3040[label="primCmpDouble (Double vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4207[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4207[label="",style="solid", color="burlywood", weight=9]; 4207 -> 3184[label="",style="solid", color="burlywood", weight=3]; 4208[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3040 -> 4208[label="",style="solid", color="burlywood", weight=9]; 4208 -> 3185[label="",style="solid", color="burlywood", weight=3]; 3041[label="compare (Integer vyw43000) (Integer vyw44000)",fontsize=16,color="black",shape="box"];3041 -> 3186[label="",style="solid", color="black", weight=3]; 3042[label="compare (vyw43000 : vyw43001) (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3042 -> 3187[label="",style="solid", color="black", weight=3]; 3043[label="compare (vyw43000 : vyw43001) []",fontsize=16,color="black",shape="box"];3043 -> 3188[label="",style="solid", color="black", weight=3]; 3044[label="compare [] (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3044 -> 3189[label="",style="solid", color="black", weight=3]; 3045[label="compare [] []",fontsize=16,color="black",shape="box"];3045 -> 3190[label="",style="solid", color="black", weight=3]; 3046[label="primCmpFloat (Float vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4209[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3046 -> 4209[label="",style="solid", color="burlywood", weight=9]; 4209 -> 3191[label="",style="solid", color="burlywood", weight=3]; 4210[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3046 -> 4210[label="",style="solid", color="burlywood", weight=9]; 4210 -> 3192[label="",style="solid", color="burlywood", weight=3]; 3047[label="primCmpInt (Pos vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4211[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4211[label="",style="solid", color="burlywood", weight=9]; 4211 -> 3193[label="",style="solid", color="burlywood", weight=3]; 4212[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3047 -> 4212[label="",style="solid", color="burlywood", weight=9]; 4212 -> 3194[label="",style="solid", color="burlywood", weight=3]; 3048[label="primCmpInt (Neg vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4213[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3048 -> 4213[label="",style="solid", color="burlywood", weight=9]; 4213 -> 3195[label="",style="solid", color="burlywood", weight=3]; 4214[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3048 -> 4214[label="",style="solid", color="burlywood", weight=9]; 4214 -> 3196[label="",style="solid", color="burlywood", weight=3]; 3049[label="vyw44000",fontsize=16,color="green",shape="box"];3050[label="vyw43000",fontsize=16,color="green",shape="box"];3051[label="vyw44000",fontsize=16,color="green",shape="box"];3052[label="vyw43000",fontsize=16,color="green",shape="box"];3053[label="vyw44000",fontsize=16,color="green",shape="box"];3054[label="vyw43000",fontsize=16,color="green",shape="box"];3055[label="vyw44000",fontsize=16,color="green",shape="box"];3056[label="vyw43000",fontsize=16,color="green",shape="box"];3057[label="vyw44000",fontsize=16,color="green",shape="box"];3058[label="vyw43000",fontsize=16,color="green",shape="box"];3059[label="vyw44000",fontsize=16,color="green",shape="box"];3060[label="vyw43000",fontsize=16,color="green",shape="box"];3061[label="vyw44000",fontsize=16,color="green",shape="box"];3062[label="vyw43000",fontsize=16,color="green",shape="box"];3063[label="vyw44000",fontsize=16,color="green",shape="box"];3064[label="vyw43000",fontsize=16,color="green",shape="box"];3065[label="vyw44000",fontsize=16,color="green",shape="box"];3066[label="vyw43000",fontsize=16,color="green",shape="box"];3067[label="vyw44000",fontsize=16,color="green",shape="box"];3068[label="vyw43000",fontsize=16,color="green",shape="box"];3069[label="vyw44000",fontsize=16,color="green",shape="box"];3070[label="vyw43000",fontsize=16,color="green",shape="box"];3071[label="vyw44000",fontsize=16,color="green",shape="box"];3072[label="vyw43000",fontsize=16,color="green",shape="box"];3073[label="vyw44000",fontsize=16,color="green",shape="box"];3074[label="vyw43000",fontsize=16,color="green",shape="box"];3075[label="vyw44000",fontsize=16,color="green",shape="box"];3076[label="vyw43000",fontsize=16,color="green",shape="box"];3077[label="vyw43001 < vyw44001",fontsize=16,color="blue",shape="box"];4215[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 3197[label="",style="solid", color="blue", weight=3]; 4216[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 3198[label="",style="solid", color="blue", weight=3]; 4217[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 3199[label="",style="solid", color="blue", weight=3]; 4218[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 3200[label="",style="solid", color="blue", weight=3]; 4219[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 3201[label="",style="solid", color="blue", weight=3]; 4220[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 3202[label="",style="solid", color="blue", weight=3]; 4221[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 3203[label="",style="solid", color="blue", weight=3]; 4222[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 3204[label="",style="solid", color="blue", weight=3]; 4223[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4223[label="",style="solid", color="blue", weight=9]; 4223 -> 3205[label="",style="solid", color="blue", weight=3]; 4224[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4224[label="",style="solid", color="blue", weight=9]; 4224 -> 3206[label="",style="solid", color="blue", weight=3]; 4225[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4225[label="",style="solid", color="blue", weight=9]; 4225 -> 3207[label="",style="solid", color="blue", weight=3]; 4226[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4226[label="",style="solid", color="blue", weight=9]; 4226 -> 3208[label="",style="solid", color="blue", weight=3]; 4227[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4227[label="",style="solid", color="blue", weight=9]; 4227 -> 3209[label="",style="solid", color="blue", weight=3]; 4228[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3077 -> 4228[label="",style="solid", color="blue", weight=9]; 4228 -> 3210[label="",style="solid", color="blue", weight=3]; 3078 -> 2230[label="",style="dashed", color="red", weight=0]; 3078[label="vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];3078 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3078 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3079 -> 47[label="",style="dashed", color="red", weight=0]; 3079[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3079 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3079 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3080 -> 1886[label="",style="dashed", color="red", weight=0]; 3080[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3080 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3080 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3081 -> 1895[label="",style="dashed", color="red", weight=0]; 3081[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3081 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3081 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3082 -> 1897[label="",style="dashed", color="red", weight=0]; 3082[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3082 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3082 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3083 -> 1892[label="",style="dashed", color="red", weight=0]; 3083[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3083 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3083 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3084 -> 1887[label="",style="dashed", color="red", weight=0]; 3084[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3084 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3084 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3085 -> 1890[label="",style="dashed", color="red", weight=0]; 3085[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3085 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3085 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3086 -> 1885[label="",style="dashed", color="red", weight=0]; 3086[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3086 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3086 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3087 -> 1893[label="",style="dashed", color="red", weight=0]; 3087[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3087 -> 3229[label="",style="dashed", color="magenta", weight=3]; 3087 -> 3230[label="",style="dashed", color="magenta", weight=3]; 3088 -> 1896[label="",style="dashed", color="red", weight=0]; 3088[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3088 -> 3231[label="",style="dashed", color="magenta", weight=3]; 3088 -> 3232[label="",style="dashed", color="magenta", weight=3]; 3089 -> 1891[label="",style="dashed", color="red", weight=0]; 3089[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3089 -> 3233[label="",style="dashed", color="magenta", weight=3]; 3089 -> 3234[label="",style="dashed", color="magenta", weight=3]; 3090 -> 1889[label="",style="dashed", color="red", weight=0]; 3090[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3090 -> 3235[label="",style="dashed", color="magenta", weight=3]; 3090 -> 3236[label="",style="dashed", color="magenta", weight=3]; 3091 -> 1894[label="",style="dashed", color="red", weight=0]; 3091[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3091 -> 3237[label="",style="dashed", color="magenta", weight=3]; 3091 -> 3238[label="",style="dashed", color="magenta", weight=3]; 3092 -> 1898[label="",style="dashed", color="red", weight=0]; 3092[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3092 -> 3239[label="",style="dashed", color="magenta", weight=3]; 3092 -> 3240[label="",style="dashed", color="magenta", weight=3]; 3093 -> 3241[label="",style="dashed", color="red", weight=0]; 3093[label="primPlusNat (primMulNat vyw30100 (Succ vyw400000)) (Succ vyw400000)",fontsize=16,color="magenta"];3093 -> 3242[label="",style="dashed", color="magenta", weight=3]; 3094[label="Zero",fontsize=16,color="green",shape="box"];3095[label="Zero",fontsize=16,color="green",shape="box"];3096[label="Zero",fontsize=16,color="green",shape="box"];3097[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="blue",shape="box"];4229[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4229[label="",style="solid", color="blue", weight=9]; 4229 -> 3243[label="",style="solid", color="blue", weight=3]; 4230[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3097 -> 4230[label="",style="solid", color="blue", weight=9]; 4230 -> 3244[label="",style="solid", color="blue", weight=3]; 3098[label="LT",fontsize=16,color="green",shape="box"];3099[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3099 -> 3245[label="",style="solid", color="black", weight=3]; 3100[label="LT",fontsize=16,color="green",shape="box"];3101[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3101 -> 3246[label="",style="solid", color="black", weight=3]; 3102[label="LT",fontsize=16,color="green",shape="box"];3103 -> 2795[label="",style="dashed", color="red", weight=0]; 3103[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3103 -> 3247[label="",style="dashed", color="magenta", weight=3]; 3103 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3104[label="LT",fontsize=16,color="green",shape="box"];3105[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3105 -> 3249[label="",style="solid", color="black", weight=3]; 3106[label="LT",fontsize=16,color="green",shape="box"];3107 -> 2799[label="",style="dashed", color="red", weight=0]; 3107[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3107 -> 3250[label="",style="dashed", color="magenta", weight=3]; 3107 -> 3251[label="",style="dashed", color="magenta", weight=3]; 3108[label="LT",fontsize=16,color="green",shape="box"];3109 -> 2801[label="",style="dashed", color="red", weight=0]; 3109[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3109 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3109 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3110[label="LT",fontsize=16,color="green",shape="box"];3111 -> 2803[label="",style="dashed", color="red", weight=0]; 3111[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3111 -> 3254[label="",style="dashed", color="magenta", weight=3]; 3111 -> 3255[label="",style="dashed", color="magenta", weight=3]; 3112[label="LT",fontsize=16,color="green",shape="box"];3113 -> 2805[label="",style="dashed", color="red", weight=0]; 3113[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3113 -> 3256[label="",style="dashed", color="magenta", weight=3]; 3113 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3114[label="LT",fontsize=16,color="green",shape="box"];3115 -> 2807[label="",style="dashed", color="red", weight=0]; 3115[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3115 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3115 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3116[label="LT",fontsize=16,color="green",shape="box"];3117[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3117 -> 3260[label="",style="solid", color="black", weight=3]; 3118[label="LT",fontsize=16,color="green",shape="box"];3119 -> 2809[label="",style="dashed", color="red", weight=0]; 3119[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3119 -> 3261[label="",style="dashed", color="magenta", weight=3]; 3119 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3120[label="LT",fontsize=16,color="green",shape="box"];3121 -> 2811[label="",style="dashed", color="red", weight=0]; 3121[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3121 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3121 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3122[label="LT",fontsize=16,color="green",shape="box"];3123[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3123 -> 3265[label="",style="solid", color="black", weight=3]; 3124[label="LT",fontsize=16,color="green",shape="box"];3125[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3125 -> 3266[label="",style="solid", color="black", weight=3]; 3126[label="vyw43001",fontsize=16,color="green",shape="box"];3127[label="vyw44001",fontsize=16,color="green",shape="box"];3128[label="vyw43001",fontsize=16,color="green",shape="box"];3129[label="vyw44001",fontsize=16,color="green",shape="box"];3130[label="vyw43001",fontsize=16,color="green",shape="box"];3131[label="vyw44001",fontsize=16,color="green",shape="box"];3132[label="vyw43001",fontsize=16,color="green",shape="box"];3133[label="vyw44001",fontsize=16,color="green",shape="box"];3134[label="vyw43001",fontsize=16,color="green",shape="box"];3135[label="vyw44001",fontsize=16,color="green",shape="box"];3136[label="vyw43001",fontsize=16,color="green",shape="box"];3137[label="vyw44001",fontsize=16,color="green",shape="box"];3138[label="vyw43001",fontsize=16,color="green",shape="box"];3139[label="vyw44001",fontsize=16,color="green",shape="box"];3140[label="vyw43001",fontsize=16,color="green",shape="box"];3141[label="vyw44001",fontsize=16,color="green",shape="box"];3142[label="vyw43001",fontsize=16,color="green",shape="box"];3143[label="vyw44001",fontsize=16,color="green",shape="box"];3144[label="vyw43001",fontsize=16,color="green",shape="box"];3145[label="vyw44001",fontsize=16,color="green",shape="box"];3146[label="vyw43001",fontsize=16,color="green",shape="box"];3147[label="vyw44001",fontsize=16,color="green",shape="box"];3148[label="vyw43001",fontsize=16,color="green",shape="box"];3149[label="vyw44001",fontsize=16,color="green",shape="box"];3150[label="vyw43001",fontsize=16,color="green",shape="box"];3151[label="vyw44001",fontsize=16,color="green",shape="box"];3152[label="vyw43001",fontsize=16,color="green",shape="box"];3153[label="vyw44001",fontsize=16,color="green",shape="box"];3154[label="vyw44000",fontsize=16,color="green",shape="box"];3155[label="vyw43000",fontsize=16,color="green",shape="box"];3156[label="vyw44000",fontsize=16,color="green",shape="box"];3157[label="vyw43000",fontsize=16,color="green",shape="box"];3158[label="vyw44000",fontsize=16,color="green",shape="box"];3159[label="vyw43000",fontsize=16,color="green",shape="box"];3160[label="vyw44000",fontsize=16,color="green",shape="box"];3161[label="vyw43000",fontsize=16,color="green",shape="box"];3162[label="vyw44000",fontsize=16,color="green",shape="box"];3163[label="vyw43000",fontsize=16,color="green",shape="box"];3164[label="vyw44000",fontsize=16,color="green",shape="box"];3165[label="vyw43000",fontsize=16,color="green",shape="box"];3166[label="vyw44000",fontsize=16,color="green",shape="box"];3167[label="vyw43000",fontsize=16,color="green",shape="box"];3168[label="vyw44000",fontsize=16,color="green",shape="box"];3169[label="vyw43000",fontsize=16,color="green",shape="box"];3170[label="vyw44000",fontsize=16,color="green",shape="box"];3171[label="vyw43000",fontsize=16,color="green",shape="box"];3172[label="vyw44000",fontsize=16,color="green",shape="box"];3173[label="vyw43000",fontsize=16,color="green",shape="box"];3174[label="vyw44000",fontsize=16,color="green",shape="box"];3175[label="vyw43000",fontsize=16,color="green",shape="box"];3176[label="vyw44000",fontsize=16,color="green",shape="box"];3177[label="vyw43000",fontsize=16,color="green",shape="box"];3178[label="vyw44000",fontsize=16,color="green",shape="box"];3179[label="vyw43000",fontsize=16,color="green",shape="box"];3180[label="vyw44000",fontsize=16,color="green",shape="box"];3181[label="vyw43000",fontsize=16,color="green",shape="box"];3182[label="primCmpChar (Char vyw43000) (Char vyw44000)",fontsize=16,color="black",shape="box"];3182 -> 3267[label="",style="solid", color="black", weight=3]; 3183[label="EQ",fontsize=16,color="green",shape="box"];3184[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4231[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3184 -> 4231[label="",style="solid", color="burlywood", weight=9]; 4231 -> 3268[label="",style="solid", color="burlywood", weight=3]; 3185[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4232[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4232[label="",style="solid", color="burlywood", weight=9]; 4232 -> 3269[label="",style="solid", color="burlywood", weight=3]; 3186 -> 2916[label="",style="dashed", color="red", weight=0]; 3186[label="primCmpInt vyw43000 vyw44000",fontsize=16,color="magenta"];3186 -> 3270[label="",style="dashed", color="magenta", weight=3]; 3186 -> 3271[label="",style="dashed", color="magenta", weight=3]; 3187 -> 3272[label="",style="dashed", color="red", weight=0]; 3187[label="primCompAux vyw43000 vyw44000 (compare vyw43001 vyw44001)",fontsize=16,color="magenta"];3187 -> 3273[label="",style="dashed", color="magenta", weight=3]; 3188[label="GT",fontsize=16,color="green",shape="box"];3189[label="LT",fontsize=16,color="green",shape="box"];3190[label="EQ",fontsize=16,color="green",shape="box"];3191[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4233[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3191 -> 4233[label="",style="solid", color="burlywood", weight=9]; 4233 -> 3274[label="",style="solid", color="burlywood", weight=3]; 3192[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4234[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3192 -> 4234[label="",style="solid", color="burlywood", weight=9]; 4234 -> 3275[label="",style="solid", color="burlywood", weight=3]; 3193[label="primCmpInt (Pos (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4235[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3193 -> 4235[label="",style="solid", color="burlywood", weight=9]; 4235 -> 3276[label="",style="solid", color="burlywood", weight=3]; 4236[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3193 -> 4236[label="",style="solid", color="burlywood", weight=9]; 4236 -> 3277[label="",style="solid", color="burlywood", weight=3]; 3194[label="primCmpInt (Pos Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4237[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3194 -> 4237[label="",style="solid", color="burlywood", weight=9]; 4237 -> 3278[label="",style="solid", color="burlywood", weight=3]; 4238[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3194 -> 4238[label="",style="solid", color="burlywood", weight=9]; 4238 -> 3279[label="",style="solid", color="burlywood", weight=3]; 3195[label="primCmpInt (Neg (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4239[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3195 -> 4239[label="",style="solid", color="burlywood", weight=9]; 4239 -> 3280[label="",style="solid", color="burlywood", weight=3]; 4240[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3195 -> 4240[label="",style="solid", color="burlywood", weight=9]; 4240 -> 3281[label="",style="solid", color="burlywood", weight=3]; 3196[label="primCmpInt (Neg Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4241[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3196 -> 4241[label="",style="solid", color="burlywood", weight=9]; 4241 -> 3282[label="",style="solid", color="burlywood", weight=3]; 4242[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3196 -> 4242[label="",style="solid", color="burlywood", weight=9]; 4242 -> 3283[label="",style="solid", color="burlywood", weight=3]; 3197 -> 2891[label="",style="dashed", color="red", weight=0]; 3197[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3197 -> 3284[label="",style="dashed", color="magenta", weight=3]; 3197 -> 3285[label="",style="dashed", color="magenta", weight=3]; 3198 -> 2892[label="",style="dashed", color="red", weight=0]; 3198[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3198 -> 3286[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3287[label="",style="dashed", color="magenta", weight=3]; 3199 -> 2893[label="",style="dashed", color="red", weight=0]; 3199[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3199 -> 3288[label="",style="dashed", color="magenta", weight=3]; 3199 -> 3289[label="",style="dashed", color="magenta", weight=3]; 3200 -> 2894[label="",style="dashed", color="red", weight=0]; 3200[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3200 -> 3290[label="",style="dashed", color="magenta", weight=3]; 3200 -> 3291[label="",style="dashed", color="magenta", weight=3]; 3201 -> 2895[label="",style="dashed", color="red", weight=0]; 3201[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3201 -> 3292[label="",style="dashed", color="magenta", weight=3]; 3201 -> 3293[label="",style="dashed", color="magenta", weight=3]; 3202 -> 2896[label="",style="dashed", color="red", weight=0]; 3202[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3202 -> 3294[label="",style="dashed", color="magenta", weight=3]; 3202 -> 3295[label="",style="dashed", color="magenta", weight=3]; 3203 -> 2897[label="",style="dashed", color="red", weight=0]; 3203[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3203 -> 3296[label="",style="dashed", color="magenta", weight=3]; 3203 -> 3297[label="",style="dashed", color="magenta", weight=3]; 3204 -> 2898[label="",style="dashed", color="red", weight=0]; 3204[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3204 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3204 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3205 -> 2899[label="",style="dashed", color="red", weight=0]; 3205[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3205 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3205 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3206 -> 2900[label="",style="dashed", color="red", weight=0]; 3206[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3206 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3206 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3207 -> 2901[label="",style="dashed", color="red", weight=0]; 3207[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3207 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3207 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3208 -> 2902[label="",style="dashed", color="red", weight=0]; 3208[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3208 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3208 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3209 -> 2903[label="",style="dashed", color="red", weight=0]; 3209[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3209 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3209 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3210 -> 2904[label="",style="dashed", color="red", weight=0]; 3210[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3210 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3210 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3211[label="vyw43002 <= vyw44002",fontsize=16,color="blue",shape="box"];4243[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 3312[label="",style="solid", color="blue", weight=3]; 4244[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 3313[label="",style="solid", color="blue", weight=3]; 4245[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 3314[label="",style="solid", color="blue", weight=3]; 4246[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 3315[label="",style="solid", color="blue", weight=3]; 4247[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 3316[label="",style="solid", color="blue", weight=3]; 4248[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 3317[label="",style="solid", color="blue", weight=3]; 4249[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 3318[label="",style="solid", color="blue", weight=3]; 4250[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 3319[label="",style="solid", color="blue", weight=3]; 4251[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 3320[label="",style="solid", color="blue", weight=3]; 4252[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 3321[label="",style="solid", color="blue", weight=3]; 4253[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 3322[label="",style="solid", color="blue", weight=3]; 4254[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 3323[label="",style="solid", color="blue", weight=3]; 4255[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 3324[label="",style="solid", color="blue", weight=3]; 4256[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3211 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 3325[label="",style="solid", color="blue", weight=3]; 3212[label="vyw43001 == vyw44001",fontsize=16,color="blue",shape="box"];4257[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 3326[label="",style="solid", color="blue", weight=3]; 4258[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 3327[label="",style="solid", color="blue", weight=3]; 4259[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 3328[label="",style="solid", color="blue", weight=3]; 4260[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 3329[label="",style="solid", color="blue", weight=3]; 4261[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4261[label="",style="solid", color="blue", weight=9]; 4261 -> 3330[label="",style="solid", color="blue", weight=3]; 4262[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4262[label="",style="solid", color="blue", weight=9]; 4262 -> 3331[label="",style="solid", color="blue", weight=3]; 4263[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4263[label="",style="solid", color="blue", weight=9]; 4263 -> 3332[label="",style="solid", color="blue", weight=3]; 4264[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4264[label="",style="solid", color="blue", weight=9]; 4264 -> 3333[label="",style="solid", color="blue", weight=3]; 4265[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4265[label="",style="solid", color="blue", weight=9]; 4265 -> 3334[label="",style="solid", color="blue", weight=3]; 4266[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4266[label="",style="solid", color="blue", weight=9]; 4266 -> 3335[label="",style="solid", color="blue", weight=3]; 4267[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4267[label="",style="solid", color="blue", weight=9]; 4267 -> 3336[label="",style="solid", color="blue", weight=3]; 4268[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4268[label="",style="solid", color="blue", weight=9]; 4268 -> 3337[label="",style="solid", color="blue", weight=3]; 4269[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4269[label="",style="solid", color="blue", weight=9]; 4269 -> 3338[label="",style="solid", color="blue", weight=3]; 4270[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3212 -> 4270[label="",style="solid", color="blue", weight=9]; 4270 -> 3339[label="",style="solid", color="blue", weight=3]; 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[label="vyw44000",fontsize=16,color="green",shape="box"];3224[label="vyw43000",fontsize=16,color="green",shape="box"];3225[label="vyw44000",fontsize=16,color="green",shape="box"];3226[label="vyw43000",fontsize=16,color="green",shape="box"];3227[label="vyw44000",fontsize=16,color="green",shape="box"];3228[label="vyw43000",fontsize=16,color="green",shape="box"];3229[label="vyw44000",fontsize=16,color="green",shape="box"];3230[label="vyw43000",fontsize=16,color="green",shape="box"];3231[label="vyw44000",fontsize=16,color="green",shape="box"];3232[label="vyw43000",fontsize=16,color="green",shape="box"];3233[label="vyw44000",fontsize=16,color="green",shape="box"];3234[label="vyw43000",fontsize=16,color="green",shape="box"];3235[label="vyw44000",fontsize=16,color="green",shape="box"];3236[label="vyw43000",fontsize=16,color="green",shape="box"];3237[label="vyw44000",fontsize=16,color="green",shape="box"];3238[label="vyw43000",fontsize=16,color="green",shape="box"];3239[label="vyw44000",fontsize=16,color="green",shape="box"];3240[label="vyw43000",fontsize=16,color="green",shape="box"];3242 -> 2776[label="",style="dashed", color="red", weight=0]; 3242[label="primMulNat vyw30100 (Succ vyw400000)",fontsize=16,color="magenta"];3242 -> 3340[label="",style="dashed", color="magenta", weight=3]; 3242 -> 3341[label="",style="dashed", color="magenta", weight=3]; 3241[label="primPlusNat vyw123 (Succ vyw400000)",fontsize=16,color="burlywood",shape="triangle"];4271[label="vyw123/Succ vyw1230",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4271[label="",style="solid", color="burlywood", weight=9]; 4271 -> 3342[label="",style="solid", color="burlywood", weight=3]; 4272[label="vyw123/Zero",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4272[label="",style="solid", color="burlywood", weight=9]; 4272 -> 3343[label="",style="solid", color="burlywood", weight=3]; 3243 -> 2805[label="",style="dashed", color="red", weight=0]; 3243[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3243 -> 3344[label="",style="dashed", color="magenta", weight=3]; 3243 -> 3345[label="",style="dashed", color="magenta", weight=3]; 3244 -> 2811[label="",style="dashed", color="red", weight=0]; 3244[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3244 -> 3346[label="",style="dashed", color="magenta", weight=3]; 3244 -> 3347[label="",style="dashed", color="magenta", weight=3]; 3245[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3245 -> 3348[label="",style="solid", color="black", weight=3]; 3246[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3246 -> 3349[label="",style="solid", color="black", weight=3]; 3247[label="vyw43000",fontsize=16,color="green",shape="box"];3248[label="vyw44000",fontsize=16,color="green",shape="box"];3249[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3249 -> 3350[label="",style="solid", color="black", weight=3]; 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="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3260 -> 3351[label="",style="solid", color="black", weight=3]; 3261[label="vyw43000",fontsize=16,color="green",shape="box"];3262[label="vyw44000",fontsize=16,color="green",shape="box"];3263[label="vyw43000",fontsize=16,color="green",shape="box"];3264[label="vyw44000",fontsize=16,color="green",shape="box"];3265[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3265 -> 3352[label="",style="solid", color="black", weight=3]; 3266[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3266 -> 3353[label="",style="solid", color="black", weight=3]; 3267[label="primCmpNat vyw43000 vyw44000",fontsize=16,color="burlywood",shape="triangle"];4273[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3267 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 3354[label="",style="solid", color="burlywood", weight=3]; 4274[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3267 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 3355[label="",style="solid", color="burlywood", weight=3]; 3268[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4275[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3268 -> 4275[label="",style="solid", color="burlywood", weight=9]; 4275 -> 3356[label="",style="solid", color="burlywood", weight=3]; 4276[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3268 -> 4276[label="",style="solid", color="burlywood", weight=9]; 4276 -> 3357[label="",style="solid", color="burlywood", weight=3]; 3269[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4277[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3269 -> 4277[label="",style="solid", color="burlywood", weight=9]; 4277 -> 3358[label="",style="solid", color="burlywood", weight=3]; 4278[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3269 -> 4278[label="",style="solid", color="burlywood", weight=9]; 4278 -> 3359[label="",style="solid", color="burlywood", weight=3]; 3270[label="vyw43000",fontsize=16,color="green",shape="box"];3271[label="vyw44000",fontsize=16,color="green",shape="box"];3273 -> 2807[label="",style="dashed", color="red", weight=0]; 3273[label="compare vyw43001 vyw44001",fontsize=16,color="magenta"];3273 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3272[label="primCompAux vyw43000 vyw44000 vyw124",fontsize=16,color="black",shape="triangle"];3272 -> 3362[label="",style="solid", color="black", weight=3]; 3274[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4279[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3274 -> 4279[label="",style="solid", color="burlywood", weight=9]; 4279 -> 3363[label="",style="solid", color="burlywood", weight=3]; 4280[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3274 -> 4280[label="",style="solid", color="burlywood", weight=9]; 4280 -> 3364[label="",style="solid", color="burlywood", weight=3]; 3275[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4281[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3275 -> 4281[label="",style="solid", color="burlywood", weight=9]; 4281 -> 3365[label="",style="solid", color="burlywood", weight=3]; 4282[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3275 -> 4282[label="",style="solid", color="burlywood", weight=9]; 4282 -> 3366[label="",style="solid", color="burlywood", weight=3]; 3276[label="primCmpInt (Pos (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3276 -> 3367[label="",style="solid", color="black", weight=3]; 3277[label="primCmpInt (Pos (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3277 -> 3368[label="",style="solid", color="black", weight=3]; 3278[label="primCmpInt (Pos Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4283[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3278 -> 4283[label="",style="solid", color="burlywood", weight=9]; 4283 -> 3369[label="",style="solid", color="burlywood", weight=3]; 4284[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3278 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 3370[label="",style="solid", color="burlywood", weight=3]; 3279[label="primCmpInt (Pos Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4285[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3279 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 3371[label="",style="solid", color="burlywood", weight=3]; 4286[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3279 -> 4286[label="",style="solid", color="burlywood", weight=9]; 4286 -> 3372[label="",style="solid", color="burlywood", weight=3]; 3280[label="primCmpInt (Neg (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3280 -> 3373[label="",style="solid", color="black", weight=3]; 3281[label="primCmpInt (Neg (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3281 -> 3374[label="",style="solid", color="black", weight=3]; 3282[label="primCmpInt (Neg Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4287[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4287[label="",style="solid", color="burlywood", weight=9]; 4287 -> 3375[label="",style="solid", color="burlywood", weight=3]; 4288[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3282 -> 4288[label="",style="solid", color="burlywood", weight=9]; 4288 -> 3376[label="",style="solid", color="burlywood", weight=3]; 3283[label="primCmpInt (Neg Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4289[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3283 -> 4289[label="",style="solid", color="burlywood", weight=9]; 4289 -> 3377[label="",style="solid", color="burlywood", weight=3]; 4290[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3283 -> 4290[label="",style="solid", color="burlywood", weight=9]; 4290 -> 3378[label="",style="solid", color="burlywood", weight=3]; 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="vyw43001",fontsize=16,color="green",shape="box"];3296[label="vyw44001",fontsize=16,color="green",shape="box"];3297[label="vyw43001",fontsize=16,color="green",shape="box"];3298[label="vyw44001",fontsize=16,color="green",shape="box"];3299[label="vyw43001",fontsize=16,color="green",shape="box"];3300[label="vyw44001",fontsize=16,color="green",shape="box"];3301[label="vyw43001",fontsize=16,color="green",shape="box"];3302[label="vyw44001",fontsize=16,color="green",shape="box"];3303[label="vyw43001",fontsize=16,color="green",shape="box"];3304[label="vyw44001",fontsize=16,color="green",shape="box"];3305[label="vyw43001",fontsize=16,color="green",shape="box"];3306[label="vyw44001",fontsize=16,color="green",shape="box"];3307[label="vyw43001",fontsize=16,color="green",shape="box"];3308[label="vyw44001",fontsize=16,color="green",shape="box"];3309[label="vyw43001",fontsize=16,color="green",shape="box"];3310[label="vyw44001",fontsize=16,color="green",shape="box"];3311[label="vyw43001",fontsize=16,color="green",shape="box"];3312 -> 2548[label="",style="dashed", color="red", weight=0]; 3312[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3312 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3312 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3313 -> 2549[label="",style="dashed", color="red", weight=0]; 3313[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3313 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3313 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3314 -> 2550[label="",style="dashed", color="red", weight=0]; 3314[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3314 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3314 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3315 -> 2551[label="",style="dashed", color="red", weight=0]; 3315[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3315 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3315 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3316 -> 2552[label="",style="dashed", color="red", weight=0]; 3316[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3316 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3316 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3317 -> 2553[label="",style="dashed", color="red", weight=0]; 3317[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3317 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3317 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3318 -> 2554[label="",style="dashed", color="red", weight=0]; 3318[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3318 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3318 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3319 -> 2555[label="",style="dashed", color="red", weight=0]; 3319[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3319 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3319 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3320 -> 2556[label="",style="dashed", color="red", weight=0]; 3320[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3320 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3320 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3321 -> 2557[label="",style="dashed", color="red", weight=0]; 3321[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3321 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3321 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3322 -> 2558[label="",style="dashed", color="red", weight=0]; 3322[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3322 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3322 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3323 -> 2559[label="",style="dashed", color="red", weight=0]; 3323[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3323 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3323 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3324 -> 2560[label="",style="dashed", color="red", weight=0]; 3324[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3324 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3324 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3325 -> 2561[label="",style="dashed", color="red", weight=0]; 3325[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3325 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3325 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3326 -> 47[label="",style="dashed", color="red", weight=0]; 3326[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3326 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3326 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3327 -> 1886[label="",style="dashed", color="red", weight=0]; 3327[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3327 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3327 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3328 -> 1895[label="",style="dashed", color="red", weight=0]; 3328[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3328 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3328 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3329 -> 1897[label="",style="dashed", color="red", weight=0]; 3329[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3329 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3329 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3330 -> 1892[label="",style="dashed", color="red", weight=0]; 3330[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3330 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3330 -> 3416[label="",style="dashed", color="magenta", weight=3]; 3331 -> 1887[label="",style="dashed", color="red", weight=0]; 3331[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3331 -> 3417[label="",style="dashed", color="magenta", weight=3]; 3331 -> 3418[label="",style="dashed", color="magenta", weight=3]; 3332 -> 1890[label="",style="dashed", color="red", weight=0]; 3332[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3332 -> 3419[label="",style="dashed", color="magenta", weight=3]; 3332 -> 3420[label="",style="dashed", color="magenta", weight=3]; 3333 -> 1885[label="",style="dashed", color="red", weight=0]; 3333[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3333 -> 3421[label="",style="dashed", color="magenta", weight=3]; 3333 -> 3422[label="",style="dashed", color="magenta", weight=3]; 3334 -> 1893[label="",style="dashed", color="red", weight=0]; 3334[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3334 -> 3423[label="",style="dashed", color="magenta", weight=3]; 3334 -> 3424[label="",style="dashed", color="magenta", weight=3]; 3335 -> 1896[label="",style="dashed", color="red", weight=0]; 3335[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3335 -> 3425[label="",style="dashed", color="magenta", weight=3]; 3335 -> 3426[label="",style="dashed", color="magenta", weight=3]; 3336 -> 1891[label="",style="dashed", color="red", weight=0]; 3336[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3336 -> 3427[label="",style="dashed", color="magenta", weight=3]; 3336 -> 3428[label="",style="dashed", color="magenta", weight=3]; 3337 -> 1889[label="",style="dashed", color="red", weight=0]; 3337[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3337 -> 3429[label="",style="dashed", color="magenta", weight=3]; 3337 -> 3430[label="",style="dashed", color="magenta", weight=3]; 3338 -> 1894[label="",style="dashed", color="red", weight=0]; 3338[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3338 -> 3431[label="",style="dashed", color="magenta", weight=3]; 3338 -> 3432[label="",style="dashed", color="magenta", weight=3]; 3339 -> 1898[label="",style="dashed", color="red", weight=0]; 3339[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3339 -> 3433[label="",style="dashed", color="magenta", weight=3]; 3339 -> 3434[label="",style="dashed", color="magenta", weight=3]; 3340[label="vyw30100",fontsize=16,color="green",shape="box"];3341[label="Succ vyw400000",fontsize=16,color="green",shape="box"];3342[label="primPlusNat (Succ vyw1230) (Succ vyw400000)",fontsize=16,color="black",shape="box"];3342 -> 3435[label="",style="solid", color="black", weight=3]; 3343[label="primPlusNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];3343 -> 3436[label="",style="solid", color="black", weight=3]; 3344[label="vyw43000 * vyw44001",fontsize=16,color="burlywood",shape="triangle"];4291[label="vyw43000/Integer vyw430000",fontsize=10,color="white",style="solid",shape="box"];3344 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 3437[label="",style="solid", color="burlywood", weight=3]; 3345 -> 3344[label="",style="dashed", color="red", weight=0]; 3345[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3345 -> 3438[label="",style="dashed", color="magenta", weight=3]; 3345 -> 3439[label="",style="dashed", color="magenta", weight=3]; 3346 -> 2222[label="",style="dashed", color="red", weight=0]; 3346[label="vyw43000 * vyw44001",fontsize=16,color="magenta"];3346 -> 3440[label="",style="dashed", color="magenta", weight=3]; 3346 -> 3441[label="",style="dashed", color="magenta", weight=3]; 3347 -> 2222[label="",style="dashed", color="red", weight=0]; 3347[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3347 -> 3442[label="",style="dashed", color="magenta", weight=3]; 3347 -> 3443[label="",style="dashed", color="magenta", weight=3]; 3348 -> 3444[label="",style="dashed", color="red", weight=0]; 3348[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3348 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3349 -> 3446[label="",style="dashed", color="red", weight=0]; 3349[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3349 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3350 -> 3448[label="",style="dashed", color="red", weight=0]; 3350[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3350 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3351 -> 3450[label="",style="dashed", color="red", weight=0]; 3351[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3351 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3352 -> 3452[label="",style="dashed", color="red", weight=0]; 3352[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3352 -> 3453[label="",style="dashed", color="magenta", weight=3]; 3353 -> 1847[label="",style="dashed", color="red", weight=0]; 3353[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3353 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3353 -> 3455[label="",style="dashed", color="magenta", weight=3]; 3353 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3354[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="burlywood",shape="box"];4292[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3354 -> 4292[label="",style="solid", color="burlywood", weight=9]; 4292 -> 3457[label="",style="solid", color="burlywood", weight=3]; 4293[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3354 -> 4293[label="",style="solid", color="burlywood", weight=9]; 4293 -> 3458[label="",style="solid", color="burlywood", weight=3]; 3355[label="primCmpNat Zero vyw44000",fontsize=16,color="burlywood",shape="box"];4294[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3355 -> 4294[label="",style="solid", color="burlywood", weight=9]; 4294 -> 3459[label="",style="solid", color="burlywood", weight=3]; 4295[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3355 -> 4295[label="",style="solid", color="burlywood", weight=9]; 4295 -> 3460[label="",style="solid", color="burlywood", weight=3]; 3356[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3356 -> 3461[label="",style="solid", color="black", weight=3]; 3357[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3357 -> 3462[label="",style="solid", color="black", weight=3]; 3358[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3358 -> 3463[label="",style="solid", color="black", weight=3]; 3359[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3359 -> 3464[label="",style="solid", color="black", weight=3]; 3360[label="vyw43001",fontsize=16,color="green",shape="box"];3361[label="vyw44001",fontsize=16,color="green",shape="box"];3362 -> 3465[label="",style="dashed", color="red", weight=0]; 3362[label="primCompAux0 vyw124 (compare vyw43000 vyw44000)",fontsize=16,color="magenta"];3362 -> 3466[label="",style="dashed", color="magenta", weight=3]; 3362 -> 3467[label="",style="dashed", color="magenta", weight=3]; 3363[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3363 -> 3468[label="",style="solid", color="black", weight=3]; 3364[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3364 -> 3469[label="",style="solid", color="black", weight=3]; 3365[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3365 -> 3470[label="",style="solid", color="black", weight=3]; 3366[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3366 -> 3471[label="",style="solid", color="black", weight=3]; 3367 -> 3267[label="",style="dashed", color="red", weight=0]; 3367[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="magenta"];3367 -> 3472[label="",style="dashed", color="magenta", weight=3]; 3367 -> 3473[label="",style="dashed", color="magenta", weight=3]; 3368[label="GT",fontsize=16,color="green",shape="box"];3369[label="primCmpInt (Pos Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3369 -> 3474[label="",style="solid", color="black", weight=3]; 3370[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3370 -> 3475[label="",style="solid", color="black", weight=3]; 3371[label="primCmpInt (Pos Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3371 -> 3476[label="",style="solid", color="black", weight=3]; 3372[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3372 -> 3477[label="",style="solid", color="black", weight=3]; 3373[label="LT",fontsize=16,color="green",shape="box"];3374 -> 3267[label="",style="dashed", color="red", weight=0]; 3374[label="primCmpNat vyw44000 (Succ vyw430000)",fontsize=16,color="magenta"];3374 -> 3478[label="",style="dashed", color="magenta", weight=3]; 3374 -> 3479[label="",style="dashed", color="magenta", weight=3]; 3375[label="primCmpInt (Neg Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3375 -> 3480[label="",style="solid", color="black", weight=3]; 3376[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3376 -> 3481[label="",style="solid", color="black", weight=3]; 3377[label="primCmpInt (Neg Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3377 -> 3482[label="",style="solid", color="black", weight=3]; 3378[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3378 -> 3483[label="",style="solid", color="black", weight=3]; 3379[label="vyw43002",fontsize=16,color="green",shape="box"];3380[label="vyw44002",fontsize=16,color="green",shape="box"];3381[label="vyw43002",fontsize=16,color="green",shape="box"];3382[label="vyw44002",fontsize=16,color="green",shape="box"];3383[label="vyw43002",fontsize=16,color="green",shape="box"];3384[label="vyw44002",fontsize=16,color="green",shape="box"];3385[label="vyw43002",fontsize=16,color="green",shape="box"];3386[label="vyw44002",fontsize=16,color="green",shape="box"];3387[label="vyw43002",fontsize=16,color="green",shape="box"];3388[label="vyw44002",fontsize=16,color="green",shape="box"];3389[label="vyw43002",fontsize=16,color="green",shape="box"];3390[label="vyw44002",fontsize=16,color="green",shape="box"];3391[label="vyw43002",fontsize=16,color="green",shape="box"];3392[label="vyw44002",fontsize=16,color="green",shape="box"];3393[label="vyw43002",fontsize=16,color="green",shape="box"];3394[label="vyw44002",fontsize=16,color="green",shape="box"];3395[label="vyw43002",fontsize=16,color="green",shape="box"];3396[label="vyw44002",fontsize=16,color="green",shape="box"];3397[label="vyw43002",fontsize=16,color="green",shape="box"];3398[label="vyw44002",fontsize=16,color="green",shape="box"];3399[label="vyw43002",fontsize=16,color="green",shape="box"];3400[label="vyw44002",fontsize=16,color="green",shape="box"];3401[label="vyw43002",fontsize=16,color="green",shape="box"];3402[label="vyw44002",fontsize=16,color="green",shape="box"];3403[label="vyw43002",fontsize=16,color="green",shape="box"];3404[label="vyw44002",fontsize=16,color="green",shape="box"];3405[label="vyw43002",fontsize=16,color="green",shape="box"];3406[label="vyw44002",fontsize=16,color="green",shape="box"];3407[label="vyw44001",fontsize=16,color="green",shape="box"];3408[label="vyw43001",fontsize=16,color="green",shape="box"];3409[label="vyw44001",fontsize=16,color="green",shape="box"];3410[label="vyw43001",fontsize=16,color="green",shape="box"];3411[label="vyw44001",fontsize=16,color="green",shape="box"];3412[label="vyw43001",fontsize=16,color="green",shape="box"];3413[label="vyw44001",fontsize=16,color="green",shape="box"];3414[label="vyw43001",fontsize=16,color="green",shape="box"];3415[label="vyw44001",fontsize=16,color="green",shape="box"];3416[label="vyw43001",fontsize=16,color="green",shape="box"];3417[label="vyw44001",fontsize=16,color="green",shape="box"];3418[label="vyw43001",fontsize=16,color="green",shape="box"];3419[label="vyw44001",fontsize=16,color="green",shape="box"];3420[label="vyw43001",fontsize=16,color="green",shape="box"];3421[label="vyw44001",fontsize=16,color="green",shape="box"];3422[label="vyw43001",fontsize=16,color="green",shape="box"];3423[label="vyw44001",fontsize=16,color="green",shape="box"];3424[label="vyw43001",fontsize=16,color="green",shape="box"];3425[label="vyw44001",fontsize=16,color="green",shape="box"];3426[label="vyw43001",fontsize=16,color="green",shape="box"];3427[label="vyw44001",fontsize=16,color="green",shape="box"];3428[label="vyw43001",fontsize=16,color="green",shape="box"];3429[label="vyw44001",fontsize=16,color="green",shape="box"];3430[label="vyw43001",fontsize=16,color="green",shape="box"];3431[label="vyw44001",fontsize=16,color="green",shape="box"];3432[label="vyw43001",fontsize=16,color="green",shape="box"];3433[label="vyw44001",fontsize=16,color="green",shape="box"];3434[label="vyw43001",fontsize=16,color="green",shape="box"];3435[label="Succ (Succ (primPlusNat vyw1230 vyw400000))",fontsize=16,color="green",shape="box"];3435 -> 3484[label="",style="dashed", color="green", weight=3]; 3436[label="Succ vyw400000",fontsize=16,color="green",shape="box"];3437[label="Integer vyw430000 * vyw44001",fontsize=16,color="burlywood",shape="box"];4296[label="vyw44001/Integer vyw440010",fontsize=10,color="white",style="solid",shape="box"];3437 -> 4296[label="",style="solid", color="burlywood", weight=9]; 4296 -> 3485[label="",style="solid", color="burlywood", weight=3]; 3438[label="vyw44000",fontsize=16,color="green",shape="box"];3439[label="vyw43001",fontsize=16,color="green",shape="box"];3440[label="vyw43000",fontsize=16,color="green",shape="box"];3441[label="vyw44001",fontsize=16,color="green",shape="box"];3442[label="vyw44000",fontsize=16,color="green",shape="box"];3443[label="vyw43001",fontsize=16,color="green",shape="box"];3445 -> 47[label="",style="dashed", color="red", weight=0]; 3445[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3445 -> 3486[label="",style="dashed", color="magenta", weight=3]; 3445 -> 3487[label="",style="dashed", color="magenta", weight=3]; 3444[label="compare2 vyw43000 vyw44000 vyw125",fontsize=16,color="burlywood",shape="triangle"];4297[label="vyw125/False",fontsize=10,color="white",style="solid",shape="box"];3444 -> 4297[label="",style="solid", color="burlywood", weight=9]; 4297 -> 3488[label="",style="solid", color="burlywood", weight=3]; 4298[label="vyw125/True",fontsize=10,color="white",style="solid",shape="box"];3444 -> 4298[label="",style="solid", color="burlywood", weight=9]; 4298 -> 3489[label="",style="solid", color="burlywood", weight=3]; 3447 -> 1886[label="",style="dashed", color="red", weight=0]; 3447[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3447 -> 3490[label="",style="dashed", color="magenta", weight=3]; 3447 -> 3491[label="",style="dashed", color="magenta", weight=3]; 3446[label="compare2 vyw43000 vyw44000 vyw126",fontsize=16,color="burlywood",shape="triangle"];4299[label="vyw126/False",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4299[label="",style="solid", color="burlywood", weight=9]; 4299 -> 3492[label="",style="solid", color="burlywood", weight=3]; 4300[label="vyw126/True",fontsize=10,color="white",style="solid",shape="box"];3446 -> 4300[label="",style="solid", color="burlywood", weight=9]; 4300 -> 3493[label="",style="solid", color="burlywood", weight=3]; 3449 -> 1897[label="",style="dashed", color="red", weight=0]; 3449[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3449 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3449 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3448[label="compare2 vyw43000 vyw44000 vyw127",fontsize=16,color="burlywood",shape="triangle"];4301[label="vyw127/False",fontsize=10,color="white",style="solid",shape="box"];3448 -> 4301[label="",style="solid", color="burlywood", weight=9]; 4301 -> 3496[label="",style="solid", color="burlywood", weight=3]; 4302[label="vyw127/True",fontsize=10,color="white",style="solid",shape="box"];3448 -> 4302[label="",style="solid", color="burlywood", weight=9]; 4302 -> 3497[label="",style="solid", color="burlywood", weight=3]; 3451 -> 1896[label="",style="dashed", color="red", weight=0]; 3451[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3451 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3451 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3450[label="compare2 vyw43000 vyw44000 vyw128",fontsize=16,color="burlywood",shape="triangle"];4303[label="vyw128/False",fontsize=10,color="white",style="solid",shape="box"];3450 -> 4303[label="",style="solid", color="burlywood", weight=9]; 4303 -> 3500[label="",style="solid", color="burlywood", weight=3]; 4304[label="vyw128/True",fontsize=10,color="white",style="solid",shape="box"];3450 -> 4304[label="",style="solid", color="burlywood", weight=9]; 4304 -> 3501[label="",style="solid", color="burlywood", weight=3]; 3453 -> 1894[label="",style="dashed", color="red", weight=0]; 3453[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3453 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3453 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3452[label="compare2 vyw43000 vyw44000 vyw129",fontsize=16,color="burlywood",shape="triangle"];4305[label="vyw129/False",fontsize=10,color="white",style="solid",shape="box"];3452 -> 4305[label="",style="solid", color="burlywood", weight=9]; 4305 -> 3504[label="",style="solid", color="burlywood", weight=3]; 4306[label="vyw129/True",fontsize=10,color="white",style="solid",shape="box"];3452 -> 4306[label="",style="solid", color="burlywood", weight=9]; 4306 -> 3505[label="",style="solid", color="burlywood", weight=3]; 3454 -> 1898[label="",style="dashed", color="red", weight=0]; 3454[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3454 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3507[label="",style="dashed", color="magenta", weight=3]; 3455[label="vyw44000",fontsize=16,color="green",shape="box"];3456[label="vyw43000",fontsize=16,color="green",shape="box"];3457[label="primCmpNat (Succ vyw430000) (Succ vyw440000)",fontsize=16,color="black",shape="box"];3457 -> 3508[label="",style="solid", color="black", weight=3]; 3458[label="primCmpNat (Succ vyw430000) Zero",fontsize=16,color="black",shape="box"];3458 -> 3509[label="",style="solid", color="black", weight=3]; 3459[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="black",shape="box"];3459 -> 3510[label="",style="solid", color="black", weight=3]; 3460[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3460 -> 3511[label="",style="solid", color="black", weight=3]; 3461 -> 2811[label="",style="dashed", color="red", weight=0]; 3461[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3461 -> 3512[label="",style="dashed", color="magenta", weight=3]; 3461 -> 3513[label="",style="dashed", color="magenta", weight=3]; 3462 -> 2811[label="",style="dashed", color="red", weight=0]; 3462[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3462 -> 3514[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3515[label="",style="dashed", color="magenta", weight=3]; 3463 -> 2811[label="",style="dashed", color="red", weight=0]; 3463[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3463 -> 3516[label="",style="dashed", color="magenta", weight=3]; 3463 -> 3517[label="",style="dashed", color="magenta", weight=3]; 3464 -> 2811[label="",style="dashed", color="red", weight=0]; 3464[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3464 -> 3518[label="",style="dashed", color="magenta", weight=3]; 3464 -> 3519[label="",style="dashed", color="magenta", weight=3]; 3466[label="vyw124",fontsize=16,color="green",shape="box"];3467[label="compare vyw43000 vyw44000",fontsize=16,color="blue",shape="box"];4307[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4307[label="",style="solid", color="blue", weight=9]; 4307 -> 3520[label="",style="solid", color="blue", weight=3]; 4308[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4308[label="",style="solid", color="blue", weight=9]; 4308 -> 3521[label="",style="solid", color="blue", weight=3]; 4309[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 3522[label="",style="solid", color="blue", weight=3]; 4310[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 3523[label="",style="solid", color="blue", weight=3]; 4311[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 3524[label="",style="solid", color="blue", weight=3]; 4312[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 3525[label="",style="solid", color="blue", weight=3]; 4313[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 3526[label="",style="solid", color="blue", weight=3]; 4314[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 3527[label="",style="solid", color="blue", weight=3]; 4315[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 3528[label="",style="solid", color="blue", weight=3]; 4316[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 3529[label="",style="solid", color="blue", weight=3]; 4317[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 3530[label="",style="solid", color="blue", weight=3]; 4318[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 3531[label="",style="solid", color="blue", weight=3]; 4319[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 3532[label="",style="solid", color="blue", weight=3]; 4320[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3467 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 3533[label="",style="solid", color="blue", weight=3]; 3465[label="primCompAux0 vyw133 vyw134",fontsize=16,color="burlywood",shape="triangle"];4321[label="vyw134/LT",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4321[label="",style="solid", color="burlywood", weight=9]; 4321 -> 3534[label="",style="solid", color="burlywood", weight=3]; 4322[label="vyw134/EQ",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4322[label="",style="solid", color="burlywood", weight=9]; 4322 -> 3535[label="",style="solid", color="burlywood", weight=3]; 4323[label="vyw134/GT",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4323[label="",style="solid", color="burlywood", weight=9]; 4323 -> 3536[label="",style="solid", color="burlywood", weight=3]; 3468 -> 2811[label="",style="dashed", color="red", weight=0]; 3468[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3468 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3469 -> 2811[label="",style="dashed", color="red", weight=0]; 3469[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3469 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3470 -> 2811[label="",style="dashed", color="red", weight=0]; 3470[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3470 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3471 -> 2811[label="",style="dashed", color="red", weight=0]; 3471[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3471 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3472[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3473[label="vyw44000",fontsize=16,color="green",shape="box"];3474 -> 3267[label="",style="dashed", color="red", weight=0]; 3474[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="magenta"];3474 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3474 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3475[label="EQ",fontsize=16,color="green",shape="box"];3476[label="GT",fontsize=16,color="green",shape="box"];3477[label="EQ",fontsize=16,color="green",shape="box"];3478[label="vyw44000",fontsize=16,color="green",shape="box"];3479[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3480[label="LT",fontsize=16,color="green",shape="box"];3481[label="EQ",fontsize=16,color="green",shape="box"];3482 -> 3267[label="",style="dashed", color="red", weight=0]; 3482[label="primCmpNat (Succ vyw440000) Zero",fontsize=16,color="magenta"];3482 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3482 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3483[label="EQ",fontsize=16,color="green",shape="box"];3484[label="primPlusNat vyw1230 vyw400000",fontsize=16,color="burlywood",shape="triangle"];4324[label="vyw1230/Succ vyw12300",fontsize=10,color="white",style="solid",shape="box"];3484 -> 4324[label="",style="solid", color="burlywood", weight=9]; 4324 -> 3549[label="",style="solid", color="burlywood", weight=3]; 4325[label="vyw1230/Zero",fontsize=10,color="white",style="solid",shape="box"];3484 -> 4325[label="",style="solid", color="burlywood", weight=9]; 4325 -> 3550[label="",style="solid", color="burlywood", weight=3]; 3485[label="Integer vyw430000 * Integer vyw440010",fontsize=16,color="black",shape="box"];3485 -> 3551[label="",style="solid", color="black", weight=3]; 3486[label="vyw44000",fontsize=16,color="green",shape="box"];3487[label="vyw43000",fontsize=16,color="green",shape="box"];3488[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3488 -> 3552[label="",style="solid", color="black", weight=3]; 3489[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3489 -> 3553[label="",style="solid", color="black", weight=3]; 3490[label="vyw44000",fontsize=16,color="green",shape="box"];3491[label="vyw43000",fontsize=16,color="green",shape="box"];3492[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3492 -> 3554[label="",style="solid", color="black", weight=3]; 3493[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3493 -> 3555[label="",style="solid", color="black", weight=3]; 3494[label="vyw44000",fontsize=16,color="green",shape="box"];3495[label="vyw43000",fontsize=16,color="green",shape="box"];3496[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3496 -> 3556[label="",style="solid", color="black", weight=3]; 3497[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3497 -> 3557[label="",style="solid", color="black", weight=3]; 3498[label="vyw44000",fontsize=16,color="green",shape="box"];3499[label="vyw43000",fontsize=16,color="green",shape="box"];3500[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3500 -> 3558[label="",style="solid", color="black", weight=3]; 3501[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3501 -> 3559[label="",style="solid", color="black", weight=3]; 3502[label="vyw44000",fontsize=16,color="green",shape="box"];3503[label="vyw43000",fontsize=16,color="green",shape="box"];3504[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3504 -> 3560[label="",style="solid", color="black", weight=3]; 3505[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3505 -> 3561[label="",style="solid", color="black", weight=3]; 3506[label="vyw44000",fontsize=16,color="green",shape="box"];3507[label="vyw43000",fontsize=16,color="green",shape="box"];3508 -> 3267[label="",style="dashed", color="red", weight=0]; 3508[label="primCmpNat vyw430000 vyw440000",fontsize=16,color="magenta"];3508 -> 3562[label="",style="dashed", color="magenta", weight=3]; 3508 -> 3563[label="",style="dashed", color="magenta", weight=3]; 3509[label="GT",fontsize=16,color="green",shape="box"];3510[label="LT",fontsize=16,color="green",shape="box"];3511[label="EQ",fontsize=16,color="green",shape="box"];3512 -> 2222[label="",style="dashed", color="red", weight=0]; 3512[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3512 -> 3564[label="",style="dashed", color="magenta", weight=3]; 3512 -> 3565[label="",style="dashed", color="magenta", weight=3]; 3513 -> 2222[label="",style="dashed", color="red", weight=0]; 3513[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3513 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3513 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3514 -> 2222[label="",style="dashed", color="red", weight=0]; 3514[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3514 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3515 -> 2222[label="",style="dashed", color="red", weight=0]; 3515[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3515 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3516 -> 2222[label="",style="dashed", color="red", weight=0]; 3516[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3516 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3517 -> 2222[label="",style="dashed", color="red", weight=0]; 3517[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3517 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3518 -> 2222[label="",style="dashed", color="red", weight=0]; 3518[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3518 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3519 -> 2222[label="",style="dashed", color="red", weight=0]; 3519[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3519 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3099[label="",style="dashed", color="red", weight=0]; 3520[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3520 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3101[label="",style="dashed", color="red", weight=0]; 3521[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3521 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3522 -> 2795[label="",style="dashed", color="red", weight=0]; 3522[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3522 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3105[label="",style="dashed", color="red", weight=0]; 3523[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3523 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3524 -> 2799[label="",style="dashed", color="red", weight=0]; 3524[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3524 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3525 -> 2801[label="",style="dashed", color="red", weight=0]; 3525[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3525 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3525 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3526 -> 2803[label="",style="dashed", color="red", weight=0]; 3526[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3526 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3527 -> 2805[label="",style="dashed", color="red", weight=0]; 3527[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3527 -> 3594[label="",style="dashed", color="magenta", weight=3]; 3527 -> 3595[label="",style="dashed", color="magenta", weight=3]; 3528 -> 2807[label="",style="dashed", color="red", weight=0]; 3528[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3528 -> 3596[label="",style="dashed", color="magenta", weight=3]; 3528 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3117[label="",style="dashed", color="red", weight=0]; 3529[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3529 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3529 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3530 -> 2809[label="",style="dashed", color="red", weight=0]; 3530[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3530 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3530 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3531 -> 2811[label="",style="dashed", color="red", weight=0]; 3531[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3531 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3531 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3532 -> 3123[label="",style="dashed", color="red", weight=0]; 3532[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3532 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3532 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3533 -> 3125[label="",style="dashed", color="red", weight=0]; 3533[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3533 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3533 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3534[label="primCompAux0 vyw133 LT",fontsize=16,color="black",shape="box"];3534 -> 3608[label="",style="solid", color="black", weight=3]; 3535[label="primCompAux0 vyw133 EQ",fontsize=16,color="black",shape="box"];3535 -> 3609[label="",style="solid", color="black", weight=3]; 3536[label="primCompAux0 vyw133 GT",fontsize=16,color="black",shape="box"];3536 -> 3610[label="",style="solid", color="black", weight=3]; 3537 -> 2222[label="",style="dashed", color="red", weight=0]; 3537[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3537 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3537 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3538 -> 2222[label="",style="dashed", color="red", weight=0]; 3538[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3538 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3538 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3539 -> 2222[label="",style="dashed", color="red", weight=0]; 3539[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3539 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3539 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3540 -> 2222[label="",style="dashed", color="red", weight=0]; 3540[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3540 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3541 -> 2222[label="",style="dashed", color="red", weight=0]; 3541[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3541 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3541 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3542 -> 2222[label="",style="dashed", color="red", weight=0]; 3542[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3542 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3543 -> 2222[label="",style="dashed", color="red", weight=0]; 3543[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3543 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3544 -> 2222[label="",style="dashed", color="red", weight=0]; 3544[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3544 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3545[label="Zero",fontsize=16,color="green",shape="box"];3546[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3547[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3548[label="Zero",fontsize=16,color="green",shape="box"];3549[label="primPlusNat (Succ vyw12300) vyw400000",fontsize=16,color="burlywood",shape="box"];4326[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];3549 -> 4326[label="",style="solid", color="burlywood", weight=9]; 4326 -> 3627[label="",style="solid", color="burlywood", weight=3]; 4327[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];3549 -> 4327[label="",style="solid", color="burlywood", weight=9]; 4327 -> 3628[label="",style="solid", color="burlywood", weight=3]; 3550[label="primPlusNat Zero vyw400000",fontsize=16,color="burlywood",shape="box"];4328[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];3550 -> 4328[label="",style="solid", color="burlywood", weight=9]; 4328 -> 3629[label="",style="solid", color="burlywood", weight=3]; 4329[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];3550 -> 4329[label="",style="solid", color="burlywood", weight=9]; 4329 -> 3630[label="",style="solid", color="burlywood", weight=3]; 3551[label="Integer (primMulInt vyw430000 vyw440010)",fontsize=16,color="green",shape="box"];3551 -> 3631[label="",style="dashed", color="green", weight=3]; 3552 -> 3632[label="",style="dashed", color="red", weight=0]; 3552[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3552 -> 3633[label="",style="dashed", color="magenta", weight=3]; 3553[label="EQ",fontsize=16,color="green",shape="box"];3554 -> 3634[label="",style="dashed", color="red", weight=0]; 3554[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3554 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3555[label="EQ",fontsize=16,color="green",shape="box"];3556 -> 3636[label="",style="dashed", color="red", weight=0]; 3556[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3556 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3557[label="EQ",fontsize=16,color="green",shape="box"];3558 -> 3638[label="",style="dashed", color="red", weight=0]; 3558[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3558 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3559[label="EQ",fontsize=16,color="green",shape="box"];3560 -> 3640[label="",style="dashed", color="red", weight=0]; 3560[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3560 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3561[label="EQ",fontsize=16,color="green",shape="box"];3562[label="vyw430000",fontsize=16,color="green",shape="box"];3563[label="vyw440000",fontsize=16,color="green",shape="box"];3564[label="vyw43000",fontsize=16,color="green",shape="box"];3565[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3566[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3567[label="vyw44000",fontsize=16,color="green",shape="box"];3568[label="vyw43000",fontsize=16,color="green",shape="box"];3569[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3570[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3571[label="vyw44000",fontsize=16,color="green",shape="box"];3572[label="vyw43000",fontsize=16,color="green",shape="box"];3573[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3574[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3575[label="vyw44000",fontsize=16,color="green",shape="box"];3576[label="vyw43000",fontsize=16,color="green",shape="box"];3577[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3578[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3579[label="vyw44000",fontsize=16,color="green",shape="box"];3580[label="vyw44000",fontsize=16,color="green",shape="box"];3581[label="vyw43000",fontsize=16,color="green",shape="box"];3582[label="vyw44000",fontsize=16,color="green",shape="box"];3583[label="vyw43000",fontsize=16,color="green",shape="box"];3584[label="vyw43000",fontsize=16,color="green",shape="box"];3585[label="vyw44000",fontsize=16,color="green",shape="box"];3586[label="vyw44000",fontsize=16,color="green",shape="box"];3587[label="vyw43000",fontsize=16,color="green",shape="box"];3588[label="vyw43000",fontsize=16,color="green",shape="box"];3589[label="vyw44000",fontsize=16,color="green",shape="box"];3590[label="vyw43000",fontsize=16,color="green",shape="box"];3591[label="vyw44000",fontsize=16,color="green",shape="box"];3592[label="vyw43000",fontsize=16,color="green",shape="box"];3593[label="vyw44000",fontsize=16,color="green",shape="box"];3594[label="vyw43000",fontsize=16,color="green",shape="box"];3595[label="vyw44000",fontsize=16,color="green",shape="box"];3596[label="vyw43000",fontsize=16,color="green",shape="box"];3597[label="vyw44000",fontsize=16,color="green",shape="box"];3598[label="vyw44000",fontsize=16,color="green",shape="box"];3599[label="vyw43000",fontsize=16,color="green",shape="box"];3600[label="vyw43000",fontsize=16,color="green",shape="box"];3601[label="vyw44000",fontsize=16,color="green",shape="box"];3602[label="vyw43000",fontsize=16,color="green",shape="box"];3603[label="vyw44000",fontsize=16,color="green",shape="box"];3604[label="vyw44000",fontsize=16,color="green",shape="box"];3605[label="vyw43000",fontsize=16,color="green",shape="box"];3606[label="vyw44000",fontsize=16,color="green",shape="box"];3607[label="vyw43000",fontsize=16,color="green",shape="box"];3608[label="LT",fontsize=16,color="green",shape="box"];3609[label="vyw133",fontsize=16,color="green",shape="box"];3610[label="GT",fontsize=16,color="green",shape="box"];3611[label="vyw43000",fontsize=16,color="green",shape="box"];3612[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3613[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3614[label="vyw44000",fontsize=16,color="green",shape="box"];3615[label="vyw43000",fontsize=16,color="green",shape="box"];3616[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3617[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3618[label="vyw44000",fontsize=16,color="green",shape="box"];3619[label="vyw43000",fontsize=16,color="green",shape="box"];3620[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3621[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3622[label="vyw44000",fontsize=16,color="green",shape="box"];3623[label="vyw43000",fontsize=16,color="green",shape="box"];3624[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3625[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3626[label="vyw44000",fontsize=16,color="green",shape="box"];3627[label="primPlusNat (Succ vyw12300) (Succ vyw4000000)",fontsize=16,color="black",shape="box"];3627 -> 3642[label="",style="solid", color="black", weight=3]; 3628[label="primPlusNat (Succ vyw12300) Zero",fontsize=16,color="black",shape="box"];3628 -> 3643[label="",style="solid", color="black", weight=3]; 3629[label="primPlusNat Zero (Succ vyw4000000)",fontsize=16,color="black",shape="box"];3629 -> 3644[label="",style="solid", color="black", weight=3]; 3630[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3630 -> 3645[label="",style="solid", color="black", weight=3]; 3631 -> 2387[label="",style="dashed", color="red", weight=0]; 3631[label="primMulInt vyw430000 vyw440010",fontsize=16,color="magenta"];3631 -> 3646[label="",style="dashed", color="magenta", weight=3]; 3631 -> 3647[label="",style="dashed", color="magenta", weight=3]; 3633 -> 2548[label="",style="dashed", color="red", weight=0]; 3633[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3633 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3633 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3632[label="compare1 vyw43000 vyw44000 vyw135",fontsize=16,color="burlywood",shape="triangle"];4330[label="vyw135/False",fontsize=10,color="white",style="solid",shape="box"];3632 -> 4330[label="",style="solid", color="burlywood", weight=9]; 4330 -> 3650[label="",style="solid", color="burlywood", weight=3]; 4331[label="vyw135/True",fontsize=10,color="white",style="solid",shape="box"];3632 -> 4331[label="",style="solid", color="burlywood", weight=9]; 4331 -> 3651[label="",style="solid", color="burlywood", weight=3]; 3635 -> 2549[label="",style="dashed", color="red", weight=0]; 3635[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3635 -> 3652[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3653[label="",style="dashed", color="magenta", weight=3]; 3634[label="compare1 vyw43000 vyw44000 vyw136",fontsize=16,color="burlywood",shape="triangle"];4332[label="vyw136/False",fontsize=10,color="white",style="solid",shape="box"];3634 -> 4332[label="",style="solid", color="burlywood", weight=9]; 4332 -> 3654[label="",style="solid", color="burlywood", weight=3]; 4333[label="vyw136/True",fontsize=10,color="white",style="solid",shape="box"];3634 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 3655[label="",style="solid", color="burlywood", weight=3]; 3637 -> 2551[label="",style="dashed", color="red", weight=0]; 3637[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3637 -> 3656[label="",style="dashed", color="magenta", weight=3]; 3637 -> 3657[label="",style="dashed", color="magenta", weight=3]; 3636[label="compare1 vyw43000 vyw44000 vyw137",fontsize=16,color="burlywood",shape="triangle"];4334[label="vyw137/False",fontsize=10,color="white",style="solid",shape="box"];3636 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 3658[label="",style="solid", color="burlywood", weight=3]; 4335[label="vyw137/True",fontsize=10,color="white",style="solid",shape="box"];3636 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 3659[label="",style="solid", color="burlywood", weight=3]; 3639 -> 2557[label="",style="dashed", color="red", weight=0]; 3639[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3639 -> 3660[label="",style="dashed", color="magenta", weight=3]; 3639 -> 3661[label="",style="dashed", color="magenta", weight=3]; 3638[label="compare1 vyw43000 vyw44000 vyw138",fontsize=16,color="burlywood",shape="triangle"];4336[label="vyw138/False",fontsize=10,color="white",style="solid",shape="box"];3638 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 3662[label="",style="solid", color="burlywood", weight=3]; 4337[label="vyw138/True",fontsize=10,color="white",style="solid",shape="box"];3638 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 3663[label="",style="solid", color="burlywood", weight=3]; 3641 -> 2560[label="",style="dashed", color="red", weight=0]; 3641[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3641 -> 3664[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3665[label="",style="dashed", color="magenta", weight=3]; 3640[label="compare1 vyw43000 vyw44000 vyw139",fontsize=16,color="burlywood",shape="triangle"];4338[label="vyw139/False",fontsize=10,color="white",style="solid",shape="box"];3640 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 3666[label="",style="solid", color="burlywood", weight=3]; 4339[label="vyw139/True",fontsize=10,color="white",style="solid",shape="box"];3640 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 3667[label="",style="solid", color="burlywood", weight=3]; 3642[label="Succ (Succ (primPlusNat vyw12300 vyw4000000))",fontsize=16,color="green",shape="box"];3642 -> 3668[label="",style="dashed", color="green", weight=3]; 3643[label="Succ vyw12300",fontsize=16,color="green",shape="box"];3644[label="Succ vyw4000000",fontsize=16,color="green",shape="box"];3645[label="Zero",fontsize=16,color="green",shape="box"];3646[label="vyw430000",fontsize=16,color="green",shape="box"];3647[label="vyw440010",fontsize=16,color="green",shape="box"];3648[label="vyw43000",fontsize=16,color="green",shape="box"];3649[label="vyw44000",fontsize=16,color="green",shape="box"];3650[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3650 -> 3669[label="",style="solid", color="black", weight=3]; 3651[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3651 -> 3670[label="",style="solid", color="black", weight=3]; 3652[label="vyw43000",fontsize=16,color="green",shape="box"];3653[label="vyw44000",fontsize=16,color="green",shape="box"];3654[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3654 -> 3671[label="",style="solid", color="black", weight=3]; 3655[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3655 -> 3672[label="",style="solid", color="black", weight=3]; 3656[label="vyw43000",fontsize=16,color="green",shape="box"];3657[label="vyw44000",fontsize=16,color="green",shape="box"];3658[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3658 -> 3673[label="",style="solid", color="black", weight=3]; 3659[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3659 -> 3674[label="",style="solid", color="black", weight=3]; 3660[label="vyw43000",fontsize=16,color="green",shape="box"];3661[label="vyw44000",fontsize=16,color="green",shape="box"];3662[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3662 -> 3675[label="",style="solid", color="black", weight=3]; 3663[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3663 -> 3676[label="",style="solid", color="black", weight=3]; 3664[label="vyw43000",fontsize=16,color="green",shape="box"];3665[label="vyw44000",fontsize=16,color="green",shape="box"];3666[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3666 -> 3677[label="",style="solid", color="black", weight=3]; 3667[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3667 -> 3678[label="",style="solid", color="black", weight=3]; 3668 -> 3484[label="",style="dashed", color="red", weight=0]; 3668[label="primPlusNat vyw12300 vyw4000000",fontsize=16,color="magenta"];3668 -> 3679[label="",style="dashed", color="magenta", weight=3]; 3668 -> 3680[label="",style="dashed", color="magenta", weight=3]; 3669[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3669 -> 3681[label="",style="solid", color="black", weight=3]; 3670[label="LT",fontsize=16,color="green",shape="box"];3671[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3671 -> 3682[label="",style="solid", color="black", weight=3]; 3672[label="LT",fontsize=16,color="green",shape="box"];3673[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3673 -> 3683[label="",style="solid", color="black", weight=3]; 3674[label="LT",fontsize=16,color="green",shape="box"];3675[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3675 -> 3684[label="",style="solid", color="black", weight=3]; 3676[label="LT",fontsize=16,color="green",shape="box"];3677[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3677 -> 3685[label="",style="solid", color="black", weight=3]; 3678[label="LT",fontsize=16,color="green",shape="box"];3679[label="vyw4000000",fontsize=16,color="green",shape="box"];3680[label="vyw12300",fontsize=16,color="green",shape="box"];3681[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3681 -> 3686[label="",style="solid", color="black", weight=3]; 3682[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3682 -> 3687[label="",style="solid", color="black", weight=3]; 3683[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3683 -> 3688[label="",style="solid", color="black", weight=3]; 3684[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3684 -> 3689[label="",style="solid", color="black", weight=3]; 3685[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3685 -> 3690[label="",style="solid", color="black", weight=3]; 3686[label="GT",fontsize=16,color="green",shape="box"];3687[label="GT",fontsize=16,color="green",shape="box"];3688[label="GT",fontsize=16,color="green",shape="box"];3689[label="GT",fontsize=16,color="green",shape="box"];3690[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_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(app(app(ty_@3, bbb), bbc), bbd)), bbg) -> new_ltEs2(vyw43002, vyw44002, bbb, bbc, bbd) new_ltEs3(Left(vyw43000), Left(vyw44000), app(ty_Maybe, bbh), bca) -> new_ltEs(vyw43000, vyw44000, bbh) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(ty_[], dh)) -> new_ltEs1(vyw43001, vyw44001, dh) new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(ty_[], bdf)) -> new_ltEs1(vyw43000, vyw44000, bdf) new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, bch), bda)), bca), bbg) -> new_ltEs3(vyw43000, vyw44000, bch, bda) new_compare0(vyw43000, vyw44000, ca) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) new_lt3(vyw43000, vyw44000, db, dc) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, ca)), cb), bbg) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(app(ty_@2, bag), bah)) -> new_ltEs0(vyw43002, vyw44002, bag, bah) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(app(ty_@2, df), dg)) -> new_ltEs0(vyw43001, vyw44001, df, dg) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], gf), gb, gc) -> new_lt1(vyw43000, vyw44000, gf) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_@2, gd), ge), gb, gc) -> new_lt0(vyw43000, vyw44000, gd, ge) new_compare22(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, bef), beg)) -> new_ltEs0(vyw4300, vyw4400, bef, beg) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(app(ty_@2, hf), hg), gc) -> new_lt0(vyw43001, vyw44001, hf, hg) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(ty_Maybe, he), gc) -> new_lt(vyw43001, vyw44001, he) new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_Either, bg), bh)) -> new_ltEs3(vyw43000, vyw44000, bg, bh) new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, bg), bh)), bbg) -> new_ltEs3(vyw43000, vyw44000, bg, bh) new_ltEs(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs2(vyw43000, vyw44000, bd, be, bf) new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, bbh)), bca), bbg) -> new_ltEs(vyw43000, vyw44000, bbh) new_compare22(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), bbg) -> new_primCompAux(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, ef), ef) new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(app(ty_Either, beb), bec)), bbg) -> new_ltEs3(vyw43000, vyw44000, beb, bec) new_primCompAux(vyw43000, vyw44000, vyw124, app(ty_Maybe, eg)) -> new_compare0(vyw43000, vyw44000, eg) new_ltEs3(Left(vyw43000), Left(vyw44000), app(ty_[], bcd), bca) -> new_ltEs1(vyw43000, vyw44000, bcd) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(ty_Maybe, de)) -> new_ltEs(vyw43001, vyw44001, de) new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, ba), bb)), bbg) -> new_ltEs0(vyw43000, vyw44000, ba, bb) new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], bcd)), bca), bbg) -> new_ltEs1(vyw43000, vyw44000, bcd) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(app(ty_Either, bad), bae)), gc), bbg) -> new_lt3(vyw43001, vyw44001, bad, bae) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(app(app(ty_@3, ea), eb), ec)), bbg) -> new_ltEs2(vyw43001, vyw44001, ea, eb, ec) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, cc), cd), cb) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) new_ltEs3(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bcb), bcc), bca) -> new_ltEs0(vyw43000, vyw44000, bcb, bcc) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, cf), cg), da), cb) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(ty_[], bba)), bbg) -> new_ltEs1(vyw43002, vyw44002, bba) new_compare2(vyw43000, vyw44000, False, ca) -> new_ltEs(vyw43000, vyw44000, ca) new_lt(vyw43000, vyw44000, ca) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) new_compare22(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs3(vyw4300, vyw4400, bfd, bfe) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(ty_Maybe, he)), gc), bbg) -> new_lt(vyw43001, vyw44001, he) new_compare21(vyw43000, vyw44000, False, cf, cg, da) -> new_ltEs2(vyw43000, vyw44000, cf, cg, da) new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, bcb), bcc)), bca), bbg) -> new_ltEs0(vyw43000, vyw44000, bcb, bcc) new_primCompAux(vyw43000, vyw44000, vyw124, app(app(ty_Either, fg), fh)) -> new_compare5(vyw43000, vyw44000, fg, fh) new_ltEs3(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, bce), bcf), bcg), bca) -> new_ltEs2(vyw43000, vyw44000, bce, bcf, bcg) new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare(vyw43001, vyw44001, ef) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(app(ty_Either, bbe), bbf)) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf) new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf)), bbg) -> new_ltEs2(vyw43000, vyw44000, bd, be, bf) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, ef), ef) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, ga)), gb), gc), bbg) -> new_lt(vyw43000, vyw44000, ga) new_compare20(vyw43000, vyw44000, False, cc, cd) -> new_ltEs0(vyw43000, vyw44000, cc, cd) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_lt2(vyw43000, vyw44000, gg, gh, ha) new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, bce), bcf), bcg)), bca), bbg) -> new_ltEs2(vyw43000, vyw44000, bce, bcf, bcg) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, baa), bab), bac)), gc), bbg) -> new_lt2(vyw43001, vyw44001, baa, bab, bac) new_compare1(vyw43000, vyw44000, cc, cd) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, db), dc), cb) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(ty_[], bba)) -> new_ltEs1(vyw43002, vyw44002, bba) new_ltEs3(Left(vyw43000), Left(vyw44000), app(app(ty_Either, bch), bda), bca) -> new_ltEs3(vyw43000, vyw44000, bch, bda) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], ce)), cb), bbg) -> new_compare(vyw43000, vyw44000, ce) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(app(ty_@2, df), dg)), bbg) -> new_ltEs0(vyw43001, vyw44001, df, dg) new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(ty_Maybe, bdc)), bbg) -> new_ltEs(vyw43000, vyw44000, bdc) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(ty_[], hh)), gc), bbg) -> new_lt1(vyw43001, vyw44001, hh) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, hb), hc), gb, gc) -> new_lt3(vyw43000, vyw44000, hb, hc) new_primCompAux(vyw43000, vyw44000, vyw124, app(app(app(ty_@3, fc), fd), ff)) -> new_compare4(vyw43000, vyw44000, fc, fd, ff) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, ca), cb) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(ty_[], hh), gc) -> new_lt1(vyw43001, vyw44001, hh) new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(app(ty_@2, bdd), bde)), bbg) -> new_ltEs0(vyw43000, vyw44000, bdd, bde) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(app(ty_@2, hf), hg)), gc), bbg) -> new_lt0(vyw43001, vyw44001, hf, hg) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(ty_[], dh)), bbg) -> new_ltEs1(vyw43001, vyw44001, dh) new_compare22(Right(vyw4300), Right(vyw4400), False, bed, app(ty_[], beh)) -> new_ltEs1(vyw4300, vyw4400, beh) new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(app(ty_@2, bdd), bde)) -> new_ltEs0(vyw43000, vyw44000, bdd, bde) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), cb), bbg) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(ty_Maybe, baf)) -> new_ltEs(vyw43002, vyw44002, baf) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(vyw43001, vyw44001, ea, eb, ec) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, cc), cd)), cb), bbg) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(ty_[], bdf)), bbg) -> new_ltEs1(vyw43000, vyw44000, bdf) new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, h)), bbg) -> new_ltEs(vyw43000, vyw44000, h) new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(app(ty_Either, beb), bec)) -> new_ltEs3(vyw43000, vyw44000, beb, bec) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(ty_Maybe, baf)), bbg) -> new_ltEs(vyw43002, vyw44002, baf) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(ty_Maybe, de)), bbg) -> new_ltEs(vyw43001, vyw44001, de) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(app(ty_Either, bbe), bbf)), bbg) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf) new_compare5(vyw43000, vyw44000, db, dc) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) new_primCompAux(vyw43000, vyw44000, vyw124, app(ty_[], fb)) -> new_compare(vyw43000, vyw44000, fb) new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, ef), ef) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, db), dc)), cb), bbg) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(app(ty_Either, ed), ee)) -> new_ltEs3(vyw43001, vyw44001, ed, ee) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(vyw43002, vyw44002, bbb, bbc, bbd) new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], bc)), bbg) -> new_ltEs1(vyw43000, vyw44000, bc) new_compare22(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), bbg) -> new_compare(vyw43001, vyw44001, ef) new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(app(ty_Either, ed), ee)), bbg) -> new_ltEs3(vyw43001, vyw44001, ed, ee) new_compare4(vyw43000, vyw44000, cf, cg, da) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], gf)), gb), gc), bbg) -> new_lt1(vyw43000, vyw44000, gf) new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_@2, ba), bb)) -> new_ltEs0(vyw43000, vyw44000, ba, bb) new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(app(app(ty_@3, bdg), bdh), bea)), bbg) -> new_ltEs2(vyw43000, vyw44000, bdg, bdh, bea) new_ltEs(Just(vyw43000), Just(vyw44000), app(ty_Maybe, h)) -> new_ltEs(vyw43000, vyw44000, h) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare(vyw43001, vyw44001, ef) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(app(ty_@2, bag), bah)), bbg) -> new_ltEs0(vyw43002, vyw44002, bag, bah) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, ga), gb, gc) -> new_lt(vyw43000, vyw44000, ga) new_lt2(vyw43000, vyw44000, cf, cg, da) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_lt2(vyw43001, vyw44001, baa, bab, bac) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, hb), hc)), gb), gc), bbg) -> new_lt3(vyw43000, vyw44000, hb, hc) new_compare22(Right(vyw4300), Right(vyw4400), False, bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs2(vyw4300, vyw4400, bfa, bfb, bfc) new_ltEs(Just(vyw43000), Just(vyw44000), app(ty_[], bc)) -> new_ltEs1(vyw43000, vyw44000, bc) new_compare22(Right(vyw4300), Right(vyw4400), False, bed, app(ty_Maybe, bee)) -> new_ltEs(vyw4300, vyw4400, bee) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, gg), gh), ha)), gb), gc), bbg) -> new_lt2(vyw43000, vyw44000, gg, gh, ha) new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(app(ty_Either, bad), bae), gc) -> new_lt3(vyw43001, vyw44001, bad, bae) new_lt1(vyw43000, vyw44000, ce) -> new_compare(vyw43000, vyw44000, ce) new_primCompAux(vyw43000, vyw44000, vyw124, app(app(ty_@2, eh), fa)) -> new_compare1(vyw43000, vyw44000, eh, fa) new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(ty_Maybe, bdc)) -> new_ltEs(vyw43000, vyw44000, bdc) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], ce), cb) -> new_compare(vyw43000, vyw44000, ce) new_lt0(vyw43000, vyw44000, cc, cd) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs2(vyw43000, vyw44000, bdg, bdh, bea) new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, gd), ge)), gb), gc), bbg) -> new_lt0(vyw43000, vyw44000, gd, ge) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_lt20(vyw43001, vyw44001, ty_Float) -> new_lt15(vyw43001, vyw44001) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_pePe(True, vyw122) -> True new_esEs18(vyw43000, vyw44000, app(app(ty_Either, db), dc)) -> new_esEs7(vyw43000, vyw44000, db, dc) new_ltEs6(GT, GT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs5(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_lt20(vyw43001, vyw44001, ty_Ordering) -> new_lt7(vyw43001, vyw44001) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs7(Right(vyw300), Right(vyw4000), cfd, app(ty_Ratio, cgb)) -> new_esEs16(vyw300, vyw4000, cgb) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_compare210(vyw43000, vyw44000, True, cf, cg, da) -> EQ new_compare113(vyw113, vyw114, False, ddh, dea) -> GT new_esEs18(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_ltEs6(EQ, GT) -> True new_esEs24(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs20(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bgb), bgc), bgd)) -> new_esEs6(vyw300, vyw4000, bgb, bgc, bgd) new_lt19(vyw43000, vyw44000, app(app(ty_Either, hb), hc)) -> new_lt18(vyw43000, vyw44000, hb, hc) new_esEs24(vyw300, vyw4000, app(ty_Ratio, dcc)) -> new_esEs16(vyw300, vyw4000, dcc) new_lt19(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, hb), hc)) -> new_esEs7(vyw43000, vyw44000, hb, hc) new_ltEs19(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) new_lt6(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Integer) -> new_lt12(vyw43001, vyw44001) new_compare3([], [], ef) -> EQ new_esEs7(Left(vyw300), Left(vyw4000), ty_Char, cea) -> new_esEs14(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_Ratio, bff)) -> new_esEs16(vyw43000, vyw44000, bff) new_compare26(vyw43000, vyw44000, True) -> EQ new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs7(Right(vyw300), Right(vyw4000), cfd, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs6(vyw300, vyw4000, cfg, cfh, cga) new_esEs20(vyw300, vyw4000, app(app(ty_@2, cbg), cbh)) -> new_esEs5(vyw300, vyw4000, cbg, cbh) new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_Float) -> new_esEs13(vyw300, vyw4000) new_lt20(vyw43001, vyw44001, app(ty_[], hh)) -> new_lt13(vyw43001, vyw44001, hh) new_ltEs19(vyw43002, vyw44002, ty_Bool) -> new_ltEs14(vyw43002, vyw44002) new_lt9(vyw43000, vyw44000, cc, cd) -> new_esEs9(new_compare9(vyw43000, vyw44000, cc, cd), LT) new_esEs19(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs19(vyw301, vyw4001, app(app(ty_@2, cae), caf)) -> new_esEs5(vyw301, vyw4001, cae, caf) new_compare19(vyw43000, vyw44000) -> new_compare26(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs22(vyw302, vyw4002, app(ty_Maybe, chb)) -> new_esEs4(vyw302, vyw4002, chb) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs21(vyw4300, vyw4400, app(ty_[], beh)) -> new_ltEs13(vyw4300, vyw4400, beh) new_compare16(vyw43000, vyw44000, db, dc) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) new_compare29(vyw43000, vyw44000, app(ty_Ratio, cdf)) -> new_compare7(vyw43000, vyw44000, cdf) new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs22(vyw302, vyw4002, ty_Bool) -> new_esEs17(vyw302, vyw4002) new_not(True) -> False new_ltEs19(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_primCompAux00(vyw133, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, ccf), ccg), cch)) -> new_esEs6(vyw300, vyw4000, ccf, ccg, cch) new_lt19(vyw43000, vyw44000, app(ty_[], gf)) -> new_lt13(vyw43000, vyw44000, gf) new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Bool) -> new_lt14(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs17(vyw43001, vyw44001) new_lt15(vyw43000, vyw44000) -> new_esEs9(new_compare30(vyw43000, vyw44000), LT) new_ltEs5(vyw43001, vyw44001, ty_Ordering) -> new_ltEs6(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, bgf), bgg)) -> new_esEs5(vyw300, vyw4000, bgf, bgg) new_esEs20(vyw300, vyw4000, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs6(vyw300, vyw4000, cbc, cbd, cbe) new_esEs20(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs7(vyw300, vyw4000, cca, ccb) new_ltEs6(LT, GT) -> True new_lt6(vyw43000, vyw44000, app(ty_Ratio, bff)) -> new_lt4(vyw43000, vyw44000, bff) new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_compare27(vyw43000, vyw44000, True, ca) -> EQ new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, fc), fd), ff)) -> new_compare28(vyw43000, vyw44000, fc, fd, ff) new_esEs19(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs7(Nothing, Just(vyw44000), cdg) -> True new_esEs19(vyw301, vyw4001, app(ty_Ratio, cad)) -> new_esEs16(vyw301, vyw4001, cad) new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs10(vyw43001, vyw44001) new_compare10(vyw43000, vyw44000, True, cc, cd) -> LT new_ltEs5(vyw43001, vyw44001, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs17(vyw43001, vyw44001, ea, eb, ec) new_ltEs5(vyw43001, vyw44001, app(app(ty_Either, ed), ee)) -> new_ltEs18(vyw43001, vyw44001, ed, ee) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_lt19(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, dch)) -> new_ltEs8(vyw4300, vyw4400, dch) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_esEs18(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_primCompAux00(vyw133, GT) -> GT new_lt20(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) new_compare110(vyw43000, vyw44000, True) -> LT new_compare12(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_esEs23(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, eh), fa)) -> new_compare9(vyw43000, vyw44000, eh, fa) new_lt19(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Ratio, ceg), cea) -> new_esEs16(vyw300, vyw4000, ceg) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs5(vyw43001, vyw44001, ty_Int) -> new_ltEs16(vyw43001, vyw44001) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, dd), cb)) -> new_ltEs4(vyw4300, vyw4400, dd, cb) new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_lt18(vyw43000, vyw44000, db, dc) -> new_esEs9(new_compare16(vyw43000, vyw44000, db, dc), LT) new_esEs20(vyw300, vyw4000, app(ty_Ratio, cbf)) -> new_esEs16(vyw300, vyw4000, cbf) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_lt20(vyw43001, vyw44001, app(ty_Maybe, he)) -> new_lt8(vyw43001, vyw44001, he) new_lt19(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_compare3(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux0(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, ef), ef) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs8(vyw43001, vyw44001) new_lt19(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs22(vyw302, vyw4002, ty_Integer) -> new_esEs8(vyw302, vyw4002) new_esEs7(Left(vyw300), Left(vyw4000), ty_Bool, cea) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, app(app(ty_Either, beb), bec)) -> new_ltEs18(vyw43000, vyw44000, beb, bec) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_esEs7(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, ced), cee), cef), cea) -> new_esEs6(vyw300, vyw4000, ced, cee, cef) new_ltEs19(vyw43002, vyw44002, ty_@0) -> new_ltEs10(vyw43002, vyw44002) new_esEs21(vyw300, vyw4000, app(app(ty_@2, cdb), cdc)) -> new_esEs5(vyw300, vyw4000, cdb, cdc) new_esEs19(vyw301, vyw4001, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(vyw301, vyw4001, caa, cab, cac) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, cdg)) -> new_ltEs7(vyw4300, vyw4400, cdg) new_ltEs17(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, gc) -> new_pePe(new_lt19(vyw43000, vyw44000, hd), new_asAs(new_esEs28(vyw43000, vyw44000, hd), new_pePe(new_lt20(vyw43001, vyw44001, gb), new_asAs(new_esEs27(vyw43001, vyw44001, gb), new_ltEs19(vyw43002, vyw44002, gc))))) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], bc)) -> new_ltEs13(vyw43000, vyw44000, bc) new_ltEs19(vyw43002, vyw44002, app(ty_[], bba)) -> new_ltEs13(vyw43002, vyw44002, bba) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, ba), bb)) -> new_ltEs4(vyw43000, vyw44000, ba, bb) new_lt19(vyw43000, vyw44000, app(ty_Maybe, ga)) -> new_lt8(vyw43000, vyw44000, ga) new_ltEs19(vyw43002, vyw44002, app(app(ty_@2, bag), bah)) -> new_ltEs4(vyw43002, vyw44002, bag, bah) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare30(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Ordering, bca) -> new_ltEs6(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_Either, bch), bda), bca) -> new_ltEs18(vyw43000, vyw44000, bch, bda) new_compare18(vyw43000, vyw44000, ca) -> new_compare27(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) new_compare3([], :(vyw44000, vyw44001), ef) -> LT new_lt19(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_pePe(False, vyw122) -> vyw122 new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Maybe, bbh), bca) -> new_ltEs7(vyw43000, vyw44000, bbh) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_compare25(vyw430, vyw440, True, bed, bbg) -> EQ new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare12(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Int, bca) -> new_ltEs16(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, cc, cd) -> new_compare10(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, cc, cd), cc, cd) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, bge)) -> new_esEs16(vyw300, vyw4000, bge) new_ltEs6(LT, LT) -> True new_lt6(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, app(ty_Ratio, cda)) -> new_esEs16(vyw300, vyw4000, cda) new_compare23(vyw43000, vyw44000, True, cc, cd) -> EQ new_ltEs5(vyw43001, vyw44001, app(ty_Maybe, de)) -> new_ltEs7(vyw43001, vyw44001, de) new_compare17(vyw43000, vyw44000, True) -> LT new_compare11(vyw106, vyw107, False, bhc, bhd) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw301, vyw4001, app(ty_Maybe, dad)) -> new_esEs4(vyw301, vyw4001, dad) new_ltEs5(vyw43001, vyw44001, app(ty_[], dh)) -> new_ltEs13(vyw43001, vyw44001, dh) new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_[], bcd), bca) -> new_ltEs13(vyw43000, vyw44000, bcd) new_esEs7(Left(vyw300), Left(vyw4000), ty_Ordering, cea) -> new_esEs9(vyw300, vyw4000) new_lt6(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_ltEs14(True, True) -> True new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_esEs23(vyw301, vyw4001, app(app(ty_Either, dbd), dbe)) -> new_esEs7(vyw301, vyw4001, dbd, dbe) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, app(ty_Maybe, bhg)) -> new_esEs4(vyw301, vyw4001, bhg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, hd), gb), gc)) -> new_ltEs17(vyw4300, vyw4400, hd, gb, gc) new_compare13(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Double, cea) -> new_esEs12(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cdh)) -> new_ltEs8(vyw43000, vyw44000, cdh) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_Either, cfb), cfc), cea) -> new_esEs7(vyw300, vyw4000, cfb, cfc) new_ltEs5(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_esEs15([], [], ccc) -> True new_esEs24(vyw300, vyw4000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs6(vyw300, vyw4000, dbh, dca, dcb) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs13(vyw300, vyw4000) new_ltEs6(LT, EQ) -> True new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare13(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(app(ty_@2, cc), cd)) -> new_lt9(vyw43000, vyw44000, cc, cd) new_esEs7(Left(vyw300), Left(vyw4000), ty_Integer, cea) -> new_esEs8(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, bfd), bfe)) -> new_ltEs18(vyw4300, vyw4400, bfd, bfe) new_primPlusNat1(Succ(vyw1230), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw1230, vyw400000))) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare30(vyw4300, vyw4400), GT)) new_ltEs5(vyw43001, vyw44001, ty_Bool) -> new_ltEs14(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Float, bca) -> new_ltEs15(vyw43000, vyw44000) new_primPlusNat0(Succ(vyw12300), Zero) -> Succ(vyw12300) new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_ltEs4(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, cb) -> new_pePe(new_lt6(vyw43000, vyw44000, dd), new_asAs(new_esEs18(vyw43000, vyw44000, dd), new_ltEs5(vyw43001, vyw44001, cb))) new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) new_esEs23(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs11(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, app(ty_[], gf)) -> new_esEs15(vyw43000, vyw44000, gf) new_compare27(vyw43000, vyw44000, False, ca) -> new_compare111(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, ca), ca) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs20(vyw300, vyw4000, app(ty_Maybe, cba)) -> new_esEs4(vyw300, vyw4000, cba) new_esEs22(vyw302, vyw4002, app(app(app(ty_@3, chd), che), chf)) -> new_esEs6(vyw302, vyw4002, chd, che, chf) new_esEs9(LT, LT) -> True new_lt20(vyw43001, vyw44001, ty_Int) -> new_lt16(vyw43001, vyw44001) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Char) -> new_lt10(vyw43001, vyw44001) new_primCompAux0(vyw43000, vyw44000, vyw124, ef) -> new_primCompAux00(vyw124, new_compare29(vyw43000, vyw44000, ef)) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Maybe, ceb), cea) -> new_esEs4(vyw300, vyw4000, ceb) new_esEs23(vyw301, vyw4001, app(app(ty_@2, dbb), dbc)) -> new_esEs5(vyw301, vyw4001, dbb, dbc) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) new_esEs12(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, app(ty_Ratio, ddg)) -> new_ltEs8(vyw43000, vyw44000, ddg) new_esEs18(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt16(vyw43000, vyw44000) -> new_esEs9(new_compare6(vyw43000, vyw44000), LT) new_lt5(vyw43000, vyw44000) -> new_esEs9(new_compare8(vyw43000, vyw44000), LT) new_esEs7(Left(vyw300), Left(vyw4000), ty_@0, cea) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs6(vyw301, vyw4001, daf, dag, dah) new_esEs19(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs21(vyw300, vyw4000, app(ty_Maybe, ccd)) -> new_esEs4(vyw300, vyw4000, ccd) new_lt20(vyw43001, vyw44001, app(app(ty_@2, hf), hg)) -> new_lt9(vyw43001, vyw44001, hf, hg) new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs23(vyw301, vyw4001, app(ty_Ratio, dba)) -> new_esEs16(vyw301, vyw4001, dba) new_esEs24(vyw300, vyw4000, app(app(ty_@2, dcd), dce)) -> new_esEs5(vyw300, vyw4000, dcd, dce) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs24(vyw300, vyw4000, app(app(ty_Either, dcf), dcg)) -> new_esEs7(vyw300, vyw4000, dcf, dcg) new_lt19(vyw43000, vyw44000, app(app(ty_@2, gd), ge)) -> new_lt9(vyw43000, vyw44000, gd, ge) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs12(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, bfh)) -> new_esEs4(vyw300, vyw4000, bfh) new_lt6(vyw43000, vyw44000, app(ty_[], ce)) -> new_lt13(vyw43000, vyw44000, ce) new_esEs24(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_compare29(vyw43000, vyw44000, app(ty_[], fb)) -> new_compare3(vyw43000, vyw44000, fb) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs17(vyw4300, vyw4400, bfa, bfb, bfc) new_esEs19(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(ty_[], hh)) -> new_esEs15(vyw43001, vyw44001, hh) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs9(vyw43001, vyw44001) new_compare113(vyw113, vyw114, True, ddh, dea) -> LT new_esEs22(vyw302, vyw4002, app(ty_Ratio, chg)) -> new_esEs16(vyw302, vyw4002, chg) new_ltEs19(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs13(vyw4300, vyw4400, ef) -> new_not(new_esEs9(new_compare3(vyw4300, vyw4400, ef), GT)) new_esEs23(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_@2, hf), hg)) -> new_esEs5(vyw43001, vyw44001, hf, hg) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_lt19(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(ty_Maybe, ca)) -> new_lt8(vyw43000, vyw44000, ca) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare12(vyw4300, vyw4400), GT)) new_esEs24(vyw300, vyw4000, app(ty_[], dbg)) -> new_esEs15(vyw300, vyw4000, dbg) new_esEs24(vyw300, vyw4000, app(ty_Maybe, dbf)) -> new_esEs4(vyw300, vyw4000, dbf) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_@0, bca) -> new_ltEs10(vyw43000, vyw44000) new_ltEs6(GT, EQ) -> False new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_Char) -> new_esEs14(vyw300, vyw4000) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_compare15(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs17(vyw43000, vyw44000)) new_esEs18(vyw43000, vyw44000, app(ty_Maybe, ca)) -> new_esEs4(vyw43000, vyw44000, ca) new_esEs20(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, baa), bab), bac)) -> new_esEs6(vyw43001, vyw44001, baa, bab, bac) new_esEs20(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Int) -> new_ltEs16(vyw43002, vyw44002) new_lt19(vyw43000, vyw44000, app(ty_Ratio, ddb)) -> new_lt4(vyw43000, vyw44000, ddb) new_compare25(Left(vyw4300), Right(vyw4400), False, bed, bbg) -> LT new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), cgg, cgh, cha) -> new_asAs(new_esEs24(vyw300, vyw4000, cgg), new_asAs(new_esEs23(vyw301, vyw4001, cgh), new_esEs22(vyw302, vyw4002, cha))) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_asAs(True, vyw101) -> vyw101 new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs10(vyw300, vyw4000) new_compare10(vyw43000, vyw44000, False, cc, cd) -> GT new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, app(ty_Ratio, ddc)) -> new_lt4(vyw43001, vyw44001, ddc) new_esEs8(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, bee)) -> new_ltEs7(vyw4300, vyw4400, bee) new_esEs7(Right(vyw300), Right(vyw4000), cfd, app(ty_[], cff)) -> new_esEs15(vyw300, vyw4000, cff) new_esEs7(Right(vyw300), Right(vyw4000), cfd, app(ty_Maybe, cfe)) -> new_esEs4(vyw300, vyw4000, cfe) new_esEs20(vyw300, vyw4000, app(ty_[], cbb)) -> new_esEs15(vyw300, vyw4000, cbb) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs13(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Float, cea) -> new_esEs13(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Ordering) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_ltEs19(vyw43002, vyw44002, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs17(vyw43002, vyw44002, bbb, bbc, bbd) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_[], cec), cea) -> new_esEs15(vyw300, vyw4000, cec) new_compare110(vyw43000, vyw44000, False) -> GT new_ltEs5(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) new_primCompAux00(vyw133, EQ) -> vyw133 new_sr(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_esEs22(vyw302, vyw4002, ty_@0) -> new_esEs11(vyw302, vyw4002) new_ltEs7(Nothing, Nothing, cdg) -> True new_esEs5(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bhe, bhf) -> new_asAs(new_esEs20(vyw300, vyw4000, bhe), new_esEs19(vyw301, vyw4001, bhf)) new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare13(vyw4300, vyw4400), GT)) new_esEs21(vyw300, vyw4000, app(app(ty_Either, cdd), cde)) -> new_esEs7(vyw300, vyw4000, cdd, cde) new_compare25(Right(vyw4300), Right(vyw4400), False, bed, bbg) -> new_compare113(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, bbg), bed, bbg) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, ddc)) -> new_esEs16(vyw43001, vyw44001, ddc) new_ltEs5(vyw43001, vyw44001, app(app(ty_@2, df), dg)) -> new_ltEs4(vyw43001, vyw44001, df, dg) new_esEs23(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_ltEs5(vyw43001, vyw44001, ty_@0) -> new_ltEs10(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000) -> new_esEs9(new_compare14(vyw43000, vyw44000), LT) new_esEs22(vyw302, vyw4002, app(app(ty_@2, chh), daa)) -> new_esEs5(vyw302, vyw4002, chh, daa) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, dde)) -> new_ltEs8(vyw4300, vyw4400, dde) new_ltEs7(Just(vyw43000), Nothing, cdg) -> False new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(ty_Maybe, ga)) -> new_esEs4(vyw43000, vyw44000, ga) new_esEs19(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_esEs15(:(vyw300, vyw301), [], ccc) -> False new_esEs15([], :(vyw4000, vyw4001), ccc) -> False new_lt17(vyw43000, vyw44000, cf, cg, da) -> new_esEs9(new_compare28(vyw43000, vyw44000, cf, cg, da), LT) new_ltEs6(EQ, LT) -> False new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare15(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_@2, ceh), cfa), cea) -> new_esEs5(vyw300, vyw4000, ceh, cfa) new_esEs22(vyw302, vyw4002, app(app(ty_Either, dab), dac)) -> new_esEs7(vyw302, vyw4002, dab, dac) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs13(vyw43001, vyw44001) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs17(vyw43000, vyw44000, bdg, bdh, bea) new_esEs4(Nothing, Nothing, bfg) -> True new_lt8(vyw43000, vyw44000, ca) -> new_esEs9(new_compare18(vyw43000, vyw44000, ca), LT) new_esEs4(Nothing, Just(vyw4000), bfg) -> False new_esEs4(Just(vyw300), Nothing, bfg) -> False new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare14(vyw4300, vyw4400), GT)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_esEs22(vyw302, vyw4002, ty_Ordering) -> new_esEs9(vyw302, vyw4002) new_ltEs14(False, True) -> True new_esEs9(EQ, EQ) -> True new_esEs18(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, bgh), bha)) -> new_esEs7(vyw300, vyw4000, bgh, bha) new_esEs18(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs19(vyw43002, vyw44002, app(ty_Maybe, baf)) -> new_ltEs7(vyw43002, vyw44002, baf) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, bdb), bca)) -> new_ltEs18(vyw4300, vyw4400, bdb, bca) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs22(vyw302, vyw4002, ty_Int) -> new_esEs10(vyw302, vyw4002) new_ltEs8(vyw4300, vyw4400, dch) -> new_not(new_esEs9(new_compare7(vyw4300, vyw4400, dch), GT)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs24(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_[], ce)) -> new_esEs15(vyw43000, vyw44000, ce) new_esEs24(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), cfd, app(app(ty_@2, cgc), cgd)) -> new_esEs5(vyw300, vyw4000, cgc, cgd) new_esEs7(Right(vyw300), Right(vyw4000), cfd, app(app(ty_Either, cge), cgf)) -> new_esEs7(vyw300, vyw4000, cge, cgf) new_lt10(vyw43000, vyw44000) -> new_esEs9(new_compare13(vyw43000, vyw44000), LT) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, bce), bcf), bcg), bca) -> new_ltEs17(vyw43000, vyw44000, bce, bcf, bcg) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, app(app(ty_@2, bdd), bde)) -> new_ltEs4(vyw43000, vyw44000, bdd, bde) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, bg), bh)) -> new_ltEs18(vyw43000, vyw44000, bg, bh) new_esEs22(vyw302, vyw4002, ty_Float) -> new_esEs13(vyw302, vyw4002) new_ltEs19(vyw43002, vyw44002, app(app(ty_Either, bbe), bbf)) -> new_ltEs18(vyw43002, vyw44002, bbe, bbf) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt19(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False, ca) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Double, bca) -> new_ltEs11(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, app(ty_Maybe, bdc)) -> new_ltEs7(vyw43000, vyw44000, bdc) new_esEs17(True, True) -> True new_esEs16(:%(vyw300, vyw301), :%(vyw4000, vyw4001), dda) -> new_asAs(new_esEs26(vyw300, vyw4000, dda), new_esEs25(vyw301, vyw4001, dda)) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, h)) -> new_ltEs7(vyw43000, vyw44000, h) new_esEs15(:(vyw300, vyw301), :(vyw4000, vyw4001), ccc) -> new_asAs(new_esEs21(vyw300, vyw4000, ccc), new_esEs15(vyw301, vyw4001, ccc)) new_compare29(vyw43000, vyw44000, app(app(ty_Either, fg), fh)) -> new_compare16(vyw43000, vyw44000, fg, fh) new_ltEs5(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, app(app(app(ty_@3, cf), cg), da)) -> new_esEs6(vyw43000, vyw44000, cf, cg, da) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_esEs23(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs22(vyw302, vyw4002, ty_Double) -> new_esEs12(vyw302, vyw4002) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, app(ty_[], bdf)) -> new_ltEs13(vyw43000, vyw44000, bdf) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_ltEs19(vyw43002, vyw44002, app(ty_Ratio, ddd)) -> new_ltEs8(vyw43002, vyw44002, ddd) new_lt14(vyw43000, vyw44000) -> new_esEs9(new_compare15(vyw43000, vyw44000), LT) new_ltEs20(vyw4300, vyw4400, app(ty_[], ef)) -> new_ltEs13(vyw4300, vyw4400, ef) new_esEs23(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_compare112(vyw43000, vyw44000, True, cf, cg, da) -> LT new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, cf, cg, da) -> new_compare210(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) new_esEs19(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, bad), bae)) -> new_esEs7(vyw43001, vyw44001, bad, bae) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bcb), bcc), bca) -> new_ltEs4(vyw43000, vyw44000, bcb, bcc) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], bga)) -> new_esEs15(vyw300, vyw4000, bga) new_esEs9(GT, GT) -> True new_compare25(Right(vyw4300), Left(vyw4400), False, bed, bbg) -> GT new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare12(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_lt13(vyw43000, vyw44000, ce) -> new_esEs9(new_compare3(vyw43000, vyw44000, ce), LT) new_primPlusNat0(Succ(vyw12300), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw12300, vyw4000000))) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, cf, cg, da) -> new_compare112(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000, cf, cg, da), cf, cg, da) new_esEs19(vyw301, vyw4001, app(ty_[], bhh)) -> new_esEs15(vyw301, vyw4001, bhh) new_compare112(vyw43000, vyw44000, False, cf, cg, da) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Integer, bca) -> new_ltEs12(vyw43000, vyw44000) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare8(vyw4300, vyw4400), GT)) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs5(vyw43001, vyw44001, app(ty_Ratio, bhb)) -> new_ltEs8(vyw43001, vyw44001, bhb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Ratio, ddf), bca) -> new_ltEs8(vyw43000, vyw44000, ddf) new_esEs20(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_compare11(vyw106, vyw107, True, bhc, bhd) -> LT new_ltEs19(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare6(vyw4300, vyw4400), GT)) new_lt6(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), bdb, ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_lt20(vyw43001, vyw44001, app(app(ty_Either, bad), bae)) -> new_lt18(vyw43001, vyw44001, bad, bae) new_esEs10(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare9(vyw43000, vyw44000, cc, cd) -> new_compare23(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) new_esEs20(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_compare26(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs6(vyw43000, vyw44000)) new_esEs28(vyw43000, vyw44000, app(app(ty_@2, gd), ge)) -> new_esEs5(vyw43000, vyw44000, gd, ge) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_esEs19(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs7(vyw301, vyw4001, cag, cah) new_lt6(vyw43000, vyw44000, app(app(app(ty_@3, cf), cg), da)) -> new_lt17(vyw43000, vyw44000, cf, cg, da) new_compare111(vyw43000, vyw44000, True, ca) -> LT new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs17(vyw43000, vyw44000, bd, be, bf) new_esEs23(vyw301, vyw4001, app(ty_[], dae)) -> new_esEs15(vyw301, vyw4001, dae) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Bool, bca) -> new_ltEs14(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, bef), beg)) -> new_ltEs4(vyw4300, vyw4400, bef, beg) new_lt20(vyw43001, vyw44001, ty_@0) -> new_lt5(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Right(vyw44000), bdb, bca) -> True new_compare25(Left(vyw4300), Left(vyw4400), False, bed, bbg) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, bed), bed, bbg) new_compare24(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000)) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs7(Left(vyw300), Left(vyw4000), ty_Int, cea) -> new_esEs10(vyw300, vyw4000) new_lt12(vyw43000, vyw44000) -> new_esEs9(new_compare12(vyw43000, vyw44000), LT) new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_@0) -> new_esEs11(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Left(vyw44000), bdb, bca) -> False new_ltEs14(False, False) -> True new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, he)) -> new_esEs4(vyw43001, vyw44001, he) new_esEs7(Right(vyw300), Right(vyw4000), cfd, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, ddb)) -> new_esEs16(vyw43000, vyw44000, ddb) new_compare3(:(vyw43000, vyw43001), [], ef) -> GT new_esEs22(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs18(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs20(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs11(@0, @0) -> True new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_compare8(@0, @0) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(app(ty_@2, cc), cd)) -> new_esEs5(vyw43000, vyw44000, cc, cd) new_primEqNat0(Zero, Zero) -> True new_compare29(vyw43000, vyw44000, app(ty_Maybe, eg)) -> new_compare18(vyw43000, vyw44000, eg) new_esEs24(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, app(ty_[], cce)) -> new_esEs15(vyw300, vyw4000, cce) new_lt19(vyw43000, vyw44000, app(app(app(ty_@3, gg), gh), ha)) -> new_lt17(vyw43000, vyw44000, gg, gh, ha) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare19(vyw43000, vyw44000) new_esEs18(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs19(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, gg), gh), ha)) -> new_esEs6(vyw43000, vyw44000, gg, gh, ha) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Char, bca) -> new_ltEs9(vyw43000, vyw44000) new_esEs22(vyw302, vyw4002, app(ty_[], chc)) -> new_esEs15(vyw302, vyw4002, chc) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs14(True, False) -> False new_asAs(False, vyw101) -> False new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_lt7(vyw43000, vyw44000) -> new_esEs9(new_compare19(vyw43000, vyw44000), LT) new_lt20(vyw43001, vyw44001, app(app(app(ty_@3, baa), bab), bac)) -> new_lt17(vyw43001, vyw44001, baa, bab, bac) new_lt6(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_esEs7(Left(vyw300), Right(vyw4000), cfd, cea) -> False new_esEs7(Right(vyw300), Left(vyw4000), cfd, cea) -> False new_ltEs6(GT, LT) -> False new_lt4(vyw43000, vyw44000, bff) -> new_esEs9(new_compare7(vyw43000, vyw44000, bff), LT) new_lt6(vyw43000, vyw44000, app(app(ty_Either, db), dc)) -> new_lt18(vyw43000, vyw44000, db, dc) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Ordering) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare6(x0, x1) new_esEs20(x0, x1, ty_Integer) new_ltEs18(Left(x0), Left(x1), ty_Int, x2) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_compare17(x0, x1, True) new_esEs24(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Float) new_esEs4(Just(x0), Just(x1), ty_@0) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Float) new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) new_esEs19(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primCompAux00(x0, LT) new_esEs23(x0, x1, ty_Integer) new_esEs18(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_ltEs13(x0, x1, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_compare11(x0, x1, False, x2, x3) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(True, x0) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Int) new_ltEs6(LT, LT) new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs20(x0, x1, ty_Bool) new_ltEs18(Left(x0), Left(x1), ty_Double, x2) new_esEs24(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs28(x0, x1, ty_@0) new_ltEs18(Left(x0), Left(x1), ty_Char, x2) new_esEs19(x0, x1, ty_Char) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(x0, x1, ty_@0) new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs17(False, False) new_compare3([], [], x0) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Bool) new_esEs4(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_ltEs8(x0, x1, x2) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt20(x0, x1, ty_Bool) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, ty_Bool) new_pePe(False, x0) new_esEs9(LT, LT) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat0(Succ(x0), Zero) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs22(x0, x1, ty_Integer) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs19(x0, x1, ty_Int) new_esEs28(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs27(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_Int) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_compare10(x0, x1, True, x2, x3) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs19(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, ty_Double) new_esEs28(x0, x1, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_Char) new_esEs15([], :(x0, x1), x2) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs5(x0, x1, ty_Ordering) new_compare8(@0, @0) new_compare113(x0, x1, False, x2, x3) new_esEs26(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 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_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, x2) new_primCmpNat0(Succ(x0), Succ(x1)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_compare13(Char(x0), Char(x1)) new_lt6(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs27(x0, x1, ty_@0) new_esEs21(x0, x1, app(ty_[], x2)) new_primEqNat0(Succ(x0), Zero) new_ltEs5(x0, x1, ty_Char) new_esEs15([], [], x0) new_esEs24(x0, x1, ty_Ordering) new_lt19(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Ordering) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs12(Double(x0, x1), Double(x2, x3)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare29(x0, x1, ty_Bool) new_asAs(False, x0) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs22(x0, x1, ty_Bool) new_esEs28(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs21(x0, x1, ty_Ordering) new_esEs24(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare24(x0, x1, True) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_primMulInt(Pos(x0), Pos(x1)) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs9(x0, x1) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt14(x0, x1) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(Left(x0), Left(x1), ty_@0, x2) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Char) new_esEs11(@0, @0) new_ltEs12(x0, x1) new_esEs25(x0, x1, ty_Int) new_ltEs7(Just(x0), Nothing, x1) new_compare113(x0, x1, True, x2, x3) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs16(x0, x1) new_ltEs21(x0, x1, ty_Double) new_compare111(x0, x1, True, x2) new_compare29(x0, x1, app(ty_Maybe, x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_lt19(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Int) new_sr0(Integer(x0), Integer(x1)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Double) new_esEs10(x0, x1) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_ltEs14(False, False) new_primCompAux00(x0, GT) new_lt6(x0, x1, ty_Float) new_lt7(x0, x1) new_esEs23(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare10(x0, x1, False, x2, x3) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs6(LT, GT) new_ltEs7(Nothing, Just(x0), x1) new_ltEs6(GT, LT) new_lt20(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Bool) new_compare25(Left(x0), Left(x1), False, x2, x3) new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22(x0, x1, ty_Int) new_ltEs6(EQ, GT) new_ltEs5(x0, x1, ty_Bool) new_ltEs6(GT, EQ) new_lt20(x0, x1, ty_Double) new_compare18(x0, x1, x2) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Int) new_esEs19(x0, x1, ty_Ordering) new_lt19(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Integer) new_esEs21(x0, x1, ty_Double) new_lt9(x0, x1, x2, x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs18(Left(x0), Right(x1), x2, x3) new_ltEs18(Right(x0), Left(x1), x2, x3) new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs19(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_Double) new_esEs4(Just(x0), Just(x1), ty_Integer) new_ltEs5(x0, x1, ty_Int) new_ltEs20(x0, x1, ty_Ordering) new_compare25(Left(x0), Right(x1), False, x2, x3) new_compare25(Right(x0), Left(x1), False, x2, x3) new_ltEs11(x0, x1) new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_primCompAux0(x0, x1, x2, x3) new_esEs18(x0, x1, ty_Float) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare29(x0, x1, ty_Ordering) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs9(EQ, EQ) new_lt6(x0, x1, ty_Char) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_compare3(:(x0, x1), [], x2) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_primMulNat0(Zero, Zero) new_compare23(x0, x1, False, x2, x3) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, ty_Int) new_esEs15(:(x0, x1), [], x2) new_ltEs21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs5(x0, x1, ty_Integer) new_compare25(Right(x0), Right(x1), False, x2, x3) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_compare210(x0, x1, True, x2, x3, x4) new_esEs17(True, True) new_ltEs6(EQ, EQ) new_compare27(x0, x1, False, x2) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt6(x0, x1, ty_Int) new_compare24(x0, x1, False) new_ltEs18(Right(x0), Right(x1), x2, ty_Float) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs21(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare25(x0, x1, True, x2, x3) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, ty_Double) new_compare29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, ty_Float) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs22(x0, x1, ty_Double) new_primPlusNat0(Zero, Zero) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt8(x0, x1, x2) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, True) new_not(True) new_lt6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Integer) new_lt5(x0, x1) new_esEs23(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs4(Nothing, Just(x0), x1) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare12(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_Double) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs15(:(x0, x1), :(x2, x3), x4) new_lt6(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_esEs27(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), ty_Float, x2) new_compare15(x0, x1) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs17(False, True) new_esEs17(True, False) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs20(x0, x1, ty_Ordering) new_compare27(x0, x1, True, x2) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare26(x0, x1, False) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs9(GT, GT) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs19(x0, x1, ty_Float) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs9(LT, GT) new_esEs9(GT, LT) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Just(x0), Just(x1), ty_Float) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Double) new_primCmpNat0(Succ(x0), Zero) new_esEs4(Just(x0), Just(x1), ty_Double) new_esEs20(x0, x1, ty_Int) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_compare16(x0, x1, x2, x3) new_esEs21(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_ltEs6(GT, GT) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs4(Just(x0), Nothing, x1) new_esEs24(x0, x1, ty_Double) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, EQ) new_ltEs15(x0, x1) new_esEs27(x0, x1, ty_Char) new_compare29(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) new_lt6(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs19(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) new_primPlusNat0(Zero, Succ(x0)) new_esEs22(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare110(x0, x1, True) new_compare17(x0, x1, False) new_esEs21(x0, x1, ty_Char) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Just(x0), Just(x1), ty_@0) new_ltEs19(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt15(x0, x1) new_esEs21(x0, x1, ty_Float) new_ltEs18(Right(x0), Right(x1), x2, ty_@0) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_compare23(x0, x1, True, x2, x3) new_compare11(x0, x1, True, x2, x3) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_compare29(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs8(Integer(x0), Integer(x1)) new_compare3(:(x0, x1), :(x2, x3), x4) new_esEs20(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Float) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs19(x0, x1, ty_Double) new_lt11(x0, x1) new_ltEs19(x0, x1, ty_Float) new_compare3([], :(x0, x1), x2) new_primEqNat0(Zero, Succ(x0)) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_compare9(x0, x1, x2, x3) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs21(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(ty_[], x2)) new_pePe(True, x0) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(False, True) new_lt10(x0, x1) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1) new_lt20(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Float) new_not(False) new_ltEs21(x0, x1, ty_Char) new_lt18(x0, x1, x2, x3) new_ltEs5(x0, x1, ty_Double) new_lt6(x0, x1, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_primMulNat0(Zero, Succ(x0)) new_compare28(x0, x1, x2, x3, x4) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs5(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Double) new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, True) new_ltEs21(x0, x1, ty_Int) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_lt4(x0, x1, x2) new_ltEs7(Nothing, Nothing, x0) new_esEs23(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Int) new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Zero, x0) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs21(x0, x1, ty_Bool) new_compare210(x0, x1, False, x2, x3, x4) new_esEs27(x0, x1, ty_Integer) new_esEs18(x0, x1, ty_@0) new_lt19(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_ltEs5(x0, x1, app(ty_[], x2)) new_lt17(x0, x1, x2, x3, x4) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_primPlusNat1(Succ(x0), x1) new_lt6(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_compare112(x0, x1, True, x2, x3, x4) new_esEs4(Nothing, Nothing, x0) new_primCmpNat0(Zero, Succ(x0)) new_compare29(x0, x1, app(ty_[], x2)) 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_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(app(ty_Either, bbe), bbf)) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_Either, 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), hd, gb, app(app(ty_@2, bag), bah)) -> new_ltEs0(vyw43002, vyw44002, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Just(vyw43000), Just(vyw44000), app(app(ty_@2, ba), bb)) -> new_ltEs0(vyw43000, vyw44000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare2(vyw43000, vyw44000, False, ca) -> new_ltEs(vyw43000, vyw44000, ca) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_primCompAux(vyw43000, vyw44000, vyw124, app(ty_Maybe, eg)) -> new_compare0(vyw43000, vyw44000, eg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, db), dc)), cb), bbg) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(app(ty_Either, ed), ee)) -> new_ltEs3(vyw43001, vyw44001, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_ltEs2(vyw43002, vyw44002, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, db), dc), cb) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 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_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(app(ty_@2, df), dg)) -> new_ltEs0(vyw43001, vyw44001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare20(vyw43000, vyw44000, False, cc, cd) -> new_ltEs0(vyw43000, vyw44000, cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(vyw43001, vyw44001, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare21(vyw43000, vyw44000, False, cf, cg, da) -> new_ltEs2(vyw43000, vyw44000, cf, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt1(vyw43000, vyw44000, ce) -> new_compare(vyw43000, vyw44000, ce) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt0(vyw43000, vyw44000, cc, cd) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_lt(vyw43000, vyw44000, ca) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, gb, app(ty_Maybe, baf)) -> new_ltEs(vyw43002, vyw44002, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *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(ty_[], bc)) -> new_ltEs1(vyw43000, vyw44000, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(ty_Maybe, de)) -> new_ltEs(vyw43001, vyw44001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs1(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare22(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), bbg) -> new_primCompAux(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare0(vyw43000, vyw44000, ca) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_primCompAux(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, ef), ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt3(vyw43000, vyw44000, db, dc) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare5(vyw43000, vyw44000, db, dc) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, db, dc), db, dc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, ca)), cb), bbg) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, ca), cb) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, ca), ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, cf), cg), da)), cb), bbg) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, cf), cg), da), cb) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) 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), hd, gb, app(ty_[], bba)) -> new_ltEs1(vyw43002, vyw44002, bba) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dd, app(ty_[], dh)) -> new_ltEs1(vyw43001, vyw44001, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), ef) -> new_compare(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare1(vyw43000, vyw44000, cc, cd) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], ce), cb) -> new_compare(vyw43000, vyw44000, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, cc), cd), cb) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_primCompAux(vyw43000, vyw44000, vyw124, app(ty_[], fb)) -> new_compare(vyw43000, vyw44000, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, cc), cd)), cb), bbg) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, cc, cd), cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_lt2(vyw43000, vyw44000, cf, cg, da) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_compare4(vyw43000, vyw44000, cf, cg, da) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cf, cg, da), cf, cg, da) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_primCompAux(vyw43000, vyw44000, vyw124, app(app(ty_@2, eh), fa)) -> new_compare1(vyw43000, vyw44000, eh, fa) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw43000, vyw44000, vyw124, app(app(ty_Either, fg), fh)) -> new_compare5(vyw43000, vyw44000, fg, fh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw43000, vyw44000, vyw124, app(app(app(ty_@3, fc), fd), ff)) -> new_compare4(vyw43000, vyw44000, fc, fd, ff) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, hb), hc), gb, gc) -> new_lt3(vyw43000, vyw44000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(app(ty_Either, bad), bae), gc) -> new_lt3(vyw43001, vyw44001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(ty_Maybe, he), gc) -> new_lt(vyw43001, vyw44001, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, ga), gb, gc) -> new_lt(vyw43000, vyw44000, ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_lt2(vyw43000, vyw44000, gg, gh, ha) 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), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_lt2(vyw43001, vyw44001, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], gf), gb, gc) -> new_lt1(vyw43000, vyw44000, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(ty_[], hh), gc) -> new_lt1(vyw43001, vyw44001, hh) 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_@2, gd), ge), gb, gc) -> new_lt0(vyw43000, vyw44000, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), hd, app(app(ty_@2, hf), hg), gc) -> new_lt0(vyw43001, vyw44001, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(vyw43000), Left(vyw44000), app(app(ty_Either, bch), bda), bca) -> new_ltEs3(vyw43000, vyw44000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(app(ty_Either, beb), bec)) -> new_ltEs3(vyw43000, vyw44000, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, bch), bda)), bca), bbg) -> new_ltEs3(vyw43000, vyw44000, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, bg), bh)), bbg) -> new_ltEs3(vyw43000, vyw44000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(app(ty_Either, beb), bec)), bbg) -> new_ltEs3(vyw43000, vyw44000, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, bfd), bfe)) -> new_ltEs3(vyw4300, vyw4400, bfd, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(app(ty_Either, bbe), bbf)), bbg) -> new_ltEs3(vyw43002, vyw44002, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(app(ty_Either, ed), ee)), bbg) -> new_ltEs3(vyw43001, vyw44001, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bcb), bcc), bca) -> new_ltEs0(vyw43000, vyw44000, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(app(ty_@2, bdd), bde)) -> new_ltEs0(vyw43000, vyw44000, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, bef), beg)) -> new_ltEs0(vyw4300, vyw4400, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, ba), bb)), bbg) -> new_ltEs0(vyw43000, vyw44000, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, bcb), bcc)), bca), bbg) -> new_ltEs0(vyw43000, vyw44000, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(app(ty_@2, df), dg)), bbg) -> new_ltEs0(vyw43001, vyw44001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(app(ty_@2, bdd), bde)), bbg) -> new_ltEs0(vyw43000, vyw44000, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(app(ty_@2, bag), bah)), bbg) -> new_ltEs0(vyw43002, vyw44002, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, bce), bcf), bcg), bca) -> new_ltEs2(vyw43000, vyw44000, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs2(vyw43000, vyw44000, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs3(Left(vyw43000), Left(vyw44000), app(ty_Maybe, bbh), bca) -> new_ltEs(vyw43000, vyw44000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(ty_Maybe, bdc)) -> new_ltEs(vyw43000, vyw44000, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Right(vyw43000), Right(vyw44000), bdb, app(ty_[], bdf)) -> new_ltEs1(vyw43000, vyw44000, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(Left(vyw43000), Left(vyw44000), app(ty_[], bcd), bca) -> new_ltEs1(vyw43000, vyw44000, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(app(ty_Either, bad), bae)), gc), bbg) -> new_lt3(vyw43001, vyw44001, bad, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, hb), hc)), gb), gc), bbg) -> new_lt3(vyw43000, vyw44000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(app(app(ty_@3, bbb), bbc), bbd)), bbg) -> new_ltEs2(vyw43002, vyw44002, bbb, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(app(app(ty_@3, ea), eb), ec)), bbg) -> new_ltEs2(vyw43001, vyw44001, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf)), bbg) -> new_ltEs2(vyw43000, vyw44000, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, bce), bcf), bcg)), bca), bbg) -> new_ltEs2(vyw43000, vyw44000, bce, bcf, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(app(app(ty_@3, bdg), bdh), bea)), bbg) -> new_ltEs2(vyw43000, vyw44000, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(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_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, bbh)), bca), bbg) -> new_ltEs(vyw43000, vyw44000, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(ty_Maybe, bdc)), bbg) -> new_ltEs(vyw43000, vyw44000, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, h)), bbg) -> new_ltEs(vyw43000, vyw44000, h) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(ty_Maybe, baf)), bbg) -> new_ltEs(vyw43002, vyw44002, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(ty_Maybe, de)), bbg) -> new_ltEs(vyw43001, vyw44001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(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_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(ty_Maybe, he)), gc), bbg) -> new_lt(vyw43001, vyw44001, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, ga)), gb), gc), bbg) -> new_lt(vyw43000, vyw44000, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], bcd)), bca), bbg) -> new_ltEs1(vyw43000, vyw44000, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), gb), app(ty_[], bba)), bbg) -> new_ltEs1(vyw43002, vyw44002, bba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, dd), app(ty_[], dh)), bbg) -> new_ltEs1(vyw43001, vyw44001, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(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_compare22(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, bdb), app(ty_[], bdf)), bbg) -> new_ltEs1(vyw43000, vyw44000, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], bc)), bbg) -> new_ltEs1(vyw43000, vyw44000, bc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], ce)), cb), bbg) -> new_compare(vyw43000, vyw44000, ce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], ef), bbg) -> new_compare(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(app(app(ty_@3, baa), bab), bac)), gc), bbg) -> new_lt2(vyw43001, vyw44001, baa, bab, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, gg), gh), ha)), gb), gc), bbg) -> new_lt2(vyw43000, vyw44000, gg, gh, ha) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(ty_[], hh)), gc), bbg) -> new_lt1(vyw43001, vyw44001, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], gf)), gb), gc), bbg) -> new_lt1(vyw43000, vyw44000, gf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, hd), app(app(ty_@2, hf), hg)), gc), bbg) -> new_lt0(vyw43001, vyw44001, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare22(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, gd), ge)), gb), gc), bbg) -> new_lt0(vyw43000, vyw44000, gd, ge) 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_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. ---------------------------------------- (24) 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 ---------------------------------------- (25) YES ---------------------------------------- (26) 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_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare25(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) 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_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs9(new_compare25(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(Left(vyw30), Right(vyw400), False, bd, be), GT), bc, bd, be) new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Left(vyw30), 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, True, bf, bg, bh) -> new_elemFM01(vyw31, 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_esEs9(new_compare25(Right(vyw30), Left(vyw400), False, bd, be), LT), 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_esEs9(new_compare25(Left(vyw30), Left(vyw400), new_esEs30(vyw30, vyw400, bd), bd, be), LT), 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_esEs9(new_compare25(Right(vyw30), Right(vyw400), new_esEs31(vyw30, vyw400, be), bd, be), LT), bc, bd, be) new_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_esEs9(new_compare25(Right(vyw30), Left(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_ltEs6(EQ, EQ) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_lt20(vyw43001, vyw44001, ty_Float) -> new_lt15(vyw43001, vyw44001) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_pePe(True, vyw122) -> True new_esEs18(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_esEs7(vyw43000, vyw44000, eg, eh) new_ltEs6(GT, GT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs5(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_lt20(vyw43001, vyw44001, ty_Ordering) -> new_lt7(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, app(ty_Ratio, hc)) -> new_esEs16(vyw30, vyw400, hc) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs30(vyw30, vyw400, ty_Float) -> new_esEs13(vyw30, vyw400) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_Ratio, cdh)) -> new_esEs16(vyw300, vyw4000, cdh) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_compare210(vyw43000, vyw44000, True, ed, ee, ef) -> EQ new_compare113(vyw113, vyw114, False, eag, eah) -> GT new_esEs18(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs30(vyw30, vyw400, ty_@0) -> new_esEs11(vyw30, vyw400) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_ltEs6(EQ, GT) -> True new_esEs24(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs12(vyw30, vyw400) new_esEs20(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cg), da), db)) -> new_esEs6(vyw300, vyw4000, cg, da, db) new_lt19(vyw43000, vyw44000, app(app(ty_Either, dbg), dbh)) -> new_lt18(vyw43000, vyw44000, dbg, dbh) new_esEs24(vyw300, vyw4000, app(ty_Ratio, chf)) -> new_esEs16(vyw300, vyw4000, chf) new_lt19(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, dbg), dbh)) -> new_esEs7(vyw43000, vyw44000, dbg, dbh) new_ltEs19(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) new_lt6(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Integer) -> new_lt12(vyw43001, vyw44001) new_compare3([], [], gf) -> EQ new_esEs7(Left(vyw300), Left(vyw4000), ty_Char, hg) -> new_esEs14(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_Ratio, cc)) -> new_esEs16(vyw43000, vyw44000, cc) new_compare26(vyw43000, vyw44000, True) -> EQ new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs14(vyw33, vyw28) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(vyw300, vyw4000, cde, cdf, cdg) new_esEs20(vyw300, vyw4000, app(app(ty_@2, bbh), bca)) -> new_esEs5(vyw300, vyw4000, bbh, bca) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs9(vyw30, vyw400) new_esEs32(vyw33, vyw28, app(ty_[], bgc)) -> new_esEs15(vyw33, vyw28, bgc) new_lt20(vyw43001, vyw44001, app(ty_[], dce)) -> new_lt13(vyw43001, vyw44001, dce) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs6(vyw18, vyw13, bcf, bcg, bch) new_ltEs19(vyw43002, vyw44002, ty_Bool) -> new_ltEs14(vyw43002, vyw44002) new_lt9(vyw43000, vyw44000, ca, cb) -> new_esEs9(new_compare9(vyw43000, vyw44000, ca, cb), LT) new_esEs19(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs19(vyw301, vyw4001, app(app(ty_@2, baf), bag)) -> new_esEs5(vyw301, vyw4001, baf, bag) new_compare19(vyw43000, vyw44000) -> new_compare26(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs22(vyw302, vyw4002, app(ty_Maybe, cee)) -> new_esEs4(vyw302, vyw4002, cee) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs13(vyw18, vyw13) new_esEs31(vyw30, vyw400, app(app(ty_@2, cab), cac)) -> new_esEs5(vyw30, vyw400, cab, cac) new_ltEs21(vyw4300, vyw4400, app(ty_[], dfe)) -> new_ltEs13(vyw4300, vyw4400, dfe) new_compare16(vyw43000, vyw44000, eg, eh) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, eg, eh), eg, eh) new_compare29(vyw43000, vyw44000, app(ty_Ratio, bfa)) -> new_compare7(vyw43000, vyw44000, bfa) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs22(vyw302, vyw4002, ty_Bool) -> new_esEs17(vyw302, vyw4002) new_not(True) -> False new_ltEs19(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_primCompAux00(vyw133, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs6(vyw300, vyw4000, bdh, bea, beb) new_lt19(vyw43000, vyw44000, app(ty_[], dbc)) -> new_lt13(vyw43000, vyw44000, dbc) new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Bool) -> new_lt14(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs17(vyw43001, vyw44001) new_lt15(vyw43000, vyw44000) -> new_esEs9(new_compare30(vyw43000, vyw44000), LT) new_ltEs5(vyw43001, vyw44001, ty_Ordering) -> new_ltEs6(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dd), de)) -> new_esEs5(vyw300, vyw4000, dd, de) new_esEs20(vyw300, vyw4000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(vyw300, vyw4000, bbd, bbe, bbf) new_esEs20(vyw300, vyw4000, app(app(ty_Either, bcb), bcc)) -> new_esEs7(vyw300, vyw4000, bcb, bcc) new_ltEs6(LT, GT) -> True new_lt6(vyw43000, vyw44000, app(ty_Ratio, cc)) -> new_lt4(vyw43000, vyw44000, cc) new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_compare27(vyw43000, vyw44000, True, eb) -> EQ new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare28(vyw43000, vyw44000, bfe, bff, bfg) new_esEs19(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs7(Nothing, Just(vyw44000), caf) -> True new_esEs19(vyw301, vyw4001, app(ty_Ratio, bae)) -> new_esEs16(vyw301, vyw4001, bae) new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs10(vyw43001, vyw44001) new_compare10(vyw43000, vyw44000, True, ca, cb) -> LT new_ltEs5(vyw43001, vyw44001, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs17(vyw43001, vyw44001, fg, fh, ga) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_ltEs5(vyw43001, vyw44001, app(app(ty_Either, gb), gc)) -> new_ltEs18(vyw43001, vyw44001, gb, gc) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs12(vyw18, vyw13) new_lt19(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, dac)) -> new_ltEs8(vyw4300, vyw4400, dac) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_esEs18(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_primCompAux00(vyw133, GT) -> GT new_lt20(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) new_compare110(vyw43000, vyw44000, True) -> LT new_compare12(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_esEs23(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, bfb), bfc)) -> new_compare9(vyw43000, vyw44000, bfb, bfc) new_lt19(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Ratio, ccf), hg) -> new_esEs16(vyw300, vyw4000, ccf) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs5(vyw43001, vyw44001, ty_Int) -> new_ltEs16(vyw43001, vyw44001) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, dh), ea)) -> new_ltEs4(vyw4300, vyw4400, dh, ea) new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_lt18(vyw43000, vyw44000, eg, eh) -> new_esEs9(new_compare16(vyw43000, vyw44000, eg, eh), LT) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs11(vyw18, vyw13) new_esEs20(vyw300, vyw4000, app(ty_Ratio, bbg)) -> new_esEs16(vyw300, vyw4000, bbg) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_lt20(vyw43001, vyw44001, app(ty_Maybe, dca)) -> new_lt8(vyw43001, vyw44001, dca) new_lt19(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_compare3(:(vyw43000, vyw43001), :(vyw44000, vyw44001), gf) -> new_primCompAux0(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, gf), gf) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs8(vyw43001, vyw44001) new_lt19(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs17(vyw33, vyw28) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs22(vyw302, vyw4002, ty_Integer) -> new_esEs8(vyw302, vyw4002) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs6(vyw30, vyw400, bhf, bhg, bhh) new_esEs7(Left(vyw300), Left(vyw4000), ty_Bool, hg) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(ty_Either, eae), eaf)) -> new_ltEs18(vyw43000, vyw44000, eae, eaf) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_esEs7(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, ccc), ccd), cce), hg) -> new_esEs6(vyw300, vyw4000, ccc, ccd, cce) new_ltEs19(vyw43002, vyw44002, ty_@0) -> new_ltEs10(vyw43002, vyw44002) new_esEs21(vyw300, vyw4000, app(app(ty_@2, bed), bee)) -> new_esEs5(vyw300, vyw4000, bed, bee) new_esEs19(vyw301, vyw4001, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs6(vyw301, vyw4001, bab, bac, bad) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, caf)) -> new_ltEs7(vyw4300, vyw4400, caf) new_ltEs17(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), dad, dae, daf) -> new_pePe(new_lt19(vyw43000, vyw44000, dad), new_asAs(new_esEs28(vyw43000, vyw44000, dad), new_pePe(new_lt20(vyw43001, vyw44001, dae), new_asAs(new_esEs27(vyw43001, vyw44001, dae), new_ltEs19(vyw43002, vyw44002, daf))))) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], cbc)) -> new_ltEs13(vyw43000, vyw44000, cbc) new_ltEs19(vyw43002, vyw44002, app(ty_[], ddg)) -> new_ltEs13(vyw43002, vyw44002, ddg) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, cba), cbb)) -> new_ltEs4(vyw43000, vyw44000, cba, cbb) new_lt19(vyw43000, vyw44000, app(ty_Maybe, dag)) -> new_lt8(vyw43000, vyw44000, dag) new_ltEs19(vyw43002, vyw44002, app(app(ty_@2, dde), ddf)) -> new_ltEs4(vyw43002, vyw44002, dde, ddf) new_esEs30(vyw30, vyw400, ty_Double) -> new_esEs12(vyw30, vyw400) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare30(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Ordering, deh) -> new_ltEs6(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_Either, dhc), dhd), deh) -> new_ltEs18(vyw43000, vyw44000, dhc, dhd) new_compare18(vyw43000, vyw44000, eb) -> new_compare27(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eb), eb) new_compare3([], :(vyw44000, vyw44001), gf) -> LT new_lt19(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_pePe(False, vyw122) -> vyw122 new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs13(vyw30, vyw400) new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Maybe, dgc), deh) -> new_ltEs7(vyw43000, vyw44000, dgc) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_compare25(vyw430, vyw440, True, dee, def) -> EQ new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare12(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Int, deh) -> new_ltEs16(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, ca, cb) -> new_compare10(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, ca, cb), ca, cb) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dc)) -> new_esEs16(vyw300, vyw4000, dc) new_ltEs6(LT, LT) -> True new_lt6(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bec)) -> new_esEs16(vyw300, vyw4000, bec) new_compare23(vyw43000, vyw44000, True, ca, cb) -> EQ new_ltEs5(vyw43001, vyw44001, app(ty_Maybe, fa)) -> new_ltEs7(vyw43001, vyw44001, fa) new_compare17(vyw43000, vyw44000, True) -> LT new_compare11(vyw106, vyw107, False, gd, ge) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs32(vyw33, vyw28, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs6(vyw33, vyw28, bgd, bge, bgf) new_esEs23(vyw301, vyw4001, app(ty_Maybe, cfg)) -> new_esEs4(vyw301, vyw4001, cfg) new_ltEs5(vyw43001, vyw44001, app(ty_[], ff)) -> new_ltEs13(vyw43001, vyw44001, ff) new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_[], dgg), deh) -> new_ltEs13(vyw43000, vyw44000, dgg) new_esEs7(Left(vyw300), Left(vyw4000), ty_Ordering, hg) -> new_esEs9(vyw300, vyw4000) new_lt6(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_ltEs14(True, True) -> True new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_esEs23(vyw301, vyw4001, app(app(ty_Either, cgg), cgh)) -> new_esEs7(vyw301, vyw4001, cgg, cgh) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, app(ty_Maybe, hh)) -> new_esEs4(vyw301, vyw4001, hh) new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, dad), dae), daf)) -> new_ltEs17(vyw4300, vyw4400, dad, dae, daf) new_compare13(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Double, hg) -> new_esEs12(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cah)) -> new_ltEs8(vyw43000, vyw44000, cah) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_Either, cda), cdb), hg) -> new_esEs7(vyw300, vyw4000, cda, cdb) new_ltEs5(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_esEs15([], [], gg) -> True new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs10(vyw18, vyw13) new_esEs24(vyw300, vyw4000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs6(vyw300, vyw4000, chc, chd, che) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs13(vyw300, vyw4000) new_ltEs6(LT, EQ) -> True new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare13(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(app(ty_@2, ca), cb)) -> new_lt9(vyw43000, vyw44000, ca, cb) new_esEs7(Left(vyw300), Left(vyw4000), ty_Integer, hg) -> new_esEs8(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, dga), dgb)) -> new_ltEs18(vyw4300, vyw4400, dga, dgb) new_esEs31(vyw30, vyw400, app(ty_Maybe, bhd)) -> new_esEs4(vyw30, vyw400, bhd) new_primPlusNat1(Succ(vyw1230), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw1230, vyw400000))) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare30(vyw4300, vyw4400), GT)) new_ltEs5(vyw43001, vyw44001, ty_Bool) -> new_ltEs14(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Float, deh) -> new_ltEs15(vyw43000, vyw44000) new_primPlusNat0(Succ(vyw12300), Zero) -> Succ(vyw12300) new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs10(vyw33, vyw28) new_ltEs4(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dh, ea) -> new_pePe(new_lt6(vyw43000, vyw44000, dh), new_asAs(new_esEs18(vyw43000, vyw44000, dh), new_ltEs5(vyw43001, vyw44001, ea))) new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) new_esEs23(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs11(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, app(ty_[], dbc)) -> new_esEs15(vyw43000, vyw44000, dbc) new_compare27(vyw43000, vyw44000, False, eb) -> new_compare111(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, eb), eb) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs20(vyw300, vyw4000, app(ty_Maybe, bbb)) -> new_esEs4(vyw300, vyw4000, bbb) new_esEs22(vyw302, vyw4002, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(vyw302, vyw4002, ceg, ceh, cfa) new_esEs9(LT, LT) -> True new_lt20(vyw43001, vyw44001, ty_Int) -> new_lt16(vyw43001, vyw44001) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Char) -> new_lt10(vyw43001, vyw44001) new_primCompAux0(vyw43000, vyw44000, vyw124, gf) -> new_primCompAux00(vyw124, new_compare29(vyw43000, vyw44000, gf)) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Maybe, cca), hg) -> new_esEs4(vyw300, vyw4000, cca) new_esEs23(vyw301, vyw4001, app(app(ty_@2, cge), cgf)) -> new_esEs5(vyw301, vyw4001, cge, cgf) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) new_esEs12(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_Ratio, dhf)) -> new_ltEs8(vyw43000, vyw44000, dhf) new_esEs18(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt16(vyw43000, vyw44000) -> new_esEs9(new_compare6(vyw43000, vyw44000), LT) new_lt5(vyw43000, vyw44000) -> new_esEs9(new_compare8(vyw43000, vyw44000), LT) new_esEs7(Left(vyw300), Left(vyw4000), ty_@0, hg) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs6(vyw301, vyw4001, cga, cgb, cgc) new_esEs19(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs17(vyw18, vyw13) new_esEs21(vyw300, vyw4000, app(ty_Maybe, bdf)) -> new_esEs4(vyw300, vyw4000, bdf) new_lt20(vyw43001, vyw44001, app(app(ty_@2, dcc), dcd)) -> new_lt9(vyw43001, vyw44001, dcc, dcd) new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs32(vyw33, vyw28, app(ty_Maybe, bgb)) -> new_esEs4(vyw33, vyw28, bgb) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_esEs23(vyw301, vyw4001, app(ty_Ratio, cgd)) -> new_esEs16(vyw301, vyw4001, cgd) new_esEs24(vyw300, vyw4000, app(app(ty_@2, chg), chh)) -> new_esEs5(vyw300, vyw4000, chg, chh) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs24(vyw300, vyw4000, app(app(ty_Either, daa), dab)) -> new_esEs7(vyw300, vyw4000, daa, dab) new_lt19(vyw43000, vyw44000, app(app(ty_@2, dba), dbb)) -> new_lt9(vyw43000, vyw44000, dba, dbb) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs12(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, ce)) -> new_esEs4(vyw300, vyw4000, ce) new_lt6(vyw43000, vyw44000, app(ty_[], ec)) -> new_lt13(vyw43000, vyw44000, ec) new_esEs24(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_compare29(vyw43000, vyw44000, app(ty_[], bfd)) -> new_compare3(vyw43000, vyw44000, bfd) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs17(vyw4300, vyw4400, dff, dfg, dfh) new_esEs19(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(ty_[], dce)) -> new_esEs15(vyw43001, vyw44001, dce) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs9(vyw43001, vyw44001) new_compare113(vyw113, vyw114, True, eag, eah) -> LT new_esEs22(vyw302, vyw4002, app(ty_Ratio, cfb)) -> new_esEs16(vyw302, vyw4002, cfb) new_ltEs19(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs13(vyw4300, vyw4400, gf) -> new_not(new_esEs9(new_compare3(vyw4300, vyw4400, gf), GT)) new_esEs23(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_@2, dcc), dcd)) -> new_esEs5(vyw43001, vyw44001, dcc, dcd) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_lt19(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(ty_Maybe, eb)) -> new_lt8(vyw43000, vyw44000, eb) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare12(vyw4300, vyw4400), GT)) new_esEs30(vyw30, vyw400, app(ty_Maybe, cd)) -> new_esEs4(vyw30, vyw400, cd) new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs8(vyw18, vyw13) new_esEs24(vyw300, vyw4000, app(ty_[], chb)) -> new_esEs15(vyw300, vyw4000, chb) new_esEs24(vyw300, vyw4000, app(ty_Maybe, cha)) -> new_esEs4(vyw300, vyw4000, cha) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_@0, deh) -> new_ltEs10(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_[], gg)) -> new_esEs15(vyw30, vyw400, gg) new_ltEs6(GT, EQ) -> False new_esEs30(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Char) -> new_esEs14(vyw300, vyw4000) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_compare15(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs17(vyw43000, vyw44000)) new_esEs18(vyw43000, vyw44000, app(ty_Maybe, eb)) -> new_esEs4(vyw43000, vyw44000, eb) new_esEs20(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs6(vyw43001, vyw44001, dcf, dcg, dch) new_esEs32(vyw33, vyw28, app(app(ty_Either, bhb), bhc)) -> new_esEs7(vyw33, vyw28, bhb, bhc) new_esEs20(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Int) -> new_ltEs16(vyw43002, vyw44002) new_lt19(vyw43000, vyw44000, app(ty_Ratio, dah)) -> new_lt4(vyw43000, vyw44000, dah) new_compare25(Left(vyw4300), Right(vyw4400), False, dee, def) -> LT new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), gh, ha, hb) -> new_asAs(new_esEs24(vyw300, vyw4000, gh), new_asAs(new_esEs23(vyw301, vyw4001, ha), new_esEs22(vyw302, vyw4002, hb))) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_asAs(True, vyw101) -> vyw101 new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs10(vyw300, vyw4000) new_compare10(vyw43000, vyw44000, False, ca, cb) -> GT new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, app(ty_Ratio, dcb)) -> new_lt4(vyw43001, vyw44001, dcb) new_esEs8(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, dfa)) -> new_ltEs7(vyw4300, vyw4400, dfa) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_[], cdd)) -> new_esEs15(vyw300, vyw4000, cdd) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_Maybe, cdc)) -> new_esEs4(vyw300, vyw4000, cdc) new_esEs20(vyw300, vyw4000, app(ty_[], bbc)) -> new_esEs15(vyw300, vyw4000, bbc) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs13(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Float, hg) -> new_esEs13(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs13(vyw33, vyw28) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Ordering) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_ltEs19(vyw43002, vyw44002, app(app(app(ty_@3, ddh), dea), deb)) -> new_ltEs17(vyw43002, vyw44002, ddh, dea, deb) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_[], ccb), hg) -> new_esEs15(vyw300, vyw4000, ccb) new_compare110(vyw43000, vyw44000, False) -> GT new_ltEs5(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) new_primCompAux00(vyw133, EQ) -> vyw133 new_sr(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_esEs22(vyw302, vyw4002, ty_@0) -> new_esEs11(vyw302, vyw4002) new_ltEs7(Nothing, Nothing, caf) -> True new_esEs5(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hd, he) -> new_asAs(new_esEs20(vyw300, vyw4000, hd), new_esEs19(vyw301, vyw4001, he)) new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare13(vyw4300, vyw4400), GT)) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bef), beg)) -> new_esEs7(vyw300, vyw4000, bef, beg) new_compare25(Right(vyw4300), Right(vyw4400), False, dee, def) -> new_compare113(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, def), dee, def) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs30(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, dcb)) -> new_esEs16(vyw43001, vyw44001, dcb) new_ltEs5(vyw43001, vyw44001, app(app(ty_@2, fc), fd)) -> new_ltEs4(vyw43001, vyw44001, fc, fd) new_esEs23(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_ltEs5(vyw43001, vyw44001, ty_@0) -> new_ltEs10(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000) -> new_esEs9(new_compare14(vyw43000, vyw44000), LT) new_esEs22(vyw302, vyw4002, app(app(ty_@2, cfc), cfd)) -> new_esEs5(vyw302, vyw4002, cfc, cfd) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, dfb)) -> new_ltEs8(vyw4300, vyw4400, dfb) new_ltEs7(Just(vyw43000), Nothing, caf) -> False new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(ty_Maybe, dag)) -> new_esEs4(vyw43000, vyw44000, dag) new_esEs19(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_esEs15(:(vyw300, vyw301), [], gg) -> False new_esEs15([], :(vyw4000, vyw4001), gg) -> False new_lt17(vyw43000, vyw44000, ed, ee, ef) -> new_esEs9(new_compare28(vyw43000, vyw44000, ed, ee, ef), LT) new_ltEs6(EQ, LT) -> False new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare15(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_@2, ccg), cch), hg) -> new_esEs5(vyw300, vyw4000, ccg, cch) new_esEs22(vyw302, vyw4002, app(app(ty_Either, cfe), cff)) -> new_esEs7(vyw302, vyw4002, cfe, cff) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs13(vyw43001, vyw44001) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs17(vyw43000, vyw44000, eab, eac, ead) new_esEs4(Nothing, Nothing, cd) -> True new_lt8(vyw43000, vyw44000, eb) -> new_esEs9(new_compare18(vyw43000, vyw44000, eb), LT) new_esEs4(Nothing, Just(vyw4000), cd) -> False new_esEs4(Just(vyw300), Nothing, cd) -> False new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare14(vyw4300, vyw4400), GT)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_esEs22(vyw302, vyw4002, ty_Ordering) -> new_esEs9(vyw302, vyw4002) new_ltEs14(False, True) -> True new_esEs29(vyw18, vyw13, app(ty_[], bce)) -> new_esEs15(vyw18, vyw13, bce) new_esEs32(vyw33, vyw28, app(app(ty_@2, bgh), bha)) -> new_esEs5(vyw33, vyw28, bgh, bha) new_esEs9(EQ, EQ) -> True new_esEs18(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, df), dg)) -> new_esEs7(vyw300, vyw4000, df, dg) new_esEs18(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs19(vyw43002, vyw44002, app(ty_Maybe, ddc)) -> new_ltEs7(vyw43002, vyw44002, ddc) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, deg), deh)) -> new_ltEs18(vyw4300, vyw4400, deg, deh) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs22(vyw302, vyw4002, ty_Int) -> new_esEs10(vyw302, vyw4002) new_ltEs8(vyw4300, vyw4400, dac) -> new_not(new_esEs9(new_compare7(vyw4300, vyw4400, dac), GT)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs24(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_[], ec)) -> new_esEs15(vyw43000, vyw44000, ec) new_esEs24(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(ty_@2, cea), ceb)) -> new_esEs5(vyw300, vyw4000, cea, ceb) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(ty_Either, cec), ced)) -> new_esEs7(vyw300, vyw4000, cec, ced) new_lt10(vyw43000, vyw44000) -> new_esEs9(new_compare13(vyw43000, vyw44000), LT) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, dgh), dha), dhb), deh) -> new_ltEs17(vyw43000, vyw44000, dgh, dha, dhb) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(ty_@2, dhg), dhh)) -> new_ltEs4(vyw43000, vyw44000, dhg, dhh) new_esEs32(vyw33, vyw28, app(ty_Ratio, bgg)) -> new_esEs16(vyw33, vyw28, bgg) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, cbg), cbh)) -> new_ltEs18(vyw43000, vyw44000, cbg, cbh) new_esEs22(vyw302, vyw4002, ty_Float) -> new_esEs13(vyw302, vyw4002) new_ltEs19(vyw43002, vyw44002, app(app(ty_Either, dec), ded)) -> new_ltEs18(vyw43002, vyw44002, dec, ded) new_esEs29(vyw18, vyw13, app(ty_Maybe, bcd)) -> new_esEs4(vyw18, vyw13, bcd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt19(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False, eb) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Double, deh) -> new_ltEs11(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_Maybe, dhe)) -> new_ltEs7(vyw43000, vyw44000, dhe) new_esEs17(True, True) -> True new_esEs16(:%(vyw300, vyw301), :%(vyw4000, vyw4001), hc) -> new_asAs(new_esEs26(vyw300, vyw4000, hc), new_esEs25(vyw301, vyw4001, hc)) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cag)) -> new_ltEs7(vyw43000, vyw44000, cag) new_esEs15(:(vyw300, vyw301), :(vyw4000, vyw4001), gg) -> new_asAs(new_esEs21(vyw300, vyw4000, gg), new_esEs15(vyw301, vyw4001, gg)) new_compare29(vyw43000, vyw44000, app(app(ty_Either, bfh), bga)) -> new_compare16(vyw43000, vyw44000, bfh, bga) new_ltEs5(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(vyw43000, vyw44000, ed, ee, ef) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_esEs23(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs22(vyw302, vyw4002, ty_Double) -> new_esEs12(vyw302, vyw4002) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_[], eaa)) -> new_ltEs13(vyw43000, vyw44000, eaa) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_ltEs19(vyw43002, vyw44002, app(ty_Ratio, ddd)) -> new_ltEs8(vyw43002, vyw44002, ddd) new_lt14(vyw43000, vyw44000) -> new_esEs9(new_compare15(vyw43000, vyw44000), LT) new_ltEs20(vyw4300, vyw4400, app(ty_[], gf)) -> new_ltEs13(vyw4300, vyw4400, gf) new_esEs23(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_compare112(vyw43000, vyw44000, True, ed, ee, ef) -> LT new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, ed, ee, ef) -> new_compare210(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) new_esEs19(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, dda), ddb)) -> new_esEs7(vyw43001, vyw44001, dda, ddb) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_@2, dge), dgf), deh) -> new_ltEs4(vyw43000, vyw44000, dge, dgf) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], cf)) -> new_esEs15(vyw300, vyw4000, cf) new_esEs9(GT, GT) -> True new_compare25(Right(vyw4300), Left(vyw4400), False, dee, def) -> GT new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare12(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_lt13(vyw43000, vyw44000, ec) -> new_esEs9(new_compare3(vyw43000, vyw44000, ec), LT) new_primPlusNat0(Succ(vyw12300), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw12300, vyw4000000))) new_esEs31(vyw30, vyw400, app(ty_[], bhe)) -> new_esEs15(vyw30, vyw400, bhe) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, ed, ee, ef) -> new_compare112(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs9(vyw33, vyw28) new_esEs19(vyw301, vyw4001, app(ty_[], baa)) -> new_esEs15(vyw301, vyw4001, baa) new_compare112(vyw43000, vyw44000, False, ed, ee, ef) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Integer, deh) -> new_ltEs12(vyw43000, vyw44000) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare8(vyw4300, vyw4400), GT)) new_esEs31(vyw30, vyw400, app(ty_Ratio, caa)) -> new_esEs16(vyw30, vyw400, caa) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs5(vyw43001, vyw44001, app(ty_Ratio, fb)) -> new_ltEs8(vyw43001, vyw44001, fb) new_esEs30(vyw30, vyw400, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs6(vyw30, vyw400, gh, ha, hb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Ratio, dgd), deh) -> new_ltEs8(vyw43000, vyw44000, dgd) new_esEs20(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_compare11(vyw106, vyw107, True, gd, ge) -> LT new_ltEs19(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs12(vyw33, vyw28) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare6(vyw4300, vyw4400), GT)) new_lt6(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_lt20(vyw43001, vyw44001, app(app(ty_Either, dda), ddb)) -> new_lt18(vyw43001, vyw44001, dda, ddb) new_esEs10(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs8(vyw33, vyw28) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs11(vyw30, vyw400) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare9(vyw43000, vyw44000, ca, cb) -> new_compare23(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ca, cb), ca, cb) new_esEs20(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs31(vyw30, vyw400, app(app(ty_Either, cad), cae)) -> new_esEs7(vyw30, vyw400, cad, cae) new_compare26(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs6(vyw43000, vyw44000)) new_esEs28(vyw43000, vyw44000, app(app(ty_@2, dba), dbb)) -> new_esEs5(vyw43000, vyw44000, dba, dbb) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_esEs19(vyw301, vyw4001, app(app(ty_Either, bah), bba)) -> new_esEs7(vyw301, vyw4001, bah, bba) new_lt6(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt17(vyw43000, vyw44000, ed, ee, ef) new_compare111(vyw43000, vyw44000, True, eb) -> LT new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs17(vyw43000, vyw44000, cbd, cbe, cbf) new_esEs23(vyw301, vyw4001, app(ty_[], cfh)) -> new_esEs15(vyw301, vyw4001, cfh) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Bool, deh) -> new_ltEs14(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, dfc), dfd)) -> new_ltEs4(vyw4300, vyw4400, dfc, dfd) new_lt20(vyw43001, vyw44001, ty_@0) -> new_lt5(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Right(vyw44000), deg, deh) -> True new_compare25(Left(vyw4300), Left(vyw4400), False, dee, def) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, dee), dee, def) new_compare24(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000)) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs30(vyw30, vyw400, app(app(ty_@2, hd), he)) -> new_esEs5(vyw30, vyw400, hd, he) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs7(Left(vyw300), Left(vyw4000), ty_Int, hg) -> new_esEs10(vyw300, vyw4000) new_lt12(vyw43000, vyw44000) -> new_esEs9(new_compare12(vyw43000, vyw44000), LT) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_@0) -> new_esEs11(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Left(vyw44000), deg, deh) -> False new_ltEs14(False, False) -> True new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs8(vyw30, vyw400) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, dca)) -> new_esEs4(vyw43001, vyw44001, dca) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, dah)) -> new_esEs16(vyw43000, vyw44000, dah) new_compare3(:(vyw43000, vyw43001), [], gf) -> GT new_esEs22(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs18(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Integer) -> new_esEs8(vyw30, vyw400) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs20(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs11(@0, @0) -> True new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_compare8(@0, @0) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs29(vyw18, vyw13, app(ty_Ratio, bda)) -> new_esEs16(vyw18, vyw13, bda) new_esEs18(vyw43000, vyw44000, app(app(ty_@2, ca), cb)) -> new_esEs5(vyw43000, vyw44000, ca, cb) new_primEqNat0(Zero, Zero) -> True new_compare29(vyw43000, vyw44000, app(ty_Maybe, beh)) -> new_compare18(vyw43000, vyw44000, beh) new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs11(vyw33, vyw28) new_esEs24(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, app(ty_[], bdg)) -> new_esEs15(vyw300, vyw4000, bdg) new_lt19(vyw43000, vyw44000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt17(vyw43000, vyw44000, dbd, dbe, dbf) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare19(vyw43000, vyw44000) new_esEs18(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs19(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs6(vyw43000, vyw44000, dbd, dbe, dbf) new_esEs30(vyw30, vyw400, app(app(ty_Either, hf), hg)) -> new_esEs7(vyw30, vyw400, hf, hg) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Char, deh) -> new_ltEs9(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_@2, bdb), bdc)) -> new_esEs5(vyw18, vyw13, bdb, bdc) new_esEs22(vyw302, vyw4002, app(ty_[], cef)) -> new_esEs15(vyw302, vyw4002, cef) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs14(True, False) -> False new_asAs(False, vyw101) -> False new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) new_esEs29(vyw18, vyw13, app(app(ty_Either, bdd), bde)) -> new_esEs7(vyw18, vyw13, bdd, bde) new_lt7(vyw43000, vyw44000) -> new_esEs9(new_compare19(vyw43000, vyw44000), LT) new_lt20(vyw43001, vyw44001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_lt17(vyw43001, vyw44001, dcf, dcg, dch) new_lt6(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Ordering) -> new_esEs9(vyw30, vyw400) new_esEs7(Left(vyw300), Right(vyw4000), hf, hg) -> False new_esEs7(Right(vyw300), Left(vyw4000), hf, hg) -> False new_ltEs6(GT, LT) -> False new_lt4(vyw43000, vyw44000, cc) -> new_esEs9(new_compare7(vyw43000, vyw44000, cc), LT) new_lt6(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_lt18(vyw43000, vyw44000, eg, eh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Ordering) new_ltEs18(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1) new_esEs20(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt4(x0, x1, x2) new_compare17(x0, x1, True) new_esEs24(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_@0) new_esEs22(x0, x1, ty_Float) new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, LT) new_esEs23(x0, x1, ty_Integer) new_esEs18(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_lt18(x0, x1, x2, x3) new_asAs(True, x0) new_primCompAux0(x0, x1, x2, x3) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_ltEs6(LT, LT) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs24(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs28(x0, x1, ty_@0) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_@0) new_ltEs7(Nothing, Just(x0), x1) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs17(False, False) new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs4(Just(x0), Just(x1), ty_Bool) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs29(x0, x1, ty_Float) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs7(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Bool) new_compare25(Left(x0), Right(x1), False, x2, x3) new_compare25(Right(x0), Left(x1), False, x2, x3) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, x2) new_pePe(False, x0) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(LT, LT) new_esEs30(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs31(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare210(x0, x1, False, x2, x3, x4) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Integer) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs19(x0, x1, ty_Int) new_compare28(x0, x1, x2, x3, x4) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt17(x0, x1, x2, x3, x4) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt12(x0, x1) new_esEs4(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_compare210(x0, x1, True, x2, x3, x4) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, ty_Integer) new_compare25(Left(x0), Left(x1), False, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs19(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_compare8(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare13(Char(x0), Char(x1)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_esEs27(x0, x1, ty_@0) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Bool) new_ltEs18(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs12(Double(x0, x1), Double(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_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, ty_Bool) new_asAs(False, x0) new_esEs22(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs21(x0, x1, ty_Ordering) new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, ty_Float) new_compare23(x0, x1, False, x2, x3) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_compare24(x0, x1, True) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_@0) new_compare113(x0, x1, False, x2, x3) new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs9(x0, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Double) new_lt14(x0, x1) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, ty_Char) new_esEs11(@0, @0) new_ltEs12(x0, x1) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Double) new_compare11(x0, x1, True, x2, x3) new_esEs10(x0, x1) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs14(False, False) new_primCompAux00(x0, GT) new_compare27(x0, x1, True, x2) new_lt6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Float) new_lt7(x0, x1) new_esEs23(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_lt20(x0, x1, ty_@0) new_sr(x0, x1) new_esEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs15([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Int) new_ltEs6(EQ, GT) new_ltEs5(x0, x1, ty_Bool) new_ltEs6(GT, EQ) new_lt20(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs20(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Int) new_lt9(x0, x1, x2, x3) new_esEs19(x0, x1, ty_Ordering) new_compare3(:(x0, x1), :(x2, x3), x4) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Double) new_esEs15(:(x0, x1), :(x2, x3), x4) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_@0) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(Just(x0), Just(x1), ty_Integer) new_ltEs5(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_compare111(x0, x1, True, x2) new_ltEs11(x0, x1) new_esEs18(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, ty_Ordering) new_esEs9(EQ, EQ) new_lt6(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_compare111(x0, x1, False, x2) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Nothing, Just(x0), x1) new_compare29(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Zero) new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare29(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, ty_Int) new_esEs17(True, True) new_ltEs6(EQ, EQ) new_ltEs18(Right(x0), Right(x1), x2, ty_Double) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt6(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs21(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt19(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Double) new_primPlusNat0(Zero, Zero) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Bool) new_ltEs14(True, True) new_not(True) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_lt6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Integer) new_compare25(x0, x1, True, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs32(x0, x1, ty_Char) new_compare12(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_lt6(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Right(x0), Right(x1), False, x2, x3) new_esEs29(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_compare15(x0, x1) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare3([], :(x0, x1), x2) new_esEs17(False, True) new_esEs17(True, False) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs20(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_compare26(x0, x1, False) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs9(GT, GT) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 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_esEs4(Just(x0), Just(x1), ty_Double) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Int) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs21(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_ltEs6(GT, GT) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(x0, x1, x2) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Double) new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs15([], [], x0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_ltEs15(x0, x1) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs22(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare110(x0, x1, True) new_compare17(x0, x1, False) new_esEs21(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs30(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), ty_@0) new_compare112(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_compare3([], [], x0) new_lt15(x0, x1) new_esEs21(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Nothing, Nothing, x0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs8(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs19(x0, x1, ty_Double) new_lt11(x0, x1) new_ltEs19(x0, x1, ty_Float) new_primEqNat0(Zero, Succ(x0)) new_ltEs18(Left(x0), Right(x1), x2, x3) new_ltEs18(Right(x0), Left(x1), x2, x3) new_esEs32(x0, x1, ty_Integer) new_ltEs18(Left(x0), Left(x1), ty_Int, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_pePe(True, x0) new_ltEs14(False, True) new_lt10(x0, x1) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_compare29(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1) new_ltEs13(x0, x1, x2) new_esEs23(x0, x1, ty_Float) new_not(False) new_ltEs21(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt6(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_ltEs18(Left(x0), Left(x1), ty_Char, x2) new_compare3(:(x0, x1), [], x2) new_ltEs5(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, True) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs15(:(x0, x1), [], x2) new_compare27(x0, x1, False, x2) new_compare10(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_Int) new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Just(x0), Nothing, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(x0, x1, True, x2, x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), x1) new_esEs4(Just(x0), Nothing, x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare9(x0, x1, x2, x3) 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. ---------------------------------------- (27) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (28) Complex Obligation (AND) ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(Right(vyw30), Left(vyw400), False, bd, be), LT), bc, bd, be) new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, 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_esEs9(new_compare25(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_esEs9(new_compare25(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_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_elemFM01(vyw31, Right(vyw33), bf, bg, bh) new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(Right(vyw30), Left(vyw400), False, bd, be), GT), bc, bd, be) 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_ltEs6(EQ, EQ) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_lt20(vyw43001, vyw44001, ty_Float) -> new_lt15(vyw43001, vyw44001) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_pePe(True, vyw122) -> True new_esEs18(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_esEs7(vyw43000, vyw44000, eg, eh) new_ltEs6(GT, GT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs5(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_lt20(vyw43001, vyw44001, ty_Ordering) -> new_lt7(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, app(ty_Ratio, hc)) -> new_esEs16(vyw30, vyw400, hc) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs30(vyw30, vyw400, ty_Float) -> new_esEs13(vyw30, vyw400) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_Ratio, cdh)) -> new_esEs16(vyw300, vyw4000, cdh) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_compare210(vyw43000, vyw44000, True, ed, ee, ef) -> EQ new_compare113(vyw113, vyw114, False, eag, eah) -> GT new_esEs18(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs30(vyw30, vyw400, ty_@0) -> new_esEs11(vyw30, vyw400) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_ltEs6(EQ, GT) -> True new_esEs24(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs12(vyw30, vyw400) new_esEs20(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cg), da), db)) -> new_esEs6(vyw300, vyw4000, cg, da, db) new_lt19(vyw43000, vyw44000, app(app(ty_Either, dbg), dbh)) -> new_lt18(vyw43000, vyw44000, dbg, dbh) new_esEs24(vyw300, vyw4000, app(ty_Ratio, chf)) -> new_esEs16(vyw300, vyw4000, chf) new_lt19(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, dbg), dbh)) -> new_esEs7(vyw43000, vyw44000, dbg, dbh) new_ltEs19(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) new_lt6(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Integer) -> new_lt12(vyw43001, vyw44001) new_compare3([], [], gf) -> EQ new_esEs7(Left(vyw300), Left(vyw4000), ty_Char, hg) -> new_esEs14(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_Ratio, cc)) -> new_esEs16(vyw43000, vyw44000, cc) new_compare26(vyw43000, vyw44000, True) -> EQ new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs14(vyw33, vyw28) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(vyw300, vyw4000, cde, cdf, cdg) new_esEs20(vyw300, vyw4000, app(app(ty_@2, bbh), bca)) -> new_esEs5(vyw300, vyw4000, bbh, bca) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs9(vyw30, vyw400) new_esEs32(vyw33, vyw28, app(ty_[], bgc)) -> new_esEs15(vyw33, vyw28, bgc) new_lt20(vyw43001, vyw44001, app(ty_[], dce)) -> new_lt13(vyw43001, vyw44001, dce) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs6(vyw18, vyw13, bcf, bcg, bch) new_ltEs19(vyw43002, vyw44002, ty_Bool) -> new_ltEs14(vyw43002, vyw44002) new_lt9(vyw43000, vyw44000, ca, cb) -> new_esEs9(new_compare9(vyw43000, vyw44000, ca, cb), LT) new_esEs19(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs19(vyw301, vyw4001, app(app(ty_@2, baf), bag)) -> new_esEs5(vyw301, vyw4001, baf, bag) new_compare19(vyw43000, vyw44000) -> new_compare26(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs22(vyw302, vyw4002, app(ty_Maybe, cee)) -> new_esEs4(vyw302, vyw4002, cee) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs13(vyw18, vyw13) new_esEs31(vyw30, vyw400, app(app(ty_@2, cab), cac)) -> new_esEs5(vyw30, vyw400, cab, cac) new_ltEs21(vyw4300, vyw4400, app(ty_[], dfe)) -> new_ltEs13(vyw4300, vyw4400, dfe) new_compare16(vyw43000, vyw44000, eg, eh) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, eg, eh), eg, eh) new_compare29(vyw43000, vyw44000, app(ty_Ratio, bfa)) -> new_compare7(vyw43000, vyw44000, bfa) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs22(vyw302, vyw4002, ty_Bool) -> new_esEs17(vyw302, vyw4002) new_not(True) -> False new_ltEs19(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_primCompAux00(vyw133, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs6(vyw300, vyw4000, bdh, bea, beb) new_lt19(vyw43000, vyw44000, app(ty_[], dbc)) -> new_lt13(vyw43000, vyw44000, dbc) new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Bool) -> new_lt14(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs17(vyw43001, vyw44001) new_lt15(vyw43000, vyw44000) -> new_esEs9(new_compare30(vyw43000, vyw44000), LT) new_ltEs5(vyw43001, vyw44001, ty_Ordering) -> new_ltEs6(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dd), de)) -> new_esEs5(vyw300, vyw4000, dd, de) new_esEs20(vyw300, vyw4000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(vyw300, vyw4000, bbd, bbe, bbf) new_esEs20(vyw300, vyw4000, app(app(ty_Either, bcb), bcc)) -> new_esEs7(vyw300, vyw4000, bcb, bcc) new_ltEs6(LT, GT) -> True new_lt6(vyw43000, vyw44000, app(ty_Ratio, cc)) -> new_lt4(vyw43000, vyw44000, cc) new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_compare27(vyw43000, vyw44000, True, eb) -> EQ new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare28(vyw43000, vyw44000, bfe, bff, bfg) new_esEs19(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs7(Nothing, Just(vyw44000), caf) -> True new_esEs19(vyw301, vyw4001, app(ty_Ratio, bae)) -> new_esEs16(vyw301, vyw4001, bae) new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs10(vyw43001, vyw44001) new_compare10(vyw43000, vyw44000, True, ca, cb) -> LT new_ltEs5(vyw43001, vyw44001, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs17(vyw43001, vyw44001, fg, fh, ga) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_ltEs5(vyw43001, vyw44001, app(app(ty_Either, gb), gc)) -> new_ltEs18(vyw43001, vyw44001, gb, gc) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs12(vyw18, vyw13) new_lt19(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, dac)) -> new_ltEs8(vyw4300, vyw4400, dac) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_esEs18(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_primCompAux00(vyw133, GT) -> GT new_lt20(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) new_compare110(vyw43000, vyw44000, True) -> LT new_compare12(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_esEs23(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, bfb), bfc)) -> new_compare9(vyw43000, vyw44000, bfb, bfc) new_lt19(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Ratio, ccf), hg) -> new_esEs16(vyw300, vyw4000, ccf) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs5(vyw43001, vyw44001, ty_Int) -> new_ltEs16(vyw43001, vyw44001) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, dh), ea)) -> new_ltEs4(vyw4300, vyw4400, dh, ea) new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_lt18(vyw43000, vyw44000, eg, eh) -> new_esEs9(new_compare16(vyw43000, vyw44000, eg, eh), LT) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs11(vyw18, vyw13) new_esEs20(vyw300, vyw4000, app(ty_Ratio, bbg)) -> new_esEs16(vyw300, vyw4000, bbg) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_lt20(vyw43001, vyw44001, app(ty_Maybe, dca)) -> new_lt8(vyw43001, vyw44001, dca) new_lt19(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_compare3(:(vyw43000, vyw43001), :(vyw44000, vyw44001), gf) -> new_primCompAux0(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, gf), gf) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs8(vyw43001, vyw44001) new_lt19(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs17(vyw33, vyw28) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs22(vyw302, vyw4002, ty_Integer) -> new_esEs8(vyw302, vyw4002) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs6(vyw30, vyw400, bhf, bhg, bhh) new_esEs7(Left(vyw300), Left(vyw4000), ty_Bool, hg) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(ty_Either, eae), eaf)) -> new_ltEs18(vyw43000, vyw44000, eae, eaf) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_esEs7(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, ccc), ccd), cce), hg) -> new_esEs6(vyw300, vyw4000, ccc, ccd, cce) new_ltEs19(vyw43002, vyw44002, ty_@0) -> new_ltEs10(vyw43002, vyw44002) new_esEs21(vyw300, vyw4000, app(app(ty_@2, bed), bee)) -> new_esEs5(vyw300, vyw4000, bed, bee) new_esEs19(vyw301, vyw4001, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs6(vyw301, vyw4001, bab, bac, bad) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, caf)) -> new_ltEs7(vyw4300, vyw4400, caf) new_ltEs17(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), dad, dae, daf) -> new_pePe(new_lt19(vyw43000, vyw44000, dad), new_asAs(new_esEs28(vyw43000, vyw44000, dad), new_pePe(new_lt20(vyw43001, vyw44001, dae), new_asAs(new_esEs27(vyw43001, vyw44001, dae), new_ltEs19(vyw43002, vyw44002, daf))))) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], cbc)) -> new_ltEs13(vyw43000, vyw44000, cbc) new_ltEs19(vyw43002, vyw44002, app(ty_[], ddg)) -> new_ltEs13(vyw43002, vyw44002, ddg) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, cba), cbb)) -> new_ltEs4(vyw43000, vyw44000, cba, cbb) new_lt19(vyw43000, vyw44000, app(ty_Maybe, dag)) -> new_lt8(vyw43000, vyw44000, dag) new_ltEs19(vyw43002, vyw44002, app(app(ty_@2, dde), ddf)) -> new_ltEs4(vyw43002, vyw44002, dde, ddf) new_esEs30(vyw30, vyw400, ty_Double) -> new_esEs12(vyw30, vyw400) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare30(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Ordering, deh) -> new_ltEs6(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_Either, dhc), dhd), deh) -> new_ltEs18(vyw43000, vyw44000, dhc, dhd) new_compare18(vyw43000, vyw44000, eb) -> new_compare27(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eb), eb) new_compare3([], :(vyw44000, vyw44001), gf) -> LT new_lt19(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_pePe(False, vyw122) -> vyw122 new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs13(vyw30, vyw400) new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Maybe, dgc), deh) -> new_ltEs7(vyw43000, vyw44000, dgc) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_compare25(vyw430, vyw440, True, dee, def) -> EQ new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare12(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Int, deh) -> new_ltEs16(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, ca, cb) -> new_compare10(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, ca, cb), ca, cb) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dc)) -> new_esEs16(vyw300, vyw4000, dc) new_ltEs6(LT, LT) -> True new_lt6(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bec)) -> new_esEs16(vyw300, vyw4000, bec) new_compare23(vyw43000, vyw44000, True, ca, cb) -> EQ new_ltEs5(vyw43001, vyw44001, app(ty_Maybe, fa)) -> new_ltEs7(vyw43001, vyw44001, fa) new_compare17(vyw43000, vyw44000, True) -> LT new_compare11(vyw106, vyw107, False, gd, ge) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs32(vyw33, vyw28, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs6(vyw33, vyw28, bgd, bge, bgf) new_esEs23(vyw301, vyw4001, app(ty_Maybe, cfg)) -> new_esEs4(vyw301, vyw4001, cfg) new_ltEs5(vyw43001, vyw44001, app(ty_[], ff)) -> new_ltEs13(vyw43001, vyw44001, ff) new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_[], dgg), deh) -> new_ltEs13(vyw43000, vyw44000, dgg) new_esEs7(Left(vyw300), Left(vyw4000), ty_Ordering, hg) -> new_esEs9(vyw300, vyw4000) new_lt6(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_ltEs14(True, True) -> True new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_esEs23(vyw301, vyw4001, app(app(ty_Either, cgg), cgh)) -> new_esEs7(vyw301, vyw4001, cgg, cgh) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, app(ty_Maybe, hh)) -> new_esEs4(vyw301, vyw4001, hh) new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, dad), dae), daf)) -> new_ltEs17(vyw4300, vyw4400, dad, dae, daf) new_compare13(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Double, hg) -> new_esEs12(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cah)) -> new_ltEs8(vyw43000, vyw44000, cah) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_Either, cda), cdb), hg) -> new_esEs7(vyw300, vyw4000, cda, cdb) new_ltEs5(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_esEs15([], [], gg) -> True new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs10(vyw18, vyw13) new_esEs24(vyw300, vyw4000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs6(vyw300, vyw4000, chc, chd, che) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs13(vyw300, vyw4000) new_ltEs6(LT, EQ) -> True new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare13(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(app(ty_@2, ca), cb)) -> new_lt9(vyw43000, vyw44000, ca, cb) new_esEs7(Left(vyw300), Left(vyw4000), ty_Integer, hg) -> new_esEs8(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, dga), dgb)) -> new_ltEs18(vyw4300, vyw4400, dga, dgb) new_esEs31(vyw30, vyw400, app(ty_Maybe, bhd)) -> new_esEs4(vyw30, vyw400, bhd) new_primPlusNat1(Succ(vyw1230), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw1230, vyw400000))) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare30(vyw4300, vyw4400), GT)) new_ltEs5(vyw43001, vyw44001, ty_Bool) -> new_ltEs14(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Float, deh) -> new_ltEs15(vyw43000, vyw44000) new_primPlusNat0(Succ(vyw12300), Zero) -> Succ(vyw12300) new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs10(vyw33, vyw28) new_ltEs4(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dh, ea) -> new_pePe(new_lt6(vyw43000, vyw44000, dh), new_asAs(new_esEs18(vyw43000, vyw44000, dh), new_ltEs5(vyw43001, vyw44001, ea))) new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) new_esEs23(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs11(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, app(ty_[], dbc)) -> new_esEs15(vyw43000, vyw44000, dbc) new_compare27(vyw43000, vyw44000, False, eb) -> new_compare111(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, eb), eb) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs20(vyw300, vyw4000, app(ty_Maybe, bbb)) -> new_esEs4(vyw300, vyw4000, bbb) new_esEs22(vyw302, vyw4002, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(vyw302, vyw4002, ceg, ceh, cfa) new_esEs9(LT, LT) -> True new_lt20(vyw43001, vyw44001, ty_Int) -> new_lt16(vyw43001, vyw44001) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Char) -> new_lt10(vyw43001, vyw44001) new_primCompAux0(vyw43000, vyw44000, vyw124, gf) -> new_primCompAux00(vyw124, new_compare29(vyw43000, vyw44000, gf)) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Maybe, cca), hg) -> new_esEs4(vyw300, vyw4000, cca) new_esEs23(vyw301, vyw4001, app(app(ty_@2, cge), cgf)) -> new_esEs5(vyw301, vyw4001, cge, cgf) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) new_esEs12(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_Ratio, dhf)) -> new_ltEs8(vyw43000, vyw44000, dhf) new_esEs18(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt16(vyw43000, vyw44000) -> new_esEs9(new_compare6(vyw43000, vyw44000), LT) new_lt5(vyw43000, vyw44000) -> new_esEs9(new_compare8(vyw43000, vyw44000), LT) new_esEs7(Left(vyw300), Left(vyw4000), ty_@0, hg) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs6(vyw301, vyw4001, cga, cgb, cgc) new_esEs19(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs17(vyw18, vyw13) new_esEs21(vyw300, vyw4000, app(ty_Maybe, bdf)) -> new_esEs4(vyw300, vyw4000, bdf) new_lt20(vyw43001, vyw44001, app(app(ty_@2, dcc), dcd)) -> new_lt9(vyw43001, vyw44001, dcc, dcd) new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs32(vyw33, vyw28, app(ty_Maybe, bgb)) -> new_esEs4(vyw33, vyw28, bgb) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_esEs23(vyw301, vyw4001, app(ty_Ratio, cgd)) -> new_esEs16(vyw301, vyw4001, cgd) new_esEs24(vyw300, vyw4000, app(app(ty_@2, chg), chh)) -> new_esEs5(vyw300, vyw4000, chg, chh) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs24(vyw300, vyw4000, app(app(ty_Either, daa), dab)) -> new_esEs7(vyw300, vyw4000, daa, dab) new_lt19(vyw43000, vyw44000, app(app(ty_@2, dba), dbb)) -> new_lt9(vyw43000, vyw44000, dba, dbb) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs12(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, ce)) -> new_esEs4(vyw300, vyw4000, ce) new_lt6(vyw43000, vyw44000, app(ty_[], ec)) -> new_lt13(vyw43000, vyw44000, ec) new_esEs24(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_compare29(vyw43000, vyw44000, app(ty_[], bfd)) -> new_compare3(vyw43000, vyw44000, bfd) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs17(vyw4300, vyw4400, dff, dfg, dfh) new_esEs19(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(ty_[], dce)) -> new_esEs15(vyw43001, vyw44001, dce) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs9(vyw43001, vyw44001) new_compare113(vyw113, vyw114, True, eag, eah) -> LT new_esEs22(vyw302, vyw4002, app(ty_Ratio, cfb)) -> new_esEs16(vyw302, vyw4002, cfb) new_ltEs19(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs13(vyw4300, vyw4400, gf) -> new_not(new_esEs9(new_compare3(vyw4300, vyw4400, gf), GT)) new_esEs23(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_@2, dcc), dcd)) -> new_esEs5(vyw43001, vyw44001, dcc, dcd) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_lt19(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(ty_Maybe, eb)) -> new_lt8(vyw43000, vyw44000, eb) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare12(vyw4300, vyw4400), GT)) new_esEs30(vyw30, vyw400, app(ty_Maybe, cd)) -> new_esEs4(vyw30, vyw400, cd) new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs8(vyw18, vyw13) new_esEs24(vyw300, vyw4000, app(ty_[], chb)) -> new_esEs15(vyw300, vyw4000, chb) new_esEs24(vyw300, vyw4000, app(ty_Maybe, cha)) -> new_esEs4(vyw300, vyw4000, cha) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_@0, deh) -> new_ltEs10(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_[], gg)) -> new_esEs15(vyw30, vyw400, gg) new_ltEs6(GT, EQ) -> False new_esEs30(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Char) -> new_esEs14(vyw300, vyw4000) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_compare15(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs17(vyw43000, vyw44000)) new_esEs18(vyw43000, vyw44000, app(ty_Maybe, eb)) -> new_esEs4(vyw43000, vyw44000, eb) new_esEs20(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs6(vyw43001, vyw44001, dcf, dcg, dch) new_esEs32(vyw33, vyw28, app(app(ty_Either, bhb), bhc)) -> new_esEs7(vyw33, vyw28, bhb, bhc) new_esEs20(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Int) -> new_ltEs16(vyw43002, vyw44002) new_lt19(vyw43000, vyw44000, app(ty_Ratio, dah)) -> new_lt4(vyw43000, vyw44000, dah) new_compare25(Left(vyw4300), Right(vyw4400), False, dee, def) -> LT new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), gh, ha, hb) -> new_asAs(new_esEs24(vyw300, vyw4000, gh), new_asAs(new_esEs23(vyw301, vyw4001, ha), new_esEs22(vyw302, vyw4002, hb))) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_asAs(True, vyw101) -> vyw101 new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs10(vyw300, vyw4000) new_compare10(vyw43000, vyw44000, False, ca, cb) -> GT new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, app(ty_Ratio, dcb)) -> new_lt4(vyw43001, vyw44001, dcb) new_esEs8(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, dfa)) -> new_ltEs7(vyw4300, vyw4400, dfa) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_[], cdd)) -> new_esEs15(vyw300, vyw4000, cdd) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_Maybe, cdc)) -> new_esEs4(vyw300, vyw4000, cdc) new_esEs20(vyw300, vyw4000, app(ty_[], bbc)) -> new_esEs15(vyw300, vyw4000, bbc) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs13(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Float, hg) -> new_esEs13(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs13(vyw33, vyw28) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Ordering) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_ltEs19(vyw43002, vyw44002, app(app(app(ty_@3, ddh), dea), deb)) -> new_ltEs17(vyw43002, vyw44002, ddh, dea, deb) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_[], ccb), hg) -> new_esEs15(vyw300, vyw4000, ccb) new_compare110(vyw43000, vyw44000, False) -> GT new_ltEs5(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) new_primCompAux00(vyw133, EQ) -> vyw133 new_sr(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_esEs22(vyw302, vyw4002, ty_@0) -> new_esEs11(vyw302, vyw4002) new_ltEs7(Nothing, Nothing, caf) -> True new_esEs5(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hd, he) -> new_asAs(new_esEs20(vyw300, vyw4000, hd), new_esEs19(vyw301, vyw4001, he)) new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare13(vyw4300, vyw4400), GT)) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bef), beg)) -> new_esEs7(vyw300, vyw4000, bef, beg) new_compare25(Right(vyw4300), Right(vyw4400), False, dee, def) -> new_compare113(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, def), dee, def) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs30(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, dcb)) -> new_esEs16(vyw43001, vyw44001, dcb) new_ltEs5(vyw43001, vyw44001, app(app(ty_@2, fc), fd)) -> new_ltEs4(vyw43001, vyw44001, fc, fd) new_esEs23(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_ltEs5(vyw43001, vyw44001, ty_@0) -> new_ltEs10(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000) -> new_esEs9(new_compare14(vyw43000, vyw44000), LT) new_esEs22(vyw302, vyw4002, app(app(ty_@2, cfc), cfd)) -> new_esEs5(vyw302, vyw4002, cfc, cfd) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, dfb)) -> new_ltEs8(vyw4300, vyw4400, dfb) new_ltEs7(Just(vyw43000), Nothing, caf) -> False new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(ty_Maybe, dag)) -> new_esEs4(vyw43000, vyw44000, dag) new_esEs19(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_esEs15(:(vyw300, vyw301), [], gg) -> False new_esEs15([], :(vyw4000, vyw4001), gg) -> False new_lt17(vyw43000, vyw44000, ed, ee, ef) -> new_esEs9(new_compare28(vyw43000, vyw44000, ed, ee, ef), LT) new_ltEs6(EQ, LT) -> False new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare15(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_@2, ccg), cch), hg) -> new_esEs5(vyw300, vyw4000, ccg, cch) new_esEs22(vyw302, vyw4002, app(app(ty_Either, cfe), cff)) -> new_esEs7(vyw302, vyw4002, cfe, cff) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs13(vyw43001, vyw44001) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs17(vyw43000, vyw44000, eab, eac, ead) new_esEs4(Nothing, Nothing, cd) -> True new_lt8(vyw43000, vyw44000, eb) -> new_esEs9(new_compare18(vyw43000, vyw44000, eb), LT) new_esEs4(Nothing, Just(vyw4000), cd) -> False new_esEs4(Just(vyw300), Nothing, cd) -> False new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare14(vyw4300, vyw4400), GT)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_esEs22(vyw302, vyw4002, ty_Ordering) -> new_esEs9(vyw302, vyw4002) new_ltEs14(False, True) -> True new_esEs29(vyw18, vyw13, app(ty_[], bce)) -> new_esEs15(vyw18, vyw13, bce) new_esEs32(vyw33, vyw28, app(app(ty_@2, bgh), bha)) -> new_esEs5(vyw33, vyw28, bgh, bha) new_esEs9(EQ, EQ) -> True new_esEs18(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, df), dg)) -> new_esEs7(vyw300, vyw4000, df, dg) new_esEs18(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs19(vyw43002, vyw44002, app(ty_Maybe, ddc)) -> new_ltEs7(vyw43002, vyw44002, ddc) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, deg), deh)) -> new_ltEs18(vyw4300, vyw4400, deg, deh) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs22(vyw302, vyw4002, ty_Int) -> new_esEs10(vyw302, vyw4002) new_ltEs8(vyw4300, vyw4400, dac) -> new_not(new_esEs9(new_compare7(vyw4300, vyw4400, dac), GT)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs24(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_[], ec)) -> new_esEs15(vyw43000, vyw44000, ec) new_esEs24(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(ty_@2, cea), ceb)) -> new_esEs5(vyw300, vyw4000, cea, ceb) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(ty_Either, cec), ced)) -> new_esEs7(vyw300, vyw4000, cec, ced) new_lt10(vyw43000, vyw44000) -> new_esEs9(new_compare13(vyw43000, vyw44000), LT) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, dgh), dha), dhb), deh) -> new_ltEs17(vyw43000, vyw44000, dgh, dha, dhb) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(ty_@2, dhg), dhh)) -> new_ltEs4(vyw43000, vyw44000, dhg, dhh) new_esEs32(vyw33, vyw28, app(ty_Ratio, bgg)) -> new_esEs16(vyw33, vyw28, bgg) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, cbg), cbh)) -> new_ltEs18(vyw43000, vyw44000, cbg, cbh) new_esEs22(vyw302, vyw4002, ty_Float) -> new_esEs13(vyw302, vyw4002) new_ltEs19(vyw43002, vyw44002, app(app(ty_Either, dec), ded)) -> new_ltEs18(vyw43002, vyw44002, dec, ded) new_esEs29(vyw18, vyw13, app(ty_Maybe, bcd)) -> new_esEs4(vyw18, vyw13, bcd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt19(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False, eb) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Double, deh) -> new_ltEs11(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_Maybe, dhe)) -> new_ltEs7(vyw43000, vyw44000, dhe) new_esEs17(True, True) -> True new_esEs16(:%(vyw300, vyw301), :%(vyw4000, vyw4001), hc) -> new_asAs(new_esEs26(vyw300, vyw4000, hc), new_esEs25(vyw301, vyw4001, hc)) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cag)) -> new_ltEs7(vyw43000, vyw44000, cag) new_esEs15(:(vyw300, vyw301), :(vyw4000, vyw4001), gg) -> new_asAs(new_esEs21(vyw300, vyw4000, gg), new_esEs15(vyw301, vyw4001, gg)) new_compare29(vyw43000, vyw44000, app(app(ty_Either, bfh), bga)) -> new_compare16(vyw43000, vyw44000, bfh, bga) new_ltEs5(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(vyw43000, vyw44000, ed, ee, ef) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_esEs23(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs22(vyw302, vyw4002, ty_Double) -> new_esEs12(vyw302, vyw4002) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_[], eaa)) -> new_ltEs13(vyw43000, vyw44000, eaa) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_ltEs19(vyw43002, vyw44002, app(ty_Ratio, ddd)) -> new_ltEs8(vyw43002, vyw44002, ddd) new_lt14(vyw43000, vyw44000) -> new_esEs9(new_compare15(vyw43000, vyw44000), LT) new_ltEs20(vyw4300, vyw4400, app(ty_[], gf)) -> new_ltEs13(vyw4300, vyw4400, gf) new_esEs23(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_compare112(vyw43000, vyw44000, True, ed, ee, ef) -> LT new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, ed, ee, ef) -> new_compare210(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) new_esEs19(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, dda), ddb)) -> new_esEs7(vyw43001, vyw44001, dda, ddb) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_@2, dge), dgf), deh) -> new_ltEs4(vyw43000, vyw44000, dge, dgf) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], cf)) -> new_esEs15(vyw300, vyw4000, cf) new_esEs9(GT, GT) -> True new_compare25(Right(vyw4300), Left(vyw4400), False, dee, def) -> GT new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare12(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_lt13(vyw43000, vyw44000, ec) -> new_esEs9(new_compare3(vyw43000, vyw44000, ec), LT) new_primPlusNat0(Succ(vyw12300), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw12300, vyw4000000))) new_esEs31(vyw30, vyw400, app(ty_[], bhe)) -> new_esEs15(vyw30, vyw400, bhe) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, ed, ee, ef) -> new_compare112(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs9(vyw33, vyw28) new_esEs19(vyw301, vyw4001, app(ty_[], baa)) -> new_esEs15(vyw301, vyw4001, baa) new_compare112(vyw43000, vyw44000, False, ed, ee, ef) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Integer, deh) -> new_ltEs12(vyw43000, vyw44000) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare8(vyw4300, vyw4400), GT)) new_esEs31(vyw30, vyw400, app(ty_Ratio, caa)) -> new_esEs16(vyw30, vyw400, caa) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs5(vyw43001, vyw44001, app(ty_Ratio, fb)) -> new_ltEs8(vyw43001, vyw44001, fb) new_esEs30(vyw30, vyw400, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs6(vyw30, vyw400, gh, ha, hb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Ratio, dgd), deh) -> new_ltEs8(vyw43000, vyw44000, dgd) new_esEs20(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_compare11(vyw106, vyw107, True, gd, ge) -> LT new_ltEs19(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs12(vyw33, vyw28) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare6(vyw4300, vyw4400), GT)) new_lt6(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_lt20(vyw43001, vyw44001, app(app(ty_Either, dda), ddb)) -> new_lt18(vyw43001, vyw44001, dda, ddb) new_esEs10(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs8(vyw33, vyw28) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs11(vyw30, vyw400) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare9(vyw43000, vyw44000, ca, cb) -> new_compare23(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ca, cb), ca, cb) new_esEs20(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs31(vyw30, vyw400, app(app(ty_Either, cad), cae)) -> new_esEs7(vyw30, vyw400, cad, cae) new_compare26(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs6(vyw43000, vyw44000)) new_esEs28(vyw43000, vyw44000, app(app(ty_@2, dba), dbb)) -> new_esEs5(vyw43000, vyw44000, dba, dbb) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_esEs19(vyw301, vyw4001, app(app(ty_Either, bah), bba)) -> new_esEs7(vyw301, vyw4001, bah, bba) new_lt6(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt17(vyw43000, vyw44000, ed, ee, ef) new_compare111(vyw43000, vyw44000, True, eb) -> LT new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs17(vyw43000, vyw44000, cbd, cbe, cbf) new_esEs23(vyw301, vyw4001, app(ty_[], cfh)) -> new_esEs15(vyw301, vyw4001, cfh) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Bool, deh) -> new_ltEs14(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, dfc), dfd)) -> new_ltEs4(vyw4300, vyw4400, dfc, dfd) new_lt20(vyw43001, vyw44001, ty_@0) -> new_lt5(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Right(vyw44000), deg, deh) -> True new_compare25(Left(vyw4300), Left(vyw4400), False, dee, def) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, dee), dee, def) new_compare24(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000)) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs30(vyw30, vyw400, app(app(ty_@2, hd), he)) -> new_esEs5(vyw30, vyw400, hd, he) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs7(Left(vyw300), Left(vyw4000), ty_Int, hg) -> new_esEs10(vyw300, vyw4000) new_lt12(vyw43000, vyw44000) -> new_esEs9(new_compare12(vyw43000, vyw44000), LT) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_@0) -> new_esEs11(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Left(vyw44000), deg, deh) -> False new_ltEs14(False, False) -> True new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs8(vyw30, vyw400) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, dca)) -> new_esEs4(vyw43001, vyw44001, dca) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, dah)) -> new_esEs16(vyw43000, vyw44000, dah) new_compare3(:(vyw43000, vyw43001), [], gf) -> GT new_esEs22(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs18(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Integer) -> new_esEs8(vyw30, vyw400) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs20(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs11(@0, @0) -> True new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_compare8(@0, @0) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs29(vyw18, vyw13, app(ty_Ratio, bda)) -> new_esEs16(vyw18, vyw13, bda) new_esEs18(vyw43000, vyw44000, app(app(ty_@2, ca), cb)) -> new_esEs5(vyw43000, vyw44000, ca, cb) new_primEqNat0(Zero, Zero) -> True new_compare29(vyw43000, vyw44000, app(ty_Maybe, beh)) -> new_compare18(vyw43000, vyw44000, beh) new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs11(vyw33, vyw28) new_esEs24(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, app(ty_[], bdg)) -> new_esEs15(vyw300, vyw4000, bdg) new_lt19(vyw43000, vyw44000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt17(vyw43000, vyw44000, dbd, dbe, dbf) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare19(vyw43000, vyw44000) new_esEs18(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs19(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs6(vyw43000, vyw44000, dbd, dbe, dbf) new_esEs30(vyw30, vyw400, app(app(ty_Either, hf), hg)) -> new_esEs7(vyw30, vyw400, hf, hg) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Char, deh) -> new_ltEs9(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_@2, bdb), bdc)) -> new_esEs5(vyw18, vyw13, bdb, bdc) new_esEs22(vyw302, vyw4002, app(ty_[], cef)) -> new_esEs15(vyw302, vyw4002, cef) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs14(True, False) -> False new_asAs(False, vyw101) -> False new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) new_esEs29(vyw18, vyw13, app(app(ty_Either, bdd), bde)) -> new_esEs7(vyw18, vyw13, bdd, bde) new_lt7(vyw43000, vyw44000) -> new_esEs9(new_compare19(vyw43000, vyw44000), LT) new_lt20(vyw43001, vyw44001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_lt17(vyw43001, vyw44001, dcf, dcg, dch) new_lt6(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Ordering) -> new_esEs9(vyw30, vyw400) new_esEs7(Left(vyw300), Right(vyw4000), hf, hg) -> False new_esEs7(Right(vyw300), Left(vyw4000), hf, hg) -> False new_ltEs6(GT, LT) -> False new_lt4(vyw43000, vyw44000, cc) -> new_esEs9(new_compare7(vyw43000, vyw44000, cc), LT) new_lt6(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_lt18(vyw43000, vyw44000, eg, eh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Ordering) new_ltEs18(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1) new_esEs20(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt4(x0, x1, x2) new_compare17(x0, x1, True) new_esEs24(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_@0) new_esEs22(x0, x1, ty_Float) new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, LT) new_esEs23(x0, x1, ty_Integer) new_esEs18(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_lt18(x0, x1, x2, x3) new_asAs(True, x0) new_primCompAux0(x0, x1, x2, x3) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_ltEs6(LT, LT) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs24(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs28(x0, x1, ty_@0) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_@0) new_ltEs7(Nothing, Just(x0), x1) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs17(False, False) new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs4(Just(x0), Just(x1), ty_Bool) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs29(x0, x1, ty_Float) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs7(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Bool) new_compare25(Left(x0), Right(x1), False, x2, x3) new_compare25(Right(x0), Left(x1), False, x2, x3) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, x2) new_pePe(False, x0) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(LT, LT) new_esEs30(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs31(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare210(x0, x1, False, x2, x3, x4) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Integer) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs19(x0, x1, ty_Int) new_compare28(x0, x1, x2, x3, x4) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt17(x0, x1, x2, x3, x4) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt12(x0, x1) new_esEs4(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_compare210(x0, x1, True, x2, x3, x4) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, ty_Integer) new_compare25(Left(x0), Left(x1), False, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs19(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_compare8(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare13(Char(x0), Char(x1)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_esEs27(x0, x1, ty_@0) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Bool) new_ltEs18(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs12(Double(x0, x1), Double(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_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, ty_Bool) new_asAs(False, x0) new_esEs22(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs21(x0, x1, ty_Ordering) new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, ty_Float) new_compare23(x0, x1, False, x2, x3) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_compare24(x0, x1, True) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_@0) new_compare113(x0, x1, False, x2, x3) new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs9(x0, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Double) new_lt14(x0, x1) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, ty_Char) new_esEs11(@0, @0) new_ltEs12(x0, x1) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Double) new_compare11(x0, x1, True, x2, x3) new_esEs10(x0, x1) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs14(False, False) new_primCompAux00(x0, GT) new_compare27(x0, x1, True, x2) new_lt6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Float) new_lt7(x0, x1) new_esEs23(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_lt20(x0, x1, ty_@0) new_sr(x0, x1) new_esEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs15([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Int) new_ltEs6(EQ, GT) new_ltEs5(x0, x1, ty_Bool) new_ltEs6(GT, EQ) new_lt20(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs20(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Int) new_lt9(x0, x1, x2, x3) new_esEs19(x0, x1, ty_Ordering) new_compare3(:(x0, x1), :(x2, x3), x4) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Double) new_esEs15(:(x0, x1), :(x2, x3), x4) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_@0) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(Just(x0), Just(x1), ty_Integer) new_ltEs5(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_compare111(x0, x1, True, x2) new_ltEs11(x0, x1) new_esEs18(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, ty_Ordering) new_esEs9(EQ, EQ) new_lt6(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_compare111(x0, x1, False, x2) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Nothing, Just(x0), x1) new_compare29(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Zero) new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare29(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, ty_Int) new_esEs17(True, True) new_ltEs6(EQ, EQ) new_ltEs18(Right(x0), Right(x1), x2, ty_Double) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt6(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs21(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt19(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Double) new_primPlusNat0(Zero, Zero) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Bool) new_ltEs14(True, True) new_not(True) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_lt6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Integer) new_compare25(x0, x1, True, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs32(x0, x1, ty_Char) new_compare12(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_lt6(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Right(x0), Right(x1), False, x2, x3) new_esEs29(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_compare15(x0, x1) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare3([], :(x0, x1), x2) new_esEs17(False, True) new_esEs17(True, False) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs20(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_compare26(x0, x1, False) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs9(GT, GT) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 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_esEs4(Just(x0), Just(x1), ty_Double) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Int) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs21(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_ltEs6(GT, GT) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(x0, x1, x2) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Double) new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs15([], [], x0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_ltEs15(x0, x1) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs22(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare110(x0, x1, True) new_compare17(x0, x1, False) new_esEs21(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs30(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), ty_@0) new_compare112(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_compare3([], [], x0) new_lt15(x0, x1) new_esEs21(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Nothing, Nothing, x0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs8(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs19(x0, x1, ty_Double) new_lt11(x0, x1) new_ltEs19(x0, x1, ty_Float) new_primEqNat0(Zero, Succ(x0)) new_ltEs18(Left(x0), Right(x1), x2, x3) new_ltEs18(Right(x0), Left(x1), x2, x3) new_esEs32(x0, x1, ty_Integer) new_ltEs18(Left(x0), Left(x1), ty_Int, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_pePe(True, x0) new_ltEs14(False, True) new_lt10(x0, x1) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_compare29(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1) new_ltEs13(x0, x1, x2) new_esEs23(x0, x1, ty_Float) new_not(False) new_ltEs21(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt6(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_ltEs18(Left(x0), Left(x1), ty_Char, x2) new_compare3(:(x0, x1), [], x2) new_ltEs5(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, True) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs15(:(x0, x1), [], x2) new_compare27(x0, x1, False, x2) new_compare10(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_Int) new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Just(x0), Nothing, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(x0, x1, True, x2, x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), x1) new_esEs4(Just(x0), Nothing, x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare9(x0, x1, x2, x3) 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. ---------------------------------------- (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_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_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM06(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM03(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Right(vyw30), bc, bd, be) -> new_elemFM04(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_elemFM04(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_elemFM07(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs9(new_compare25(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_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_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_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 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM0(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_esEs9(new_compare25(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_esEs9(new_compare25(Left(vyw30), Right(vyw400), False, 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_esEs9(new_compare25(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) new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, True, bc, bd, be) -> new_elemFM01(vyw43, Left(vyw30), bc, bd, be) new_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_elemFM01(vyw16, Left(vyw18), h, ba, bb) The TRS R consists of the following rules: new_ltEs6(EQ, EQ) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs12(vyw300, vyw4000) new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_lt20(vyw43001, vyw44001, ty_Float) -> new_lt15(vyw43001, vyw44001) new_primPlusNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_pePe(True, vyw122) -> True new_esEs18(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_esEs7(vyw43000, vyw44000, eg, eh) new_ltEs6(GT, GT) -> True new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_ltEs5(vyw43001, vyw44001, ty_Char) -> new_ltEs9(vyw43001, vyw44001) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_lt20(vyw43001, vyw44001, ty_Ordering) -> new_lt7(vyw43001, vyw44001) new_esEs30(vyw30, vyw400, app(ty_Ratio, hc)) -> new_esEs16(vyw30, vyw400, hc) new_esEs14(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_esEs9(LT, EQ) -> False new_esEs9(EQ, LT) -> False new_esEs30(vyw30, vyw400, ty_Float) -> new_esEs13(vyw30, vyw400) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_Ratio, cdh)) -> new_esEs16(vyw300, vyw4000, cdh) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_compare210(vyw43000, vyw44000, True, ed, ee, ef) -> EQ new_compare113(vyw113, vyw114, False, eag, eah) -> GT new_esEs18(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs24(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs30(vyw30, vyw400, ty_@0) -> new_esEs11(vyw30, vyw400) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_ltEs6(EQ, GT) -> True new_esEs24(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs12(vyw30, vyw400) new_esEs20(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, cg), da), db)) -> new_esEs6(vyw300, vyw4000, cg, da, db) new_lt19(vyw43000, vyw44000, app(app(ty_Either, dbg), dbh)) -> new_lt18(vyw43000, vyw44000, dbg, dbh) new_esEs24(vyw300, vyw4000, app(ty_Ratio, chf)) -> new_esEs16(vyw300, vyw4000, chf) new_lt19(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(app(ty_Either, dbg), dbh)) -> new_esEs7(vyw43000, vyw44000, dbg, dbh) new_ltEs19(vyw43002, vyw44002, ty_Double) -> new_ltEs11(vyw43002, vyw44002) new_lt6(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Integer) -> new_lt12(vyw43001, vyw44001) new_compare3([], [], gf) -> EQ new_esEs7(Left(vyw300), Left(vyw4000), ty_Char, hg) -> new_esEs14(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_Ratio, cc)) -> new_esEs16(vyw43000, vyw44000, cc) new_compare26(vyw43000, vyw44000, True) -> EQ new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs14(vyw33, vyw28) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(vyw300, vyw4000, cde, cdf, cdg) new_esEs20(vyw300, vyw4000, app(app(ty_@2, bbh), bca)) -> new_esEs5(vyw300, vyw4000, bbh, bca) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs9(vyw30, vyw400) new_esEs32(vyw33, vyw28, app(ty_[], bgc)) -> new_esEs15(vyw33, vyw28, bgc) new_lt20(vyw43001, vyw44001, app(ty_[], dce)) -> new_lt13(vyw43001, vyw44001, dce) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs6(vyw18, vyw13, bcf, bcg, bch) new_ltEs19(vyw43002, vyw44002, ty_Bool) -> new_ltEs14(vyw43002, vyw44002) new_lt9(vyw43000, vyw44000, ca, cb) -> new_esEs9(new_compare9(vyw43000, vyw44000, ca, cb), LT) new_esEs19(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs19(vyw301, vyw4001, app(app(ty_@2, baf), bag)) -> new_esEs5(vyw301, vyw4001, baf, bag) new_compare19(vyw43000, vyw44000) -> new_compare26(vyw43000, vyw44000, new_esEs9(vyw43000, vyw44000)) new_esEs22(vyw302, vyw4002, app(ty_Maybe, cee)) -> new_esEs4(vyw302, vyw4002, cee) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs13(vyw18, vyw13) new_esEs31(vyw30, vyw400, app(app(ty_@2, cab), cac)) -> new_esEs5(vyw30, vyw400, cab, cac) new_ltEs21(vyw4300, vyw4400, app(ty_[], dfe)) -> new_ltEs13(vyw4300, vyw4400, dfe) new_compare16(vyw43000, vyw44000, eg, eh) -> new_compare25(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, eg, eh), eg, eh) new_compare29(vyw43000, vyw44000, app(ty_Ratio, bfa)) -> new_compare7(vyw43000, vyw44000, bfa) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs22(vyw302, vyw4002, ty_Bool) -> new_esEs17(vyw302, vyw4002) new_not(True) -> False new_ltEs19(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_primCompAux00(vyw133, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw300, vyw4000, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs6(vyw300, vyw4000, bdh, bea, beb) new_lt19(vyw43000, vyw44000, app(ty_[], dbc)) -> new_lt13(vyw43000, vyw44000, dbc) new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs28(vyw43000, vyw44000, ty_Float) -> new_esEs13(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Bool) -> new_lt14(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_Bool) -> new_esEs17(vyw43001, vyw44001) new_lt15(vyw43000, vyw44000) -> new_esEs9(new_compare30(vyw43000, vyw44000), LT) new_ltEs5(vyw43001, vyw44001, ty_Ordering) -> new_ltEs6(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dd), de)) -> new_esEs5(vyw300, vyw4000, dd, de) new_esEs20(vyw300, vyw4000, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(vyw300, vyw4000, bbd, bbe, bbf) new_esEs20(vyw300, vyw4000, app(app(ty_Either, bcb), bcc)) -> new_esEs7(vyw300, vyw4000, bcb, bcc) new_ltEs6(LT, GT) -> True new_lt6(vyw43000, vyw44000, app(ty_Ratio, cc)) -> new_lt4(vyw43000, vyw44000, cc) new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_compare27(vyw43000, vyw44000, True, eb) -> EQ new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_compare28(vyw43000, vyw44000, bfe, bff, bfg) new_esEs19(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs7(Nothing, Just(vyw44000), caf) -> True new_esEs19(vyw301, vyw4001, app(ty_Ratio, bae)) -> new_esEs16(vyw301, vyw4001, bae) new_esEs27(vyw43001, vyw44001, ty_Int) -> new_esEs10(vyw43001, vyw44001) new_compare10(vyw43000, vyw44000, True, ca, cb) -> LT new_ltEs5(vyw43001, vyw44001, app(app(app(ty_@3, fg), fh), ga)) -> new_ltEs17(vyw43001, vyw44001, fg, fh, ga) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_ltEs5(vyw43001, vyw44001, app(app(ty_Either, gb), gc)) -> new_ltEs18(vyw43001, vyw44001, gb, gc) new_esEs28(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs12(vyw18, vyw13) new_lt19(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, dac)) -> new_ltEs8(vyw4300, vyw4400, dac) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_esEs18(vyw43000, vyw44000, ty_@0) -> new_esEs11(vyw43000, vyw44000) new_primCompAux00(vyw133, GT) -> GT new_lt20(vyw43001, vyw44001, ty_Double) -> new_lt11(vyw43001, vyw44001) new_compare110(vyw43000, vyw44000, True) -> LT new_compare12(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_esEs23(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, bfb), bfc)) -> new_compare9(vyw43000, vyw44000, bfb, bfc) new_lt19(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Ratio, ccf), hg) -> new_esEs16(vyw300, vyw4000, ccf) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs11(vyw4300, vyw4400) new_ltEs5(vyw43001, vyw44001, ty_Int) -> new_ltEs16(vyw43001, vyw44001) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_esEs28(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, dh), ea)) -> new_ltEs4(vyw4300, vyw4400, dh, ea) new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_lt18(vyw43000, vyw44000, eg, eh) -> new_esEs9(new_compare16(vyw43000, vyw44000, eg, eh), LT) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs11(vyw18, vyw13) new_esEs20(vyw300, vyw4000, app(ty_Ratio, bbg)) -> new_esEs16(vyw300, vyw4000, bbg) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs14(vyw4300, vyw4400) new_lt20(vyw43001, vyw44001, app(ty_Maybe, dca)) -> new_lt8(vyw43001, vyw44001, dca) new_lt19(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_compare3(:(vyw43000, vyw43001), :(vyw44000, vyw44001), gf) -> new_primCompAux0(vyw43000, vyw44000, new_compare3(vyw43001, vyw44001, gf), gf) new_esEs21(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, ty_Integer) -> new_esEs8(vyw43001, vyw44001) new_lt19(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs17(vyw33, vyw28) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs22(vyw302, vyw4002, ty_Integer) -> new_esEs8(vyw302, vyw4002) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs6(vyw30, vyw400, bhf, bhg, bhh) new_esEs7(Left(vyw300), Left(vyw4000), ty_Bool, hg) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(ty_Either, eae), eaf)) -> new_ltEs18(vyw43000, vyw44000, eae, eaf) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_esEs7(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, ccc), ccd), cce), hg) -> new_esEs6(vyw300, vyw4000, ccc, ccd, cce) new_ltEs19(vyw43002, vyw44002, ty_@0) -> new_ltEs10(vyw43002, vyw44002) new_esEs21(vyw300, vyw4000, app(app(ty_@2, bed), bee)) -> new_esEs5(vyw300, vyw4000, bed, bee) new_esEs19(vyw301, vyw4001, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs6(vyw301, vyw4001, bab, bac, bad) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs10(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, caf)) -> new_ltEs7(vyw4300, vyw4400, caf) new_ltEs17(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), dad, dae, daf) -> new_pePe(new_lt19(vyw43000, vyw44000, dad), new_asAs(new_esEs28(vyw43000, vyw44000, dad), new_pePe(new_lt20(vyw43001, vyw44001, dae), new_asAs(new_esEs27(vyw43001, vyw44001, dae), new_ltEs19(vyw43002, vyw44002, daf))))) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_[], cbc)) -> new_ltEs13(vyw43000, vyw44000, cbc) new_ltEs19(vyw43002, vyw44002, app(ty_[], ddg)) -> new_ltEs13(vyw43002, vyw44002, ddg) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_@2, cba), cbb)) -> new_ltEs4(vyw43000, vyw44000, cba, cbb) new_lt19(vyw43000, vyw44000, app(ty_Maybe, dag)) -> new_lt8(vyw43000, vyw44000, dag) new_ltEs19(vyw43002, vyw44002, app(app(ty_@2, dde), ddf)) -> new_ltEs4(vyw43002, vyw44002, dde, ddf) new_esEs30(vyw30, vyw400, ty_Double) -> new_esEs12(vyw30, vyw400) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare30(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Ordering, deh) -> new_ltEs6(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Integer) -> new_lt12(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_Either, dhc), dhd), deh) -> new_ltEs18(vyw43000, vyw44000, dhc, dhd) new_compare18(vyw43000, vyw44000, eb) -> new_compare27(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eb), eb) new_compare3([], :(vyw44000, vyw44001), gf) -> LT new_lt19(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_pePe(False, vyw122) -> vyw122 new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs13(vyw30, vyw400) new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Maybe, dgc), deh) -> new_ltEs7(vyw43000, vyw44000, dgc) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_compare25(vyw430, vyw440, True, dee, def) -> EQ new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare12(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Int, deh) -> new_ltEs16(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, ca, cb) -> new_compare10(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, ca, cb), ca, cb) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dc)) -> new_esEs16(vyw300, vyw4000, dc) new_ltEs6(LT, LT) -> True new_lt6(vyw43000, vyw44000, ty_Bool) -> new_lt14(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs14(vyw18, vyw13) new_esEs21(vyw300, vyw4000, app(ty_Ratio, bec)) -> new_esEs16(vyw300, vyw4000, bec) new_compare23(vyw43000, vyw44000, True, ca, cb) -> EQ new_ltEs5(vyw43001, vyw44001, app(ty_Maybe, fa)) -> new_ltEs7(vyw43001, vyw44001, fa) new_compare17(vyw43000, vyw44000, True) -> LT new_compare11(vyw106, vyw107, False, gd, ge) -> GT new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs32(vyw33, vyw28, app(app(app(ty_@3, bgd), bge), bgf)) -> new_esEs6(vyw33, vyw28, bgd, bge, bgf) new_esEs23(vyw301, vyw4001, app(ty_Maybe, cfg)) -> new_esEs4(vyw301, vyw4001, cfg) new_ltEs5(vyw43001, vyw44001, app(ty_[], ff)) -> new_ltEs13(vyw43001, vyw44001, ff) new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_[], dgg), deh) -> new_ltEs13(vyw43000, vyw44000, dgg) new_esEs7(Left(vyw300), Left(vyw4000), ty_Ordering, hg) -> new_esEs9(vyw300, vyw4000) new_lt6(vyw43000, vyw44000, ty_Double) -> new_lt11(vyw43000, vyw44000) new_ltEs14(True, True) -> True new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare6(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Double) -> new_ltEs11(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_esEs23(vyw301, vyw4001, app(app(ty_Either, cgg), cgh)) -> new_esEs7(vyw301, vyw4001, cgg, cgh) new_esEs21(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, app(ty_Maybe, hh)) -> new_esEs4(vyw301, vyw4001, hh) new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, dad), dae), daf)) -> new_ltEs17(vyw4300, vyw4400, dad, dae, daf) new_compare13(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Double, hg) -> new_esEs12(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Ratio, cah)) -> new_ltEs8(vyw43000, vyw44000, cah) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_Either, cda), cdb), hg) -> new_esEs7(vyw300, vyw4000, cda, cdb) new_ltEs5(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_esEs15([], [], gg) -> True new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs10(vyw18, vyw13) new_esEs24(vyw300, vyw4000, app(app(app(ty_@3, chc), chd), che)) -> new_esEs6(vyw300, vyw4000, chc, chd, che) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_compare30(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs13(vyw300, vyw4000) new_ltEs6(LT, EQ) -> True new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare13(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(app(ty_@2, ca), cb)) -> new_lt9(vyw43000, vyw44000, ca, cb) new_esEs7(Left(vyw300), Left(vyw4000), ty_Integer, hg) -> new_esEs8(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, dga), dgb)) -> new_ltEs18(vyw4300, vyw4400, dga, dgb) new_esEs31(vyw30, vyw400, app(ty_Maybe, bhd)) -> new_esEs4(vyw30, vyw400, bhd) new_primPlusNat1(Succ(vyw1230), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw1230, vyw400000))) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare30(vyw4300, vyw4400), GT)) new_ltEs5(vyw43001, vyw44001, ty_Bool) -> new_ltEs14(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, ty_Int) -> new_esEs10(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Float, deh) -> new_ltEs15(vyw43000, vyw44000) new_primPlusNat0(Succ(vyw12300), Zero) -> Succ(vyw12300) new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs10(vyw33, vyw28) new_ltEs4(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), dh, ea) -> new_pePe(new_lt6(vyw43000, vyw44000, dh), new_asAs(new_esEs18(vyw43000, vyw44000, dh), new_ltEs5(vyw43001, vyw44001, ea))) new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) new_esEs23(vyw301, vyw4001, ty_Ordering) -> new_esEs9(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, ty_@0) -> new_esEs11(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, app(ty_[], dbc)) -> new_esEs15(vyw43000, vyw44000, dbc) new_compare27(vyw43000, vyw44000, False, eb) -> new_compare111(vyw43000, vyw44000, new_ltEs7(vyw43000, vyw44000, eb), eb) new_esEs28(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs20(vyw300, vyw4000, ty_Float) -> new_esEs13(vyw300, vyw4000) new_esEs20(vyw300, vyw4000, app(ty_Maybe, bbb)) -> new_esEs4(vyw300, vyw4000, bbb) new_esEs22(vyw302, vyw4002, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_esEs6(vyw302, vyw4002, ceg, ceh, cfa) new_esEs9(LT, LT) -> True new_lt20(vyw43001, vyw44001, ty_Int) -> new_lt16(vyw43001, vyw44001) new_esEs25(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Int) -> new_lt16(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, ty_Char) -> new_lt10(vyw43001, vyw44001) new_primCompAux0(vyw43000, vyw44000, vyw124, gf) -> new_primCompAux00(vyw124, new_compare29(vyw43000, vyw44000, gf)) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_Maybe, cca), hg) -> new_esEs4(vyw300, vyw4000, cca) new_esEs23(vyw301, vyw4001, app(app(ty_@2, cge), cgf)) -> new_esEs5(vyw301, vyw4001, cge, cgf) new_esEs24(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare6(vyw43000, vyw44000) new_esEs12(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_Ratio, dhf)) -> new_ltEs8(vyw43000, vyw44000, dhf) new_esEs18(vyw43000, vyw44000, ty_Bool) -> new_esEs17(vyw43000, vyw44000) new_lt16(vyw43000, vyw44000) -> new_esEs9(new_compare6(vyw43000, vyw44000), LT) new_lt5(vyw43000, vyw44000) -> new_esEs9(new_compare8(vyw43000, vyw44000), LT) new_esEs7(Left(vyw300), Left(vyw4000), ty_@0, hg) -> new_esEs11(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs6(vyw301, vyw4001, cga, cgb, cgc) new_esEs19(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs17(vyw18, vyw13) new_esEs21(vyw300, vyw4000, app(ty_Maybe, bdf)) -> new_esEs4(vyw300, vyw4000, bdf) new_lt20(vyw43001, vyw44001, app(app(ty_@2, dcc), dcd)) -> new_lt9(vyw43001, vyw44001, dcc, dcd) new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs32(vyw33, vyw28, app(ty_Maybe, bgb)) -> new_esEs4(vyw33, vyw28, bgb) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_esEs23(vyw301, vyw4001, app(ty_Ratio, cgd)) -> new_esEs16(vyw301, vyw4001, cgd) new_esEs24(vyw300, vyw4000, app(app(ty_@2, chg), chh)) -> new_esEs5(vyw300, vyw4000, chg, chh) new_esEs27(vyw43001, vyw44001, ty_Char) -> new_esEs14(vyw43001, vyw44001) new_esEs24(vyw300, vyw4000, app(app(ty_Either, daa), dab)) -> new_esEs7(vyw300, vyw4000, daa, dab) new_lt19(vyw43000, vyw44000, app(app(ty_@2, dba), dbb)) -> new_lt9(vyw43000, vyw44000, dba, dbb) new_esEs27(vyw43001, vyw44001, ty_Double) -> new_esEs12(vyw43001, vyw44001) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, ce)) -> new_esEs4(vyw300, vyw4000, ce) new_lt6(vyw43000, vyw44000, app(ty_[], ec)) -> new_lt13(vyw43000, vyw44000, ec) new_esEs24(vyw300, vyw4000, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_compare6(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_compare29(vyw43000, vyw44000, app(ty_[], bfd)) -> new_compare3(vyw43000, vyw44000, bfd) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, dff), dfg), dfh)) -> new_ltEs17(vyw4300, vyw4400, dff, dfg, dfh) new_esEs19(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(ty_[], dce)) -> new_esEs15(vyw43001, vyw44001, dce) new_esEs27(vyw43001, vyw44001, ty_Ordering) -> new_esEs9(vyw43001, vyw44001) new_compare113(vyw113, vyw114, True, eag, eah) -> LT new_esEs22(vyw302, vyw4002, app(ty_Ratio, cfb)) -> new_esEs16(vyw302, vyw4002, cfb) new_ltEs19(vyw43002, vyw44002, ty_Char) -> new_ltEs9(vyw43002, vyw44002) new_ltEs13(vyw4300, vyw4400, gf) -> new_not(new_esEs9(new_compare3(vyw4300, vyw4400, gf), GT)) new_esEs23(vyw301, vyw4001, ty_Double) -> new_esEs12(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_esEs27(vyw43001, vyw44001, app(app(ty_@2, dcc), dcd)) -> new_esEs5(vyw43001, vyw44001, dcc, dcd) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_compare30(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_lt19(vyw43000, vyw44000, ty_Char) -> new_lt10(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, app(ty_Maybe, eb)) -> new_lt8(vyw43000, vyw44000, eb) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare12(vyw4300, vyw4400), GT)) new_esEs30(vyw30, vyw400, app(ty_Maybe, cd)) -> new_esEs4(vyw30, vyw400, cd) new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs8(vyw18, vyw13) new_esEs24(vyw300, vyw4000, app(ty_[], chb)) -> new_esEs15(vyw300, vyw4000, chb) new_esEs24(vyw300, vyw4000, app(ty_Maybe, cha)) -> new_esEs4(vyw300, vyw4000, cha) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_@0, deh) -> new_ltEs10(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, app(ty_[], gg)) -> new_esEs15(vyw30, vyw400, gg) new_ltEs6(GT, EQ) -> False new_esEs30(vyw30, vyw400, ty_Bool) -> new_esEs17(vyw30, vyw400) new_compare14(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare6(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Char) -> new_esEs14(vyw300, vyw4000) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_compare15(vyw43000, vyw44000) -> new_compare24(vyw43000, vyw44000, new_esEs17(vyw43000, vyw44000)) new_esEs18(vyw43000, vyw44000, app(ty_Maybe, eb)) -> new_esEs4(vyw43000, vyw44000, eb) new_esEs20(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs27(vyw43001, vyw44001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs6(vyw43001, vyw44001, dcf, dcg, dch) new_esEs32(vyw33, vyw28, app(app(ty_Either, bhb), bhc)) -> new_esEs7(vyw33, vyw28, bhb, bhc) new_esEs20(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Int) -> new_ltEs16(vyw43002, vyw44002) new_lt19(vyw43000, vyw44000, app(ty_Ratio, dah)) -> new_lt4(vyw43000, vyw44000, dah) new_compare25(Left(vyw4300), Right(vyw4400), False, dee, def) -> LT new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), gh, ha, hb) -> new_asAs(new_esEs24(vyw300, vyw4000, gh), new_asAs(new_esEs23(vyw301, vyw4001, ha), new_esEs22(vyw302, vyw4002, hb))) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs9(vyw43000, vyw44000) new_asAs(True, vyw101) -> vyw101 new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs10(vyw300, vyw4000) new_compare10(vyw43000, vyw44000, False, ca, cb) -> GT new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43001, vyw44001, app(ty_Ratio, dcb)) -> new_lt4(vyw43001, vyw44001, dcb) new_esEs8(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_esEs17(False, True) -> False new_esEs17(True, False) -> False new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, dfa)) -> new_ltEs7(vyw4300, vyw4400, dfa) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_[], cdd)) -> new_esEs15(vyw300, vyw4000, cdd) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(ty_Maybe, cdc)) -> new_esEs4(vyw300, vyw4000, cdc) new_esEs20(vyw300, vyw4000, app(ty_[], bbc)) -> new_esEs15(vyw300, vyw4000, bbc) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs13(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs7(Left(vyw300), Left(vyw4000), ty_Float, hg) -> new_esEs13(vyw300, vyw4000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs13(vyw33, vyw28) new_esEs21(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs19(vyw43002, vyw44002, ty_Ordering) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_ltEs19(vyw43002, vyw44002, app(app(app(ty_@3, ddh), dea), deb)) -> new_ltEs17(vyw43002, vyw44002, ddh, dea, deb) new_esEs7(Left(vyw300), Left(vyw4000), app(ty_[], ccb), hg) -> new_esEs15(vyw300, vyw4000, ccb) new_compare110(vyw43000, vyw44000, False) -> GT new_ltEs5(vyw43001, vyw44001, ty_Double) -> new_ltEs11(vyw43001, vyw44001) new_primCompAux00(vyw133, EQ) -> vyw133 new_sr(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_esEs22(vyw302, vyw4002, ty_@0) -> new_esEs11(vyw302, vyw4002) new_ltEs7(Nothing, Nothing, caf) -> True new_esEs5(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hd, he) -> new_asAs(new_esEs20(vyw300, vyw4000, hd), new_esEs19(vyw301, vyw4001, he)) new_ltEs9(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare13(vyw4300, vyw4400), GT)) new_esEs21(vyw300, vyw4000, app(app(ty_Either, bef), beg)) -> new_esEs7(vyw300, vyw4000, bef, beg) new_compare25(Right(vyw4300), Right(vyw4400), False, dee, def) -> new_compare113(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, def), dee, def) new_primMulNat0(Zero, Zero) -> Zero new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs9(vyw4300, vyw4400) new_esEs30(vyw30, vyw400, ty_Char) -> new_esEs14(vyw30, vyw400) new_esEs27(vyw43001, vyw44001, app(ty_Ratio, dcb)) -> new_esEs16(vyw43001, vyw44001, dcb) new_ltEs5(vyw43001, vyw44001, app(app(ty_@2, fc), fd)) -> new_ltEs4(vyw43001, vyw44001, fc, fd) new_esEs23(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_ltEs5(vyw43001, vyw44001, ty_@0) -> new_ltEs10(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000) -> new_esEs9(new_compare14(vyw43000, vyw44000), LT) new_esEs22(vyw302, vyw4002, app(app(ty_@2, cfc), cfd)) -> new_esEs5(vyw302, vyw4002, cfc, cfd) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, dfb)) -> new_ltEs8(vyw4300, vyw4400, dfb) new_ltEs7(Just(vyw43000), Nothing, caf) -> False new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs28(vyw43000, vyw44000, app(ty_Maybe, dag)) -> new_esEs4(vyw43000, vyw44000, dag) new_esEs19(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_esEs15(:(vyw300, vyw301), [], gg) -> False new_esEs15([], :(vyw4000, vyw4001), gg) -> False new_lt17(vyw43000, vyw44000, ed, ee, ef) -> new_esEs9(new_compare28(vyw43000, vyw44000, ed, ee, ef), LT) new_ltEs6(EQ, LT) -> False new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare15(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs8(vyw300, vyw4000) new_esEs7(Left(vyw300), Left(vyw4000), app(app(ty_@2, ccg), cch), hg) -> new_esEs5(vyw300, vyw4000, ccg, cch) new_esEs22(vyw302, vyw4002, app(app(ty_Either, cfe), cff)) -> new_esEs7(vyw302, vyw4002, cfe, cff) new_esEs27(vyw43001, vyw44001, ty_Float) -> new_esEs13(vyw43001, vyw44001) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(app(ty_@3, eab), eac), ead)) -> new_ltEs17(vyw43000, vyw44000, eab, eac, ead) new_esEs4(Nothing, Nothing, cd) -> True new_lt8(vyw43000, vyw44000, eb) -> new_esEs9(new_compare18(vyw43000, vyw44000, eb), LT) new_esEs4(Nothing, Just(vyw4000), cd) -> False new_esEs4(Just(vyw300), Nothing, cd) -> False new_ltEs11(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare14(vyw4300, vyw4400), GT)) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_esEs22(vyw302, vyw4002, ty_Ordering) -> new_esEs9(vyw302, vyw4002) new_ltEs14(False, True) -> True new_esEs29(vyw18, vyw13, app(ty_[], bce)) -> new_esEs15(vyw18, vyw13, bce) new_esEs32(vyw33, vyw28, app(app(ty_@2, bgh), bha)) -> new_esEs5(vyw33, vyw28, bgh, bha) new_esEs9(EQ, EQ) -> True new_esEs18(vyw43000, vyw44000, ty_Double) -> new_esEs12(vyw43000, vyw44000) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, df), dg)) -> new_esEs7(vyw300, vyw4000, df, dg) new_esEs18(vyw43000, vyw44000, ty_Char) -> new_esEs14(vyw43000, vyw44000) new_ltEs19(vyw43002, vyw44002, app(ty_Maybe, ddc)) -> new_ltEs7(vyw43002, vyw44002, ddc) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, deg), deh)) -> new_ltEs18(vyw4300, vyw4400, deg, deh) new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs22(vyw302, vyw4002, ty_Int) -> new_esEs10(vyw302, vyw4002) new_ltEs8(vyw4300, vyw4400, dac) -> new_not(new_esEs9(new_compare7(vyw4300, vyw4400, dac), GT)) new_compare24(vyw43000, vyw44000, True) -> EQ new_esEs24(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs18(vyw43000, vyw44000, app(ty_[], ec)) -> new_esEs15(vyw43000, vyw44000, ec) new_esEs24(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(ty_@2, cea), ceb)) -> new_esEs5(vyw300, vyw4000, cea, ceb) new_esEs7(Right(vyw300), Right(vyw4000), hf, app(app(ty_Either, cec), ced)) -> new_esEs7(vyw300, vyw4000, cec, ced) new_lt10(vyw43000, vyw44000) -> new_esEs9(new_compare13(vyw43000, vyw44000), LT) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, dgh), dha), dhb), deh) -> new_ltEs17(vyw43000, vyw44000, dgh, dha, dhb) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(app(ty_@2, dhg), dhh)) -> new_ltEs4(vyw43000, vyw44000, dhg, dhh) new_esEs32(vyw33, vyw28, app(ty_Ratio, bgg)) -> new_esEs16(vyw33, vyw28, bgg) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(ty_Either, cbg), cbh)) -> new_ltEs18(vyw43000, vyw44000, cbg, cbh) new_esEs22(vyw302, vyw4002, ty_Float) -> new_esEs13(vyw302, vyw4002) new_ltEs19(vyw43002, vyw44002, app(app(ty_Either, dec), ded)) -> new_ltEs18(vyw43002, vyw44002, dec, ded) new_esEs29(vyw18, vyw13, app(ty_Maybe, bcd)) -> new_esEs4(vyw18, vyw13, bcd) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_lt19(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False, eb) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Double, deh) -> new_ltEs11(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_Maybe, dhe)) -> new_ltEs7(vyw43000, vyw44000, dhe) new_esEs17(True, True) -> True new_esEs16(:%(vyw300, vyw301), :%(vyw4000, vyw4001), hc) -> new_asAs(new_esEs26(vyw300, vyw4000, hc), new_esEs25(vyw301, vyw4001, hc)) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Ordering) -> new_esEs9(vyw300, vyw4000) new_ltEs7(Just(vyw43000), Just(vyw44000), app(ty_Maybe, cag)) -> new_ltEs7(vyw43000, vyw44000, cag) new_esEs15(:(vyw300, vyw301), :(vyw4000, vyw4001), gg) -> new_asAs(new_esEs21(vyw300, vyw4000, gg), new_esEs15(vyw301, vyw4001, gg)) new_compare29(vyw43000, vyw44000, app(app(ty_Either, bfh), bga)) -> new_compare16(vyw43000, vyw44000, bfh, bga) new_ltEs5(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_esEs18(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(vyw43000, vyw44000, ed, ee, ef) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare8(vyw43000, vyw44000) new_esEs23(vyw301, vyw4001, ty_Float) -> new_esEs13(vyw301, vyw4001) new_esEs22(vyw302, vyw4002, ty_Double) -> new_esEs12(vyw302, vyw4002) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, app(ty_[], eaa)) -> new_ltEs13(vyw43000, vyw44000, eaa) new_esEs21(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs23(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_ltEs19(vyw43002, vyw44002, app(ty_Ratio, ddd)) -> new_ltEs8(vyw43002, vyw44002, ddd) new_lt14(vyw43000, vyw44000) -> new_esEs9(new_compare15(vyw43000, vyw44000), LT) new_ltEs20(vyw4300, vyw4400, app(ty_[], gf)) -> new_ltEs13(vyw4300, vyw4400, gf) new_esEs23(vyw301, vyw4001, ty_Bool) -> new_esEs17(vyw301, vyw4001) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_compare112(vyw43000, vyw44000, True, ed, ee, ef) -> LT new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Int) -> new_ltEs16(vyw43000, vyw44000) new_compare28(vyw43000, vyw44000, ed, ee, ef) -> new_compare210(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) new_esEs19(vyw301, vyw4001, ty_Char) -> new_esEs14(vyw301, vyw4001) new_esEs27(vyw43001, vyw44001, app(app(ty_Either, dda), ddb)) -> new_esEs7(vyw43001, vyw44001, dda, ddb) new_ltEs18(Left(vyw43000), Left(vyw44000), app(app(ty_@2, dge), dgf), deh) -> new_ltEs4(vyw43000, vyw44000, dge, dgf) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], cf)) -> new_esEs15(vyw300, vyw4000, cf) new_esEs9(GT, GT) -> True new_compare25(Right(vyw4300), Left(vyw4400), False, dee, def) -> GT new_compare7(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare12(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_lt13(vyw43000, vyw44000, ec) -> new_esEs9(new_compare3(vyw43000, vyw44000, ec), LT) new_primPlusNat0(Succ(vyw12300), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw12300, vyw4000000))) new_esEs31(vyw30, vyw400, app(ty_[], bhe)) -> new_esEs15(vyw30, vyw400, bhe) new_esEs28(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_compare210(vyw43000, vyw44000, False, ed, ee, ef) -> new_compare112(vyw43000, vyw44000, new_ltEs17(vyw43000, vyw44000, ed, ee, ef), ed, ee, ef) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs9(vyw33, vyw28) new_esEs19(vyw301, vyw4001, app(ty_[], baa)) -> new_esEs15(vyw301, vyw4001, baa) new_compare112(vyw43000, vyw44000, False, ed, ee, ef) -> GT new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Integer, deh) -> new_ltEs12(vyw43000, vyw44000) new_ltEs10(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare8(vyw4300, vyw4400), GT)) new_esEs31(vyw30, vyw400, app(ty_Ratio, caa)) -> new_esEs16(vyw30, vyw400, caa) new_esEs21(vyw300, vyw4000, ty_Integer) -> new_esEs8(vyw300, vyw4000) new_ltEs5(vyw43001, vyw44001, app(ty_Ratio, fb)) -> new_ltEs8(vyw43001, vyw44001, fb) new_esEs30(vyw30, vyw400, app(app(app(ty_@3, gh), ha), hb)) -> new_esEs6(vyw30, vyw400, gh, ha, hb) new_esEs9(EQ, GT) -> False new_esEs9(GT, EQ) -> False new_ltEs18(Left(vyw43000), Left(vyw44000), app(ty_Ratio, dgd), deh) -> new_ltEs8(vyw43000, vyw44000, dgd) new_esEs20(vyw300, vyw4000, ty_Double) -> new_esEs12(vyw300, vyw4000) new_compare11(vyw106, vyw107, True, gd, ge) -> LT new_ltEs19(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs12(vyw33, vyw28) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs9(new_compare6(vyw4300, vyw4400), GT)) new_lt6(vyw43000, vyw44000, ty_Float) -> new_lt15(vyw43000, vyw44000) new_ltEs18(Right(vyw43000), Right(vyw44000), deg, ty_Ordering) -> new_ltEs6(vyw43000, vyw44000) new_ltEs7(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs14(vyw43000, vyw44000) new_esEs19(vyw301, vyw4001, ty_@0) -> new_esEs11(vyw301, vyw4001) new_esEs24(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_lt20(vyw43001, vyw44001, app(app(ty_Either, dda), ddb)) -> new_lt18(vyw43001, vyw44001, dda, ddb) new_esEs10(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs8(vyw33, vyw28) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs11(vyw30, vyw400) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare9(vyw43000, vyw44000, ca, cb) -> new_compare23(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, ca, cb), ca, cb) new_esEs20(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs31(vyw30, vyw400, app(app(ty_Either, cad), cae)) -> new_esEs7(vyw30, vyw400, cad, cae) new_compare26(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs6(vyw43000, vyw44000)) new_esEs28(vyw43000, vyw44000, app(app(ty_@2, dba), dbb)) -> new_esEs5(vyw43000, vyw44000, dba, dbb) new_compare14(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare6(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_esEs19(vyw301, vyw4001, app(app(ty_Either, bah), bba)) -> new_esEs7(vyw301, vyw4001, bah, bba) new_lt6(vyw43000, vyw44000, app(app(app(ty_@3, ed), ee), ef)) -> new_lt17(vyw43000, vyw44000, ed, ee, ef) new_compare111(vyw43000, vyw44000, True, eb) -> LT new_ltEs7(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, cbd), cbe), cbf)) -> new_ltEs17(vyw43000, vyw44000, cbd, cbe, cbf) new_esEs23(vyw301, vyw4001, app(ty_[], cfh)) -> new_esEs15(vyw301, vyw4001, cfh) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs10(vyw4300, vyw4400) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Bool, deh) -> new_ltEs14(vyw43000, vyw44000) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, dfc), dfd)) -> new_ltEs4(vyw4300, vyw4400, dfc, dfd) new_lt20(vyw43001, vyw44001, ty_@0) -> new_lt5(vyw43001, vyw44001) new_esEs28(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_ltEs18(Left(vyw43000), Right(vyw44000), deg, deh) -> True new_compare25(Left(vyw4300), Left(vyw4400), False, dee, def) -> new_compare11(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, dee), dee, def) new_compare24(vyw43000, vyw44000, False) -> new_compare110(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000)) new_esEs25(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs30(vyw30, vyw400, app(app(ty_@2, hd), he)) -> new_esEs5(vyw30, vyw400, hd, he) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs17(False, False) -> True new_esEs7(Left(vyw300), Left(vyw4000), ty_Int, hg) -> new_esEs10(vyw300, vyw4000) new_lt12(vyw43000, vyw44000) -> new_esEs9(new_compare12(vyw43000, vyw44000), LT) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_@0) -> new_esEs11(vyw300, vyw4000) new_ltEs18(Right(vyw43000), Left(vyw44000), deg, deh) -> False new_ltEs14(False, False) -> True new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs8(vyw30, vyw400) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_esEs27(vyw43001, vyw44001, app(ty_Maybe, dca)) -> new_esEs4(vyw43001, vyw44001, dca) new_esEs7(Right(vyw300), Right(vyw4000), hf, ty_Double) -> new_esEs12(vyw300, vyw4000) new_esEs26(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs28(vyw43000, vyw44000, app(ty_Ratio, dah)) -> new_esEs16(vyw43000, vyw44000, dah) new_compare3(:(vyw43000, vyw43001), [], gf) -> GT new_esEs22(vyw302, vyw4002, ty_Char) -> new_esEs14(vyw302, vyw4002) new_esEs18(vyw43000, vyw44000, ty_Integer) -> new_esEs8(vyw43000, vyw44000) new_lt6(vyw43000, vyw44000, ty_Ordering) -> new_lt7(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Integer) -> new_esEs8(vyw30, vyw400) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_esEs20(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs11(@0, @0) -> True new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs16(vyw4300, vyw4400) new_compare8(@0, @0) -> EQ new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs14(vyw300, vyw4000) new_esEs29(vyw18, vyw13, app(ty_Ratio, bda)) -> new_esEs16(vyw18, vyw13, bda) new_esEs18(vyw43000, vyw44000, app(app(ty_@2, ca), cb)) -> new_esEs5(vyw43000, vyw44000, ca, cb) new_primEqNat0(Zero, Zero) -> True new_compare29(vyw43000, vyw44000, app(ty_Maybe, beh)) -> new_compare18(vyw43000, vyw44000, beh) new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs11(vyw33, vyw28) new_esEs24(vyw300, vyw4000, ty_Bool) -> new_esEs17(vyw300, vyw4000) new_esEs21(vyw300, vyw4000, app(ty_[], bdg)) -> new_esEs15(vyw300, vyw4000, bdg) new_lt19(vyw43000, vyw44000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_lt17(vyw43000, vyw44000, dbd, dbe, dbf) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare19(vyw43000, vyw44000) new_esEs18(vyw43000, vyw44000, ty_Ordering) -> new_esEs9(vyw43000, vyw44000) new_esEs21(vyw300, vyw4000, ty_Char) -> new_esEs14(vyw300, vyw4000) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs6(vyw4300, vyw4400) new_esEs19(vyw301, vyw4001, ty_Integer) -> new_esEs8(vyw301, vyw4001) new_esEs28(vyw43000, vyw44000, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs6(vyw43000, vyw44000, dbd, dbe, dbf) new_esEs30(vyw30, vyw400, app(app(ty_Either, hf), hg)) -> new_esEs7(vyw30, vyw400, hf, hg) new_ltEs18(Left(vyw43000), Left(vyw44000), ty_Char, deh) -> new_ltEs9(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_@2, bdb), bdc)) -> new_esEs5(vyw18, vyw13, bdb, bdc) new_esEs22(vyw302, vyw4002, app(ty_[], cef)) -> new_esEs15(vyw302, vyw4002, cef) new_esEs9(LT, GT) -> False new_esEs9(GT, LT) -> False new_ltEs14(True, False) -> False new_asAs(False, vyw101) -> False new_esEs21(vyw300, vyw4000, ty_@0) -> new_esEs11(vyw300, vyw4000) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs9(vyw18, vyw13) new_esEs29(vyw18, vyw13, app(app(ty_Either, bdd), bde)) -> new_esEs7(vyw18, vyw13, bdd, bde) new_lt7(vyw43000, vyw44000) -> new_esEs9(new_compare19(vyw43000, vyw44000), LT) new_lt20(vyw43001, vyw44001, app(app(app(ty_@3, dcf), dcg), dch)) -> new_lt17(vyw43001, vyw44001, dcf, dcg, dch) new_lt6(vyw43000, vyw44000, ty_@0) -> new_lt5(vyw43000, vyw44000) new_esEs30(vyw30, vyw400, ty_Ordering) -> new_esEs9(vyw30, vyw400) new_esEs7(Left(vyw300), Right(vyw4000), hf, hg) -> False new_esEs7(Right(vyw300), Left(vyw4000), hf, hg) -> False new_ltEs6(GT, LT) -> False new_lt4(vyw43000, vyw44000, cc) -> new_esEs9(new_compare7(vyw43000, vyw44000, cc), LT) new_lt6(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_lt18(vyw43000, vyw44000, eg, eh) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs27(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_lt19(x0, x1, ty_Ordering) new_ltEs18(Left(x0), Left(x1), ty_@0, x2) new_compare6(x0, x1) new_esEs20(x0, x1, ty_Integer) new_esEs7(Right(x0), Right(x1), x2, ty_Bool) new_lt4(x0, x1, x2) new_compare17(x0, x1, True) new_esEs24(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_lt19(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Float) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_@0) new_esEs22(x0, x1, ty_Float) new_ltEs18(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux00(x0, LT) new_esEs23(x0, x1, ty_Integer) new_esEs18(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Bool) new_esEs25(x0, x1, ty_Integer) new_compare110(x0, x1, False) new_lt18(x0, x1, x2, x3) new_asAs(True, x0) new_primCompAux0(x0, x1, x2, x3) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Int) new_ltEs6(LT, LT) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs24(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_[], x2)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs28(x0, x1, ty_@0) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Char) new_esEs28(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs24(x0, x1, ty_@0) new_ltEs7(Nothing, Just(x0), x1) new_lt20(x0, x1, app(ty_[], x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs17(False, False) new_ltEs18(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs18(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs18(x0, x1, ty_Bool) new_esEs4(Just(x0), Just(x1), ty_Bool) new_esEs7(Right(x0), Right(x1), x2, ty_@0) new_primEqInt(Neg(Zero), Neg(Zero)) new_esEs29(x0, x1, ty_Float) new_compare30(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare30(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_lt19(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Float) new_lt20(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_lt6(x0, x1, app(ty_[], x2)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs7(Nothing, Nothing, x0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Bool) new_compare25(Left(x0), Right(x1), False, x2, x3) new_compare25(Right(x0), Left(x1), False, x2, x3) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare18(x0, x1, x2) new_pePe(False, x0) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs9(LT, LT) new_esEs30(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Double) new_primPlusNat0(Succ(x0), Zero) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs31(x0, x1, ty_Ordering) new_compare30(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_compare210(x0, x1, False, x2, x3, x4) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs4(Just(x0), Just(x1), ty_Char) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Float) new_ltEs20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Float) new_esEs22(x0, x1, ty_Integer) new_esEs9(EQ, GT) new_esEs9(GT, EQ) new_esEs19(x0, x1, ty_Int) new_compare28(x0, x1, x2, x3, x4) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt17(x0, x1, x2, x3, x4) new_esEs7(Left(x0), Left(x1), ty_Ordering, x2) new_lt12(x0, x1) new_esEs4(Just(x0), Just(x1), ty_Int) new_lt8(x0, x1, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Char) new_compare210(x0, x1, True, x2, x3, x4) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare29(x0, x1, ty_Integer) new_compare25(Left(x0), Left(x1), False, x2, x3) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs19(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Integer) new_esEs28(x0, x1, ty_Char) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_compare8(@0, @0) new_esEs26(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_primMulNat0(Succ(x0), Zero) new_esEs28(x0, x1, ty_Bool) new_ltEs18(Right(x0), Right(x1), x2, ty_Integer) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare13(Char(x0), Char(x1)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_lt20(x0, x1, ty_Integer) new_ltEs20(x0, x1, ty_Int) new_esEs30(x0, x1, ty_@0) new_esEs27(x0, x1, ty_@0) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs7(Right(x0), Right(x1), x2, ty_Float) new_ltEs5(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs24(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_lt19(x0, x1, ty_Bool) new_ltEs18(Left(x0), Left(x1), ty_Double, x2) new_esEs28(x0, x1, ty_Ordering) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_esEs12(Double(x0, x1), Double(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_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, ty_Bool) new_asAs(False, x0) new_esEs22(x0, x1, ty_Bool) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs21(x0, x1, ty_Ordering) new_ltEs18(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, ty_Float) new_compare23(x0, x1, False, x2, x3) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_compare10(x0, x1, False, x2, x3) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Int) new_compare24(x0, x1, True) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Pos(x0), Pos(x1)) new_compare14(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_@0) new_compare113(x0, x1, False, x2, x3) new_ltEs18(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs9(x0, x1) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_esEs20(x0, x1, ty_Double) new_lt14(x0, x1) new_esEs13(Float(x0, x1), Float(x2, x3)) new_esEs24(x0, x1, ty_Char) new_esEs11(@0, @0) new_ltEs12(x0, x1) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs7(Right(x0), Right(x1), x2, ty_Int) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs16(x0, x1) new_esEs31(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Double) new_lt19(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1, ty_Integer) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_Int) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_sr0(Integer(x0), Integer(x1)) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs23(x0, x1, ty_Double) new_compare11(x0, x1, True, x2, x3) new_esEs10(x0, x1) new_esEs7(Left(x0), Right(x1), x2, x3) new_esEs7(Right(x0), Left(x1), x2, x3) new_compare30(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_ltEs14(False, False) new_primCompAux00(x0, GT) new_compare27(x0, x1, True, x2) new_lt6(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Float) new_lt7(x0, x1) new_esEs23(x0, x1, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_ltEs6(LT, GT) new_ltEs6(GT, LT) new_lt20(x0, x1, ty_@0) new_sr(x0, x1) new_esEs19(x0, x1, app(ty_[], x2)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs19(x0, x1, ty_@0) new_lt19(x0, x1, ty_Char) new_esEs19(x0, x1, ty_Bool) new_esEs7(Left(x0), Left(x1), ty_Int, x2) new_esEs15([], :(x0, x1), x2) new_esEs22(x0, x1, ty_Int) new_ltEs6(EQ, GT) new_ltEs5(x0, x1, ty_Bool) new_ltEs6(GT, EQ) new_lt20(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs16(:%(x0, x1), :%(x2, x3), x4) new_esEs20(x0, x1, ty_@0) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Int) new_lt9(x0, x1, x2, x3) new_esEs19(x0, x1, ty_Ordering) new_compare3(:(x0, x1), :(x2, x3), x4) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Float) new_compare16(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Integer) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Double) new_esEs15(:(x0, x1), :(x2, x3), x4) new_esEs7(Left(x0), Left(x1), ty_Char, x2) new_ltEs5(x0, x1, app(ty_[], x2)) new_esEs19(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, ty_@0) new_compare112(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Double) new_esEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs4(Just(x0), Just(x1), ty_Integer) new_ltEs5(x0, x1, ty_Int) new_esEs24(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, ty_Ordering) new_compare111(x0, x1, True, x2) new_ltEs11(x0, x1) new_esEs18(x0, x1, ty_Float) new_lt19(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, ty_Ordering) new_esEs9(EQ, EQ) new_lt6(x0, x1, ty_Char) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_esEs32(x0, x1, ty_Double) new_esEs32(x0, x1, ty_Ordering) new_esEs21(x0, x1, ty_Integer) new_compare111(x0, x1, False, x2) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Nothing, Just(x0), x1) new_compare29(x0, x1, app(ty_[], x2)) new_primMulNat0(Zero, Zero) new_ltEs18(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare29(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_@0) new_esEs22(x0, x1, ty_Ordering) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Integer) new_ltEs18(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, ty_Int) new_esEs17(True, True) new_ltEs6(EQ, EQ) new_ltEs18(Right(x0), Right(x1), x2, ty_Double) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Int) new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt6(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, False) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Char) new_esEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs21(x0, x1, ty_Bool) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, ty_Double) new_esEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_compare29(x0, x1, ty_Char) new_esEs21(x0, x1, ty_@0) new_lt19(x0, x1, ty_Float) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, ty_Double) new_primPlusNat0(Zero, Zero) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs21(x0, x1, app(ty_[], x2)) new_compare11(x0, x1, False, x2, x3) new_esEs31(x0, x1, ty_Bool) new_ltEs14(True, True) new_not(True) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs4(@2(x0, x1), @2(x2, x3), x4, x5) new_lt6(x0, x1, ty_Double) new_ltEs21(x0, x1, ty_Integer) new_compare25(x0, x1, True, x2, x3) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_lt5(x0, x1) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, ty_Ordering) new_lt6(x0, x1, ty_Ordering) new_esEs18(x0, x1, app(ty_[], x2)) new_esEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs18(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs32(x0, x1, ty_Char) new_compare12(Integer(x0), Integer(x1)) new_esEs27(x0, x1, ty_Double) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Double) new_lt6(x0, x1, ty_Bool) new_ltEs10(x0, x1) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Int) new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare25(Right(x0), Right(x1), False, x2, x3) new_esEs29(x0, x1, ty_Double) new_esEs30(x0, x1, app(ty_[], x2)) new_compare15(x0, x1) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare3([], :(x0, x1), x2) new_esEs17(False, True) new_esEs17(True, False) new_esEs9(LT, EQ) new_esEs9(EQ, LT) new_esEs20(x0, x1, ty_Ordering) new_esEs31(x0, x1, ty_Integer) new_compare26(x0, x1, False) new_compare14(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare14(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_esEs14(Char(x0), Char(x1)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs9(GT, GT) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs29(x0, x1, ty_Char) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Bool) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt13(x0, x1, x2) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(LT, GT) new_esEs9(GT, LT) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 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_esEs4(Just(x0), Just(x1), ty_Double) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Bool) new_esEs20(x0, x1, ty_Int) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs6(LT, EQ) new_ltEs6(EQ, LT) new_esEs7(Right(x0), Right(x1), x2, ty_Double) new_esEs21(x0, x1, ty_Int) new_esEs23(x0, x1, ty_Char) new_lt20(x0, x1, ty_Char) new_ltEs6(GT, GT) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_esEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs8(x0, x1, x2) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs24(x0, x1, ty_Double) new_ltEs18(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs15([], [], x0) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCompAux00(x0, EQ) new_ltEs15(x0, x1) new_esEs27(x0, x1, ty_Char) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(x0, x1, ty_@0) new_esEs28(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Char) new_lt19(x0, x1, ty_@0) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt6(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Int) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_compare14(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs18(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_primPlusNat0(Zero, Succ(x0)) new_esEs22(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Float) new_compare110(x0, x1, True) new_compare17(x0, x1, False) new_esEs21(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Float, x2) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_esEs30(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), ty_@0) new_compare112(x0, x1, True, x2, x3, x4) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Ordering) new_compare3([], [], x0) new_lt15(x0, x1) new_esEs21(x0, x1, ty_Float) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs18(Right(x0), Right(x1), x2, ty_Bool) new_esEs4(Nothing, Nothing, x0) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt19(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, ty_@0) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs8(Integer(x0), Integer(x1)) new_esEs20(x0, x1, ty_Char) new_ltEs18(Left(x0), Left(x1), ty_Ordering, x2) new_esEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, ty_Float) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs19(x0, x1, ty_Double) new_lt11(x0, x1) new_ltEs19(x0, x1, ty_Float) new_primEqNat0(Zero, Succ(x0)) new_ltEs18(Left(x0), Right(x1), x2, x3) new_ltEs18(Right(x0), Left(x1), x2, x3) new_esEs32(x0, x1, ty_Integer) new_ltEs18(Left(x0), Left(x1), ty_Int, x2) new_esEs21(x0, x1, ty_Ordering) new_esEs30(x0, x1, ty_Ordering) new_pePe(True, x0) new_ltEs14(False, True) new_lt10(x0, x1) new_ltEs14(True, False) new_primEqNat0(Zero, Zero) new_compare29(x0, x1, app(ty_Maybe, x2)) new_compare19(x0, x1) new_ltEs13(x0, x1, x2) new_esEs23(x0, x1, ty_Float) new_not(False) new_ltEs21(x0, x1, ty_Char) new_ltEs5(x0, x1, ty_Double) new_lt6(x0, x1, ty_@0) new_lt19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primMulNat0(Zero, Succ(x0)) new_ltEs18(Left(x0), Left(x1), ty_Char, x2) new_compare3(:(x0, x1), [], x2) new_ltEs5(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Double) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_primMulInt(Neg(x0), Neg(x1)) new_compare26(x0, x1, True) new_esEs31(x0, x1, ty_@0) new_ltEs21(x0, x1, ty_Int) new_ltEs18(Left(x0), Left(x1), ty_Integer, x2) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs15(:(x0, x1), [], x2) new_compare27(x0, x1, False, x2) new_compare10(x0, x1, True, x2, x3) new_esEs23(x0, x1, ty_Bool) new_compare113(x0, x1, True, x2, x3) new_esEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs26(x0, x1, ty_Int) new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs23(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Float) new_lt16(x0, x1) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Just(x0), Nothing, x1) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_esEs21(x0, x1, ty_Bool) new_esEs27(x0, x1, ty_Integer) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare23(x0, x1, True, x2, x3) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs18(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Float) new_ltEs21(x0, x1, ty_Float) new_ltEs19(x0, x1, app(ty_[], x2)) new_primPlusNat1(Succ(x0), x1) new_esEs4(Just(x0), Nothing, x1) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, ty_Bool) new_primCmpNat0(Zero, Zero) new_esEs7(Left(x0), Left(x1), ty_Double, x2) new_ltEs18(Right(x0), Right(x1), x2, ty_Float) new_primCmpNat0(Zero, Succ(x0)) new_esEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare9(x0, x1, x2, x3) 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. ---------------------------------------- (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_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_elemFM0(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_elemFM00(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs9(new_compare25(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_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_elemFM01(Branch(Left(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM0(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_elemFM01(Branch(Right(vyw400), vyw41, vyw42, vyw43, vyw44), Left(vyw30), bc, bd, be) -> new_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_elemFM02(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, False, bc, bd, be) -> new_elemFM05(vyw400, vyw41, vyw42, vyw43, vyw44, vyw30, new_esEs9(new_compare25(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_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_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 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_@2, be), bf)) -> new_esEs2(vyw300, vyw4000, be, bf) new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vyw300, vyw4000, bcg, bch) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(ty_[], he)) -> new_esEs0(vyw301, vyw4001, he) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdc)) -> new_esEs0(vyw300, vyw4000, bdc) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(ty_@2, baa), bab)) -> new_esEs2(vyw301, vyw4001, baa, bab) new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, cg), da)) -> new_esEs2(vyw300, vyw4000, cg, da) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, gd), ge), gf), de, eh) -> new_esEs1(vyw300, vyw4000, gd, ge, gf) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bag), baf) -> new_esEs0(vyw300, vyw4000, bag) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bbe), bbf), baf) -> new_esEs3(vyw300, vyw4000, bbe, bbf) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_Maybe, bdb)) -> new_esEs(vyw300, vyw4000, bdb) new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs1(vyw300, vyw4000, cd, ce, cf) new_esEs(Just(vyw300), Just(vyw4000), app(ty_Maybe, h)) -> new_esEs(vyw300, vyw4000, h) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, gg), gh), de, eh) -> new_esEs2(vyw300, vyw4000, gg, gh) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(vyw300, vyw4000, bdg, bdh) new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], cc)) -> new_esEs0(vyw300, vyw4000, cc) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(ty_Maybe, hd)) -> new_esEs(vyw301, vyw4001, hd) new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs1(vyw300, vyw4000, bb, bc, bd) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bbc), bbd), baf) -> new_esEs2(vyw300, vyw4000, bbc, bbd) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw300, vyw4000, bea, beb) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(ty_Maybe, df)) -> new_esEs(vyw302, vyw4002, df) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bae), baf) -> new_esEs(vyw300, vyw4000, bae) new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), ca) -> new_esEs0(vyw301, vyw4001, ca) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(ty_Maybe, eg), eh) -> new_esEs(vyw301, vyw4001, eg) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, ha), hb), de, eh) -> new_esEs3(vyw300, vyw4000, ha, hb) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(ty_Either, bac), bad)) -> new_esEs3(vyw301, vyw4001, bac, bad) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs1(vyw300, vyw4000, bdd, bde, bdf) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, gb), de, eh) -> new_esEs(vyw300, vyw4000, gb) new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, cb)) -> new_esEs(vyw300, vyw4000, cb) new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bca), bbh) -> new_esEs0(vyw300, vyw4000, bca) new_esEs3(Left(vyw300), Left(vyw4000), app(ty_Maybe, bbg), bbh) -> new_esEs(vyw300, vyw4000, bbg) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(ty_[], fa), eh) -> new_esEs0(vyw301, vyw4001, fa) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(vyw302, vyw4002, dh, ea, eb) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs1(vyw301, vyw4001, hf, hg, hh) new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bce), bcf), bbh) -> new_esEs2(vyw300, vyw4000, bce, bcf) new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_Either, bg), bh)) -> new_esEs3(vyw300, vyw4000, bg, bh) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(app(ty_Either, fh), ga), eh) -> new_esEs3(vyw301, vyw4001, fh, ga) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(ty_[], dg)) -> new_esEs0(vyw302, vyw4002, dg) new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_esEs1(vyw300, vyw4000, bcb, bcc, bcd) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw302, vyw4002, ee, ef) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], gc), de, eh) -> new_esEs0(vyw300, vyw4000, gc) new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], ba)) -> new_esEs0(vyw300, vyw4000, ba) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(app(ty_@2, ff), fg), eh) -> new_esEs2(vyw301, vyw4001, ff, fg) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(app(app(ty_@3, fb), fc), fd), eh) -> new_esEs1(vyw301, vyw4001, fb, fc, fd) new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(app(ty_@2, ec), ed)) -> new_esEs2(vyw302, vyw4002, ec, ed) new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bah), bba), bbb), baf) -> new_esEs1(vyw300, vyw4000, bah, bba, bbb) new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, db), dc)) -> new_esEs3(vyw300, vyw4000, db, dc) 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_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, cb)) -> new_esEs(vyw300, vyw4000, cb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, db), dc)) -> new_esEs3(vyw300, vyw4000, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, cg), da)) -> new_esEs2(vyw300, vyw4000, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, cd), ce), cf)) -> new_esEs1(vyw300, vyw4000, cd, ce, cf) 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(ty_@2, be), bf)) -> new_esEs2(vyw300, vyw4000, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], ba)) -> new_esEs0(vyw300, vyw4000, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, bb), bc), bd)) -> new_esEs1(vyw300, vyw4000, bb, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(@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_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, bae), baf) -> new_esEs(vyw300, vyw4000, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bbe), bbf), baf) -> new_esEs3(vyw300, vyw4000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@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_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(ty_@2, baa), bab)) -> new_esEs2(vyw301, vyw4001, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, bbc), bbd), baf) -> new_esEs2(vyw300, vyw4000, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(ty_[], he)) -> new_esEs0(vyw301, vyw4001, he) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bag), baf) -> new_esEs0(vyw300, vyw4000, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), hc, app(app(app(ty_@3, hf), hg), hh)) -> new_esEs1(vyw301, vyw4001, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, bah), bba), bbb), baf) -> new_esEs1(vyw300, vyw4000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *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(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(ty_Maybe, df)) -> new_esEs(vyw302, vyw4002, df) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(ty_Maybe, eg), eh) -> new_esEs(vyw301, vyw4001, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, gb), de, eh) -> new_esEs(vyw300, vyw4000, gb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 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(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdg), bdh)) -> new_esEs2(vyw300, vyw4000, bdg, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bce), bcf), bbh) -> new_esEs2(vyw300, vyw4000, bce, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdc)) -> new_esEs0(vyw300, vyw4000, bdc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bca), bbh) -> new_esEs0(vyw300, vyw4000, bca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdd), bde), bdf)) -> new_esEs1(vyw300, vyw4000, bdd, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bcb), bcc), bcd), bbh) -> new_esEs1(vyw300, vyw4000, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, ha), hb), de, eh) -> new_esEs3(vyw300, vyw4000, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(app(ty_Either, fh), ga), eh) -> new_esEs3(vyw301, vyw4001, fh, ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(app(ty_Either, ee), ef)) -> new_esEs3(vyw302, vyw4002, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], cc)) -> new_esEs0(vyw300, vyw4000, cc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(:(vyw300, vyw301), :(vyw4000, vyw4001), ca) -> new_esEs0(vyw301, vyw4001, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, gg), gh), de, eh) -> new_esEs2(vyw300, vyw4000, gg, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(app(ty_@2, ff), fg), eh) -> new_esEs2(vyw301, vyw4001, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(app(ty_@2, ec), ed)) -> new_esEs2(vyw302, vyw4002, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(ty_[], fa), eh) -> new_esEs0(vyw301, vyw4001, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(ty_[], dg)) -> new_esEs0(vyw302, vyw4002, dg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], gc), de, eh) -> new_esEs0(vyw300, vyw4000, gc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, gd), ge), gf), de, eh) -> new_esEs1(vyw300, vyw4000, gd, ge, gf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, de, app(app(app(ty_@3, dh), ea), eb)) -> new_esEs1(vyw302, vyw4002, dh, ea, eb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs1(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), dd, app(app(app(ty_@3, fb), fc), fd), eh) -> new_esEs1(vyw301, vyw4001, fb, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 ---------------------------------------- (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(vyw12300), Succ(vyw4000000)) -> new_primPlusNat(vyw12300, 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(vyw12300), Succ(vyw4000000)) -> new_primPlusNat(vyw12300, vyw4000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (43) YES