/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: 794c25de1cacf0d048858bcd21c9a779e1221865 marcel 20200619 unpublished dirty H-Termination with start terms of the given HASKELL could be proven: (0) HASKELL (1) LR [EQUIVALENT, 0 ms] (2) HASKELL (3) CR [EQUIVALENT, 0 ms] (4) HASKELL (5) IFR [EQUIVALENT, 0 ms] (6) HASKELL (7) BR [EQUIVALENT, 0 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 10 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) TransformationProof [EQUIVALENT, 2143 ms] (22) QDP (23) QDPSizeChangeProof [EQUIVALENT, 0 ms] (24) YES (25) QDP (26) QDPSizeChangeProof [EQUIVALENT, 14 ms] (27) YES (28) QDP (29) QDPSizeChangeProof [EQUIVALENT, 12 ms] (30) YES (31) QDP (32) QDPSizeChangeProof [EQUIVALENT, 0 ms] (33) YES (34) QDP (35) QDPSizeChangeProof [EQUIVALENT, 0 ms] (36) YES (37) QDP (38) QDPSizeChangeProof [EQUIVALENT, 0 ms] (39) YES ---------------------------------------- (0) 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 = 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 a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (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 a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 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 :: (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 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; } ---------------------------------------- (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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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; } ---------------------------------------- (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 :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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; } ---------------------------------------- (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 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 :: (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 b => FiniteMap b a -> b -> Maybe a; 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 "absReal x|x >= 0x|otherwise`negate` x; " is transformed to "absReal x = absReal2 x; " "absReal1 x True = x; absReal1 x False = absReal0 x otherwise; " "absReal0 x True = `negate` x; " "absReal2 x = absReal1 x (x >= 0); " The following Function with conditions "gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); " is transformed to "gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; " "gcd'0 x y = gcd' y (x `rem` y); " "gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; " "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; " The following Function with conditions "gcd 0 0 = error []; gcd x y = gcd' (abs x) (abs y) where { gcd' x 0 = x; gcd' x y = gcd' y (x `rem` y); } ; " is transformed to "gcd vvy vvz = gcd3 vvy vvz; gcd x y = gcd0 x y; " "gcd0 x y = gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } ; " "gcd1 True vvy vvz = error []; gcd1 vwu vwv vww = gcd0 vwv vww; " "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; gcd2 vwx vwy vwz = gcd0 vwy vwz; " "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; gcd3 vxu vxv = gcd0 vxu vxv; " The following Function with conditions "undefined |Falseundefined; " is transformed to "undefined = undefined1; " "undefined0 True = undefined; " "undefined1 = undefined0 False; " The following Function with conditions "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { d = gcd x y; } ; " is transformed to "reduce x y = reduce2 x y; " "reduce2 x y = reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } ; " The following Function with conditions "compare x y|x == yEQ|x <= yLT|otherwiseGT; " is transformed to "compare x y = compare3 x y; " "compare2 x y True = EQ; compare2 x y False = compare1 x y (x <= y); " "compare0 x y True = GT; " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find|key_to_find < keylookupFM fm_l key_to_find|key_to_find > keylookupFM fm_r key_to_find|otherwiseJust elt; " is transformed to "lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; " "lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); " "lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; " "lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; " "lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); " "lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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 :: (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 b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap 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'0 x y = gcd0Gcd' y (x `rem` y); " "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2D vyu vyv = gcd vyu vyv; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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 b a -> [(b,a)]; 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 b => FiniteMap b a -> b -> Maybe a; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 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 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 :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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"];2377[label="vyw4/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];5 -> 2377[label="",style="solid", color="burlywood", weight=9]; 2377 -> 6[label="",style="solid", color="burlywood", weight=3]; 2378[label="vyw4/FiniteMap.Branch vyw40 vyw41 vyw42 vyw43 vyw44",fontsize=10,color="white",style="solid",shape="box"];5 -> 2378[label="",style="solid", color="burlywood", weight=9]; 2378 -> 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"];2379[label="vyw3/(vyw30,vyw31)",fontsize=10,color="white",style="solid",shape="box"];15 -> 2379[label="",style="solid", color="burlywood", weight=9]; 2379 -> 16[label="",style="solid", color="burlywood", weight=3]; 16[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 vyw40 vyw41 vyw42 vyw43 vyw44 (vyw30,vyw31) (compare2 (vyw30,vyw31) vyw40 ((vyw30,vyw31) == vyw40) == LT))",fontsize=16,color="burlywood",shape="box"];2380[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];16 -> 2380[label="",style="solid", color="burlywood", weight=9]; 2380 -> 17[label="",style="solid", color="burlywood", weight=3]; 17[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw400,vyw401) vyw41 vyw42 vyw43 vyw44 (vyw30,vyw31) (compare2 (vyw30,vyw31) (vyw400,vyw401) ((vyw30,vyw31) == (vyw400,vyw401)) == LT))",fontsize=16,color="black",shape="box"];17 -> 18[label="",style="solid", color="black", weight=3]; 18 -> 102[label="",style="dashed", color="red", weight=0]; 18[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw400,vyw401) vyw41 vyw42 vyw43 vyw44 (vyw30,vyw31) (compare2 (vyw30,vyw31) (vyw400,vyw401) (vyw30 == vyw400 && vyw31 == vyw401) == LT))",fontsize=16,color="magenta"];18 -> 103[label="",style="dashed", color="magenta", weight=3]; 18 -> 104[label="",style="dashed", color="magenta", weight=3]; 18 -> 105[label="",style="dashed", color="magenta", weight=3]; 18 -> 106[label="",style="dashed", color="magenta", weight=3]; 18 -> 107[label="",style="dashed", color="magenta", weight=3]; 18 -> 108[label="",style="dashed", color="magenta", weight=3]; 18 -> 109[label="",style="dashed", color="magenta", weight=3]; 18 -> 110[label="",style="dashed", color="magenta", weight=3]; 18 -> 111[label="",style="dashed", color="magenta", weight=3]; 103 -> 115[label="",style="dashed", color="red", weight=0]; 103[label="compare2 (vyw30,vyw31) (vyw400,vyw401) (vyw30 == vyw400 && vyw31 == vyw401) == LT",fontsize=16,color="magenta"];103 -> 116[label="",style="dashed", color="magenta", weight=3]; 103 -> 117[label="",style="dashed", color="magenta", weight=3]; 103 -> 118[label="",style="dashed", color="magenta", weight=3]; 103 -> 119[label="",style="dashed", color="magenta", weight=3]; 103 -> 120[label="",style="dashed", color="magenta", weight=3]; 104[label="vyw400",fontsize=16,color="green",shape="box"];105[label="vyw401",fontsize=16,color="green",shape="box"];106[label="vyw31",fontsize=16,color="green",shape="box"];107[label="vyw30",fontsize=16,color="green",shape="box"];108[label="vyw43",fontsize=16,color="green",shape="box"];109[label="vyw41",fontsize=16,color="green",shape="box"];110[label="vyw42",fontsize=16,color="green",shape="box"];111[label="vyw44",fontsize=16,color="green",shape="box"];102[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw24)",fontsize=16,color="burlywood",shape="triangle"];2381[label="vyw24/False",fontsize=10,color="white",style="solid",shape="box"];102 -> 2381[label="",style="solid", color="burlywood", weight=9]; 2381 -> 121[label="",style="solid", color="burlywood", weight=3]; 2382[label="vyw24/True",fontsize=10,color="white",style="solid",shape="box"];102 -> 2382[label="",style="solid", color="burlywood", weight=9]; 2382 -> 122[label="",style="solid", color="burlywood", weight=3]; 116[label="vyw31",fontsize=16,color="green",shape="box"];117[label="vyw30",fontsize=16,color="green",shape="box"];118[label="vyw401",fontsize=16,color="green",shape="box"];119[label="vyw30 == vyw400",fontsize=16,color="blue",shape="box"];2383[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2383[label="",style="solid", color="blue", weight=9]; 2383 -> 123[label="",style="solid", color="blue", weight=3]; 2384[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2384[label="",style="solid", color="blue", weight=9]; 2384 -> 124[label="",style="solid", color="blue", weight=3]; 2385[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2385[label="",style="solid", color="blue", weight=9]; 2385 -> 125[label="",style="solid", color="blue", weight=3]; 2386[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2386[label="",style="solid", color="blue", weight=9]; 2386 -> 126[label="",style="solid", color="blue", weight=3]; 2387[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2387[label="",style="solid", color="blue", weight=9]; 2387 -> 127[label="",style="solid", color="blue", weight=3]; 2388[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2388[label="",style="solid", color="blue", weight=9]; 2388 -> 128[label="",style="solid", color="blue", weight=3]; 2389[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2389[label="",style="solid", color="blue", weight=9]; 2389 -> 129[label="",style="solid", color="blue", weight=3]; 2390[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2390[label="",style="solid", color="blue", weight=9]; 2390 -> 130[label="",style="solid", color="blue", weight=3]; 2391[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2391[label="",style="solid", color="blue", weight=9]; 2391 -> 131[label="",style="solid", color="blue", weight=3]; 2392[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2392[label="",style="solid", color="blue", weight=9]; 2392 -> 132[label="",style="solid", color="blue", weight=3]; 2393[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2393[label="",style="solid", color="blue", weight=9]; 2393 -> 133[label="",style="solid", color="blue", weight=3]; 2394[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2394[label="",style="solid", color="blue", weight=9]; 2394 -> 134[label="",style="solid", color="blue", weight=3]; 2395[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2395[label="",style="solid", color="blue", weight=9]; 2395 -> 135[label="",style="solid", color="blue", weight=3]; 2396[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];119 -> 2396[label="",style="solid", color="blue", weight=9]; 2396 -> 136[label="",style="solid", color="blue", weight=3]; 120[label="vyw400",fontsize=16,color="green",shape="box"];115[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw35 && vyw32 == vyw34) == LT",fontsize=16,color="burlywood",shape="triangle"];2397[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];115 -> 2397[label="",style="solid", color="burlywood", weight=9]; 2397 -> 137[label="",style="solid", color="burlywood", weight=3]; 2398[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];115 -> 2398[label="",style="solid", color="burlywood", weight=9]; 2398 -> 138[label="",style="solid", color="burlywood", weight=3]; 121[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False)",fontsize=16,color="black",shape="box"];121 -> 139[label="",style="solid", color="black", weight=3]; 122[label="FiniteMap.elemFM0 (FiniteMap.lookupFM2 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True)",fontsize=16,color="black",shape="box"];122 -> 140[label="",style="solid", color="black", weight=3]; 123[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];123 -> 141[label="",style="solid", color="black", weight=3]; 124[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2399[label="vyw30/False",fontsize=10,color="white",style="solid",shape="box"];124 -> 2399[label="",style="solid", color="burlywood", weight=9]; 2399 -> 142[label="",style="solid", color="burlywood", weight=3]; 2400[label="vyw30/True",fontsize=10,color="white",style="solid",shape="box"];124 -> 2400[label="",style="solid", color="burlywood", weight=9]; 2400 -> 143[label="",style="solid", color="burlywood", weight=3]; 125[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];125 -> 144[label="",style="solid", color="black", weight=3]; 126[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2401[label="vyw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];126 -> 2401[label="",style="solid", color="burlywood", weight=9]; 2401 -> 145[label="",style="solid", color="burlywood", weight=3]; 2402[label="vyw30/Just vyw300",fontsize=10,color="white",style="solid",shape="box"];126 -> 2402[label="",style="solid", color="burlywood", weight=9]; 2402 -> 146[label="",style="solid", color="burlywood", weight=3]; 127[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2403[label="vyw30/(vyw300,vyw301,vyw302)",fontsize=10,color="white",style="solid",shape="box"];127 -> 2403[label="",style="solid", color="burlywood", weight=9]; 2403 -> 147[label="",style="solid", color="burlywood", weight=3]; 128[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2404[label="vyw30/Integer vyw300",fontsize=10,color="white",style="solid",shape="box"];128 -> 2404[label="",style="solid", color="burlywood", weight=9]; 2404 -> 148[label="",style="solid", color="burlywood", weight=3]; 129[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2405[label="vyw30/(vyw300,vyw301)",fontsize=10,color="white",style="solid",shape="box"];129 -> 2405[label="",style="solid", color="burlywood", weight=9]; 2405 -> 149[label="",style="solid", color="burlywood", weight=3]; 130[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2406[label="vyw30/()",fontsize=10,color="white",style="solid",shape="box"];130 -> 2406[label="",style="solid", color="burlywood", weight=9]; 2406 -> 150[label="",style="solid", color="burlywood", weight=3]; 131[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2407[label="vyw30/LT",fontsize=10,color="white",style="solid",shape="box"];131 -> 2407[label="",style="solid", color="burlywood", weight=9]; 2407 -> 151[label="",style="solid", color="burlywood", weight=3]; 2408[label="vyw30/EQ",fontsize=10,color="white",style="solid",shape="box"];131 -> 2408[label="",style="solid", color="burlywood", weight=9]; 2408 -> 152[label="",style="solid", color="burlywood", weight=3]; 2409[label="vyw30/GT",fontsize=10,color="white",style="solid",shape="box"];131 -> 2409[label="",style="solid", color="burlywood", weight=9]; 2409 -> 153[label="",style="solid", color="burlywood", weight=3]; 132[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2410[label="vyw30/vyw300 : vyw301",fontsize=10,color="white",style="solid",shape="box"];132 -> 2410[label="",style="solid", color="burlywood", weight=9]; 2410 -> 154[label="",style="solid", color="burlywood", weight=3]; 2411[label="vyw30/[]",fontsize=10,color="white",style="solid",shape="box"];132 -> 2411[label="",style="solid", color="burlywood", weight=9]; 2411 -> 155[label="",style="solid", color="burlywood", weight=3]; 133[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];133 -> 156[label="",style="solid", color="black", weight=3]; 134[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2412[label="vyw30/vyw300 :% vyw301",fontsize=10,color="white",style="solid",shape="box"];134 -> 2412[label="",style="solid", color="burlywood", weight=9]; 2412 -> 157[label="",style="solid", color="burlywood", weight=3]; 135[label="vyw30 == vyw400",fontsize=16,color="black",shape="triangle"];135 -> 158[label="",style="solid", color="black", weight=3]; 136[label="vyw30 == vyw400",fontsize=16,color="burlywood",shape="triangle"];2413[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];136 -> 2413[label="",style="solid", color="burlywood", weight=9]; 2413 -> 159[label="",style="solid", color="burlywood", weight=3]; 2414[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];136 -> 2414[label="",style="solid", color="burlywood", weight=9]; 2414 -> 160[label="",style="solid", color="burlywood", weight=3]; 137[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (False && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];137 -> 161[label="",style="solid", color="black", weight=3]; 138[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (True && vyw32 == vyw34) == LT",fontsize=16,color="black",shape="box"];138 -> 162[label="",style="solid", color="black", weight=3]; 139 -> 205[label="",style="dashed", color="red", weight=0]; 139[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) ((vyw21,vyw22) > (vyw15,vyw16)))",fontsize=16,color="magenta"];139 -> 206[label="",style="dashed", color="magenta", weight=3]; 140 -> 5[label="",style="dashed", color="red", weight=0]; 140[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw19 (vyw21,vyw22))",fontsize=16,color="magenta"];140 -> 164[label="",style="dashed", color="magenta", weight=3]; 140 -> 165[label="",style="dashed", color="magenta", weight=3]; 141[label="primEqDouble vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];2415[label="vyw30/Double vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];141 -> 2415[label="",style="solid", color="burlywood", weight=9]; 2415 -> 166[label="",style="solid", color="burlywood", weight=3]; 142[label="False == vyw400",fontsize=16,color="burlywood",shape="box"];2416[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];142 -> 2416[label="",style="solid", color="burlywood", weight=9]; 2416 -> 167[label="",style="solid", color="burlywood", weight=3]; 2417[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];142 -> 2417[label="",style="solid", color="burlywood", weight=9]; 2417 -> 168[label="",style="solid", color="burlywood", weight=3]; 143[label="True == vyw400",fontsize=16,color="burlywood",shape="box"];2418[label="vyw400/False",fontsize=10,color="white",style="solid",shape="box"];143 -> 2418[label="",style="solid", color="burlywood", weight=9]; 2418 -> 169[label="",style="solid", color="burlywood", weight=3]; 2419[label="vyw400/True",fontsize=10,color="white",style="solid",shape="box"];143 -> 2419[label="",style="solid", color="burlywood", weight=9]; 2419 -> 170[label="",style="solid", color="burlywood", weight=3]; 144[label="primEqChar vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];2420[label="vyw30/Char vyw300",fontsize=10,color="white",style="solid",shape="box"];144 -> 2420[label="",style="solid", color="burlywood", weight=9]; 2420 -> 171[label="",style="solid", color="burlywood", weight=3]; 145[label="Nothing == vyw400",fontsize=16,color="burlywood",shape="box"];2421[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];145 -> 2421[label="",style="solid", color="burlywood", weight=9]; 2421 -> 172[label="",style="solid", color="burlywood", weight=3]; 2422[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];145 -> 2422[label="",style="solid", color="burlywood", weight=9]; 2422 -> 173[label="",style="solid", color="burlywood", weight=3]; 146[label="Just vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2423[label="vyw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];146 -> 2423[label="",style="solid", color="burlywood", weight=9]; 2423 -> 174[label="",style="solid", color="burlywood", weight=3]; 2424[label="vyw400/Just vyw4000",fontsize=10,color="white",style="solid",shape="box"];146 -> 2424[label="",style="solid", color="burlywood", weight=9]; 2424 -> 175[label="",style="solid", color="burlywood", weight=3]; 147[label="(vyw300,vyw301,vyw302) == vyw400",fontsize=16,color="burlywood",shape="box"];2425[label="vyw400/(vyw4000,vyw4001,vyw4002)",fontsize=10,color="white",style="solid",shape="box"];147 -> 2425[label="",style="solid", color="burlywood", weight=9]; 2425 -> 176[label="",style="solid", color="burlywood", weight=3]; 148[label="Integer vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2426[label="vyw400/Integer vyw4000",fontsize=10,color="white",style="solid",shape="box"];148 -> 2426[label="",style="solid", color="burlywood", weight=9]; 2426 -> 177[label="",style="solid", color="burlywood", weight=3]; 149[label="(vyw300,vyw301) == vyw400",fontsize=16,color="burlywood",shape="box"];2427[label="vyw400/(vyw4000,vyw4001)",fontsize=10,color="white",style="solid",shape="box"];149 -> 2427[label="",style="solid", color="burlywood", weight=9]; 2427 -> 178[label="",style="solid", color="burlywood", weight=3]; 150[label="() == vyw400",fontsize=16,color="burlywood",shape="box"];2428[label="vyw400/()",fontsize=10,color="white",style="solid",shape="box"];150 -> 2428[label="",style="solid", color="burlywood", weight=9]; 2428 -> 179[label="",style="solid", color="burlywood", weight=3]; 151[label="LT == vyw400",fontsize=16,color="burlywood",shape="box"];2429[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];151 -> 2429[label="",style="solid", color="burlywood", weight=9]; 2429 -> 180[label="",style="solid", color="burlywood", weight=3]; 2430[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];151 -> 2430[label="",style="solid", color="burlywood", weight=9]; 2430 -> 181[label="",style="solid", color="burlywood", weight=3]; 2431[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];151 -> 2431[label="",style="solid", color="burlywood", weight=9]; 2431 -> 182[label="",style="solid", color="burlywood", weight=3]; 152[label="EQ == vyw400",fontsize=16,color="burlywood",shape="box"];2432[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];152 -> 2432[label="",style="solid", color="burlywood", weight=9]; 2432 -> 183[label="",style="solid", color="burlywood", weight=3]; 2433[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];152 -> 2433[label="",style="solid", color="burlywood", weight=9]; 2433 -> 184[label="",style="solid", color="burlywood", weight=3]; 2434[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];152 -> 2434[label="",style="solid", color="burlywood", weight=9]; 2434 -> 185[label="",style="solid", color="burlywood", weight=3]; 153[label="GT == vyw400",fontsize=16,color="burlywood",shape="box"];2435[label="vyw400/LT",fontsize=10,color="white",style="solid",shape="box"];153 -> 2435[label="",style="solid", color="burlywood", weight=9]; 2435 -> 186[label="",style="solid", color="burlywood", weight=3]; 2436[label="vyw400/EQ",fontsize=10,color="white",style="solid",shape="box"];153 -> 2436[label="",style="solid", color="burlywood", weight=9]; 2436 -> 187[label="",style="solid", color="burlywood", weight=3]; 2437[label="vyw400/GT",fontsize=10,color="white",style="solid",shape="box"];153 -> 2437[label="",style="solid", color="burlywood", weight=9]; 2437 -> 188[label="",style="solid", color="burlywood", weight=3]; 154[label="vyw300 : vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];2438[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];154 -> 2438[label="",style="solid", color="burlywood", weight=9]; 2438 -> 189[label="",style="solid", color="burlywood", weight=3]; 2439[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];154 -> 2439[label="",style="solid", color="burlywood", weight=9]; 2439 -> 190[label="",style="solid", color="burlywood", weight=3]; 155[label="[] == vyw400",fontsize=16,color="burlywood",shape="box"];2440[label="vyw400/vyw4000 : vyw4001",fontsize=10,color="white",style="solid",shape="box"];155 -> 2440[label="",style="solid", color="burlywood", weight=9]; 2440 -> 191[label="",style="solid", color="burlywood", weight=3]; 2441[label="vyw400/[]",fontsize=10,color="white",style="solid",shape="box"];155 -> 2441[label="",style="solid", color="burlywood", weight=9]; 2441 -> 192[label="",style="solid", color="burlywood", weight=3]; 156[label="primEqInt vyw30 vyw400",fontsize=16,color="burlywood",shape="triangle"];2442[label="vyw30/Pos vyw300",fontsize=10,color="white",style="solid",shape="box"];156 -> 2442[label="",style="solid", color="burlywood", weight=9]; 2442 -> 193[label="",style="solid", color="burlywood", weight=3]; 2443[label="vyw30/Neg vyw300",fontsize=10,color="white",style="solid",shape="box"];156 -> 2443[label="",style="solid", color="burlywood", weight=9]; 2443 -> 194[label="",style="solid", color="burlywood", weight=3]; 157[label="vyw300 :% vyw301 == vyw400",fontsize=16,color="burlywood",shape="box"];2444[label="vyw400/vyw4000 :% vyw4001",fontsize=10,color="white",style="solid",shape="box"];157 -> 2444[label="",style="solid", color="burlywood", weight=9]; 2444 -> 195[label="",style="solid", color="burlywood", weight=3]; 158[label="primEqFloat vyw30 vyw400",fontsize=16,color="burlywood",shape="box"];2445[label="vyw30/Float vyw300 vyw301",fontsize=10,color="white",style="solid",shape="box"];158 -> 2445[label="",style="solid", color="burlywood", weight=9]; 2445 -> 196[label="",style="solid", color="burlywood", weight=3]; 159[label="Left vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2446[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2446[label="",style="solid", color="burlywood", weight=9]; 2446 -> 197[label="",style="solid", color="burlywood", weight=3]; 2447[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2447[label="",style="solid", color="burlywood", weight=9]; 2447 -> 198[label="",style="solid", color="burlywood", weight=3]; 160[label="Right vyw300 == vyw400",fontsize=16,color="burlywood",shape="box"];2448[label="vyw400/Left vyw4000",fontsize=10,color="white",style="solid",shape="box"];160 -> 2448[label="",style="solid", color="burlywood", weight=9]; 2448 -> 199[label="",style="solid", color="burlywood", weight=3]; 2449[label="vyw400/Right vyw4000",fontsize=10,color="white",style="solid",shape="box"];160 -> 2449[label="",style="solid", color="burlywood", weight=9]; 2449 -> 200[label="",style="solid", color="burlywood", weight=3]; 161 -> 131[label="",style="dashed", color="red", weight=0]; 161[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False == LT",fontsize=16,color="magenta"];161 -> 201[label="",style="dashed", color="magenta", weight=3]; 161 -> 202[label="",style="dashed", color="magenta", weight=3]; 162 -> 131[label="",style="dashed", color="red", weight=0]; 162[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34) == LT",fontsize=16,color="magenta"];162 -> 203[label="",style="dashed", color="magenta", weight=3]; 162 -> 204[label="",style="dashed", color="magenta", weight=3]; 206[label="(vyw21,vyw22) > (vyw15,vyw16)",fontsize=16,color="black",shape="box"];206 -> 208[label="",style="solid", color="black", weight=3]; 205[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) vyw36)",fontsize=16,color="burlywood",shape="triangle"];2450[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];205 -> 2450[label="",style="solid", color="burlywood", weight=9]; 2450 -> 209[label="",style="solid", color="burlywood", weight=3]; 2451[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];205 -> 2451[label="",style="solid", color="burlywood", weight=9]; 2451 -> 210[label="",style="solid", color="burlywood", weight=3]; 164[label="vyw19",fontsize=16,color="green",shape="box"];165[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];166[label="primEqDouble (Double vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];2452[label="vyw400/Double vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];166 -> 2452[label="",style="solid", color="burlywood", weight=9]; 2452 -> 211[label="",style="solid", color="burlywood", weight=3]; 167[label="False == False",fontsize=16,color="black",shape="box"];167 -> 212[label="",style="solid", color="black", weight=3]; 168[label="False == True",fontsize=16,color="black",shape="box"];168 -> 213[label="",style="solid", color="black", weight=3]; 169[label="True == False",fontsize=16,color="black",shape="box"];169 -> 214[label="",style="solid", color="black", weight=3]; 170[label="True == True",fontsize=16,color="black",shape="box"];170 -> 215[label="",style="solid", color="black", weight=3]; 171[label="primEqChar (Char vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];2453[label="vyw400/Char vyw4000",fontsize=10,color="white",style="solid",shape="box"];171 -> 2453[label="",style="solid", color="burlywood", weight=9]; 2453 -> 216[label="",style="solid", color="burlywood", weight=3]; 172[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];172 -> 217[label="",style="solid", color="black", weight=3]; 173[label="Nothing == Just vyw4000",fontsize=16,color="black",shape="box"];173 -> 218[label="",style="solid", color="black", weight=3]; 174[label="Just vyw300 == Nothing",fontsize=16,color="black",shape="box"];174 -> 219[label="",style="solid", color="black", weight=3]; 175[label="Just vyw300 == Just vyw4000",fontsize=16,color="black",shape="box"];175 -> 220[label="",style="solid", color="black", weight=3]; 176[label="(vyw300,vyw301,vyw302) == (vyw4000,vyw4001,vyw4002)",fontsize=16,color="black",shape="box"];176 -> 221[label="",style="solid", color="black", weight=3]; 177[label="Integer vyw300 == Integer vyw4000",fontsize=16,color="black",shape="box"];177 -> 222[label="",style="solid", color="black", weight=3]; 178[label="(vyw300,vyw301) == (vyw4000,vyw4001)",fontsize=16,color="black",shape="box"];178 -> 223[label="",style="solid", color="black", weight=3]; 179[label="() == ()",fontsize=16,color="black",shape="box"];179 -> 224[label="",style="solid", color="black", weight=3]; 180[label="LT == LT",fontsize=16,color="black",shape="box"];180 -> 225[label="",style="solid", color="black", weight=3]; 181[label="LT == EQ",fontsize=16,color="black",shape="box"];181 -> 226[label="",style="solid", color="black", weight=3]; 182[label="LT == GT",fontsize=16,color="black",shape="box"];182 -> 227[label="",style="solid", color="black", weight=3]; 183[label="EQ == LT",fontsize=16,color="black",shape="box"];183 -> 228[label="",style="solid", color="black", weight=3]; 184[label="EQ == EQ",fontsize=16,color="black",shape="box"];184 -> 229[label="",style="solid", color="black", weight=3]; 185[label="EQ == GT",fontsize=16,color="black",shape="box"];185 -> 230[label="",style="solid", color="black", weight=3]; 186[label="GT == LT",fontsize=16,color="black",shape="box"];186 -> 231[label="",style="solid", color="black", weight=3]; 187[label="GT == EQ",fontsize=16,color="black",shape="box"];187 -> 232[label="",style="solid", color="black", weight=3]; 188[label="GT == GT",fontsize=16,color="black",shape="box"];188 -> 233[label="",style="solid", color="black", weight=3]; 189[label="vyw300 : vyw301 == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];189 -> 234[label="",style="solid", color="black", weight=3]; 190[label="vyw300 : vyw301 == []",fontsize=16,color="black",shape="box"];190 -> 235[label="",style="solid", color="black", weight=3]; 191[label="[] == vyw4000 : vyw4001",fontsize=16,color="black",shape="box"];191 -> 236[label="",style="solid", color="black", weight=3]; 192[label="[] == []",fontsize=16,color="black",shape="box"];192 -> 237[label="",style="solid", color="black", weight=3]; 193[label="primEqInt (Pos vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];2454[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];193 -> 2454[label="",style="solid", color="burlywood", weight=9]; 2454 -> 238[label="",style="solid", color="burlywood", weight=3]; 2455[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];193 -> 2455[label="",style="solid", color="burlywood", weight=9]; 2455 -> 239[label="",style="solid", color="burlywood", weight=3]; 194[label="primEqInt (Neg vyw300) vyw400",fontsize=16,color="burlywood",shape="box"];2456[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];194 -> 2456[label="",style="solid", color="burlywood", weight=9]; 2456 -> 240[label="",style="solid", color="burlywood", weight=3]; 2457[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];194 -> 2457[label="",style="solid", color="burlywood", weight=9]; 2457 -> 241[label="",style="solid", color="burlywood", weight=3]; 195[label="vyw300 :% vyw301 == vyw4000 :% vyw4001",fontsize=16,color="black",shape="box"];195 -> 242[label="",style="solid", color="black", weight=3]; 196[label="primEqFloat (Float vyw300 vyw301) vyw400",fontsize=16,color="burlywood",shape="box"];2458[label="vyw400/Float vyw4000 vyw4001",fontsize=10,color="white",style="solid",shape="box"];196 -> 2458[label="",style="solid", color="burlywood", weight=9]; 2458 -> 243[label="",style="solid", color="burlywood", weight=3]; 197[label="Left vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];197 -> 244[label="",style="solid", color="black", weight=3]; 198[label="Left vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];198 -> 245[label="",style="solid", color="black", weight=3]; 199[label="Right vyw300 == Left vyw4000",fontsize=16,color="black",shape="box"];199 -> 246[label="",style="solid", color="black", weight=3]; 200[label="Right vyw300 == Right vyw4000",fontsize=16,color="black",shape="box"];200 -> 247[label="",style="solid", color="black", weight=3]; 201[label="LT",fontsize=16,color="green",shape="box"];202 -> 1203[label="",style="dashed", color="red", weight=0]; 202[label="compare2 (vyw31,vyw32) (vyw33,vyw34) False",fontsize=16,color="magenta"];202 -> 1204[label="",style="dashed", color="magenta", weight=3]; 202 -> 1205[label="",style="dashed", color="magenta", weight=3]; 202 -> 1206[label="",style="dashed", color="magenta", weight=3]; 203[label="LT",fontsize=16,color="green",shape="box"];204 -> 1203[label="",style="dashed", color="red", weight=0]; 204[label="compare2 (vyw31,vyw32) (vyw33,vyw34) (vyw32 == vyw34)",fontsize=16,color="magenta"];204 -> 1207[label="",style="dashed", color="magenta", weight=3]; 204 -> 1208[label="",style="dashed", color="magenta", weight=3]; 204 -> 1209[label="",style="dashed", color="magenta", weight=3]; 208 -> 131[label="",style="dashed", color="red", weight=0]; 208[label="compare (vyw21,vyw22) (vyw15,vyw16) == GT",fontsize=16,color="magenta"];208 -> 260[label="",style="dashed", color="magenta", weight=3]; 208 -> 261[label="",style="dashed", color="magenta", weight=3]; 209[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) False)",fontsize=16,color="black",shape="box"];209 -> 262[label="",style="solid", color="black", weight=3]; 210[label="FiniteMap.elemFM0 (FiniteMap.lookupFM1 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True)",fontsize=16,color="black",shape="box"];210 -> 263[label="",style="solid", color="black", weight=3]; 211[label="primEqDouble (Double vyw300 vyw301) (Double vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];211 -> 264[label="",style="solid", color="black", weight=3]; 212[label="True",fontsize=16,color="green",shape="box"];213[label="False",fontsize=16,color="green",shape="box"];214[label="False",fontsize=16,color="green",shape="box"];215[label="True",fontsize=16,color="green",shape="box"];216[label="primEqChar (Char vyw300) (Char vyw4000)",fontsize=16,color="black",shape="box"];216 -> 265[label="",style="solid", color="black", weight=3]; 217[label="True",fontsize=16,color="green",shape="box"];218[label="False",fontsize=16,color="green",shape="box"];219[label="False",fontsize=16,color="green",shape="box"];220[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2459[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2459[label="",style="solid", color="blue", weight=9]; 2459 -> 266[label="",style="solid", color="blue", weight=3]; 2460[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2460[label="",style="solid", color="blue", weight=9]; 2460 -> 267[label="",style="solid", color="blue", weight=3]; 2461[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2461[label="",style="solid", color="blue", weight=9]; 2461 -> 268[label="",style="solid", color="blue", weight=3]; 2462[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2462[label="",style="solid", color="blue", weight=9]; 2462 -> 269[label="",style="solid", color="blue", weight=3]; 2463[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2463[label="",style="solid", color="blue", weight=9]; 2463 -> 270[label="",style="solid", color="blue", weight=3]; 2464[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2464[label="",style="solid", color="blue", weight=9]; 2464 -> 271[label="",style="solid", color="blue", weight=3]; 2465[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2465[label="",style="solid", color="blue", weight=9]; 2465 -> 272[label="",style="solid", color="blue", weight=3]; 2466[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2466[label="",style="solid", color="blue", weight=9]; 2466 -> 273[label="",style="solid", color="blue", weight=3]; 2467[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2467[label="",style="solid", color="blue", weight=9]; 2467 -> 274[label="",style="solid", color="blue", weight=3]; 2468[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2468[label="",style="solid", color="blue", weight=9]; 2468 -> 275[label="",style="solid", color="blue", weight=3]; 2469[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2469[label="",style="solid", color="blue", weight=9]; 2469 -> 276[label="",style="solid", color="blue", weight=3]; 2470[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2470[label="",style="solid", color="blue", weight=9]; 2470 -> 277[label="",style="solid", color="blue", weight=3]; 2471[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2471[label="",style="solid", color="blue", weight=9]; 2471 -> 278[label="",style="solid", color="blue", weight=3]; 2472[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];220 -> 2472[label="",style="solid", color="blue", weight=9]; 2472 -> 279[label="",style="solid", color="blue", weight=3]; 221 -> 401[label="",style="dashed", color="red", weight=0]; 221[label="vyw300 == vyw4000 && vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];221 -> 402[label="",style="dashed", color="magenta", weight=3]; 221 -> 403[label="",style="dashed", color="magenta", weight=3]; 222 -> 156[label="",style="dashed", color="red", weight=0]; 222[label="primEqInt vyw300 vyw4000",fontsize=16,color="magenta"];222 -> 286[label="",style="dashed", color="magenta", weight=3]; 222 -> 287[label="",style="dashed", color="magenta", weight=3]; 223 -> 401[label="",style="dashed", color="red", weight=0]; 223[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];223 -> 404[label="",style="dashed", color="magenta", weight=3]; 223 -> 405[label="",style="dashed", color="magenta", weight=3]; 224[label="True",fontsize=16,color="green",shape="box"];225[label="True",fontsize=16,color="green",shape="box"];226[label="False",fontsize=16,color="green",shape="box"];227[label="False",fontsize=16,color="green",shape="box"];228[label="False",fontsize=16,color="green",shape="box"];229[label="True",fontsize=16,color="green",shape="box"];230[label="False",fontsize=16,color="green",shape="box"];231[label="False",fontsize=16,color="green",shape="box"];232[label="False",fontsize=16,color="green",shape="box"];233[label="True",fontsize=16,color="green",shape="box"];234 -> 401[label="",style="dashed", color="red", weight=0]; 234[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];234 -> 406[label="",style="dashed", color="magenta", weight=3]; 234 -> 407[label="",style="dashed", color="magenta", weight=3]; 235[label="False",fontsize=16,color="green",shape="box"];236[label="False",fontsize=16,color="green",shape="box"];237[label="True",fontsize=16,color="green",shape="box"];238[label="primEqInt (Pos (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];2473[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];238 -> 2473[label="",style="solid", color="burlywood", weight=9]; 2473 -> 298[label="",style="solid", color="burlywood", weight=3]; 2474[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];238 -> 2474[label="",style="solid", color="burlywood", weight=9]; 2474 -> 299[label="",style="solid", color="burlywood", weight=3]; 239[label="primEqInt (Pos Zero) vyw400",fontsize=16,color="burlywood",shape="box"];2475[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];239 -> 2475[label="",style="solid", color="burlywood", weight=9]; 2475 -> 300[label="",style="solid", color="burlywood", weight=3]; 2476[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];239 -> 2476[label="",style="solid", color="burlywood", weight=9]; 2476 -> 301[label="",style="solid", color="burlywood", weight=3]; 240[label="primEqInt (Neg (Succ vyw3000)) vyw400",fontsize=16,color="burlywood",shape="box"];2477[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];240 -> 2477[label="",style="solid", color="burlywood", weight=9]; 2477 -> 302[label="",style="solid", color="burlywood", weight=3]; 2478[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];240 -> 2478[label="",style="solid", color="burlywood", weight=9]; 2478 -> 303[label="",style="solid", color="burlywood", weight=3]; 241[label="primEqInt (Neg Zero) vyw400",fontsize=16,color="burlywood",shape="box"];2479[label="vyw400/Pos vyw4000",fontsize=10,color="white",style="solid",shape="box"];241 -> 2479[label="",style="solid", color="burlywood", weight=9]; 2479 -> 304[label="",style="solid", color="burlywood", weight=3]; 2480[label="vyw400/Neg vyw4000",fontsize=10,color="white",style="solid",shape="box"];241 -> 2480[label="",style="solid", color="burlywood", weight=9]; 2480 -> 305[label="",style="solid", color="burlywood", weight=3]; 242 -> 401[label="",style="dashed", color="red", weight=0]; 242[label="vyw300 == vyw4000 && vyw301 == vyw4001",fontsize=16,color="magenta"];242 -> 408[label="",style="dashed", color="magenta", weight=3]; 242 -> 409[label="",style="dashed", color="magenta", weight=3]; 243[label="primEqFloat (Float vyw300 vyw301) (Float vyw4000 vyw4001)",fontsize=16,color="black",shape="box"];243 -> 306[label="",style="solid", color="black", weight=3]; 244[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2481[label="",style="solid", color="blue", weight=9]; 2481 -> 307[label="",style="solid", color="blue", weight=3]; 2482[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2482[label="",style="solid", color="blue", weight=9]; 2482 -> 308[label="",style="solid", color="blue", weight=3]; 2483[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2483[label="",style="solid", color="blue", weight=9]; 2483 -> 309[label="",style="solid", color="blue", weight=3]; 2484[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2484[label="",style="solid", color="blue", weight=9]; 2484 -> 310[label="",style="solid", color="blue", weight=3]; 2485[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2485[label="",style="solid", color="blue", weight=9]; 2485 -> 311[label="",style="solid", color="blue", weight=3]; 2486[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2486[label="",style="solid", color="blue", weight=9]; 2486 -> 312[label="",style="solid", color="blue", weight=3]; 2487[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2487[label="",style="solid", color="blue", weight=9]; 2487 -> 313[label="",style="solid", color="blue", weight=3]; 2488[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2488[label="",style="solid", color="blue", weight=9]; 2488 -> 314[label="",style="solid", color="blue", weight=3]; 2489[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2489[label="",style="solid", color="blue", weight=9]; 2489 -> 315[label="",style="solid", color="blue", weight=3]; 2490[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2490[label="",style="solid", color="blue", weight=9]; 2490 -> 316[label="",style="solid", color="blue", weight=3]; 2491[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2491[label="",style="solid", color="blue", weight=9]; 2491 -> 317[label="",style="solid", color="blue", weight=3]; 2492[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2492[label="",style="solid", color="blue", weight=9]; 2492 -> 318[label="",style="solid", color="blue", weight=3]; 2493[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2493[label="",style="solid", color="blue", weight=9]; 2493 -> 319[label="",style="solid", color="blue", weight=3]; 2494[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];244 -> 2494[label="",style="solid", color="blue", weight=9]; 2494 -> 320[label="",style="solid", color="blue", weight=3]; 245[label="False",fontsize=16,color="green",shape="box"];246[label="False",fontsize=16,color="green",shape="box"];247[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2495[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2495[label="",style="solid", color="blue", weight=9]; 2495 -> 321[label="",style="solid", color="blue", weight=3]; 2496[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2496[label="",style="solid", color="blue", weight=9]; 2496 -> 322[label="",style="solid", color="blue", weight=3]; 2497[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2497[label="",style="solid", color="blue", weight=9]; 2497 -> 323[label="",style="solid", color="blue", weight=3]; 2498[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2498[label="",style="solid", color="blue", weight=9]; 2498 -> 324[label="",style="solid", color="blue", weight=3]; 2499[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2499[label="",style="solid", color="blue", weight=9]; 2499 -> 325[label="",style="solid", color="blue", weight=3]; 2500[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2500[label="",style="solid", color="blue", weight=9]; 2500 -> 326[label="",style="solid", color="blue", weight=3]; 2501[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2501[label="",style="solid", color="blue", weight=9]; 2501 -> 327[label="",style="solid", color="blue", weight=3]; 2502[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2502[label="",style="solid", color="blue", weight=9]; 2502 -> 328[label="",style="solid", color="blue", weight=3]; 2503[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2503[label="",style="solid", color="blue", weight=9]; 2503 -> 329[label="",style="solid", color="blue", weight=3]; 2504[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2504[label="",style="solid", color="blue", weight=9]; 2504 -> 330[label="",style="solid", color="blue", weight=3]; 2505[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2505[label="",style="solid", color="blue", weight=9]; 2505 -> 331[label="",style="solid", color="blue", weight=3]; 2506[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2506[label="",style="solid", color="blue", weight=9]; 2506 -> 332[label="",style="solid", color="blue", weight=3]; 2507[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2507[label="",style="solid", color="blue", weight=9]; 2507 -> 333[label="",style="solid", color="blue", weight=3]; 2508[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];247 -> 2508[label="",style="solid", color="blue", weight=9]; 2508 -> 334[label="",style="solid", color="blue", weight=3]; 1204[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1205[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];1206[label="False",fontsize=16,color="green",shape="box"];1203[label="compare2 vyw43 vyw45 vyw89",fontsize=16,color="burlywood",shape="triangle"];2509[label="vyw89/False",fontsize=10,color="white",style="solid",shape="box"];1203 -> 2509[label="",style="solid", color="burlywood", weight=9]; 2509 -> 1217[label="",style="solid", color="burlywood", weight=3]; 2510[label="vyw89/True",fontsize=10,color="white",style="solid",shape="box"];1203 -> 2510[label="",style="solid", color="burlywood", weight=9]; 2510 -> 1218[label="",style="solid", color="burlywood", weight=3]; 1207[label="(vyw33,vyw34)",fontsize=16,color="green",shape="box"];1208[label="(vyw31,vyw32)",fontsize=16,color="green",shape="box"];1209[label="vyw32 == vyw34",fontsize=16,color="blue",shape="box"];2511[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2511[label="",style="solid", color="blue", weight=9]; 2511 -> 1219[label="",style="solid", color="blue", weight=3]; 2512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2512[label="",style="solid", color="blue", weight=9]; 2512 -> 1220[label="",style="solid", color="blue", weight=3]; 2513[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2513[label="",style="solid", color="blue", weight=9]; 2513 -> 1221[label="",style="solid", color="blue", weight=3]; 2514[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2514[label="",style="solid", color="blue", weight=9]; 2514 -> 1222[label="",style="solid", color="blue", weight=3]; 2515[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2515[label="",style="solid", color="blue", weight=9]; 2515 -> 1223[label="",style="solid", color="blue", weight=3]; 2516[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2516[label="",style="solid", color="blue", weight=9]; 2516 -> 1224[label="",style="solid", color="blue", weight=3]; 2517[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2517[label="",style="solid", color="blue", weight=9]; 2517 -> 1225[label="",style="solid", color="blue", weight=3]; 2518[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2518[label="",style="solid", color="blue", weight=9]; 2518 -> 1226[label="",style="solid", color="blue", weight=3]; 2519[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2519[label="",style="solid", color="blue", weight=9]; 2519 -> 1227[label="",style="solid", color="blue", weight=3]; 2520[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2520[label="",style="solid", color="blue", weight=9]; 2520 -> 1228[label="",style="solid", color="blue", weight=3]; 2521[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2521[label="",style="solid", color="blue", weight=9]; 2521 -> 1229[label="",style="solid", color="blue", weight=3]; 2522[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2522[label="",style="solid", color="blue", weight=9]; 2522 -> 1230[label="",style="solid", color="blue", weight=3]; 2523[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2523[label="",style="solid", color="blue", weight=9]; 2523 -> 1231[label="",style="solid", color="blue", weight=3]; 2524[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1209 -> 2524[label="",style="solid", color="blue", weight=9]; 2524 -> 1232[label="",style="solid", color="blue", weight=3]; 260[label="GT",fontsize=16,color="green",shape="box"];261[label="compare (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];261 -> 351[label="",style="solid", color="black", weight=3]; 262[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) otherwise)",fontsize=16,color="black",shape="box"];262 -> 352[label="",style="solid", color="black", weight=3]; 263 -> 5[label="",style="dashed", color="red", weight=0]; 263[label="FiniteMap.elemFM0 (FiniteMap.lookupFM vyw20 (vyw21,vyw22))",fontsize=16,color="magenta"];263 -> 353[label="",style="dashed", color="magenta", weight=3]; 263 -> 354[label="",style="dashed", color="magenta", weight=3]; 264 -> 133[label="",style="dashed", color="red", weight=0]; 264[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];264 -> 355[label="",style="dashed", color="magenta", weight=3]; 264 -> 356[label="",style="dashed", color="magenta", weight=3]; 265[label="primEqNat vyw300 vyw4000",fontsize=16,color="burlywood",shape="triangle"];2525[label="vyw300/Succ vyw3000",fontsize=10,color="white",style="solid",shape="box"];265 -> 2525[label="",style="solid", color="burlywood", weight=9]; 2525 -> 357[label="",style="solid", color="burlywood", weight=3]; 2526[label="vyw300/Zero",fontsize=10,color="white",style="solid",shape="box"];265 -> 2526[label="",style="solid", color="burlywood", weight=9]; 2526 -> 358[label="",style="solid", color="burlywood", weight=3]; 266 -> 123[label="",style="dashed", color="red", weight=0]; 266[label="vyw300 == vyw4000",fontsize=16,color="magenta"];266 -> 359[label="",style="dashed", color="magenta", weight=3]; 266 -> 360[label="",style="dashed", color="magenta", weight=3]; 267 -> 124[label="",style="dashed", color="red", weight=0]; 267[label="vyw300 == vyw4000",fontsize=16,color="magenta"];267 -> 361[label="",style="dashed", color="magenta", weight=3]; 267 -> 362[label="",style="dashed", color="magenta", weight=3]; 268 -> 125[label="",style="dashed", color="red", weight=0]; 268[label="vyw300 == vyw4000",fontsize=16,color="magenta"];268 -> 363[label="",style="dashed", color="magenta", weight=3]; 268 -> 364[label="",style="dashed", color="magenta", weight=3]; 269 -> 126[label="",style="dashed", color="red", weight=0]; 269[label="vyw300 == vyw4000",fontsize=16,color="magenta"];269 -> 365[label="",style="dashed", color="magenta", weight=3]; 269 -> 366[label="",style="dashed", color="magenta", weight=3]; 270 -> 127[label="",style="dashed", color="red", weight=0]; 270[label="vyw300 == vyw4000",fontsize=16,color="magenta"];270 -> 367[label="",style="dashed", color="magenta", weight=3]; 270 -> 368[label="",style="dashed", color="magenta", weight=3]; 271 -> 128[label="",style="dashed", color="red", weight=0]; 271[label="vyw300 == vyw4000",fontsize=16,color="magenta"];271 -> 369[label="",style="dashed", color="magenta", weight=3]; 271 -> 370[label="",style="dashed", color="magenta", weight=3]; 272 -> 129[label="",style="dashed", color="red", weight=0]; 272[label="vyw300 == vyw4000",fontsize=16,color="magenta"];272 -> 371[label="",style="dashed", color="magenta", weight=3]; 272 -> 372[label="",style="dashed", color="magenta", weight=3]; 273 -> 130[label="",style="dashed", color="red", weight=0]; 273[label="vyw300 == vyw4000",fontsize=16,color="magenta"];273 -> 373[label="",style="dashed", color="magenta", weight=3]; 273 -> 374[label="",style="dashed", color="magenta", weight=3]; 274 -> 131[label="",style="dashed", color="red", weight=0]; 274[label="vyw300 == vyw4000",fontsize=16,color="magenta"];274 -> 375[label="",style="dashed", color="magenta", weight=3]; 274 -> 376[label="",style="dashed", color="magenta", weight=3]; 275 -> 132[label="",style="dashed", color="red", weight=0]; 275[label="vyw300 == vyw4000",fontsize=16,color="magenta"];275 -> 377[label="",style="dashed", color="magenta", weight=3]; 275 -> 378[label="",style="dashed", color="magenta", weight=3]; 276 -> 133[label="",style="dashed", color="red", weight=0]; 276[label="vyw300 == vyw4000",fontsize=16,color="magenta"];276 -> 379[label="",style="dashed", color="magenta", weight=3]; 276 -> 380[label="",style="dashed", color="magenta", weight=3]; 277 -> 134[label="",style="dashed", color="red", weight=0]; 277[label="vyw300 == vyw4000",fontsize=16,color="magenta"];277 -> 381[label="",style="dashed", color="magenta", weight=3]; 277 -> 382[label="",style="dashed", color="magenta", weight=3]; 278 -> 135[label="",style="dashed", color="red", weight=0]; 278[label="vyw300 == vyw4000",fontsize=16,color="magenta"];278 -> 383[label="",style="dashed", color="magenta", weight=3]; 278 -> 384[label="",style="dashed", color="magenta", weight=3]; 279 -> 136[label="",style="dashed", color="red", weight=0]; 279[label="vyw300 == vyw4000",fontsize=16,color="magenta"];279 -> 385[label="",style="dashed", color="magenta", weight=3]; 279 -> 386[label="",style="dashed", color="magenta", weight=3]; 402 -> 401[label="",style="dashed", color="red", weight=0]; 402[label="vyw301 == vyw4001 && vyw302 == vyw4002",fontsize=16,color="magenta"];402 -> 413[label="",style="dashed", color="magenta", weight=3]; 402 -> 414[label="",style="dashed", color="magenta", weight=3]; 403[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2527[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2527[label="",style="solid", color="blue", weight=9]; 2527 -> 415[label="",style="solid", color="blue", weight=3]; 2528[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2528[label="",style="solid", color="blue", weight=9]; 2528 -> 416[label="",style="solid", color="blue", weight=3]; 2529[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2529[label="",style="solid", color="blue", weight=9]; 2529 -> 417[label="",style="solid", color="blue", weight=3]; 2530[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2530[label="",style="solid", color="blue", weight=9]; 2530 -> 418[label="",style="solid", color="blue", weight=3]; 2531[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2531[label="",style="solid", color="blue", weight=9]; 2531 -> 419[label="",style="solid", color="blue", weight=3]; 2532[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2532[label="",style="solid", color="blue", weight=9]; 2532 -> 420[label="",style="solid", color="blue", weight=3]; 2533[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2533[label="",style="solid", color="blue", weight=9]; 2533 -> 421[label="",style="solid", color="blue", weight=3]; 2534[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2534[label="",style="solid", color="blue", weight=9]; 2534 -> 422[label="",style="solid", color="blue", weight=3]; 2535[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2535[label="",style="solid", color="blue", weight=9]; 2535 -> 423[label="",style="solid", color="blue", weight=3]; 2536[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2536[label="",style="solid", color="blue", weight=9]; 2536 -> 424[label="",style="solid", color="blue", weight=3]; 2537[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2537[label="",style="solid", color="blue", weight=9]; 2537 -> 425[label="",style="solid", color="blue", weight=3]; 2538[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2538[label="",style="solid", color="blue", weight=9]; 2538 -> 426[label="",style="solid", color="blue", weight=3]; 2539[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2539[label="",style="solid", color="blue", weight=9]; 2539 -> 427[label="",style="solid", color="blue", weight=3]; 2540[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];403 -> 2540[label="",style="solid", color="blue", weight=9]; 2540 -> 428[label="",style="solid", color="blue", weight=3]; 401[label="vyw54 && vyw66",fontsize=16,color="burlywood",shape="triangle"];2541[label="vyw54/False",fontsize=10,color="white",style="solid",shape="box"];401 -> 2541[label="",style="solid", color="burlywood", weight=9]; 2541 -> 429[label="",style="solid", color="burlywood", weight=3]; 2542[label="vyw54/True",fontsize=10,color="white",style="solid",shape="box"];401 -> 2542[label="",style="solid", color="burlywood", weight=9]; 2542 -> 430[label="",style="solid", color="burlywood", weight=3]; 286[label="vyw4000",fontsize=16,color="green",shape="box"];287[label="vyw300",fontsize=16,color="green",shape="box"];404[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];2543[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2543[label="",style="solid", color="blue", weight=9]; 2543 -> 431[label="",style="solid", color="blue", weight=3]; 2544[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2544[label="",style="solid", color="blue", weight=9]; 2544 -> 432[label="",style="solid", color="blue", weight=3]; 2545[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2545[label="",style="solid", color="blue", weight=9]; 2545 -> 433[label="",style="solid", color="blue", weight=3]; 2546[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2546[label="",style="solid", color="blue", weight=9]; 2546 -> 434[label="",style="solid", color="blue", weight=3]; 2547[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2547[label="",style="solid", color="blue", weight=9]; 2547 -> 435[label="",style="solid", color="blue", weight=3]; 2548[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2548[label="",style="solid", color="blue", weight=9]; 2548 -> 436[label="",style="solid", color="blue", weight=3]; 2549[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2549[label="",style="solid", color="blue", weight=9]; 2549 -> 437[label="",style="solid", color="blue", weight=3]; 2550[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2550[label="",style="solid", color="blue", weight=9]; 2550 -> 438[label="",style="solid", color="blue", weight=3]; 2551[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2551[label="",style="solid", color="blue", weight=9]; 2551 -> 439[label="",style="solid", color="blue", weight=3]; 2552[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2552[label="",style="solid", color="blue", weight=9]; 2552 -> 440[label="",style="solid", color="blue", weight=3]; 2553[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2553[label="",style="solid", color="blue", weight=9]; 2553 -> 441[label="",style="solid", color="blue", weight=3]; 2554[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2554[label="",style="solid", color="blue", weight=9]; 2554 -> 442[label="",style="solid", color="blue", weight=3]; 2555[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2555[label="",style="solid", color="blue", weight=9]; 2555 -> 443[label="",style="solid", color="blue", weight=3]; 2556[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];404 -> 2556[label="",style="solid", color="blue", weight=9]; 2556 -> 444[label="",style="solid", color="blue", weight=3]; 405[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2557[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2557[label="",style="solid", color="blue", weight=9]; 2557 -> 445[label="",style="solid", color="blue", weight=3]; 2558[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2558[label="",style="solid", color="blue", weight=9]; 2558 -> 446[label="",style="solid", color="blue", weight=3]; 2559[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2559[label="",style="solid", color="blue", weight=9]; 2559 -> 447[label="",style="solid", color="blue", weight=3]; 2560[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2560[label="",style="solid", color="blue", weight=9]; 2560 -> 448[label="",style="solid", color="blue", weight=3]; 2561[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2561[label="",style="solid", color="blue", weight=9]; 2561 -> 449[label="",style="solid", color="blue", weight=3]; 2562[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2562[label="",style="solid", color="blue", weight=9]; 2562 -> 450[label="",style="solid", color="blue", weight=3]; 2563[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2563[label="",style="solid", color="blue", weight=9]; 2563 -> 451[label="",style="solid", color="blue", weight=3]; 2564[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2564[label="",style="solid", color="blue", weight=9]; 2564 -> 452[label="",style="solid", color="blue", weight=3]; 2565[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2565[label="",style="solid", color="blue", weight=9]; 2565 -> 453[label="",style="solid", color="blue", weight=3]; 2566[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2566[label="",style="solid", color="blue", weight=9]; 2566 -> 454[label="",style="solid", color="blue", weight=3]; 2567[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2567[label="",style="solid", color="blue", weight=9]; 2567 -> 455[label="",style="solid", color="blue", weight=3]; 2568[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2568[label="",style="solid", color="blue", weight=9]; 2568 -> 456[label="",style="solid", color="blue", weight=3]; 2569[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2569[label="",style="solid", color="blue", weight=9]; 2569 -> 457[label="",style="solid", color="blue", weight=3]; 2570[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];405 -> 2570[label="",style="solid", color="blue", weight=9]; 2570 -> 458[label="",style="solid", color="blue", weight=3]; 406 -> 132[label="",style="dashed", color="red", weight=0]; 406[label="vyw301 == vyw4001",fontsize=16,color="magenta"];406 -> 459[label="",style="dashed", color="magenta", weight=3]; 406 -> 460[label="",style="dashed", color="magenta", weight=3]; 407[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2571[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2571[label="",style="solid", color="blue", weight=9]; 2571 -> 461[label="",style="solid", color="blue", weight=3]; 2572[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2572[label="",style="solid", color="blue", weight=9]; 2572 -> 462[label="",style="solid", color="blue", weight=3]; 2573[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2573[label="",style="solid", color="blue", weight=9]; 2573 -> 463[label="",style="solid", color="blue", weight=3]; 2574[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2574[label="",style="solid", color="blue", weight=9]; 2574 -> 464[label="",style="solid", color="blue", weight=3]; 2575[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2575[label="",style="solid", color="blue", weight=9]; 2575 -> 465[label="",style="solid", color="blue", weight=3]; 2576[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2576[label="",style="solid", color="blue", weight=9]; 2576 -> 466[label="",style="solid", color="blue", weight=3]; 2577[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2577[label="",style="solid", color="blue", weight=9]; 2577 -> 467[label="",style="solid", color="blue", weight=3]; 2578[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2578[label="",style="solid", color="blue", weight=9]; 2578 -> 468[label="",style="solid", color="blue", weight=3]; 2579[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2579[label="",style="solid", color="blue", weight=9]; 2579 -> 469[label="",style="solid", color="blue", weight=3]; 2580[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2580[label="",style="solid", color="blue", weight=9]; 2580 -> 470[label="",style="solid", color="blue", weight=3]; 2581[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2581[label="",style="solid", color="blue", weight=9]; 2581 -> 471[label="",style="solid", color="blue", weight=3]; 2582[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2582[label="",style="solid", color="blue", weight=9]; 2582 -> 472[label="",style="solid", color="blue", weight=3]; 2583[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2583[label="",style="solid", color="blue", weight=9]; 2583 -> 473[label="",style="solid", color="blue", weight=3]; 2584[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];407 -> 2584[label="",style="solid", color="blue", weight=9]; 2584 -> 474[label="",style="solid", color="blue", weight=3]; 298[label="primEqInt (Pos (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];2585[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];298 -> 2585[label="",style="solid", color="burlywood", weight=9]; 2585 -> 475[label="",style="solid", color="burlywood", weight=3]; 2586[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];298 -> 2586[label="",style="solid", color="burlywood", weight=9]; 2586 -> 476[label="",style="solid", color="burlywood", weight=3]; 299[label="primEqInt (Pos (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="black",shape="box"];299 -> 477[label="",style="solid", color="black", weight=3]; 300[label="primEqInt (Pos Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];2587[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];300 -> 2587[label="",style="solid", color="burlywood", weight=9]; 2587 -> 478[label="",style="solid", color="burlywood", weight=3]; 2588[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];300 -> 2588[label="",style="solid", color="burlywood", weight=9]; 2588 -> 479[label="",style="solid", color="burlywood", weight=3]; 301[label="primEqInt (Pos Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];2589[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];301 -> 2589[label="",style="solid", color="burlywood", weight=9]; 2589 -> 480[label="",style="solid", color="burlywood", weight=3]; 2590[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];301 -> 2590[label="",style="solid", color="burlywood", weight=9]; 2590 -> 481[label="",style="solid", color="burlywood", weight=3]; 302[label="primEqInt (Neg (Succ vyw3000)) (Pos vyw4000)",fontsize=16,color="black",shape="box"];302 -> 482[label="",style="solid", color="black", weight=3]; 303[label="primEqInt (Neg (Succ vyw3000)) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];2591[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];303 -> 2591[label="",style="solid", color="burlywood", weight=9]; 2591 -> 483[label="",style="solid", color="burlywood", weight=3]; 2592[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];303 -> 2592[label="",style="solid", color="burlywood", weight=9]; 2592 -> 484[label="",style="solid", color="burlywood", weight=3]; 304[label="primEqInt (Neg Zero) (Pos vyw4000)",fontsize=16,color="burlywood",shape="box"];2593[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];304 -> 2593[label="",style="solid", color="burlywood", weight=9]; 2593 -> 485[label="",style="solid", color="burlywood", weight=3]; 2594[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];304 -> 2594[label="",style="solid", color="burlywood", weight=9]; 2594 -> 486[label="",style="solid", color="burlywood", weight=3]; 305[label="primEqInt (Neg Zero) (Neg vyw4000)",fontsize=16,color="burlywood",shape="box"];2595[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];305 -> 2595[label="",style="solid", color="burlywood", weight=9]; 2595 -> 487[label="",style="solid", color="burlywood", weight=3]; 2596[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];305 -> 2596[label="",style="solid", color="burlywood", weight=9]; 2596 -> 488[label="",style="solid", color="burlywood", weight=3]; 408[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];2597[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2597[label="",style="solid", color="blue", weight=9]; 2597 -> 489[label="",style="solid", color="blue", weight=3]; 2598[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];408 -> 2598[label="",style="solid", color="blue", weight=9]; 2598 -> 490[label="",style="solid", color="blue", weight=3]; 409[label="vyw300 == vyw4000",fontsize=16,color="blue",shape="box"];2599[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2599[label="",style="solid", color="blue", weight=9]; 2599 -> 491[label="",style="solid", color="blue", weight=3]; 2600[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];409 -> 2600[label="",style="solid", color="blue", weight=9]; 2600 -> 492[label="",style="solid", color="blue", weight=3]; 306 -> 133[label="",style="dashed", color="red", weight=0]; 306[label="vyw300 * vyw4001 == vyw301 * vyw4000",fontsize=16,color="magenta"];306 -> 493[label="",style="dashed", color="magenta", weight=3]; 306 -> 494[label="",style="dashed", color="magenta", weight=3]; 307 -> 123[label="",style="dashed", color="red", weight=0]; 307[label="vyw300 == vyw4000",fontsize=16,color="magenta"];307 -> 495[label="",style="dashed", color="magenta", weight=3]; 307 -> 496[label="",style="dashed", color="magenta", weight=3]; 308 -> 124[label="",style="dashed", color="red", weight=0]; 308[label="vyw300 == vyw4000",fontsize=16,color="magenta"];308 -> 497[label="",style="dashed", color="magenta", weight=3]; 308 -> 498[label="",style="dashed", color="magenta", weight=3]; 309 -> 125[label="",style="dashed", color="red", weight=0]; 309[label="vyw300 == vyw4000",fontsize=16,color="magenta"];309 -> 499[label="",style="dashed", color="magenta", weight=3]; 309 -> 500[label="",style="dashed", color="magenta", weight=3]; 310 -> 126[label="",style="dashed", color="red", weight=0]; 310[label="vyw300 == vyw4000",fontsize=16,color="magenta"];310 -> 501[label="",style="dashed", color="magenta", weight=3]; 310 -> 502[label="",style="dashed", color="magenta", weight=3]; 311 -> 127[label="",style="dashed", color="red", weight=0]; 311[label="vyw300 == vyw4000",fontsize=16,color="magenta"];311 -> 503[label="",style="dashed", color="magenta", weight=3]; 311 -> 504[label="",style="dashed", color="magenta", weight=3]; 312 -> 128[label="",style="dashed", color="red", weight=0]; 312[label="vyw300 == vyw4000",fontsize=16,color="magenta"];312 -> 505[label="",style="dashed", color="magenta", weight=3]; 312 -> 506[label="",style="dashed", color="magenta", weight=3]; 313 -> 129[label="",style="dashed", color="red", weight=0]; 313[label="vyw300 == vyw4000",fontsize=16,color="magenta"];313 -> 507[label="",style="dashed", color="magenta", weight=3]; 313 -> 508[label="",style="dashed", color="magenta", weight=3]; 314 -> 130[label="",style="dashed", color="red", weight=0]; 314[label="vyw300 == vyw4000",fontsize=16,color="magenta"];314 -> 509[label="",style="dashed", color="magenta", weight=3]; 314 -> 510[label="",style="dashed", color="magenta", weight=3]; 315 -> 131[label="",style="dashed", color="red", weight=0]; 315[label="vyw300 == vyw4000",fontsize=16,color="magenta"];315 -> 511[label="",style="dashed", color="magenta", weight=3]; 315 -> 512[label="",style="dashed", color="magenta", weight=3]; 316 -> 132[label="",style="dashed", color="red", weight=0]; 316[label="vyw300 == vyw4000",fontsize=16,color="magenta"];316 -> 513[label="",style="dashed", color="magenta", weight=3]; 316 -> 514[label="",style="dashed", color="magenta", weight=3]; 317 -> 133[label="",style="dashed", color="red", weight=0]; 317[label="vyw300 == vyw4000",fontsize=16,color="magenta"];317 -> 515[label="",style="dashed", color="magenta", weight=3]; 317 -> 516[label="",style="dashed", color="magenta", weight=3]; 318 -> 134[label="",style="dashed", color="red", weight=0]; 318[label="vyw300 == vyw4000",fontsize=16,color="magenta"];318 -> 517[label="",style="dashed", color="magenta", weight=3]; 318 -> 518[label="",style="dashed", color="magenta", weight=3]; 319 -> 135[label="",style="dashed", color="red", weight=0]; 319[label="vyw300 == vyw4000",fontsize=16,color="magenta"];319 -> 519[label="",style="dashed", color="magenta", weight=3]; 319 -> 520[label="",style="dashed", color="magenta", weight=3]; 320 -> 136[label="",style="dashed", color="red", weight=0]; 320[label="vyw300 == vyw4000",fontsize=16,color="magenta"];320 -> 521[label="",style="dashed", color="magenta", weight=3]; 320 -> 522[label="",style="dashed", color="magenta", weight=3]; 321 -> 123[label="",style="dashed", color="red", weight=0]; 321[label="vyw300 == vyw4000",fontsize=16,color="magenta"];321 -> 523[label="",style="dashed", color="magenta", weight=3]; 321 -> 524[label="",style="dashed", color="magenta", weight=3]; 322 -> 124[label="",style="dashed", color="red", weight=0]; 322[label="vyw300 == vyw4000",fontsize=16,color="magenta"];322 -> 525[label="",style="dashed", color="magenta", weight=3]; 322 -> 526[label="",style="dashed", color="magenta", weight=3]; 323 -> 125[label="",style="dashed", color="red", weight=0]; 323[label="vyw300 == vyw4000",fontsize=16,color="magenta"];323 -> 527[label="",style="dashed", color="magenta", weight=3]; 323 -> 528[label="",style="dashed", color="magenta", weight=3]; 324 -> 126[label="",style="dashed", color="red", weight=0]; 324[label="vyw300 == vyw4000",fontsize=16,color="magenta"];324 -> 529[label="",style="dashed", color="magenta", weight=3]; 324 -> 530[label="",style="dashed", color="magenta", weight=3]; 325 -> 127[label="",style="dashed", color="red", weight=0]; 325[label="vyw300 == vyw4000",fontsize=16,color="magenta"];325 -> 531[label="",style="dashed", color="magenta", weight=3]; 325 -> 532[label="",style="dashed", color="magenta", weight=3]; 326 -> 128[label="",style="dashed", color="red", weight=0]; 326[label="vyw300 == vyw4000",fontsize=16,color="magenta"];326 -> 533[label="",style="dashed", color="magenta", weight=3]; 326 -> 534[label="",style="dashed", color="magenta", weight=3]; 327 -> 129[label="",style="dashed", color="red", weight=0]; 327[label="vyw300 == vyw4000",fontsize=16,color="magenta"];327 -> 535[label="",style="dashed", color="magenta", weight=3]; 327 -> 536[label="",style="dashed", color="magenta", weight=3]; 328 -> 130[label="",style="dashed", color="red", weight=0]; 328[label="vyw300 == vyw4000",fontsize=16,color="magenta"];328 -> 537[label="",style="dashed", color="magenta", weight=3]; 328 -> 538[label="",style="dashed", color="magenta", weight=3]; 329 -> 131[label="",style="dashed", color="red", weight=0]; 329[label="vyw300 == vyw4000",fontsize=16,color="magenta"];329 -> 539[label="",style="dashed", color="magenta", weight=3]; 329 -> 540[label="",style="dashed", color="magenta", weight=3]; 330 -> 132[label="",style="dashed", color="red", weight=0]; 330[label="vyw300 == vyw4000",fontsize=16,color="magenta"];330 -> 541[label="",style="dashed", color="magenta", weight=3]; 330 -> 542[label="",style="dashed", color="magenta", weight=3]; 331 -> 133[label="",style="dashed", color="red", weight=0]; 331[label="vyw300 == vyw4000",fontsize=16,color="magenta"];331 -> 543[label="",style="dashed", color="magenta", weight=3]; 331 -> 544[label="",style="dashed", color="magenta", weight=3]; 332 -> 134[label="",style="dashed", color="red", weight=0]; 332[label="vyw300 == vyw4000",fontsize=16,color="magenta"];332 -> 545[label="",style="dashed", color="magenta", weight=3]; 332 -> 546[label="",style="dashed", color="magenta", weight=3]; 333 -> 135[label="",style="dashed", color="red", weight=0]; 333[label="vyw300 == vyw4000",fontsize=16,color="magenta"];333 -> 547[label="",style="dashed", color="magenta", weight=3]; 333 -> 548[label="",style="dashed", color="magenta", weight=3]; 334 -> 136[label="",style="dashed", color="red", weight=0]; 334[label="vyw300 == vyw4000",fontsize=16,color="magenta"];334 -> 549[label="",style="dashed", color="magenta", weight=3]; 334 -> 550[label="",style="dashed", color="magenta", weight=3]; 1217[label="compare2 vyw43 vyw45 False",fontsize=16,color="black",shape="box"];1217 -> 1237[label="",style="solid", color="black", weight=3]; 1218[label="compare2 vyw43 vyw45 True",fontsize=16,color="black",shape="box"];1218 -> 1238[label="",style="solid", color="black", weight=3]; 1219 -> 123[label="",style="dashed", color="red", weight=0]; 1219[label="vyw32 == vyw34",fontsize=16,color="magenta"];1219 -> 1239[label="",style="dashed", color="magenta", weight=3]; 1219 -> 1240[label="",style="dashed", color="magenta", weight=3]; 1220 -> 124[label="",style="dashed", color="red", weight=0]; 1220[label="vyw32 == vyw34",fontsize=16,color="magenta"];1220 -> 1241[label="",style="dashed", color="magenta", weight=3]; 1220 -> 1242[label="",style="dashed", color="magenta", weight=3]; 1221 -> 125[label="",style="dashed", color="red", weight=0]; 1221[label="vyw32 == vyw34",fontsize=16,color="magenta"];1221 -> 1243[label="",style="dashed", color="magenta", weight=3]; 1221 -> 1244[label="",style="dashed", color="magenta", weight=3]; 1222 -> 126[label="",style="dashed", color="red", weight=0]; 1222[label="vyw32 == vyw34",fontsize=16,color="magenta"];1222 -> 1245[label="",style="dashed", color="magenta", weight=3]; 1222 -> 1246[label="",style="dashed", color="magenta", weight=3]; 1223 -> 127[label="",style="dashed", color="red", weight=0]; 1223[label="vyw32 == vyw34",fontsize=16,color="magenta"];1223 -> 1247[label="",style="dashed", color="magenta", weight=3]; 1223 -> 1248[label="",style="dashed", color="magenta", weight=3]; 1224 -> 128[label="",style="dashed", color="red", weight=0]; 1224[label="vyw32 == vyw34",fontsize=16,color="magenta"];1224 -> 1249[label="",style="dashed", color="magenta", weight=3]; 1224 -> 1250[label="",style="dashed", color="magenta", weight=3]; 1225 -> 129[label="",style="dashed", color="red", weight=0]; 1225[label="vyw32 == vyw34",fontsize=16,color="magenta"];1225 -> 1251[label="",style="dashed", color="magenta", weight=3]; 1225 -> 1252[label="",style="dashed", color="magenta", weight=3]; 1226 -> 130[label="",style="dashed", color="red", weight=0]; 1226[label="vyw32 == vyw34",fontsize=16,color="magenta"];1226 -> 1253[label="",style="dashed", color="magenta", weight=3]; 1226 -> 1254[label="",style="dashed", color="magenta", weight=3]; 1227 -> 131[label="",style="dashed", color="red", weight=0]; 1227[label="vyw32 == vyw34",fontsize=16,color="magenta"];1227 -> 1255[label="",style="dashed", color="magenta", weight=3]; 1227 -> 1256[label="",style="dashed", color="magenta", weight=3]; 1228 -> 132[label="",style="dashed", color="red", weight=0]; 1228[label="vyw32 == vyw34",fontsize=16,color="magenta"];1228 -> 1257[label="",style="dashed", color="magenta", weight=3]; 1228 -> 1258[label="",style="dashed", color="magenta", weight=3]; 1229 -> 133[label="",style="dashed", color="red", weight=0]; 1229[label="vyw32 == vyw34",fontsize=16,color="magenta"];1229 -> 1259[label="",style="dashed", color="magenta", weight=3]; 1229 -> 1260[label="",style="dashed", color="magenta", weight=3]; 1230 -> 134[label="",style="dashed", color="red", weight=0]; 1230[label="vyw32 == vyw34",fontsize=16,color="magenta"];1230 -> 1261[label="",style="dashed", color="magenta", weight=3]; 1230 -> 1262[label="",style="dashed", color="magenta", weight=3]; 1231 -> 135[label="",style="dashed", color="red", weight=0]; 1231[label="vyw32 == vyw34",fontsize=16,color="magenta"];1231 -> 1263[label="",style="dashed", color="magenta", weight=3]; 1231 -> 1264[label="",style="dashed", color="magenta", weight=3]; 1232 -> 136[label="",style="dashed", color="red", weight=0]; 1232[label="vyw32 == vyw34",fontsize=16,color="magenta"];1232 -> 1265[label="",style="dashed", color="magenta", weight=3]; 1232 -> 1266[label="",style="dashed", color="magenta", weight=3]; 351[label="compare3 (vyw21,vyw22) (vyw15,vyw16)",fontsize=16,color="black",shape="box"];351 -> 581[label="",style="solid", color="black", weight=3]; 352[label="FiniteMap.elemFM0 (FiniteMap.lookupFM0 (vyw15,vyw16) vyw17 vyw18 vyw19 vyw20 (vyw21,vyw22) True)",fontsize=16,color="black",shape="box"];352 -> 582[label="",style="solid", color="black", weight=3]; 353[label="vyw20",fontsize=16,color="green",shape="box"];354[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];355[label="vyw301 * vyw4000",fontsize=16,color="black",shape="triangle"];355 -> 583[label="",style="solid", color="black", weight=3]; 356 -> 355[label="",style="dashed", color="red", weight=0]; 356[label="vyw300 * vyw4001",fontsize=16,color="magenta"];356 -> 584[label="",style="dashed", color="magenta", weight=3]; 356 -> 585[label="",style="dashed", color="magenta", weight=3]; 357[label="primEqNat (Succ vyw3000) vyw4000",fontsize=16,color="burlywood",shape="box"];2601[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];357 -> 2601[label="",style="solid", color="burlywood", weight=9]; 2601 -> 586[label="",style="solid", color="burlywood", weight=3]; 2602[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];357 -> 2602[label="",style="solid", color="burlywood", weight=9]; 2602 -> 587[label="",style="solid", color="burlywood", weight=3]; 358[label="primEqNat Zero vyw4000",fontsize=16,color="burlywood",shape="box"];2603[label="vyw4000/Succ vyw40000",fontsize=10,color="white",style="solid",shape="box"];358 -> 2603[label="",style="solid", color="burlywood", weight=9]; 2603 -> 588[label="",style="solid", color="burlywood", weight=3]; 2604[label="vyw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];358 -> 2604[label="",style="solid", color="burlywood", weight=9]; 2604 -> 589[label="",style="solid", color="burlywood", weight=3]; 359[label="vyw4000",fontsize=16,color="green",shape="box"];360[label="vyw300",fontsize=16,color="green",shape="box"];361[label="vyw4000",fontsize=16,color="green",shape="box"];362[label="vyw300",fontsize=16,color="green",shape="box"];363[label="vyw4000",fontsize=16,color="green",shape="box"];364[label="vyw300",fontsize=16,color="green",shape="box"];365[label="vyw4000",fontsize=16,color="green",shape="box"];366[label="vyw300",fontsize=16,color="green",shape="box"];367[label="vyw4000",fontsize=16,color="green",shape="box"];368[label="vyw300",fontsize=16,color="green",shape="box"];369[label="vyw4000",fontsize=16,color="green",shape="box"];370[label="vyw300",fontsize=16,color="green",shape="box"];371[label="vyw4000",fontsize=16,color="green",shape="box"];372[label="vyw300",fontsize=16,color="green",shape="box"];373[label="vyw4000",fontsize=16,color="green",shape="box"];374[label="vyw300",fontsize=16,color="green",shape="box"];375[label="vyw4000",fontsize=16,color="green",shape="box"];376[label="vyw300",fontsize=16,color="green",shape="box"];377[label="vyw4000",fontsize=16,color="green",shape="box"];378[label="vyw300",fontsize=16,color="green",shape="box"];379[label="vyw4000",fontsize=16,color="green",shape="box"];380[label="vyw300",fontsize=16,color="green",shape="box"];381[label="vyw4000",fontsize=16,color="green",shape="box"];382[label="vyw300",fontsize=16,color="green",shape="box"];383[label="vyw4000",fontsize=16,color="green",shape="box"];384[label="vyw300",fontsize=16,color="green",shape="box"];385[label="vyw4000",fontsize=16,color="green",shape="box"];386[label="vyw300",fontsize=16,color="green",shape="box"];413[label="vyw302 == vyw4002",fontsize=16,color="blue",shape="box"];2605[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2605[label="",style="solid", color="blue", weight=9]; 2605 -> 590[label="",style="solid", color="blue", weight=3]; 2606[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2606[label="",style="solid", color="blue", weight=9]; 2606 -> 591[label="",style="solid", color="blue", weight=3]; 2607[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2607[label="",style="solid", color="blue", weight=9]; 2607 -> 592[label="",style="solid", color="blue", weight=3]; 2608[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2608[label="",style="solid", color="blue", weight=9]; 2608 -> 593[label="",style="solid", color="blue", weight=3]; 2609[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2609[label="",style="solid", color="blue", weight=9]; 2609 -> 594[label="",style="solid", color="blue", weight=3]; 2610[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2610[label="",style="solid", color="blue", weight=9]; 2610 -> 595[label="",style="solid", color="blue", weight=3]; 2611[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2611[label="",style="solid", color="blue", weight=9]; 2611 -> 596[label="",style="solid", color="blue", weight=3]; 2612[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2612[label="",style="solid", color="blue", weight=9]; 2612 -> 597[label="",style="solid", color="blue", weight=3]; 2613[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2613[label="",style="solid", color="blue", weight=9]; 2613 -> 598[label="",style="solid", color="blue", weight=3]; 2614[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2614[label="",style="solid", color="blue", weight=9]; 2614 -> 599[label="",style="solid", color="blue", weight=3]; 2615[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2615[label="",style="solid", color="blue", weight=9]; 2615 -> 600[label="",style="solid", color="blue", weight=3]; 2616[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2616[label="",style="solid", color="blue", weight=9]; 2616 -> 601[label="",style="solid", color="blue", weight=3]; 2617[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2617[label="",style="solid", color="blue", weight=9]; 2617 -> 602[label="",style="solid", color="blue", weight=3]; 2618[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];413 -> 2618[label="",style="solid", color="blue", weight=9]; 2618 -> 603[label="",style="solid", color="blue", weight=3]; 414[label="vyw301 == vyw4001",fontsize=16,color="blue",shape="box"];2619[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2619[label="",style="solid", color="blue", weight=9]; 2619 -> 604[label="",style="solid", color="blue", weight=3]; 2620[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2620[label="",style="solid", color="blue", weight=9]; 2620 -> 605[label="",style="solid", color="blue", weight=3]; 2621[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2621[label="",style="solid", color="blue", weight=9]; 2621 -> 606[label="",style="solid", color="blue", weight=3]; 2622[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2622[label="",style="solid", color="blue", weight=9]; 2622 -> 607[label="",style="solid", color="blue", weight=3]; 2623[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2623[label="",style="solid", color="blue", weight=9]; 2623 -> 608[label="",style="solid", color="blue", weight=3]; 2624[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2624[label="",style="solid", color="blue", weight=9]; 2624 -> 609[label="",style="solid", color="blue", weight=3]; 2625[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2625[label="",style="solid", color="blue", weight=9]; 2625 -> 610[label="",style="solid", color="blue", weight=3]; 2626[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2626[label="",style="solid", color="blue", weight=9]; 2626 -> 611[label="",style="solid", color="blue", weight=3]; 2627[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2627[label="",style="solid", color="blue", weight=9]; 2627 -> 612[label="",style="solid", color="blue", weight=3]; 2628[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2628[label="",style="solid", color="blue", weight=9]; 2628 -> 613[label="",style="solid", color="blue", weight=3]; 2629[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2629[label="",style="solid", color="blue", weight=9]; 2629 -> 614[label="",style="solid", color="blue", weight=3]; 2630[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2630[label="",style="solid", color="blue", weight=9]; 2630 -> 615[label="",style="solid", color="blue", weight=3]; 2631[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2631[label="",style="solid", color="blue", weight=9]; 2631 -> 616[label="",style="solid", color="blue", weight=3]; 2632[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];414 -> 2632[label="",style="solid", color="blue", weight=9]; 2632 -> 617[label="",style="solid", color="blue", weight=3]; 415 -> 123[label="",style="dashed", color="red", weight=0]; 415[label="vyw300 == vyw4000",fontsize=16,color="magenta"];415 -> 618[label="",style="dashed", color="magenta", weight=3]; 415 -> 619[label="",style="dashed", color="magenta", weight=3]; 416 -> 124[label="",style="dashed", color="red", weight=0]; 416[label="vyw300 == vyw4000",fontsize=16,color="magenta"];416 -> 620[label="",style="dashed", color="magenta", weight=3]; 416 -> 621[label="",style="dashed", color="magenta", weight=3]; 417 -> 125[label="",style="dashed", color="red", weight=0]; 417[label="vyw300 == vyw4000",fontsize=16,color="magenta"];417 -> 622[label="",style="dashed", color="magenta", weight=3]; 417 -> 623[label="",style="dashed", color="magenta", weight=3]; 418 -> 126[label="",style="dashed", color="red", weight=0]; 418[label="vyw300 == vyw4000",fontsize=16,color="magenta"];418 -> 624[label="",style="dashed", color="magenta", weight=3]; 418 -> 625[label="",style="dashed", color="magenta", weight=3]; 419 -> 127[label="",style="dashed", color="red", weight=0]; 419[label="vyw300 == vyw4000",fontsize=16,color="magenta"];419 -> 626[label="",style="dashed", color="magenta", weight=3]; 419 -> 627[label="",style="dashed", color="magenta", weight=3]; 420 -> 128[label="",style="dashed", color="red", weight=0]; 420[label="vyw300 == vyw4000",fontsize=16,color="magenta"];420 -> 628[label="",style="dashed", color="magenta", weight=3]; 420 -> 629[label="",style="dashed", color="magenta", weight=3]; 421 -> 129[label="",style="dashed", color="red", weight=0]; 421[label="vyw300 == vyw4000",fontsize=16,color="magenta"];421 -> 630[label="",style="dashed", color="magenta", weight=3]; 421 -> 631[label="",style="dashed", color="magenta", weight=3]; 422 -> 130[label="",style="dashed", color="red", weight=0]; 422[label="vyw300 == vyw4000",fontsize=16,color="magenta"];422 -> 632[label="",style="dashed", color="magenta", weight=3]; 422 -> 633[label="",style="dashed", color="magenta", weight=3]; 423 -> 131[label="",style="dashed", color="red", weight=0]; 423[label="vyw300 == vyw4000",fontsize=16,color="magenta"];423 -> 634[label="",style="dashed", color="magenta", weight=3]; 423 -> 635[label="",style="dashed", color="magenta", weight=3]; 424 -> 132[label="",style="dashed", color="red", weight=0]; 424[label="vyw300 == vyw4000",fontsize=16,color="magenta"];424 -> 636[label="",style="dashed", color="magenta", weight=3]; 424 -> 637[label="",style="dashed", color="magenta", weight=3]; 425 -> 133[label="",style="dashed", color="red", weight=0]; 425[label="vyw300 == vyw4000",fontsize=16,color="magenta"];425 -> 638[label="",style="dashed", color="magenta", weight=3]; 425 -> 639[label="",style="dashed", color="magenta", weight=3]; 426 -> 134[label="",style="dashed", color="red", weight=0]; 426[label="vyw300 == vyw4000",fontsize=16,color="magenta"];426 -> 640[label="",style="dashed", color="magenta", weight=3]; 426 -> 641[label="",style="dashed", color="magenta", weight=3]; 427 -> 135[label="",style="dashed", color="red", weight=0]; 427[label="vyw300 == vyw4000",fontsize=16,color="magenta"];427 -> 642[label="",style="dashed", color="magenta", weight=3]; 427 -> 643[label="",style="dashed", color="magenta", weight=3]; 428 -> 136[label="",style="dashed", color="red", weight=0]; 428[label="vyw300 == vyw4000",fontsize=16,color="magenta"];428 -> 644[label="",style="dashed", color="magenta", weight=3]; 428 -> 645[label="",style="dashed", color="magenta", weight=3]; 429[label="False && vyw66",fontsize=16,color="black",shape="box"];429 -> 646[label="",style="solid", color="black", weight=3]; 430[label="True && vyw66",fontsize=16,color="black",shape="box"];430 -> 647[label="",style="solid", color="black", weight=3]; 431 -> 123[label="",style="dashed", color="red", weight=0]; 431[label="vyw301 == vyw4001",fontsize=16,color="magenta"];431 -> 648[label="",style="dashed", color="magenta", weight=3]; 431 -> 649[label="",style="dashed", color="magenta", weight=3]; 432 -> 124[label="",style="dashed", color="red", weight=0]; 432[label="vyw301 == vyw4001",fontsize=16,color="magenta"];432 -> 650[label="",style="dashed", color="magenta", weight=3]; 432 -> 651[label="",style="dashed", color="magenta", weight=3]; 433 -> 125[label="",style="dashed", color="red", weight=0]; 433[label="vyw301 == vyw4001",fontsize=16,color="magenta"];433 -> 652[label="",style="dashed", color="magenta", weight=3]; 433 -> 653[label="",style="dashed", color="magenta", weight=3]; 434 -> 126[label="",style="dashed", color="red", weight=0]; 434[label="vyw301 == vyw4001",fontsize=16,color="magenta"];434 -> 654[label="",style="dashed", color="magenta", weight=3]; 434 -> 655[label="",style="dashed", color="magenta", weight=3]; 435 -> 127[label="",style="dashed", color="red", weight=0]; 435[label="vyw301 == vyw4001",fontsize=16,color="magenta"];435 -> 656[label="",style="dashed", color="magenta", weight=3]; 435 -> 657[label="",style="dashed", color="magenta", weight=3]; 436 -> 128[label="",style="dashed", color="red", weight=0]; 436[label="vyw301 == vyw4001",fontsize=16,color="magenta"];436 -> 658[label="",style="dashed", color="magenta", weight=3]; 436 -> 659[label="",style="dashed", color="magenta", weight=3]; 437 -> 129[label="",style="dashed", color="red", weight=0]; 437[label="vyw301 == vyw4001",fontsize=16,color="magenta"];437 -> 660[label="",style="dashed", color="magenta", weight=3]; 437 -> 661[label="",style="dashed", color="magenta", weight=3]; 438 -> 130[label="",style="dashed", color="red", weight=0]; 438[label="vyw301 == vyw4001",fontsize=16,color="magenta"];438 -> 662[label="",style="dashed", color="magenta", weight=3]; 438 -> 663[label="",style="dashed", color="magenta", weight=3]; 439 -> 131[label="",style="dashed", color="red", weight=0]; 439[label="vyw301 == vyw4001",fontsize=16,color="magenta"];439 -> 664[label="",style="dashed", color="magenta", weight=3]; 439 -> 665[label="",style="dashed", color="magenta", weight=3]; 440 -> 132[label="",style="dashed", color="red", weight=0]; 440[label="vyw301 == vyw4001",fontsize=16,color="magenta"];440 -> 666[label="",style="dashed", color="magenta", weight=3]; 440 -> 667[label="",style="dashed", color="magenta", weight=3]; 441 -> 133[label="",style="dashed", color="red", weight=0]; 441[label="vyw301 == vyw4001",fontsize=16,color="magenta"];441 -> 668[label="",style="dashed", color="magenta", weight=3]; 441 -> 669[label="",style="dashed", color="magenta", weight=3]; 442 -> 134[label="",style="dashed", color="red", weight=0]; 442[label="vyw301 == vyw4001",fontsize=16,color="magenta"];442 -> 670[label="",style="dashed", color="magenta", weight=3]; 442 -> 671[label="",style="dashed", color="magenta", weight=3]; 443 -> 135[label="",style="dashed", color="red", weight=0]; 443[label="vyw301 == vyw4001",fontsize=16,color="magenta"];443 -> 672[label="",style="dashed", color="magenta", weight=3]; 443 -> 673[label="",style="dashed", color="magenta", weight=3]; 444 -> 136[label="",style="dashed", color="red", weight=0]; 444[label="vyw301 == vyw4001",fontsize=16,color="magenta"];444 -> 674[label="",style="dashed", color="magenta", weight=3]; 444 -> 675[label="",style="dashed", color="magenta", weight=3]; 445 -> 123[label="",style="dashed", color="red", weight=0]; 445[label="vyw300 == vyw4000",fontsize=16,color="magenta"];445 -> 676[label="",style="dashed", color="magenta", weight=3]; 445 -> 677[label="",style="dashed", color="magenta", weight=3]; 446 -> 124[label="",style="dashed", color="red", weight=0]; 446[label="vyw300 == vyw4000",fontsize=16,color="magenta"];446 -> 678[label="",style="dashed", color="magenta", weight=3]; 446 -> 679[label="",style="dashed", color="magenta", weight=3]; 447 -> 125[label="",style="dashed", color="red", weight=0]; 447[label="vyw300 == vyw4000",fontsize=16,color="magenta"];447 -> 680[label="",style="dashed", color="magenta", weight=3]; 447 -> 681[label="",style="dashed", color="magenta", weight=3]; 448 -> 126[label="",style="dashed", color="red", weight=0]; 448[label="vyw300 == vyw4000",fontsize=16,color="magenta"];448 -> 682[label="",style="dashed", color="magenta", weight=3]; 448 -> 683[label="",style="dashed", color="magenta", weight=3]; 449 -> 127[label="",style="dashed", color="red", weight=0]; 449[label="vyw300 == vyw4000",fontsize=16,color="magenta"];449 -> 684[label="",style="dashed", color="magenta", weight=3]; 449 -> 685[label="",style="dashed", color="magenta", weight=3]; 450 -> 128[label="",style="dashed", color="red", weight=0]; 450[label="vyw300 == vyw4000",fontsize=16,color="magenta"];450 -> 686[label="",style="dashed", color="magenta", weight=3]; 450 -> 687[label="",style="dashed", color="magenta", weight=3]; 451 -> 129[label="",style="dashed", color="red", weight=0]; 451[label="vyw300 == vyw4000",fontsize=16,color="magenta"];451 -> 688[label="",style="dashed", color="magenta", weight=3]; 451 -> 689[label="",style="dashed", color="magenta", weight=3]; 452 -> 130[label="",style="dashed", color="red", weight=0]; 452[label="vyw300 == vyw4000",fontsize=16,color="magenta"];452 -> 690[label="",style="dashed", color="magenta", weight=3]; 452 -> 691[label="",style="dashed", color="magenta", weight=3]; 453 -> 131[label="",style="dashed", color="red", weight=0]; 453[label="vyw300 == vyw4000",fontsize=16,color="magenta"];453 -> 692[label="",style="dashed", color="magenta", weight=3]; 453 -> 693[label="",style="dashed", color="magenta", weight=3]; 454 -> 132[label="",style="dashed", color="red", weight=0]; 454[label="vyw300 == vyw4000",fontsize=16,color="magenta"];454 -> 694[label="",style="dashed", color="magenta", weight=3]; 454 -> 695[label="",style="dashed", color="magenta", weight=3]; 455 -> 133[label="",style="dashed", color="red", weight=0]; 455[label="vyw300 == vyw4000",fontsize=16,color="magenta"];455 -> 696[label="",style="dashed", color="magenta", weight=3]; 455 -> 697[label="",style="dashed", color="magenta", weight=3]; 456 -> 134[label="",style="dashed", color="red", weight=0]; 456[label="vyw300 == vyw4000",fontsize=16,color="magenta"];456 -> 698[label="",style="dashed", color="magenta", weight=3]; 456 -> 699[label="",style="dashed", color="magenta", weight=3]; 457 -> 135[label="",style="dashed", color="red", weight=0]; 457[label="vyw300 == vyw4000",fontsize=16,color="magenta"];457 -> 700[label="",style="dashed", color="magenta", weight=3]; 457 -> 701[label="",style="dashed", color="magenta", weight=3]; 458 -> 136[label="",style="dashed", color="red", weight=0]; 458[label="vyw300 == vyw4000",fontsize=16,color="magenta"];458 -> 702[label="",style="dashed", color="magenta", weight=3]; 458 -> 703[label="",style="dashed", color="magenta", weight=3]; 459[label="vyw4001",fontsize=16,color="green",shape="box"];460[label="vyw301",fontsize=16,color="green",shape="box"];461 -> 123[label="",style="dashed", color="red", weight=0]; 461[label="vyw300 == vyw4000",fontsize=16,color="magenta"];461 -> 704[label="",style="dashed", color="magenta", weight=3]; 461 -> 705[label="",style="dashed", color="magenta", weight=3]; 462 -> 124[label="",style="dashed", color="red", weight=0]; 462[label="vyw300 == vyw4000",fontsize=16,color="magenta"];462 -> 706[label="",style="dashed", color="magenta", weight=3]; 462 -> 707[label="",style="dashed", color="magenta", weight=3]; 463 -> 125[label="",style="dashed", color="red", weight=0]; 463[label="vyw300 == vyw4000",fontsize=16,color="magenta"];463 -> 708[label="",style="dashed", color="magenta", weight=3]; 463 -> 709[label="",style="dashed", color="magenta", weight=3]; 464 -> 126[label="",style="dashed", color="red", weight=0]; 464[label="vyw300 == vyw4000",fontsize=16,color="magenta"];464 -> 710[label="",style="dashed", color="magenta", weight=3]; 464 -> 711[label="",style="dashed", color="magenta", weight=3]; 465 -> 127[label="",style="dashed", color="red", weight=0]; 465[label="vyw300 == vyw4000",fontsize=16,color="magenta"];465 -> 712[label="",style="dashed", color="magenta", weight=3]; 465 -> 713[label="",style="dashed", color="magenta", weight=3]; 466 -> 128[label="",style="dashed", color="red", weight=0]; 466[label="vyw300 == vyw4000",fontsize=16,color="magenta"];466 -> 714[label="",style="dashed", color="magenta", weight=3]; 466 -> 715[label="",style="dashed", color="magenta", weight=3]; 467 -> 129[label="",style="dashed", color="red", weight=0]; 467[label="vyw300 == vyw4000",fontsize=16,color="magenta"];467 -> 716[label="",style="dashed", color="magenta", weight=3]; 467 -> 717[label="",style="dashed", color="magenta", weight=3]; 468 -> 130[label="",style="dashed", color="red", weight=0]; 468[label="vyw300 == vyw4000",fontsize=16,color="magenta"];468 -> 718[label="",style="dashed", color="magenta", weight=3]; 468 -> 719[label="",style="dashed", color="magenta", weight=3]; 469 -> 131[label="",style="dashed", color="red", weight=0]; 469[label="vyw300 == vyw4000",fontsize=16,color="magenta"];469 -> 720[label="",style="dashed", color="magenta", weight=3]; 469 -> 721[label="",style="dashed", color="magenta", weight=3]; 470 -> 132[label="",style="dashed", color="red", weight=0]; 470[label="vyw300 == vyw4000",fontsize=16,color="magenta"];470 -> 722[label="",style="dashed", color="magenta", weight=3]; 470 -> 723[label="",style="dashed", color="magenta", weight=3]; 471 -> 133[label="",style="dashed", color="red", weight=0]; 471[label="vyw300 == vyw4000",fontsize=16,color="magenta"];471 -> 724[label="",style="dashed", color="magenta", weight=3]; 471 -> 725[label="",style="dashed", color="magenta", weight=3]; 472 -> 134[label="",style="dashed", color="red", weight=0]; 472[label="vyw300 == vyw4000",fontsize=16,color="magenta"];472 -> 726[label="",style="dashed", color="magenta", weight=3]; 472 -> 727[label="",style="dashed", color="magenta", weight=3]; 473 -> 135[label="",style="dashed", color="red", weight=0]; 473[label="vyw300 == vyw4000",fontsize=16,color="magenta"];473 -> 728[label="",style="dashed", color="magenta", weight=3]; 473 -> 729[label="",style="dashed", color="magenta", weight=3]; 474 -> 136[label="",style="dashed", color="red", weight=0]; 474[label="vyw300 == vyw4000",fontsize=16,color="magenta"];474 -> 730[label="",style="dashed", color="magenta", weight=3]; 474 -> 731[label="",style="dashed", color="magenta", weight=3]; 475[label="primEqInt (Pos (Succ vyw3000)) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];475 -> 732[label="",style="solid", color="black", weight=3]; 476[label="primEqInt (Pos (Succ vyw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];476 -> 733[label="",style="solid", color="black", weight=3]; 477[label="False",fontsize=16,color="green",shape="box"];478[label="primEqInt (Pos Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];478 -> 734[label="",style="solid", color="black", weight=3]; 479[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];479 -> 735[label="",style="solid", color="black", weight=3]; 480[label="primEqInt (Pos Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];480 -> 736[label="",style="solid", color="black", weight=3]; 481[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];481 -> 737[label="",style="solid", color="black", weight=3]; 482[label="False",fontsize=16,color="green",shape="box"];483[label="primEqInt (Neg (Succ vyw3000)) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];483 -> 738[label="",style="solid", color="black", weight=3]; 484[label="primEqInt (Neg (Succ vyw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];484 -> 739[label="",style="solid", color="black", weight=3]; 485[label="primEqInt (Neg Zero) (Pos (Succ vyw40000))",fontsize=16,color="black",shape="box"];485 -> 740[label="",style="solid", color="black", weight=3]; 486[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];486 -> 741[label="",style="solid", color="black", weight=3]; 487[label="primEqInt (Neg Zero) (Neg (Succ vyw40000))",fontsize=16,color="black",shape="box"];487 -> 742[label="",style="solid", color="black", weight=3]; 488[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];488 -> 743[label="",style="solid", color="black", weight=3]; 489 -> 128[label="",style="dashed", color="red", weight=0]; 489[label="vyw301 == vyw4001",fontsize=16,color="magenta"];489 -> 744[label="",style="dashed", color="magenta", weight=3]; 489 -> 745[label="",style="dashed", color="magenta", weight=3]; 490 -> 133[label="",style="dashed", color="red", weight=0]; 490[label="vyw301 == vyw4001",fontsize=16,color="magenta"];490 -> 746[label="",style="dashed", color="magenta", weight=3]; 490 -> 747[label="",style="dashed", color="magenta", weight=3]; 491 -> 128[label="",style="dashed", color="red", weight=0]; 491[label="vyw300 == vyw4000",fontsize=16,color="magenta"];491 -> 748[label="",style="dashed", color="magenta", weight=3]; 491 -> 749[label="",style="dashed", color="magenta", weight=3]; 492 -> 133[label="",style="dashed", color="red", weight=0]; 492[label="vyw300 == vyw4000",fontsize=16,color="magenta"];492 -> 750[label="",style="dashed", color="magenta", weight=3]; 492 -> 751[label="",style="dashed", color="magenta", weight=3]; 493 -> 355[label="",style="dashed", color="red", weight=0]; 493[label="vyw301 * vyw4000",fontsize=16,color="magenta"];493 -> 752[label="",style="dashed", color="magenta", weight=3]; 493 -> 753[label="",style="dashed", color="magenta", weight=3]; 494 -> 355[label="",style="dashed", color="red", weight=0]; 494[label="vyw300 * vyw4001",fontsize=16,color="magenta"];494 -> 754[label="",style="dashed", color="magenta", weight=3]; 494 -> 755[label="",style="dashed", color="magenta", weight=3]; 495[label="vyw4000",fontsize=16,color="green",shape="box"];496[label="vyw300",fontsize=16,color="green",shape="box"];497[label="vyw4000",fontsize=16,color="green",shape="box"];498[label="vyw300",fontsize=16,color="green",shape="box"];499[label="vyw4000",fontsize=16,color="green",shape="box"];500[label="vyw300",fontsize=16,color="green",shape="box"];501[label="vyw4000",fontsize=16,color="green",shape="box"];502[label="vyw300",fontsize=16,color="green",shape="box"];503[label="vyw4000",fontsize=16,color="green",shape="box"];504[label="vyw300",fontsize=16,color="green",shape="box"];505[label="vyw4000",fontsize=16,color="green",shape="box"];506[label="vyw300",fontsize=16,color="green",shape="box"];507[label="vyw4000",fontsize=16,color="green",shape="box"];508[label="vyw300",fontsize=16,color="green",shape="box"];509[label="vyw4000",fontsize=16,color="green",shape="box"];510[label="vyw300",fontsize=16,color="green",shape="box"];511[label="vyw4000",fontsize=16,color="green",shape="box"];512[label="vyw300",fontsize=16,color="green",shape="box"];513[label="vyw4000",fontsize=16,color="green",shape="box"];514[label="vyw300",fontsize=16,color="green",shape="box"];515[label="vyw4000",fontsize=16,color="green",shape="box"];516[label="vyw300",fontsize=16,color="green",shape="box"];517[label="vyw4000",fontsize=16,color="green",shape="box"];518[label="vyw300",fontsize=16,color="green",shape="box"];519[label="vyw4000",fontsize=16,color="green",shape="box"];520[label="vyw300",fontsize=16,color="green",shape="box"];521[label="vyw4000",fontsize=16,color="green",shape="box"];522[label="vyw300",fontsize=16,color="green",shape="box"];523[label="vyw4000",fontsize=16,color="green",shape="box"];524[label="vyw300",fontsize=16,color="green",shape="box"];525[label="vyw4000",fontsize=16,color="green",shape="box"];526[label="vyw300",fontsize=16,color="green",shape="box"];527[label="vyw4000",fontsize=16,color="green",shape="box"];528[label="vyw300",fontsize=16,color="green",shape="box"];529[label="vyw4000",fontsize=16,color="green",shape="box"];530[label="vyw300",fontsize=16,color="green",shape="box"];531[label="vyw4000",fontsize=16,color="green",shape="box"];532[label="vyw300",fontsize=16,color="green",shape="box"];533[label="vyw4000",fontsize=16,color="green",shape="box"];534[label="vyw300",fontsize=16,color="green",shape="box"];535[label="vyw4000",fontsize=16,color="green",shape="box"];536[label="vyw300",fontsize=16,color="green",shape="box"];537[label="vyw4000",fontsize=16,color="green",shape="box"];538[label="vyw300",fontsize=16,color="green",shape="box"];539[label="vyw4000",fontsize=16,color="green",shape="box"];540[label="vyw300",fontsize=16,color="green",shape="box"];541[label="vyw4000",fontsize=16,color="green",shape="box"];542[label="vyw300",fontsize=16,color="green",shape="box"];543[label="vyw4000",fontsize=16,color="green",shape="box"];544[label="vyw300",fontsize=16,color="green",shape="box"];545[label="vyw4000",fontsize=16,color="green",shape="box"];546[label="vyw300",fontsize=16,color="green",shape="box"];547[label="vyw4000",fontsize=16,color="green",shape="box"];548[label="vyw300",fontsize=16,color="green",shape="box"];549[label="vyw4000",fontsize=16,color="green",shape="box"];550[label="vyw300",fontsize=16,color="green",shape="box"];1237[label="compare1 vyw43 vyw45 (vyw43 <= vyw45)",fontsize=16,color="burlywood",shape="box"];2633[label="vyw43/(vyw430,vyw431)",fontsize=10,color="white",style="solid",shape="box"];1237 -> 2633[label="",style="solid", color="burlywood", weight=9]; 2633 -> 1271[label="",style="solid", color="burlywood", weight=3]; 1238[label="EQ",fontsize=16,color="green",shape="box"];1239[label="vyw34",fontsize=16,color="green",shape="box"];1240[label="vyw32",fontsize=16,color="green",shape="box"];1241[label="vyw34",fontsize=16,color="green",shape="box"];1242[label="vyw32",fontsize=16,color="green",shape="box"];1243[label="vyw34",fontsize=16,color="green",shape="box"];1244[label="vyw32",fontsize=16,color="green",shape="box"];1245[label="vyw34",fontsize=16,color="green",shape="box"];1246[label="vyw32",fontsize=16,color="green",shape="box"];1247[label="vyw34",fontsize=16,color="green",shape="box"];1248[label="vyw32",fontsize=16,color="green",shape="box"];1249[label="vyw34",fontsize=16,color="green",shape="box"];1250[label="vyw32",fontsize=16,color="green",shape="box"];1251[label="vyw34",fontsize=16,color="green",shape="box"];1252[label="vyw32",fontsize=16,color="green",shape="box"];1253[label="vyw34",fontsize=16,color="green",shape="box"];1254[label="vyw32",fontsize=16,color="green",shape="box"];1255[label="vyw34",fontsize=16,color="green",shape="box"];1256[label="vyw32",fontsize=16,color="green",shape="box"];1257[label="vyw34",fontsize=16,color="green",shape="box"];1258[label="vyw32",fontsize=16,color="green",shape="box"];1259[label="vyw34",fontsize=16,color="green",shape="box"];1260[label="vyw32",fontsize=16,color="green",shape="box"];1261[label="vyw34",fontsize=16,color="green",shape="box"];1262[label="vyw32",fontsize=16,color="green",shape="box"];1263[label="vyw34",fontsize=16,color="green",shape="box"];1264[label="vyw32",fontsize=16,color="green",shape="box"];1265[label="vyw34",fontsize=16,color="green",shape="box"];1266[label="vyw32",fontsize=16,color="green",shape="box"];581 -> 1203[label="",style="dashed", color="red", weight=0]; 581[label="compare2 (vyw21,vyw22) (vyw15,vyw16) ((vyw21,vyw22) == (vyw15,vyw16))",fontsize=16,color="magenta"];581 -> 1213[label="",style="dashed", color="magenta", weight=3]; 581 -> 1214[label="",style="dashed", color="magenta", weight=3]; 581 -> 1215[label="",style="dashed", color="magenta", weight=3]; 582[label="FiniteMap.elemFM0 (Just vyw17)",fontsize=16,color="black",shape="box"];582 -> 762[label="",style="solid", color="black", weight=3]; 583[label="primMulInt vyw301 vyw4000",fontsize=16,color="burlywood",shape="triangle"];2634[label="vyw301/Pos vyw3010",fontsize=10,color="white",style="solid",shape="box"];583 -> 2634[label="",style="solid", color="burlywood", weight=9]; 2634 -> 763[label="",style="solid", color="burlywood", weight=3]; 2635[label="vyw301/Neg vyw3010",fontsize=10,color="white",style="solid",shape="box"];583 -> 2635[label="",style="solid", color="burlywood", weight=9]; 2635 -> 764[label="",style="solid", color="burlywood", weight=3]; 584[label="vyw300",fontsize=16,color="green",shape="box"];585[label="vyw4001",fontsize=16,color="green",shape="box"];586[label="primEqNat (Succ vyw3000) (Succ vyw40000)",fontsize=16,color="black",shape="box"];586 -> 765[label="",style="solid", color="black", weight=3]; 587[label="primEqNat (Succ vyw3000) Zero",fontsize=16,color="black",shape="box"];587 -> 766[label="",style="solid", color="black", weight=3]; 588[label="primEqNat Zero (Succ vyw40000)",fontsize=16,color="black",shape="box"];588 -> 767[label="",style="solid", color="black", weight=3]; 589[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];589 -> 768[label="",style="solid", color="black", weight=3]; 590 -> 123[label="",style="dashed", color="red", weight=0]; 590[label="vyw302 == vyw4002",fontsize=16,color="magenta"];590 -> 769[label="",style="dashed", color="magenta", weight=3]; 590 -> 770[label="",style="dashed", color="magenta", weight=3]; 591 -> 124[label="",style="dashed", color="red", weight=0]; 591[label="vyw302 == vyw4002",fontsize=16,color="magenta"];591 -> 771[label="",style="dashed", color="magenta", weight=3]; 591 -> 772[label="",style="dashed", color="magenta", weight=3]; 592 -> 125[label="",style="dashed", color="red", weight=0]; 592[label="vyw302 == vyw4002",fontsize=16,color="magenta"];592 -> 773[label="",style="dashed", color="magenta", weight=3]; 592 -> 774[label="",style="dashed", color="magenta", weight=3]; 593 -> 126[label="",style="dashed", color="red", weight=0]; 593[label="vyw302 == vyw4002",fontsize=16,color="magenta"];593 -> 775[label="",style="dashed", color="magenta", weight=3]; 593 -> 776[label="",style="dashed", color="magenta", weight=3]; 594 -> 127[label="",style="dashed", color="red", weight=0]; 594[label="vyw302 == vyw4002",fontsize=16,color="magenta"];594 -> 777[label="",style="dashed", color="magenta", weight=3]; 594 -> 778[label="",style="dashed", color="magenta", weight=3]; 595 -> 128[label="",style="dashed", color="red", weight=0]; 595[label="vyw302 == vyw4002",fontsize=16,color="magenta"];595 -> 779[label="",style="dashed", color="magenta", weight=3]; 595 -> 780[label="",style="dashed", color="magenta", weight=3]; 596 -> 129[label="",style="dashed", color="red", weight=0]; 596[label="vyw302 == vyw4002",fontsize=16,color="magenta"];596 -> 781[label="",style="dashed", color="magenta", weight=3]; 596 -> 782[label="",style="dashed", color="magenta", weight=3]; 597 -> 130[label="",style="dashed", color="red", weight=0]; 597[label="vyw302 == vyw4002",fontsize=16,color="magenta"];597 -> 783[label="",style="dashed", color="magenta", weight=3]; 597 -> 784[label="",style="dashed", color="magenta", weight=3]; 598 -> 131[label="",style="dashed", color="red", weight=0]; 598[label="vyw302 == vyw4002",fontsize=16,color="magenta"];598 -> 785[label="",style="dashed", color="magenta", weight=3]; 598 -> 786[label="",style="dashed", color="magenta", weight=3]; 599 -> 132[label="",style="dashed", color="red", weight=0]; 599[label="vyw302 == vyw4002",fontsize=16,color="magenta"];599 -> 787[label="",style="dashed", color="magenta", weight=3]; 599 -> 788[label="",style="dashed", color="magenta", weight=3]; 600 -> 133[label="",style="dashed", color="red", weight=0]; 600[label="vyw302 == vyw4002",fontsize=16,color="magenta"];600 -> 789[label="",style="dashed", color="magenta", weight=3]; 600 -> 790[label="",style="dashed", color="magenta", weight=3]; 601 -> 134[label="",style="dashed", color="red", weight=0]; 601[label="vyw302 == vyw4002",fontsize=16,color="magenta"];601 -> 791[label="",style="dashed", color="magenta", weight=3]; 601 -> 792[label="",style="dashed", color="magenta", weight=3]; 602 -> 135[label="",style="dashed", color="red", weight=0]; 602[label="vyw302 == vyw4002",fontsize=16,color="magenta"];602 -> 793[label="",style="dashed", color="magenta", weight=3]; 602 -> 794[label="",style="dashed", color="magenta", weight=3]; 603 -> 136[label="",style="dashed", color="red", weight=0]; 603[label="vyw302 == vyw4002",fontsize=16,color="magenta"];603 -> 795[label="",style="dashed", color="magenta", weight=3]; 603 -> 796[label="",style="dashed", color="magenta", weight=3]; 604 -> 123[label="",style="dashed", color="red", weight=0]; 604[label="vyw301 == vyw4001",fontsize=16,color="magenta"];604 -> 797[label="",style="dashed", color="magenta", weight=3]; 604 -> 798[label="",style="dashed", color="magenta", weight=3]; 605 -> 124[label="",style="dashed", color="red", weight=0]; 605[label="vyw301 == vyw4001",fontsize=16,color="magenta"];605 -> 799[label="",style="dashed", color="magenta", weight=3]; 605 -> 800[label="",style="dashed", color="magenta", weight=3]; 606 -> 125[label="",style="dashed", color="red", weight=0]; 606[label="vyw301 == vyw4001",fontsize=16,color="magenta"];606 -> 801[label="",style="dashed", color="magenta", weight=3]; 606 -> 802[label="",style="dashed", color="magenta", weight=3]; 607 -> 126[label="",style="dashed", color="red", weight=0]; 607[label="vyw301 == vyw4001",fontsize=16,color="magenta"];607 -> 803[label="",style="dashed", color="magenta", weight=3]; 607 -> 804[label="",style="dashed", color="magenta", weight=3]; 608 -> 127[label="",style="dashed", color="red", weight=0]; 608[label="vyw301 == vyw4001",fontsize=16,color="magenta"];608 -> 805[label="",style="dashed", color="magenta", weight=3]; 608 -> 806[label="",style="dashed", color="magenta", weight=3]; 609 -> 128[label="",style="dashed", color="red", weight=0]; 609[label="vyw301 == vyw4001",fontsize=16,color="magenta"];609 -> 807[label="",style="dashed", color="magenta", weight=3]; 609 -> 808[label="",style="dashed", color="magenta", weight=3]; 610 -> 129[label="",style="dashed", color="red", weight=0]; 610[label="vyw301 == vyw4001",fontsize=16,color="magenta"];610 -> 809[label="",style="dashed", color="magenta", weight=3]; 610 -> 810[label="",style="dashed", color="magenta", weight=3]; 611 -> 130[label="",style="dashed", color="red", weight=0]; 611[label="vyw301 == vyw4001",fontsize=16,color="magenta"];611 -> 811[label="",style="dashed", color="magenta", weight=3]; 611 -> 812[label="",style="dashed", color="magenta", weight=3]; 612 -> 131[label="",style="dashed", color="red", weight=0]; 612[label="vyw301 == vyw4001",fontsize=16,color="magenta"];612 -> 813[label="",style="dashed", color="magenta", weight=3]; 612 -> 814[label="",style="dashed", color="magenta", weight=3]; 613 -> 132[label="",style="dashed", color="red", weight=0]; 613[label="vyw301 == vyw4001",fontsize=16,color="magenta"];613 -> 815[label="",style="dashed", color="magenta", weight=3]; 613 -> 816[label="",style="dashed", color="magenta", weight=3]; 614 -> 133[label="",style="dashed", color="red", weight=0]; 614[label="vyw301 == vyw4001",fontsize=16,color="magenta"];614 -> 817[label="",style="dashed", color="magenta", weight=3]; 614 -> 818[label="",style="dashed", color="magenta", weight=3]; 615 -> 134[label="",style="dashed", color="red", weight=0]; 615[label="vyw301 == vyw4001",fontsize=16,color="magenta"];615 -> 819[label="",style="dashed", color="magenta", weight=3]; 615 -> 820[label="",style="dashed", color="magenta", weight=3]; 616 -> 135[label="",style="dashed", color="red", weight=0]; 616[label="vyw301 == vyw4001",fontsize=16,color="magenta"];616 -> 821[label="",style="dashed", color="magenta", weight=3]; 616 -> 822[label="",style="dashed", color="magenta", weight=3]; 617 -> 136[label="",style="dashed", color="red", weight=0]; 617[label="vyw301 == vyw4001",fontsize=16,color="magenta"];617 -> 823[label="",style="dashed", color="magenta", weight=3]; 617 -> 824[label="",style="dashed", color="magenta", weight=3]; 618[label="vyw4000",fontsize=16,color="green",shape="box"];619[label="vyw300",fontsize=16,color="green",shape="box"];620[label="vyw4000",fontsize=16,color="green",shape="box"];621[label="vyw300",fontsize=16,color="green",shape="box"];622[label="vyw4000",fontsize=16,color="green",shape="box"];623[label="vyw300",fontsize=16,color="green",shape="box"];624[label="vyw4000",fontsize=16,color="green",shape="box"];625[label="vyw300",fontsize=16,color="green",shape="box"];626[label="vyw4000",fontsize=16,color="green",shape="box"];627[label="vyw300",fontsize=16,color="green",shape="box"];628[label="vyw4000",fontsize=16,color="green",shape="box"];629[label="vyw300",fontsize=16,color="green",shape="box"];630[label="vyw4000",fontsize=16,color="green",shape="box"];631[label="vyw300",fontsize=16,color="green",shape="box"];632[label="vyw4000",fontsize=16,color="green",shape="box"];633[label="vyw300",fontsize=16,color="green",shape="box"];634[label="vyw4000",fontsize=16,color="green",shape="box"];635[label="vyw300",fontsize=16,color="green",shape="box"];636[label="vyw4000",fontsize=16,color="green",shape="box"];637[label="vyw300",fontsize=16,color="green",shape="box"];638[label="vyw4000",fontsize=16,color="green",shape="box"];639[label="vyw300",fontsize=16,color="green",shape="box"];640[label="vyw4000",fontsize=16,color="green",shape="box"];641[label="vyw300",fontsize=16,color="green",shape="box"];642[label="vyw4000",fontsize=16,color="green",shape="box"];643[label="vyw300",fontsize=16,color="green",shape="box"];644[label="vyw4000",fontsize=16,color="green",shape="box"];645[label="vyw300",fontsize=16,color="green",shape="box"];646[label="False",fontsize=16,color="green",shape="box"];647[label="vyw66",fontsize=16,color="green",shape="box"];648[label="vyw4001",fontsize=16,color="green",shape="box"];649[label="vyw301",fontsize=16,color="green",shape="box"];650[label="vyw4001",fontsize=16,color="green",shape="box"];651[label="vyw301",fontsize=16,color="green",shape="box"];652[label="vyw4001",fontsize=16,color="green",shape="box"];653[label="vyw301",fontsize=16,color="green",shape="box"];654[label="vyw4001",fontsize=16,color="green",shape="box"];655[label="vyw301",fontsize=16,color="green",shape="box"];656[label="vyw4001",fontsize=16,color="green",shape="box"];657[label="vyw301",fontsize=16,color="green",shape="box"];658[label="vyw4001",fontsize=16,color="green",shape="box"];659[label="vyw301",fontsize=16,color="green",shape="box"];660[label="vyw4001",fontsize=16,color="green",shape="box"];661[label="vyw301",fontsize=16,color="green",shape="box"];662[label="vyw4001",fontsize=16,color="green",shape="box"];663[label="vyw301",fontsize=16,color="green",shape="box"];664[label="vyw4001",fontsize=16,color="green",shape="box"];665[label="vyw301",fontsize=16,color="green",shape="box"];666[label="vyw4001",fontsize=16,color="green",shape="box"];667[label="vyw301",fontsize=16,color="green",shape="box"];668[label="vyw4001",fontsize=16,color="green",shape="box"];669[label="vyw301",fontsize=16,color="green",shape="box"];670[label="vyw4001",fontsize=16,color="green",shape="box"];671[label="vyw301",fontsize=16,color="green",shape="box"];672[label="vyw4001",fontsize=16,color="green",shape="box"];673[label="vyw301",fontsize=16,color="green",shape="box"];674[label="vyw4001",fontsize=16,color="green",shape="box"];675[label="vyw301",fontsize=16,color="green",shape="box"];676[label="vyw4000",fontsize=16,color="green",shape="box"];677[label="vyw300",fontsize=16,color="green",shape="box"];678[label="vyw4000",fontsize=16,color="green",shape="box"];679[label="vyw300",fontsize=16,color="green",shape="box"];680[label="vyw4000",fontsize=16,color="green",shape="box"];681[label="vyw300",fontsize=16,color="green",shape="box"];682[label="vyw4000",fontsize=16,color="green",shape="box"];683[label="vyw300",fontsize=16,color="green",shape="box"];684[label="vyw4000",fontsize=16,color="green",shape="box"];685[label="vyw300",fontsize=16,color="green",shape="box"];686[label="vyw4000",fontsize=16,color="green",shape="box"];687[label="vyw300",fontsize=16,color="green",shape="box"];688[label="vyw4000",fontsize=16,color="green",shape="box"];689[label="vyw300",fontsize=16,color="green",shape="box"];690[label="vyw4000",fontsize=16,color="green",shape="box"];691[label="vyw300",fontsize=16,color="green",shape="box"];692[label="vyw4000",fontsize=16,color="green",shape="box"];693[label="vyw300",fontsize=16,color="green",shape="box"];694[label="vyw4000",fontsize=16,color="green",shape="box"];695[label="vyw300",fontsize=16,color="green",shape="box"];696[label="vyw4000",fontsize=16,color="green",shape="box"];697[label="vyw300",fontsize=16,color="green",shape="box"];698[label="vyw4000",fontsize=16,color="green",shape="box"];699[label="vyw300",fontsize=16,color="green",shape="box"];700[label="vyw4000",fontsize=16,color="green",shape="box"];701[label="vyw300",fontsize=16,color="green",shape="box"];702[label="vyw4000",fontsize=16,color="green",shape="box"];703[label="vyw300",fontsize=16,color="green",shape="box"];704[label="vyw4000",fontsize=16,color="green",shape="box"];705[label="vyw300",fontsize=16,color="green",shape="box"];706[label="vyw4000",fontsize=16,color="green",shape="box"];707[label="vyw300",fontsize=16,color="green",shape="box"];708[label="vyw4000",fontsize=16,color="green",shape="box"];709[label="vyw300",fontsize=16,color="green",shape="box"];710[label="vyw4000",fontsize=16,color="green",shape="box"];711[label="vyw300",fontsize=16,color="green",shape="box"];712[label="vyw4000",fontsize=16,color="green",shape="box"];713[label="vyw300",fontsize=16,color="green",shape="box"];714[label="vyw4000",fontsize=16,color="green",shape="box"];715[label="vyw300",fontsize=16,color="green",shape="box"];716[label="vyw4000",fontsize=16,color="green",shape="box"];717[label="vyw300",fontsize=16,color="green",shape="box"];718[label="vyw4000",fontsize=16,color="green",shape="box"];719[label="vyw300",fontsize=16,color="green",shape="box"];720[label="vyw4000",fontsize=16,color="green",shape="box"];721[label="vyw300",fontsize=16,color="green",shape="box"];722[label="vyw4000",fontsize=16,color="green",shape="box"];723[label="vyw300",fontsize=16,color="green",shape="box"];724[label="vyw4000",fontsize=16,color="green",shape="box"];725[label="vyw300",fontsize=16,color="green",shape="box"];726[label="vyw4000",fontsize=16,color="green",shape="box"];727[label="vyw300",fontsize=16,color="green",shape="box"];728[label="vyw4000",fontsize=16,color="green",shape="box"];729[label="vyw300",fontsize=16,color="green",shape="box"];730[label="vyw4000",fontsize=16,color="green",shape="box"];731[label="vyw300",fontsize=16,color="green",shape="box"];732 -> 265[label="",style="dashed", color="red", weight=0]; 732[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];732 -> 825[label="",style="dashed", color="magenta", weight=3]; 732 -> 826[label="",style="dashed", color="magenta", weight=3]; 733[label="False",fontsize=16,color="green",shape="box"];734[label="False",fontsize=16,color="green",shape="box"];735[label="True",fontsize=16,color="green",shape="box"];736[label="False",fontsize=16,color="green",shape="box"];737[label="True",fontsize=16,color="green",shape="box"];738 -> 265[label="",style="dashed", color="red", weight=0]; 738[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];738 -> 827[label="",style="dashed", color="magenta", weight=3]; 738 -> 828[label="",style="dashed", color="magenta", weight=3]; 739[label="False",fontsize=16,color="green",shape="box"];740[label="False",fontsize=16,color="green",shape="box"];741[label="True",fontsize=16,color="green",shape="box"];742[label="False",fontsize=16,color="green",shape="box"];743[label="True",fontsize=16,color="green",shape="box"];744[label="vyw4001",fontsize=16,color="green",shape="box"];745[label="vyw301",fontsize=16,color="green",shape="box"];746[label="vyw4001",fontsize=16,color="green",shape="box"];747[label="vyw301",fontsize=16,color="green",shape="box"];748[label="vyw4000",fontsize=16,color="green",shape="box"];749[label="vyw300",fontsize=16,color="green",shape="box"];750[label="vyw4000",fontsize=16,color="green",shape="box"];751[label="vyw300",fontsize=16,color="green",shape="box"];752[label="vyw301",fontsize=16,color="green",shape="box"];753[label="vyw4000",fontsize=16,color="green",shape="box"];754[label="vyw300",fontsize=16,color="green",shape="box"];755[label="vyw4001",fontsize=16,color="green",shape="box"];1271[label="compare1 (vyw430,vyw431) vyw45 ((vyw430,vyw431) <= vyw45)",fontsize=16,color="burlywood",shape="box"];2636[label="vyw45/(vyw450,vyw451)",fontsize=10,color="white",style="solid",shape="box"];1271 -> 2636[label="",style="solid", color="burlywood", weight=9]; 2636 -> 1274[label="",style="solid", color="burlywood", weight=3]; 1213[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1214[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];1215 -> 129[label="",style="dashed", color="red", weight=0]; 1215[label="(vyw21,vyw22) == (vyw15,vyw16)",fontsize=16,color="magenta"];1215 -> 1233[label="",style="dashed", color="magenta", weight=3]; 1215 -> 1234[label="",style="dashed", color="magenta", weight=3]; 762[label="True",fontsize=16,color="green",shape="box"];763[label="primMulInt (Pos vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];2637[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];763 -> 2637[label="",style="solid", color="burlywood", weight=9]; 2637 -> 833[label="",style="solid", color="burlywood", weight=3]; 2638[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];763 -> 2638[label="",style="solid", color="burlywood", weight=9]; 2638 -> 834[label="",style="solid", color="burlywood", weight=3]; 764[label="primMulInt (Neg vyw3010) vyw4000",fontsize=16,color="burlywood",shape="box"];2639[label="vyw4000/Pos vyw40000",fontsize=10,color="white",style="solid",shape="box"];764 -> 2639[label="",style="solid", color="burlywood", weight=9]; 2639 -> 835[label="",style="solid", color="burlywood", weight=3]; 2640[label="vyw4000/Neg vyw40000",fontsize=10,color="white",style="solid",shape="box"];764 -> 2640[label="",style="solid", color="burlywood", weight=9]; 2640 -> 836[label="",style="solid", color="burlywood", weight=3]; 765 -> 265[label="",style="dashed", color="red", weight=0]; 765[label="primEqNat vyw3000 vyw40000",fontsize=16,color="magenta"];765 -> 837[label="",style="dashed", color="magenta", weight=3]; 765 -> 838[label="",style="dashed", color="magenta", weight=3]; 766[label="False",fontsize=16,color="green",shape="box"];767[label="False",fontsize=16,color="green",shape="box"];768[label="True",fontsize=16,color="green",shape="box"];769[label="vyw4002",fontsize=16,color="green",shape="box"];770[label="vyw302",fontsize=16,color="green",shape="box"];771[label="vyw4002",fontsize=16,color="green",shape="box"];772[label="vyw302",fontsize=16,color="green",shape="box"];773[label="vyw4002",fontsize=16,color="green",shape="box"];774[label="vyw302",fontsize=16,color="green",shape="box"];775[label="vyw4002",fontsize=16,color="green",shape="box"];776[label="vyw302",fontsize=16,color="green",shape="box"];777[label="vyw4002",fontsize=16,color="green",shape="box"];778[label="vyw302",fontsize=16,color="green",shape="box"];779[label="vyw4002",fontsize=16,color="green",shape="box"];780[label="vyw302",fontsize=16,color="green",shape="box"];781[label="vyw4002",fontsize=16,color="green",shape="box"];782[label="vyw302",fontsize=16,color="green",shape="box"];783[label="vyw4002",fontsize=16,color="green",shape="box"];784[label="vyw302",fontsize=16,color="green",shape="box"];785[label="vyw4002",fontsize=16,color="green",shape="box"];786[label="vyw302",fontsize=16,color="green",shape="box"];787[label="vyw4002",fontsize=16,color="green",shape="box"];788[label="vyw302",fontsize=16,color="green",shape="box"];789[label="vyw4002",fontsize=16,color="green",shape="box"];790[label="vyw302",fontsize=16,color="green",shape="box"];791[label="vyw4002",fontsize=16,color="green",shape="box"];792[label="vyw302",fontsize=16,color="green",shape="box"];793[label="vyw4002",fontsize=16,color="green",shape="box"];794[label="vyw302",fontsize=16,color="green",shape="box"];795[label="vyw4002",fontsize=16,color="green",shape="box"];796[label="vyw302",fontsize=16,color="green",shape="box"];797[label="vyw4001",fontsize=16,color="green",shape="box"];798[label="vyw301",fontsize=16,color="green",shape="box"];799[label="vyw4001",fontsize=16,color="green",shape="box"];800[label="vyw301",fontsize=16,color="green",shape="box"];801[label="vyw4001",fontsize=16,color="green",shape="box"];802[label="vyw301",fontsize=16,color="green",shape="box"];803[label="vyw4001",fontsize=16,color="green",shape="box"];804[label="vyw301",fontsize=16,color="green",shape="box"];805[label="vyw4001",fontsize=16,color="green",shape="box"];806[label="vyw301",fontsize=16,color="green",shape="box"];807[label="vyw4001",fontsize=16,color="green",shape="box"];808[label="vyw301",fontsize=16,color="green",shape="box"];809[label="vyw4001",fontsize=16,color="green",shape="box"];810[label="vyw301",fontsize=16,color="green",shape="box"];811[label="vyw4001",fontsize=16,color="green",shape="box"];812[label="vyw301",fontsize=16,color="green",shape="box"];813[label="vyw4001",fontsize=16,color="green",shape="box"];814[label="vyw301",fontsize=16,color="green",shape="box"];815[label="vyw4001",fontsize=16,color="green",shape="box"];816[label="vyw301",fontsize=16,color="green",shape="box"];817[label="vyw4001",fontsize=16,color="green",shape="box"];818[label="vyw301",fontsize=16,color="green",shape="box"];819[label="vyw4001",fontsize=16,color="green",shape="box"];820[label="vyw301",fontsize=16,color="green",shape="box"];821[label="vyw4001",fontsize=16,color="green",shape="box"];822[label="vyw301",fontsize=16,color="green",shape="box"];823[label="vyw4001",fontsize=16,color="green",shape="box"];824[label="vyw301",fontsize=16,color="green",shape="box"];825[label="vyw3000",fontsize=16,color="green",shape="box"];826[label="vyw40000",fontsize=16,color="green",shape="box"];827[label="vyw3000",fontsize=16,color="green",shape="box"];828[label="vyw40000",fontsize=16,color="green",shape="box"];1274[label="compare1 (vyw430,vyw431) (vyw450,vyw451) ((vyw430,vyw431) <= (vyw450,vyw451))",fontsize=16,color="black",shape="box"];1274 -> 1276[label="",style="solid", color="black", weight=3]; 1233[label="(vyw15,vyw16)",fontsize=16,color="green",shape="box"];1234[label="(vyw21,vyw22)",fontsize=16,color="green",shape="box"];833[label="primMulInt (Pos vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];833 -> 872[label="",style="solid", color="black", weight=3]; 834[label="primMulInt (Pos vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];834 -> 873[label="",style="solid", color="black", weight=3]; 835[label="primMulInt (Neg vyw3010) (Pos vyw40000)",fontsize=16,color="black",shape="box"];835 -> 874[label="",style="solid", color="black", weight=3]; 836[label="primMulInt (Neg vyw3010) (Neg vyw40000)",fontsize=16,color="black",shape="box"];836 -> 875[label="",style="solid", color="black", weight=3]; 837[label="vyw3000",fontsize=16,color="green",shape="box"];838[label="vyw40000",fontsize=16,color="green",shape="box"];1276 -> 1283[label="",style="dashed", color="red", weight=0]; 1276[label="compare1 (vyw430,vyw431) (vyw450,vyw451) (vyw430 < vyw450 || vyw430 == vyw450 && vyw431 <= vyw451)",fontsize=16,color="magenta"];1276 -> 1284[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1285[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1286[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1287[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1288[label="",style="dashed", color="magenta", weight=3]; 1276 -> 1289[label="",style="dashed", color="magenta", weight=3]; 872[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];872 -> 920[label="",style="dashed", color="green", weight=3]; 873[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];873 -> 921[label="",style="dashed", color="green", weight=3]; 874[label="Neg (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];874 -> 922[label="",style="dashed", color="green", weight=3]; 875[label="Pos (primMulNat vyw3010 vyw40000)",fontsize=16,color="green",shape="box"];875 -> 923[label="",style="dashed", color="green", weight=3]; 1284[label="vyw431",fontsize=16,color="green",shape="box"];1285[label="vyw451",fontsize=16,color="green",shape="box"];1286 -> 401[label="",style="dashed", color="red", weight=0]; 1286[label="vyw430 == vyw450 && vyw431 <= vyw451",fontsize=16,color="magenta"];1286 -> 1296[label="",style="dashed", color="magenta", weight=3]; 1286 -> 1297[label="",style="dashed", color="magenta", weight=3]; 1287[label="vyw430",fontsize=16,color="green",shape="box"];1288[label="vyw430 < vyw450",fontsize=16,color="blue",shape="box"];2641[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2641[label="",style="solid", color="blue", weight=9]; 2641 -> 1298[label="",style="solid", color="blue", weight=3]; 2642[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2642[label="",style="solid", color="blue", weight=9]; 2642 -> 1299[label="",style="solid", color="blue", weight=3]; 2643[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2643[label="",style="solid", color="blue", weight=9]; 2643 -> 1300[label="",style="solid", color="blue", weight=3]; 2644[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2644[label="",style="solid", color="blue", weight=9]; 2644 -> 1301[label="",style="solid", color="blue", weight=3]; 2645[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2645[label="",style="solid", color="blue", weight=9]; 2645 -> 1302[label="",style="solid", color="blue", weight=3]; 2646[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2646[label="",style="solid", color="blue", weight=9]; 2646 -> 1303[label="",style="solid", color="blue", weight=3]; 2647[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2647[label="",style="solid", color="blue", weight=9]; 2647 -> 1304[label="",style="solid", color="blue", weight=3]; 2648[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2648[label="",style="solid", color="blue", weight=9]; 2648 -> 1305[label="",style="solid", color="blue", weight=3]; 2649[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2649[label="",style="solid", color="blue", weight=9]; 2649 -> 1306[label="",style="solid", color="blue", weight=3]; 2650[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2650[label="",style="solid", color="blue", weight=9]; 2650 -> 1307[label="",style="solid", color="blue", weight=3]; 2651[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2651[label="",style="solid", color="blue", weight=9]; 2651 -> 1308[label="",style="solid", color="blue", weight=3]; 2652[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2652[label="",style="solid", color="blue", weight=9]; 2652 -> 1309[label="",style="solid", color="blue", weight=3]; 2653[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2653[label="",style="solid", color="blue", weight=9]; 2653 -> 1310[label="",style="solid", color="blue", weight=3]; 2654[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1288 -> 2654[label="",style="solid", color="blue", weight=9]; 2654 -> 1311[label="",style="solid", color="blue", weight=3]; 1289[label="vyw450",fontsize=16,color="green",shape="box"];1283[label="compare1 (vyw99,vyw100) (vyw101,vyw102) (vyw103 || vyw104)",fontsize=16,color="burlywood",shape="triangle"];2655[label="vyw103/False",fontsize=10,color="white",style="solid",shape="box"];1283 -> 2655[label="",style="solid", color="burlywood", weight=9]; 2655 -> 1312[label="",style="solid", color="burlywood", weight=3]; 2656[label="vyw103/True",fontsize=10,color="white",style="solid",shape="box"];1283 -> 2656[label="",style="solid", color="burlywood", weight=9]; 2656 -> 1313[label="",style="solid", color="burlywood", weight=3]; 920[label="primMulNat vyw3010 vyw40000",fontsize=16,color="burlywood",shape="triangle"];2657[label="vyw3010/Succ vyw30100",fontsize=10,color="white",style="solid",shape="box"];920 -> 2657[label="",style="solid", color="burlywood", weight=9]; 2657 -> 1002[label="",style="solid", color="burlywood", weight=3]; 2658[label="vyw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];920 -> 2658[label="",style="solid", color="burlywood", weight=9]; 2658 -> 1003[label="",style="solid", color="burlywood", weight=3]; 921 -> 920[label="",style="dashed", color="red", weight=0]; 921[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];921 -> 1004[label="",style="dashed", color="magenta", weight=3]; 922 -> 920[label="",style="dashed", color="red", weight=0]; 922[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];922 -> 1005[label="",style="dashed", color="magenta", weight=3]; 923 -> 920[label="",style="dashed", color="red", weight=0]; 923[label="primMulNat vyw3010 vyw40000",fontsize=16,color="magenta"];923 -> 1006[label="",style="dashed", color="magenta", weight=3]; 923 -> 1007[label="",style="dashed", color="magenta", weight=3]; 1296[label="vyw431 <= vyw451",fontsize=16,color="blue",shape="box"];2659[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2659[label="",style="solid", color="blue", weight=9]; 2659 -> 1318[label="",style="solid", color="blue", weight=3]; 2660[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2660[label="",style="solid", color="blue", weight=9]; 2660 -> 1319[label="",style="solid", color="blue", weight=3]; 2661[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2661[label="",style="solid", color="blue", weight=9]; 2661 -> 1320[label="",style="solid", color="blue", weight=3]; 2662[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2662[label="",style="solid", color="blue", weight=9]; 2662 -> 1321[label="",style="solid", color="blue", weight=3]; 2663[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2663[label="",style="solid", color="blue", weight=9]; 2663 -> 1322[label="",style="solid", color="blue", weight=3]; 2664[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2664[label="",style="solid", color="blue", weight=9]; 2664 -> 1323[label="",style="solid", color="blue", weight=3]; 2665[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2665[label="",style="solid", color="blue", weight=9]; 2665 -> 1324[label="",style="solid", color="blue", weight=3]; 2666[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2666[label="",style="solid", color="blue", weight=9]; 2666 -> 1325[label="",style="solid", color="blue", weight=3]; 2667[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2667[label="",style="solid", color="blue", weight=9]; 2667 -> 1326[label="",style="solid", color="blue", weight=3]; 2668[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2668[label="",style="solid", color="blue", weight=9]; 2668 -> 1327[label="",style="solid", color="blue", weight=3]; 2669[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2669[label="",style="solid", color="blue", weight=9]; 2669 -> 1328[label="",style="solid", color="blue", weight=3]; 2670[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2670[label="",style="solid", color="blue", weight=9]; 2670 -> 1329[label="",style="solid", color="blue", weight=3]; 2671[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2671[label="",style="solid", color="blue", weight=9]; 2671 -> 1330[label="",style="solid", color="blue", weight=3]; 2672[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1296 -> 2672[label="",style="solid", color="blue", weight=9]; 2672 -> 1331[label="",style="solid", color="blue", weight=3]; 1297[label="vyw430 == vyw450",fontsize=16,color="blue",shape="box"];2673[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2673[label="",style="solid", color="blue", weight=9]; 2673 -> 1332[label="",style="solid", color="blue", weight=3]; 2674[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2674[label="",style="solid", color="blue", weight=9]; 2674 -> 1333[label="",style="solid", color="blue", weight=3]; 2675[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2675[label="",style="solid", color="blue", weight=9]; 2675 -> 1334[label="",style="solid", color="blue", weight=3]; 2676[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2676[label="",style="solid", color="blue", weight=9]; 2676 -> 1335[label="",style="solid", color="blue", weight=3]; 2677[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2677[label="",style="solid", color="blue", weight=9]; 2677 -> 1336[label="",style="solid", color="blue", weight=3]; 2678[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2678[label="",style="solid", color="blue", weight=9]; 2678 -> 1337[label="",style="solid", color="blue", weight=3]; 2679[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2679[label="",style="solid", color="blue", weight=9]; 2679 -> 1338[label="",style="solid", color="blue", weight=3]; 2680[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2680[label="",style="solid", color="blue", weight=9]; 2680 -> 1339[label="",style="solid", color="blue", weight=3]; 2681[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2681[label="",style="solid", color="blue", weight=9]; 2681 -> 1340[label="",style="solid", color="blue", weight=3]; 2682[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2682[label="",style="solid", color="blue", weight=9]; 2682 -> 1341[label="",style="solid", color="blue", weight=3]; 2683[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2683[label="",style="solid", color="blue", weight=9]; 2683 -> 1342[label="",style="solid", color="blue", weight=3]; 2684[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2684[label="",style="solid", color="blue", weight=9]; 2684 -> 1343[label="",style="solid", color="blue", weight=3]; 2685[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2685[label="",style="solid", color="blue", weight=9]; 2685 -> 1344[label="",style="solid", color="blue", weight=3]; 2686[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1297 -> 2686[label="",style="solid", color="blue", weight=9]; 2686 -> 1345[label="",style="solid", color="blue", weight=3]; 1298[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1298 -> 1346[label="",style="solid", color="black", weight=3]; 1299[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1299 -> 1347[label="",style="solid", color="black", weight=3]; 1300[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1300 -> 1348[label="",style="solid", color="black", weight=3]; 1301[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1301 -> 1349[label="",style="solid", color="black", weight=3]; 1302[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1302 -> 1350[label="",style="solid", color="black", weight=3]; 1303[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1303 -> 1351[label="",style="solid", color="black", weight=3]; 1304[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1304 -> 1352[label="",style="solid", color="black", weight=3]; 1305[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1305 -> 1353[label="",style="solid", color="black", weight=3]; 1306[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1306 -> 1354[label="",style="solid", color="black", weight=3]; 1307[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1307 -> 1355[label="",style="solid", color="black", weight=3]; 1308[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1308 -> 1356[label="",style="solid", color="black", weight=3]; 1309[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1309 -> 1357[label="",style="solid", color="black", weight=3]; 1310[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1310 -> 1358[label="",style="solid", color="black", weight=3]; 1311[label="vyw430 < vyw450",fontsize=16,color="black",shape="triangle"];1311 -> 1359[label="",style="solid", color="black", weight=3]; 1312[label="compare1 (vyw99,vyw100) (vyw101,vyw102) (False || vyw104)",fontsize=16,color="black",shape="box"];1312 -> 1360[label="",style="solid", color="black", weight=3]; 1313[label="compare1 (vyw99,vyw100) (vyw101,vyw102) (True || vyw104)",fontsize=16,color="black",shape="box"];1313 -> 1361[label="",style="solid", color="black", weight=3]; 1002[label="primMulNat (Succ vyw30100) vyw40000",fontsize=16,color="burlywood",shape="box"];2687[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];1002 -> 2687[label="",style="solid", color="burlywood", weight=9]; 2687 -> 1056[label="",style="solid", color="burlywood", weight=3]; 2688[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1002 -> 2688[label="",style="solid", color="burlywood", weight=9]; 2688 -> 1057[label="",style="solid", color="burlywood", weight=3]; 1003[label="primMulNat Zero vyw40000",fontsize=16,color="burlywood",shape="box"];2689[label="vyw40000/Succ vyw400000",fontsize=10,color="white",style="solid",shape="box"];1003 -> 2689[label="",style="solid", color="burlywood", weight=9]; 2689 -> 1058[label="",style="solid", color="burlywood", weight=3]; 2690[label="vyw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1003 -> 2690[label="",style="solid", color="burlywood", weight=9]; 2690 -> 1059[label="",style="solid", color="burlywood", weight=3]; 1004[label="vyw40000",fontsize=16,color="green",shape="box"];1005[label="vyw3010",fontsize=16,color="green",shape="box"];1006[label="vyw3010",fontsize=16,color="green",shape="box"];1007[label="vyw40000",fontsize=16,color="green",shape="box"];1318[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2691[label="vyw431/Nothing",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2691[label="",style="solid", color="burlywood", weight=9]; 2691 -> 1366[label="",style="solid", color="burlywood", weight=3]; 2692[label="vyw431/Just vyw4310",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2692[label="",style="solid", color="burlywood", weight=9]; 2692 -> 1367[label="",style="solid", color="burlywood", weight=3]; 1319[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1319 -> 1368[label="",style="solid", color="black", weight=3]; 1320[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1320 -> 1369[label="",style="solid", color="black", weight=3]; 1321[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1321 -> 1370[label="",style="solid", color="black", weight=3]; 1322[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2693[label="vyw431/Left vyw4310",fontsize=10,color="white",style="solid",shape="box"];1322 -> 2693[label="",style="solid", color="burlywood", weight=9]; 2693 -> 1371[label="",style="solid", color="burlywood", weight=3]; 2694[label="vyw431/Right vyw4310",fontsize=10,color="white",style="solid",shape="box"];1322 -> 2694[label="",style="solid", color="burlywood", weight=9]; 2694 -> 1372[label="",style="solid", color="burlywood", weight=3]; 1323[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1323 -> 1373[label="",style="solid", color="black", weight=3]; 1324[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1324 -> 1374[label="",style="solid", color="black", weight=3]; 1325[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2695[label="vyw431/False",fontsize=10,color="white",style="solid",shape="box"];1325 -> 2695[label="",style="solid", color="burlywood", weight=9]; 2695 -> 1375[label="",style="solid", color="burlywood", weight=3]; 2696[label="vyw431/True",fontsize=10,color="white",style="solid",shape="box"];1325 -> 2696[label="",style="solid", color="burlywood", weight=9]; 2696 -> 1376[label="",style="solid", color="burlywood", weight=3]; 1326[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1326 -> 1377[label="",style="solid", color="black", weight=3]; 1327[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1327 -> 1378[label="",style="solid", color="black", weight=3]; 1328[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2697[label="vyw431/(vyw4310,vyw4311,vyw4312)",fontsize=10,color="white",style="solid",shape="box"];1328 -> 2697[label="",style="solid", color="burlywood", weight=9]; 2697 -> 1379[label="",style="solid", color="burlywood", weight=3]; 1329[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2698[label="vyw431/(vyw4310,vyw4311)",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2698[label="",style="solid", color="burlywood", weight=9]; 2698 -> 1380[label="",style="solid", color="burlywood", weight=3]; 1330[label="vyw431 <= vyw451",fontsize=16,color="black",shape="triangle"];1330 -> 1381[label="",style="solid", color="black", weight=3]; 1331[label="vyw431 <= vyw451",fontsize=16,color="burlywood",shape="triangle"];2699[label="vyw431/LT",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2699[label="",style="solid", color="burlywood", weight=9]; 2699 -> 1382[label="",style="solid", color="burlywood", weight=3]; 2700[label="vyw431/EQ",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2700[label="",style="solid", color="burlywood", weight=9]; 2700 -> 1383[label="",style="solid", color="burlywood", weight=3]; 2701[label="vyw431/GT",fontsize=10,color="white",style="solid",shape="box"];1331 -> 2701[label="",style="solid", color="burlywood", weight=9]; 2701 -> 1384[label="",style="solid", color="burlywood", weight=3]; 1332 -> 126[label="",style="dashed", color="red", weight=0]; 1332[label="vyw430 == vyw450",fontsize=16,color="magenta"];1332 -> 1385[label="",style="dashed", color="magenta", weight=3]; 1332 -> 1386[label="",style="dashed", color="magenta", weight=3]; 1333 -> 128[label="",style="dashed", color="red", weight=0]; 1333[label="vyw430 == vyw450",fontsize=16,color="magenta"];1333 -> 1387[label="",style="dashed", color="magenta", weight=3]; 1333 -> 1388[label="",style="dashed", color="magenta", weight=3]; 1334 -> 125[label="",style="dashed", color="red", weight=0]; 1334[label="vyw430 == vyw450",fontsize=16,color="magenta"];1334 -> 1389[label="",style="dashed", color="magenta", weight=3]; 1334 -> 1390[label="",style="dashed", color="magenta", weight=3]; 1335 -> 133[label="",style="dashed", color="red", weight=0]; 1335[label="vyw430 == vyw450",fontsize=16,color="magenta"];1335 -> 1391[label="",style="dashed", color="magenta", weight=3]; 1335 -> 1392[label="",style="dashed", color="magenta", weight=3]; 1336 -> 136[label="",style="dashed", color="red", weight=0]; 1336[label="vyw430 == vyw450",fontsize=16,color="magenta"];1336 -> 1393[label="",style="dashed", color="magenta", weight=3]; 1336 -> 1394[label="",style="dashed", color="magenta", weight=3]; 1337 -> 135[label="",style="dashed", color="red", weight=0]; 1337[label="vyw430 == vyw450",fontsize=16,color="magenta"];1337 -> 1395[label="",style="dashed", color="magenta", weight=3]; 1337 -> 1396[label="",style="dashed", color="magenta", weight=3]; 1338 -> 134[label="",style="dashed", color="red", weight=0]; 1338[label="vyw430 == vyw450",fontsize=16,color="magenta"];1338 -> 1397[label="",style="dashed", color="magenta", weight=3]; 1338 -> 1398[label="",style="dashed", color="magenta", weight=3]; 1339 -> 124[label="",style="dashed", color="red", weight=0]; 1339[label="vyw430 == vyw450",fontsize=16,color="magenta"];1339 -> 1399[label="",style="dashed", color="magenta", weight=3]; 1339 -> 1400[label="",style="dashed", color="magenta", weight=3]; 1340 -> 123[label="",style="dashed", color="red", weight=0]; 1340[label="vyw430 == vyw450",fontsize=16,color="magenta"];1340 -> 1401[label="",style="dashed", color="magenta", weight=3]; 1340 -> 1402[label="",style="dashed", color="magenta", weight=3]; 1341 -> 132[label="",style="dashed", color="red", weight=0]; 1341[label="vyw430 == vyw450",fontsize=16,color="magenta"];1341 -> 1403[label="",style="dashed", color="magenta", weight=3]; 1341 -> 1404[label="",style="dashed", color="magenta", weight=3]; 1342 -> 127[label="",style="dashed", color="red", weight=0]; 1342[label="vyw430 == vyw450",fontsize=16,color="magenta"];1342 -> 1405[label="",style="dashed", color="magenta", weight=3]; 1342 -> 1406[label="",style="dashed", color="magenta", weight=3]; 1343 -> 129[label="",style="dashed", color="red", weight=0]; 1343[label="vyw430 == vyw450",fontsize=16,color="magenta"];1343 -> 1407[label="",style="dashed", color="magenta", weight=3]; 1343 -> 1408[label="",style="dashed", color="magenta", weight=3]; 1344 -> 130[label="",style="dashed", color="red", weight=0]; 1344[label="vyw430 == vyw450",fontsize=16,color="magenta"];1344 -> 1409[label="",style="dashed", color="magenta", weight=3]; 1344 -> 1410[label="",style="dashed", color="magenta", weight=3]; 1345 -> 131[label="",style="dashed", color="red", weight=0]; 1345[label="vyw430 == vyw450",fontsize=16,color="magenta"];1345 -> 1411[label="",style="dashed", color="magenta", weight=3]; 1345 -> 1412[label="",style="dashed", color="magenta", weight=3]; 1346 -> 131[label="",style="dashed", color="red", weight=0]; 1346[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1346 -> 1413[label="",style="dashed", color="magenta", weight=3]; 1346 -> 1414[label="",style="dashed", color="magenta", weight=3]; 1347 -> 131[label="",style="dashed", color="red", weight=0]; 1347[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1347 -> 1415[label="",style="dashed", color="magenta", weight=3]; 1347 -> 1416[label="",style="dashed", color="magenta", weight=3]; 1348 -> 131[label="",style="dashed", color="red", weight=0]; 1348[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1348 -> 1417[label="",style="dashed", color="magenta", weight=3]; 1348 -> 1418[label="",style="dashed", color="magenta", weight=3]; 1349 -> 131[label="",style="dashed", color="red", weight=0]; 1349[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1349 -> 1419[label="",style="dashed", color="magenta", weight=3]; 1349 -> 1420[label="",style="dashed", color="magenta", weight=3]; 1350 -> 131[label="",style="dashed", color="red", weight=0]; 1350[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1350 -> 1421[label="",style="dashed", color="magenta", weight=3]; 1350 -> 1422[label="",style="dashed", color="magenta", weight=3]; 1351 -> 131[label="",style="dashed", color="red", weight=0]; 1351[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1351 -> 1423[label="",style="dashed", color="magenta", weight=3]; 1351 -> 1424[label="",style="dashed", color="magenta", weight=3]; 1352 -> 131[label="",style="dashed", color="red", weight=0]; 1352[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1352 -> 1425[label="",style="dashed", color="magenta", weight=3]; 1352 -> 1426[label="",style="dashed", color="magenta", weight=3]; 1353 -> 131[label="",style="dashed", color="red", weight=0]; 1353[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1353 -> 1427[label="",style="dashed", color="magenta", weight=3]; 1353 -> 1428[label="",style="dashed", color="magenta", weight=3]; 1354 -> 131[label="",style="dashed", color="red", weight=0]; 1354[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1354 -> 1429[label="",style="dashed", color="magenta", weight=3]; 1354 -> 1430[label="",style="dashed", color="magenta", weight=3]; 1355 -> 131[label="",style="dashed", color="red", weight=0]; 1355[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1355 -> 1431[label="",style="dashed", color="magenta", weight=3]; 1355 -> 1432[label="",style="dashed", color="magenta", weight=3]; 1356 -> 131[label="",style="dashed", color="red", weight=0]; 1356[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1356 -> 1433[label="",style="dashed", color="magenta", weight=3]; 1356 -> 1434[label="",style="dashed", color="magenta", weight=3]; 1357 -> 131[label="",style="dashed", color="red", weight=0]; 1357[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1357 -> 1435[label="",style="dashed", color="magenta", weight=3]; 1357 -> 1436[label="",style="dashed", color="magenta", weight=3]; 1358 -> 131[label="",style="dashed", color="red", weight=0]; 1358[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1358 -> 1437[label="",style="dashed", color="magenta", weight=3]; 1358 -> 1438[label="",style="dashed", color="magenta", weight=3]; 1359 -> 131[label="",style="dashed", color="red", weight=0]; 1359[label="compare vyw430 vyw450 == LT",fontsize=16,color="magenta"];1359 -> 1439[label="",style="dashed", color="magenta", weight=3]; 1359 -> 1440[label="",style="dashed", color="magenta", weight=3]; 1360[label="compare1 (vyw99,vyw100) (vyw101,vyw102) vyw104",fontsize=16,color="burlywood",shape="triangle"];2702[label="vyw104/False",fontsize=10,color="white",style="solid",shape="box"];1360 -> 2702[label="",style="solid", color="burlywood", weight=9]; 2702 -> 1441[label="",style="solid", color="burlywood", weight=3]; 2703[label="vyw104/True",fontsize=10,color="white",style="solid",shape="box"];1360 -> 2703[label="",style="solid", color="burlywood", weight=9]; 2703 -> 1442[label="",style="solid", color="burlywood", weight=3]; 1361 -> 1360[label="",style="dashed", color="red", weight=0]; 1361[label="compare1 (vyw99,vyw100) (vyw101,vyw102) True",fontsize=16,color="magenta"];1361 -> 1443[label="",style="dashed", color="magenta", weight=3]; 1056[label="primMulNat (Succ vyw30100) (Succ vyw400000)",fontsize=16,color="black",shape="box"];1056 -> 1111[label="",style="solid", color="black", weight=3]; 1057[label="primMulNat (Succ vyw30100) Zero",fontsize=16,color="black",shape="box"];1057 -> 1112[label="",style="solid", color="black", weight=3]; 1058[label="primMulNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];1058 -> 1113[label="",style="solid", color="black", weight=3]; 1059[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1059 -> 1114[label="",style="solid", color="black", weight=3]; 1366[label="Nothing <= vyw451",fontsize=16,color="burlywood",shape="box"];2704[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1366 -> 2704[label="",style="solid", color="burlywood", weight=9]; 2704 -> 1445[label="",style="solid", color="burlywood", weight=3]; 2705[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1366 -> 2705[label="",style="solid", color="burlywood", weight=9]; 2705 -> 1446[label="",style="solid", color="burlywood", weight=3]; 1367[label="Just vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2706[label="vyw451/Nothing",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2706[label="",style="solid", color="burlywood", weight=9]; 2706 -> 1447[label="",style="solid", color="burlywood", weight=3]; 2707[label="vyw451/Just vyw4510",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2707[label="",style="solid", color="burlywood", weight=9]; 2707 -> 1448[label="",style="solid", color="burlywood", weight=3]; 1368[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1368 -> 1449[label="",style="solid", color="black", weight=3]; 1369[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1369 -> 1450[label="",style="solid", color="black", weight=3]; 1370[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1370 -> 1451[label="",style="solid", color="black", weight=3]; 1371[label="Left vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2708[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1371 -> 2708[label="",style="solid", color="burlywood", weight=9]; 2708 -> 1452[label="",style="solid", color="burlywood", weight=3]; 2709[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1371 -> 2709[label="",style="solid", color="burlywood", weight=9]; 2709 -> 1453[label="",style="solid", color="burlywood", weight=3]; 1372[label="Right vyw4310 <= vyw451",fontsize=16,color="burlywood",shape="box"];2710[label="vyw451/Left vyw4510",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2710[label="",style="solid", color="burlywood", weight=9]; 2710 -> 1454[label="",style="solid", color="burlywood", weight=3]; 2711[label="vyw451/Right vyw4510",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2711[label="",style="solid", color="burlywood", weight=9]; 2711 -> 1455[label="",style="solid", color="burlywood", weight=3]; 1373[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1373 -> 1456[label="",style="solid", color="black", weight=3]; 1374[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1374 -> 1457[label="",style="solid", color="black", weight=3]; 1375[label="False <= vyw451",fontsize=16,color="burlywood",shape="box"];2712[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2712[label="",style="solid", color="burlywood", weight=9]; 2712 -> 1458[label="",style="solid", color="burlywood", weight=3]; 2713[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1375 -> 2713[label="",style="solid", color="burlywood", weight=9]; 2713 -> 1459[label="",style="solid", color="burlywood", weight=3]; 1376[label="True <= vyw451",fontsize=16,color="burlywood",shape="box"];2714[label="vyw451/False",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2714[label="",style="solid", color="burlywood", weight=9]; 2714 -> 1460[label="",style="solid", color="burlywood", weight=3]; 2715[label="vyw451/True",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2715[label="",style="solid", color="burlywood", weight=9]; 2715 -> 1461[label="",style="solid", color="burlywood", weight=3]; 1377[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1377 -> 1462[label="",style="solid", color="black", weight=3]; 1378[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1378 -> 1463[label="",style="solid", color="black", weight=3]; 1379[label="(vyw4310,vyw4311,vyw4312) <= vyw451",fontsize=16,color="burlywood",shape="box"];2716[label="vyw451/(vyw4510,vyw4511,vyw4512)",fontsize=10,color="white",style="solid",shape="box"];1379 -> 2716[label="",style="solid", color="burlywood", weight=9]; 2716 -> 1464[label="",style="solid", color="burlywood", weight=3]; 1380[label="(vyw4310,vyw4311) <= vyw451",fontsize=16,color="burlywood",shape="box"];2717[label="vyw451/(vyw4510,vyw4511)",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2717[label="",style="solid", color="burlywood", weight=9]; 2717 -> 1465[label="",style="solid", color="burlywood", weight=3]; 1381[label="compare vyw431 vyw451 /= GT",fontsize=16,color="black",shape="box"];1381 -> 1466[label="",style="solid", color="black", weight=3]; 1382[label="LT <= vyw451",fontsize=16,color="burlywood",shape="box"];2718[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2718[label="",style="solid", color="burlywood", weight=9]; 2718 -> 1467[label="",style="solid", color="burlywood", weight=3]; 2719[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2719[label="",style="solid", color="burlywood", weight=9]; 2719 -> 1468[label="",style="solid", color="burlywood", weight=3]; 2720[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2720[label="",style="solid", color="burlywood", weight=9]; 2720 -> 1469[label="",style="solid", color="burlywood", weight=3]; 1383[label="EQ <= vyw451",fontsize=16,color="burlywood",shape="box"];2721[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2721[label="",style="solid", color="burlywood", weight=9]; 2721 -> 1470[label="",style="solid", color="burlywood", weight=3]; 2722[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2722[label="",style="solid", color="burlywood", weight=9]; 2722 -> 1471[label="",style="solid", color="burlywood", weight=3]; 2723[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2723[label="",style="solid", color="burlywood", weight=9]; 2723 -> 1472[label="",style="solid", color="burlywood", weight=3]; 1384[label="GT <= vyw451",fontsize=16,color="burlywood",shape="box"];2724[label="vyw451/LT",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2724[label="",style="solid", color="burlywood", weight=9]; 2724 -> 1473[label="",style="solid", color="burlywood", weight=3]; 2725[label="vyw451/EQ",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2725[label="",style="solid", color="burlywood", weight=9]; 2725 -> 1474[label="",style="solid", color="burlywood", weight=3]; 2726[label="vyw451/GT",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2726[label="",style="solid", color="burlywood", weight=9]; 2726 -> 1475[label="",style="solid", color="burlywood", weight=3]; 1385[label="vyw450",fontsize=16,color="green",shape="box"];1386[label="vyw430",fontsize=16,color="green",shape="box"];1387[label="vyw450",fontsize=16,color="green",shape="box"];1388[label="vyw430",fontsize=16,color="green",shape="box"];1389[label="vyw450",fontsize=16,color="green",shape="box"];1390[label="vyw430",fontsize=16,color="green",shape="box"];1391[label="vyw450",fontsize=16,color="green",shape="box"];1392[label="vyw430",fontsize=16,color="green",shape="box"];1393[label="vyw450",fontsize=16,color="green",shape="box"];1394[label="vyw430",fontsize=16,color="green",shape="box"];1395[label="vyw450",fontsize=16,color="green",shape="box"];1396[label="vyw430",fontsize=16,color="green",shape="box"];1397[label="vyw450",fontsize=16,color="green",shape="box"];1398[label="vyw430",fontsize=16,color="green",shape="box"];1399[label="vyw450",fontsize=16,color="green",shape="box"];1400[label="vyw430",fontsize=16,color="green",shape="box"];1401[label="vyw450",fontsize=16,color="green",shape="box"];1402[label="vyw430",fontsize=16,color="green",shape="box"];1403[label="vyw450",fontsize=16,color="green",shape="box"];1404[label="vyw430",fontsize=16,color="green",shape="box"];1405[label="vyw450",fontsize=16,color="green",shape="box"];1406[label="vyw430",fontsize=16,color="green",shape="box"];1407[label="vyw450",fontsize=16,color="green",shape="box"];1408[label="vyw430",fontsize=16,color="green",shape="box"];1409[label="vyw450",fontsize=16,color="green",shape="box"];1410[label="vyw430",fontsize=16,color="green",shape="box"];1411[label="vyw450",fontsize=16,color="green",shape="box"];1412[label="vyw430",fontsize=16,color="green",shape="box"];1413[label="LT",fontsize=16,color="green",shape="box"];1414[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1414 -> 1476[label="",style="solid", color="black", weight=3]; 1415[label="LT",fontsize=16,color="green",shape="box"];1416[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2727[label="vyw430/Integer vyw4300",fontsize=10,color="white",style="solid",shape="box"];1416 -> 2727[label="",style="solid", color="burlywood", weight=9]; 2727 -> 1477[label="",style="solid", color="burlywood", weight=3]; 1417[label="LT",fontsize=16,color="green",shape="box"];1418[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1418 -> 1478[label="",style="solid", color="black", weight=3]; 1419[label="LT",fontsize=16,color="green",shape="box"];1420[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1420 -> 1479[label="",style="solid", color="black", weight=3]; 1421[label="LT",fontsize=16,color="green",shape="box"];1422[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1422 -> 1480[label="",style="solid", color="black", weight=3]; 1423[label="LT",fontsize=16,color="green",shape="box"];1424[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1424 -> 1481[label="",style="solid", color="black", weight=3]; 1425[label="LT",fontsize=16,color="green",shape="box"];1426[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2728[label="vyw430/vyw4300 :% vyw4301",fontsize=10,color="white",style="solid",shape="box"];1426 -> 2728[label="",style="solid", color="burlywood", weight=9]; 2728 -> 1482[label="",style="solid", color="burlywood", weight=3]; 1427[label="LT",fontsize=16,color="green",shape="box"];1428[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1428 -> 1483[label="",style="solid", color="black", weight=3]; 1429[label="LT",fontsize=16,color="green",shape="box"];1430[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1430 -> 1484[label="",style="solid", color="black", weight=3]; 1431[label="LT",fontsize=16,color="green",shape="box"];1432[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2729[label="vyw430/vyw4300 : vyw4301",fontsize=10,color="white",style="solid",shape="box"];1432 -> 2729[label="",style="solid", color="burlywood", weight=9]; 2729 -> 1485[label="",style="solid", color="burlywood", weight=3]; 2730[label="vyw430/[]",fontsize=10,color="white",style="solid",shape="box"];1432 -> 2730[label="",style="solid", color="burlywood", weight=9]; 2730 -> 1486[label="",style="solid", color="burlywood", weight=3]; 1433[label="LT",fontsize=16,color="green",shape="box"];1434[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1434 -> 1487[label="",style="solid", color="black", weight=3]; 1435[label="LT",fontsize=16,color="green",shape="box"];1436[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1436 -> 1488[label="",style="solid", color="black", weight=3]; 1437[label="LT",fontsize=16,color="green",shape="box"];1438[label="compare vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2731[label="vyw430/()",fontsize=10,color="white",style="solid",shape="box"];1438 -> 2731[label="",style="solid", color="burlywood", weight=9]; 2731 -> 1489[label="",style="solid", color="burlywood", weight=3]; 1439[label="LT",fontsize=16,color="green",shape="box"];1440[label="compare vyw430 vyw450",fontsize=16,color="black",shape="triangle"];1440 -> 1490[label="",style="solid", color="black", weight=3]; 1441[label="compare1 (vyw99,vyw100) (vyw101,vyw102) False",fontsize=16,color="black",shape="box"];1441 -> 1491[label="",style="solid", color="black", weight=3]; 1442[label="compare1 (vyw99,vyw100) (vyw101,vyw102) True",fontsize=16,color="black",shape="box"];1442 -> 1492[label="",style="solid", color="black", weight=3]; 1443[label="True",fontsize=16,color="green",shape="box"];1111 -> 1235[label="",style="dashed", color="red", weight=0]; 1111[label="primPlusNat (primMulNat vyw30100 (Succ vyw400000)) (Succ vyw400000)",fontsize=16,color="magenta"];1111 -> 1236[label="",style="dashed", color="magenta", weight=3]; 1112[label="Zero",fontsize=16,color="green",shape="box"];1113[label="Zero",fontsize=16,color="green",shape="box"];1114[label="Zero",fontsize=16,color="green",shape="box"];1445[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1445 -> 1495[label="",style="solid", color="black", weight=3]; 1446[label="Nothing <= Just vyw4510",fontsize=16,color="black",shape="box"];1446 -> 1496[label="",style="solid", color="black", weight=3]; 1447[label="Just vyw4310 <= Nothing",fontsize=16,color="black",shape="box"];1447 -> 1497[label="",style="solid", color="black", weight=3]; 1448[label="Just vyw4310 <= Just vyw4510",fontsize=16,color="black",shape="box"];1448 -> 1498[label="",style="solid", color="black", weight=3]; 1449 -> 1499[label="",style="dashed", color="red", weight=0]; 1449[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1449 -> 1500[label="",style="dashed", color="magenta", weight=3]; 1450 -> 1499[label="",style="dashed", color="red", weight=0]; 1450[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1450 -> 1501[label="",style="dashed", color="magenta", weight=3]; 1451 -> 1499[label="",style="dashed", color="red", weight=0]; 1451[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1451 -> 1502[label="",style="dashed", color="magenta", weight=3]; 1452[label="Left vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1452 -> 1508[label="",style="solid", color="black", weight=3]; 1453[label="Left vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1453 -> 1509[label="",style="solid", color="black", weight=3]; 1454[label="Right vyw4310 <= Left vyw4510",fontsize=16,color="black",shape="box"];1454 -> 1510[label="",style="solid", color="black", weight=3]; 1455[label="Right vyw4310 <= Right vyw4510",fontsize=16,color="black",shape="box"];1455 -> 1511[label="",style="solid", color="black", weight=3]; 1456 -> 1499[label="",style="dashed", color="red", weight=0]; 1456[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1456 -> 1503[label="",style="dashed", color="magenta", weight=3]; 1457 -> 1499[label="",style="dashed", color="red", weight=0]; 1457[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1457 -> 1504[label="",style="dashed", color="magenta", weight=3]; 1458[label="False <= False",fontsize=16,color="black",shape="box"];1458 -> 1512[label="",style="solid", color="black", weight=3]; 1459[label="False <= True",fontsize=16,color="black",shape="box"];1459 -> 1513[label="",style="solid", color="black", weight=3]; 1460[label="True <= False",fontsize=16,color="black",shape="box"];1460 -> 1514[label="",style="solid", color="black", weight=3]; 1461[label="True <= True",fontsize=16,color="black",shape="box"];1461 -> 1515[label="",style="solid", color="black", weight=3]; 1462 -> 1499[label="",style="dashed", color="red", weight=0]; 1462[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1462 -> 1505[label="",style="dashed", color="magenta", weight=3]; 1463 -> 1499[label="",style="dashed", color="red", weight=0]; 1463[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1463 -> 1506[label="",style="dashed", color="magenta", weight=3]; 1464[label="(vyw4310,vyw4311,vyw4312) <= (vyw4510,vyw4511,vyw4512)",fontsize=16,color="black",shape="box"];1464 -> 1516[label="",style="solid", color="black", weight=3]; 1465[label="(vyw4310,vyw4311) <= (vyw4510,vyw4511)",fontsize=16,color="black",shape="box"];1465 -> 1517[label="",style="solid", color="black", weight=3]; 1466 -> 1499[label="",style="dashed", color="red", weight=0]; 1466[label="not (compare vyw431 vyw451 == GT)",fontsize=16,color="magenta"];1466 -> 1507[label="",style="dashed", color="magenta", weight=3]; 1467[label="LT <= LT",fontsize=16,color="black",shape="box"];1467 -> 1518[label="",style="solid", color="black", weight=3]; 1468[label="LT <= EQ",fontsize=16,color="black",shape="box"];1468 -> 1519[label="",style="solid", color="black", weight=3]; 1469[label="LT <= GT",fontsize=16,color="black",shape="box"];1469 -> 1520[label="",style="solid", color="black", weight=3]; 1470[label="EQ <= LT",fontsize=16,color="black",shape="box"];1470 -> 1521[label="",style="solid", color="black", weight=3]; 1471[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1471 -> 1522[label="",style="solid", color="black", weight=3]; 1472[label="EQ <= GT",fontsize=16,color="black",shape="box"];1472 -> 1523[label="",style="solid", color="black", weight=3]; 1473[label="GT <= LT",fontsize=16,color="black",shape="box"];1473 -> 1524[label="",style="solid", color="black", weight=3]; 1474[label="GT <= EQ",fontsize=16,color="black",shape="box"];1474 -> 1525[label="",style="solid", color="black", weight=3]; 1475[label="GT <= GT",fontsize=16,color="black",shape="box"];1475 -> 1526[label="",style="solid", color="black", weight=3]; 1476[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1476 -> 1527[label="",style="solid", color="black", weight=3]; 1477[label="compare (Integer vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2732[label="vyw450/Integer vyw4500",fontsize=10,color="white",style="solid",shape="box"];1477 -> 2732[label="",style="solid", color="burlywood", weight=9]; 2732 -> 1528[label="",style="solid", color="burlywood", weight=3]; 1478[label="primCmpChar vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2733[label="vyw430/Char vyw4300",fontsize=10,color="white",style="solid",shape="box"];1478 -> 2733[label="",style="solid", color="burlywood", weight=9]; 2733 -> 1529[label="",style="solid", color="burlywood", weight=3]; 1479[label="primCmpInt vyw430 vyw450",fontsize=16,color="burlywood",shape="triangle"];2734[label="vyw430/Pos vyw4300",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2734[label="",style="solid", color="burlywood", weight=9]; 2734 -> 1530[label="",style="solid", color="burlywood", weight=3]; 2735[label="vyw430/Neg vyw4300",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2735[label="",style="solid", color="burlywood", weight=9]; 2735 -> 1531[label="",style="solid", color="burlywood", weight=3]; 1480[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1480 -> 1532[label="",style="solid", color="black", weight=3]; 1481[label="primCmpFloat vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2736[label="vyw430/Float vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2736[label="",style="solid", color="burlywood", weight=9]; 2736 -> 1533[label="",style="solid", color="burlywood", weight=3]; 1482[label="compare (vyw4300 :% vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2737[label="vyw450/vyw4500 :% vyw4501",fontsize=10,color="white",style="solid",shape="box"];1482 -> 2737[label="",style="solid", color="burlywood", weight=9]; 2737 -> 1534[label="",style="solid", color="burlywood", weight=3]; 1483[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1483 -> 1535[label="",style="solid", color="black", weight=3]; 1484[label="primCmpDouble vyw430 vyw450",fontsize=16,color="burlywood",shape="box"];2738[label="vyw430/Double vyw4300 vyw4301",fontsize=10,color="white",style="solid",shape="box"];1484 -> 2738[label="",style="solid", color="burlywood", weight=9]; 2738 -> 1536[label="",style="solid", color="burlywood", weight=3]; 1485[label="compare (vyw4300 : vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2739[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1485 -> 2739[label="",style="solid", color="burlywood", weight=9]; 2739 -> 1537[label="",style="solid", color="burlywood", weight=3]; 2740[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1485 -> 2740[label="",style="solid", color="burlywood", weight=9]; 2740 -> 1538[label="",style="solid", color="burlywood", weight=3]; 1486[label="compare [] vyw450",fontsize=16,color="burlywood",shape="box"];2741[label="vyw450/vyw4500 : vyw4501",fontsize=10,color="white",style="solid",shape="box"];1486 -> 2741[label="",style="solid", color="burlywood", weight=9]; 2741 -> 1539[label="",style="solid", color="burlywood", weight=3]; 2742[label="vyw450/[]",fontsize=10,color="white",style="solid",shape="box"];1486 -> 2742[label="",style="solid", color="burlywood", weight=9]; 2742 -> 1540[label="",style="solid", color="burlywood", weight=3]; 1487[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1487 -> 1541[label="",style="solid", color="black", weight=3]; 1488[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1488 -> 1542[label="",style="solid", color="black", weight=3]; 1489[label="compare () vyw450",fontsize=16,color="burlywood",shape="box"];2743[label="vyw450/()",fontsize=10,color="white",style="solid",shape="box"];1489 -> 2743[label="",style="solid", color="burlywood", weight=9]; 2743 -> 1543[label="",style="solid", color="burlywood", weight=3]; 1490[label="compare3 vyw430 vyw450",fontsize=16,color="black",shape="box"];1490 -> 1544[label="",style="solid", color="black", weight=3]; 1491[label="compare0 (vyw99,vyw100) (vyw101,vyw102) otherwise",fontsize=16,color="black",shape="box"];1491 -> 1545[label="",style="solid", color="black", weight=3]; 1492[label="LT",fontsize=16,color="green",shape="box"];1236 -> 920[label="",style="dashed", color="red", weight=0]; 1236[label="primMulNat vyw30100 (Succ vyw400000)",fontsize=16,color="magenta"];1236 -> 1267[label="",style="dashed", color="magenta", weight=3]; 1236 -> 1268[label="",style="dashed", color="magenta", weight=3]; 1235[label="primPlusNat vyw90 (Succ vyw400000)",fontsize=16,color="burlywood",shape="triangle"];2744[label="vyw90/Succ vyw900",fontsize=10,color="white",style="solid",shape="box"];1235 -> 2744[label="",style="solid", color="burlywood", weight=9]; 2744 -> 1269[label="",style="solid", color="burlywood", weight=3]; 2745[label="vyw90/Zero",fontsize=10,color="white",style="solid",shape="box"];1235 -> 2745[label="",style="solid", color="burlywood", weight=9]; 2745 -> 1270[label="",style="solid", color="burlywood", weight=3]; 1495[label="True",fontsize=16,color="green",shape="box"];1496[label="True",fontsize=16,color="green",shape="box"];1497[label="False",fontsize=16,color="green",shape="box"];1498[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2746[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2746[label="",style="solid", color="blue", weight=9]; 2746 -> 1546[label="",style="solid", color="blue", weight=3]; 2747[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2747[label="",style="solid", color="blue", weight=9]; 2747 -> 1547[label="",style="solid", color="blue", weight=3]; 2748[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2748[label="",style="solid", color="blue", weight=9]; 2748 -> 1548[label="",style="solid", color="blue", weight=3]; 2749[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2749[label="",style="solid", color="blue", weight=9]; 2749 -> 1549[label="",style="solid", color="blue", weight=3]; 2750[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2750[label="",style="solid", color="blue", weight=9]; 2750 -> 1550[label="",style="solid", color="blue", weight=3]; 2751[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2751[label="",style="solid", color="blue", weight=9]; 2751 -> 1551[label="",style="solid", color="blue", weight=3]; 2752[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2752[label="",style="solid", color="blue", weight=9]; 2752 -> 1552[label="",style="solid", color="blue", weight=3]; 2753[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2753[label="",style="solid", color="blue", weight=9]; 2753 -> 1553[label="",style="solid", color="blue", weight=3]; 2754[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2754[label="",style="solid", color="blue", weight=9]; 2754 -> 1554[label="",style="solid", color="blue", weight=3]; 2755[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2755[label="",style="solid", color="blue", weight=9]; 2755 -> 1555[label="",style="solid", color="blue", weight=3]; 2756[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2756[label="",style="solid", color="blue", weight=9]; 2756 -> 1556[label="",style="solid", color="blue", weight=3]; 2757[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2757[label="",style="solid", color="blue", weight=9]; 2757 -> 1557[label="",style="solid", color="blue", weight=3]; 2758[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2758[label="",style="solid", color="blue", weight=9]; 2758 -> 1558[label="",style="solid", color="blue", weight=3]; 2759[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1498 -> 2759[label="",style="solid", color="blue", weight=9]; 2759 -> 1559[label="",style="solid", color="blue", weight=3]; 1500 -> 131[label="",style="dashed", color="red", weight=0]; 1500[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1500 -> 1560[label="",style="dashed", color="magenta", weight=3]; 1500 -> 1561[label="",style="dashed", color="magenta", weight=3]; 1499[label="not vyw105",fontsize=16,color="burlywood",shape="triangle"];2760[label="vyw105/False",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2760[label="",style="solid", color="burlywood", weight=9]; 2760 -> 1562[label="",style="solid", color="burlywood", weight=3]; 2761[label="vyw105/True",fontsize=10,color="white",style="solid",shape="box"];1499 -> 2761[label="",style="solid", color="burlywood", weight=9]; 2761 -> 1563[label="",style="solid", color="burlywood", weight=3]; 1501 -> 131[label="",style="dashed", color="red", weight=0]; 1501[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1501 -> 1564[label="",style="dashed", color="magenta", weight=3]; 1501 -> 1565[label="",style="dashed", color="magenta", weight=3]; 1502 -> 131[label="",style="dashed", color="red", weight=0]; 1502[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1502 -> 1566[label="",style="dashed", color="magenta", weight=3]; 1502 -> 1567[label="",style="dashed", color="magenta", weight=3]; 1508[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2762[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2762[label="",style="solid", color="blue", weight=9]; 2762 -> 1578[label="",style="solid", color="blue", weight=3]; 2763[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2763[label="",style="solid", color="blue", weight=9]; 2763 -> 1579[label="",style="solid", color="blue", weight=3]; 2764[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2764[label="",style="solid", color="blue", weight=9]; 2764 -> 1580[label="",style="solid", color="blue", weight=3]; 2765[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2765[label="",style="solid", color="blue", weight=9]; 2765 -> 1581[label="",style="solid", color="blue", weight=3]; 2766[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2766[label="",style="solid", color="blue", weight=9]; 2766 -> 1582[label="",style="solid", color="blue", weight=3]; 2767[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2767[label="",style="solid", color="blue", weight=9]; 2767 -> 1583[label="",style="solid", color="blue", weight=3]; 2768[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2768[label="",style="solid", color="blue", weight=9]; 2768 -> 1584[label="",style="solid", color="blue", weight=3]; 2769[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2769[label="",style="solid", color="blue", weight=9]; 2769 -> 1585[label="",style="solid", color="blue", weight=3]; 2770[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2770[label="",style="solid", color="blue", weight=9]; 2770 -> 1586[label="",style="solid", color="blue", weight=3]; 2771[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2771[label="",style="solid", color="blue", weight=9]; 2771 -> 1587[label="",style="solid", color="blue", weight=3]; 2772[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2772[label="",style="solid", color="blue", weight=9]; 2772 -> 1588[label="",style="solid", color="blue", weight=3]; 2773[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2773[label="",style="solid", color="blue", weight=9]; 2773 -> 1589[label="",style="solid", color="blue", weight=3]; 2774[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2774[label="",style="solid", color="blue", weight=9]; 2774 -> 1590[label="",style="solid", color="blue", weight=3]; 2775[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1508 -> 2775[label="",style="solid", color="blue", weight=9]; 2775 -> 1591[label="",style="solid", color="blue", weight=3]; 1509[label="True",fontsize=16,color="green",shape="box"];1510[label="False",fontsize=16,color="green",shape="box"];1511[label="vyw4310 <= vyw4510",fontsize=16,color="blue",shape="box"];2776[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2776[label="",style="solid", color="blue", weight=9]; 2776 -> 1592[label="",style="solid", color="blue", weight=3]; 2777[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2777[label="",style="solid", color="blue", weight=9]; 2777 -> 1593[label="",style="solid", color="blue", weight=3]; 2778[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2778[label="",style="solid", color="blue", weight=9]; 2778 -> 1594[label="",style="solid", color="blue", weight=3]; 2779[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2779[label="",style="solid", color="blue", weight=9]; 2779 -> 1595[label="",style="solid", color="blue", weight=3]; 2780[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2780[label="",style="solid", color="blue", weight=9]; 2780 -> 1596[label="",style="solid", color="blue", weight=3]; 2781[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2781[label="",style="solid", color="blue", weight=9]; 2781 -> 1597[label="",style="solid", color="blue", weight=3]; 2782[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2782[label="",style="solid", color="blue", weight=9]; 2782 -> 1598[label="",style="solid", color="blue", weight=3]; 2783[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2783[label="",style="solid", color="blue", weight=9]; 2783 -> 1599[label="",style="solid", color="blue", weight=3]; 2784[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2784[label="",style="solid", color="blue", weight=9]; 2784 -> 1600[label="",style="solid", color="blue", weight=3]; 2785[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2785[label="",style="solid", color="blue", weight=9]; 2785 -> 1601[label="",style="solid", color="blue", weight=3]; 2786[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2786[label="",style="solid", color="blue", weight=9]; 2786 -> 1602[label="",style="solid", color="blue", weight=3]; 2787[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2787[label="",style="solid", color="blue", weight=9]; 2787 -> 1603[label="",style="solid", color="blue", weight=3]; 2788[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2788[label="",style="solid", color="blue", weight=9]; 2788 -> 1604[label="",style="solid", color="blue", weight=3]; 2789[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1511 -> 2789[label="",style="solid", color="blue", weight=9]; 2789 -> 1605[label="",style="solid", color="blue", weight=3]; 1503 -> 131[label="",style="dashed", color="red", weight=0]; 1503[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1503 -> 1568[label="",style="dashed", color="magenta", weight=3]; 1503 -> 1569[label="",style="dashed", color="magenta", weight=3]; 1504 -> 131[label="",style="dashed", color="red", weight=0]; 1504[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1504 -> 1570[label="",style="dashed", color="magenta", weight=3]; 1504 -> 1571[label="",style="dashed", color="magenta", weight=3]; 1512[label="True",fontsize=16,color="green",shape="box"];1513[label="True",fontsize=16,color="green",shape="box"];1514[label="False",fontsize=16,color="green",shape="box"];1515[label="True",fontsize=16,color="green",shape="box"];1505 -> 131[label="",style="dashed", color="red", weight=0]; 1505[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1505 -> 1572[label="",style="dashed", color="magenta", weight=3]; 1505 -> 1573[label="",style="dashed", color="magenta", weight=3]; 1506 -> 131[label="",style="dashed", color="red", weight=0]; 1506[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1506 -> 1574[label="",style="dashed", color="magenta", weight=3]; 1506 -> 1575[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1743[label="",style="dashed", color="red", weight=0]; 1516[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1516 -> 1744[label="",style="dashed", color="magenta", weight=3]; 1516 -> 1745[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1743[label="",style="dashed", color="red", weight=0]; 1517[label="vyw4310 < vyw4510 || vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1517 -> 1746[label="",style="dashed", color="magenta", weight=3]; 1517 -> 1747[label="",style="dashed", color="magenta", weight=3]; 1507 -> 131[label="",style="dashed", color="red", weight=0]; 1507[label="compare vyw431 vyw451 == GT",fontsize=16,color="magenta"];1507 -> 1576[label="",style="dashed", color="magenta", weight=3]; 1507 -> 1577[label="",style="dashed", color="magenta", weight=3]; 1518[label="True",fontsize=16,color="green",shape="box"];1519[label="True",fontsize=16,color="green",shape="box"];1520[label="True",fontsize=16,color="green",shape="box"];1521[label="False",fontsize=16,color="green",shape="box"];1522[label="True",fontsize=16,color="green",shape="box"];1523[label="True",fontsize=16,color="green",shape="box"];1524[label="False",fontsize=16,color="green",shape="box"];1525[label="False",fontsize=16,color="green",shape="box"];1526[label="True",fontsize=16,color="green",shape="box"];1527 -> 1611[label="",style="dashed", color="red", weight=0]; 1527[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1527 -> 1612[label="",style="dashed", color="magenta", weight=3]; 1528[label="compare (Integer vyw4300) (Integer vyw4500)",fontsize=16,color="black",shape="box"];1528 -> 1613[label="",style="solid", color="black", weight=3]; 1529[label="primCmpChar (Char vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2790[label="vyw450/Char vyw4500",fontsize=10,color="white",style="solid",shape="box"];1529 -> 2790[label="",style="solid", color="burlywood", weight=9]; 2790 -> 1614[label="",style="solid", color="burlywood", weight=3]; 1530[label="primCmpInt (Pos vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2791[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1530 -> 2791[label="",style="solid", color="burlywood", weight=9]; 2791 -> 1615[label="",style="solid", color="burlywood", weight=3]; 2792[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1530 -> 2792[label="",style="solid", color="burlywood", weight=9]; 2792 -> 1616[label="",style="solid", color="burlywood", weight=3]; 1531[label="primCmpInt (Neg vyw4300) vyw450",fontsize=16,color="burlywood",shape="box"];2793[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1531 -> 2793[label="",style="solid", color="burlywood", weight=9]; 2793 -> 1617[label="",style="solid", color="burlywood", weight=3]; 2794[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1531 -> 2794[label="",style="solid", color="burlywood", weight=9]; 2794 -> 1618[label="",style="solid", color="burlywood", weight=3]; 1532 -> 1619[label="",style="dashed", color="red", weight=0]; 1532[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1532 -> 1620[label="",style="dashed", color="magenta", weight=3]; 1533[label="primCmpFloat (Float vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2795[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1533 -> 2795[label="",style="solid", color="burlywood", weight=9]; 2795 -> 1621[label="",style="solid", color="burlywood", weight=3]; 2796[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1533 -> 2796[label="",style="solid", color="burlywood", weight=9]; 2796 -> 1622[label="",style="solid", color="burlywood", weight=3]; 1534[label="compare (vyw4300 :% vyw4301) (vyw4500 :% vyw4501)",fontsize=16,color="black",shape="box"];1534 -> 1623[label="",style="solid", color="black", weight=3]; 1535 -> 1624[label="",style="dashed", color="red", weight=0]; 1535[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1535 -> 1625[label="",style="dashed", color="magenta", weight=3]; 1536[label="primCmpDouble (Double vyw4300 vyw4301) vyw450",fontsize=16,color="burlywood",shape="box"];2797[label="vyw4301/Pos vyw43010",fontsize=10,color="white",style="solid",shape="box"];1536 -> 2797[label="",style="solid", color="burlywood", weight=9]; 2797 -> 1626[label="",style="solid", color="burlywood", weight=3]; 2798[label="vyw4301/Neg vyw43010",fontsize=10,color="white",style="solid",shape="box"];1536 -> 2798[label="",style="solid", color="burlywood", weight=9]; 2798 -> 1627[label="",style="solid", color="burlywood", weight=3]; 1537[label="compare (vyw4300 : vyw4301) (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1537 -> 1628[label="",style="solid", color="black", weight=3]; 1538[label="compare (vyw4300 : vyw4301) []",fontsize=16,color="black",shape="box"];1538 -> 1629[label="",style="solid", color="black", weight=3]; 1539[label="compare [] (vyw4500 : vyw4501)",fontsize=16,color="black",shape="box"];1539 -> 1630[label="",style="solid", color="black", weight=3]; 1540[label="compare [] []",fontsize=16,color="black",shape="box"];1540 -> 1631[label="",style="solid", color="black", weight=3]; 1541 -> 1632[label="",style="dashed", color="red", weight=0]; 1541[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1541 -> 1633[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1203[label="",style="dashed", color="red", weight=0]; 1542[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1542 -> 1634[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1635[label="",style="dashed", color="magenta", weight=3]; 1542 -> 1636[label="",style="dashed", color="magenta", weight=3]; 1543[label="compare () ()",fontsize=16,color="black",shape="box"];1543 -> 1637[label="",style="solid", color="black", weight=3]; 1544 -> 1638[label="",style="dashed", color="red", weight=0]; 1544[label="compare2 vyw430 vyw450 (vyw430 == vyw450)",fontsize=16,color="magenta"];1544 -> 1639[label="",style="dashed", color="magenta", weight=3]; 1545[label="compare0 (vyw99,vyw100) (vyw101,vyw102) True",fontsize=16,color="black",shape="box"];1545 -> 1640[label="",style="solid", color="black", weight=3]; 1267[label="vyw30100",fontsize=16,color="green",shape="box"];1268[label="Succ vyw400000",fontsize=16,color="green",shape="box"];1269[label="primPlusNat (Succ vyw900) (Succ vyw400000)",fontsize=16,color="black",shape="box"];1269 -> 1272[label="",style="solid", color="black", weight=3]; 1270[label="primPlusNat Zero (Succ vyw400000)",fontsize=16,color="black",shape="box"];1270 -> 1273[label="",style="solid", color="black", weight=3]; 1546 -> 1318[label="",style="dashed", color="red", weight=0]; 1546[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1546 -> 1641[label="",style="dashed", color="magenta", weight=3]; 1546 -> 1642[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1319[label="",style="dashed", color="red", weight=0]; 1547[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1547 -> 1643[label="",style="dashed", color="magenta", weight=3]; 1547 -> 1644[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1320[label="",style="dashed", color="red", weight=0]; 1548[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1548 -> 1645[label="",style="dashed", color="magenta", weight=3]; 1548 -> 1646[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1321[label="",style="dashed", color="red", weight=0]; 1549[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1549 -> 1647[label="",style="dashed", color="magenta", weight=3]; 1549 -> 1648[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1322[label="",style="dashed", color="red", weight=0]; 1550[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1550 -> 1649[label="",style="dashed", color="magenta", weight=3]; 1550 -> 1650[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1323[label="",style="dashed", color="red", weight=0]; 1551[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1551 -> 1651[label="",style="dashed", color="magenta", weight=3]; 1551 -> 1652[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1324[label="",style="dashed", color="red", weight=0]; 1552[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1552 -> 1653[label="",style="dashed", color="magenta", weight=3]; 1552 -> 1654[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1325[label="",style="dashed", color="red", weight=0]; 1553[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1553 -> 1655[label="",style="dashed", color="magenta", weight=3]; 1553 -> 1656[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1326[label="",style="dashed", color="red", weight=0]; 1554[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1554 -> 1657[label="",style="dashed", color="magenta", weight=3]; 1554 -> 1658[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1327[label="",style="dashed", color="red", weight=0]; 1555[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1555 -> 1659[label="",style="dashed", color="magenta", weight=3]; 1555 -> 1660[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1328[label="",style="dashed", color="red", weight=0]; 1556[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1556 -> 1661[label="",style="dashed", color="magenta", weight=3]; 1556 -> 1662[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1329[label="",style="dashed", color="red", weight=0]; 1557[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1557 -> 1663[label="",style="dashed", color="magenta", weight=3]; 1557 -> 1664[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1330[label="",style="dashed", color="red", weight=0]; 1558[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1558 -> 1665[label="",style="dashed", color="magenta", weight=3]; 1558 -> 1666[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1331[label="",style="dashed", color="red", weight=0]; 1559[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1559 -> 1667[label="",style="dashed", color="magenta", weight=3]; 1559 -> 1668[label="",style="dashed", color="magenta", weight=3]; 1560[label="GT",fontsize=16,color="green",shape="box"];1561 -> 1416[label="",style="dashed", color="red", weight=0]; 1561[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1561 -> 1669[label="",style="dashed", color="magenta", weight=3]; 1561 -> 1670[label="",style="dashed", color="magenta", weight=3]; 1562[label="not False",fontsize=16,color="black",shape="box"];1562 -> 1671[label="",style="solid", color="black", weight=3]; 1563[label="not True",fontsize=16,color="black",shape="box"];1563 -> 1672[label="",style="solid", color="black", weight=3]; 1564[label="GT",fontsize=16,color="green",shape="box"];1565 -> 1418[label="",style="dashed", color="red", weight=0]; 1565[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1565 -> 1673[label="",style="dashed", color="magenta", weight=3]; 1565 -> 1674[label="",style="dashed", color="magenta", weight=3]; 1566[label="GT",fontsize=16,color="green",shape="box"];1567 -> 1420[label="",style="dashed", color="red", weight=0]; 1567[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1567 -> 1675[label="",style="dashed", color="magenta", weight=3]; 1567 -> 1676[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1318[label="",style="dashed", color="red", weight=0]; 1578[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1578 -> 1677[label="",style="dashed", color="magenta", weight=3]; 1578 -> 1678[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1319[label="",style="dashed", color="red", weight=0]; 1579[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1579 -> 1679[label="",style="dashed", color="magenta", weight=3]; 1579 -> 1680[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1320[label="",style="dashed", color="red", weight=0]; 1580[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1580 -> 1681[label="",style="dashed", color="magenta", weight=3]; 1580 -> 1682[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1321[label="",style="dashed", color="red", weight=0]; 1581[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1581 -> 1683[label="",style="dashed", color="magenta", weight=3]; 1581 -> 1684[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1322[label="",style="dashed", color="red", weight=0]; 1582[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1582 -> 1685[label="",style="dashed", color="magenta", weight=3]; 1582 -> 1686[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1323[label="",style="dashed", color="red", weight=0]; 1583[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1583 -> 1687[label="",style="dashed", color="magenta", weight=3]; 1583 -> 1688[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1324[label="",style="dashed", color="red", weight=0]; 1584[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1584 -> 1689[label="",style="dashed", color="magenta", weight=3]; 1584 -> 1690[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1325[label="",style="dashed", color="red", weight=0]; 1585[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1585 -> 1691[label="",style="dashed", color="magenta", weight=3]; 1585 -> 1692[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1326[label="",style="dashed", color="red", weight=0]; 1586[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1586 -> 1693[label="",style="dashed", color="magenta", weight=3]; 1586 -> 1694[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1327[label="",style="dashed", color="red", weight=0]; 1587[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1587 -> 1695[label="",style="dashed", color="magenta", weight=3]; 1587 -> 1696[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1328[label="",style="dashed", color="red", weight=0]; 1588[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1588 -> 1697[label="",style="dashed", color="magenta", weight=3]; 1588 -> 1698[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1329[label="",style="dashed", color="red", weight=0]; 1589[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1589 -> 1699[label="",style="dashed", color="magenta", weight=3]; 1589 -> 1700[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1330[label="",style="dashed", color="red", weight=0]; 1590[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1590 -> 1701[label="",style="dashed", color="magenta", weight=3]; 1590 -> 1702[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1331[label="",style="dashed", color="red", weight=0]; 1591[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1591 -> 1703[label="",style="dashed", color="magenta", weight=3]; 1591 -> 1704[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1318[label="",style="dashed", color="red", weight=0]; 1592[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1592 -> 1705[label="",style="dashed", color="magenta", weight=3]; 1592 -> 1706[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1319[label="",style="dashed", color="red", weight=0]; 1593[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1593 -> 1707[label="",style="dashed", color="magenta", weight=3]; 1593 -> 1708[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1320[label="",style="dashed", color="red", weight=0]; 1594[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1594 -> 1709[label="",style="dashed", color="magenta", weight=3]; 1594 -> 1710[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1321[label="",style="dashed", color="red", weight=0]; 1595[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1595 -> 1711[label="",style="dashed", color="magenta", weight=3]; 1595 -> 1712[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1322[label="",style="dashed", color="red", weight=0]; 1596[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1596 -> 1713[label="",style="dashed", color="magenta", weight=3]; 1596 -> 1714[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1323[label="",style="dashed", color="red", weight=0]; 1597[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1597 -> 1715[label="",style="dashed", color="magenta", weight=3]; 1597 -> 1716[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1324[label="",style="dashed", color="red", weight=0]; 1598[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1598 -> 1717[label="",style="dashed", color="magenta", weight=3]; 1598 -> 1718[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1325[label="",style="dashed", color="red", weight=0]; 1599[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1599 -> 1719[label="",style="dashed", color="magenta", weight=3]; 1599 -> 1720[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1326[label="",style="dashed", color="red", weight=0]; 1600[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1600 -> 1721[label="",style="dashed", color="magenta", weight=3]; 1600 -> 1722[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1327[label="",style="dashed", color="red", weight=0]; 1601[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1601 -> 1723[label="",style="dashed", color="magenta", weight=3]; 1601 -> 1724[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1328[label="",style="dashed", color="red", weight=0]; 1602[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1602 -> 1725[label="",style="dashed", color="magenta", weight=3]; 1602 -> 1726[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1329[label="",style="dashed", color="red", weight=0]; 1603[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1603 -> 1727[label="",style="dashed", color="magenta", weight=3]; 1603 -> 1728[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1330[label="",style="dashed", color="red", weight=0]; 1604[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1604 -> 1729[label="",style="dashed", color="magenta", weight=3]; 1604 -> 1730[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1331[label="",style="dashed", color="red", weight=0]; 1605[label="vyw4310 <= vyw4510",fontsize=16,color="magenta"];1605 -> 1731[label="",style="dashed", color="magenta", weight=3]; 1605 -> 1732[label="",style="dashed", color="magenta", weight=3]; 1568[label="GT",fontsize=16,color="green",shape="box"];1569 -> 1424[label="",style="dashed", color="red", weight=0]; 1569[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1569 -> 1733[label="",style="dashed", color="magenta", weight=3]; 1569 -> 1734[label="",style="dashed", color="magenta", weight=3]; 1570[label="GT",fontsize=16,color="green",shape="box"];1571 -> 1426[label="",style="dashed", color="red", weight=0]; 1571[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1571 -> 1735[label="",style="dashed", color="magenta", weight=3]; 1571 -> 1736[label="",style="dashed", color="magenta", weight=3]; 1572[label="GT",fontsize=16,color="green",shape="box"];1573 -> 1430[label="",style="dashed", color="red", weight=0]; 1573[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1573 -> 1737[label="",style="dashed", color="magenta", weight=3]; 1573 -> 1738[label="",style="dashed", color="magenta", weight=3]; 1574[label="GT",fontsize=16,color="green",shape="box"];1575 -> 1432[label="",style="dashed", color="red", weight=0]; 1575[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1575 -> 1739[label="",style="dashed", color="magenta", weight=3]; 1575 -> 1740[label="",style="dashed", color="magenta", weight=3]; 1744 -> 401[label="",style="dashed", color="red", weight=0]; 1744[label="vyw4310 == vyw4510 && (vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512)",fontsize=16,color="magenta"];1744 -> 1752[label="",style="dashed", color="magenta", weight=3]; 1744 -> 1753[label="",style="dashed", color="magenta", weight=3]; 1745[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2799[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2799[label="",style="solid", color="blue", weight=9]; 2799 -> 1754[label="",style="solid", color="blue", weight=3]; 2800[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2800[label="",style="solid", color="blue", weight=9]; 2800 -> 1755[label="",style="solid", color="blue", weight=3]; 2801[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2801[label="",style="solid", color="blue", weight=9]; 2801 -> 1756[label="",style="solid", color="blue", weight=3]; 2802[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2802[label="",style="solid", color="blue", weight=9]; 2802 -> 1757[label="",style="solid", color="blue", weight=3]; 2803[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2803[label="",style="solid", color="blue", weight=9]; 2803 -> 1758[label="",style="solid", color="blue", weight=3]; 2804[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2804[label="",style="solid", color="blue", weight=9]; 2804 -> 1759[label="",style="solid", color="blue", weight=3]; 2805[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2805[label="",style="solid", color="blue", weight=9]; 2805 -> 1760[label="",style="solid", color="blue", weight=3]; 2806[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2806[label="",style="solid", color="blue", weight=9]; 2806 -> 1761[label="",style="solid", color="blue", weight=3]; 2807[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2807[label="",style="solid", color="blue", weight=9]; 2807 -> 1762[label="",style="solid", color="blue", weight=3]; 2808[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2808[label="",style="solid", color="blue", weight=9]; 2808 -> 1763[label="",style="solid", color="blue", weight=3]; 2809[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2809[label="",style="solid", color="blue", weight=9]; 2809 -> 1764[label="",style="solid", color="blue", weight=3]; 2810[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2810[label="",style="solid", color="blue", weight=9]; 2810 -> 1765[label="",style="solid", color="blue", weight=3]; 2811[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2811[label="",style="solid", color="blue", weight=9]; 2811 -> 1766[label="",style="solid", color="blue", weight=3]; 2812[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1745 -> 2812[label="",style="solid", color="blue", weight=9]; 2812 -> 1767[label="",style="solid", color="blue", weight=3]; 1743[label="vyw117 || vyw118",fontsize=16,color="burlywood",shape="triangle"];2813[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2813[label="",style="solid", color="burlywood", weight=9]; 2813 -> 1768[label="",style="solid", color="burlywood", weight=3]; 2814[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];1743 -> 2814[label="",style="solid", color="burlywood", weight=9]; 2814 -> 1769[label="",style="solid", color="burlywood", weight=3]; 1746 -> 401[label="",style="dashed", color="red", weight=0]; 1746[label="vyw4310 == vyw4510 && vyw4311 <= vyw4511",fontsize=16,color="magenta"];1746 -> 1770[label="",style="dashed", color="magenta", weight=3]; 1746 -> 1771[label="",style="dashed", color="magenta", weight=3]; 1747[label="vyw4310 < vyw4510",fontsize=16,color="blue",shape="box"];2815[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2815[label="",style="solid", color="blue", weight=9]; 2815 -> 1772[label="",style="solid", color="blue", weight=3]; 2816[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2816[label="",style="solid", color="blue", weight=9]; 2816 -> 1773[label="",style="solid", color="blue", weight=3]; 2817[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2817[label="",style="solid", color="blue", weight=9]; 2817 -> 1774[label="",style="solid", color="blue", weight=3]; 2818[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2818[label="",style="solid", color="blue", weight=9]; 2818 -> 1775[label="",style="solid", color="blue", weight=3]; 2819[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2819[label="",style="solid", color="blue", weight=9]; 2819 -> 1776[label="",style="solid", color="blue", weight=3]; 2820[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2820[label="",style="solid", color="blue", weight=9]; 2820 -> 1777[label="",style="solid", color="blue", weight=3]; 2821[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2821[label="",style="solid", color="blue", weight=9]; 2821 -> 1778[label="",style="solid", color="blue", weight=3]; 2822[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2822[label="",style="solid", color="blue", weight=9]; 2822 -> 1779[label="",style="solid", color="blue", weight=3]; 2823[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2823[label="",style="solid", color="blue", weight=9]; 2823 -> 1780[label="",style="solid", color="blue", weight=3]; 2824[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2824[label="",style="solid", color="blue", weight=9]; 2824 -> 1781[label="",style="solid", color="blue", weight=3]; 2825[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2825[label="",style="solid", color="blue", weight=9]; 2825 -> 1782[label="",style="solid", color="blue", weight=3]; 2826[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2826[label="",style="solid", color="blue", weight=9]; 2826 -> 1783[label="",style="solid", color="blue", weight=3]; 2827[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2827[label="",style="solid", color="blue", weight=9]; 2827 -> 1784[label="",style="solid", color="blue", weight=3]; 2828[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1747 -> 2828[label="",style="solid", color="blue", weight=9]; 2828 -> 1785[label="",style="solid", color="blue", weight=3]; 1576[label="GT",fontsize=16,color="green",shape="box"];1577 -> 1438[label="",style="dashed", color="red", weight=0]; 1577[label="compare vyw431 vyw451",fontsize=16,color="magenta"];1577 -> 1786[label="",style="dashed", color="magenta", weight=3]; 1577 -> 1787[label="",style="dashed", color="magenta", weight=3]; 1612 -> 126[label="",style="dashed", color="red", weight=0]; 1612[label="vyw430 == vyw450",fontsize=16,color="magenta"];1612 -> 1788[label="",style="dashed", color="magenta", weight=3]; 1612 -> 1789[label="",style="dashed", color="magenta", weight=3]; 1611[label="compare2 vyw430 vyw450 vyw109",fontsize=16,color="burlywood",shape="triangle"];2829[label="vyw109/False",fontsize=10,color="white",style="solid",shape="box"];1611 -> 2829[label="",style="solid", color="burlywood", weight=9]; 2829 -> 1790[label="",style="solid", color="burlywood", weight=3]; 2830[label="vyw109/True",fontsize=10,color="white",style="solid",shape="box"];1611 -> 2830[label="",style="solid", color="burlywood", weight=9]; 2830 -> 1791[label="",style="solid", color="burlywood", weight=3]; 1613 -> 1479[label="",style="dashed", color="red", weight=0]; 1613[label="primCmpInt vyw4300 vyw4500",fontsize=16,color="magenta"];1613 -> 1792[label="",style="dashed", color="magenta", weight=3]; 1613 -> 1793[label="",style="dashed", color="magenta", weight=3]; 1614[label="primCmpChar (Char vyw4300) (Char vyw4500)",fontsize=16,color="black",shape="box"];1614 -> 1794[label="",style="solid", color="black", weight=3]; 1615[label="primCmpInt (Pos (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2831[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1615 -> 2831[label="",style="solid", color="burlywood", weight=9]; 2831 -> 1795[label="",style="solid", color="burlywood", weight=3]; 2832[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1615 -> 2832[label="",style="solid", color="burlywood", weight=9]; 2832 -> 1796[label="",style="solid", color="burlywood", weight=3]; 1616[label="primCmpInt (Pos Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2833[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1616 -> 2833[label="",style="solid", color="burlywood", weight=9]; 2833 -> 1797[label="",style="solid", color="burlywood", weight=3]; 2834[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1616 -> 2834[label="",style="solid", color="burlywood", weight=9]; 2834 -> 1798[label="",style="solid", color="burlywood", weight=3]; 1617[label="primCmpInt (Neg (Succ vyw43000)) vyw450",fontsize=16,color="burlywood",shape="box"];2835[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2835[label="",style="solid", color="burlywood", weight=9]; 2835 -> 1799[label="",style="solid", color="burlywood", weight=3]; 2836[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1617 -> 2836[label="",style="solid", color="burlywood", weight=9]; 2836 -> 1800[label="",style="solid", color="burlywood", weight=3]; 1618[label="primCmpInt (Neg Zero) vyw450",fontsize=16,color="burlywood",shape="box"];2837[label="vyw450/Pos vyw4500",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2837[label="",style="solid", color="burlywood", weight=9]; 2837 -> 1801[label="",style="solid", color="burlywood", weight=3]; 2838[label="vyw450/Neg vyw4500",fontsize=10,color="white",style="solid",shape="box"];1618 -> 2838[label="",style="solid", color="burlywood", weight=9]; 2838 -> 1802[label="",style="solid", color="burlywood", weight=3]; 1620 -> 136[label="",style="dashed", color="red", weight=0]; 1620[label="vyw430 == vyw450",fontsize=16,color="magenta"];1620 -> 1803[label="",style="dashed", color="magenta", weight=3]; 1620 -> 1804[label="",style="dashed", color="magenta", weight=3]; 1619[label="compare2 vyw430 vyw450 vyw110",fontsize=16,color="burlywood",shape="triangle"];2839[label="vyw110/False",fontsize=10,color="white",style="solid",shape="box"];1619 -> 2839[label="",style="solid", color="burlywood", weight=9]; 2839 -> 1805[label="",style="solid", color="burlywood", weight=3]; 2840[label="vyw110/True",fontsize=10,color="white",style="solid",shape="box"];1619 -> 2840[label="",style="solid", color="burlywood", weight=9]; 2840 -> 1806[label="",style="solid", color="burlywood", weight=3]; 1621[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2841[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1621 -> 2841[label="",style="solid", color="burlywood", weight=9]; 2841 -> 1807[label="",style="solid", color="burlywood", weight=3]; 1622[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2842[label="vyw450/Float vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2842[label="",style="solid", color="burlywood", weight=9]; 2842 -> 1808[label="",style="solid", color="burlywood", weight=3]; 1623[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="blue",shape="box"];2843[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2843[label="",style="solid", color="blue", weight=9]; 2843 -> 1809[label="",style="solid", color="blue", weight=3]; 2844[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2844[label="",style="solid", color="blue", weight=9]; 2844 -> 1810[label="",style="solid", color="blue", weight=3]; 1625 -> 124[label="",style="dashed", color="red", weight=0]; 1625[label="vyw430 == vyw450",fontsize=16,color="magenta"];1625 -> 1811[label="",style="dashed", color="magenta", weight=3]; 1625 -> 1812[label="",style="dashed", color="magenta", weight=3]; 1624[label="compare2 vyw430 vyw450 vyw111",fontsize=16,color="burlywood",shape="triangle"];2845[label="vyw111/False",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2845[label="",style="solid", color="burlywood", weight=9]; 2845 -> 1813[label="",style="solid", color="burlywood", weight=3]; 2846[label="vyw111/True",fontsize=10,color="white",style="solid",shape="box"];1624 -> 2846[label="",style="solid", color="burlywood", weight=9]; 2846 -> 1814[label="",style="solid", color="burlywood", weight=3]; 1626[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2847[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1626 -> 2847[label="",style="solid", color="burlywood", weight=9]; 2847 -> 1815[label="",style="solid", color="burlywood", weight=3]; 1627[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) vyw450",fontsize=16,color="burlywood",shape="box"];2848[label="vyw450/Double vyw4500 vyw4501",fontsize=10,color="white",style="solid",shape="box"];1627 -> 2848[label="",style="solid", color="burlywood", weight=9]; 2848 -> 1816[label="",style="solid", color="burlywood", weight=3]; 1628 -> 1817[label="",style="dashed", color="red", weight=0]; 1628[label="primCompAux vyw4300 vyw4500 (compare vyw4301 vyw4501)",fontsize=16,color="magenta"];1628 -> 1818[label="",style="dashed", color="magenta", weight=3]; 1629[label="GT",fontsize=16,color="green",shape="box"];1630[label="LT",fontsize=16,color="green",shape="box"];1631[label="EQ",fontsize=16,color="green",shape="box"];1633 -> 127[label="",style="dashed", color="red", weight=0]; 1633[label="vyw430 == vyw450",fontsize=16,color="magenta"];1633 -> 1819[label="",style="dashed", color="magenta", weight=3]; 1633 -> 1820[label="",style="dashed", color="magenta", weight=3]; 1632[label="compare2 vyw430 vyw450 vyw112",fontsize=16,color="burlywood",shape="triangle"];2849[label="vyw112/False",fontsize=10,color="white",style="solid",shape="box"];1632 -> 2849[label="",style="solid", color="burlywood", weight=9]; 2849 -> 1821[label="",style="solid", color="burlywood", weight=3]; 2850[label="vyw112/True",fontsize=10,color="white",style="solid",shape="box"];1632 -> 2850[label="",style="solid", color="burlywood", weight=9]; 2850 -> 1822[label="",style="solid", color="burlywood", weight=3]; 1634[label="vyw450",fontsize=16,color="green",shape="box"];1635[label="vyw430",fontsize=16,color="green",shape="box"];1636 -> 129[label="",style="dashed", color="red", weight=0]; 1636[label="vyw430 == vyw450",fontsize=16,color="magenta"];1636 -> 1823[label="",style="dashed", color="magenta", weight=3]; 1636 -> 1824[label="",style="dashed", color="magenta", weight=3]; 1637[label="EQ",fontsize=16,color="green",shape="box"];1639 -> 131[label="",style="dashed", color="red", weight=0]; 1639[label="vyw430 == vyw450",fontsize=16,color="magenta"];1639 -> 1825[label="",style="dashed", color="magenta", weight=3]; 1639 -> 1826[label="",style="dashed", color="magenta", weight=3]; 1638[label="compare2 vyw430 vyw450 vyw113",fontsize=16,color="burlywood",shape="triangle"];2851[label="vyw113/False",fontsize=10,color="white",style="solid",shape="box"];1638 -> 2851[label="",style="solid", color="burlywood", weight=9]; 2851 -> 1827[label="",style="solid", color="burlywood", weight=3]; 2852[label="vyw113/True",fontsize=10,color="white",style="solid",shape="box"];1638 -> 2852[label="",style="solid", color="burlywood", weight=9]; 2852 -> 1828[label="",style="solid", color="burlywood", weight=3]; 1640[label="GT",fontsize=16,color="green",shape="box"];1272[label="Succ (Succ (primPlusNat vyw900 vyw400000))",fontsize=16,color="green",shape="box"];1272 -> 1275[label="",style="dashed", color="green", weight=3]; 1273[label="Succ vyw400000",fontsize=16,color="green",shape="box"];1641[label="vyw4310",fontsize=16,color="green",shape="box"];1642[label="vyw4510",fontsize=16,color="green",shape="box"];1643[label="vyw4310",fontsize=16,color="green",shape="box"];1644[label="vyw4510",fontsize=16,color="green",shape="box"];1645[label="vyw4310",fontsize=16,color="green",shape="box"];1646[label="vyw4510",fontsize=16,color="green",shape="box"];1647[label="vyw4310",fontsize=16,color="green",shape="box"];1648[label="vyw4510",fontsize=16,color="green",shape="box"];1649[label="vyw4310",fontsize=16,color="green",shape="box"];1650[label="vyw4510",fontsize=16,color="green",shape="box"];1651[label="vyw4310",fontsize=16,color="green",shape="box"];1652[label="vyw4510",fontsize=16,color="green",shape="box"];1653[label="vyw4310",fontsize=16,color="green",shape="box"];1654[label="vyw4510",fontsize=16,color="green",shape="box"];1655[label="vyw4310",fontsize=16,color="green",shape="box"];1656[label="vyw4510",fontsize=16,color="green",shape="box"];1657[label="vyw4310",fontsize=16,color="green",shape="box"];1658[label="vyw4510",fontsize=16,color="green",shape="box"];1659[label="vyw4310",fontsize=16,color="green",shape="box"];1660[label="vyw4510",fontsize=16,color="green",shape="box"];1661[label="vyw4310",fontsize=16,color="green",shape="box"];1662[label="vyw4510",fontsize=16,color="green",shape="box"];1663[label="vyw4310",fontsize=16,color="green",shape="box"];1664[label="vyw4510",fontsize=16,color="green",shape="box"];1665[label="vyw4310",fontsize=16,color="green",shape="box"];1666[label="vyw4510",fontsize=16,color="green",shape="box"];1667[label="vyw4310",fontsize=16,color="green",shape="box"];1668[label="vyw4510",fontsize=16,color="green",shape="box"];1669[label="vyw451",fontsize=16,color="green",shape="box"];1670[label="vyw431",fontsize=16,color="green",shape="box"];1671[label="True",fontsize=16,color="green",shape="box"];1672[label="False",fontsize=16,color="green",shape="box"];1673[label="vyw451",fontsize=16,color="green",shape="box"];1674[label="vyw431",fontsize=16,color="green",shape="box"];1675[label="vyw451",fontsize=16,color="green",shape="box"];1676[label="vyw431",fontsize=16,color="green",shape="box"];1677[label="vyw4310",fontsize=16,color="green",shape="box"];1678[label="vyw4510",fontsize=16,color="green",shape="box"];1679[label="vyw4310",fontsize=16,color="green",shape="box"];1680[label="vyw4510",fontsize=16,color="green",shape="box"];1681[label="vyw4310",fontsize=16,color="green",shape="box"];1682[label="vyw4510",fontsize=16,color="green",shape="box"];1683[label="vyw4310",fontsize=16,color="green",shape="box"];1684[label="vyw4510",fontsize=16,color="green",shape="box"];1685[label="vyw4310",fontsize=16,color="green",shape="box"];1686[label="vyw4510",fontsize=16,color="green",shape="box"];1687[label="vyw4310",fontsize=16,color="green",shape="box"];1688[label="vyw4510",fontsize=16,color="green",shape="box"];1689[label="vyw4310",fontsize=16,color="green",shape="box"];1690[label="vyw4510",fontsize=16,color="green",shape="box"];1691[label="vyw4310",fontsize=16,color="green",shape="box"];1692[label="vyw4510",fontsize=16,color="green",shape="box"];1693[label="vyw4310",fontsize=16,color="green",shape="box"];1694[label="vyw4510",fontsize=16,color="green",shape="box"];1695[label="vyw4310",fontsize=16,color="green",shape="box"];1696[label="vyw4510",fontsize=16,color="green",shape="box"];1697[label="vyw4310",fontsize=16,color="green",shape="box"];1698[label="vyw4510",fontsize=16,color="green",shape="box"];1699[label="vyw4310",fontsize=16,color="green",shape="box"];1700[label="vyw4510",fontsize=16,color="green",shape="box"];1701[label="vyw4310",fontsize=16,color="green",shape="box"];1702[label="vyw4510",fontsize=16,color="green",shape="box"];1703[label="vyw4310",fontsize=16,color="green",shape="box"];1704[label="vyw4510",fontsize=16,color="green",shape="box"];1705[label="vyw4310",fontsize=16,color="green",shape="box"];1706[label="vyw4510",fontsize=16,color="green",shape="box"];1707[label="vyw4310",fontsize=16,color="green",shape="box"];1708[label="vyw4510",fontsize=16,color="green",shape="box"];1709[label="vyw4310",fontsize=16,color="green",shape="box"];1710[label="vyw4510",fontsize=16,color="green",shape="box"];1711[label="vyw4310",fontsize=16,color="green",shape="box"];1712[label="vyw4510",fontsize=16,color="green",shape="box"];1713[label="vyw4310",fontsize=16,color="green",shape="box"];1714[label="vyw4510",fontsize=16,color="green",shape="box"];1715[label="vyw4310",fontsize=16,color="green",shape="box"];1716[label="vyw4510",fontsize=16,color="green",shape="box"];1717[label="vyw4310",fontsize=16,color="green",shape="box"];1718[label="vyw4510",fontsize=16,color="green",shape="box"];1719[label="vyw4310",fontsize=16,color="green",shape="box"];1720[label="vyw4510",fontsize=16,color="green",shape="box"];1721[label="vyw4310",fontsize=16,color="green",shape="box"];1722[label="vyw4510",fontsize=16,color="green",shape="box"];1723[label="vyw4310",fontsize=16,color="green",shape="box"];1724[label="vyw4510",fontsize=16,color="green",shape="box"];1725[label="vyw4310",fontsize=16,color="green",shape="box"];1726[label="vyw4510",fontsize=16,color="green",shape="box"];1727[label="vyw4310",fontsize=16,color="green",shape="box"];1728[label="vyw4510",fontsize=16,color="green",shape="box"];1729[label="vyw4310",fontsize=16,color="green",shape="box"];1730[label="vyw4510",fontsize=16,color="green",shape="box"];1731[label="vyw4310",fontsize=16,color="green",shape="box"];1732[label="vyw4510",fontsize=16,color="green",shape="box"];1733[label="vyw451",fontsize=16,color="green",shape="box"];1734[label="vyw431",fontsize=16,color="green",shape="box"];1735[label="vyw451",fontsize=16,color="green",shape="box"];1736[label="vyw431",fontsize=16,color="green",shape="box"];1737[label="vyw451",fontsize=16,color="green",shape="box"];1738[label="vyw431",fontsize=16,color="green",shape="box"];1739[label="vyw451",fontsize=16,color="green",shape="box"];1740[label="vyw431",fontsize=16,color="green",shape="box"];1752 -> 1743[label="",style="dashed", color="red", weight=0]; 1752[label="vyw4311 < vyw4511 || vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1752 -> 1829[label="",style="dashed", color="magenta", weight=3]; 1752 -> 1830[label="",style="dashed", color="magenta", weight=3]; 1753[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2853[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2853[label="",style="solid", color="blue", weight=9]; 2853 -> 1831[label="",style="solid", color="blue", weight=3]; 2854[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2854[label="",style="solid", color="blue", weight=9]; 2854 -> 1832[label="",style="solid", color="blue", weight=3]; 2855[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2855[label="",style="solid", color="blue", weight=9]; 2855 -> 1833[label="",style="solid", color="blue", weight=3]; 2856[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2856[label="",style="solid", color="blue", weight=9]; 2856 -> 1834[label="",style="solid", color="blue", weight=3]; 2857[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2857[label="",style="solid", color="blue", weight=9]; 2857 -> 1835[label="",style="solid", color="blue", weight=3]; 2858[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2858[label="",style="solid", color="blue", weight=9]; 2858 -> 1836[label="",style="solid", color="blue", weight=3]; 2859[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2859[label="",style="solid", color="blue", weight=9]; 2859 -> 1837[label="",style="solid", color="blue", weight=3]; 2860[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2860[label="",style="solid", color="blue", weight=9]; 2860 -> 1838[label="",style="solid", color="blue", weight=3]; 2861[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2861[label="",style="solid", color="blue", weight=9]; 2861 -> 1839[label="",style="solid", color="blue", weight=3]; 2862[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2862[label="",style="solid", color="blue", weight=9]; 2862 -> 1840[label="",style="solid", color="blue", weight=3]; 2863[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2863[label="",style="solid", color="blue", weight=9]; 2863 -> 1841[label="",style="solid", color="blue", weight=3]; 2864[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2864[label="",style="solid", color="blue", weight=9]; 2864 -> 1842[label="",style="solid", color="blue", weight=3]; 2865[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2865[label="",style="solid", color="blue", weight=9]; 2865 -> 1843[label="",style="solid", color="blue", weight=3]; 2866[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1753 -> 2866[label="",style="solid", color="blue", weight=9]; 2866 -> 1844[label="",style="solid", color="blue", weight=3]; 1754 -> 1298[label="",style="dashed", color="red", weight=0]; 1754[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1754 -> 1845[label="",style="dashed", color="magenta", weight=3]; 1754 -> 1846[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1299[label="",style="dashed", color="red", weight=0]; 1755[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1755 -> 1847[label="",style="dashed", color="magenta", weight=3]; 1755 -> 1848[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1300[label="",style="dashed", color="red", weight=0]; 1756[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1756 -> 1849[label="",style="dashed", color="magenta", weight=3]; 1756 -> 1850[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1301[label="",style="dashed", color="red", weight=0]; 1757[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1757 -> 1851[label="",style="dashed", color="magenta", weight=3]; 1757 -> 1852[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1302[label="",style="dashed", color="red", weight=0]; 1758[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1758 -> 1853[label="",style="dashed", color="magenta", weight=3]; 1758 -> 1854[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1303[label="",style="dashed", color="red", weight=0]; 1759[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1759 -> 1855[label="",style="dashed", color="magenta", weight=3]; 1759 -> 1856[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1304[label="",style="dashed", color="red", weight=0]; 1760[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1760 -> 1857[label="",style="dashed", color="magenta", weight=3]; 1760 -> 1858[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1305[label="",style="dashed", color="red", weight=0]; 1761[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1761 -> 1859[label="",style="dashed", color="magenta", weight=3]; 1761 -> 1860[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1306[label="",style="dashed", color="red", weight=0]; 1762[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1762 -> 1861[label="",style="dashed", color="magenta", weight=3]; 1762 -> 1862[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1307[label="",style="dashed", color="red", weight=0]; 1763[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1763 -> 1863[label="",style="dashed", color="magenta", weight=3]; 1763 -> 1864[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1308[label="",style="dashed", color="red", weight=0]; 1764[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1764 -> 1865[label="",style="dashed", color="magenta", weight=3]; 1764 -> 1866[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1309[label="",style="dashed", color="red", weight=0]; 1765[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1765 -> 1867[label="",style="dashed", color="magenta", weight=3]; 1765 -> 1868[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1310[label="",style="dashed", color="red", weight=0]; 1766[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1766 -> 1869[label="",style="dashed", color="magenta", weight=3]; 1766 -> 1870[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1311[label="",style="dashed", color="red", weight=0]; 1767[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1767 -> 1871[label="",style="dashed", color="magenta", weight=3]; 1767 -> 1872[label="",style="dashed", color="magenta", weight=3]; 1768[label="False || vyw118",fontsize=16,color="black",shape="box"];1768 -> 1873[label="",style="solid", color="black", weight=3]; 1769[label="True || vyw118",fontsize=16,color="black",shape="box"];1769 -> 1874[label="",style="solid", color="black", weight=3]; 1770[label="vyw4311 <= vyw4511",fontsize=16,color="blue",shape="box"];2867[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2867[label="",style="solid", color="blue", weight=9]; 2867 -> 1875[label="",style="solid", color="blue", weight=3]; 2868[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2868[label="",style="solid", color="blue", weight=9]; 2868 -> 1876[label="",style="solid", color="blue", weight=3]; 2869[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2869[label="",style="solid", color="blue", weight=9]; 2869 -> 1877[label="",style="solid", color="blue", weight=3]; 2870[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2870[label="",style="solid", color="blue", weight=9]; 2870 -> 1878[label="",style="solid", color="blue", weight=3]; 2871[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2871[label="",style="solid", color="blue", weight=9]; 2871 -> 1879[label="",style="solid", color="blue", weight=3]; 2872[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2872[label="",style="solid", color="blue", weight=9]; 2872 -> 1880[label="",style="solid", color="blue", weight=3]; 2873[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2873[label="",style="solid", color="blue", weight=9]; 2873 -> 1881[label="",style="solid", color="blue", weight=3]; 2874[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2874[label="",style="solid", color="blue", weight=9]; 2874 -> 1882[label="",style="solid", color="blue", weight=3]; 2875[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2875[label="",style="solid", color="blue", weight=9]; 2875 -> 1883[label="",style="solid", color="blue", weight=3]; 2876[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2876[label="",style="solid", color="blue", weight=9]; 2876 -> 1884[label="",style="solid", color="blue", weight=3]; 2877[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2877[label="",style="solid", color="blue", weight=9]; 2877 -> 1885[label="",style="solid", color="blue", weight=3]; 2878[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2878[label="",style="solid", color="blue", weight=9]; 2878 -> 1886[label="",style="solid", color="blue", weight=3]; 2879[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2879[label="",style="solid", color="blue", weight=9]; 2879 -> 1887[label="",style="solid", color="blue", weight=3]; 2880[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1770 -> 2880[label="",style="solid", color="blue", weight=9]; 2880 -> 1888[label="",style="solid", color="blue", weight=3]; 1771[label="vyw4310 == vyw4510",fontsize=16,color="blue",shape="box"];2881[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2881[label="",style="solid", color="blue", weight=9]; 2881 -> 1889[label="",style="solid", color="blue", weight=3]; 2882[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2882[label="",style="solid", color="blue", weight=9]; 2882 -> 1890[label="",style="solid", color="blue", weight=3]; 2883[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2883[label="",style="solid", color="blue", weight=9]; 2883 -> 1891[label="",style="solid", color="blue", weight=3]; 2884[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2884[label="",style="solid", color="blue", weight=9]; 2884 -> 1892[label="",style="solid", color="blue", weight=3]; 2885[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2885[label="",style="solid", color="blue", weight=9]; 2885 -> 1893[label="",style="solid", color="blue", weight=3]; 2886[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2886[label="",style="solid", color="blue", weight=9]; 2886 -> 1894[label="",style="solid", color="blue", weight=3]; 2887[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2887[label="",style="solid", color="blue", weight=9]; 2887 -> 1895[label="",style="solid", color="blue", weight=3]; 2888[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2888[label="",style="solid", color="blue", weight=9]; 2888 -> 1896[label="",style="solid", color="blue", weight=3]; 2889[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2889[label="",style="solid", color="blue", weight=9]; 2889 -> 1897[label="",style="solid", color="blue", weight=3]; 2890[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2890[label="",style="solid", color="blue", weight=9]; 2890 -> 1898[label="",style="solid", color="blue", weight=3]; 2891[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2891[label="",style="solid", color="blue", weight=9]; 2891 -> 1899[label="",style="solid", color="blue", weight=3]; 2892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2892[label="",style="solid", color="blue", weight=9]; 2892 -> 1900[label="",style="solid", color="blue", weight=3]; 2893[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2893[label="",style="solid", color="blue", weight=9]; 2893 -> 1901[label="",style="solid", color="blue", weight=3]; 2894[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2894[label="",style="solid", color="blue", weight=9]; 2894 -> 1902[label="",style="solid", color="blue", weight=3]; 1772 -> 1298[label="",style="dashed", color="red", weight=0]; 1772[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1772 -> 1903[label="",style="dashed", color="magenta", weight=3]; 1772 -> 1904[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1299[label="",style="dashed", color="red", weight=0]; 1773[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1773 -> 1905[label="",style="dashed", color="magenta", weight=3]; 1773 -> 1906[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1300[label="",style="dashed", color="red", weight=0]; 1774[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1774 -> 1907[label="",style="dashed", color="magenta", weight=3]; 1774 -> 1908[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1301[label="",style="dashed", color="red", weight=0]; 1775[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1775 -> 1909[label="",style="dashed", color="magenta", weight=3]; 1775 -> 1910[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1302[label="",style="dashed", color="red", weight=0]; 1776[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1776 -> 1911[label="",style="dashed", color="magenta", weight=3]; 1776 -> 1912[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1303[label="",style="dashed", color="red", weight=0]; 1777[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1777 -> 1913[label="",style="dashed", color="magenta", weight=3]; 1777 -> 1914[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1304[label="",style="dashed", color="red", weight=0]; 1778[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1778 -> 1915[label="",style="dashed", color="magenta", weight=3]; 1778 -> 1916[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1305[label="",style="dashed", color="red", weight=0]; 1779[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1779 -> 1917[label="",style="dashed", color="magenta", weight=3]; 1779 -> 1918[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1306[label="",style="dashed", color="red", weight=0]; 1780[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1780 -> 1919[label="",style="dashed", color="magenta", weight=3]; 1780 -> 1920[label="",style="dashed", color="magenta", weight=3]; 1781 -> 1307[label="",style="dashed", color="red", weight=0]; 1781[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1781 -> 1921[label="",style="dashed", color="magenta", weight=3]; 1781 -> 1922[label="",style="dashed", color="magenta", weight=3]; 1782 -> 1308[label="",style="dashed", color="red", weight=0]; 1782[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1782 -> 1923[label="",style="dashed", color="magenta", weight=3]; 1782 -> 1924[label="",style="dashed", color="magenta", weight=3]; 1783 -> 1309[label="",style="dashed", color="red", weight=0]; 1783[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1783 -> 1925[label="",style="dashed", color="magenta", weight=3]; 1783 -> 1926[label="",style="dashed", color="magenta", weight=3]; 1784 -> 1310[label="",style="dashed", color="red", weight=0]; 1784[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1784 -> 1927[label="",style="dashed", color="magenta", weight=3]; 1784 -> 1928[label="",style="dashed", color="magenta", weight=3]; 1785 -> 1311[label="",style="dashed", color="red", weight=0]; 1785[label="vyw4310 < vyw4510",fontsize=16,color="magenta"];1785 -> 1929[label="",style="dashed", color="magenta", weight=3]; 1785 -> 1930[label="",style="dashed", color="magenta", weight=3]; 1786[label="vyw451",fontsize=16,color="green",shape="box"];1787[label="vyw431",fontsize=16,color="green",shape="box"];1788[label="vyw450",fontsize=16,color="green",shape="box"];1789[label="vyw430",fontsize=16,color="green",shape="box"];1790[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1790 -> 1931[label="",style="solid", color="black", weight=3]; 1791[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1791 -> 1932[label="",style="solid", color="black", weight=3]; 1792[label="vyw4500",fontsize=16,color="green",shape="box"];1793[label="vyw4300",fontsize=16,color="green",shape="box"];1794[label="primCmpNat vyw4300 vyw4500",fontsize=16,color="burlywood",shape="triangle"];2895[label="vyw4300/Succ vyw43000",fontsize=10,color="white",style="solid",shape="box"];1794 -> 2895[label="",style="solid", color="burlywood", weight=9]; 2895 -> 1933[label="",style="solid", color="burlywood", weight=3]; 2896[label="vyw4300/Zero",fontsize=10,color="white",style="solid",shape="box"];1794 -> 2896[label="",style="solid", color="burlywood", weight=9]; 2896 -> 1934[label="",style="solid", color="burlywood", weight=3]; 1795[label="primCmpInt (Pos (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1795 -> 1935[label="",style="solid", color="black", weight=3]; 1796[label="primCmpInt (Pos (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1796 -> 1936[label="",style="solid", color="black", weight=3]; 1797[label="primCmpInt (Pos Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2897[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1797 -> 2897[label="",style="solid", color="burlywood", weight=9]; 2897 -> 1937[label="",style="solid", color="burlywood", weight=3]; 2898[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1797 -> 2898[label="",style="solid", color="burlywood", weight=9]; 2898 -> 1938[label="",style="solid", color="burlywood", weight=3]; 1798[label="primCmpInt (Pos Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2899[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1798 -> 2899[label="",style="solid", color="burlywood", weight=9]; 2899 -> 1939[label="",style="solid", color="burlywood", weight=3]; 2900[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1798 -> 2900[label="",style="solid", color="burlywood", weight=9]; 2900 -> 1940[label="",style="solid", color="burlywood", weight=3]; 1799[label="primCmpInt (Neg (Succ vyw43000)) (Pos vyw4500)",fontsize=16,color="black",shape="box"];1799 -> 1941[label="",style="solid", color="black", weight=3]; 1800[label="primCmpInt (Neg (Succ vyw43000)) (Neg vyw4500)",fontsize=16,color="black",shape="box"];1800 -> 1942[label="",style="solid", color="black", weight=3]; 1801[label="primCmpInt (Neg Zero) (Pos vyw4500)",fontsize=16,color="burlywood",shape="box"];2901[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1801 -> 2901[label="",style="solid", color="burlywood", weight=9]; 2901 -> 1943[label="",style="solid", color="burlywood", weight=3]; 2902[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1801 -> 2902[label="",style="solid", color="burlywood", weight=9]; 2902 -> 1944[label="",style="solid", color="burlywood", weight=3]; 1802[label="primCmpInt (Neg Zero) (Neg vyw4500)",fontsize=16,color="burlywood",shape="box"];2903[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1802 -> 2903[label="",style="solid", color="burlywood", weight=9]; 2903 -> 1945[label="",style="solid", color="burlywood", weight=3]; 2904[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1802 -> 2904[label="",style="solid", color="burlywood", weight=9]; 2904 -> 1946[label="",style="solid", color="burlywood", weight=3]; 1803[label="vyw450",fontsize=16,color="green",shape="box"];1804[label="vyw430",fontsize=16,color="green",shape="box"];1805[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1805 -> 1947[label="",style="solid", color="black", weight=3]; 1806[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1806 -> 1948[label="",style="solid", color="black", weight=3]; 1807[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2905[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1807 -> 2905[label="",style="solid", color="burlywood", weight=9]; 2905 -> 1949[label="",style="solid", color="burlywood", weight=3]; 2906[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1807 -> 2906[label="",style="solid", color="burlywood", weight=9]; 2906 -> 1950[label="",style="solid", color="burlywood", weight=3]; 1808[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2907[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1808 -> 2907[label="",style="solid", color="burlywood", weight=9]; 2907 -> 1951[label="",style="solid", color="burlywood", weight=3]; 2908[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1808 -> 2908[label="",style="solid", color="burlywood", weight=9]; 2908 -> 1952[label="",style="solid", color="burlywood", weight=3]; 1809 -> 1416[label="",style="dashed", color="red", weight=0]; 1809[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1809 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1809 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1810 -> 1420[label="",style="dashed", color="red", weight=0]; 1810[label="compare (vyw4300 * vyw4501) (vyw4500 * vyw4301)",fontsize=16,color="magenta"];1810 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1810 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1811[label="vyw450",fontsize=16,color="green",shape="box"];1812[label="vyw430",fontsize=16,color="green",shape="box"];1813[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1813 -> 1957[label="",style="solid", color="black", weight=3]; 1814[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1814 -> 1958[label="",style="solid", color="black", weight=3]; 1815[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2909[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2909[label="",style="solid", color="burlywood", weight=9]; 2909 -> 1959[label="",style="solid", color="burlywood", weight=3]; 2910[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1815 -> 2910[label="",style="solid", color="burlywood", weight=9]; 2910 -> 1960[label="",style="solid", color="burlywood", weight=3]; 1816[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 vyw4501)",fontsize=16,color="burlywood",shape="box"];2911[label="vyw4501/Pos vyw45010",fontsize=10,color="white",style="solid",shape="box"];1816 -> 2911[label="",style="solid", color="burlywood", weight=9]; 2911 -> 1961[label="",style="solid", color="burlywood", weight=3]; 2912[label="vyw4501/Neg vyw45010",fontsize=10,color="white",style="solid",shape="box"];1816 -> 2912[label="",style="solid", color="burlywood", weight=9]; 2912 -> 1962[label="",style="solid", color="burlywood", weight=3]; 1818 -> 1432[label="",style="dashed", color="red", weight=0]; 1818[label="compare vyw4301 vyw4501",fontsize=16,color="magenta"];1818 -> 1963[label="",style="dashed", color="magenta", weight=3]; 1818 -> 1964[label="",style="dashed", color="magenta", weight=3]; 1817[label="primCompAux vyw4300 vyw4500 vyw119",fontsize=16,color="black",shape="triangle"];1817 -> 1965[label="",style="solid", color="black", weight=3]; 1819[label="vyw450",fontsize=16,color="green",shape="box"];1820[label="vyw430",fontsize=16,color="green",shape="box"];1821[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1821 -> 1966[label="",style="solid", color="black", weight=3]; 1822[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1822 -> 1967[label="",style="solid", color="black", weight=3]; 1823[label="vyw450",fontsize=16,color="green",shape="box"];1824[label="vyw430",fontsize=16,color="green",shape="box"];1825[label="vyw450",fontsize=16,color="green",shape="box"];1826[label="vyw430",fontsize=16,color="green",shape="box"];1827[label="compare2 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];1827 -> 1968[label="",style="solid", color="black", weight=3]; 1828[label="compare2 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];1828 -> 1969[label="",style="solid", color="black", weight=3]; 1275[label="primPlusNat vyw900 vyw400000",fontsize=16,color="burlywood",shape="triangle"];2913[label="vyw900/Succ vyw9000",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2913[label="",style="solid", color="burlywood", weight=9]; 2913 -> 1277[label="",style="solid", color="burlywood", weight=3]; 2914[label="vyw900/Zero",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2914[label="",style="solid", color="burlywood", weight=9]; 2914 -> 1278[label="",style="solid", color="burlywood", weight=3]; 1829 -> 401[label="",style="dashed", color="red", weight=0]; 1829[label="vyw4311 == vyw4511 && vyw4312 <= vyw4512",fontsize=16,color="magenta"];1829 -> 1970[label="",style="dashed", color="magenta", weight=3]; 1829 -> 1971[label="",style="dashed", color="magenta", weight=3]; 1830[label="vyw4311 < vyw4511",fontsize=16,color="blue",shape="box"];2915[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2915[label="",style="solid", color="blue", weight=9]; 2915 -> 1972[label="",style="solid", color="blue", weight=3]; 2916[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2916[label="",style="solid", color="blue", weight=9]; 2916 -> 1973[label="",style="solid", color="blue", weight=3]; 2917[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2917[label="",style="solid", color="blue", weight=9]; 2917 -> 1974[label="",style="solid", color="blue", weight=3]; 2918[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2918[label="",style="solid", color="blue", weight=9]; 2918 -> 1975[label="",style="solid", color="blue", weight=3]; 2919[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2919[label="",style="solid", color="blue", weight=9]; 2919 -> 1976[label="",style="solid", color="blue", weight=3]; 2920[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2920[label="",style="solid", color="blue", weight=9]; 2920 -> 1977[label="",style="solid", color="blue", weight=3]; 2921[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2921[label="",style="solid", color="blue", weight=9]; 2921 -> 1978[label="",style="solid", color="blue", weight=3]; 2922[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2922[label="",style="solid", color="blue", weight=9]; 2922 -> 1979[label="",style="solid", color="blue", weight=3]; 2923[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2923[label="",style="solid", color="blue", weight=9]; 2923 -> 1980[label="",style="solid", color="blue", weight=3]; 2924[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2924[label="",style="solid", color="blue", weight=9]; 2924 -> 1981[label="",style="solid", color="blue", weight=3]; 2925[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2925[label="",style="solid", color="blue", weight=9]; 2925 -> 1982[label="",style="solid", color="blue", weight=3]; 2926[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2926[label="",style="solid", color="blue", weight=9]; 2926 -> 1983[label="",style="solid", color="blue", weight=3]; 2927[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2927[label="",style="solid", color="blue", weight=9]; 2927 -> 1984[label="",style="solid", color="blue", weight=3]; 2928[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1830 -> 2928[label="",style="solid", color="blue", weight=9]; 2928 -> 1985[label="",style="solid", color="blue", weight=3]; 1831 -> 126[label="",style="dashed", color="red", weight=0]; 1831[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1831 -> 1986[label="",style="dashed", color="magenta", weight=3]; 1831 -> 1987[label="",style="dashed", color="magenta", weight=3]; 1832 -> 128[label="",style="dashed", color="red", weight=0]; 1832[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1832 -> 1988[label="",style="dashed", color="magenta", weight=3]; 1832 -> 1989[label="",style="dashed", color="magenta", weight=3]; 1833 -> 125[label="",style="dashed", color="red", weight=0]; 1833[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1833 -> 1990[label="",style="dashed", color="magenta", weight=3]; 1833 -> 1991[label="",style="dashed", color="magenta", weight=3]; 1834 -> 133[label="",style="dashed", color="red", weight=0]; 1834[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1834 -> 1992[label="",style="dashed", color="magenta", weight=3]; 1834 -> 1993[label="",style="dashed", color="magenta", weight=3]; 1835 -> 136[label="",style="dashed", color="red", weight=0]; 1835[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1835 -> 1994[label="",style="dashed", color="magenta", weight=3]; 1835 -> 1995[label="",style="dashed", color="magenta", weight=3]; 1836 -> 135[label="",style="dashed", color="red", weight=0]; 1836[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1836 -> 1996[label="",style="dashed", color="magenta", weight=3]; 1836 -> 1997[label="",style="dashed", color="magenta", weight=3]; 1837 -> 134[label="",style="dashed", color="red", weight=0]; 1837[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1837 -> 1998[label="",style="dashed", color="magenta", weight=3]; 1837 -> 1999[label="",style="dashed", color="magenta", weight=3]; 1838 -> 124[label="",style="dashed", color="red", weight=0]; 1838[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1838 -> 2000[label="",style="dashed", color="magenta", weight=3]; 1838 -> 2001[label="",style="dashed", color="magenta", weight=3]; 1839 -> 123[label="",style="dashed", color="red", weight=0]; 1839[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1839 -> 2002[label="",style="dashed", color="magenta", weight=3]; 1839 -> 2003[label="",style="dashed", color="magenta", weight=3]; 1840 -> 132[label="",style="dashed", color="red", weight=0]; 1840[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1840 -> 2004[label="",style="dashed", color="magenta", weight=3]; 1840 -> 2005[label="",style="dashed", color="magenta", weight=3]; 1841 -> 127[label="",style="dashed", color="red", weight=0]; 1841[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1841 -> 2006[label="",style="dashed", color="magenta", weight=3]; 1841 -> 2007[label="",style="dashed", color="magenta", weight=3]; 1842 -> 129[label="",style="dashed", color="red", weight=0]; 1842[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1842 -> 2008[label="",style="dashed", color="magenta", weight=3]; 1842 -> 2009[label="",style="dashed", color="magenta", weight=3]; 1843 -> 130[label="",style="dashed", color="red", weight=0]; 1843[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1843 -> 2010[label="",style="dashed", color="magenta", weight=3]; 1843 -> 2011[label="",style="dashed", color="magenta", weight=3]; 1844 -> 131[label="",style="dashed", color="red", weight=0]; 1844[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1844 -> 2012[label="",style="dashed", color="magenta", weight=3]; 1844 -> 2013[label="",style="dashed", color="magenta", weight=3]; 1845[label="vyw4510",fontsize=16,color="green",shape="box"];1846[label="vyw4310",fontsize=16,color="green",shape="box"];1847[label="vyw4510",fontsize=16,color="green",shape="box"];1848[label="vyw4310",fontsize=16,color="green",shape="box"];1849[label="vyw4510",fontsize=16,color="green",shape="box"];1850[label="vyw4310",fontsize=16,color="green",shape="box"];1851[label="vyw4510",fontsize=16,color="green",shape="box"];1852[label="vyw4310",fontsize=16,color="green",shape="box"];1853[label="vyw4510",fontsize=16,color="green",shape="box"];1854[label="vyw4310",fontsize=16,color="green",shape="box"];1855[label="vyw4510",fontsize=16,color="green",shape="box"];1856[label="vyw4310",fontsize=16,color="green",shape="box"];1857[label="vyw4510",fontsize=16,color="green",shape="box"];1858[label="vyw4310",fontsize=16,color="green",shape="box"];1859[label="vyw4510",fontsize=16,color="green",shape="box"];1860[label="vyw4310",fontsize=16,color="green",shape="box"];1861[label="vyw4510",fontsize=16,color="green",shape="box"];1862[label="vyw4310",fontsize=16,color="green",shape="box"];1863[label="vyw4510",fontsize=16,color="green",shape="box"];1864[label="vyw4310",fontsize=16,color="green",shape="box"];1865[label="vyw4510",fontsize=16,color="green",shape="box"];1866[label="vyw4310",fontsize=16,color="green",shape="box"];1867[label="vyw4510",fontsize=16,color="green",shape="box"];1868[label="vyw4310",fontsize=16,color="green",shape="box"];1869[label="vyw4510",fontsize=16,color="green",shape="box"];1870[label="vyw4310",fontsize=16,color="green",shape="box"];1871[label="vyw4510",fontsize=16,color="green",shape="box"];1872[label="vyw4310",fontsize=16,color="green",shape="box"];1873[label="vyw118",fontsize=16,color="green",shape="box"];1874[label="True",fontsize=16,color="green",shape="box"];1875 -> 1318[label="",style="dashed", color="red", weight=0]; 1875[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1875 -> 2014[label="",style="dashed", color="magenta", weight=3]; 1875 -> 2015[label="",style="dashed", color="magenta", weight=3]; 1876 -> 1319[label="",style="dashed", color="red", weight=0]; 1876[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1876 -> 2016[label="",style="dashed", color="magenta", weight=3]; 1876 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1877 -> 1320[label="",style="dashed", color="red", weight=0]; 1877[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1877 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1877 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1878 -> 1321[label="",style="dashed", color="red", weight=0]; 1878[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1878 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1878 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1879 -> 1322[label="",style="dashed", color="red", weight=0]; 1879[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1879 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1879 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1880 -> 1323[label="",style="dashed", color="red", weight=0]; 1880[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1880 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1880 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1881 -> 1324[label="",style="dashed", color="red", weight=0]; 1881[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1881 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1881 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1882 -> 1325[label="",style="dashed", color="red", weight=0]; 1882[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1882 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1882 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1883 -> 1326[label="",style="dashed", color="red", weight=0]; 1883[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1883 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1883 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1884 -> 1327[label="",style="dashed", color="red", weight=0]; 1884[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1884 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1884 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1885 -> 1328[label="",style="dashed", color="red", weight=0]; 1885[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1885 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1885 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1886 -> 1329[label="",style="dashed", color="red", weight=0]; 1886[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1886 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1886 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1887 -> 1330[label="",style="dashed", color="red", weight=0]; 1887[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1887 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1887 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1888 -> 1331[label="",style="dashed", color="red", weight=0]; 1888[label="vyw4311 <= vyw4511",fontsize=16,color="magenta"];1888 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1888 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1889 -> 126[label="",style="dashed", color="red", weight=0]; 1889[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1889 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1889 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1890 -> 128[label="",style="dashed", color="red", weight=0]; 1890[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1890 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1890 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1891 -> 125[label="",style="dashed", color="red", weight=0]; 1891[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1891 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1891 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1892 -> 133[label="",style="dashed", color="red", weight=0]; 1892[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1892 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1892 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1893 -> 136[label="",style="dashed", color="red", weight=0]; 1893[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1893 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1893 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1894 -> 135[label="",style="dashed", color="red", weight=0]; 1894[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1894 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1894 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1895 -> 134[label="",style="dashed", color="red", weight=0]; 1895[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1895 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1895 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1896 -> 124[label="",style="dashed", color="red", weight=0]; 1896[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1896 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1896 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1897 -> 123[label="",style="dashed", color="red", weight=0]; 1897[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1897 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1897 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1898 -> 132[label="",style="dashed", color="red", weight=0]; 1898[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1898 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1898 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1899 -> 127[label="",style="dashed", color="red", weight=0]; 1899[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1899 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1899 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1900 -> 129[label="",style="dashed", color="red", weight=0]; 1900[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1900 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1900 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1901 -> 130[label="",style="dashed", color="red", weight=0]; 1901[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1901 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1901 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1902 -> 131[label="",style="dashed", color="red", weight=0]; 1902[label="vyw4310 == vyw4510",fontsize=16,color="magenta"];1902 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1902 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1903[label="vyw4510",fontsize=16,color="green",shape="box"];1904[label="vyw4310",fontsize=16,color="green",shape="box"];1905[label="vyw4510",fontsize=16,color="green",shape="box"];1906[label="vyw4310",fontsize=16,color="green",shape="box"];1907[label="vyw4510",fontsize=16,color="green",shape="box"];1908[label="vyw4310",fontsize=16,color="green",shape="box"];1909[label="vyw4510",fontsize=16,color="green",shape="box"];1910[label="vyw4310",fontsize=16,color="green",shape="box"];1911[label="vyw4510",fontsize=16,color="green",shape="box"];1912[label="vyw4310",fontsize=16,color="green",shape="box"];1913[label="vyw4510",fontsize=16,color="green",shape="box"];1914[label="vyw4310",fontsize=16,color="green",shape="box"];1915[label="vyw4510",fontsize=16,color="green",shape="box"];1916[label="vyw4310",fontsize=16,color="green",shape="box"];1917[label="vyw4510",fontsize=16,color="green",shape="box"];1918[label="vyw4310",fontsize=16,color="green",shape="box"];1919[label="vyw4510",fontsize=16,color="green",shape="box"];1920[label="vyw4310",fontsize=16,color="green",shape="box"];1921[label="vyw4510",fontsize=16,color="green",shape="box"];1922[label="vyw4310",fontsize=16,color="green",shape="box"];1923[label="vyw4510",fontsize=16,color="green",shape="box"];1924[label="vyw4310",fontsize=16,color="green",shape="box"];1925[label="vyw4510",fontsize=16,color="green",shape="box"];1926[label="vyw4310",fontsize=16,color="green",shape="box"];1927[label="vyw4510",fontsize=16,color="green",shape="box"];1928[label="vyw4310",fontsize=16,color="green",shape="box"];1929[label="vyw4510",fontsize=16,color="green",shape="box"];1930[label="vyw4310",fontsize=16,color="green",shape="box"];1931 -> 2070[label="",style="dashed", color="red", weight=0]; 1931[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1931 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1932[label="EQ",fontsize=16,color="green",shape="box"];1933[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="burlywood",shape="box"];2929[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1933 -> 2929[label="",style="solid", color="burlywood", weight=9]; 2929 -> 2072[label="",style="solid", color="burlywood", weight=3]; 2930[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1933 -> 2930[label="",style="solid", color="burlywood", weight=9]; 2930 -> 2073[label="",style="solid", color="burlywood", weight=3]; 1934[label="primCmpNat Zero vyw4500",fontsize=16,color="burlywood",shape="box"];2931[label="vyw4500/Succ vyw45000",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2931[label="",style="solid", color="burlywood", weight=9]; 2931 -> 2074[label="",style="solid", color="burlywood", weight=3]; 2932[label="vyw4500/Zero",fontsize=10,color="white",style="solid",shape="box"];1934 -> 2932[label="",style="solid", color="burlywood", weight=9]; 2932 -> 2075[label="",style="solid", color="burlywood", weight=3]; 1935 -> 1794[label="",style="dashed", color="red", weight=0]; 1935[label="primCmpNat (Succ vyw43000) vyw4500",fontsize=16,color="magenta"];1935 -> 2076[label="",style="dashed", color="magenta", weight=3]; 1935 -> 2077[label="",style="dashed", color="magenta", weight=3]; 1936[label="GT",fontsize=16,color="green",shape="box"];1937[label="primCmpInt (Pos Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1937 -> 2078[label="",style="solid", color="black", weight=3]; 1938[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1938 -> 2079[label="",style="solid", color="black", weight=3]; 1939[label="primCmpInt (Pos Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1939 -> 2080[label="",style="solid", color="black", weight=3]; 1940[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1940 -> 2081[label="",style="solid", color="black", weight=3]; 1941[label="LT",fontsize=16,color="green",shape="box"];1942 -> 1794[label="",style="dashed", color="red", weight=0]; 1942[label="primCmpNat vyw4500 (Succ vyw43000)",fontsize=16,color="magenta"];1942 -> 2082[label="",style="dashed", color="magenta", weight=3]; 1942 -> 2083[label="",style="dashed", color="magenta", weight=3]; 1943[label="primCmpInt (Neg Zero) (Pos (Succ vyw45000))",fontsize=16,color="black",shape="box"];1943 -> 2084[label="",style="solid", color="black", weight=3]; 1944[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1944 -> 2085[label="",style="solid", color="black", weight=3]; 1945[label="primCmpInt (Neg Zero) (Neg (Succ vyw45000))",fontsize=16,color="black",shape="box"];1945 -> 2086[label="",style="solid", color="black", weight=3]; 1946[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1946 -> 2087[label="",style="solid", color="black", weight=3]; 1947 -> 2088[label="",style="dashed", color="red", weight=0]; 1947[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1947 -> 2089[label="",style="dashed", color="magenta", weight=3]; 1948[label="EQ",fontsize=16,color="green",shape="box"];1949[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1949 -> 2090[label="",style="solid", color="black", weight=3]; 1950[label="primCmpFloat (Float vyw4300 (Pos vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1950 -> 2091[label="",style="solid", color="black", weight=3]; 1951[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1951 -> 2092[label="",style="solid", color="black", weight=3]; 1952[label="primCmpFloat (Float vyw4300 (Neg vyw43010)) (Float vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1952 -> 2093[label="",style="solid", color="black", weight=3]; 1953[label="vyw4500 * vyw4301",fontsize=16,color="burlywood",shape="triangle"];2933[label="vyw4500/Integer vyw45000",fontsize=10,color="white",style="solid",shape="box"];1953 -> 2933[label="",style="solid", color="burlywood", weight=9]; 2933 -> 2094[label="",style="solid", color="burlywood", weight=3]; 1954 -> 1953[label="",style="dashed", color="red", weight=0]; 1954[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1954 -> 2095[label="",style="dashed", color="magenta", weight=3]; 1954 -> 2096[label="",style="dashed", color="magenta", weight=3]; 1955 -> 355[label="",style="dashed", color="red", weight=0]; 1955[label="vyw4500 * vyw4301",fontsize=16,color="magenta"];1955 -> 2097[label="",style="dashed", color="magenta", weight=3]; 1955 -> 2098[label="",style="dashed", color="magenta", weight=3]; 1956 -> 355[label="",style="dashed", color="red", weight=0]; 1956[label="vyw4300 * vyw4501",fontsize=16,color="magenta"];1956 -> 2099[label="",style="dashed", color="magenta", weight=3]; 1956 -> 2100[label="",style="dashed", color="magenta", weight=3]; 1957 -> 2101[label="",style="dashed", color="red", weight=0]; 1957[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1957 -> 2102[label="",style="dashed", color="magenta", weight=3]; 1958[label="EQ",fontsize=16,color="green",shape="box"];1959[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1959 -> 2103[label="",style="solid", color="black", weight=3]; 1960[label="primCmpDouble (Double vyw4300 (Pos vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1960 -> 2104[label="",style="solid", color="black", weight=3]; 1961[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Pos vyw45010))",fontsize=16,color="black",shape="box"];1961 -> 2105[label="",style="solid", color="black", weight=3]; 1962[label="primCmpDouble (Double vyw4300 (Neg vyw43010)) (Double vyw4500 (Neg vyw45010))",fontsize=16,color="black",shape="box"];1962 -> 2106[label="",style="solid", color="black", weight=3]; 1963[label="vyw4501",fontsize=16,color="green",shape="box"];1964[label="vyw4301",fontsize=16,color="green",shape="box"];1965 -> 2107[label="",style="dashed", color="red", weight=0]; 1965[label="primCompAux0 vyw119 (compare vyw4300 vyw4500)",fontsize=16,color="magenta"];1965 -> 2108[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2109[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2110[label="",style="dashed", color="red", weight=0]; 1966[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1966 -> 2111[label="",style="dashed", color="magenta", weight=3]; 1967[label="EQ",fontsize=16,color="green",shape="box"];1968 -> 2112[label="",style="dashed", color="red", weight=0]; 1968[label="compare1 vyw430 vyw450 (vyw430 <= vyw450)",fontsize=16,color="magenta"];1968 -> 2113[label="",style="dashed", color="magenta", weight=3]; 1969[label="EQ",fontsize=16,color="green",shape="box"];1277[label="primPlusNat (Succ vyw9000) vyw400000",fontsize=16,color="burlywood",shape="box"];2934[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];1277 -> 2934[label="",style="solid", color="burlywood", weight=9]; 2934 -> 1314[label="",style="solid", color="burlywood", weight=3]; 2935[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1277 -> 2935[label="",style="solid", color="burlywood", weight=9]; 2935 -> 1315[label="",style="solid", color="burlywood", weight=3]; 1278[label="primPlusNat Zero vyw400000",fontsize=16,color="burlywood",shape="box"];2936[label="vyw400000/Succ vyw4000000",fontsize=10,color="white",style="solid",shape="box"];1278 -> 2936[label="",style="solid", color="burlywood", weight=9]; 2936 -> 1316[label="",style="solid", color="burlywood", weight=3]; 2937[label="vyw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1278 -> 2937[label="",style="solid", color="burlywood", weight=9]; 2937 -> 1317[label="",style="solid", color="burlywood", weight=3]; 1970[label="vyw4312 <= vyw4512",fontsize=16,color="blue",shape="box"];2938[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2938[label="",style="solid", color="blue", weight=9]; 2938 -> 2114[label="",style="solid", color="blue", weight=3]; 2939[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2939[label="",style="solid", color="blue", weight=9]; 2939 -> 2115[label="",style="solid", color="blue", weight=3]; 2940[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2940[label="",style="solid", color="blue", weight=9]; 2940 -> 2116[label="",style="solid", color="blue", weight=3]; 2941[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2941[label="",style="solid", color="blue", weight=9]; 2941 -> 2117[label="",style="solid", color="blue", weight=3]; 2942[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2942[label="",style="solid", color="blue", weight=9]; 2942 -> 2118[label="",style="solid", color="blue", weight=3]; 2943[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2943[label="",style="solid", color="blue", weight=9]; 2943 -> 2119[label="",style="solid", color="blue", weight=3]; 2944[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2944[label="",style="solid", color="blue", weight=9]; 2944 -> 2120[label="",style="solid", color="blue", weight=3]; 2945[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2945[label="",style="solid", color="blue", weight=9]; 2945 -> 2121[label="",style="solid", color="blue", weight=3]; 2946[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2946[label="",style="solid", color="blue", weight=9]; 2946 -> 2122[label="",style="solid", color="blue", weight=3]; 2947[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2947[label="",style="solid", color="blue", weight=9]; 2947 -> 2123[label="",style="solid", color="blue", weight=3]; 2948[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2948[label="",style="solid", color="blue", weight=9]; 2948 -> 2124[label="",style="solid", color="blue", weight=3]; 2949[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2949[label="",style="solid", color="blue", weight=9]; 2949 -> 2125[label="",style="solid", color="blue", weight=3]; 2950[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2950[label="",style="solid", color="blue", weight=9]; 2950 -> 2126[label="",style="solid", color="blue", weight=3]; 2951[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1970 -> 2951[label="",style="solid", color="blue", weight=9]; 2951 -> 2127[label="",style="solid", color="blue", weight=3]; 1971[label="vyw4311 == vyw4511",fontsize=16,color="blue",shape="box"];2952[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2952[label="",style="solid", color="blue", weight=9]; 2952 -> 2128[label="",style="solid", color="blue", weight=3]; 2953[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2953[label="",style="solid", color="blue", weight=9]; 2953 -> 2129[label="",style="solid", color="blue", weight=3]; 2954[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2954[label="",style="solid", color="blue", weight=9]; 2954 -> 2130[label="",style="solid", color="blue", weight=3]; 2955[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2955[label="",style="solid", color="blue", weight=9]; 2955 -> 2131[label="",style="solid", color="blue", weight=3]; 2956[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2956[label="",style="solid", color="blue", weight=9]; 2956 -> 2132[label="",style="solid", color="blue", weight=3]; 2957[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2957[label="",style="solid", color="blue", weight=9]; 2957 -> 2133[label="",style="solid", color="blue", weight=3]; 2958[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2958[label="",style="solid", color="blue", weight=9]; 2958 -> 2134[label="",style="solid", color="blue", weight=3]; 2959[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2959[label="",style="solid", color="blue", weight=9]; 2959 -> 2135[label="",style="solid", color="blue", weight=3]; 2960[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2960[label="",style="solid", color="blue", weight=9]; 2960 -> 2136[label="",style="solid", color="blue", weight=3]; 2961[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2961[label="",style="solid", color="blue", weight=9]; 2961 -> 2137[label="",style="solid", color="blue", weight=3]; 2962[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2962[label="",style="solid", color="blue", weight=9]; 2962 -> 2138[label="",style="solid", color="blue", weight=3]; 2963[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2963[label="",style="solid", color="blue", weight=9]; 2963 -> 2139[label="",style="solid", color="blue", weight=3]; 2964[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2964[label="",style="solid", color="blue", weight=9]; 2964 -> 2140[label="",style="solid", color="blue", weight=3]; 2965[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1971 -> 2965[label="",style="solid", color="blue", weight=9]; 2965 -> 2141[label="",style="solid", color="blue", weight=3]; 1972 -> 1298[label="",style="dashed", color="red", weight=0]; 1972[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1972 -> 2142[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2143[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1299[label="",style="dashed", color="red", weight=0]; 1973[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1973 -> 2144[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2145[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1300[label="",style="dashed", color="red", weight=0]; 1974[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1974 -> 2146[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2147[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1301[label="",style="dashed", color="red", weight=0]; 1975[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1975 -> 2148[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2149[label="",style="dashed", color="magenta", weight=3]; 1976 -> 1302[label="",style="dashed", color="red", weight=0]; 1976[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1976 -> 2150[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2151[label="",style="dashed", color="magenta", weight=3]; 1977 -> 1303[label="",style="dashed", color="red", weight=0]; 1977[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1977 -> 2152[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2153[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1304[label="",style="dashed", color="red", weight=0]; 1978[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1978 -> 2154[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2155[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1305[label="",style="dashed", color="red", weight=0]; 1979[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1979 -> 2156[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2157[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1306[label="",style="dashed", color="red", weight=0]; 1980[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1980 -> 2158[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2159[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1307[label="",style="dashed", color="red", weight=0]; 1981[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1981 -> 2160[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2161[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1308[label="",style="dashed", color="red", weight=0]; 1982[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1982 -> 2162[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2163[label="",style="dashed", color="magenta", weight=3]; 1983 -> 1309[label="",style="dashed", color="red", weight=0]; 1983[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1983 -> 2164[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2165[label="",style="dashed", color="magenta", weight=3]; 1984 -> 1310[label="",style="dashed", color="red", weight=0]; 1984[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1984 -> 2166[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2167[label="",style="dashed", color="magenta", weight=3]; 1985 -> 1311[label="",style="dashed", color="red", weight=0]; 1985[label="vyw4311 < vyw4511",fontsize=16,color="magenta"];1985 -> 2168[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2169[label="",style="dashed", color="magenta", weight=3]; 1986[label="vyw4510",fontsize=16,color="green",shape="box"];1987[label="vyw4310",fontsize=16,color="green",shape="box"];1988[label="vyw4510",fontsize=16,color="green",shape="box"];1989[label="vyw4310",fontsize=16,color="green",shape="box"];1990[label="vyw4510",fontsize=16,color="green",shape="box"];1991[label="vyw4310",fontsize=16,color="green",shape="box"];1992[label="vyw4510",fontsize=16,color="green",shape="box"];1993[label="vyw4310",fontsize=16,color="green",shape="box"];1994[label="vyw4510",fontsize=16,color="green",shape="box"];1995[label="vyw4310",fontsize=16,color="green",shape="box"];1996[label="vyw4510",fontsize=16,color="green",shape="box"];1997[label="vyw4310",fontsize=16,color="green",shape="box"];1998[label="vyw4510",fontsize=16,color="green",shape="box"];1999[label="vyw4310",fontsize=16,color="green",shape="box"];2000[label="vyw4510",fontsize=16,color="green",shape="box"];2001[label="vyw4310",fontsize=16,color="green",shape="box"];2002[label="vyw4510",fontsize=16,color="green",shape="box"];2003[label="vyw4310",fontsize=16,color="green",shape="box"];2004[label="vyw4510",fontsize=16,color="green",shape="box"];2005[label="vyw4310",fontsize=16,color="green",shape="box"];2006[label="vyw4510",fontsize=16,color="green",shape="box"];2007[label="vyw4310",fontsize=16,color="green",shape="box"];2008[label="vyw4510",fontsize=16,color="green",shape="box"];2009[label="vyw4310",fontsize=16,color="green",shape="box"];2010[label="vyw4510",fontsize=16,color="green",shape="box"];2011[label="vyw4310",fontsize=16,color="green",shape="box"];2012[label="vyw4510",fontsize=16,color="green",shape="box"];2013[label="vyw4310",fontsize=16,color="green",shape="box"];2014[label="vyw4311",fontsize=16,color="green",shape="box"];2015[label="vyw4511",fontsize=16,color="green",shape="box"];2016[label="vyw4311",fontsize=16,color="green",shape="box"];2017[label="vyw4511",fontsize=16,color="green",shape="box"];2018[label="vyw4311",fontsize=16,color="green",shape="box"];2019[label="vyw4511",fontsize=16,color="green",shape="box"];2020[label="vyw4311",fontsize=16,color="green",shape="box"];2021[label="vyw4511",fontsize=16,color="green",shape="box"];2022[label="vyw4311",fontsize=16,color="green",shape="box"];2023[label="vyw4511",fontsize=16,color="green",shape="box"];2024[label="vyw4311",fontsize=16,color="green",shape="box"];2025[label="vyw4511",fontsize=16,color="green",shape="box"];2026[label="vyw4311",fontsize=16,color="green",shape="box"];2027[label="vyw4511",fontsize=16,color="green",shape="box"];2028[label="vyw4311",fontsize=16,color="green",shape="box"];2029[label="vyw4511",fontsize=16,color="green",shape="box"];2030[label="vyw4311",fontsize=16,color="green",shape="box"];2031[label="vyw4511",fontsize=16,color="green",shape="box"];2032[label="vyw4311",fontsize=16,color="green",shape="box"];2033[label="vyw4511",fontsize=16,color="green",shape="box"];2034[label="vyw4311",fontsize=16,color="green",shape="box"];2035[label="vyw4511",fontsize=16,color="green",shape="box"];2036[label="vyw4311",fontsize=16,color="green",shape="box"];2037[label="vyw4511",fontsize=16,color="green",shape="box"];2038[label="vyw4311",fontsize=16,color="green",shape="box"];2039[label="vyw4511",fontsize=16,color="green",shape="box"];2040[label="vyw4311",fontsize=16,color="green",shape="box"];2041[label="vyw4511",fontsize=16,color="green",shape="box"];2042[label="vyw4510",fontsize=16,color="green",shape="box"];2043[label="vyw4310",fontsize=16,color="green",shape="box"];2044[label="vyw4510",fontsize=16,color="green",shape="box"];2045[label="vyw4310",fontsize=16,color="green",shape="box"];2046[label="vyw4510",fontsize=16,color="green",shape="box"];2047[label="vyw4310",fontsize=16,color="green",shape="box"];2048[label="vyw4510",fontsize=16,color="green",shape="box"];2049[label="vyw4310",fontsize=16,color="green",shape="box"];2050[label="vyw4510",fontsize=16,color="green",shape="box"];2051[label="vyw4310",fontsize=16,color="green",shape="box"];2052[label="vyw4510",fontsize=16,color="green",shape="box"];2053[label="vyw4310",fontsize=16,color="green",shape="box"];2054[label="vyw4510",fontsize=16,color="green",shape="box"];2055[label="vyw4310",fontsize=16,color="green",shape="box"];2056[label="vyw4510",fontsize=16,color="green",shape="box"];2057[label="vyw4310",fontsize=16,color="green",shape="box"];2058[label="vyw4510",fontsize=16,color="green",shape="box"];2059[label="vyw4310",fontsize=16,color="green",shape="box"];2060[label="vyw4510",fontsize=16,color="green",shape="box"];2061[label="vyw4310",fontsize=16,color="green",shape="box"];2062[label="vyw4510",fontsize=16,color="green",shape="box"];2063[label="vyw4310",fontsize=16,color="green",shape="box"];2064[label="vyw4510",fontsize=16,color="green",shape="box"];2065[label="vyw4310",fontsize=16,color="green",shape="box"];2066[label="vyw4510",fontsize=16,color="green",shape="box"];2067[label="vyw4310",fontsize=16,color="green",shape="box"];2068[label="vyw4510",fontsize=16,color="green",shape="box"];2069[label="vyw4310",fontsize=16,color="green",shape="box"];2071 -> 1318[label="",style="dashed", color="red", weight=0]; 2071[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2071 -> 2170[label="",style="dashed", color="magenta", weight=3]; 2071 -> 2171[label="",style="dashed", color="magenta", weight=3]; 2070[label="compare1 vyw430 vyw450 vyw120",fontsize=16,color="burlywood",shape="triangle"];2966[label="vyw120/False",fontsize=10,color="white",style="solid",shape="box"];2070 -> 2966[label="",style="solid", color="burlywood", weight=9]; 2966 -> 2172[label="",style="solid", color="burlywood", weight=3]; 2967[label="vyw120/True",fontsize=10,color="white",style="solid",shape="box"];2070 -> 2967[label="",style="solid", color="burlywood", weight=9]; 2967 -> 2173[label="",style="solid", color="burlywood", weight=3]; 2072[label="primCmpNat (Succ vyw43000) (Succ vyw45000)",fontsize=16,color="black",shape="box"];2072 -> 2174[label="",style="solid", color="black", weight=3]; 2073[label="primCmpNat (Succ vyw43000) Zero",fontsize=16,color="black",shape="box"];2073 -> 2175[label="",style="solid", color="black", weight=3]; 2074[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="black",shape="box"];2074 -> 2176[label="",style="solid", color="black", weight=3]; 2075[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2075 -> 2177[label="",style="solid", color="black", weight=3]; 2076[label="Succ vyw43000",fontsize=16,color="green",shape="box"];2077[label="vyw4500",fontsize=16,color="green",shape="box"];2078 -> 1794[label="",style="dashed", color="red", weight=0]; 2078[label="primCmpNat Zero (Succ vyw45000)",fontsize=16,color="magenta"];2078 -> 2178[label="",style="dashed", color="magenta", weight=3]; 2078 -> 2179[label="",style="dashed", color="magenta", weight=3]; 2079[label="EQ",fontsize=16,color="green",shape="box"];2080[label="GT",fontsize=16,color="green",shape="box"];2081[label="EQ",fontsize=16,color="green",shape="box"];2082[label="vyw4500",fontsize=16,color="green",shape="box"];2083[label="Succ vyw43000",fontsize=16,color="green",shape="box"];2084[label="LT",fontsize=16,color="green",shape="box"];2085[label="EQ",fontsize=16,color="green",shape="box"];2086 -> 1794[label="",style="dashed", color="red", weight=0]; 2086[label="primCmpNat (Succ vyw45000) Zero",fontsize=16,color="magenta"];2086 -> 2180[label="",style="dashed", color="magenta", weight=3]; 2086 -> 2181[label="",style="dashed", color="magenta", weight=3]; 2087[label="EQ",fontsize=16,color="green",shape="box"];2089 -> 1322[label="",style="dashed", color="red", weight=0]; 2089[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2089 -> 2182[label="",style="dashed", color="magenta", weight=3]; 2089 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2088[label="compare1 vyw430 vyw450 vyw121",fontsize=16,color="burlywood",shape="triangle"];2968[label="vyw121/False",fontsize=10,color="white",style="solid",shape="box"];2088 -> 2968[label="",style="solid", color="burlywood", weight=9]; 2968 -> 2184[label="",style="solid", color="burlywood", weight=3]; 2969[label="vyw121/True",fontsize=10,color="white",style="solid",shape="box"];2088 -> 2969[label="",style="solid", color="burlywood", weight=9]; 2969 -> 2185[label="",style="solid", color="burlywood", weight=3]; 2090 -> 1420[label="",style="dashed", color="red", weight=0]; 2090[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2090 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2091 -> 1420[label="",style="dashed", color="red", weight=0]; 2091[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2091 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2091 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2092 -> 1420[label="",style="dashed", color="red", weight=0]; 2092[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2092 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2092 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2093 -> 1420[label="",style="dashed", color="red", weight=0]; 2093[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2093 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2093 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2094[label="Integer vyw45000 * vyw4301",fontsize=16,color="burlywood",shape="box"];2970[label="vyw4301/Integer vyw43010",fontsize=10,color="white",style="solid",shape="box"];2094 -> 2970[label="",style="solid", color="burlywood", weight=9]; 2970 -> 2194[label="",style="solid", color="burlywood", weight=3]; 2095[label="vyw4501",fontsize=16,color="green",shape="box"];2096[label="vyw4300",fontsize=16,color="green",shape="box"];2097[label="vyw4500",fontsize=16,color="green",shape="box"];2098[label="vyw4301",fontsize=16,color="green",shape="box"];2099[label="vyw4300",fontsize=16,color="green",shape="box"];2100[label="vyw4501",fontsize=16,color="green",shape="box"];2102 -> 1325[label="",style="dashed", color="red", weight=0]; 2102[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2102 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2102 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2101[label="compare1 vyw430 vyw450 vyw122",fontsize=16,color="burlywood",shape="triangle"];2971[label="vyw122/False",fontsize=10,color="white",style="solid",shape="box"];2101 -> 2971[label="",style="solid", color="burlywood", weight=9]; 2971 -> 2197[label="",style="solid", color="burlywood", weight=3]; 2972[label="vyw122/True",fontsize=10,color="white",style="solid",shape="box"];2101 -> 2972[label="",style="solid", color="burlywood", weight=9]; 2972 -> 2198[label="",style="solid", color="burlywood", weight=3]; 2103 -> 1420[label="",style="dashed", color="red", weight=0]; 2103[label="compare (vyw4300 * Pos vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2103 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2103 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2104 -> 1420[label="",style="dashed", color="red", weight=0]; 2104[label="compare (vyw4300 * Pos vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2104 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2104 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2105 -> 1420[label="",style="dashed", color="red", weight=0]; 2105[label="compare (vyw4300 * Neg vyw45010) (Pos vyw43010 * vyw4500)",fontsize=16,color="magenta"];2105 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2105 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2106 -> 1420[label="",style="dashed", color="red", weight=0]; 2106[label="compare (vyw4300 * Neg vyw45010) (Neg vyw43010 * vyw4500)",fontsize=16,color="magenta"];2106 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2106 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2108[label="vyw119",fontsize=16,color="green",shape="box"];2109[label="compare vyw4300 vyw4500",fontsize=16,color="blue",shape="box"];2973[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2973[label="",style="solid", color="blue", weight=9]; 2973 -> 2207[label="",style="solid", color="blue", weight=3]; 2974[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2974[label="",style="solid", color="blue", weight=9]; 2974 -> 2208[label="",style="solid", color="blue", weight=3]; 2975[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2975[label="",style="solid", color="blue", weight=9]; 2975 -> 2209[label="",style="solid", color="blue", weight=3]; 2976[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2976[label="",style="solid", color="blue", weight=9]; 2976 -> 2210[label="",style="solid", color="blue", weight=3]; 2977[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2977[label="",style="solid", color="blue", weight=9]; 2977 -> 2211[label="",style="solid", color="blue", weight=3]; 2978[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2978[label="",style="solid", color="blue", weight=9]; 2978 -> 2212[label="",style="solid", color="blue", weight=3]; 2979[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2979[label="",style="solid", color="blue", weight=9]; 2979 -> 2213[label="",style="solid", color="blue", weight=3]; 2980[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2980[label="",style="solid", color="blue", weight=9]; 2980 -> 2214[label="",style="solid", color="blue", weight=3]; 2981[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2981[label="",style="solid", color="blue", weight=9]; 2981 -> 2215[label="",style="solid", color="blue", weight=3]; 2982[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2982[label="",style="solid", color="blue", weight=9]; 2982 -> 2216[label="",style="solid", color="blue", weight=3]; 2983[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2983[label="",style="solid", color="blue", weight=9]; 2983 -> 2217[label="",style="solid", color="blue", weight=3]; 2984[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2984[label="",style="solid", color="blue", weight=9]; 2984 -> 2218[label="",style="solid", color="blue", weight=3]; 2985[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2985[label="",style="solid", color="blue", weight=9]; 2985 -> 2219[label="",style="solid", color="blue", weight=3]; 2986[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2109 -> 2986[label="",style="solid", color="blue", weight=9]; 2986 -> 2220[label="",style="solid", color="blue", weight=3]; 2107[label="primCompAux0 vyw126 vyw127",fontsize=16,color="burlywood",shape="triangle"];2987[label="vyw127/LT",fontsize=10,color="white",style="solid",shape="box"];2107 -> 2987[label="",style="solid", color="burlywood", weight=9]; 2987 -> 2221[label="",style="solid", color="burlywood", weight=3]; 2988[label="vyw127/EQ",fontsize=10,color="white",style="solid",shape="box"];2107 -> 2988[label="",style="solid", color="burlywood", weight=9]; 2988 -> 2222[label="",style="solid", color="burlywood", weight=3]; 2989[label="vyw127/GT",fontsize=10,color="white",style="solid",shape="box"];2107 -> 2989[label="",style="solid", color="burlywood", weight=9]; 2989 -> 2223[label="",style="solid", color="burlywood", weight=3]; 2111 -> 1328[label="",style="dashed", color="red", weight=0]; 2111[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2111 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2110[label="compare1 vyw430 vyw450 vyw128",fontsize=16,color="burlywood",shape="triangle"];2990[label="vyw128/False",fontsize=10,color="white",style="solid",shape="box"];2110 -> 2990[label="",style="solid", color="burlywood", weight=9]; 2990 -> 2226[label="",style="solid", color="burlywood", weight=3]; 2991[label="vyw128/True",fontsize=10,color="white",style="solid",shape="box"];2110 -> 2991[label="",style="solid", color="burlywood", weight=9]; 2991 -> 2227[label="",style="solid", color="burlywood", weight=3]; 2113 -> 1331[label="",style="dashed", color="red", weight=0]; 2113[label="vyw430 <= vyw450",fontsize=16,color="magenta"];2113 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2112[label="compare1 vyw430 vyw450 vyw129",fontsize=16,color="burlywood",shape="triangle"];2992[label="vyw129/False",fontsize=10,color="white",style="solid",shape="box"];2112 -> 2992[label="",style="solid", color="burlywood", weight=9]; 2992 -> 2230[label="",style="solid", color="burlywood", weight=3]; 2993[label="vyw129/True",fontsize=10,color="white",style="solid",shape="box"];2112 -> 2993[label="",style="solid", color="burlywood", weight=9]; 2993 -> 2231[label="",style="solid", color="burlywood", weight=3]; 1314[label="primPlusNat (Succ vyw9000) (Succ vyw4000000)",fontsize=16,color="black",shape="box"];1314 -> 1362[label="",style="solid", color="black", weight=3]; 1315[label="primPlusNat (Succ vyw9000) Zero",fontsize=16,color="black",shape="box"];1315 -> 1363[label="",style="solid", color="black", weight=3]; 1316[label="primPlusNat Zero (Succ vyw4000000)",fontsize=16,color="black",shape="box"];1316 -> 1364[label="",style="solid", color="black", weight=3]; 1317[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1317 -> 1365[label="",style="solid", color="black", weight=3]; 2114 -> 1318[label="",style="dashed", color="red", weight=0]; 2114[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2114 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2115 -> 1319[label="",style="dashed", color="red", weight=0]; 2115[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2115 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2116 -> 1320[label="",style="dashed", color="red", weight=0]; 2116[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2116 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2117 -> 1321[label="",style="dashed", color="red", weight=0]; 2117[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2117 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2239[label="",style="dashed", color="magenta", weight=3]; 2118 -> 1322[label="",style="dashed", color="red", weight=0]; 2118[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2118 -> 2240[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2241[label="",style="dashed", color="magenta", weight=3]; 2119 -> 1323[label="",style="dashed", color="red", weight=0]; 2119[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2119 -> 2242[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2120 -> 1324[label="",style="dashed", color="red", weight=0]; 2120[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2120 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2121 -> 1325[label="",style="dashed", color="red", weight=0]; 2121[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2121 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2122 -> 1326[label="",style="dashed", color="red", weight=0]; 2122[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2122 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2123 -> 1327[label="",style="dashed", color="red", weight=0]; 2123[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2123 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2251[label="",style="dashed", color="magenta", weight=3]; 2124 -> 1328[label="",style="dashed", color="red", weight=0]; 2124[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2124 -> 2252[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2253[label="",style="dashed", color="magenta", weight=3]; 2125 -> 1329[label="",style="dashed", color="red", weight=0]; 2125[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2125 -> 2254[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2126 -> 1330[label="",style="dashed", color="red", weight=0]; 2126[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2126 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2257[label="",style="dashed", color="magenta", weight=3]; 2127 -> 1331[label="",style="dashed", color="red", weight=0]; 2127[label="vyw4312 <= vyw4512",fontsize=16,color="magenta"];2127 -> 2258[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2259[label="",style="dashed", color="magenta", weight=3]; 2128 -> 126[label="",style="dashed", color="red", weight=0]; 2128[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2128 -> 2260[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2261[label="",style="dashed", color="magenta", weight=3]; 2129 -> 128[label="",style="dashed", color="red", weight=0]; 2129[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2129 -> 2262[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2263[label="",style="dashed", color="magenta", weight=3]; 2130 -> 125[label="",style="dashed", color="red", weight=0]; 2130[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2130 -> 2264[label="",style="dashed", color="magenta", weight=3]; 2130 -> 2265[label="",style="dashed", color="magenta", weight=3]; 2131 -> 133[label="",style="dashed", color="red", weight=0]; 2131[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2131 -> 2266[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2267[label="",style="dashed", color="magenta", weight=3]; 2132 -> 136[label="",style="dashed", color="red", weight=0]; 2132[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2132 -> 2268[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2269[label="",style="dashed", color="magenta", weight=3]; 2133 -> 135[label="",style="dashed", color="red", weight=0]; 2133[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2133 -> 2270[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2271[label="",style="dashed", color="magenta", weight=3]; 2134 -> 134[label="",style="dashed", color="red", weight=0]; 2134[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2134 -> 2272[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2135 -> 124[label="",style="dashed", color="red", weight=0]; 2135[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2135 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2136 -> 123[label="",style="dashed", color="red", weight=0]; 2136[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2136 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2136 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2137 -> 132[label="",style="dashed", color="red", weight=0]; 2137[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2137 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2137 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2138 -> 127[label="",style="dashed", color="red", weight=0]; 2138[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2138 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2138 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2139 -> 129[label="",style="dashed", color="red", weight=0]; 2139[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2139 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2139 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2140 -> 130[label="",style="dashed", color="red", weight=0]; 2140[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2140 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2140 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2141 -> 131[label="",style="dashed", color="red", weight=0]; 2141[label="vyw4311 == vyw4511",fontsize=16,color="magenta"];2141 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2141 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2142[label="vyw4511",fontsize=16,color="green",shape="box"];2143[label="vyw4311",fontsize=16,color="green",shape="box"];2144[label="vyw4511",fontsize=16,color="green",shape="box"];2145[label="vyw4311",fontsize=16,color="green",shape="box"];2146[label="vyw4511",fontsize=16,color="green",shape="box"];2147[label="vyw4311",fontsize=16,color="green",shape="box"];2148[label="vyw4511",fontsize=16,color="green",shape="box"];2149[label="vyw4311",fontsize=16,color="green",shape="box"];2150[label="vyw4511",fontsize=16,color="green",shape="box"];2151[label="vyw4311",fontsize=16,color="green",shape="box"];2152[label="vyw4511",fontsize=16,color="green",shape="box"];2153[label="vyw4311",fontsize=16,color="green",shape="box"];2154[label="vyw4511",fontsize=16,color="green",shape="box"];2155[label="vyw4311",fontsize=16,color="green",shape="box"];2156[label="vyw4511",fontsize=16,color="green",shape="box"];2157[label="vyw4311",fontsize=16,color="green",shape="box"];2158[label="vyw4511",fontsize=16,color="green",shape="box"];2159[label="vyw4311",fontsize=16,color="green",shape="box"];2160[label="vyw4511",fontsize=16,color="green",shape="box"];2161[label="vyw4311",fontsize=16,color="green",shape="box"];2162[label="vyw4511",fontsize=16,color="green",shape="box"];2163[label="vyw4311",fontsize=16,color="green",shape="box"];2164[label="vyw4511",fontsize=16,color="green",shape="box"];2165[label="vyw4311",fontsize=16,color="green",shape="box"];2166[label="vyw4511",fontsize=16,color="green",shape="box"];2167[label="vyw4311",fontsize=16,color="green",shape="box"];2168[label="vyw4511",fontsize=16,color="green",shape="box"];2169[label="vyw4311",fontsize=16,color="green",shape="box"];2170[label="vyw430",fontsize=16,color="green",shape="box"];2171[label="vyw450",fontsize=16,color="green",shape="box"];2172[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2172 -> 2288[label="",style="solid", color="black", weight=3]; 2173[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2173 -> 2289[label="",style="solid", color="black", weight=3]; 2174 -> 1794[label="",style="dashed", color="red", weight=0]; 2174[label="primCmpNat vyw43000 vyw45000",fontsize=16,color="magenta"];2174 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2174 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2175[label="GT",fontsize=16,color="green",shape="box"];2176[label="LT",fontsize=16,color="green",shape="box"];2177[label="EQ",fontsize=16,color="green",shape="box"];2178[label="Zero",fontsize=16,color="green",shape="box"];2179[label="Succ vyw45000",fontsize=16,color="green",shape="box"];2180[label="Succ vyw45000",fontsize=16,color="green",shape="box"];2181[label="Zero",fontsize=16,color="green",shape="box"];2182[label="vyw430",fontsize=16,color="green",shape="box"];2183[label="vyw450",fontsize=16,color="green",shape="box"];2184[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2184 -> 2292[label="",style="solid", color="black", weight=3]; 2185[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2185 -> 2293[label="",style="solid", color="black", weight=3]; 2186 -> 355[label="",style="dashed", color="red", weight=0]; 2186[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2186 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2186 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2187 -> 355[label="",style="dashed", color="red", weight=0]; 2187[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2187 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2187 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2188 -> 355[label="",style="dashed", color="red", weight=0]; 2188[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2188 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2188 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2189 -> 355[label="",style="dashed", color="red", weight=0]; 2189[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2189 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2189 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2190 -> 355[label="",style="dashed", color="red", weight=0]; 2190[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2190 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2190 -> 2303[label="",style="dashed", color="magenta", weight=3]; 2191 -> 355[label="",style="dashed", color="red", weight=0]; 2191[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2191 -> 2304[label="",style="dashed", color="magenta", weight=3]; 2191 -> 2305[label="",style="dashed", color="magenta", weight=3]; 2192 -> 355[label="",style="dashed", color="red", weight=0]; 2192[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2192 -> 2306[label="",style="dashed", color="magenta", weight=3]; 2192 -> 2307[label="",style="dashed", color="magenta", weight=3]; 2193 -> 355[label="",style="dashed", color="red", weight=0]; 2193[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2193 -> 2308[label="",style="dashed", color="magenta", weight=3]; 2193 -> 2309[label="",style="dashed", color="magenta", weight=3]; 2194[label="Integer vyw45000 * Integer vyw43010",fontsize=16,color="black",shape="box"];2194 -> 2310[label="",style="solid", color="black", weight=3]; 2195[label="vyw430",fontsize=16,color="green",shape="box"];2196[label="vyw450",fontsize=16,color="green",shape="box"];2197[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2197 -> 2311[label="",style="solid", color="black", weight=3]; 2198[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2198 -> 2312[label="",style="solid", color="black", weight=3]; 2199 -> 355[label="",style="dashed", color="red", weight=0]; 2199[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2199 -> 2313[label="",style="dashed", color="magenta", weight=3]; 2199 -> 2314[label="",style="dashed", color="magenta", weight=3]; 2200 -> 355[label="",style="dashed", color="red", weight=0]; 2200[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2200 -> 2315[label="",style="dashed", color="magenta", weight=3]; 2200 -> 2316[label="",style="dashed", color="magenta", weight=3]; 2201 -> 355[label="",style="dashed", color="red", weight=0]; 2201[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2201 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2201 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2202 -> 355[label="",style="dashed", color="red", weight=0]; 2202[label="vyw4300 * Pos vyw45010",fontsize=16,color="magenta"];2202 -> 2319[label="",style="dashed", color="magenta", weight=3]; 2202 -> 2320[label="",style="dashed", color="magenta", weight=3]; 2203 -> 355[label="",style="dashed", color="red", weight=0]; 2203[label="Pos vyw43010 * vyw4500",fontsize=16,color="magenta"];2203 -> 2321[label="",style="dashed", color="magenta", weight=3]; 2203 -> 2322[label="",style="dashed", color="magenta", weight=3]; 2204 -> 355[label="",style="dashed", color="red", weight=0]; 2204[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2204 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2204 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2205 -> 355[label="",style="dashed", color="red", weight=0]; 2205[label="Neg vyw43010 * vyw4500",fontsize=16,color="magenta"];2205 -> 2325[label="",style="dashed", color="magenta", weight=3]; 2205 -> 2326[label="",style="dashed", color="magenta", weight=3]; 2206 -> 355[label="",style="dashed", color="red", weight=0]; 2206[label="vyw4300 * Neg vyw45010",fontsize=16,color="magenta"];2206 -> 2327[label="",style="dashed", color="magenta", weight=3]; 2206 -> 2328[label="",style="dashed", color="magenta", weight=3]; 2207 -> 1414[label="",style="dashed", color="red", weight=0]; 2207[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2207 -> 2329[label="",style="dashed", color="magenta", weight=3]; 2207 -> 2330[label="",style="dashed", color="magenta", weight=3]; 2208 -> 1416[label="",style="dashed", color="red", weight=0]; 2208[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2208 -> 2331[label="",style="dashed", color="magenta", weight=3]; 2208 -> 2332[label="",style="dashed", color="magenta", weight=3]; 2209 -> 1418[label="",style="dashed", color="red", weight=0]; 2209[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2209 -> 2333[label="",style="dashed", color="magenta", weight=3]; 2209 -> 2334[label="",style="dashed", color="magenta", weight=3]; 2210 -> 1420[label="",style="dashed", color="red", weight=0]; 2210[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2210 -> 2335[label="",style="dashed", color="magenta", weight=3]; 2210 -> 2336[label="",style="dashed", color="magenta", weight=3]; 2211 -> 1422[label="",style="dashed", color="red", weight=0]; 2211[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2211 -> 2337[label="",style="dashed", color="magenta", weight=3]; 2211 -> 2338[label="",style="dashed", color="magenta", weight=3]; 2212 -> 1424[label="",style="dashed", color="red", weight=0]; 2212[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2212 -> 2339[label="",style="dashed", color="magenta", weight=3]; 2212 -> 2340[label="",style="dashed", color="magenta", weight=3]; 2213 -> 1426[label="",style="dashed", color="red", weight=0]; 2213[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2213 -> 2341[label="",style="dashed", color="magenta", weight=3]; 2213 -> 2342[label="",style="dashed", color="magenta", weight=3]; 2214 -> 1428[label="",style="dashed", color="red", weight=0]; 2214[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2214 -> 2343[label="",style="dashed", color="magenta", weight=3]; 2214 -> 2344[label="",style="dashed", color="magenta", weight=3]; 2215 -> 1430[label="",style="dashed", color="red", weight=0]; 2215[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2215 -> 2345[label="",style="dashed", color="magenta", weight=3]; 2215 -> 2346[label="",style="dashed", color="magenta", weight=3]; 2216 -> 1432[label="",style="dashed", color="red", weight=0]; 2216[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2216 -> 2347[label="",style="dashed", color="magenta", weight=3]; 2216 -> 2348[label="",style="dashed", color="magenta", weight=3]; 2217 -> 1434[label="",style="dashed", color="red", weight=0]; 2217[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2217 -> 2349[label="",style="dashed", color="magenta", weight=3]; 2217 -> 2350[label="",style="dashed", color="magenta", weight=3]; 2218 -> 1436[label="",style="dashed", color="red", weight=0]; 2218[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2218 -> 2351[label="",style="dashed", color="magenta", weight=3]; 2218 -> 2352[label="",style="dashed", color="magenta", weight=3]; 2219 -> 1438[label="",style="dashed", color="red", weight=0]; 2219[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2219 -> 2353[label="",style="dashed", color="magenta", weight=3]; 2219 -> 2354[label="",style="dashed", color="magenta", weight=3]; 2220 -> 1440[label="",style="dashed", color="red", weight=0]; 2220[label="compare vyw4300 vyw4500",fontsize=16,color="magenta"];2220 -> 2355[label="",style="dashed", color="magenta", weight=3]; 2220 -> 2356[label="",style="dashed", color="magenta", weight=3]; 2221[label="primCompAux0 vyw126 LT",fontsize=16,color="black",shape="box"];2221 -> 2357[label="",style="solid", color="black", weight=3]; 2222[label="primCompAux0 vyw126 EQ",fontsize=16,color="black",shape="box"];2222 -> 2358[label="",style="solid", color="black", weight=3]; 2223[label="primCompAux0 vyw126 GT",fontsize=16,color="black",shape="box"];2223 -> 2359[label="",style="solid", color="black", weight=3]; 2224[label="vyw430",fontsize=16,color="green",shape="box"];2225[label="vyw450",fontsize=16,color="green",shape="box"];2226[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2226 -> 2360[label="",style="solid", color="black", weight=3]; 2227[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2227 -> 2361[label="",style="solid", color="black", weight=3]; 2228[label="vyw430",fontsize=16,color="green",shape="box"];2229[label="vyw450",fontsize=16,color="green",shape="box"];2230[label="compare1 vyw430 vyw450 False",fontsize=16,color="black",shape="box"];2230 -> 2362[label="",style="solid", color="black", weight=3]; 2231[label="compare1 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2231 -> 2363[label="",style="solid", color="black", weight=3]; 1362[label="Succ (Succ (primPlusNat vyw9000 vyw4000000))",fontsize=16,color="green",shape="box"];1362 -> 1444[label="",style="dashed", color="green", weight=3]; 1363[label="Succ vyw9000",fontsize=16,color="green",shape="box"];1364[label="Succ vyw4000000",fontsize=16,color="green",shape="box"];1365[label="Zero",fontsize=16,color="green",shape="box"];2232[label="vyw4312",fontsize=16,color="green",shape="box"];2233[label="vyw4512",fontsize=16,color="green",shape="box"];2234[label="vyw4312",fontsize=16,color="green",shape="box"];2235[label="vyw4512",fontsize=16,color="green",shape="box"];2236[label="vyw4312",fontsize=16,color="green",shape="box"];2237[label="vyw4512",fontsize=16,color="green",shape="box"];2238[label="vyw4312",fontsize=16,color="green",shape="box"];2239[label="vyw4512",fontsize=16,color="green",shape="box"];2240[label="vyw4312",fontsize=16,color="green",shape="box"];2241[label="vyw4512",fontsize=16,color="green",shape="box"];2242[label="vyw4312",fontsize=16,color="green",shape="box"];2243[label="vyw4512",fontsize=16,color="green",shape="box"];2244[label="vyw4312",fontsize=16,color="green",shape="box"];2245[label="vyw4512",fontsize=16,color="green",shape="box"];2246[label="vyw4312",fontsize=16,color="green",shape="box"];2247[label="vyw4512",fontsize=16,color="green",shape="box"];2248[label="vyw4312",fontsize=16,color="green",shape="box"];2249[label="vyw4512",fontsize=16,color="green",shape="box"];2250[label="vyw4312",fontsize=16,color="green",shape="box"];2251[label="vyw4512",fontsize=16,color="green",shape="box"];2252[label="vyw4312",fontsize=16,color="green",shape="box"];2253[label="vyw4512",fontsize=16,color="green",shape="box"];2254[label="vyw4312",fontsize=16,color="green",shape="box"];2255[label="vyw4512",fontsize=16,color="green",shape="box"];2256[label="vyw4312",fontsize=16,color="green",shape="box"];2257[label="vyw4512",fontsize=16,color="green",shape="box"];2258[label="vyw4312",fontsize=16,color="green",shape="box"];2259[label="vyw4512",fontsize=16,color="green",shape="box"];2260[label="vyw4511",fontsize=16,color="green",shape="box"];2261[label="vyw4311",fontsize=16,color="green",shape="box"];2262[label="vyw4511",fontsize=16,color="green",shape="box"];2263[label="vyw4311",fontsize=16,color="green",shape="box"];2264[label="vyw4511",fontsize=16,color="green",shape="box"];2265[label="vyw4311",fontsize=16,color="green",shape="box"];2266[label="vyw4511",fontsize=16,color="green",shape="box"];2267[label="vyw4311",fontsize=16,color="green",shape="box"];2268[label="vyw4511",fontsize=16,color="green",shape="box"];2269[label="vyw4311",fontsize=16,color="green",shape="box"];2270[label="vyw4511",fontsize=16,color="green",shape="box"];2271[label="vyw4311",fontsize=16,color="green",shape="box"];2272[label="vyw4511",fontsize=16,color="green",shape="box"];2273[label="vyw4311",fontsize=16,color="green",shape="box"];2274[label="vyw4511",fontsize=16,color="green",shape="box"];2275[label="vyw4311",fontsize=16,color="green",shape="box"];2276[label="vyw4511",fontsize=16,color="green",shape="box"];2277[label="vyw4311",fontsize=16,color="green",shape="box"];2278[label="vyw4511",fontsize=16,color="green",shape="box"];2279[label="vyw4311",fontsize=16,color="green",shape="box"];2280[label="vyw4511",fontsize=16,color="green",shape="box"];2281[label="vyw4311",fontsize=16,color="green",shape="box"];2282[label="vyw4511",fontsize=16,color="green",shape="box"];2283[label="vyw4311",fontsize=16,color="green",shape="box"];2284[label="vyw4511",fontsize=16,color="green",shape="box"];2285[label="vyw4311",fontsize=16,color="green",shape="box"];2286[label="vyw4511",fontsize=16,color="green",shape="box"];2287[label="vyw4311",fontsize=16,color="green",shape="box"];2288[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2288 -> 2364[label="",style="solid", color="black", weight=3]; 2289[label="LT",fontsize=16,color="green",shape="box"];2290[label="vyw43000",fontsize=16,color="green",shape="box"];2291[label="vyw45000",fontsize=16,color="green",shape="box"];2292[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2292 -> 2365[label="",style="solid", color="black", weight=3]; 2293[label="LT",fontsize=16,color="green",shape="box"];2294[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2295[label="vyw4500",fontsize=16,color="green",shape="box"];2296[label="vyw4300",fontsize=16,color="green",shape="box"];2297[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2298[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2299[label="vyw4500",fontsize=16,color="green",shape="box"];2300[label="vyw4300",fontsize=16,color="green",shape="box"];2301[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2302[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2303[label="vyw4500",fontsize=16,color="green",shape="box"];2304[label="vyw4300",fontsize=16,color="green",shape="box"];2305[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2306[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2307[label="vyw4500",fontsize=16,color="green",shape="box"];2308[label="vyw4300",fontsize=16,color="green",shape="box"];2309[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2310[label="Integer (primMulInt vyw45000 vyw43010)",fontsize=16,color="green",shape="box"];2310 -> 2366[label="",style="dashed", color="green", weight=3]; 2311[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2311 -> 2367[label="",style="solid", color="black", weight=3]; 2312[label="LT",fontsize=16,color="green",shape="box"];2313[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2314[label="vyw4500",fontsize=16,color="green",shape="box"];2315[label="vyw4300",fontsize=16,color="green",shape="box"];2316[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2317[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2318[label="vyw4500",fontsize=16,color="green",shape="box"];2319[label="vyw4300",fontsize=16,color="green",shape="box"];2320[label="Pos vyw45010",fontsize=16,color="green",shape="box"];2321[label="Pos vyw43010",fontsize=16,color="green",shape="box"];2322[label="vyw4500",fontsize=16,color="green",shape="box"];2323[label="vyw4300",fontsize=16,color="green",shape="box"];2324[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2325[label="Neg vyw43010",fontsize=16,color="green",shape="box"];2326[label="vyw4500",fontsize=16,color="green",shape="box"];2327[label="vyw4300",fontsize=16,color="green",shape="box"];2328[label="Neg vyw45010",fontsize=16,color="green",shape="box"];2329[label="vyw4500",fontsize=16,color="green",shape="box"];2330[label="vyw4300",fontsize=16,color="green",shape="box"];2331[label="vyw4500",fontsize=16,color="green",shape="box"];2332[label="vyw4300",fontsize=16,color="green",shape="box"];2333[label="vyw4500",fontsize=16,color="green",shape="box"];2334[label="vyw4300",fontsize=16,color="green",shape="box"];2335[label="vyw4500",fontsize=16,color="green",shape="box"];2336[label="vyw4300",fontsize=16,color="green",shape="box"];2337[label="vyw4500",fontsize=16,color="green",shape="box"];2338[label="vyw4300",fontsize=16,color="green",shape="box"];2339[label="vyw4500",fontsize=16,color="green",shape="box"];2340[label="vyw4300",fontsize=16,color="green",shape="box"];2341[label="vyw4500",fontsize=16,color="green",shape="box"];2342[label="vyw4300",fontsize=16,color="green",shape="box"];2343[label="vyw4500",fontsize=16,color="green",shape="box"];2344[label="vyw4300",fontsize=16,color="green",shape="box"];2345[label="vyw4500",fontsize=16,color="green",shape="box"];2346[label="vyw4300",fontsize=16,color="green",shape="box"];2347[label="vyw4500",fontsize=16,color="green",shape="box"];2348[label="vyw4300",fontsize=16,color="green",shape="box"];2349[label="vyw4500",fontsize=16,color="green",shape="box"];2350[label="vyw4300",fontsize=16,color="green",shape="box"];2351[label="vyw4500",fontsize=16,color="green",shape="box"];2352[label="vyw4300",fontsize=16,color="green",shape="box"];2353[label="vyw4500",fontsize=16,color="green",shape="box"];2354[label="vyw4300",fontsize=16,color="green",shape="box"];2355[label="vyw4500",fontsize=16,color="green",shape="box"];2356[label="vyw4300",fontsize=16,color="green",shape="box"];2357[label="LT",fontsize=16,color="green",shape="box"];2358[label="vyw126",fontsize=16,color="green",shape="box"];2359[label="GT",fontsize=16,color="green",shape="box"];2360[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2360 -> 2368[label="",style="solid", color="black", weight=3]; 2361[label="LT",fontsize=16,color="green",shape="box"];2362[label="compare0 vyw430 vyw450 otherwise",fontsize=16,color="black",shape="box"];2362 -> 2369[label="",style="solid", color="black", weight=3]; 2363[label="LT",fontsize=16,color="green",shape="box"];1444 -> 1275[label="",style="dashed", color="red", weight=0]; 1444[label="primPlusNat vyw9000 vyw4000000",fontsize=16,color="magenta"];1444 -> 1493[label="",style="dashed", color="magenta", weight=3]; 1444 -> 1494[label="",style="dashed", color="magenta", weight=3]; 2364[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2364 -> 2370[label="",style="solid", color="black", weight=3]; 2365[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2365 -> 2371[label="",style="solid", color="black", weight=3]; 2366 -> 583[label="",style="dashed", color="red", weight=0]; 2366[label="primMulInt vyw45000 vyw43010",fontsize=16,color="magenta"];2366 -> 2372[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2373[label="",style="dashed", color="magenta", weight=3]; 2367[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2367 -> 2374[label="",style="solid", color="black", weight=3]; 2368[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2368 -> 2375[label="",style="solid", color="black", weight=3]; 2369[label="compare0 vyw430 vyw450 True",fontsize=16,color="black",shape="box"];2369 -> 2376[label="",style="solid", color="black", weight=3]; 1493[label="vyw9000",fontsize=16,color="green",shape="box"];1494[label="vyw4000000",fontsize=16,color="green",shape="box"];2370[label="GT",fontsize=16,color="green",shape="box"];2371[label="GT",fontsize=16,color="green",shape="box"];2372[label="vyw45000",fontsize=16,color="green",shape="box"];2373[label="vyw43010",fontsize=16,color="green",shape="box"];2374[label="GT",fontsize=16,color="green",shape="box"];2375[label="GT",fontsize=16,color="green",shape="box"];2376[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(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) 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(vyw43000), Succ(vyw45000)) -> new_primCmpNat(vyw43000, vyw45000) 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_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw19, @2(vyw21, vyw22), h, ba, bb) new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw20, @2(vyw21, vyw22), h, ba, bb) new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs8(new_compare29(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs7(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) new_elemFM01(Branch(@2(vyw400, vyw401), vyw41, vyw42, vyw43, vyw44), @2(vyw30, vyw31), bc, bd, be) -> new_elemFM0(vyw400, vyw401, vyw41, vyw42, vyw43, vyw44, vyw30, vyw31, new_esEs30(vyw30, vyw31, vyw400, vyw401, new_esEs31(vyw30, vyw400, bd), bd, be), bc, bd, be) The TRS R consists of the following rules: new_lt13(vyw4311, vyw4511, app(ty_[], beh)) -> new_lt19(vyw4311, vyw4511, beh) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vyw118) -> True new_esEs25(vyw300, vyw4000, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs6(vyw300, vyw4000, bha, bhb, bhc) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bcf) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, ty_@0) -> new_ltEs5(vyw431, vyw451) new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs14(vyw32, vyw34) new_compare17(vyw4300, vyw4500, app(ty_[], eh)) -> new_compare0(vyw4300, vyw4500, eh) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs27(vyw4310, vyw4510, ty_Bool) -> new_esEs20(vyw4310, vyw4510) new_compare112(vyw430, vyw450, True, ce) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw4310, vyw4510, app(app(ty_Either, cfc), cfd)) -> new_esEs5(vyw4310, vyw4510, cfc, cfd) new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT new_compare26(vyw430, vyw450, True, bh, ca) -> EQ new_compare28(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs24(vyw4310, vyw4510, ty_Ordering) -> new_esEs8(vyw4310, vyw4510) new_lt20(vyw430, vyw450, ty_Ordering) -> new_lt7(vyw430, vyw450) new_esEs29(vyw300, vyw4000, app(ty_[], dad)) -> new_esEs22(vyw300, vyw4000, dad) new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) new_compare210(vyw430, vyw450, True, cb, cc, cd) -> EQ new_esEs29(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_compare211(vyw430, vyw450, True, ce) -> EQ new_esEs26(vyw430, vyw450, app(app(ty_@2, bf), bg)) -> new_esEs7(vyw430, vyw450, bf, bg) new_lt4(vyw430, vyw450, bf, bg) -> new_esEs8(new_compare5(vyw430, vyw450, bf, bg), LT) new_esEs13(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_compare111(vyw99, vyw100, vyw101, vyw102, False, cac, cad) -> GT new_ltEs4(False, True) -> True new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs6(vyw300, vyw4000, dfa, dfb, dfc) new_esEs18(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs32(vyw32, vyw34, app(ty_Ratio, dee)) -> new_esEs11(vyw32, vyw34, dee) new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs9(vyw4311, vyw4511) new_esEs23(vyw4311, vyw4511, app(app(ty_Either, bee), bef)) -> new_esEs5(vyw4311, vyw4511, bee, bef) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Int, cdd) -> new_ltEs9(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(app(ty_Either, hb), hc)) -> new_esEs5(vyw302, vyw4002, hb, hc) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare110(vyw99, vyw100, vyw101, vyw102, False, vyw104, cac, cad) -> new_compare111(vyw99, vyw100, vyw101, vyw102, vyw104, cac, cad) new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs15(vyw32, vyw34) new_esEs26(vyw430, vyw450, ty_Char) -> new_esEs15(vyw430, vyw450) new_esEs17(vyw302, vyw4002, ty_Bool) -> new_esEs20(vyw302, vyw4002) new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs20(vyw4311, vyw4511) new_esEs29(vyw300, vyw4000, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs6(vyw300, vyw4000, chg, chh, daa) new_esEs8(EQ, EQ) -> True new_compare17(vyw4300, vyw4500, ty_Int) -> new_compare8(vyw4300, vyw4500) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs18(vyw4312, vyw4512, ty_Float) -> new_ltEs11(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, app(ty_Ratio, bbh)) -> new_esEs11(vyw430, vyw450, bbh) new_esEs26(vyw430, vyw450, ty_Integer) -> new_esEs14(vyw430, vyw450) new_lt13(vyw4311, vyw4511, app(app(ty_Either, bee), bef)) -> new_lt5(vyw4311, vyw4511, bee, bef) new_esEs28(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs26(vyw430, vyw450, ty_Float) -> new_esEs16(vyw430, vyw450) new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs16(vyw32, vyw34) new_ltEs17(LT, GT) -> True new_not(True) -> False new_ltEs18(vyw4312, vyw4512, app(ty_Maybe, bdb)) -> new_ltEs7(vyw4312, vyw4512, bdb) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_[], dbd), cdd) -> new_ltEs14(vyw4310, vyw4510, dbd) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_primCompAux00(vyw126, LT) -> LT new_lt13(vyw4311, vyw4511, ty_Double) -> new_lt11(vyw4311, vyw4511) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, dbe), dbf), dbg), cdd) -> new_ltEs15(vyw4310, vyw4510, dbe, dbf, dbg) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dfg)) -> new_esEs11(vyw300, vyw4000, dfg) new_esEs18(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], dff)) -> new_esEs22(vyw300, vyw4000, dff) new_compare13(vyw430, vyw450, ce) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, ce), ce) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(ty_Maybe, cbg)) -> new_esEs4(vyw300, vyw4000, cbg) new_ltEs17(EQ, GT) -> True new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(ty_[], dcf)) -> new_ltEs14(vyw4310, vyw4510, dcf) new_esEs19(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_lt21(vyw4310, vyw4510, ty_Char) -> new_lt16(vyw4310, vyw4510) new_compare17(vyw4300, vyw4500, app(ty_Maybe, ed)) -> new_compare13(vyw4300, vyw4500, ed) new_esEs17(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_lt21(vyw4310, vyw4510, ty_Integer) -> new_lt15(vyw4310, vyw4510) new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, cba), cbb), bcf) -> new_esEs7(vyw300, vyw4000, cba, cbb) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_lt13(vyw4311, vyw4511, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt8(vyw4311, vyw4511, bfa, bfb, bfc) new_esEs31(vyw30, vyw400, app(ty_[], bcd)) -> new_esEs22(vyw30, vyw400, bcd) new_ltEs7(Nothing, Just(vyw4510), cf) -> True new_compare8(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) new_esEs27(vyw4310, vyw4510, ty_Int) -> new_esEs10(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Float, cdd) -> new_ltEs11(vyw4310, vyw4510) new_lt14(vyw4310, vyw4510, ty_Double) -> new_lt11(vyw4310, vyw4510) new_ltEs17(LT, LT) -> True new_lt13(vyw4311, vyw4511, ty_@0) -> new_lt10(vyw4311, vyw4511) new_esEs17(vyw302, vyw4002, ty_Int) -> new_esEs10(vyw302, vyw4002) new_lt20(vyw430, vyw450, ty_Double) -> new_lt11(vyw430, vyw450) new_primCompAux00(vyw126, GT) -> GT new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs10(vyw4311, vyw4511) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_esEs25(vyw300, vyw4000, app(ty_[], bhf)) -> new_esEs22(vyw300, vyw4000, bhf) new_esEs25(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bcf) -> new_esEs9(vyw300, vyw4000) new_compare28(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_lt21(vyw4310, vyw4510, app(ty_Maybe, cfb)) -> new_lt9(vyw4310, vyw4510, cfb) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_compare15(vyw430, vyw450, True, bh, ca) -> LT new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Ordering) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Char) -> new_esEs15(vyw300, vyw4000) new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs28(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_ltEs10(Right(vyw4310), Left(vyw4510), cdc, cdd) -> False new_esEs19(vyw300, vyw4000, app(ty_[], bbd)) -> new_esEs22(vyw300, vyw4000, bbd) new_esEs24(vyw4310, vyw4510, ty_Double) -> new_esEs9(vyw4310, vyw4510) new_compare16(vyw430, vyw450, False) -> GT new_lt17(vyw430, vyw450) -> new_esEs8(new_compare18(vyw430, vyw450), LT) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, cae), bcf) -> new_esEs4(vyw300, vyw4000, cae) new_ltEs20(vyw4311, vyw4511, ty_@0) -> new_ltEs5(vyw4311, vyw4511) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(vyw30, vyw400, fg, fh, ga) new_lt21(vyw4310, vyw4510, ty_Float) -> new_lt17(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Bool, cdd) -> new_ltEs4(vyw4310, vyw4510) new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs14(vyw30, vyw400) new_lt16(vyw430, vyw450) -> new_esEs8(new_compare14(vyw430, vyw450), LT) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw45000)) -> LT new_compare17(vyw4300, vyw4500, ty_Char) -> new_compare14(vyw4300, vyw4500) new_compare17(vyw4300, vyw4500, ty_Bool) -> new_compare27(vyw4300, vyw4500) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Double, cdd) -> new_ltEs13(vyw4310, vyw4510) new_esEs19(vyw300, vyw4000, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs6(vyw300, vyw4000, bag, bah, bba) new_ltEs20(vyw4311, vyw4511, app(ty_Maybe, cdh)) -> new_ltEs7(vyw4311, vyw4511, cdh) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs6(vyw4310, vyw4510) new_ltEs19(vyw431, vyw451, ty_Integer) -> new_ltEs6(vyw431, vyw451) new_lt9(vyw430, vyw450, ce) -> new_esEs8(new_compare13(vyw430, vyw450, ce), LT) new_esEs27(vyw4310, vyw4510, app(app(ty_@2, cgb), cgc)) -> new_esEs7(vyw4310, vyw4510, cgb, cgc) new_primCmpNat0(Succ(vyw43000), Zero) -> GT new_pePe(False, vyw118) -> vyw118 new_compare11(vyw430, vyw450) -> new_compare25(vyw430, vyw450, new_esEs8(vyw430, vyw450)) new_ltEs12(vyw431, vyw451, cde) -> new_not(new_esEs8(new_compare19(vyw431, vyw451, cde), GT)) new_esEs20(False, False) -> True new_esEs28(vyw301, vyw4001, app(ty_[], chb)) -> new_esEs22(vyw301, vyw4001, chb) new_lt20(vyw430, vyw450, ty_Float) -> new_lt17(vyw430, vyw450) new_ltEs20(vyw4311, vyw4511, ty_Float) -> new_ltEs11(vyw4311, vyw4511) new_ltEs18(vyw4312, vyw4512, ty_@0) -> new_ltEs5(vyw4312, vyw4512) new_esEs25(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare19(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare9(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) new_esEs17(vyw302, vyw4002, ty_Char) -> new_esEs15(vyw302, vyw4002) new_ltEs6(vyw431, vyw451) -> new_not(new_esEs8(new_compare9(vyw431, vyw451), GT)) new_lt14(vyw4310, vyw4510, app(ty_[], bgb)) -> new_lt19(vyw4310, vyw4510, bgb) new_esEs17(vyw302, vyw4002, ty_Integer) -> new_esEs14(vyw302, vyw4002) new_esEs19(vyw300, vyw4000, app(ty_Ratio, bbe)) -> new_esEs11(vyw300, vyw4000, bbe) new_compare110(vyw99, vyw100, vyw101, vyw102, True, vyw104, cac, cad) -> new_compare111(vyw99, vyw100, vyw101, vyw102, True, cac, cad) new_esEs29(vyw300, vyw4000, app(ty_Ratio, dae)) -> new_esEs11(vyw300, vyw4000, dae) new_lt20(vyw430, vyw450, app(ty_Maybe, ce)) -> new_lt9(vyw430, vyw450, ce) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dbc), cdd) -> new_ltEs12(vyw4310, vyw4510, dbc) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs26(vyw430, vyw450, app(ty_[], ec)) -> new_esEs22(vyw430, vyw450, ec) new_esEs27(vyw4310, vyw4510, ty_Integer) -> new_esEs14(vyw4310, vyw4510) new_esEs19(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare18(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare18(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw4311, vyw4511, app(ty_Maybe, bed)) -> new_esEs4(vyw4311, vyw4511, bed) new_esEs32(vyw32, vyw34, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs6(vyw32, vyw34, ddg, ddh, dea) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs26(vyw430, vyw450, ty_Bool) -> new_esEs20(vyw430, vyw450) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, cbd), bcf) -> new_esEs11(vyw300, vyw4000, cbd) new_lt14(vyw4310, vyw4510, app(app(ty_@2, bgf), bgg)) -> new_lt4(vyw4310, vyw4510, bgf, bgg) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(app(ty_@2, ccc), ccd)) -> new_esEs7(vyw300, vyw4000, ccc, ccd) new_esEs18(vyw301, vyw4001, app(ty_[], bab)) -> new_esEs22(vyw301, vyw4001, bab) new_esEs19(vyw300, vyw4000, app(ty_Maybe, baf)) -> new_esEs4(vyw300, vyw4000, baf) new_esEs24(vyw4310, vyw4510, app(app(ty_Either, bfg), bfh)) -> new_esEs5(vyw4310, vyw4510, bfg, bfh) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, app(ty_[], cab)) -> new_ltEs14(vyw431, vyw451, cab) new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT new_compare29(@2(vyw430, vyw431), @2(vyw450, vyw451), False, cda, cdb) -> new_compare110(vyw430, vyw431, vyw450, vyw451, new_lt20(vyw430, vyw450, cda), new_asAs(new_esEs26(vyw430, vyw450, cda), new_ltEs19(vyw431, vyw451, cdb)), cda, cdb) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(app(ty_Either, dcc), dcd)) -> new_ltEs10(vyw4310, vyw4510, dcc, dcd) new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_lt6(vyw430, vyw450) -> new_esEs8(new_compare8(vyw430, vyw450), LT) new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), fg, fh, ga) -> new_asAs(new_esEs19(vyw300, vyw4000, fg), new_asAs(new_esEs18(vyw301, vyw4001, fh), new_esEs17(vyw302, vyw4002, ga))) new_esEs28(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_lt13(vyw4311, vyw4511, ty_Bool) -> new_lt18(vyw4311, vyw4511) new_lt21(vyw4310, vyw4510, ty_Int) -> new_lt6(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(ty_Ratio, ha)) -> new_esEs11(vyw302, vyw4002, ha) new_lt14(vyw4310, vyw4510, app(ty_Ratio, bga)) -> new_lt12(vyw4310, vyw4510, bga) new_lt14(vyw4310, vyw4510, ty_Integer) -> new_lt15(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Char, cdd) -> new_ltEs8(vyw4310, vyw4510) new_esEs32(vyw32, vyw34, app(app(ty_Either, def), deg)) -> new_esEs5(vyw32, vyw34, def, deg) new_compare210(vyw430, vyw450, False, cb, cc, cd) -> new_compare113(vyw430, vyw450, new_ltEs15(vyw430, vyw450, cb, cc, cd), cb, cc, cd) new_esEs28(vyw301, vyw4001, ty_Bool) -> new_esEs20(vyw301, vyw4001) new_esEs29(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs15(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bcg, bch, bda) -> new_pePe(new_lt14(vyw4310, vyw4510, bcg), new_asAs(new_esEs24(vyw4310, vyw4510, bcg), new_pePe(new_lt13(vyw4311, vyw4511, bch), new_asAs(new_esEs23(vyw4311, vyw4511, bch), new_ltEs18(vyw4312, vyw4512, bda))))) new_lt13(vyw4311, vyw4511, ty_Ordering) -> new_lt7(vyw4311, vyw4511) new_esEs24(vyw4310, vyw4510, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs6(vyw4310, vyw4510, bgc, bgd, bge) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_esEs29(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_ltEs9(vyw431, vyw451) -> new_not(new_esEs8(new_compare8(vyw431, vyw451), GT)) new_esEs17(vyw302, vyw4002, ty_@0) -> new_esEs21(vyw302, vyw4002) new_lt12(vyw430, vyw450, bbh) -> new_esEs8(new_compare19(vyw430, vyw450, bbh), LT) new_esEs31(vyw30, vyw400, app(ty_Maybe, bca)) -> new_esEs4(vyw30, vyw400, bca) new_primPlusNat1(Succ(vyw900), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw900, vyw400000))) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs19(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_lt20(vyw430, vyw450, ty_@0) -> new_lt10(vyw430, vyw450) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, cbe), cbf), bcf) -> new_esEs5(vyw300, vyw4000, cbe, cbf) new_compare17(vyw4300, vyw4500, app(ty_Ratio, eg)) -> new_compare19(vyw4300, vyw4500, eg) new_primPlusNat0(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_lt13(vyw4311, vyw4511, ty_Char) -> new_lt16(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs10(vyw32, vyw34) new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs16(vyw4311, vyw4511) new_compare19(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare8(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Integer, cdd) -> new_ltEs6(vyw4310, vyw4510) new_esEs8(LT, LT) -> True new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), eb) -> new_asAs(new_esEs13(vyw300, vyw4000, eb), new_esEs12(vyw301, vyw4001, eb)) new_esEs28(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_lt14(vyw4310, vyw4510, app(app(ty_Either, bfg), bfh)) -> new_lt5(vyw4310, vyw4510, bfg, bfh) new_lt21(vyw4310, vyw4510, ty_Double) -> new_lt11(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, ty_Char) -> new_ltEs8(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, ty_Double) -> new_esEs9(vyw430, vyw450) new_esEs31(vyw30, vyw400, app(ty_Ratio, eb)) -> new_esEs11(vyw30, vyw400, eb) new_compare17(vyw4300, vyw4500, ty_Float) -> new_compare18(vyw4300, vyw4500) new_esEs27(vyw4310, vyw4510, ty_Char) -> new_esEs15(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs15(vyw4312, vyw4512, bdg, bdh, bea) new_esEs22(:(vyw300, vyw301), [], bcd) -> False new_esEs22([], :(vyw4000, vyw4001), bcd) -> False new_ltEs20(vyw4311, vyw4511, ty_Double) -> new_ltEs13(vyw4311, vyw4511) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_compare17(vyw4300, vyw4500, ty_Ordering) -> new_compare11(vyw4300, vyw4500) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs4(vyw4310, vyw4510) new_lt13(vyw4311, vyw4511, ty_Integer) -> new_lt15(vyw4311, vyw4511) new_lt14(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) new_esEs18(vyw301, vyw4001, app(ty_Ratio, bac)) -> new_esEs11(vyw301, vyw4001, bac) new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs6(vyw4311, vyw4511, bfa, bfb, bfc) new_ltEs20(vyw4311, vyw4511, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs15(vyw4311, vyw4511, cee, cef, ceg) new_ltEs19(vyw431, vyw451, ty_Ordering) -> new_ltEs17(vyw431, vyw451) new_ltEs19(vyw431, vyw451, ty_Float) -> new_ltEs11(vyw431, vyw451) new_compare25(vyw430, vyw450, False) -> new_compare16(vyw430, vyw450, new_ltEs17(vyw430, vyw450)) new_esEs28(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_esEs27(vyw4310, vyw4510, ty_Double) -> new_esEs9(vyw4310, vyw4510) new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) new_esEs25(vyw300, vyw4000, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw300, vyw4000, bhd, bhe) new_lt18(vyw430, vyw450) -> new_esEs8(new_compare27(vyw430, vyw450), LT) new_esEs32(vyw32, vyw34, app(ty_Maybe, ddf)) -> new_esEs4(vyw32, vyw34, ddf) new_compare9(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) new_esEs17(vyw302, vyw4002, app(ty_[], gh)) -> new_esEs22(vyw302, vyw4002, gh) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_lt21(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) new_esEs18(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_ltEs19(vyw431, vyw451, ty_Double) -> new_ltEs13(vyw431, vyw451) new_ltEs19(vyw431, vyw451, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs15(vyw431, vyw451, bcg, bch, bda) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_@0) -> new_esEs21(vyw300, vyw4000) new_ltEs17(EQ, EQ) -> True new_ltEs20(vyw4311, vyw4511, ty_Ordering) -> new_ltEs17(vyw4311, vyw4511) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, deh)) -> new_esEs4(vyw300, vyw4000, deh) new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs8(vyw4311, vyw4511) new_compare24(vyw430, vyw450, False) -> new_compare10(vyw430, vyw450, new_ltEs4(vyw430, vyw450)) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_lt14(vyw4310, vyw4510, ty_Bool) -> new_lt18(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(ty_[], cce)) -> new_esEs22(vyw300, vyw4000, cce) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bcf) -> new_esEs15(vyw300, vyw4000) new_ltEs17(GT, LT) -> False new_lt13(vyw4311, vyw4511, ty_Float) -> new_lt17(vyw4311, vyw4511) new_ltEs17(EQ, LT) -> False new_compare16(vyw430, vyw450, True) -> LT new_esEs28(vyw301, vyw4001, app(ty_Ratio, chc)) -> new_esEs11(vyw301, vyw4001, chc) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_esEs19(vyw300, vyw4000, app(app(ty_Either, bbf), bbg)) -> new_esEs5(vyw300, vyw4000, bbf, bbg) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs6(vyw300, vyw4000, cbh, cca, ccb) new_compare17(vyw4300, vyw4500, ty_Double) -> new_compare28(vyw4300, vyw4500) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], cbc), bcf) -> new_esEs22(vyw300, vyw4000, cbc) new_compare7(vyw430, vyw450, bh, ca) -> new_compare26(vyw430, vyw450, new_esEs5(vyw430, vyw450, bh, ca), bh, ca) new_esEs24(vyw4310, vyw4510, app(ty_Maybe, bff)) -> new_esEs4(vyw4310, vyw4510, bff) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Int) -> new_ltEs9(vyw4310, vyw4510) new_compare12(vyw430, vyw450, cb, cc, cd) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, cb, cc, cd), cb, cc, cd) new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(ty_Either, dba), dbb), cdd) -> new_ltEs10(vyw4310, vyw4510, dba, dbb) new_esEs19(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs24(vyw4310, vyw4510, ty_Char) -> new_esEs15(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(ty_[], cff)) -> new_lt19(vyw4310, vyw4510, cff) new_ltEs19(vyw431, vyw451, ty_Int) -> new_ltEs9(vyw431, vyw451) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs9(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(vyw302, vyw4002, gc, gd, ge) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_@0, cdd) -> new_ltEs5(vyw4310, vyw4510) new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) new_esEs24(vyw4310, vyw4510, ty_Integer) -> new_esEs14(vyw4310, vyw4510) new_primCompAux0(vyw4300, vyw4500, vyw119, ec) -> new_primCompAux00(vyw119, new_compare17(vyw4300, vyw4500, ec)) new_esEs18(vyw301, vyw4001, app(ty_Maybe, hd)) -> new_esEs4(vyw301, vyw4001, hd) new_ltEs18(vyw4312, vyw4512, app(ty_[], bdf)) -> new_ltEs14(vyw4312, vyw4512, bdf) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_Maybe, dah), cdd) -> new_ltEs7(vyw4310, vyw4510, dah) new_esEs27(vyw4310, vyw4510, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs6(vyw4310, vyw4510, cfg, cfh, cga) new_esEs28(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_lt13(vyw4311, vyw4511, app(ty_Ratio, beg)) -> new_lt12(vyw4311, vyw4511, beg) new_ltEs20(vyw4311, vyw4511, ty_Char) -> new_ltEs8(vyw4311, vyw4511) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Right(vyw4510), cdc, cdd) -> True new_esEs18(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_ltEs18(vyw4312, vyw4512, ty_Double) -> new_ltEs13(vyw4312, vyw4512) new_lt14(vyw4310, vyw4510, ty_Int) -> new_lt6(vyw4310, vyw4510) new_compare111(vyw99, vyw100, vyw101, vyw102, True, cac, cad) -> LT new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs20(vyw30, vyw400) new_compare0([], :(vyw4500, vyw4501), ec) -> LT new_asAs(True, vyw66) -> vyw66 new_compare113(vyw430, vyw450, True, cb, cc, cd) -> LT new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bcf) -> new_esEs14(vyw300, vyw4000) new_compare211(vyw430, vyw450, False, ce) -> new_compare112(vyw430, vyw450, new_ltEs7(vyw430, vyw450, ce), ce) new_esEs25(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_ltEs20(vyw4311, vyw4511, app(app(ty_Either, cea), ceb)) -> new_ltEs10(vyw4311, vyw4511, cea, ceb) new_ltEs18(vyw4312, vyw4512, ty_Ordering) -> new_ltEs17(vyw4312, vyw4512) new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs21(vyw32, vyw34) new_compare17(vyw4300, vyw4500, app(app(app(ty_@3, fa), fb), fc)) -> new_compare12(vyw4300, vyw4500, fa, fb, fc) new_lt14(vyw4310, vyw4510, ty_Char) -> new_lt16(vyw4310, vyw4510) new_esEs27(vyw4310, vyw4510, app(ty_[], cff)) -> new_esEs22(vyw4310, vyw4510, cff) new_esEs18(vyw301, vyw4001, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw301, vyw4001, hh, baa) new_esEs30(vyw31, vyw32, vyw33, vyw34, False, ddd, dde) -> new_esEs8(new_compare29(@2(vyw31, vyw32), @2(vyw33, vyw34), False, ddd, dde), LT) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, dfh), dga)) -> new_esEs5(vyw300, vyw4000, dfh, dga) new_esEs24(vyw4310, vyw4510, app(app(ty_@2, bgf), bgg)) -> new_esEs7(vyw4310, vyw4510, bgf, bgg) new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) new_lt13(vyw4311, vyw4511, app(ty_Maybe, bed)) -> new_lt9(vyw4311, vyw4511, bed) new_esEs29(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(ty_Maybe, dcb)) -> new_ltEs7(vyw4310, vyw4510, dcb) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs29(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_primCompAux00(vyw126, EQ) -> vyw126 new_compare0([], [], ec) -> EQ new_sr(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_lt7(vyw430, vyw450) -> new_esEs8(new_compare11(vyw430, vyw450), LT) new_ltEs7(Nothing, Nothing, cf) -> True new_lt14(vyw4310, vyw4510, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt8(vyw4310, vyw4510, bgc, bgd, bge) new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_@2, dh), ea)) -> new_ltEs16(vyw4310, vyw4510, dh, ea) new_esEs23(vyw4311, vyw4511, app(ty_Ratio, beg)) -> new_esEs11(vyw4311, vyw4511, beg) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bcf) -> new_esEs16(vyw300, vyw4000) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_[], dd)) -> new_ltEs14(vyw4310, vyw4510, dd) new_compare10(vyw430, vyw450, False) -> GT new_esEs27(vyw4310, vyw4510, ty_Ordering) -> new_esEs8(vyw4310, vyw4510) new_ltEs20(vyw4311, vyw4511, app(ty_[], ced)) -> new_ltEs14(vyw4311, vyw4511, ced) new_ltEs8(vyw431, vyw451) -> new_not(new_esEs8(new_compare14(vyw431, vyw451), GT)) new_ltEs18(vyw4312, vyw4512, ty_Integer) -> new_ltEs6(vyw4312, vyw4512) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Bool) -> new_ltEs4(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Nothing, cf) -> False new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_Either, da), db)) -> new_ltEs10(vyw4310, vyw4510, da, db) new_esEs28(vyw301, vyw4001, app(ty_Maybe, cgd)) -> new_esEs4(vyw301, vyw4001, cgd) new_esEs23(vyw4311, vyw4511, app(app(ty_@2, bfd), bfe)) -> new_esEs7(vyw4311, vyw4511, bfd, bfe) new_ltEs20(vyw4311, vyw4511, app(app(ty_@2, ceh), cfa)) -> new_ltEs16(vyw4311, vyw4511, ceh, cfa) new_ltEs19(vyw431, vyw451, ty_Char) -> new_ltEs8(vyw431, vyw451) new_esEs13(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs26(vyw430, vyw450, ty_@0) -> new_esEs21(vyw430, vyw450) new_lt20(vyw430, vyw450, ty_Int) -> new_lt6(vyw430, vyw450) new_esEs4(Nothing, Nothing, bca) -> True new_lt20(vyw430, vyw450, app(app(app(ty_@3, cb), cc), cd)) -> new_lt8(vyw430, vyw450, cb, cc, cd) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(app(ty_Either, ccg), cch)) -> new_esEs5(vyw300, vyw4000, ccg, cch) new_esEs4(Nothing, Just(vyw4000), bca) -> False new_esEs4(Just(vyw300), Nothing, bca) -> False new_lt13(vyw4311, vyw4511, app(app(ty_@2, bfd), bfe)) -> new_lt4(vyw4311, vyw4511, bfd, bfe) new_lt8(vyw430, vyw450, cb, cc, cd) -> new_esEs8(new_compare12(vyw430, vyw450, cb, cc, cd), LT) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw4310, vyw4510, ty_Float) -> new_esEs16(vyw4310, vyw4510) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Double) -> new_ltEs13(vyw4310, vyw4510) new_esEs21(@0, @0) -> True new_esEs30(vyw31, vyw32, vyw33, vyw34, True, ddd, dde) -> new_esEs8(new_compare29(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, dde), ddd, dde), LT) new_compare14(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Ordering, cdd) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Float) -> new_ltEs11(vyw4310, vyw4510) new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs8(vyw32, vyw34) new_compare27(vyw430, vyw450) -> new_compare24(vyw430, vyw450, new_esEs20(vyw430, vyw450)) new_esEs24(vyw4310, vyw4510, ty_Bool) -> new_esEs20(vyw4310, vyw4510) new_esEs29(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_ltEs5(vyw431, vyw451) -> new_not(new_esEs8(new_compare6(vyw431, vyw451), GT)) new_ltEs19(vyw431, vyw451, app(app(ty_@2, cdf), cdg)) -> new_ltEs16(vyw431, vyw451, cdf, cdg) new_ltEs13(vyw431, vyw451) -> new_not(new_esEs8(new_compare28(vyw431, vyw451), GT)) new_lt14(vyw4310, vyw4510, app(ty_Maybe, bff)) -> new_lt9(vyw4310, vyw4510, bff) new_esEs32(vyw32, vyw34, app(ty_[], ded)) -> new_esEs22(vyw32, vyw34, ded) new_esEs18(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw431, vyw451, app(ty_Maybe, cf)) -> new_ltEs7(vyw431, vyw451, cf) new_ltEs20(vyw4311, vyw4511, app(ty_Ratio, cec)) -> new_ltEs12(vyw4311, vyw4511, cec) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs4(True, False) -> False new_esEs17(vyw302, vyw4002, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw302, vyw4002, gf, gg) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bcf) -> new_esEs20(vyw300, vyw4000) new_compare24(vyw430, vyw450, True) -> EQ new_esEs28(vyw301, vyw4001, app(app(ty_@2, cgh), cha)) -> new_esEs7(vyw301, vyw4001, cgh, cha) new_lt13(vyw4311, vyw4511, ty_Int) -> new_lt6(vyw4311, vyw4511) new_esEs25(vyw300, vyw4000, app(app(ty_Either, bhh), caa)) -> new_esEs5(vyw300, vyw4000, bhh, caa) new_esEs29(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs11(vyw431, vyw451) -> new_not(new_esEs8(new_compare18(vyw431, vyw451), GT)) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs26(vyw430, vyw450, ty_Ordering) -> new_esEs8(vyw430, vyw450) new_compare28(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare28(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs27(vyw4310, vyw4510, app(ty_Ratio, cfe)) -> new_esEs11(vyw4310, vyw4510, cfe) new_esEs7(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bcb, bcc) -> new_asAs(new_esEs29(vyw300, vyw4000, bcb), new_esEs28(vyw301, vyw4001, bcc)) new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) new_ltEs18(vyw4312, vyw4512, app(app(ty_Either, bdc), bdd)) -> new_ltEs10(vyw4312, vyw4512, bdc, bdd) new_esEs31(vyw30, vyw400, app(app(ty_Either, bce), bcf)) -> new_esEs5(vyw30, vyw400, bce, bcf) new_lt11(vyw430, vyw450) -> new_esEs8(new_compare28(vyw430, vyw450), LT) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Ratio, dc)) -> new_ltEs12(vyw4310, vyw4510, dc) new_esEs19(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_ltEs19(vyw431, vyw451, app(ty_Ratio, cde)) -> new_ltEs12(vyw431, vyw451, cde) new_esEs29(vyw300, vyw4000, app(ty_Maybe, chf)) -> new_esEs4(vyw300, vyw4000, chf) new_compare18(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs18(vyw301, vyw4001, ty_Bool) -> new_esEs20(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs27(vyw4310, vyw4510, ty_@0) -> new_esEs21(vyw4310, vyw4510) new_esEs25(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(ty_Ratio, ccf)) -> new_esEs11(vyw300, vyw4000, ccf) new_lt20(vyw430, vyw450, app(ty_[], ec)) -> new_lt19(vyw430, vyw450, ec) new_ltEs4(False, False) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs15(vyw4311, vyw4511) new_esEs26(vyw430, vyw450, app(app(ty_Either, bh), ca)) -> new_esEs5(vyw430, vyw450, bh, ca) new_lt20(vyw430, vyw450, app(ty_Ratio, bbh)) -> new_lt12(vyw430, vyw450, bbh) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs11(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, caf), cag), cah), bcf) -> new_esEs6(vyw300, vyw4000, caf, cag, cah) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Maybe, cg)) -> new_ltEs7(vyw4310, vyw4510, cg) new_esEs26(vyw430, vyw450, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(vyw430, vyw450, cb, cc, cd) new_esEs27(vyw4310, vyw4510, ty_Float) -> new_esEs16(vyw4310, vyw4510) new_ltEs20(vyw4311, vyw4511, ty_Integer) -> new_ltEs6(vyw4311, vyw4511) new_esEs18(vyw301, vyw4001, app(app(app(ty_@3, he), hf), hg)) -> new_esEs6(vyw301, vyw4001, he, hf, hg) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs19(vyw300, vyw4000, app(app(ty_@2, bbb), bbc)) -> new_esEs7(vyw300, vyw4000, bbb, bbc) new_lt10(vyw430, vyw450) -> new_esEs8(new_compare6(vyw430, vyw450), LT) new_not(False) -> True new_esEs29(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs20(vyw4311, vyw4511, ty_Bool) -> new_ltEs4(vyw4311, vyw4511) new_esEs18(vyw301, vyw4001, app(app(ty_Either, bad), bae)) -> new_esEs5(vyw301, vyw4001, bad, bae) new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs20(vyw32, vyw34) new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs17(vyw302, vyw4002, app(ty_Maybe, gb)) -> new_esEs4(vyw302, vyw4002, gb) new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(ty_@2, dbh), dca), cdd) -> new_ltEs16(vyw4310, vyw4510, dbh, dca) new_compare0(:(vyw4300, vyw4301), [], ec) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(vyw9000), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw9000, vyw4000000))) new_esEs5(Left(vyw300), Right(vyw4000), bce, bcf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bce, bcf) -> False new_lt21(vyw4310, vyw4510, ty_Bool) -> new_lt18(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, ty_Int) -> new_ltEs9(vyw4312, vyw4512) new_ltEs18(vyw4312, vyw4512, app(ty_Ratio, bde)) -> new_ltEs12(vyw4312, vyw4512, bde) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs14(vyw4311, vyw4511) new_compare25(vyw430, vyw450, True) -> EQ new_lt20(vyw430, vyw450, ty_Integer) -> new_lt15(vyw430, vyw450) new_esEs29(vyw300, vyw4000, app(app(ty_@2, dab), dac)) -> new_esEs7(vyw300, vyw4000, dab, dac) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bcf) -> new_esEs10(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(ty_Ratio, dce)) -> new_ltEs12(vyw4310, vyw4510, dce) new_ltEs18(vyw4312, vyw4512, app(app(ty_@2, beb), bec)) -> new_ltEs16(vyw4312, vyw4512, beb, bec) new_ltEs19(vyw431, vyw451, app(app(ty_Either, cdc), cdd)) -> new_ltEs10(vyw431, vyw451, cdc, cdd) new_esEs12(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_compare26(vyw430, vyw450, False, bh, ca) -> new_compare15(vyw430, vyw450, new_ltEs10(vyw430, vyw450, bh, ca), bh, ca) new_compare18(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_esEs24(vyw4310, vyw4510, ty_Int) -> new_esEs10(vyw4310, vyw4510) new_lt14(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs24(vyw4310, vyw4510, app(ty_[], bgb)) -> new_esEs22(vyw4310, vyw4510, bgb) new_lt14(vyw4310, vyw4510, ty_Float) -> new_lt17(vyw4310, vyw4510) new_esEs10(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs19(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw430, vyw450, True) -> LT new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), ec) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, ec), ec) new_lt20(vyw430, vyw450, app(app(ty_@2, bf), bg)) -> new_lt4(vyw430, vyw450, bf, bg) new_lt5(vyw430, vyw450, bh, ca) -> new_esEs8(new_compare7(vyw430, vyw450, bh, ca), LT) new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs21(vyw4311, vyw4511) new_ltEs17(GT, EQ) -> False new_compare17(vyw4300, vyw4500, ty_Integer) -> new_compare9(vyw4300, vyw4500) new_esEs25(vyw300, vyw4000, app(ty_Maybe, bgh)) -> new_esEs4(vyw300, vyw4000, bgh) new_ltEs14(vyw431, vyw451, cab) -> new_not(new_esEs8(new_compare0(vyw431, vyw451, cab), GT)) new_esEs12(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_lt19(vyw430, vyw450, ec) -> new_esEs8(new_compare0(vyw430, vyw450, ec), LT) new_compare6(@0, @0) -> EQ new_esEs23(vyw4311, vyw4511, app(ty_[], beh)) -> new_esEs22(vyw4311, vyw4511, beh) new_lt21(vyw4310, vyw4510, app(app(app(ty_@3, cfg), cfh), cga)) -> new_lt8(vyw4310, vyw4510, cfg, cfh, cga) new_esEs25(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, ty_Bool) -> new_ltEs4(vyw431, vyw451) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(app(app(ty_@3, dcg), dch), dda)) -> new_ltEs15(vyw4310, vyw4510, dcg, dch, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs9(vyw32, vyw34) new_ltEs4(True, True) -> True new_esEs22(:(vyw300, vyw301), :(vyw4000, vyw4001), bcd) -> new_asAs(new_esEs25(vyw300, vyw4000, bcd), new_esEs22(vyw301, vyw4001, bcd)) new_esEs20(True, True) -> True new_compare29(vyw43, vyw45, True, cda, cdb) -> EQ new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) new_lt20(vyw430, vyw450, ty_Char) -> new_lt16(vyw430, vyw450) new_esEs22([], [], bcd) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs24(vyw4310, vyw4510, app(ty_Ratio, bga)) -> new_esEs11(vyw4310, vyw4510, bga) new_esEs27(vyw4310, vyw4510, app(ty_Maybe, cfb)) -> new_esEs4(vyw4310, vyw4510, cfb) new_ltEs18(vyw4312, vyw4512, ty_Bool) -> new_ltEs4(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, ty_Int) -> new_esEs10(vyw430, vyw450) new_esEs28(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dfd), dfe)) -> new_esEs7(vyw300, vyw4000, dfd, dfe) new_compare15(vyw430, vyw450, False, bh, ca) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(app(ty_Either, cfc), cfd)) -> new_lt5(vyw4310, vyw4510, cfc, cfd) new_ltEs17(GT, GT) -> True new_esEs25(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_lt21(vyw4310, vyw4510, app(app(ty_@2, cgb), cgc)) -> new_lt4(vyw4310, vyw4510, cgb, cgc) new_lt21(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) new_esEs26(vyw430, vyw450, app(ty_Maybe, ce)) -> new_esEs4(vyw430, vyw450, ce) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs25(vyw300, vyw4000, app(ty_Ratio, bhg)) -> new_esEs11(vyw300, vyw4000, bhg) new_ltEs20(vyw4311, vyw4511, ty_Int) -> new_ltEs9(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, app(app(ty_@2, deb), dec)) -> new_esEs7(vyw32, vyw34, deb, dec) new_esEs15(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_ltEs16(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), cdf, cdg) -> new_pePe(new_lt21(vyw4310, vyw4510, cdf), new_asAs(new_esEs27(vyw4310, vyw4510, cdf), new_ltEs20(vyw4311, vyw4511, cdg))) new_esEs28(vyw301, vyw4001, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs6(vyw301, vyw4001, cge, cgf, cgg) new_esEs29(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs31(vyw30, vyw400, app(app(ty_@2, bcb), bcc)) -> new_esEs7(vyw30, vyw400, bcb, bcc) new_lt20(vyw430, vyw450, app(app(ty_Either, bh), ca)) -> new_lt5(vyw430, vyw450, bh, ca) new_esEs24(vyw4310, vyw4510, ty_@0) -> new_esEs21(vyw4310, vyw4510) new_compare113(vyw430, vyw450, False, cb, cc, cd) -> GT new_asAs(False, vyw66) -> False new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bcf) -> new_esEs21(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Integer) -> new_ltEs6(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(ty_Ratio, cfe)) -> new_lt12(vyw4310, vyw4510, cfe) new_compare5(vyw430, vyw450, bf, bg) -> new_compare29(vyw430, vyw450, new_esEs7(vyw430, vyw450, bf, bg), bf, bg) new_lt20(vyw430, vyw450, ty_Bool) -> new_lt18(vyw430, vyw450) new_esEs14(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs13(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, de), df), dg)) -> new_ltEs15(vyw4310, vyw4510, de, df, dg) new_compare17(vyw4300, vyw4500, app(app(ty_Either, ee), ef)) -> new_compare7(vyw4300, vyw4500, ee, ef) new_compare17(vyw4300, vyw4500, app(app(ty_@2, fd), ff)) -> new_compare5(vyw4300, vyw4500, fd, ff) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(vyw430, vyw450, False, ce) -> GT new_lt15(vyw430, vyw450) -> new_esEs8(new_compare9(vyw430, vyw450), LT) new_esEs17(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_compare17(vyw4300, vyw4500, ty_@0) -> new_compare6(vyw4300, vyw4500) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(app(ty_@2, ddb), ddc)) -> new_ltEs16(vyw4310, vyw4510, ddb, ddc) The set Q consists of the following terms: new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs8(EQ, EQ) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Char) new_esEs4(Just(x0), Just(x1), ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare211(x0, x1, False, x2) new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_compare17(x0, x1, ty_@0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs23(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_sr0(Integer(x0), Integer(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Float) new_esEs20(False, True) new_esEs20(True, False) new_ltEs20(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare24(x0, x1, False) new_esEs4(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare12(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_@0) new_lt5(x0, x1, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_compare6(@0, @0) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_@0) new_compare10(x0, x1, True) new_ltEs6(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Just(x1), ty_Char) new_esEs32(x0, x1, ty_Double) new_lt11(x0, x1) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Char) new_lt21(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1) new_lt21(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_esEs23(x0, x1, ty_@0) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs32(x0, x1, ty_Int) new_compare17(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Left(x0), Left(x1), ty_Float, x2) new_compare24(x0, x1, True) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_lt14(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Zero) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs20(False, False) new_esEs25(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_pePe(False, x0) new_lt21(x0, x1, ty_Bool) new_compare16(x0, x1, True) new_ltEs19(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Ordering) new_esEs17(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs22([], [], x0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, ty_Int) new_ltEs10(Right(x0), Right(x1), x2, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_primPlusNat1(Succ(x0), x1) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, ty_Float) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt18(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs18(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(True, True) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_lt13(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_lt17(x0, x1) new_compare17(x0, x1, ty_Ordering) new_ltEs10(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_esEs17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_lt14(x0, x1, ty_Bool) new_compare17(x0, x1, ty_Double) new_esEs17(x0, x1, ty_Double) new_esEs19(x0, x1, ty_@0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs15(Char(x0), Char(x1)) new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Char) new_lt21(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Char) new_esEs8(GT, GT) new_ltEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_ltEs17(LT, LT) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs7(Just(x0), Nothing, x1) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1) new_esEs31(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_sr(x0, x1) new_esEs32(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Float) new_primCompAux00(x0, GT) new_esEs19(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_@0) new_lt14(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt6(x0, x1) new_lt8(x0, x1, x2, x3, x4) new_ltEs17(GT, GT) new_esEs26(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare113(x0, x1, False, x2, x3, x4) new_esEs17(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, False, x2) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, ty_Char) new_compare8(x0, x1) new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Just(x0), Just(x1), ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Float) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_lt19(x0, x1, x2) new_esEs29(x0, x1, ty_Int) new_ltEs17(LT, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs17(EQ, LT) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs18(x0, x1, ty_Int) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs22(:(x0, x1), [], x2) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, ty_Float) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_@0) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs17(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_esEs25(x0, x1, ty_@0) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_@0) new_lt13(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_lt4(x0, x1, x2, x3) new_lt14(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False) new_esEs17(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_ltEs10(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, True, x2) new_ltEs10(Left(x0), Left(x1), ty_@0, x2) new_primCompAux00(x0, EQ) new_lt9(x0, x1, x2) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs17(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare210(x0, x1, True, x2, x3, x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, ty_@0) new_ltEs7(Nothing, Just(x0), x1) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs9(x0, x1) new_ltEs13(x0, x1) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs19(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_ltEs5(x0, x1) new_lt13(x0, x1, ty_Ordering) new_not(True) new_esEs29(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), ty_Double) new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs7(Just(x0), Just(x1), ty_@0) new_lt14(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs11(x0, x1) new_ltEs10(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt13(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare0([], :(x0, x1), x2) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_@0) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Int) new_esEs17(x0, x1, ty_Integer) new_ltEs4(False, True) new_compare0([], [], x0) new_ltEs4(True, False) new_compare27(x0, x1) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt16(x0, x1) new_compare113(x0, x1, True, x2, x3, x4) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(x0, x1, ty_Int) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_compare14(Char(x0), Char(x1)) new_compare7(x0, x1, x2, x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Char) new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) new_lt14(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Just(x0), Just(x1), ty_Float) new_compare0(:(x0, x1), [], x2) new_esEs4(Just(x0), Just(x1), ty_Double) new_primPlusNat0(Succ(x0), Zero) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs14(x0, x1, x2) new_esEs19(x0, x1, ty_Integer) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_lt14(x0, x1, app(ty_[], x2)) new_ltEs7(Nothing, Nothing, x0) new_esEs27(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Float) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, True, x2) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Integer(x0), Integer(x1)) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(True, True) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs17(x0, x1, ty_Float) new_compare17(x0, x1, ty_Float) new_compare9(Integer(x0), Integer(x1)) new_compare5(x0, x1, x2, x3) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_lt21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Double) new_esEs4(Just(x0), Nothing, x1) new_primPlusNat0(Zero, Succ(x0)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(x0, x1) new_esEs13(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Double) new_ltEs4(False, False) new_lt21(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_compare16(x0, x1, False) new_esEs28(x0, x1, ty_Char) new_esEs17(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs17(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Succ(x0)) new_esEs17(x0, x1, app(ty_Ratio, x2)) new_esEs4(Nothing, Just(x0), x1) new_esEs17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22([], :(x0, x1), x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(Double(x0, x1), Double(x2, x3)) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs22(:(x0, x1), :(x2, x3), x4) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_not(False) new_compare17(x0, x1, ty_Int) new_lt13(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_ltEs12(x0, x1, x2) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Char) new_esEs4(Nothing, Nothing, x0) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_lt14(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs10(Right(x0), Right(x1), x2, ty_Char) new_esEs13(x0, x1, ty_Int) new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) new_compare10(x0, x1, False) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_compare13(x0, x1, x2) new_esEs28(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_ltEs10(Right(x0), Right(x1), x2, ty_Int) new_compare29(x0, x1, True, x2, x3) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_esEs17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_ltEs10(Right(x0), Left(x1), x2, x3) new_ltEs10(Left(x0), Right(x1), x2, x3) new_compare26(x0, x1, False, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_lt15(x0, x1) new_esEs21(@0, @0) new_esEs19(x0, x1, ty_Bool) new_compare25(x0, x1, True) new_esEs24(x0, x1, ty_Float) new_lt12(x0, x1, x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_primCmpNat0(Zero, Zero) new_compare210(x0, x1, False, x2, x3, x4) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) TransformationProof (EQUIVALENT) By rewriting [LPAR04] the rule new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs8(new_compare29(@2(vyw21, vyw22), @2(vyw15, vyw16), new_esEs7(@2(vyw21, vyw22), @2(vyw15, vyw16), ba, bb), ba, bb), GT), h, ba, bb) at position [8,0,2] we obtained the following new rules [LPAR04]: (new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs8(new_compare29(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs29(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb),new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs8(new_compare29(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs29(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb)) ---------------------------------------- (22) Obligation: Q DP problem: The TRS P consists of the following rules: new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw19, @2(vyw21, vyw22), h, ba, bb) new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw20, @2(vyw21, vyw22), h, ba, bb) new_elemFM01(Branch(@2(vyw400, vyw401), vyw41, vyw42, vyw43, vyw44), @2(vyw30, vyw31), bc, bd, be) -> new_elemFM0(vyw400, vyw401, vyw41, vyw42, vyw43, vyw44, vyw30, vyw31, new_esEs30(vyw30, vyw31, vyw400, vyw401, new_esEs31(vyw30, vyw400, bd), bd, be), bc, bd, be) new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs8(new_compare29(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs29(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) The TRS R consists of the following rules: new_lt13(vyw4311, vyw4511, app(ty_[], beh)) -> new_lt19(vyw4311, vyw4511, beh) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vyw118) -> True new_esEs25(vyw300, vyw4000, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs6(vyw300, vyw4000, bha, bhb, bhc) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, bcf) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, ty_@0) -> new_ltEs5(vyw431, vyw451) new_esEs32(vyw32, vyw34, ty_Integer) -> new_esEs14(vyw32, vyw34) new_compare17(vyw4300, vyw4500, app(ty_[], eh)) -> new_compare0(vyw4300, vyw4500, eh) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs27(vyw4310, vyw4510, ty_Bool) -> new_esEs20(vyw4310, vyw4510) new_compare112(vyw430, vyw450, True, ce) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw4310, vyw4510, app(app(ty_Either, cfc), cfd)) -> new_esEs5(vyw4310, vyw4510, cfc, cfd) new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT new_compare26(vyw430, vyw450, True, bh, ca) -> EQ new_compare28(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs24(vyw4310, vyw4510, ty_Ordering) -> new_esEs8(vyw4310, vyw4510) new_lt20(vyw430, vyw450, ty_Ordering) -> new_lt7(vyw430, vyw450) new_esEs29(vyw300, vyw4000, app(ty_[], dad)) -> new_esEs22(vyw300, vyw4000, dad) new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) new_compare210(vyw430, vyw450, True, cb, cc, cd) -> EQ new_esEs29(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_compare211(vyw430, vyw450, True, ce) -> EQ new_esEs26(vyw430, vyw450, app(app(ty_@2, bf), bg)) -> new_esEs7(vyw430, vyw450, bf, bg) new_lt4(vyw430, vyw450, bf, bg) -> new_esEs8(new_compare5(vyw430, vyw450, bf, bg), LT) new_esEs13(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_compare111(vyw99, vyw100, vyw101, vyw102, False, cac, cad) -> GT new_ltEs4(False, True) -> True new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, dfa), dfb), dfc)) -> new_esEs6(vyw300, vyw4000, dfa, dfb, dfc) new_esEs18(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs32(vyw32, vyw34, app(ty_Ratio, dee)) -> new_esEs11(vyw32, vyw34, dee) new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs9(vyw4311, vyw4511) new_esEs23(vyw4311, vyw4511, app(app(ty_Either, bee), bef)) -> new_esEs5(vyw4311, vyw4511, bee, bef) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Int, cdd) -> new_ltEs9(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(app(ty_Either, hb), hc)) -> new_esEs5(vyw302, vyw4002, hb, hc) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare110(vyw99, vyw100, vyw101, vyw102, False, vyw104, cac, cad) -> new_compare111(vyw99, vyw100, vyw101, vyw102, vyw104, cac, cad) new_esEs32(vyw32, vyw34, ty_Char) -> new_esEs15(vyw32, vyw34) new_esEs26(vyw430, vyw450, ty_Char) -> new_esEs15(vyw430, vyw450) new_esEs17(vyw302, vyw4002, ty_Bool) -> new_esEs20(vyw302, vyw4002) new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs20(vyw4311, vyw4511) new_esEs29(vyw300, vyw4000, app(app(app(ty_@3, chg), chh), daa)) -> new_esEs6(vyw300, vyw4000, chg, chh, daa) new_esEs8(EQ, EQ) -> True new_compare17(vyw4300, vyw4500, ty_Int) -> new_compare8(vyw4300, vyw4500) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs18(vyw4312, vyw4512, ty_Float) -> new_ltEs11(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, app(ty_Ratio, bbh)) -> new_esEs11(vyw430, vyw450, bbh) new_esEs26(vyw430, vyw450, ty_Integer) -> new_esEs14(vyw430, vyw450) new_lt13(vyw4311, vyw4511, app(app(ty_Either, bee), bef)) -> new_lt5(vyw4311, vyw4511, bee, bef) new_esEs28(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs26(vyw430, vyw450, ty_Float) -> new_esEs16(vyw430, vyw450) new_esEs32(vyw32, vyw34, ty_Float) -> new_esEs16(vyw32, vyw34) new_ltEs17(LT, GT) -> True new_not(True) -> False new_ltEs18(vyw4312, vyw4512, app(ty_Maybe, bdb)) -> new_ltEs7(vyw4312, vyw4512, bdb) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_[], dbd), cdd) -> new_ltEs14(vyw4310, vyw4510, dbd) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_primCompAux00(vyw126, LT) -> LT new_lt13(vyw4311, vyw4511, ty_Double) -> new_lt11(vyw4311, vyw4511) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, dbe), dbf), dbg), cdd) -> new_ltEs15(vyw4310, vyw4510, dbe, dbf, dbg) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dfg)) -> new_esEs11(vyw300, vyw4000, dfg) new_esEs18(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], dff)) -> new_esEs22(vyw300, vyw4000, dff) new_compare13(vyw430, vyw450, ce) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, ce), ce) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(ty_Maybe, cbg)) -> new_esEs4(vyw300, vyw4000, cbg) new_ltEs17(EQ, GT) -> True new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(ty_[], dcf)) -> new_ltEs14(vyw4310, vyw4510, dcf) new_esEs19(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_lt21(vyw4310, vyw4510, ty_Char) -> new_lt16(vyw4310, vyw4510) new_compare17(vyw4300, vyw4500, app(ty_Maybe, ed)) -> new_compare13(vyw4300, vyw4500, ed) new_esEs17(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_lt21(vyw4310, vyw4510, ty_Integer) -> new_lt15(vyw4310, vyw4510) new_esEs31(vyw30, vyw400, ty_Float) -> new_esEs16(vyw30, vyw400) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, cba), cbb), bcf) -> new_esEs7(vyw300, vyw4000, cba, cbb) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_lt13(vyw4311, vyw4511, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_lt8(vyw4311, vyw4511, bfa, bfb, bfc) new_esEs31(vyw30, vyw400, app(ty_[], bcd)) -> new_esEs22(vyw30, vyw400, bcd) new_ltEs7(Nothing, Just(vyw4510), cf) -> True new_compare8(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) new_esEs27(vyw4310, vyw4510, ty_Int) -> new_esEs10(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Float, cdd) -> new_ltEs11(vyw4310, vyw4510) new_lt14(vyw4310, vyw4510, ty_Double) -> new_lt11(vyw4310, vyw4510) new_ltEs17(LT, LT) -> True new_lt13(vyw4311, vyw4511, ty_@0) -> new_lt10(vyw4311, vyw4511) new_esEs17(vyw302, vyw4002, ty_Int) -> new_esEs10(vyw302, vyw4002) new_lt20(vyw430, vyw450, ty_Double) -> new_lt11(vyw430, vyw450) new_primCompAux00(vyw126, GT) -> GT new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs10(vyw4311, vyw4511) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_esEs25(vyw300, vyw4000, app(ty_[], bhf)) -> new_esEs22(vyw300, vyw4000, bhf) new_esEs25(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, bcf) -> new_esEs9(vyw300, vyw4000) new_compare28(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_lt21(vyw4310, vyw4510, app(ty_Maybe, cfb)) -> new_lt9(vyw4310, vyw4510, cfb) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_compare15(vyw430, vyw450, True, bh, ca) -> LT new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Ordering) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Char) -> new_esEs15(vyw300, vyw4000) new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs28(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_ltEs10(Right(vyw4310), Left(vyw4510), cdc, cdd) -> False new_esEs19(vyw300, vyw4000, app(ty_[], bbd)) -> new_esEs22(vyw300, vyw4000, bbd) new_esEs24(vyw4310, vyw4510, ty_Double) -> new_esEs9(vyw4310, vyw4510) new_compare16(vyw430, vyw450, False) -> GT new_lt17(vyw430, vyw450) -> new_esEs8(new_compare18(vyw430, vyw450), LT) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, cae), bcf) -> new_esEs4(vyw300, vyw4000, cae) new_ltEs20(vyw4311, vyw4511, ty_@0) -> new_ltEs5(vyw4311, vyw4511) new_esEs31(vyw30, vyw400, app(app(app(ty_@3, fg), fh), ga)) -> new_esEs6(vyw30, vyw400, fg, fh, ga) new_lt21(vyw4310, vyw4510, ty_Float) -> new_lt17(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Bool, cdd) -> new_ltEs4(vyw4310, vyw4510) new_esEs31(vyw30, vyw400, ty_Integer) -> new_esEs14(vyw30, vyw400) new_lt16(vyw430, vyw450) -> new_esEs8(new_compare14(vyw430, vyw450), LT) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw45000)) -> LT new_compare17(vyw4300, vyw4500, ty_Char) -> new_compare14(vyw4300, vyw4500) new_compare17(vyw4300, vyw4500, ty_Bool) -> new_compare27(vyw4300, vyw4500) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Double, cdd) -> new_ltEs13(vyw4310, vyw4510) new_esEs19(vyw300, vyw4000, app(app(app(ty_@3, bag), bah), bba)) -> new_esEs6(vyw300, vyw4000, bag, bah, bba) new_ltEs20(vyw4311, vyw4511, app(ty_Maybe, cdh)) -> new_ltEs7(vyw4311, vyw4511, cdh) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs6(vyw4310, vyw4510) new_ltEs19(vyw431, vyw451, ty_Integer) -> new_ltEs6(vyw431, vyw451) new_lt9(vyw430, vyw450, ce) -> new_esEs8(new_compare13(vyw430, vyw450, ce), LT) new_esEs27(vyw4310, vyw4510, app(app(ty_@2, cgb), cgc)) -> new_esEs7(vyw4310, vyw4510, cgb, cgc) new_primCmpNat0(Succ(vyw43000), Zero) -> GT new_pePe(False, vyw118) -> vyw118 new_compare11(vyw430, vyw450) -> new_compare25(vyw430, vyw450, new_esEs8(vyw430, vyw450)) new_ltEs12(vyw431, vyw451, cde) -> new_not(new_esEs8(new_compare19(vyw431, vyw451, cde), GT)) new_esEs20(False, False) -> True new_esEs28(vyw301, vyw4001, app(ty_[], chb)) -> new_esEs22(vyw301, vyw4001, chb) new_lt20(vyw430, vyw450, ty_Float) -> new_lt17(vyw430, vyw450) new_ltEs20(vyw4311, vyw4511, ty_Float) -> new_ltEs11(vyw4311, vyw4511) new_ltEs18(vyw4312, vyw4512, ty_@0) -> new_ltEs5(vyw4312, vyw4512) new_esEs25(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare19(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare9(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) new_esEs17(vyw302, vyw4002, ty_Char) -> new_esEs15(vyw302, vyw4002) new_ltEs6(vyw431, vyw451) -> new_not(new_esEs8(new_compare9(vyw431, vyw451), GT)) new_lt14(vyw4310, vyw4510, app(ty_[], bgb)) -> new_lt19(vyw4310, vyw4510, bgb) new_esEs17(vyw302, vyw4002, ty_Integer) -> new_esEs14(vyw302, vyw4002) new_esEs19(vyw300, vyw4000, app(ty_Ratio, bbe)) -> new_esEs11(vyw300, vyw4000, bbe) new_compare110(vyw99, vyw100, vyw101, vyw102, True, vyw104, cac, cad) -> new_compare111(vyw99, vyw100, vyw101, vyw102, True, cac, cad) new_esEs29(vyw300, vyw4000, app(ty_Ratio, dae)) -> new_esEs11(vyw300, vyw4000, dae) new_lt20(vyw430, vyw450, app(ty_Maybe, ce)) -> new_lt9(vyw430, vyw450, ce) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dbc), cdd) -> new_ltEs12(vyw4310, vyw4510, dbc) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs26(vyw430, vyw450, app(ty_[], ec)) -> new_esEs22(vyw430, vyw450, ec) new_esEs27(vyw4310, vyw4510, ty_Integer) -> new_esEs14(vyw4310, vyw4510) new_esEs19(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare18(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare18(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw4311, vyw4511, app(ty_Maybe, bed)) -> new_esEs4(vyw4311, vyw4511, bed) new_esEs32(vyw32, vyw34, app(app(app(ty_@3, ddg), ddh), dea)) -> new_esEs6(vyw32, vyw34, ddg, ddh, dea) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs26(vyw430, vyw450, ty_Bool) -> new_esEs20(vyw430, vyw450) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, cbd), bcf) -> new_esEs11(vyw300, vyw4000, cbd) new_lt14(vyw4310, vyw4510, app(app(ty_@2, bgf), bgg)) -> new_lt4(vyw4310, vyw4510, bgf, bgg) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(app(ty_@2, ccc), ccd)) -> new_esEs7(vyw300, vyw4000, ccc, ccd) new_esEs18(vyw301, vyw4001, app(ty_[], bab)) -> new_esEs22(vyw301, vyw4001, bab) new_esEs19(vyw300, vyw4000, app(ty_Maybe, baf)) -> new_esEs4(vyw300, vyw4000, baf) new_esEs24(vyw4310, vyw4510, app(app(ty_Either, bfg), bfh)) -> new_esEs5(vyw4310, vyw4510, bfg, bfh) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, app(ty_[], cab)) -> new_ltEs14(vyw431, vyw451, cab) new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT new_compare29(@2(vyw430, vyw431), @2(vyw450, vyw451), False, cda, cdb) -> new_compare110(vyw430, vyw431, vyw450, vyw451, new_lt20(vyw430, vyw450, cda), new_asAs(new_esEs26(vyw430, vyw450, cda), new_ltEs19(vyw431, vyw451, cdb)), cda, cdb) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(app(ty_Either, dcc), dcd)) -> new_ltEs10(vyw4310, vyw4510, dcc, dcd) new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_lt6(vyw430, vyw450) -> new_esEs8(new_compare8(vyw430, vyw450), LT) new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), fg, fh, ga) -> new_asAs(new_esEs19(vyw300, vyw4000, fg), new_asAs(new_esEs18(vyw301, vyw4001, fh), new_esEs17(vyw302, vyw4002, ga))) new_esEs28(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_lt13(vyw4311, vyw4511, ty_Bool) -> new_lt18(vyw4311, vyw4511) new_lt21(vyw4310, vyw4510, ty_Int) -> new_lt6(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(ty_Ratio, ha)) -> new_esEs11(vyw302, vyw4002, ha) new_lt14(vyw4310, vyw4510, app(ty_Ratio, bga)) -> new_lt12(vyw4310, vyw4510, bga) new_lt14(vyw4310, vyw4510, ty_Integer) -> new_lt15(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Char, cdd) -> new_ltEs8(vyw4310, vyw4510) new_esEs32(vyw32, vyw34, app(app(ty_Either, def), deg)) -> new_esEs5(vyw32, vyw34, def, deg) new_compare210(vyw430, vyw450, False, cb, cc, cd) -> new_compare113(vyw430, vyw450, new_ltEs15(vyw430, vyw450, cb, cc, cd), cb, cc, cd) new_esEs28(vyw301, vyw4001, ty_Bool) -> new_esEs20(vyw301, vyw4001) new_esEs29(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs15(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), bcg, bch, bda) -> new_pePe(new_lt14(vyw4310, vyw4510, bcg), new_asAs(new_esEs24(vyw4310, vyw4510, bcg), new_pePe(new_lt13(vyw4311, vyw4511, bch), new_asAs(new_esEs23(vyw4311, vyw4511, bch), new_ltEs18(vyw4312, vyw4512, bda))))) new_lt13(vyw4311, vyw4511, ty_Ordering) -> new_lt7(vyw4311, vyw4511) new_esEs24(vyw4310, vyw4510, app(app(app(ty_@3, bgc), bgd), bge)) -> new_esEs6(vyw4310, vyw4510, bgc, bgd, bge) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_esEs29(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_ltEs9(vyw431, vyw451) -> new_not(new_esEs8(new_compare8(vyw431, vyw451), GT)) new_esEs17(vyw302, vyw4002, ty_@0) -> new_esEs21(vyw302, vyw4002) new_lt12(vyw430, vyw450, bbh) -> new_esEs8(new_compare19(vyw430, vyw450, bbh), LT) new_esEs31(vyw30, vyw400, app(ty_Maybe, bca)) -> new_esEs4(vyw30, vyw400, bca) new_primPlusNat1(Succ(vyw900), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw900, vyw400000))) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs19(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_lt20(vyw430, vyw450, ty_@0) -> new_lt10(vyw430, vyw450) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, cbe), cbf), bcf) -> new_esEs5(vyw300, vyw4000, cbe, cbf) new_compare17(vyw4300, vyw4500, app(ty_Ratio, eg)) -> new_compare19(vyw4300, vyw4500, eg) new_primPlusNat0(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_lt13(vyw4311, vyw4511, ty_Char) -> new_lt16(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, ty_Int) -> new_esEs10(vyw32, vyw34) new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs16(vyw4311, vyw4511) new_compare19(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare8(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Integer, cdd) -> new_ltEs6(vyw4310, vyw4510) new_esEs8(LT, LT) -> True new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), eb) -> new_asAs(new_esEs13(vyw300, vyw4000, eb), new_esEs12(vyw301, vyw4001, eb)) new_esEs28(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_lt14(vyw4310, vyw4510, app(app(ty_Either, bfg), bfh)) -> new_lt5(vyw4310, vyw4510, bfg, bfh) new_lt21(vyw4310, vyw4510, ty_Double) -> new_lt11(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, ty_Char) -> new_ltEs8(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, ty_Double) -> new_esEs9(vyw430, vyw450) new_esEs31(vyw30, vyw400, app(ty_Ratio, eb)) -> new_esEs11(vyw30, vyw400, eb) new_compare17(vyw4300, vyw4500, ty_Float) -> new_compare18(vyw4300, vyw4500) new_esEs27(vyw4310, vyw4510, ty_Char) -> new_esEs15(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs15(vyw4312, vyw4512, bdg, bdh, bea) new_esEs22(:(vyw300, vyw301), [], bcd) -> False new_esEs22([], :(vyw4000, vyw4001), bcd) -> False new_ltEs20(vyw4311, vyw4511, ty_Double) -> new_ltEs13(vyw4311, vyw4511) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_@0) -> new_esEs21(vyw30, vyw400) new_compare17(vyw4300, vyw4500, ty_Ordering) -> new_compare11(vyw4300, vyw4500) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs4(vyw4310, vyw4510) new_lt13(vyw4311, vyw4511, ty_Integer) -> new_lt15(vyw4311, vyw4511) new_lt14(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) new_esEs18(vyw301, vyw4001, app(ty_Ratio, bac)) -> new_esEs11(vyw301, vyw4001, bac) new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_esEs6(vyw4311, vyw4511, bfa, bfb, bfc) new_ltEs20(vyw4311, vyw4511, app(app(app(ty_@3, cee), cef), ceg)) -> new_ltEs15(vyw4311, vyw4511, cee, cef, ceg) new_ltEs19(vyw431, vyw451, ty_Ordering) -> new_ltEs17(vyw431, vyw451) new_ltEs19(vyw431, vyw451, ty_Float) -> new_ltEs11(vyw431, vyw451) new_compare25(vyw430, vyw450, False) -> new_compare16(vyw430, vyw450, new_ltEs17(vyw430, vyw450)) new_esEs28(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_esEs27(vyw4310, vyw4510, ty_Double) -> new_esEs9(vyw4310, vyw4510) new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) new_esEs25(vyw300, vyw4000, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vyw300, vyw4000, bhd, bhe) new_lt18(vyw430, vyw450) -> new_esEs8(new_compare27(vyw430, vyw450), LT) new_esEs32(vyw32, vyw34, app(ty_Maybe, ddf)) -> new_esEs4(vyw32, vyw34, ddf) new_compare9(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) new_esEs17(vyw302, vyw4002, app(ty_[], gh)) -> new_esEs22(vyw302, vyw4002, gh) new_esEs31(vyw30, vyw400, ty_Int) -> new_esEs10(vyw30, vyw400) new_lt21(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) new_esEs18(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_ltEs19(vyw431, vyw451, ty_Double) -> new_ltEs13(vyw431, vyw451) new_ltEs19(vyw431, vyw451, app(app(app(ty_@3, bcg), bch), bda)) -> new_ltEs15(vyw431, vyw451, bcg, bch, bda) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_@0) -> new_esEs21(vyw300, vyw4000) new_ltEs17(EQ, EQ) -> True new_ltEs20(vyw4311, vyw4511, ty_Ordering) -> new_ltEs17(vyw4311, vyw4511) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, deh)) -> new_esEs4(vyw300, vyw4000, deh) new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs8(vyw4311, vyw4511) new_compare24(vyw430, vyw450, False) -> new_compare10(vyw430, vyw450, new_ltEs4(vyw430, vyw450)) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_lt14(vyw4310, vyw4510, ty_Bool) -> new_lt18(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(ty_[], cce)) -> new_esEs22(vyw300, vyw4000, cce) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, bcf) -> new_esEs15(vyw300, vyw4000) new_ltEs17(GT, LT) -> False new_lt13(vyw4311, vyw4511, ty_Float) -> new_lt17(vyw4311, vyw4511) new_ltEs17(EQ, LT) -> False new_compare16(vyw430, vyw450, True) -> LT new_esEs28(vyw301, vyw4001, app(ty_Ratio, chc)) -> new_esEs11(vyw301, vyw4001, chc) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_esEs19(vyw300, vyw4000, app(app(ty_Either, bbf), bbg)) -> new_esEs5(vyw300, vyw4000, bbf, bbg) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs6(vyw300, vyw4000, cbh, cca, ccb) new_compare17(vyw4300, vyw4500, ty_Double) -> new_compare28(vyw4300, vyw4500) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], cbc), bcf) -> new_esEs22(vyw300, vyw4000, cbc) new_compare7(vyw430, vyw450, bh, ca) -> new_compare26(vyw430, vyw450, new_esEs5(vyw430, vyw450, bh, ca), bh, ca) new_esEs24(vyw4310, vyw4510, app(ty_Maybe, bff)) -> new_esEs4(vyw4310, vyw4510, bff) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Int) -> new_ltEs9(vyw4310, vyw4510) new_compare12(vyw430, vyw450, cb, cc, cd) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, cb, cc, cd), cb, cc, cd) new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(ty_Either, dba), dbb), cdd) -> new_ltEs10(vyw4310, vyw4510, dba, dbb) new_esEs19(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs24(vyw4310, vyw4510, ty_Char) -> new_esEs15(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(ty_[], cff)) -> new_lt19(vyw4310, vyw4510, cff) new_ltEs19(vyw431, vyw451, ty_Int) -> new_ltEs9(vyw431, vyw451) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs9(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs6(vyw302, vyw4002, gc, gd, ge) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_@0, cdd) -> new_ltEs5(vyw4310, vyw4510) new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) new_esEs24(vyw4310, vyw4510, ty_Integer) -> new_esEs14(vyw4310, vyw4510) new_primCompAux0(vyw4300, vyw4500, vyw119, ec) -> new_primCompAux00(vyw119, new_compare17(vyw4300, vyw4500, ec)) new_esEs18(vyw301, vyw4001, app(ty_Maybe, hd)) -> new_esEs4(vyw301, vyw4001, hd) new_ltEs18(vyw4312, vyw4512, app(ty_[], bdf)) -> new_ltEs14(vyw4312, vyw4512, bdf) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_Maybe, dah), cdd) -> new_ltEs7(vyw4310, vyw4510, dah) new_esEs27(vyw4310, vyw4510, app(app(app(ty_@3, cfg), cfh), cga)) -> new_esEs6(vyw4310, vyw4510, cfg, cfh, cga) new_esEs28(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_lt13(vyw4311, vyw4511, app(ty_Ratio, beg)) -> new_lt12(vyw4311, vyw4511, beg) new_ltEs20(vyw4311, vyw4511, ty_Char) -> new_ltEs8(vyw4311, vyw4511) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Right(vyw4510), cdc, cdd) -> True new_esEs18(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_ltEs18(vyw4312, vyw4512, ty_Double) -> new_ltEs13(vyw4312, vyw4512) new_lt14(vyw4310, vyw4510, ty_Int) -> new_lt6(vyw4310, vyw4510) new_compare111(vyw99, vyw100, vyw101, vyw102, True, cac, cad) -> LT new_esEs31(vyw30, vyw400, ty_Bool) -> new_esEs20(vyw30, vyw400) new_compare0([], :(vyw4500, vyw4501), ec) -> LT new_asAs(True, vyw66) -> vyw66 new_compare113(vyw430, vyw450, True, cb, cc, cd) -> LT new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, bcf) -> new_esEs14(vyw300, vyw4000) new_compare211(vyw430, vyw450, False, ce) -> new_compare112(vyw430, vyw450, new_ltEs7(vyw430, vyw450, ce), ce) new_esEs25(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Double) -> new_esEs9(vyw30, vyw400) new_ltEs20(vyw4311, vyw4511, app(app(ty_Either, cea), ceb)) -> new_ltEs10(vyw4311, vyw4511, cea, ceb) new_ltEs18(vyw4312, vyw4512, ty_Ordering) -> new_ltEs17(vyw4312, vyw4512) new_esEs32(vyw32, vyw34, ty_@0) -> new_esEs21(vyw32, vyw34) new_compare17(vyw4300, vyw4500, app(app(app(ty_@3, fa), fb), fc)) -> new_compare12(vyw4300, vyw4500, fa, fb, fc) new_lt14(vyw4310, vyw4510, ty_Char) -> new_lt16(vyw4310, vyw4510) new_esEs27(vyw4310, vyw4510, app(ty_[], cff)) -> new_esEs22(vyw4310, vyw4510, cff) new_esEs18(vyw301, vyw4001, app(app(ty_@2, hh), baa)) -> new_esEs7(vyw301, vyw4001, hh, baa) new_esEs30(vyw31, vyw32, vyw33, vyw34, False, ddd, dde) -> new_esEs8(new_compare29(@2(vyw31, vyw32), @2(vyw33, vyw34), False, ddd, dde), LT) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, dfh), dga)) -> new_esEs5(vyw300, vyw4000, dfh, dga) new_esEs24(vyw4310, vyw4510, app(app(ty_@2, bgf), bgg)) -> new_esEs7(vyw4310, vyw4510, bgf, bgg) new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) new_lt13(vyw4311, vyw4511, app(ty_Maybe, bed)) -> new_lt9(vyw4311, vyw4511, bed) new_esEs29(vyw300, vyw4000, app(app(ty_Either, daf), dag)) -> new_esEs5(vyw300, vyw4000, daf, dag) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(ty_Maybe, dcb)) -> new_ltEs7(vyw4310, vyw4510, dcb) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs29(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_primCompAux00(vyw126, EQ) -> vyw126 new_compare0([], [], ec) -> EQ new_sr(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_lt7(vyw430, vyw450) -> new_esEs8(new_compare11(vyw430, vyw450), LT) new_ltEs7(Nothing, Nothing, cf) -> True new_lt14(vyw4310, vyw4510, app(app(app(ty_@3, bgc), bgd), bge)) -> new_lt8(vyw4310, vyw4510, bgc, bgd, bge) new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_@2, dh), ea)) -> new_ltEs16(vyw4310, vyw4510, dh, ea) new_esEs23(vyw4311, vyw4511, app(ty_Ratio, beg)) -> new_esEs11(vyw4311, vyw4511, beg) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, bcf) -> new_esEs16(vyw300, vyw4000) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_[], dd)) -> new_ltEs14(vyw4310, vyw4510, dd) new_compare10(vyw430, vyw450, False) -> GT new_esEs27(vyw4310, vyw4510, ty_Ordering) -> new_esEs8(vyw4310, vyw4510) new_ltEs20(vyw4311, vyw4511, app(ty_[], ced)) -> new_ltEs14(vyw4311, vyw4511, ced) new_ltEs8(vyw431, vyw451) -> new_not(new_esEs8(new_compare14(vyw431, vyw451), GT)) new_ltEs18(vyw4312, vyw4512, ty_Integer) -> new_ltEs6(vyw4312, vyw4512) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Bool) -> new_ltEs4(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Nothing, cf) -> False new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_Either, da), db)) -> new_ltEs10(vyw4310, vyw4510, da, db) new_esEs28(vyw301, vyw4001, app(ty_Maybe, cgd)) -> new_esEs4(vyw301, vyw4001, cgd) new_esEs23(vyw4311, vyw4511, app(app(ty_@2, bfd), bfe)) -> new_esEs7(vyw4311, vyw4511, bfd, bfe) new_ltEs20(vyw4311, vyw4511, app(app(ty_@2, ceh), cfa)) -> new_ltEs16(vyw4311, vyw4511, ceh, cfa) new_ltEs19(vyw431, vyw451, ty_Char) -> new_ltEs8(vyw431, vyw451) new_esEs13(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs26(vyw430, vyw450, ty_@0) -> new_esEs21(vyw430, vyw450) new_lt20(vyw430, vyw450, ty_Int) -> new_lt6(vyw430, vyw450) new_esEs4(Nothing, Nothing, bca) -> True new_lt20(vyw430, vyw450, app(app(app(ty_@3, cb), cc), cd)) -> new_lt8(vyw430, vyw450, cb, cc, cd) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(app(ty_Either, ccg), cch)) -> new_esEs5(vyw300, vyw4000, ccg, cch) new_esEs4(Nothing, Just(vyw4000), bca) -> False new_esEs4(Just(vyw300), Nothing, bca) -> False new_lt13(vyw4311, vyw4511, app(app(ty_@2, bfd), bfe)) -> new_lt4(vyw4311, vyw4511, bfd, bfe) new_lt8(vyw430, vyw450, cb, cc, cd) -> new_esEs8(new_compare12(vyw430, vyw450, cb, cc, cd), LT) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw4310, vyw4510, ty_Float) -> new_esEs16(vyw4310, vyw4510) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Double) -> new_ltEs13(vyw4310, vyw4510) new_esEs21(@0, @0) -> True new_esEs30(vyw31, vyw32, vyw33, vyw34, True, ddd, dde) -> new_esEs8(new_compare29(@2(vyw31, vyw32), @2(vyw33, vyw34), new_esEs32(vyw32, vyw34, dde), ddd, dde), LT) new_compare14(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Ordering, cdd) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), bce, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Float) -> new_ltEs11(vyw4310, vyw4510) new_esEs32(vyw32, vyw34, ty_Ordering) -> new_esEs8(vyw32, vyw34) new_compare27(vyw430, vyw450) -> new_compare24(vyw430, vyw450, new_esEs20(vyw430, vyw450)) new_esEs24(vyw4310, vyw4510, ty_Bool) -> new_esEs20(vyw4310, vyw4510) new_esEs29(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_ltEs5(vyw431, vyw451) -> new_not(new_esEs8(new_compare6(vyw431, vyw451), GT)) new_ltEs19(vyw431, vyw451, app(app(ty_@2, cdf), cdg)) -> new_ltEs16(vyw431, vyw451, cdf, cdg) new_ltEs13(vyw431, vyw451) -> new_not(new_esEs8(new_compare28(vyw431, vyw451), GT)) new_lt14(vyw4310, vyw4510, app(ty_Maybe, bff)) -> new_lt9(vyw4310, vyw4510, bff) new_esEs32(vyw32, vyw34, app(ty_[], ded)) -> new_esEs22(vyw32, vyw34, ded) new_esEs18(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw431, vyw451, app(ty_Maybe, cf)) -> new_ltEs7(vyw431, vyw451, cf) new_ltEs20(vyw4311, vyw4511, app(ty_Ratio, cec)) -> new_ltEs12(vyw4311, vyw4511, cec) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs4(True, False) -> False new_esEs17(vyw302, vyw4002, app(app(ty_@2, gf), gg)) -> new_esEs7(vyw302, vyw4002, gf, gg) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, bcf) -> new_esEs20(vyw300, vyw4000) new_compare24(vyw430, vyw450, True) -> EQ new_esEs28(vyw301, vyw4001, app(app(ty_@2, cgh), cha)) -> new_esEs7(vyw301, vyw4001, cgh, cha) new_lt13(vyw4311, vyw4511, ty_Int) -> new_lt6(vyw4311, vyw4511) new_esEs25(vyw300, vyw4000, app(app(ty_Either, bhh), caa)) -> new_esEs5(vyw300, vyw4000, bhh, caa) new_esEs29(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs11(vyw431, vyw451) -> new_not(new_esEs8(new_compare18(vyw431, vyw451), GT)) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs26(vyw430, vyw450, ty_Ordering) -> new_esEs8(vyw430, vyw450) new_compare28(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare28(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs27(vyw4310, vyw4510, app(ty_Ratio, cfe)) -> new_esEs11(vyw4310, vyw4510, cfe) new_esEs7(@2(vyw300, vyw301), @2(vyw4000, vyw4001), bcb, bcc) -> new_asAs(new_esEs29(vyw300, vyw4000, bcb), new_esEs28(vyw301, vyw4001, bcc)) new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) new_ltEs18(vyw4312, vyw4512, app(app(ty_Either, bdc), bdd)) -> new_ltEs10(vyw4312, vyw4512, bdc, bdd) new_esEs31(vyw30, vyw400, app(app(ty_Either, bce), bcf)) -> new_esEs5(vyw30, vyw400, bce, bcf) new_lt11(vyw430, vyw450) -> new_esEs8(new_compare28(vyw430, vyw450), LT) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Ratio, dc)) -> new_ltEs12(vyw4310, vyw4510, dc) new_esEs19(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs31(vyw30, vyw400, ty_Char) -> new_esEs15(vyw30, vyw400) new_ltEs19(vyw431, vyw451, app(ty_Ratio, cde)) -> new_ltEs12(vyw431, vyw451, cde) new_esEs29(vyw300, vyw4000, app(ty_Maybe, chf)) -> new_esEs4(vyw300, vyw4000, chf) new_compare18(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs18(vyw301, vyw4001, ty_Bool) -> new_esEs20(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs27(vyw4310, vyw4510, ty_@0) -> new_esEs21(vyw4310, vyw4510) new_esEs25(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), bce, app(ty_Ratio, ccf)) -> new_esEs11(vyw300, vyw4000, ccf) new_lt20(vyw430, vyw450, app(ty_[], ec)) -> new_lt19(vyw430, vyw450, ec) new_ltEs4(False, False) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs15(vyw4311, vyw4511) new_esEs26(vyw430, vyw450, app(app(ty_Either, bh), ca)) -> new_esEs5(vyw430, vyw450, bh, ca) new_lt20(vyw430, vyw450, app(ty_Ratio, bbh)) -> new_lt12(vyw430, vyw450, bbh) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs11(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, caf), cag), cah), bcf) -> new_esEs6(vyw300, vyw4000, caf, cag, cah) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Maybe, cg)) -> new_ltEs7(vyw4310, vyw4510, cg) new_esEs26(vyw430, vyw450, app(app(app(ty_@3, cb), cc), cd)) -> new_esEs6(vyw430, vyw450, cb, cc, cd) new_esEs27(vyw4310, vyw4510, ty_Float) -> new_esEs16(vyw4310, vyw4510) new_ltEs20(vyw4311, vyw4511, ty_Integer) -> new_ltEs6(vyw4311, vyw4511) new_esEs18(vyw301, vyw4001, app(app(app(ty_@3, he), hf), hg)) -> new_esEs6(vyw301, vyw4001, he, hf, hg) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs19(vyw300, vyw4000, app(app(ty_@2, bbb), bbc)) -> new_esEs7(vyw300, vyw4000, bbb, bbc) new_lt10(vyw430, vyw450) -> new_esEs8(new_compare6(vyw430, vyw450), LT) new_not(False) -> True new_esEs29(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs20(vyw4311, vyw4511, ty_Bool) -> new_ltEs4(vyw4311, vyw4511) new_esEs18(vyw301, vyw4001, app(app(ty_Either, bad), bae)) -> new_esEs5(vyw301, vyw4001, bad, bae) new_esEs32(vyw32, vyw34, ty_Bool) -> new_esEs20(vyw32, vyw34) new_esEs31(vyw30, vyw400, ty_Ordering) -> new_esEs8(vyw30, vyw400) new_esEs17(vyw302, vyw4002, app(ty_Maybe, gb)) -> new_esEs4(vyw302, vyw4002, gb) new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(ty_@2, dbh), dca), cdd) -> new_ltEs16(vyw4310, vyw4510, dbh, dca) new_compare0(:(vyw4300, vyw4301), [], ec) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(vyw9000), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw9000, vyw4000000))) new_esEs5(Left(vyw300), Right(vyw4000), bce, bcf) -> False new_esEs5(Right(vyw300), Left(vyw4000), bce, bcf) -> False new_lt21(vyw4310, vyw4510, ty_Bool) -> new_lt18(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, ty_Int) -> new_ltEs9(vyw4312, vyw4512) new_ltEs18(vyw4312, vyw4512, app(ty_Ratio, bde)) -> new_ltEs12(vyw4312, vyw4512, bde) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs14(vyw4311, vyw4511) new_compare25(vyw430, vyw450, True) -> EQ new_lt20(vyw430, vyw450, ty_Integer) -> new_lt15(vyw430, vyw450) new_esEs29(vyw300, vyw4000, app(app(ty_@2, dab), dac)) -> new_esEs7(vyw300, vyw4000, dab, dac) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, bcf) -> new_esEs10(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(ty_Ratio, dce)) -> new_ltEs12(vyw4310, vyw4510, dce) new_ltEs18(vyw4312, vyw4512, app(app(ty_@2, beb), bec)) -> new_ltEs16(vyw4312, vyw4512, beb, bec) new_ltEs19(vyw431, vyw451, app(app(ty_Either, cdc), cdd)) -> new_ltEs10(vyw431, vyw451, cdc, cdd) new_esEs12(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_compare26(vyw430, vyw450, False, bh, ca) -> new_compare15(vyw430, vyw450, new_ltEs10(vyw430, vyw450, bh, ca), bh, ca) new_compare18(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_esEs24(vyw4310, vyw4510, ty_Int) -> new_esEs10(vyw4310, vyw4510) new_lt14(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs24(vyw4310, vyw4510, app(ty_[], bgb)) -> new_esEs22(vyw4310, vyw4510, bgb) new_lt14(vyw4310, vyw4510, ty_Float) -> new_lt17(vyw4310, vyw4510) new_esEs10(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs19(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw430, vyw450, True) -> LT new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), ec) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, ec), ec) new_lt20(vyw430, vyw450, app(app(ty_@2, bf), bg)) -> new_lt4(vyw430, vyw450, bf, bg) new_lt5(vyw430, vyw450, bh, ca) -> new_esEs8(new_compare7(vyw430, vyw450, bh, ca), LT) new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs21(vyw4311, vyw4511) new_ltEs17(GT, EQ) -> False new_compare17(vyw4300, vyw4500, ty_Integer) -> new_compare9(vyw4300, vyw4500) new_esEs25(vyw300, vyw4000, app(ty_Maybe, bgh)) -> new_esEs4(vyw300, vyw4000, bgh) new_ltEs14(vyw431, vyw451, cab) -> new_not(new_esEs8(new_compare0(vyw431, vyw451, cab), GT)) new_esEs12(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_lt19(vyw430, vyw450, ec) -> new_esEs8(new_compare0(vyw430, vyw450, ec), LT) new_compare6(@0, @0) -> EQ new_esEs23(vyw4311, vyw4511, app(ty_[], beh)) -> new_esEs22(vyw4311, vyw4511, beh) new_lt21(vyw4310, vyw4510, app(app(app(ty_@3, cfg), cfh), cga)) -> new_lt8(vyw4310, vyw4510, cfg, cfh, cga) new_esEs25(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, ty_Bool) -> new_ltEs4(vyw431, vyw451) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(app(app(ty_@3, dcg), dch), dda)) -> new_ltEs15(vyw4310, vyw4510, dcg, dch, dda) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs32(vyw32, vyw34, ty_Double) -> new_esEs9(vyw32, vyw34) new_ltEs4(True, True) -> True new_esEs22(:(vyw300, vyw301), :(vyw4000, vyw4001), bcd) -> new_asAs(new_esEs25(vyw300, vyw4000, bcd), new_esEs22(vyw301, vyw4001, bcd)) new_esEs20(True, True) -> True new_compare29(vyw43, vyw45, True, cda, cdb) -> EQ new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) new_lt20(vyw430, vyw450, ty_Char) -> new_lt16(vyw430, vyw450) new_esEs22([], [], bcd) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs24(vyw4310, vyw4510, app(ty_Ratio, bga)) -> new_esEs11(vyw4310, vyw4510, bga) new_esEs27(vyw4310, vyw4510, app(ty_Maybe, cfb)) -> new_esEs4(vyw4310, vyw4510, cfb) new_ltEs18(vyw4312, vyw4512, ty_Bool) -> new_ltEs4(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, ty_Int) -> new_esEs10(vyw430, vyw450) new_esEs28(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, dfd), dfe)) -> new_esEs7(vyw300, vyw4000, dfd, dfe) new_compare15(vyw430, vyw450, False, bh, ca) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(app(ty_Either, cfc), cfd)) -> new_lt5(vyw4310, vyw4510, cfc, cfd) new_ltEs17(GT, GT) -> True new_esEs25(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_lt21(vyw4310, vyw4510, app(app(ty_@2, cgb), cgc)) -> new_lt4(vyw4310, vyw4510, cgb, cgc) new_lt21(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) new_esEs26(vyw430, vyw450, app(ty_Maybe, ce)) -> new_esEs4(vyw430, vyw450, ce) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw301, vyw4001, app(app(ty_Either, chd), che)) -> new_esEs5(vyw301, vyw4001, chd, che) new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs25(vyw300, vyw4000, app(ty_Ratio, bhg)) -> new_esEs11(vyw300, vyw4000, bhg) new_ltEs20(vyw4311, vyw4511, ty_Int) -> new_ltEs9(vyw4311, vyw4511) new_esEs32(vyw32, vyw34, app(app(ty_@2, deb), dec)) -> new_esEs7(vyw32, vyw34, deb, dec) new_esEs15(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_ltEs16(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), cdf, cdg) -> new_pePe(new_lt21(vyw4310, vyw4510, cdf), new_asAs(new_esEs27(vyw4310, vyw4510, cdf), new_ltEs20(vyw4311, vyw4511, cdg))) new_esEs28(vyw301, vyw4001, app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs6(vyw301, vyw4001, cge, cgf, cgg) new_esEs29(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs31(vyw30, vyw400, app(app(ty_@2, bcb), bcc)) -> new_esEs7(vyw30, vyw400, bcb, bcc) new_lt20(vyw430, vyw450, app(app(ty_Either, bh), ca)) -> new_lt5(vyw430, vyw450, bh, ca) new_esEs24(vyw4310, vyw4510, ty_@0) -> new_esEs21(vyw4310, vyw4510) new_compare113(vyw430, vyw450, False, cb, cc, cd) -> GT new_asAs(False, vyw66) -> False new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, bcf) -> new_esEs21(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_Integer) -> new_ltEs6(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(ty_Ratio, cfe)) -> new_lt12(vyw4310, vyw4510, cfe) new_compare5(vyw430, vyw450, bf, bg) -> new_compare29(vyw430, vyw450, new_esEs7(vyw430, vyw450, bf, bg), bf, bg) new_lt20(vyw430, vyw450, ty_Bool) -> new_lt18(vyw430, vyw450) new_esEs14(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs13(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, de), df), dg)) -> new_ltEs15(vyw4310, vyw4510, de, df, dg) new_compare17(vyw4300, vyw4500, app(app(ty_Either, ee), ef)) -> new_compare7(vyw4300, vyw4500, ee, ef) new_compare17(vyw4300, vyw4500, app(app(ty_@2, fd), ff)) -> new_compare5(vyw4300, vyw4500, fd, ff) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(vyw430, vyw450, False, ce) -> GT new_lt15(vyw430, vyw450) -> new_esEs8(new_compare9(vyw430, vyw450), LT) new_esEs17(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_compare17(vyw4300, vyw4500, ty_@0) -> new_compare6(vyw4300, vyw4500) new_ltEs10(Right(vyw4310), Right(vyw4510), cdc, app(app(ty_@2, ddb), ddc)) -> new_ltEs16(vyw4310, vyw4510, ddb, ddc) The set Q consists of the following terms: new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs8(EQ, EQ) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, ty_Double) new_lt21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, ty_Char) new_esEs4(Just(x0), Just(x1), ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_compare211(x0, x1, False, x2) new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_compare17(x0, x1, ty_@0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Bool) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs23(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Integer) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_sr0(Integer(x0), Integer(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_pePe(True, x0) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_esEs24(x0, x1, ty_Bool) new_esEs19(x0, x1, ty_Float) new_esEs20(False, True) new_esEs20(True, False) new_ltEs20(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_compare17(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_[], x2)) new_compare24(x0, x1, False) new_esEs4(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_compare12(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_@0) new_lt5(x0, x1, x2, x3) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_asAs(False, x0) new_compare6(@0, @0) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_lt13(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Double) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_@0) new_compare10(x0, x1, True) new_ltEs6(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Just(x1), ty_Char) new_esEs32(x0, x1, ty_Double) new_lt11(x0, x1) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, ty_Char) new_lt21(x0, x1, ty_Int) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_ltEs8(x0, x1) new_lt21(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_esEs23(x0, x1, ty_@0) new_esEs30(x0, x1, x2, x3, False, x4, x5) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_Int) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, x2, x3, True, x4, x5) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs32(x0, x1, ty_Int) new_compare17(x0, x1, app(ty_[], x2)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Left(x0), Left(x1), ty_Float, x2) new_compare24(x0, x1, True) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_lt14(x0, x1, ty_Integer) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_asAs(True, x0) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Zero) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs20(False, False) new_esEs25(x0, x1, ty_Double) new_esEs28(x0, x1, app(ty_[], x2)) new_pePe(False, x0) new_lt21(x0, x1, ty_Bool) new_compare16(x0, x1, True) new_ltEs19(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_primEqNat0(Succ(x0), Zero) new_esEs25(x0, x1, ty_Ordering) new_esEs17(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs22([], [], x0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, ty_Int) new_ltEs10(Right(x0), Right(x1), x2, ty_@0) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_primPlusNat1(Succ(x0), x1) new_esEs31(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs24(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_lt13(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_lt20(x0, x1, ty_Float) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt18(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs18(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Int) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(True, True) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, ty_Int) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_lt13(x0, x1, ty_Integer) new_compare15(x0, x1, False, x2, x3) new_lt17(x0, x1) new_compare17(x0, x1, ty_Ordering) new_ltEs10(Left(x0), Left(x1), ty_Double, x2) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Double) new_esEs17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_lt14(x0, x1, ty_Bool) new_compare17(x0, x1, ty_Double) new_esEs17(x0, x1, ty_Double) new_esEs19(x0, x1, ty_@0) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs15(Char(x0), Char(x1)) new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Char) new_lt21(x0, x1, ty_Float) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Char) new_esEs8(GT, GT) new_ltEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_compare111(x0, x1, x2, x3, False, x4, x5) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Double) new_compare26(x0, x1, True, x2, x3) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_ltEs17(LT, LT) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs7(Just(x0), Nothing, x1) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs10(x0, x1) new_esEs31(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Bool) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_sr(x0, x1) new_esEs32(x0, x1, ty_Ordering) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Char) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Char) new_esEs18(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Float) new_primCompAux00(x0, GT) new_esEs19(x0, x1, ty_Double) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, ty_@0) new_lt14(x0, x1, ty_Char) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt6(x0, x1) new_lt8(x0, x1, x2, x3, x4) new_ltEs17(GT, GT) new_esEs26(x0, x1, ty_Ordering) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_compare113(x0, x1, False, x2, x3, x4) new_esEs17(x0, x1, app(ty_Maybe, x2)) new_compare112(x0, x1, False, x2) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs12(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1, ty_Float) new_primPlusNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, ty_Integer) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, ty_Char) new_compare8(x0, x1) new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs4(Just(x0), Just(x1), ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Float) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primCompAux0(x0, x1, x2, x3) new_lt19(x0, x1, x2) new_esEs29(x0, x1, ty_Int) new_ltEs17(LT, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs17(EQ, LT) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs32(x0, x1, ty_Integer) new_esEs18(x0, x1, ty_Int) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs22(:(x0, x1), [], x2) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs7(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, ty_Float) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_@0) new_compare111(x0, x1, x2, x3, True, x4, x5) new_esEs17(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_esEs25(x0, x1, ty_@0) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_@0) new_lt13(x0, x1, ty_Char) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_esEs28(x0, x1, ty_Integer) new_lt4(x0, x1, x2, x3) new_lt14(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Bool) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, app(ty_[], x2)) new_compare25(x0, x1, False) new_esEs17(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_ltEs10(Left(x0), Left(x1), ty_Char, x2) new_ltEs20(x0, x1, ty_Ordering) new_compare15(x0, x1, True, x2, x3) new_esEs25(x0, x1, ty_Integer) new_esEs32(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Int) new_esEs18(x0, x1, app(ty_[], x2)) new_compare112(x0, x1, True, x2) new_ltEs10(Left(x0), Left(x1), ty_@0, x2) new_primCompAux00(x0, EQ) new_lt9(x0, x1, x2) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs17(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Bool) new_ltEs18(x0, x1, ty_Bool) new_lt13(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_@0) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_compare210(x0, x1, True, x2, x3, x4) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_lt13(x0, x1, ty_@0) new_ltEs7(Nothing, Just(x0), x1) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs9(x0, x1) new_ltEs13(x0, x1) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs26(x0, x1, ty_Bool) new_primPlusNat0(Zero, Zero) new_esEs19(x0, x1, ty_Ordering) new_esEs32(x0, x1, ty_Float) new_esEs31(x0, x1, ty_Bool) new_ltEs5(x0, x1) new_lt13(x0, x1, ty_Ordering) new_not(True) new_esEs29(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), ty_Double) new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_ltEs7(Just(x0), Just(x1), ty_@0) new_lt14(x0, x1, app(ty_Maybe, x2)) new_lt10(x0, x1) new_ltEs11(x0, x1) new_ltEs10(Left(x0), Left(x1), ty_Int, x2) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_lt13(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Integer) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_compare0([], :(x0, x1), x2) new_compare0(:(x0, x1), :(x2, x3), x4) new_ltEs18(x0, x1, ty_@0) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Int) new_esEs17(x0, x1, ty_Integer) new_ltEs4(False, True) new_compare0([], [], x0) new_ltEs4(True, False) new_compare27(x0, x1) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs27(x0, x1, ty_Integer) new_ltEs18(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt16(x0, x1) new_compare113(x0, x1, True, x2, x3, x4) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs25(x0, x1, ty_Int) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs31(x0, x1, ty_Integer) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_compare14(Char(x0), Char(x1)) new_compare7(x0, x1, x2, x3) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs18(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Double) new_esEs26(x0, x1, ty_@0) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs23(x0, x1, ty_Char) new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) new_lt14(x0, x1, ty_Ordering) new_esEs25(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs4(Just(x0), Just(x1), ty_Float) new_compare0(:(x0, x1), [], x2) new_esEs4(Just(x0), Just(x1), ty_Double) new_primPlusNat0(Succ(x0), Zero) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs14(x0, x1, x2) new_esEs19(x0, x1, ty_Integer) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, ty_Int) new_lt14(x0, x1, app(ty_[], x2)) new_ltEs7(Nothing, Nothing, x0) new_esEs27(x0, x1, ty_Ordering) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Float) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, ty_Float) new_lt21(x0, x1, app(ty_[], x2)) new_compare211(x0, x1, True, x2) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs14(Integer(x0), Integer(x1)) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(True, True) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs17(x0, x1, ty_Float) new_compare17(x0, x1, ty_Float) new_compare9(Integer(x0), Integer(x1)) new_compare5(x0, x1, x2, x3) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_esEs29(x0, x1, ty_Double) new_lt21(x0, x1, ty_Double) new_ltEs19(x0, x1, ty_Double) new_esEs4(Just(x0), Nothing, x1) new_primPlusNat0(Zero, Succ(x0)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs29(x0, x1, app(ty_[], x2)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_lt20(x0, x1, app(ty_[], x2)) new_compare11(x0, x1) new_esEs13(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Char) new_ltEs18(x0, x1, ty_Double) new_ltEs4(False, False) new_lt21(x0, x1, ty_Ordering) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs16(Float(x0, x1), Float(x2, x3)) new_compare16(x0, x1, False) new_esEs28(x0, x1, ty_Char) new_esEs17(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs17(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Zero, Succ(x0)) new_esEs17(x0, x1, app(ty_Ratio, x2)) new_esEs4(Nothing, Just(x0), x1) new_esEs17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs22([], :(x0, x1), x2) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(Double(x0, x1), Double(x2, x3)) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_ltEs20(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs22(:(x0, x1), :(x2, x3), x4) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, ty_Ordering) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_not(False) new_compare17(x0, x1, ty_Int) new_lt13(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_ltEs12(x0, x1, x2) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, app(ty_Maybe, x2)) new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs20(x0, x1, ty_Char) new_esEs4(Nothing, Nothing, x0) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_lt14(x0, x1, app(ty_Ratio, x2)) new_esEs31(x0, x1, ty_@0) new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs10(Right(x0), Right(x1), x2, ty_Char) new_esEs13(x0, x1, ty_Int) new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) new_compare10(x0, x1, False) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_compare13(x0, x1, x2) new_esEs28(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_lt14(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_ltEs10(Right(x0), Right(x1), x2, ty_Int) new_compare29(x0, x1, True, x2, x3) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_primPlusNat1(Zero, x0) new_esEs17(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Bool) new_ltEs10(Right(x0), Left(x1), x2, x3) new_ltEs10(Left(x0), Right(x1), x2, x3) new_compare26(x0, x1, False, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_lt15(x0, x1) new_esEs21(@0, @0) new_esEs19(x0, x1, ty_Bool) new_compare25(x0, x1, True) new_esEs24(x0, x1, ty_Float) new_lt12(x0, x1, x2) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs27(x0, x1, app(ty_[], x2)) new_primCompAux00(x0, LT) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_primCmpNat0(Zero, Zero) new_compare210(x0, x1, False, x2, x3, x4) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_ltEs18(x0, x1, app(ty_Ratio, x2)) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (23) 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_elemFM01(Branch(@2(vyw400, vyw401), vyw41, vyw42, vyw43, vyw44), @2(vyw30, vyw31), bc, bd, be) -> new_elemFM0(vyw400, vyw401, vyw41, vyw42, vyw43, vyw44, vyw30, vyw31, new_esEs30(vyw30, vyw31, vyw400, vyw401, new_esEs31(vyw30, vyw400, bd), bd, be), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 1 > 6, 2 > 7, 2 > 8, 3 >= 10, 4 >= 11, 5 >= 12 *new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, False, h, ba, bb) -> new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, new_esEs8(new_compare29(@2(vyw21, vyw22), @2(vyw15, vyw16), new_asAs(new_esEs29(vyw21, vyw15, ba), new_esEs28(vyw22, vyw16, bb)), ba, bb), GT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 7 >= 7, 8 >= 8, 10 >= 10, 11 >= 11, 12 >= 12 *new_elemFM0(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw19, @2(vyw21, vyw22), h, ba, bb) The graph contains the following edges 5 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 *new_elemFM00(vyw15, vyw16, vyw17, vyw18, vyw19, vyw20, vyw21, vyw22, True, h, ba, bb) -> new_elemFM01(vyw20, @2(vyw21, vyw22), h, ba, bb) The graph contains the following edges 6 >= 1, 10 >= 3, 11 >= 4, 12 >= 5 ---------------------------------------- (24) YES ---------------------------------------- (25) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], bf)) -> new_esEs2(vyw300, vyw4000, bf) new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vyw300, vyw4000, bcg, bch) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(ty_Maybe, cc)) -> new_esEs(vyw302, vyw4002, cc) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), bae) -> new_esEs2(vyw301, vyw4001, bae) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdh)) -> new_esEs2(vyw300, vyw4000, bdh) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(app(ty_@2, cg), da)) -> new_esEs1(vyw302, vyw4002, cg, da) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(app(ty_Either, ee), ef), df) -> new_esEs3(vyw301, vyw4001, ee, ef) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_esEs0(vyw301, vyw4001, dg, dh, ea) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(app(ty_@2, eb), ec), df) -> new_esEs1(vyw301, vyw4001, eb, ec) new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_@2, bd), be)) -> new_esEs1(vyw300, vyw4000, bd, be) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(vyw300, vyw4000, bag, bah, bba) new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bcd), bce), bbh) -> new_esEs1(vyw300, vyw4000, bcd, bce) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_Maybe, bdb)) -> new_esEs(vyw300, vyw4000, bdb) new_esEs(Just(vyw300), Just(vyw4000), app(ty_Maybe, h)) -> new_esEs(vyw300, vyw4000, h) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, he), hf), hg), hd) -> new_esEs0(vyw300, vyw4000, he, hf, hg) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vyw302, vyw4002, dc, dd) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw300, vyw4000, bea, beb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs0(vyw302, vyw4002, cd, ce, cf) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs0(vyw301, vyw4001, gc, gd, ge) new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(vyw300, vyw4000, bca, bcb, bcc) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, hc), hd) -> new_esEs(vyw300, vyw4000, hc) new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(vyw300, vyw4000, ba, bb, bc) new_esEs3(Left(vyw300), Left(vyw4000), app(ty_Maybe, bbg), bbh) -> new_esEs(vyw300, vyw4000, bbg) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(ty_Maybe, gb)) -> new_esEs(vyw301, vyw4001, gb) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bac), bad), hd) -> new_esEs3(vyw300, vyw4000, bac, bad) new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_Either, bg), bh)) -> new_esEs3(vyw300, vyw4000, bg, bh) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, baf)) -> new_esEs(vyw300, vyw4000, baf) new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(ty_[], gh)) -> new_esEs2(vyw301, vyw4001, gh) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, hh), baa), hd) -> new_esEs1(vyw300, vyw4000, hh, baa) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], bbd)) -> new_esEs2(vyw300, vyw4000, bbd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(ty_[], db)) -> new_esEs2(vyw302, vyw4002, db) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bab), hd) -> new_esEs2(vyw300, vyw4000, bab) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw300, vyw4000, bbe, bbf) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(ty_[], ed), df) -> new_esEs2(vyw301, vyw4001, ed) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], ff), cb, df) -> new_esEs2(vyw300, vyw4000, ff) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(vyw301, vyw4001, gf, gg) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, eg), cb, df) -> new_esEs(vyw300, vyw4000, eg) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_esEs0(vyw300, vyw4000, eh, fa, fb) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fc), fd), cb, df) -> new_esEs1(vyw300, vyw4000, fc, fd) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fg), fh), cb, df) -> new_esEs3(vyw300, vyw4000, fg, fh) new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(app(ty_Either, ha), hb)) -> new_esEs3(vyw301, vyw4001, ha, hb) new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw300, vyw4000, bbb, bbc) new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(ty_Maybe, de), df) -> new_esEs(vyw301, vyw4001, de) new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bcf), bbh) -> new_esEs2(vyw300, vyw4000, bcf) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (26) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_Maybe, baf)) -> new_esEs(vyw300, vyw4000, baf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_Either, bbe), bbf)) -> new_esEs3(vyw300, vyw4000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(app(ty_@3, bag), bah), bba)) -> new_esEs0(vyw300, vyw4000, bag, bah, bba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Just(vyw300), Just(vyw4000), app(ty_Maybe, h)) -> new_esEs(vyw300, vyw4000, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_Either, bg), bh)) -> new_esEs3(vyw300, vyw4000, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, ba), bb), bc)) -> new_esEs0(vyw300, vyw4000, ba, bb, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(app(ty_@2, bbb), bbc)) -> new_esEs1(vyw300, vyw4000, bbb, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Just(vyw300), Just(vyw4000), app(ty_[], bf)) -> new_esEs2(vyw300, vyw4000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Just(vyw300), Just(vyw4000), app(app(ty_@2, bd), be)) -> new_esEs1(vyw300, vyw4000, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), bae) -> new_esEs2(vyw301, vyw4001, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(vyw300, vyw301), :(vyw4000, vyw4001), app(ty_[], bbd)) -> new_esEs2(vyw300, vyw4000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_Maybe, bdb)) -> new_esEs(vyw300, vyw4000, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(ty_Maybe, bbg), bbh) -> new_esEs(vyw300, vyw4000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_Maybe, hc), hd) -> new_esEs(vyw300, vyw4000, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(ty_Maybe, gb)) -> new_esEs(vyw301, vyw4001, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(ty_Maybe, cc)) -> new_esEs(vyw302, vyw4002, cc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_Maybe, eg), cb, df) -> new_esEs(vyw300, vyw4000, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(ty_Maybe, de), df) -> new_esEs(vyw301, vyw4001, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_Either, bcg), bch), bbh) -> new_esEs3(vyw300, vyw4000, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_Either, bea), beb)) -> new_esEs3(vyw300, vyw4000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, bca), bcb), bcc), bbh) -> new_esEs0(vyw300, vyw4000, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(app(ty_@3, bdc), bdd), bde)) -> new_esEs0(vyw300, vyw4000, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(ty_[], bdh)) -> new_esEs2(vyw300, vyw4000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(ty_[], bcf), bbh) -> new_esEs2(vyw300, vyw4000, bcf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(Left(vyw300), Left(vyw4000), app(app(ty_@2, bcd), bce), bbh) -> new_esEs1(vyw300, vyw4000, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(Right(vyw300), Right(vyw4000), bda, app(app(ty_@2, bdf), bdg)) -> new_esEs1(vyw300, vyw4000, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_Either, bac), bad), hd) -> new_esEs3(vyw300, vyw4000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(app(ty_Either, ha), hb)) -> new_esEs3(vyw301, vyw4001, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(app(ty_Either, ee), ef), df) -> new_esEs3(vyw301, vyw4001, ee, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vyw302, vyw4002, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_Either, fg), fh), cb, df) -> new_esEs3(vyw300, vyw4000, fg, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(app(ty_@3, he), hf), hg), hd) -> new_esEs0(vyw300, vyw4000, he, hf, hg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(app(app(ty_@3, gc), gd), ge)) -> new_esEs0(vyw301, vyw4001, gc, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(app(app(ty_@3, dg), dh), ea), df) -> new_esEs0(vyw301, vyw4001, dg, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs0(vyw302, vyw4002, cd, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(app(ty_@3, eh), fa), fb), cb, df) -> new_esEs0(vyw300, vyw4000, eh, fa, fb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(ty_[], gh)) -> new_esEs2(vyw301, vyw4001, gh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(ty_[], bab), hd) -> new_esEs2(vyw300, vyw4000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(ty_[], db)) -> new_esEs2(vyw302, vyw4002, db) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(ty_[], ed), df) -> new_esEs2(vyw301, vyw4001, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(ty_[], ff), cb, df) -> new_esEs2(vyw300, vyw4000, ff) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), app(app(ty_@2, hh), baa), hd) -> new_esEs1(vyw300, vyw4000, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(@2(vyw300, vyw301), @2(vyw4000, vyw4001), ga, app(app(ty_@2, gf), gg)) -> new_esEs1(vyw301, vyw4001, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, cb, app(app(ty_@2, cg), da)) -> new_esEs1(vyw302, vyw4002, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), ca, app(app(ty_@2, eb), ec), df) -> new_esEs1(vyw301, vyw4001, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), app(app(ty_@2, fc), fd), cb, df) -> new_esEs1(vyw300, vyw4000, fc, fd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 ---------------------------------------- (27) YES ---------------------------------------- (28) Obligation: Q DP problem: The TRS P consists of the following rules: new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(app(app(ty_@3, cf), cg), da)), cb)) -> new_ltEs2(vyw4310, vyw4510, cf, cg, da) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(ty_[], bdb))) -> new_ltEs1(vyw4311, vyw4511, bdb) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(app(ty_Either, bbf), bbg)), ha), bad)) -> new_lt0(vyw4310, vyw4510, bbf, bbg) new_lt0(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(ty_Maybe, bdh)), bea)) -> new_lt(vyw4310, vyw4510, bdh) new_ltEs0(Left(vyw4310), Left(vyw4510), app(app(ty_@2, db), dc), cb) -> new_ltEs3(vyw4310, vyw4510, db, dc) new_compare21(vyw430, vyw450, False, gc, gd) -> new_ltEs0(vyw430, vyw450, gc, gd) new_primCompAux(vyw4300, vyw4500, vyw119, app(app(app(ty_@3, fd), ff), fg)) -> new_compare3(vyw4300, vyw4500, fd, ff, fg) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(app(ty_@2, bdf), bdg))) -> new_ltEs3(vyw4311, vyw4511, bdf, bdg) new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bbh), ha, bad) -> new_lt1(vyw4310, vyw4510, bbh) new_compare20(vyw430, vyw450, False, gb) -> new_ltEs(vyw430, vyw450, gb) new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(app(ty_@2, db), dc)), cb)) -> new_ltEs3(vyw4310, vyw4510, db, dc) new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(ty_Maybe, bac), bad) -> new_lt(vyw4311, vyw4511, bac) new_ltEs(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(app(ty_@2, bdf), bdg)) -> new_ltEs3(vyw4311, vyw4511, bdf, bdg) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(ty_Maybe, bcg))) -> new_ltEs(vyw4311, vyw4511, bcg) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, beh), bfa), bea) -> new_lt3(vyw4310, vyw4510, beh, bfa) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(app(ty_@2, beh), bfa)), bea)) -> new_lt3(vyw4310, vyw4510, beh, bfa) new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb)) -> new_ltEs0(vyw4310, vyw4510, cc, cd) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(ty_Maybe, bac)), bad)) -> new_lt(vyw4311, vyw4511, bac) new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, gc), gd), bfe) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, bbf), bbg), ha, bad) -> new_lt0(vyw4310, vyw4510, bbf, bbg) new_lt2(vyw430, vyw450, ge, gf, gg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, ge, gf, gg), ge, gf, gg) new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, bfd, app(ty_[], ef)) -> new_compare(vyw431, vyw451, ef) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, bdh), bea) -> new_lt(vyw4310, vyw4510, bdh) new_compare23(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), bfe) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(app(app(ty_@3, bee), bef), beg)), bea)) -> new_lt2(vyw4310, vyw4510, bee, bef, beg) new_compare2(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(ty_[], bed)), bea)) -> new_lt1(vyw4310, vyw4510, bed) new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, ge), gf), gg), bfe) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, ge, gf, gg), ge, gf, gg) new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(app(ty_Either, ba), bb))) -> new_ltEs0(vyw4310, vyw4510, ba, bb) new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(app(ty_@2, ed), ee)) -> new_ltEs3(vyw4310, vyw4510, ed, ee) new_compare4(vyw430, vyw450, bfb, bfc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfb, bfc), bfb, bfc) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(app(ty_@2, bbc), bbd), bad) -> new_lt3(vyw4311, vyw4511, bbc, bbd) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(app(app(ty_@3, bdc), bdd), bde))) -> new_ltEs2(vyw4311, vyw4511, bdc, bdd, bde) new_lt(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bca), bcb), bcc), ha, bad) -> new_lt2(vyw4310, vyw4510, bca, bcb, bcc) new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(app(ty_@2, bg), bh))) -> new_ltEs3(vyw4310, vyw4510, bg, bh) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(app(ty_Either, hc), hd)) -> new_ltEs0(vyw4312, vyw4512, hc, hd) new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(ty_Maybe, de))) -> new_ltEs(vyw4310, vyw4510, de) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(ty_[], bbh)), ha), bad)) -> new_lt1(vyw4310, vyw4510, bbh) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(ty_[], he)) -> new_ltEs1(vyw4312, vyw4512, he) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(app(ty_@2, baa), bab)) -> new_ltEs3(vyw4312, vyw4512, baa, bab) new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(ty_[], dh))) -> new_ltEs1(vyw4310, vyw4510, dh) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(ty_Maybe, bcg)) -> new_ltEs(vyw4311, vyw4511, bcg) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(app(ty_Either, bae), baf)), bad)) -> new_lt0(vyw4311, vyw4511, bae, baf) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(app(ty_Either, bch), bda)) -> new_ltEs0(vyw4311, vyw4511, bch, bda) new_primCompAux(vyw4300, vyw4500, vyw119, app(ty_Maybe, eh)) -> new_compare1(vyw4300, vyw4500, eh) new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(vyw4310, vyw4510, ea, eb, ec) new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs2(vyw4310, vyw4510, ea, eb, ec) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(ty_[], bag), bad) -> new_lt1(vyw4311, vyw4511, bag) new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(ty_[], bc))) -> new_ltEs1(vyw4310, vyw4510, bc) new_ltEs0(Left(vyw4310), Left(vyw4510), app(ty_[], ce), cb) -> new_ltEs1(vyw4310, vyw4510, ce) new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(vyw4310, vyw4510, df, dg) new_compare3(vyw430, vyw450, ge, gf, gg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, ge, gf, gg), ge, gf, gg) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(ty_Maybe, hb)) -> new_ltEs(vyw4312, vyw4512, hb) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, beb), bec), bea) -> new_lt0(vyw4310, vyw4510, beb, bec) new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, gb), bfe) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(ty_[], bag)), bad)) -> new_lt1(vyw4311, vyw4511, bag) new_primCompAux(vyw4300, vyw4500, vyw119, app(app(ty_Either, fa), fb)) -> new_compare2(vyw4300, vyw4500, fa, fb) new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(ty_Maybe, ca)), cb)) -> new_ltEs(vyw4310, vyw4510, ca) new_ltEs0(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, cf), cg), da), cb) -> new_ltEs2(vyw4310, vyw4510, cf, cg, da) new_ltEs0(Left(vyw4310), Left(vyw4510), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(vyw4310, vyw4510, cc, cd) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(app(ty_@2, bcd), bce)), ha), bad)) -> new_lt3(vyw4310, vyw4510, bcd, bce) new_compare1(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(app(ty_Either, beb), bec)), bea)) -> new_lt0(vyw4310, vyw4510, beb, bec) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bcd), bce), ha, bad) -> new_lt3(vyw4310, vyw4510, bcd, bce) new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bg), bh)) -> new_ltEs3(vyw4310, vyw4510, bg, bh) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(app(ty_@2, bbc), bbd)), bad)) -> new_lt3(vyw4311, vyw4511, bbc, bbd) new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw4310, vyw4510, h) new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_Either, ba), bb)) -> new_ltEs0(vyw4310, vyw4510, ba, bb) new_ltEs1(vyw431, vyw451, ef) -> new_compare(vyw431, vyw451, ef) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(app(app(ty_@3, hf), hg), hh))) -> new_ltEs2(vyw4312, vyw4512, hf, hg, hh) new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(ty_[], ce)), cb)) -> new_ltEs1(vyw4310, vyw4510, ce) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(app(ty_Either, bae), baf), bad) -> new_lt0(vyw4311, vyw4511, bae, baf) new_compare22(vyw430, vyw450, False, ge, gf, gg) -> new_ltEs2(vyw430, vyw450, ge, gf, gg) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(app(ty_@2, baa), bab))) -> new_ltEs3(vyw4312, vyw4512, baa, bab) new_primCompAux(vyw4300, vyw4500, vyw119, app(ty_[], fc)) -> new_compare(vyw4300, vyw4500, fc) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], bed), bea) -> new_lt1(vyw4310, vyw4510, bed) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs2(vyw4312, vyw4512, hf, hg, hh) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(app(app(ty_@3, bah), bba), bbb)), bad)) -> new_lt2(vyw4311, vyw4511, bah, bba, bbb) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs2(vyw4311, vyw4511, bdc, bdd, bde) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(app(ty_Either, hc), hd))) -> new_ltEs0(vyw4312, vyw4512, hc, hd) new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(app(ty_Either, df), dg))) -> new_ltEs0(vyw4310, vyw4510, df, dg) new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, bfb), bfc), bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfb, bfc), bfb, bfc) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, bee), bef), beg), bea) -> new_lt2(vyw4310, vyw4510, bee, bef, beg) new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(ty_Maybe, de)) -> new_ltEs(vyw4310, vyw4510, de) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(app(app(ty_@3, bca), bcb), bcc)), ha), bad)) -> new_lt2(vyw4310, vyw4510, bca, bcb, bcc) new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_Maybe, h)) -> new_ltEs(vyw4310, vyw4510, h) new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) new_primCompAux(vyw4300, vyw4500, vyw119, app(app(ty_@2, fh), ga)) -> new_compare4(vyw4300, vyw4500, fh, ga) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(ty_Maybe, hb))) -> new_ltEs(vyw4312, vyw4512, hb) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bbe), ha, bad) -> new_lt(vyw4310, vyw4510, bbe) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(ty_[], he))) -> new_ltEs1(vyw4312, vyw4512, he) new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(ty_Maybe, bbe)), ha), bad)) -> new_lt(vyw4310, vyw4510, bbe) new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(ty_[], bdb)) -> new_ltEs1(vyw4311, vyw4511, bdb) new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(ty_[], dh)) -> new_ltEs1(vyw4310, vyw4510, dh) new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(app(app(ty_@3, bah), bba), bbb), bad) -> new_lt2(vyw4311, vyw4511, bah, bba, bbb) new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_[], bc)) -> new_ltEs1(vyw4310, vyw4510, bc) new_lt3(vyw430, vyw450, bfb, bfc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfb, bfc), bfb, bfc) new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(app(ty_@2, ed), ee))) -> new_ltEs3(vyw4310, vyw4510, ed, ee) new_ltEs0(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ca), cb) -> new_ltEs(vyw4310, vyw4510, ca) new_compare23(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), bfe) -> new_compare(vyw4301, vyw4501, eg) new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf))) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(app(ty_Either, bch), bda))) -> new_ltEs0(vyw4311, vyw4511, bch, bda) The TRS R consists of the following rules: new_lt13(vyw4311, vyw4511, app(ty_[], bag)) -> new_lt19(vyw4311, vyw4511, bag) new_ltEs17(LT, EQ) -> True new_primCmpInt(Neg(Succ(vyw43000)), Pos(vyw4500)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_primPlusNat0(Zero, Zero) -> Zero new_pePe(True, vyw118) -> True new_esEs25(vyw300, vyw4000, app(app(app(ty_@3, cda), cdb), cdc)) -> new_esEs6(vyw300, vyw4000, cda, cdb, cdc) new_esEs5(Left(vyw300), Left(vyw4000), ty_Ordering, ced) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, ty_@0) -> new_ltEs5(vyw431, vyw451) new_compare17(vyw4300, vyw4500, app(ty_[], fc)) -> new_compare0(vyw4300, vyw4500, fc) new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs27(vyw4310, vyw4510, ty_Bool) -> new_esEs20(vyw4310, vyw4510) new_compare112(vyw430, vyw450, True, gb) -> LT new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_esEs27(vyw4310, vyw4510, app(app(ty_Either, beb), bec)) -> new_esEs5(vyw4310, vyw4510, beb, bec) new_primCmpInt(Pos(Zero), Neg(Succ(vyw45000))) -> GT new_compare26(vyw430, vyw450, True, gc, gd) -> EQ new_compare28(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs24(vyw4310, vyw4510, ty_Ordering) -> new_esEs8(vyw4310, vyw4510) new_lt20(vyw430, vyw450, ty_Ordering) -> new_lt7(vyw430, vyw450) new_esEs29(vyw300, vyw4000, app(ty_[], dbg)) -> new_esEs22(vyw300, vyw4000, dbg) new_primCmpInt(Neg(Succ(vyw43000)), Neg(vyw4500)) -> new_primCmpNat0(vyw4500, Succ(vyw43000)) new_compare210(vyw430, vyw450, True, ge, gf, gg) -> EQ new_esEs29(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_compare211(vyw430, vyw450, True, gb) -> EQ new_esEs26(vyw430, vyw450, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyw430, vyw450, bfb, bfc) new_lt4(vyw430, vyw450, bfb, bfc) -> new_esEs8(new_compare5(vyw430, vyw450, bfb, bfc), LT) new_esEs13(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_primMulNat0(Succ(vyw30100), Succ(vyw400000)) -> new_primPlusNat1(new_primMulNat0(vyw30100, Succ(vyw400000)), vyw400000) new_compare111(vyw99, vyw100, vyw101, vyw102, False, ceb, cec) -> GT new_ltEs4(False, True) -> True new_esEs4(Just(vyw300), Just(vyw4000), app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs6(vyw300, vyw4000, dcg, dch, dda) new_esEs18(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs23(vyw4311, vyw4511, ty_Double) -> new_esEs9(vyw4311, vyw4511) new_esEs23(vyw4311, vyw4511, app(app(ty_Either, bae), baf)) -> new_esEs5(vyw4311, vyw4511, bae, baf) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Int, cb) -> new_ltEs9(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(app(ty_Either, bhe), bhf)) -> new_esEs5(vyw302, vyw4002, bhe, bhf) new_esEs8(GT, GT) -> True new_primEqInt(Pos(Succ(vyw3000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw40000))) -> False new_compare110(vyw99, vyw100, vyw101, vyw102, False, vyw104, ceb, cec) -> new_compare111(vyw99, vyw100, vyw101, vyw102, vyw104, ceb, cec) new_esEs26(vyw430, vyw450, ty_Char) -> new_esEs15(vyw430, vyw450) new_esEs17(vyw302, vyw4002, ty_Bool) -> new_esEs20(vyw302, vyw4002) new_esEs23(vyw4311, vyw4511, ty_Bool) -> new_esEs20(vyw4311, vyw4511) new_esEs29(vyw300, vyw4000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(vyw300, vyw4000, dbb, dbc, dbd) new_esEs8(EQ, EQ) -> True new_compare17(vyw4300, vyw4500, ty_Int) -> new_compare8(vyw4300, vyw4500) new_primEqNat0(Succ(vyw3000), Succ(vyw40000)) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs18(vyw4312, vyw4512, ty_Float) -> new_ltEs11(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, app(ty_Ratio, ccc)) -> new_esEs11(vyw430, vyw450, ccc) new_esEs26(vyw430, vyw450, ty_Integer) -> new_esEs14(vyw430, vyw450) new_lt13(vyw4311, vyw4511, app(app(ty_Either, bae), baf)) -> new_lt5(vyw4311, vyw4511, bae, baf) new_esEs28(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs26(vyw430, vyw450, ty_Float) -> new_esEs16(vyw430, vyw450) new_ltEs17(LT, GT) -> True new_not(True) -> False new_ltEs18(vyw4312, vyw4512, app(ty_Maybe, hb)) -> new_ltEs7(vyw4312, vyw4512, hb) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_[], ce), cb) -> new_ltEs14(vyw4310, vyw4510, ce) new_esEs16(Float(vyw300, vyw301), Float(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_primCompAux00(vyw126, LT) -> LT new_lt13(vyw4311, vyw4511, ty_Double) -> new_lt11(vyw4311, vyw4511) new_primCmpNat0(Zero, Zero) -> EQ new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, cf), cg), da), cb) -> new_ltEs15(vyw4310, vyw4510, cf, cg, da) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Ratio, dde)) -> new_esEs11(vyw300, vyw4000, dde) new_esEs18(vyw301, vyw4001, ty_Double) -> new_esEs9(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_[], ddd)) -> new_esEs22(vyw300, vyw4000, ddd) new_compare13(vyw430, vyw450, gb) -> new_compare211(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) new_esEs5(Right(vyw300), Right(vyw4000), cfg, app(ty_Maybe, cfh)) -> new_esEs4(vyw300, vyw4000, cfh) new_ltEs17(EQ, GT) -> True new_ltEs10(Right(vyw4310), Right(vyw4510), dd, app(ty_[], dh)) -> new_ltEs14(vyw4310, vyw4510, dh) new_esEs19(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_lt21(vyw4310, vyw4510, ty_Char) -> new_lt16(vyw4310, vyw4510) new_compare17(vyw4300, vyw4500, app(ty_Maybe, eh)) -> new_compare13(vyw4300, vyw4500, eh) new_esEs17(vyw302, vyw4002, ty_Double) -> new_esEs9(vyw302, vyw4002) new_lt21(vyw4310, vyw4510, ty_Integer) -> new_lt15(vyw4310, vyw4510) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_@2, cfa), cfb), ced) -> new_esEs7(vyw300, vyw4000, cfa, cfb) new_primEqNat0(Succ(vyw3000), Zero) -> False new_primEqNat0(Zero, Succ(vyw40000)) -> False new_lt13(vyw4311, vyw4511, app(app(app(ty_@3, bah), bba), bbb)) -> new_lt8(vyw4311, vyw4511, bah, bba, bbb) new_ltEs7(Nothing, Just(vyw4510), bff) -> True new_compare8(vyw430, vyw450) -> new_primCmpInt(vyw430, vyw450) new_esEs27(vyw4310, vyw4510, ty_Int) -> new_esEs10(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Float, cb) -> new_ltEs11(vyw4310, vyw4510) new_lt14(vyw4310, vyw4510, ty_Double) -> new_lt11(vyw4310, vyw4510) new_ltEs17(LT, LT) -> True new_lt13(vyw4311, vyw4511, ty_@0) -> new_lt10(vyw4311, vyw4511) new_esEs17(vyw302, vyw4002, ty_Int) -> new_esEs10(vyw302, vyw4002) new_lt20(vyw430, vyw450, ty_Double) -> new_lt11(vyw430, vyw450) new_primCompAux00(vyw126, GT) -> GT new_esEs23(vyw4311, vyw4511, ty_Int) -> new_esEs10(vyw4311, vyw4511) new_esEs20(False, True) -> False new_esEs20(True, False) -> False new_esEs25(vyw300, vyw4000, app(ty_[], cdf)) -> new_esEs22(vyw300, vyw4000, cdf) new_esEs25(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Double, ced) -> new_esEs9(vyw300, vyw4000) new_compare28(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_lt21(vyw4310, vyw4510, app(ty_Maybe, bdh)) -> new_lt9(vyw4310, vyw4510, bdh) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_compare15(vyw430, vyw450, True, gc, gd) -> LT new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_Ordering) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_Char) -> new_esEs15(vyw300, vyw4000) new_primCmpInt(Pos(Succ(vyw43000)), Neg(vyw4500)) -> GT new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs28(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_ltEs10(Right(vyw4310), Left(vyw4510), dd, cb) -> False new_esEs19(vyw300, vyw4000, app(ty_[], cbg)) -> new_esEs22(vyw300, vyw4000, cbg) new_esEs24(vyw4310, vyw4510, ty_Double) -> new_esEs9(vyw4310, vyw4510) new_compare16(vyw430, vyw450, False) -> GT new_lt17(vyw430, vyw450) -> new_esEs8(new_compare18(vyw430, vyw450), LT) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Maybe, cee), ced) -> new_esEs4(vyw300, vyw4000, cee) new_ltEs20(vyw4311, vyw4511, ty_@0) -> new_ltEs5(vyw4311, vyw4511) new_lt21(vyw4310, vyw4510, ty_Float) -> new_lt17(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Bool, cb) -> new_ltEs4(vyw4310, vyw4510) new_lt16(vyw430, vyw450) -> new_esEs8(new_compare14(vyw430, vyw450), LT) new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_Float) -> new_esEs16(vyw300, vyw4000) new_primCmpNat0(Zero, Succ(vyw45000)) -> LT new_compare17(vyw4300, vyw4500, ty_Char) -> new_compare14(vyw4300, vyw4500) new_compare17(vyw4300, vyw4500, ty_Bool) -> new_compare27(vyw4300, vyw4500) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Double, cb) -> new_ltEs13(vyw4310, vyw4510) new_esEs19(vyw300, vyw4000, app(app(app(ty_@3, cbb), cbc), cbd)) -> new_esEs6(vyw300, vyw4000, cbb, cbc, cbd) new_ltEs20(vyw4311, vyw4511, app(ty_Maybe, bcg)) -> new_ltEs7(vyw4311, vyw4511, bcg) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Integer) -> new_ltEs6(vyw4310, vyw4510) new_ltEs19(vyw431, vyw451, ty_Integer) -> new_ltEs6(vyw431, vyw451) new_lt9(vyw430, vyw450, gb) -> new_esEs8(new_compare13(vyw430, vyw450, gb), LT) new_esEs27(vyw4310, vyw4510, app(app(ty_@2, beh), bfa)) -> new_esEs7(vyw4310, vyw4510, beh, bfa) new_primCmpNat0(Succ(vyw43000), Zero) -> GT new_pePe(False, vyw118) -> vyw118 new_compare11(vyw430, vyw450) -> new_compare25(vyw430, vyw450, new_esEs8(vyw430, vyw450)) new_ltEs12(vyw431, vyw451, chb) -> new_not(new_esEs8(new_compare19(vyw431, vyw451, chb), GT)) new_esEs20(False, False) -> True new_esEs28(vyw301, vyw4001, app(ty_[], dae)) -> new_esEs22(vyw301, vyw4001, dae) new_lt20(vyw430, vyw450, ty_Float) -> new_lt17(vyw430, vyw450) new_ltEs20(vyw4311, vyw4511, ty_Float) -> new_ltEs11(vyw4311, vyw4511) new_ltEs18(vyw4312, vyw4512, ty_@0) -> new_ltEs5(vyw4312, vyw4512) new_esEs25(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs4(Just(vyw300), Just(vyw4000), ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_compare19(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Integer) -> new_compare9(new_sr0(vyw4300, vyw4501), new_sr0(vyw4500, vyw4301)) new_esEs17(vyw302, vyw4002, ty_Char) -> new_esEs15(vyw302, vyw4002) new_ltEs6(vyw431, vyw451) -> new_not(new_esEs8(new_compare9(vyw431, vyw451), GT)) new_lt14(vyw4310, vyw4510, app(ty_[], bbh)) -> new_lt19(vyw4310, vyw4510, bbh) new_esEs17(vyw302, vyw4002, ty_Integer) -> new_esEs14(vyw302, vyw4002) new_esEs19(vyw300, vyw4000, app(ty_Ratio, cbh)) -> new_esEs11(vyw300, vyw4000, cbh) new_compare110(vyw99, vyw100, vyw101, vyw102, True, vyw104, ceb, cec) -> new_compare111(vyw99, vyw100, vyw101, vyw102, True, ceb, cec) new_esEs29(vyw300, vyw4000, app(ty_Ratio, dbh)) -> new_esEs11(vyw300, vyw4000, dbh) new_lt20(vyw430, vyw450, app(ty_Maybe, gb)) -> new_lt9(vyw430, vyw450, gb) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_Ratio, dcc), cb) -> new_ltEs12(vyw4310, vyw4510, dcc) new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs26(vyw430, vyw450, app(ty_[], eg)) -> new_esEs22(vyw430, vyw450, eg) new_esEs27(vyw4310, vyw4510, ty_Integer) -> new_esEs14(vyw4310, vyw4510) new_esEs19(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_compare18(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare18(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_primEqInt(Pos(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw40000))) -> False new_esEs23(vyw4311, vyw4511, app(ty_Maybe, bac)) -> new_esEs4(vyw4311, vyw4511, bac) new_esEs4(Just(vyw300), Just(vyw4000), ty_@0) -> new_esEs21(vyw300, vyw4000) new_esEs26(vyw430, vyw450, ty_Bool) -> new_esEs20(vyw430, vyw450) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_Ratio, cfd), ced) -> new_esEs11(vyw300, vyw4000, cfd) new_lt14(vyw4310, vyw4510, app(app(ty_@2, bcd), bce)) -> new_lt4(vyw4310, vyw4510, bcd, bce) new_esEs5(Right(vyw300), Right(vyw4000), cfg, app(app(ty_@2, cgd), cge)) -> new_esEs7(vyw300, vyw4000, cgd, cge) new_esEs18(vyw301, vyw4001, app(ty_[], cae)) -> new_esEs22(vyw301, vyw4001, cae) new_esEs19(vyw300, vyw4000, app(ty_Maybe, cba)) -> new_esEs4(vyw300, vyw4000, cba) new_esEs24(vyw4310, vyw4510, app(app(ty_Either, bbf), bbg)) -> new_esEs5(vyw4310, vyw4510, bbf, bbg) new_primEqInt(Neg(Succ(vyw3000)), Neg(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_esEs25(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, app(ty_[], ef)) -> new_ltEs14(vyw431, vyw451, ef) new_primCmpInt(Neg(Zero), Pos(Succ(vyw45000))) -> LT new_compare29(@2(vyw430, vyw431), @2(vyw450, vyw451), False, bfd, bfe) -> new_compare110(vyw430, vyw431, vyw450, vyw451, new_lt20(vyw430, vyw450, bfd), new_asAs(new_esEs26(vyw430, vyw450, bfd), new_ltEs19(vyw431, vyw451, bfe)), bfd, bfe) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, app(app(ty_Either, df), dg)) -> new_ltEs10(vyw4310, vyw4510, df, dg) new_primMulInt(Pos(vyw3010), Pos(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_lt6(vyw430, vyw450) -> new_esEs8(new_compare8(vyw430, vyw450), LT) new_esEs6(@3(vyw300, vyw301, vyw302), @3(vyw4000, vyw4001, vyw4002), bgb, bgc, bgd) -> new_asAs(new_esEs19(vyw300, vyw4000, bgb), new_asAs(new_esEs18(vyw301, vyw4001, bgc), new_esEs17(vyw302, vyw4002, bgd))) new_esEs28(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_lt13(vyw4311, vyw4511, ty_Bool) -> new_lt18(vyw4311, vyw4511) new_lt21(vyw4310, vyw4510, ty_Int) -> new_lt6(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(ty_Ratio, bhd)) -> new_esEs11(vyw302, vyw4002, bhd) new_lt14(vyw4310, vyw4510, app(ty_Ratio, ccf)) -> new_lt12(vyw4310, vyw4510, ccf) new_lt14(vyw4310, vyw4510, ty_Integer) -> new_lt15(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Char, cb) -> new_ltEs8(vyw4310, vyw4510) new_compare210(vyw430, vyw450, False, ge, gf, gg) -> new_compare113(vyw430, vyw450, new_ltEs15(vyw430, vyw450, ge, gf, gg), ge, gf, gg) new_esEs28(vyw301, vyw4001, ty_Bool) -> new_esEs20(vyw301, vyw4001) new_esEs29(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs15(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, bad) -> new_pePe(new_lt14(vyw4310, vyw4510, gh), new_asAs(new_esEs24(vyw4310, vyw4510, gh), new_pePe(new_lt13(vyw4311, vyw4511, ha), new_asAs(new_esEs23(vyw4311, vyw4511, ha), new_ltEs18(vyw4312, vyw4512, bad))))) new_lt13(vyw4311, vyw4511, ty_Ordering) -> new_lt7(vyw4311, vyw4511) new_esEs24(vyw4310, vyw4510, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(vyw4310, vyw4510, bca, bcb, bcc) new_primMulNat0(Succ(vyw30100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw400000)) -> Zero new_esEs29(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_ltEs9(vyw431, vyw451) -> new_not(new_esEs8(new_compare8(vyw431, vyw451), GT)) new_esEs17(vyw302, vyw4002, ty_@0) -> new_esEs21(vyw302, vyw4002) new_lt12(vyw430, vyw450, ccc) -> new_esEs8(new_compare19(vyw430, vyw450, ccc), LT) new_primPlusNat1(Succ(vyw900), vyw400000) -> Succ(Succ(new_primPlusNat0(vyw900, vyw400000))) new_esEs4(Just(vyw300), Just(vyw4000), ty_Float) -> new_esEs16(vyw300, vyw4000) new_esEs19(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_lt20(vyw430, vyw450, ty_@0) -> new_lt10(vyw430, vyw450) new_esEs18(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_esEs5(Left(vyw300), Left(vyw4000), app(app(ty_Either, cfe), cff), ced) -> new_esEs5(vyw300, vyw4000, cfe, cff) new_compare17(vyw4300, vyw4500, app(ty_Ratio, bga)) -> new_compare19(vyw4300, vyw4500, bga) new_primPlusNat0(Succ(vyw9000), Zero) -> Succ(vyw9000) new_primPlusNat0(Zero, Succ(vyw4000000)) -> Succ(vyw4000000) new_lt13(vyw4311, vyw4511, ty_Char) -> new_lt16(vyw4311, vyw4511) new_primPlusNat1(Zero, vyw400000) -> Succ(vyw400000) new_esEs23(vyw4311, vyw4511, ty_Float) -> new_esEs16(vyw4311, vyw4511) new_compare19(:%(vyw4300, vyw4301), :%(vyw4500, vyw4501), ty_Int) -> new_compare8(new_sr(vyw4300, vyw4501), new_sr(vyw4500, vyw4301)) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Integer, cb) -> new_ltEs6(vyw4310, vyw4510) new_esEs8(LT, LT) -> True new_esEs11(:%(vyw300, vyw301), :%(vyw4000, vyw4001), bfh) -> new_asAs(new_esEs13(vyw300, vyw4000, bfh), new_esEs12(vyw301, vyw4001, bfh)) new_esEs28(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_lt14(vyw4310, vyw4510, app(app(ty_Either, bbf), bbg)) -> new_lt5(vyw4310, vyw4510, bbf, bbg) new_lt21(vyw4310, vyw4510, ty_Double) -> new_lt11(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, ty_Char) -> new_ltEs8(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, ty_Double) -> new_esEs9(vyw430, vyw450) new_compare17(vyw4300, vyw4500, ty_Float) -> new_compare18(vyw4300, vyw4500) new_esEs27(vyw4310, vyw4510, ty_Char) -> new_esEs15(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs15(vyw4312, vyw4512, hf, hg, hh) new_esEs22(:(vyw300, vyw301), [], ccg) -> False new_esEs22([], :(vyw4000, vyw4001), ccg) -> False new_ltEs20(vyw4311, vyw4511, ty_Double) -> new_ltEs13(vyw4311, vyw4511) new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_Int) -> new_esEs10(vyw300, vyw4000) new_compare17(vyw4300, vyw4500, ty_Ordering) -> new_compare11(vyw4300, vyw4500) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Bool) -> new_ltEs4(vyw4310, vyw4510) new_lt13(vyw4311, vyw4511, ty_Integer) -> new_lt15(vyw4311, vyw4511) new_lt14(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) new_esEs18(vyw301, vyw4001, app(ty_Ratio, caf)) -> new_esEs11(vyw301, vyw4001, caf) new_esEs23(vyw4311, vyw4511, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs6(vyw4311, vyw4511, bah, bba, bbb) new_ltEs20(vyw4311, vyw4511, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs15(vyw4311, vyw4511, bdc, bdd, bde) new_ltEs19(vyw431, vyw451, ty_Ordering) -> new_ltEs17(vyw431, vyw451) new_ltEs19(vyw431, vyw451, ty_Float) -> new_ltEs11(vyw431, vyw451) new_compare25(vyw430, vyw450, False) -> new_compare16(vyw430, vyw450, new_ltEs17(vyw430, vyw450)) new_esEs28(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_esEs27(vyw4310, vyw4510, ty_Double) -> new_esEs9(vyw4310, vyw4510) new_primMulInt(Neg(vyw3010), Neg(vyw40000)) -> Pos(new_primMulNat0(vyw3010, vyw40000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw45000))) -> new_primCmpNat0(Zero, Succ(vyw45000)) new_esEs25(vyw300, vyw4000, app(app(ty_@2, cdd), cde)) -> new_esEs7(vyw300, vyw4000, cdd, cde) new_lt18(vyw430, vyw450) -> new_esEs8(new_compare27(vyw430, vyw450), LT) new_compare9(Integer(vyw4300), Integer(vyw4500)) -> new_primCmpInt(vyw4300, vyw4500) new_esEs17(vyw302, vyw4002, app(ty_[], bhc)) -> new_esEs22(vyw302, vyw4002, bhc) new_lt21(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) new_esEs18(vyw301, vyw4001, ty_@0) -> new_esEs21(vyw301, vyw4001) new_ltEs19(vyw431, vyw451, ty_Double) -> new_ltEs13(vyw431, vyw451) new_ltEs19(vyw431, vyw451, app(app(app(ty_@3, gh), ha), bad)) -> new_ltEs15(vyw431, vyw451, gh, ha, bad) new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_@0) -> new_esEs21(vyw300, vyw4000) new_ltEs17(EQ, EQ) -> True new_ltEs20(vyw4311, vyw4511, ty_Ordering) -> new_ltEs17(vyw4311, vyw4511) new_esEs4(Just(vyw300), Just(vyw4000), app(ty_Maybe, dcf)) -> new_esEs4(vyw300, vyw4000, dcf) new_esEs23(vyw4311, vyw4511, ty_Ordering) -> new_esEs8(vyw4311, vyw4511) new_compare24(vyw430, vyw450, False) -> new_compare10(vyw430, vyw450, new_ltEs4(vyw430, vyw450)) new_esEs19(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_lt14(vyw4310, vyw4510, ty_Bool) -> new_lt18(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), cfg, app(ty_[], cgf)) -> new_esEs22(vyw300, vyw4000, cgf) new_esEs5(Left(vyw300), Left(vyw4000), ty_Char, ced) -> new_esEs15(vyw300, vyw4000) new_ltEs17(GT, LT) -> False new_lt13(vyw4311, vyw4511, ty_Float) -> new_lt17(vyw4311, vyw4511) new_ltEs17(EQ, LT) -> False new_compare16(vyw430, vyw450, True) -> LT new_esEs28(vyw301, vyw4001, app(ty_Ratio, daf)) -> new_esEs11(vyw301, vyw4001, daf) new_primMulInt(Pos(vyw3010), Neg(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_primMulInt(Neg(vyw3010), Pos(vyw40000)) -> Neg(new_primMulNat0(vyw3010, vyw40000)) new_esEs19(vyw300, vyw4000, app(app(ty_Either, cca), ccb)) -> new_esEs5(vyw300, vyw4000, cca, ccb) new_esEs5(Right(vyw300), Right(vyw4000), cfg, app(app(app(ty_@3, cga), cgb), cgc)) -> new_esEs6(vyw300, vyw4000, cga, cgb, cgc) new_compare17(vyw4300, vyw4500, ty_Double) -> new_compare28(vyw4300, vyw4500) new_esEs5(Left(vyw300), Left(vyw4000), app(ty_[], cfc), ced) -> new_esEs22(vyw300, vyw4000, cfc) new_compare7(vyw430, vyw450, gc, gd) -> new_compare26(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) new_esEs24(vyw4310, vyw4510, app(ty_Maybe, bbe)) -> new_esEs4(vyw4310, vyw4510, bbe) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_Int) -> new_ltEs9(vyw4310, vyw4510) new_compare12(vyw430, vyw450, ge, gf, gg) -> new_compare210(vyw430, vyw450, new_esEs6(vyw430, vyw450, ge, gf, gg), ge, gf, gg) new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(ty_Either, cc), cd), cb) -> new_ltEs10(vyw4310, vyw4510, cc, cd) new_esEs19(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs24(vyw4310, vyw4510, ty_Char) -> new_esEs15(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(ty_[], bed)) -> new_lt19(vyw4310, vyw4510, bed) new_ltEs19(vyw431, vyw451, ty_Int) -> new_ltEs9(vyw431, vyw451) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Int) -> new_ltEs9(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, app(app(app(ty_@3, bgf), bgg), bgh)) -> new_esEs6(vyw302, vyw4002, bgf, bgg, bgh) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_@0, cb) -> new_ltEs5(vyw4310, vyw4510) new_sr0(Integer(vyw45000), Integer(vyw43010)) -> Integer(new_primMulInt(vyw45000, vyw43010)) new_esEs24(vyw4310, vyw4510, ty_Integer) -> new_esEs14(vyw4310, vyw4510) new_primCompAux0(vyw4300, vyw4500, vyw119, eg) -> new_primCompAux00(vyw119, new_compare17(vyw4300, vyw4500, eg)) new_esEs18(vyw301, vyw4001, app(ty_Maybe, bhg)) -> new_esEs4(vyw301, vyw4001, bhg) new_ltEs18(vyw4312, vyw4512, app(ty_[], he)) -> new_ltEs14(vyw4312, vyw4512, he) new_ltEs10(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ca), cb) -> new_ltEs7(vyw4310, vyw4510, ca) new_esEs27(vyw4310, vyw4510, app(app(app(ty_@3, bee), bef), beg)) -> new_esEs6(vyw4310, vyw4510, bee, bef, beg) new_esEs28(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_esEs18(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_lt13(vyw4311, vyw4511, app(ty_Ratio, cce)) -> new_lt12(vyw4311, vyw4511, cce) new_ltEs20(vyw4311, vyw4511, ty_Char) -> new_ltEs8(vyw4311, vyw4511) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_ltEs10(Left(vyw4310), Right(vyw4510), dd, cb) -> True new_esEs18(vyw301, vyw4001, ty_Char) -> new_esEs15(vyw301, vyw4001) new_ltEs18(vyw4312, vyw4512, ty_Double) -> new_ltEs13(vyw4312, vyw4512) new_lt14(vyw4310, vyw4510, ty_Int) -> new_lt6(vyw4310, vyw4510) new_compare111(vyw99, vyw100, vyw101, vyw102, True, ceb, cec) -> LT new_compare0([], :(vyw4500, vyw4501), eg) -> LT new_asAs(True, vyw66) -> vyw66 new_compare113(vyw430, vyw450, True, ge, gf, gg) -> LT new_esEs4(Just(vyw300), Just(vyw4000), ty_Int) -> new_esEs10(vyw300, vyw4000) new_esEs5(Left(vyw300), Left(vyw4000), ty_Integer, ced) -> new_esEs14(vyw300, vyw4000) new_compare211(vyw430, vyw450, False, gb) -> new_compare112(vyw430, vyw450, new_ltEs7(vyw430, vyw450, gb), gb) new_esEs25(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_ltEs20(vyw4311, vyw4511, app(app(ty_Either, bch), bda)) -> new_ltEs10(vyw4311, vyw4511, bch, bda) new_ltEs18(vyw4312, vyw4512, ty_Ordering) -> new_ltEs17(vyw4312, vyw4512) new_compare17(vyw4300, vyw4500, app(app(app(ty_@3, fd), ff), fg)) -> new_compare12(vyw4300, vyw4500, fd, ff, fg) new_lt14(vyw4310, vyw4510, ty_Char) -> new_lt16(vyw4310, vyw4510) new_esEs27(vyw4310, vyw4510, app(ty_[], bed)) -> new_esEs22(vyw4310, vyw4510, bed) new_esEs18(vyw301, vyw4001, app(app(ty_@2, cac), cad)) -> new_esEs7(vyw301, vyw4001, cac, cad) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_Either, ddf), ddg)) -> new_esEs5(vyw300, vyw4000, ddf, ddg) new_esEs24(vyw4310, vyw4510, app(app(ty_@2, bcd), bce)) -> new_esEs7(vyw4310, vyw4510, bcd, bce) new_primCmpInt(Pos(Succ(vyw43000)), Pos(vyw4500)) -> new_primCmpNat0(Succ(vyw43000), vyw4500) new_lt13(vyw4311, vyw4511, app(ty_Maybe, bac)) -> new_lt9(vyw4311, vyw4511, bac) new_esEs29(vyw300, vyw4000, app(app(ty_Either, dca), dcb)) -> new_esEs5(vyw300, vyw4000, dca, dcb) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, app(ty_Maybe, de)) -> new_ltEs7(vyw4310, vyw4510, de) new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_esEs29(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_primCompAux00(vyw126, EQ) -> vyw126 new_compare0([], [], eg) -> EQ new_sr(vyw301, vyw4000) -> new_primMulInt(vyw301, vyw4000) new_lt7(vyw430, vyw450) -> new_esEs8(new_compare11(vyw430, vyw450), LT) new_ltEs7(Nothing, Nothing, bff) -> True new_lt14(vyw4310, vyw4510, app(app(app(ty_@3, bca), bcb), bcc)) -> new_lt8(vyw4310, vyw4510, bca, bcb, bcc) new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bg), bh)) -> new_ltEs16(vyw4310, vyw4510, bg, bh) new_esEs23(vyw4311, vyw4511, app(ty_Ratio, cce)) -> new_esEs11(vyw4311, vyw4511, cce) new_esEs5(Left(vyw300), Left(vyw4000), ty_Float, ced) -> new_esEs16(vyw300, vyw4000) new_primMulNat0(Zero, Zero) -> Zero new_esEs25(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_[], bc)) -> new_ltEs14(vyw4310, vyw4510, bc) new_compare10(vyw430, vyw450, False) -> GT new_esEs27(vyw4310, vyw4510, ty_Ordering) -> new_esEs8(vyw4310, vyw4510) new_ltEs20(vyw4311, vyw4511, app(ty_[], bdb)) -> new_ltEs14(vyw4311, vyw4511, bdb) new_ltEs8(vyw431, vyw451) -> new_not(new_esEs8(new_compare14(vyw431, vyw451), GT)) new_ltEs18(vyw4312, vyw4512, ty_Integer) -> new_ltEs6(vyw4312, vyw4512) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_Bool) -> new_ltEs4(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Nothing, bff) -> False new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(ty_Either, ba), bb)) -> new_ltEs10(vyw4310, vyw4510, ba, bb) new_esEs28(vyw301, vyw4001, app(ty_Maybe, chg)) -> new_esEs4(vyw301, vyw4001, chg) new_esEs23(vyw4311, vyw4511, app(app(ty_@2, bbc), bbd)) -> new_esEs7(vyw4311, vyw4511, bbc, bbd) new_ltEs20(vyw4311, vyw4511, app(app(ty_@2, bdf), bdg)) -> new_ltEs16(vyw4311, vyw4511, bdf, bdg) new_ltEs19(vyw431, vyw451, ty_Char) -> new_ltEs8(vyw431, vyw451) new_esEs13(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs26(vyw430, vyw450, ty_@0) -> new_esEs21(vyw430, vyw450) new_lt20(vyw430, vyw450, ty_Int) -> new_lt6(vyw430, vyw450) new_esEs4(Nothing, Nothing, dce) -> True new_lt20(vyw430, vyw450, app(app(app(ty_@3, ge), gf), gg)) -> new_lt8(vyw430, vyw450, ge, gf, gg) new_esEs5(Right(vyw300), Right(vyw4000), cfg, app(app(ty_Either, cgh), cha)) -> new_esEs5(vyw300, vyw4000, cgh, cha) new_esEs4(Nothing, Just(vyw4000), dce) -> False new_esEs4(Just(vyw300), Nothing, dce) -> False new_lt13(vyw4311, vyw4511, app(app(ty_@2, bbc), bbd)) -> new_lt4(vyw4311, vyw4511, bbc, bbd) new_lt8(vyw430, vyw450, ge, gf, gg) -> new_esEs8(new_compare12(vyw430, vyw450, ge, gf, gg), LT) new_esEs9(Double(vyw300, vyw301), Double(vyw4000, vyw4001)) -> new_esEs10(new_sr(vyw300, vyw4001), new_sr(vyw301, vyw4000)) new_esEs24(vyw4310, vyw4510, ty_Float) -> new_esEs16(vyw4310, vyw4510) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_Double) -> new_ltEs13(vyw4310, vyw4510) new_esEs21(@0, @0) -> True new_compare14(Char(vyw4300), Char(vyw4500)) -> new_primCmpNat0(vyw4300, vyw4500) new_ltEs10(Left(vyw4310), Left(vyw4510), ty_Ordering, cb) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Right(vyw300), Right(vyw4000), cfg, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_Float) -> new_ltEs11(vyw4310, vyw4510) new_compare27(vyw430, vyw450) -> new_compare24(vyw430, vyw450, new_esEs20(vyw430, vyw450)) new_esEs24(vyw4310, vyw4510, ty_Bool) -> new_esEs20(vyw4310, vyw4510) new_esEs29(vyw300, vyw4000, ty_Bool) -> new_esEs20(vyw300, vyw4000) new_ltEs5(vyw431, vyw451) -> new_not(new_esEs8(new_compare6(vyw431, vyw451), GT)) new_ltEs19(vyw431, vyw451, app(app(ty_@2, bcf), bea)) -> new_ltEs16(vyw431, vyw451, bcf, bea) new_ltEs13(vyw431, vyw451) -> new_not(new_esEs8(new_compare28(vyw431, vyw451), GT)) new_lt14(vyw4310, vyw4510, app(ty_Maybe, bbe)) -> new_lt9(vyw4310, vyw4510, bbe) new_esEs18(vyw301, vyw4001, ty_Float) -> new_esEs16(vyw301, vyw4001) new_ltEs19(vyw431, vyw451, app(ty_Maybe, bff)) -> new_ltEs7(vyw431, vyw451, bff) new_ltEs20(vyw4311, vyw4511, app(ty_Ratio, chc)) -> new_ltEs12(vyw4311, vyw4511, chc) new_primEqInt(Neg(Succ(vyw3000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw40000))) -> False new_primEqInt(Pos(Succ(vyw3000)), Pos(Succ(vyw40000))) -> new_primEqNat0(vyw3000, vyw40000) new_ltEs4(True, False) -> False new_esEs17(vyw302, vyw4002, app(app(ty_@2, bha), bhb)) -> new_esEs7(vyw302, vyw4002, bha, bhb) new_esEs5(Left(vyw300), Left(vyw4000), ty_Bool, ced) -> new_esEs20(vyw300, vyw4000) new_compare24(vyw430, vyw450, True) -> EQ new_esEs28(vyw301, vyw4001, app(app(ty_@2, dac), dad)) -> new_esEs7(vyw301, vyw4001, dac, dad) new_lt13(vyw4311, vyw4511, ty_Int) -> new_lt6(vyw4311, vyw4511) new_esEs25(vyw300, vyw4000, app(app(ty_Either, cdh), cea)) -> new_esEs5(vyw300, vyw4000, cdh, cea) new_esEs29(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_ltEs11(vyw431, vyw451) -> new_not(new_esEs8(new_compare18(vyw431, vyw451), GT)) new_primEqInt(Pos(Succ(vyw3000)), Neg(vyw4000)) -> False new_primEqInt(Neg(Succ(vyw3000)), Pos(vyw4000)) -> False new_esEs26(vyw430, vyw450, ty_Ordering) -> new_esEs8(vyw430, vyw450) new_compare28(Double(vyw4300, Pos(vyw43010)), Double(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_compare28(Double(vyw4300, Neg(vyw43010)), Double(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs27(vyw4310, vyw4510, app(ty_Ratio, chd)) -> new_esEs11(vyw4310, vyw4510, chd) new_esEs7(@2(vyw300, vyw301), @2(vyw4000, vyw4001), che, chf) -> new_asAs(new_esEs29(vyw300, vyw4000, che), new_esEs28(vyw301, vyw4001, chf)) new_primCmpInt(Neg(Zero), Neg(Succ(vyw45000))) -> new_primCmpNat0(Succ(vyw45000), Zero) new_ltEs18(vyw4312, vyw4512, app(app(ty_Either, hc), hd)) -> new_ltEs10(vyw4312, vyw4512, hc, hd) new_lt11(vyw430, vyw450) -> new_esEs8(new_compare28(vyw430, vyw450), LT) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Ratio, bfg)) -> new_ltEs12(vyw4310, vyw4510, bfg) new_esEs19(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, app(ty_Ratio, chb)) -> new_ltEs12(vyw431, vyw451, chb) new_esEs29(vyw300, vyw4000, app(ty_Maybe, dba)) -> new_esEs4(vyw300, vyw4000, dba) new_compare18(Float(vyw4300, Pos(vyw43010)), Float(vyw4500, Pos(vyw45010))) -> new_compare8(new_sr(vyw4300, Pos(vyw45010)), new_sr(Pos(vyw43010), vyw4500)) new_esEs18(vyw301, vyw4001, ty_Bool) -> new_esEs20(vyw301, vyw4001) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs27(vyw4310, vyw4510, ty_@0) -> new_esEs21(vyw4310, vyw4510) new_esEs25(vyw300, vyw4000, ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs5(Right(vyw300), Right(vyw4000), cfg, app(ty_Ratio, cgg)) -> new_esEs11(vyw300, vyw4000, cgg) new_lt20(vyw430, vyw450, app(ty_[], eg)) -> new_lt19(vyw430, vyw450, eg) new_ltEs4(False, False) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Char) -> new_esEs15(vyw300, vyw4000) new_esEs23(vyw4311, vyw4511, ty_Char) -> new_esEs15(vyw4311, vyw4511) new_esEs26(vyw430, vyw450, app(app(ty_Either, gc), gd)) -> new_esEs5(vyw430, vyw450, gc, gd) new_lt20(vyw430, vyw450, app(ty_Ratio, ccc)) -> new_lt12(vyw430, vyw450, ccc) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Float) -> new_ltEs11(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Ordering) -> new_ltEs17(vyw4310, vyw4510) new_esEs5(Left(vyw300), Left(vyw4000), app(app(app(ty_@3, cef), ceg), ceh), ced) -> new_esEs6(vyw300, vyw4000, cef, ceg, ceh) new_ltEs7(Just(vyw4310), Just(vyw4510), app(ty_Maybe, h)) -> new_ltEs7(vyw4310, vyw4510, h) new_esEs26(vyw430, vyw450, app(app(app(ty_@3, ge), gf), gg)) -> new_esEs6(vyw430, vyw450, ge, gf, gg) new_esEs27(vyw4310, vyw4510, ty_Float) -> new_esEs16(vyw4310, vyw4510) new_ltEs20(vyw4311, vyw4511, ty_Integer) -> new_ltEs6(vyw4311, vyw4511) new_esEs18(vyw301, vyw4001, app(app(app(ty_@3, bhh), caa), cab)) -> new_esEs6(vyw301, vyw4001, bhh, caa, cab) new_esEs19(vyw300, vyw4000, ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs19(vyw300, vyw4000, app(app(ty_@2, cbe), cbf)) -> new_esEs7(vyw300, vyw4000, cbe, cbf) new_lt10(vyw430, vyw450) -> new_esEs8(new_compare6(vyw430, vyw450), LT) new_not(False) -> True new_esEs29(vyw300, vyw4000, ty_Float) -> new_esEs16(vyw300, vyw4000) new_ltEs20(vyw4311, vyw4511, ty_Bool) -> new_ltEs4(vyw4311, vyw4511) new_esEs18(vyw301, vyw4001, app(app(ty_Either, cag), cah)) -> new_esEs5(vyw301, vyw4001, cag, cah) new_esEs17(vyw302, vyw4002, app(ty_Maybe, bge)) -> new_esEs4(vyw302, vyw4002, bge) new_ltEs10(Left(vyw4310), Left(vyw4510), app(app(ty_@2, db), dc), cb) -> new_ltEs16(vyw4310, vyw4510, db, dc) new_compare0(:(vyw4300, vyw4301), [], eg) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_primPlusNat0(Succ(vyw9000), Succ(vyw4000000)) -> Succ(Succ(new_primPlusNat0(vyw9000, vyw4000000))) new_esEs5(Left(vyw300), Right(vyw4000), cfg, ced) -> False new_esEs5(Right(vyw300), Left(vyw4000), cfg, ced) -> False new_lt21(vyw4310, vyw4510, ty_Bool) -> new_lt18(vyw4310, vyw4510) new_ltEs18(vyw4312, vyw4512, ty_Int) -> new_ltEs9(vyw4312, vyw4512) new_ltEs18(vyw4312, vyw4512, app(ty_Ratio, ccd)) -> new_ltEs12(vyw4312, vyw4512, ccd) new_esEs4(Just(vyw300), Just(vyw4000), ty_Integer) -> new_esEs14(vyw300, vyw4000) new_esEs23(vyw4311, vyw4511, ty_Integer) -> new_esEs14(vyw4311, vyw4511) new_compare25(vyw430, vyw450, True) -> EQ new_lt20(vyw430, vyw450, ty_Integer) -> new_lt15(vyw430, vyw450) new_esEs29(vyw300, vyw4000, app(app(ty_@2, dbe), dbf)) -> new_esEs7(vyw300, vyw4000, dbe, dbf) new_esEs5(Left(vyw300), Left(vyw4000), ty_Int, ced) -> new_esEs10(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, app(ty_Ratio, dcd)) -> new_ltEs12(vyw4310, vyw4510, dcd) new_ltEs18(vyw4312, vyw4512, app(app(ty_@2, baa), bab)) -> new_ltEs16(vyw4312, vyw4512, baa, bab) new_ltEs19(vyw431, vyw451, app(app(ty_Either, dd), cb)) -> new_ltEs10(vyw431, vyw451, dd, cb) new_esEs12(vyw301, vyw4001, ty_Int) -> new_esEs10(vyw301, vyw4001) new_compare26(vyw430, vyw450, False, gc, gd) -> new_compare15(vyw430, vyw450, new_ltEs10(vyw430, vyw450, gc, gd), gc, gd) new_compare18(Float(vyw4300, Neg(vyw43010)), Float(vyw4500, Neg(vyw45010))) -> new_compare8(new_sr(vyw4300, Neg(vyw45010)), new_sr(Neg(vyw43010), vyw4500)) new_esEs24(vyw4310, vyw4510, ty_Int) -> new_esEs10(vyw4310, vyw4510) new_lt14(vyw4310, vyw4510, ty_@0) -> new_lt10(vyw4310, vyw4510) new_esEs17(vyw302, vyw4002, ty_Float) -> new_esEs16(vyw302, vyw4002) new_esEs24(vyw4310, vyw4510, app(ty_[], bbh)) -> new_esEs22(vyw4310, vyw4510, bbh) new_lt14(vyw4310, vyw4510, ty_Float) -> new_lt17(vyw4310, vyw4510) new_esEs10(vyw30, vyw400) -> new_primEqInt(vyw30, vyw400) new_esEs19(vyw300, vyw4000, ty_Double) -> new_esEs9(vyw300, vyw4000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_compare10(vyw430, vyw450, True) -> LT new_compare0(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux0(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) new_lt20(vyw430, vyw450, app(app(ty_@2, bfb), bfc)) -> new_lt4(vyw430, vyw450, bfb, bfc) new_lt5(vyw430, vyw450, gc, gd) -> new_esEs8(new_compare7(vyw430, vyw450, gc, gd), LT) new_esEs23(vyw4311, vyw4511, ty_@0) -> new_esEs21(vyw4311, vyw4511) new_ltEs17(GT, EQ) -> False new_compare17(vyw4300, vyw4500, ty_Integer) -> new_compare9(vyw4300, vyw4500) new_esEs25(vyw300, vyw4000, app(ty_Maybe, cch)) -> new_esEs4(vyw300, vyw4000, cch) new_ltEs14(vyw431, vyw451, ef) -> new_not(new_esEs8(new_compare0(vyw431, vyw451, ef), GT)) new_esEs12(vyw301, vyw4001, ty_Integer) -> new_esEs14(vyw301, vyw4001) new_lt19(vyw430, vyw450, eg) -> new_esEs8(new_compare0(vyw430, vyw450, eg), LT) new_compare6(@0, @0) -> EQ new_esEs23(vyw4311, vyw4511, app(ty_[], bag)) -> new_esEs22(vyw4311, vyw4511, bag) new_lt21(vyw4310, vyw4510, app(app(app(ty_@3, bee), bef), beg)) -> new_lt8(vyw4310, vyw4510, bee, bef, beg) new_esEs25(vyw300, vyw4000, ty_Int) -> new_esEs10(vyw300, vyw4000) new_ltEs19(vyw431, vyw451, ty_Bool) -> new_ltEs4(vyw431, vyw451) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs15(vyw4310, vyw4510, ea, eb, ec) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_ltEs4(True, True) -> True new_esEs22(:(vyw300, vyw301), :(vyw4000, vyw4001), ccg) -> new_asAs(new_esEs25(vyw300, vyw4000, ccg), new_esEs22(vyw301, vyw4001, ccg)) new_esEs20(True, True) -> True new_compare29(vyw43, vyw45, True, bfd, bfe) -> EQ new_primCmpNat0(Succ(vyw43000), Succ(vyw45000)) -> new_primCmpNat0(vyw43000, vyw45000) new_lt20(vyw430, vyw450, ty_Char) -> new_lt16(vyw430, vyw450) new_esEs22([], [], ccg) -> True new_esEs4(Just(vyw300), Just(vyw4000), ty_Bool) -> new_esEs20(vyw300, vyw4000) new_esEs24(vyw4310, vyw4510, app(ty_Ratio, ccf)) -> new_esEs11(vyw4310, vyw4510, ccf) new_esEs27(vyw4310, vyw4510, app(ty_Maybe, bdh)) -> new_esEs4(vyw4310, vyw4510, bdh) new_ltEs18(vyw4312, vyw4512, ty_Bool) -> new_ltEs4(vyw4312, vyw4512) new_esEs26(vyw430, vyw450, ty_Int) -> new_esEs10(vyw430, vyw450) new_esEs28(vyw301, vyw4001, ty_Ordering) -> new_esEs8(vyw301, vyw4001) new_esEs4(Just(vyw300), Just(vyw4000), app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyw300, vyw4000, ddb, ddc) new_compare15(vyw430, vyw450, False, gc, gd) -> GT new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_Char) -> new_ltEs8(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(app(ty_Either, beb), bec)) -> new_lt5(vyw4310, vyw4510, beb, bec) new_ltEs17(GT, GT) -> True new_esEs25(vyw300, vyw4000, ty_@0) -> new_esEs21(vyw300, vyw4000) new_lt21(vyw4310, vyw4510, app(app(ty_@2, beh), bfa)) -> new_lt4(vyw4310, vyw4510, beh, bfa) new_lt21(vyw4310, vyw4510, ty_Ordering) -> new_lt7(vyw4310, vyw4510) new_esEs26(vyw430, vyw450, app(ty_Maybe, gb)) -> new_esEs4(vyw430, vyw450, gb) new_primEqNat0(Zero, Zero) -> True new_esEs28(vyw301, vyw4001, app(app(ty_Either, dag), dah)) -> new_esEs5(vyw301, vyw4001, dag, dah) new_esEs4(Just(vyw300), Just(vyw4000), ty_Double) -> new_esEs9(vyw300, vyw4000) new_esEs25(vyw300, vyw4000, app(ty_Ratio, cdg)) -> new_esEs11(vyw300, vyw4000, cdg) new_ltEs20(vyw4311, vyw4511, ty_Int) -> new_ltEs9(vyw4311, vyw4511) new_esEs15(Char(vyw300), Char(vyw4000)) -> new_primEqNat0(vyw300, vyw4000) new_ltEs16(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, bea) -> new_pePe(new_lt21(vyw4310, vyw4510, bcf), new_asAs(new_esEs27(vyw4310, vyw4510, bcf), new_ltEs20(vyw4311, vyw4511, bea))) new_esEs28(vyw301, vyw4001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(vyw301, vyw4001, chh, daa, dab) new_esEs29(vyw300, vyw4000, ty_Ordering) -> new_esEs8(vyw300, vyw4000) new_lt20(vyw430, vyw450, app(app(ty_Either, gc), gd)) -> new_lt5(vyw430, vyw450, gc, gd) new_esEs24(vyw4310, vyw4510, ty_@0) -> new_esEs21(vyw4310, vyw4510) new_compare113(vyw430, vyw450, False, ge, gf, gg) -> GT new_asAs(False, vyw66) -> False new_esEs5(Left(vyw300), Left(vyw4000), ty_@0, ced) -> new_esEs21(vyw300, vyw4000) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_Integer) -> new_ltEs6(vyw4310, vyw4510) new_lt21(vyw4310, vyw4510, app(ty_Ratio, chd)) -> new_lt12(vyw4310, vyw4510, chd) new_compare5(vyw430, vyw450, bfb, bfc) -> new_compare29(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfb, bfc), bfb, bfc) new_lt20(vyw430, vyw450, ty_Bool) -> new_lt18(vyw430, vyw450) new_esEs14(Integer(vyw300), Integer(vyw4000)) -> new_primEqInt(vyw300, vyw4000) new_ltEs7(Just(vyw4310), Just(vyw4510), ty_Double) -> new_ltEs13(vyw4310, vyw4510) new_ltEs7(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs15(vyw4310, vyw4510, bd, be, bf) new_compare17(vyw4300, vyw4500, app(app(ty_Either, fa), fb)) -> new_compare7(vyw4300, vyw4500, fa, fb) new_compare17(vyw4300, vyw4500, app(app(ty_@2, fh), ga)) -> new_compare5(vyw4300, vyw4500, fh, ga) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, ty_@0) -> new_ltEs5(vyw4310, vyw4510) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_compare112(vyw430, vyw450, False, gb) -> GT new_lt15(vyw430, vyw450) -> new_esEs8(new_compare9(vyw430, vyw450), LT) new_esEs17(vyw302, vyw4002, ty_Ordering) -> new_esEs8(vyw302, vyw4002) new_compare17(vyw4300, vyw4500, ty_@0) -> new_compare6(vyw4300, vyw4500) new_ltEs10(Right(vyw4310), Right(vyw4510), dd, app(app(ty_@2, ed), ee)) -> new_ltEs16(vyw4310, vyw4510, ed, ee) The set Q consists of the following terms: new_lt12(x0, x1, x2) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_esEs8(EQ, EQ) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_compare210(x0, x1, True, x2, x3, x4) new_ltEs19(x0, x1, ty_Bool) new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt9(x0, x1, x2) new_compare110(x0, x1, x2, x3, False, x4, x5, x6) new_lt21(x0, x1, ty_@0) new_lt20(x0, x1, ty_Bool) new_ltEs17(EQ, EQ) new_ltEs18(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_ltEs10(Left(x0), Left(x1), ty_Float, x2) new_esEs19(x0, x1, app(ty_Ratio, x2)) new_esEs28(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs4(Just(x0), Just(x1), ty_@0) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs22([], :(x0, x1), x2) new_compare17(x0, x1, ty_@0) new_compare19(:%(x0, x1), :%(x2, x3), ty_Integer) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs10(Right(x0), Left(x1), x2, x3) new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs10(Left(x0), Right(x1), x2, x3) new_compare17(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), ty_Integer, x2) new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs5(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Integer) new_sr0(Integer(x0), Integer(x1)) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Just(x0), Just(x1), app(ty_[], x2)) new_pePe(True, x0) new_esEs24(x0, x1, ty_Bool) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs19(x0, x1, ty_Float) new_esEs20(False, True) new_esEs20(True, False) new_ltEs20(x0, x1, ty_Float) new_lt5(x0, x1, x2, x3) new_ltEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare17(x0, x1, ty_Char) new_ltEs19(x0, x1, app(ty_[], x2)) new_esEs23(x0, x1, ty_Float) new_compare24(x0, x1, False) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_Bool) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt20(x0, x1, ty_@0) new_esEs18(x0, x1, app(ty_Maybe, x2)) new_lt14(x0, x1, app(ty_[], x2)) new_lt4(x0, x1, x2, x3) new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_asAs(False, x0) new_esEs4(Just(x0), Nothing, x1) new_compare6(@0, @0) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_compare17(x0, x1, ty_Integer) new_esEs29(x0, x1, app(ty_[], x2)) new_ltEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1) new_lt21(x0, x1, ty_Integer) new_esEs23(x0, x1, ty_Bool) new_compare10(x0, x1, True) new_ltEs6(x0, x1) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), ty_Char) new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) new_lt11(x0, x1) new_lt13(x0, x1, app(ty_Ratio, x2)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_ltEs12(x0, x1, x2) new_ltEs19(x0, x1, ty_Char) new_lt21(x0, x1, ty_Int) new_ltEs8(x0, x1) new_lt21(x0, x1, ty_Char) new_esEs26(x0, x1, ty_Double) new_esEs23(x0, x1, ty_@0) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs5(Left(x0), Left(x1), ty_Bool, x2) new_esEs4(Just(x0), Just(x1), ty_Int) new_compare28(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare7(x0, x1, x2, x3) new_ltEs19(x0, x1, ty_Int) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) new_compare29(@2(x0, x1), @2(x2, x3), False, x4, x5) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_compare24(x0, x1, True) new_lt14(x0, x1, ty_Integer) new_asAs(True, x0) new_esEs24(x0, x1, ty_Integer) new_primMulNat0(Succ(x0), Zero) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs20(False, False) new_esEs25(x0, x1, ty_Double) new_pePe(False, x0) new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) new_lt21(x0, x1, ty_Bool) new_compare16(x0, x1, True) new_ltEs19(x0, x1, ty_@0) new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Ordering) new_esEs17(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare19(:%(x0, x1), :%(x2, x3), ty_Int) new_ltEs18(x0, x1, ty_Int) new_ltEs10(Right(x0), Right(x1), x2, ty_Float) new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_primPlusNat1(Succ(x0), x1) new_esEs4(Just(x0), Just(x1), ty_Ordering) new_ltEs7(Nothing, Just(x0), x1) new_lt8(x0, x1, x2, x3, x4) new_esEs24(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Char) new_esEs29(x0, x1, ty_Float) new_ltEs14(x0, x1, x2) new_esEs27(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, ty_Float) new_esEs22(:(x0, x1), [], x2) new_compare18(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_lt18(x0, x1) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs18(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Int) new_ltEs10(Left(x0), Left(x1), ty_@0, x2) new_esEs4(Nothing, Just(x0), x1) new_esEs17(x0, x1, app(ty_Maybe, x2)) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_compare111(x0, x1, x2, x3, False, x4, x5) new_ltEs4(True, True) new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_primMulInt(Pos(x0), Pos(x1)) new_lt13(x0, x1, ty_Integer) new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs10(Right(x0), Right(x1), x2, ty_Int) new_lt17(x0, x1) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, app(ty_Ratio, x2)) new_compare17(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Double) new_lt13(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Ordering) new_esEs27(x0, x1, ty_Char) new_lt14(x0, x1, ty_Bool) new_compare17(x0, x1, ty_Double) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs17(x0, x1, ty_Double) new_esEs19(x0, x1, ty_@0) new_esEs15(Char(x0), Char(x1)) new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs7(Just(x0), Just(x1), ty_Integer) new_lt21(x0, x1, ty_Float) new_compare17(x0, x1, app(app(ty_Either, x2), x3)) new_lt19(x0, x1, x2) new_lt21(x0, x1, app(ty_[], x2)) new_compare17(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Int) new_ltEs18(x0, x1, ty_Char) new_esEs8(GT, GT) new_compare0([], [], x0) new_compare29(x0, x1, True, x2, x3) new_lt14(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_@0) new_lt20(x0, x1, ty_Ordering) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs24(x0, x1, ty_Double) new_primCompAux0(x0, x1, x2, x3) new_ltEs17(LT, LT) new_primCmpInt(Neg(Zero), Neg(Zero)) new_ltEs16(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs10(x0, x1) new_esEs5(Left(x0), Left(x1), ty_@0, x2) new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqNat0(Succ(x0), Succ(x1)) new_esEs8(LT, LT) new_esEs5(Right(x0), Right(x1), x2, ty_Int) new_sr(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_esEs29(x0, x1, ty_Char) new_esEs5(Right(x0), Right(x1), x2, ty_Integer) new_lt20(x0, x1, ty_Char) new_esEs22([], [], x0) new_compare12(x0, x1, x2, x3, x4) new_esEs18(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Float) new_compare26(x0, x1, False, x2, x3) new_compare112(x0, x1, True, x2) new_primCompAux00(x0, GT) new_esEs5(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Just(x0), Nothing, x1) new_esEs19(x0, x1, ty_Double) new_esEs24(x0, x1, ty_@0) new_lt14(x0, x1, ty_Char) new_lt6(x0, x1) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_ltEs17(GT, GT) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_esEs12(x0, x1, ty_Int) new_esEs5(Right(x0), Right(x1), x2, ty_Bool) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_lt14(x0, x1, ty_Float) new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primPlusNat0(Succ(x0), Succ(x1)) new_compare113(x0, x1, False, x2, x3, x4) new_ltEs19(x0, x1, ty_Integer) new_compare15(x0, x1, True, x2, x3) new_primCmpNat0(Zero, Succ(x0)) new_esEs18(x0, x1, ty_Char) new_compare17(x0, x1, app(ty_Maybe, x2)) new_compare8(x0, x1) new_esEs4(Just(x0), Just(x1), ty_Integer) new_ltEs18(x0, x1, ty_Integer) new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs27(x0, x1, ty_Float) new_compare17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs29(x0, x1, ty_Int) new_ltEs17(LT, EQ) new_ltEs19(x0, x1, ty_Ordering) new_ltEs17(EQ, LT) new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs18(x0, x1, ty_Int) new_compare28(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_compare18(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs7(Just(x0), Just(x1), ty_Char) new_lt14(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Integer) new_esEs27(x0, x1, ty_Bool) new_esEs4(Just(x0), Just(x1), app(ty_[], x2)) new_esEs18(x0, x1, app(ty_[], x2)) new_lt21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs19(x0, x1, ty_Int) new_esEs29(x0, x1, ty_@0) new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) new_lt14(x0, x1, ty_Int) new_esEs25(x0, x1, ty_Bool) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs19(x0, x1, ty_Char) new_primMulNat0(Zero, Zero) new_esEs4(Nothing, Nothing, x0) new_compare111(x0, x1, x2, x3, True, x4, x5) new_compare0([], :(x0, x1), x2) new_esEs5(Left(x0), Right(x1), x2, x3) new_esEs5(Right(x0), Left(x1), x2, x3) new_esEs25(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs27(x0, x1, ty_@0) new_lt13(x0, x1, ty_Char) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Integer) new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_lt14(x0, x1, ty_Double) new_esEs28(x0, x1, ty_Bool) new_compare25(x0, x1, False) new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs17(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_Ordering) new_esEs4(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, ty_Integer) new_lt13(x0, x1, ty_Int) new_primCompAux00(x0, EQ) new_ltEs7(Just(x0), Just(x1), ty_Int) new_esEs17(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Bool) new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) new_ltEs18(x0, x1, ty_Bool) new_esEs5(Right(x0), Right(x1), x2, ty_Float) new_esEs28(x0, x1, ty_@0) new_lt13(x0, x1, app(app(ty_@2, x2), x3)) new_compare211(x0, x1, False, x2) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(x0, x1, app(ty_[], x2)) new_ltEs10(Right(x0), Right(x1), x2, ty_@0) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_@0) new_ltEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs10(Left(x0), Left(x1), ty_Double, x2) new_ltEs9(x0, x1) new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs13(x0, x1) new_compare15(x0, x1, False, x2, x3) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, app(ty_[], x2)) new_esEs26(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) new_primPlusNat0(Zero, Zero) new_esEs19(x0, x1, ty_Ordering) new_ltEs5(x0, x1) new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_lt13(x0, x1, ty_Ordering) new_not(True) new_esEs29(x0, x1, ty_Integer) new_ltEs7(Just(x0), Just(x1), ty_Double) new_ltEs7(Just(x0), Just(x1), ty_@0) new_lt13(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Double, x2) new_compare112(x0, x1, False, x2) new_lt10(x0, x1) new_ltEs11(x0, x1) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare13(x0, x1, x2) new_lt20(x0, x1, app(ty_Ratio, x2)) new_lt13(x0, x1, ty_Bool) new_esEs18(x0, x1, ty_Integer) new_ltEs10(Right(x0), Right(x1), x2, ty_Char) new_ltEs18(x0, x1, ty_@0) new_lt13(x0, x1, ty_Double) new_esEs23(x0, x1, ty_Int) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_esEs17(x0, x1, ty_Integer) new_ltEs4(False, True) new_ltEs4(True, False) new_compare27(x0, x1) new_esEs27(x0, x1, ty_Integer) new_ltEs18(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs18(x0, x1, ty_Float) new_primCmpNat0(Succ(x0), Succ(x1)) new_lt16(x0, x1) new_esEs27(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, ty_Ordering) new_esEs26(x0, x1, ty_Float) new_compare14(Char(x0), Char(x1)) new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_ltEs18(x0, x1, app(ty_[], x2)) new_esEs18(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Double) new_lt14(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_@0) new_esEs23(x0, x1, app(ty_[], x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_compare211(x0, x1, True, x2) new_esEs23(x0, x1, ty_Char) new_esEs17(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1, ty_Ordering) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Char) new_esEs12(x0, x1, ty_Integer) new_primCmpNat0(Succ(x0), Zero) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_lt20(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Just(x0), Just(x1), ty_Bool) new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Pos(Zero)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), ty_Float) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs4(Just(x0), Just(x1), ty_Double) new_primPlusNat0(Succ(x0), Zero) new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1, ty_Integer) new_compare110(x0, x1, x2, x3, True, x4, x5, x6) new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) new_esEs28(x0, x1, ty_Int) new_compare210(x0, x1, False, x2, x3, x4) new_esEs27(x0, x1, ty_Ordering) new_lt21(x0, x1, app(ty_Maybe, x2)) new_esEs24(x0, x1, ty_Int) new_ltEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, ty_Float) new_ltEs18(x0, x1, app(app(ty_Either, x2), x3)) new_esEs11(:%(x0, x1), :%(x2, x3), x4) new_compare17(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Float) new_esEs5(Left(x0), Left(x1), ty_Char, x2) new_ltEs17(LT, GT) new_ltEs17(GT, LT) new_esEs24(x0, x1, app(ty_[], x2)) new_esEs14(Integer(x0), Integer(x1)) new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs20(True, True) new_lt20(x0, x1, ty_Double) new_esEs4(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_esEs17(x0, x1, app(app(ty_@2, x2), x3)) new_esEs17(x0, x1, ty_Float) new_compare17(x0, x1, ty_Float) new_compare9(Integer(x0), Integer(x1)) new_esEs29(x0, x1, ty_Double) new_lt21(x0, x1, ty_Double) new_lt21(x0, x1, app(ty_Ratio, x2)) new_ltEs15(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs19(x0, x1, ty_Double) new_lt21(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, Succ(x0)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs10(Right(x0), Right(x1), x2, ty_Double) new_esEs8(LT, GT) new_esEs8(GT, LT) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_compare11(x0, x1) new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_esEs22(:(x0, x1), :(x2, x3), x4) new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) new_lt14(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(x0, x1, ty_Integer) new_esEs24(x0, x1, ty_Char) new_esEs17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1, ty_Double) new_ltEs4(False, False) new_lt21(x0, x1, ty_Ordering) new_compare5(x0, x1, x2, x3) new_esEs16(Float(x0, x1), Float(x2, x3)) new_compare16(x0, x1, False) new_compare26(x0, x1, True, x2, x3) new_esEs28(x0, x1, ty_Char) new_esEs17(x0, x1, ty_Int) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_compare18(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare18(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_compare113(x0, x1, True, x2, x3, x4) new_compare28(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare28(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_lt13(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs27(x0, x1, ty_Double) new_ltEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs17(x0, x1, ty_Char) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_primEqNat0(Zero, Succ(x0)) new_compare0(:(x0, x1), [], x2) new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs10(Left(x0), Left(x1), ty_Char, x2) new_esEs9(Double(x0, x1), Double(x2, x3)) new_esEs19(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Int, x2) new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs5(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, ty_Integer) new_primEqNat0(Zero, Zero) new_esEs23(x0, x1, ty_Ordering) new_not(False) new_compare17(x0, x1, ty_Int) new_lt13(x0, x1, ty_Float) new_ltEs7(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, ty_Int) new_primMulNat0(Zero, Succ(x0)) new_esEs17(x0, x1, app(ty_Ratio, x2)) new_ltEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs10(Left(x0), Left(x1), ty_Int, x2) new_ltEs20(x0, x1, ty_Char) new_primMulInt(Neg(x0), Neg(x1)) new_ltEs17(EQ, GT) new_ltEs17(GT, EQ) new_esEs13(x0, x1, ty_Int) new_lt13(x0, x1, app(ty_Maybe, x2)) new_compare10(x0, x1, False) new_esEs28(x0, x1, app(ty_[], x2)) new_esEs5(Left(x0), Left(x1), ty_Float, x2) new_esEs28(x0, x1, ty_Float) new_lt14(x0, x1, ty_@0) new_esEs18(x0, x1, ty_Double) new_esEs18(x0, x1, ty_@0) new_esEs27(x0, x1, app(ty_Ratio, x2)) new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Just(x0), Just(x1), app(ty_Ratio, x2)) new_primPlusNat1(Zero, x0) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Bool) new_lt15(x0, x1) new_esEs21(@0, @0) new_esEs19(x0, x1, ty_Bool) new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_compare25(x0, x1, True) new_esEs24(x0, x1, ty_Float) new_lt14(x0, x1, app(ty_Ratio, x2)) new_ltEs18(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_primCompAux00(x0, LT) new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs28(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Nothing, Nothing, x0) new_primCmpNat0(Zero, Zero) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (29) 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_ltEs1(vyw431, vyw451, ef) -> new_compare(vyw431, vyw451, ef) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt0(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(vyw430, vyw450, False, gc, gd) -> new_ltEs0(vyw430, vyw450, gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(app(ty_Either, hc), hd)) -> new_ltEs0(vyw4312, vyw4512, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_Either, beb), bec), bea) -> new_lt0(vyw4310, vyw4510, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(app(ty_Either, bch), bda)) -> new_ltEs0(vyw4311, vyw4511, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare3(vyw430, vyw450, ge, gf, gg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_[], bed), bea) -> new_lt1(vyw4310, vyw4510, bed) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(app(app(ty_@3, hf), hg), hh)) -> new_ltEs2(vyw4312, vyw4512, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(app(app(ty_@3, bdc), bdd), bde)) -> new_ltEs2(vyw4311, vyw4511, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_lt1(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_Either, ba), bb)) -> new_ltEs0(vyw4310, vyw4510, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Just(vyw4310), Just(vyw4510), app(app(app(ty_@3, bd), be), bf)) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare23(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), bfe) -> new_primCompAux(vyw4300, vyw4500, new_compare0(vyw4301, vyw4501, eg), eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare(:(vyw4300, vyw4301), :(vyw4500, vyw4501), eg) -> new_compare(vyw4301, vyw4501, eg) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(ty_Maybe, hb)) -> new_ltEs(vyw4312, vyw4512, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(ty_Maybe, bcg)) -> new_ltEs(vyw4311, vyw4511, bcg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_Maybe, h)) -> new_ltEs(vyw4310, vyw4510, h) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(app(ty_@2, baa), bab)) -> new_ltEs3(vyw4312, vyw4512, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(app(ty_@2, bdf), bdg)) -> new_ltEs3(vyw4311, vyw4511, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs(Just(vyw4310), Just(vyw4510), app(app(ty_@2, bg), bh)) -> new_ltEs3(vyw4310, vyw4510, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Just(vyw4310), Just(vyw4510), app(ty_[], bc)) -> new_ltEs1(vyw4310, vyw4510, bc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_lt3(vyw430, vyw450, bfb, bfc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfb, bfc), bfb, bfc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(app(ty_@3, bee), bef), beg), bea) -> new_lt2(vyw4310, vyw4510, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_compare22(vyw430, vyw450, False, ge, gf, gg) -> new_ltEs2(vyw430, vyw450, ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_lt2(vyw430, vyw450, ge, gf, gg) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_primCompAux(vyw4300, vyw4500, vyw119, app(app(ty_Either, fa), fb)) -> new_compare2(vyw4300, vyw4500, fa, fb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_@2, bfb), bfc), bfe) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfb, bfc), bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare4(vyw430, vyw450, bfb, bfc) -> new_compare23(vyw430, vyw450, new_esEs7(vyw430, vyw450, bfb, bfc), bfb, bfc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(ty_Either, gc), gd), bfe) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare2(vyw430, vyw450, gc, gd) -> new_compare21(vyw430, vyw450, new_esEs5(vyw430, vyw450, gc, gd), gc, gd) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_primCompAux(vyw4300, vyw4500, vyw119, app(app(ty_@2, fh), ga)) -> new_compare4(vyw4300, vyw4500, fh, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(ty_Maybe, gb), bfe) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare1(vyw430, vyw450, gb) -> new_compare20(vyw430, vyw450, new_esEs4(vyw430, vyw450, gb), gb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare20(vyw430, vyw450, False, gb) -> new_ltEs(vyw430, vyw450, gb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(ty_Maybe, bdh), bea) -> new_lt(vyw4310, vyw4510, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_primCompAux(vyw4300, vyw4500, vyw119, app(app(app(ty_@3, fd), ff), fg)) -> new_compare3(vyw4300, vyw4500, fd, ff, fg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_primCompAux(vyw4300, vyw4500, vyw119, app(ty_Maybe, eh)) -> new_compare1(vyw4300, vyw4500, eh) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw4300, vyw4500, vyw119, app(ty_[], fc)) -> new_compare(vyw4300, vyw4500, fc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, ha, app(ty_[], he)) -> new_ltEs1(vyw4312, vyw4512, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), bcf, app(ty_[], bdb)) -> new_ltEs1(vyw4311, vyw4511, bdb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs3(@2(vyw4310, vyw4311), @2(vyw4510, vyw4511), app(app(ty_@2, beh), bfa), bea) -> new_lt3(vyw4310, vyw4510, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, app(app(app(ty_@3, ge), gf), gg), bfe) -> new_compare22(vyw430, vyw450, new_esEs6(vyw430, vyw450, ge, gf, gg), ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_Either, bbf), bbg), ha, bad) -> new_lt0(vyw4310, vyw4510, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(app(ty_Either, bae), baf), bad) -> new_lt0(vyw4311, vyw4511, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_[], bbh), ha, bad) -> new_lt1(vyw4310, vyw4510, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(ty_[], bag), bad) -> new_lt1(vyw4311, vyw4511, bag) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(app(ty_@3, bca), bcb), bcc), ha, bad) -> new_lt2(vyw4310, vyw4510, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(app(app(ty_@3, bah), bba), bbb), bad) -> new_lt2(vyw4311, vyw4511, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(ty_Maybe, bac), bad) -> new_lt(vyw4311, vyw4511, bac) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(ty_Maybe, bbe), ha, bad) -> new_lt(vyw4310, vyw4510, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), gh, app(app(ty_@2, bbc), bbd), bad) -> new_lt3(vyw4311, vyw4511, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs2(@3(vyw4310, vyw4311, vyw4312), @3(vyw4510, vyw4511, vyw4512), app(app(ty_@2, bcd), bce), ha, bad) -> new_lt3(vyw4310, vyw4510, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(app(ty_Either, bbf), bbg)), ha), bad)) -> new_lt0(vyw4310, vyw4510, bbf, bbg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(app(ty_Either, bae), baf)), bad)) -> new_lt0(vyw4311, vyw4511, bae, baf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(app(ty_Either, beb), bec)), bea)) -> new_lt0(vyw4310, vyw4510, beb, bec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(app(ty_Either, df), dg)) -> new_ltEs0(vyw4310, vyw4510, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyw4310), Left(vyw4510), app(app(ty_Either, cc), cd), cb) -> new_ltEs0(vyw4310, vyw4510, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(app(ty_Either, cc), cd)), cb)) -> new_ltEs0(vyw4310, vyw4510, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(app(ty_Either, ba), bb))) -> new_ltEs0(vyw4310, vyw4510, ba, bb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(app(ty_Either, hc), hd))) -> new_ltEs0(vyw4312, vyw4512, hc, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(app(ty_Either, df), dg))) -> new_ltEs0(vyw4310, vyw4510, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(app(ty_Either, bch), bda))) -> new_ltEs0(vyw4311, vyw4511, bch, bda) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(app(app(ty_@3, ea), eb), ec)) -> new_ltEs2(vyw4310, vyw4510, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs0(Left(vyw4310), Left(vyw4510), app(app(app(ty_@3, cf), cg), da), cb) -> new_ltEs2(vyw4310, vyw4510, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(ty_Maybe, de)) -> new_ltEs(vyw4310, vyw4510, de) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs0(Left(vyw4310), Left(vyw4510), app(ty_Maybe, ca), cb) -> new_ltEs(vyw4310, vyw4510, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Left(vyw4310), Left(vyw4510), app(app(ty_@2, db), dc), cb) -> new_ltEs3(vyw4310, vyw4510, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(app(ty_@2, ed), ee)) -> new_ltEs3(vyw4310, vyw4510, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(Left(vyw4310), Left(vyw4510), app(ty_[], ce), cb) -> new_ltEs1(vyw4310, vyw4510, ce) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(Right(vyw4310), Right(vyw4510), dd, app(ty_[], dh)) -> new_ltEs1(vyw4310, vyw4510, dh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(ty_[], bed)), bea)) -> new_lt1(vyw4310, vyw4510, bed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(ty_[], bbh)), ha), bad)) -> new_lt1(vyw4310, vyw4510, bbh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(ty_[], bag)), bad)) -> new_lt1(vyw4311, vyw4511, bag) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(app(app(ty_@3, cf), cg), da)), cb)) -> new_ltEs2(vyw4310, vyw4510, cf, cg, da) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(app(app(ty_@3, bdc), bdd), bde))) -> new_ltEs2(vyw4311, vyw4511, bdc, bdd, bde) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(app(app(ty_@3, ea), eb), ec))) -> new_ltEs2(vyw4310, vyw4510, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(app(app(ty_@3, hf), hg), hh))) -> new_ltEs2(vyw4312, vyw4512, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(app(app(ty_@3, bd), be), bf))) -> new_ltEs2(vyw4310, vyw4510, bd, be, bf) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(ty_Maybe, bcg))) -> new_ltEs(vyw4311, vyw4511, bcg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(ty_Maybe, de))) -> new_ltEs(vyw4310, vyw4510, de) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(ty_Maybe, ca)), cb)) -> new_ltEs(vyw4310, vyw4510, ca) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(ty_Maybe, h))) -> new_ltEs(vyw4310, vyw4510, h) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(ty_Maybe, hb))) -> new_ltEs(vyw4312, vyw4512, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(app(ty_@2, bdf), bdg))) -> new_ltEs3(vyw4311, vyw4511, bdf, bdg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(app(ty_@2, db), dc)), cb)) -> new_ltEs3(vyw4310, vyw4510, db, dc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(app(ty_@2, bg), bh))) -> new_ltEs3(vyw4310, vyw4510, bg, bh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(app(ty_@2, baa), bab))) -> new_ltEs3(vyw4312, vyw4512, baa, bab) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(app(ty_@2, ed), ee))) -> new_ltEs3(vyw4310, vyw4510, ed, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(app(app(ty_@3, bee), bef), beg)), bea)) -> new_lt2(vyw4310, vyw4510, bee, bef, beg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(app(app(ty_@3, bah), bba), bbb)), bad)) -> new_lt2(vyw4311, vyw4511, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(app(app(ty_@3, bca), bcb), bcc)), ha), bad)) -> new_lt2(vyw4310, vyw4510, bca, bcb, bcc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(ty_Maybe, bdh)), bea)) -> new_lt(vyw4310, vyw4510, bdh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(ty_Maybe, bac)), bad)) -> new_lt(vyw4311, vyw4511, bac) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(ty_Maybe, bbe)), ha), bad)) -> new_lt(vyw4310, vyw4510, bbe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, vyw431), @2(vyw450, vyw451), False, bfd, app(ty_[], ef)) -> new_compare(vyw431, vyw451, ef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(:(vyw4300, vyw4301), vyw431), @2(:(vyw4500, vyw4501), vyw451), False, app(ty_[], eg), bfe) -> new_compare(vyw4301, vyw4501, eg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, bcf), app(ty_[], bdb))) -> new_ltEs1(vyw4311, vyw4511, bdb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, Right(vyw4310)), @2(vyw450, Right(vyw4510)), False, bfd, app(app(ty_Either, dd), app(ty_[], dh))) -> new_ltEs1(vyw4310, vyw4510, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, Just(vyw4310)), @2(vyw450, Just(vyw4510)), False, bfd, app(ty_Maybe, app(ty_[], bc))) -> new_ltEs1(vyw4310, vyw4510, bc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, Left(vyw4310)), @2(vyw450, Left(vyw4510)), False, bfd, app(app(ty_Either, app(ty_[], ce)), cb)) -> new_ltEs1(vyw4310, vyw4510, ce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), ha), app(ty_[], he))) -> new_ltEs1(vyw4312, vyw4512, he) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare23(@2(vyw430, @2(vyw4310, vyw4311)), @2(vyw450, @2(vyw4510, vyw4511)), False, bfd, app(app(ty_@2, app(app(ty_@2, beh), bfa)), bea)) -> new_lt3(vyw4310, vyw4510, beh, bfa) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, app(app(ty_@2, bcd), bce)), ha), bad)) -> new_lt3(vyw4310, vyw4510, bcd, bce) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_compare23(@2(vyw430, @3(vyw4310, vyw4311, vyw4312)), @2(vyw450, @3(vyw4510, vyw4511, vyw4512)), False, bfd, app(app(app(ty_@3, gh), app(app(ty_@2, bbc), bbd)), bad)) -> new_lt3(vyw4311, vyw4511, bbc, bbd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 ---------------------------------------- (30) YES ---------------------------------------- (31) 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. ---------------------------------------- (32) 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 ---------------------------------------- (33) YES ---------------------------------------- (34) 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. ---------------------------------------- (35) 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 ---------------------------------------- (36) YES ---------------------------------------- (37) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw9000), Succ(vyw4000000)) -> new_primPlusNat(vyw9000, vyw4000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (38) 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(vyw9000), Succ(vyw4000000)) -> new_primPlusNat(vyw9000, vyw4000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (39) YES