/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, 14 ms] (8) HASKELL (9) COR [EQUIVALENT, 0 ms] (10) HASKELL (11) LetRed [EQUIVALENT, 0 ms] (12) HASKELL (13) NumRed [SOUND, 8 ms] (14) HASKELL (15) Narrow [SOUND, 0 ms] (16) AND (17) QDP (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] (19) YES (20) QDP (21) QDPSizeChangeProof [EQUIVALENT, 83 ms] (22) YES (23) QDP (24) QDPSizeChangeProof [EQUIVALENT, 29 ms] (25) YES (26) QDP (27) DependencyGraphProof [EQUIVALENT, 0 ms] (28) AND (29) QDP (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] (31) YES (32) QDP (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] (34) YES (35) QDP (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] (37) YES (38) QDP (39) QDPSizeChangeProof [EQUIVALENT, 0 ms] (40) YES (41) QDP (42) QDPSizeChangeProof [EQUIVALENT, 0 ms] (43) YES ---------------------------------------- (0) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (1) LR (EQUIVALENT) Lambda Reductions: The following Lambda expression "\keyeltrest->(key,elt) : rest" is transformed to "fmToList0 key elt rest = (key,elt) : rest; " ---------------------------------------- (2) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (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; " ---------------------------------------- (4) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 _ 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; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt _ fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap a b -> Int; sizeFM EmptyFM = 0; sizeFM (Branch _ _ size _ _) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (7) BR (EQUIVALENT) Replaced joker patterns by fresh variables and removed binding patterns. ---------------------------------------- (8) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap 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; } fmToList :: FiniteMap b a -> [(b,a)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = Nothing; lookupFM (Branch key elt vux fm_l fm_r) key_to_find | key_to_find < key = lookupFM fm_l key_to_find | key_to_find > key = lookupFM fm_r key_to_find | otherwise = Just elt; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (9) COR (EQUIVALENT) Cond Reductions: The following Function with conditions "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); " "compare1 x y True = LT; compare1 x y False = compare0 x y otherwise; " "compare0 x y True = GT; " "compare3 x y = compare2 x y (x == y); " The following Function with conditions "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; " "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; " ---------------------------------------- (10) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } 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 a => FiniteMap a b -> a -> Maybe b; lookupFM EmptyFM key = lookupFM4 EmptyFM key; lookupFM (Branch key elt vux fm_l fm_r) key_to_find = lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find; lookupFM0 key elt vux fm_l fm_r key_to_find True = Just elt; lookupFM1 key elt vux fm_l fm_r key_to_find True = lookupFM fm_r key_to_find; lookupFM1 key elt vux fm_l fm_r key_to_find False = lookupFM0 key elt vux fm_l fm_r key_to_find otherwise; lookupFM2 key elt vux fm_l fm_r key_to_find True = lookupFM fm_l key_to_find; lookupFM2 key elt vux fm_l fm_r key_to_find False = lookupFM1 key elt vux fm_l fm_r key_to_find (key_to_find > key); lookupFM3 (Branch key elt vux fm_l fm_r) key_to_find = lookupFM2 key elt vux fm_l fm_r key_to_find (key_to_find < key); lookupFM4 EmptyFM key = Nothing; lookupFM4 vxy vxz = lookupFM3 vxy vxz; sizeFM :: FiniteMap b a -> Int; sizeFM EmptyFM = 0; sizeFM (Branch zz vuu size vuv vuw) = size; } module Maybe where { import qualified FiniteMap; import qualified Main; import qualified Prelude; } module Main where { import qualified FiniteMap; import qualified Maybe; import qualified Prelude; } ---------------------------------------- (11) LetRed (EQUIVALENT) Let/Where Reductions: The bindings of the following Let/Where expression "gcd' (abs x) (abs y) where { gcd' x vuy = gcd'2 x vuy; gcd' x y = gcd'0 x y; ; gcd'0 x y = gcd' y (x `rem` y); ; gcd'1 True x vuy = x; gcd'1 vuz vvu vvv = gcd'0 vvu vvv; ; gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; gcd'2 vvw vvx = gcd'0 vvw vvx; } " are unpacked to the following functions on top level "gcd0Gcd'1 True x vuy = x; gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; " "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; " "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; gcd0Gcd' x y = gcd0Gcd'0 x y; " "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); " The bindings of the following Let/Where expression "reduce1 x y (y == 0) where { d = gcd x y; ; reduce0 x y True = x `quot` d :% (y `quot` d); ; reduce1 x y True = error []; reduce1 x y False = reduce0 x y otherwise; } " are unpacked to the following functions on top level "reduce2Reduce1 vyu vyv x y True = error []; reduce2Reduce1 vyu vyv x y False = reduce2Reduce0 vyu vyv x y otherwise; " "reduce2D vyu vyv = gcd vyu vyv; " "reduce2Reduce0 vyu vyv x y True = x `quot` reduce2D vyu vyv :% (y `quot` reduce2D vyu vyv); " ---------------------------------------- (12) Obligation: mainModule Main module FiniteMap where { import qualified Main; import qualified Maybe; import qualified Prelude; data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; instance (Eq a, Eq b) => Eq FiniteMap b a where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; foldFM k z EmptyFM = z; foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; lookupFM :: Ord 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 a b where { (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; } fmToList :: FiniteMap a b -> [(a,b)]; fmToList fm = foldFM fmToList0 [] fm; fmToList0 key elt rest = (key,elt) : rest; foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; foldFM k z EmptyFM = z; foldFM k z (Branch key elt 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 = 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.lookupFM",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 3[label="FiniteMap.lookupFM vyw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 4[label="FiniteMap.lookupFM vyw3 vyw4",fontsize=16,color="burlywood",shape="triangle"];3693[label="vyw3/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];4 -> 3693[label="",style="solid", color="burlywood", weight=9]; 3693 -> 5[label="",style="solid", color="burlywood", weight=3]; 3694[label="vyw3/FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34",fontsize=10,color="white",style="solid",shape="box"];4 -> 3694[label="",style="solid", color="burlywood", weight=9]; 3694 -> 6[label="",style="solid", color="burlywood", weight=3]; 5[label="FiniteMap.lookupFM FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];5 -> 7[label="",style="solid", color="black", weight=3]; 6[label="FiniteMap.lookupFM (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 7[label="FiniteMap.lookupFM4 FiniteMap.EmptyFM vyw4",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 8[label="FiniteMap.lookupFM3 (FiniteMap.Branch vyw30 vyw31 vyw32 vyw33 vyw34) vyw4",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 9[label="Nothing",fontsize=16,color="green",shape="box"];10[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (vyw4 < vyw30)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 11[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];11 -> 12[label="",style="solid", color="black", weight=3]; 12[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare3 vyw4 vyw30 == LT)",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 13[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 vyw4 (compare2 vyw4 vyw30 (vyw4 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3695[label="vyw4/Left vyw40",fontsize=10,color="white",style="solid",shape="box"];13 -> 3695[label="",style="solid", color="burlywood", weight=9]; 3695 -> 14[label="",style="solid", color="burlywood", weight=3]; 3696[label="vyw4/Right vyw40",fontsize=10,color="white",style="solid",shape="box"];13 -> 3696[label="",style="solid", color="burlywood", weight=9]; 3696 -> 15[label="",style="solid", color="burlywood", weight=3]; 14[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) vyw30 (Left vyw40 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3697[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];14 -> 3697[label="",style="solid", color="burlywood", weight=9]; 3697 -> 16[label="",style="solid", color="burlywood", weight=3]; 3698[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];14 -> 3698[label="",style="solid", color="burlywood", weight=9]; 3698 -> 17[label="",style="solid", color="burlywood", weight=3]; 15[label="FiniteMap.lookupFM2 vyw30 vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) vyw30 (Right vyw40 == vyw30) == LT)",fontsize=16,color="burlywood",shape="box"];3699[label="vyw30/Left vyw300",fontsize=10,color="white",style="solid",shape="box"];15 -> 3699[label="",style="solid", color="burlywood", weight=9]; 3699 -> 18[label="",style="solid", color="burlywood", weight=3]; 3700[label="vyw30/Right vyw300",fontsize=10,color="white",style="solid",shape="box"];15 -> 3700[label="",style="solid", color="burlywood", weight=9]; 3700 -> 19[label="",style="solid", color="burlywood", weight=3]; 16[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Left vyw300) (Left vyw40 == Left vyw300) == LT)",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 17[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Right vyw300) (Left vyw40 == Right vyw300) == LT)",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 18[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Left vyw300) (Right vyw40 == Left vyw300) == LT)",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 19[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Right vyw300) (Right vyw40 == Right vyw300) == LT)",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 20 -> 182[label="",style="dashed", color="red", weight=0]; 20[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300) == LT)",fontsize=16,color="magenta"];20 -> 183[label="",style="dashed", color="magenta", weight=3]; 20 -> 184[label="",style="dashed", color="magenta", weight=3]; 20 -> 185[label="",style="dashed", color="magenta", weight=3]; 20 -> 186[label="",style="dashed", color="magenta", weight=3]; 20 -> 187[label="",style="dashed", color="magenta", weight=3]; 20 -> 188[label="",style="dashed", color="magenta", weight=3]; 20 -> 189[label="",style="dashed", color="magenta", weight=3]; 21 -> 98[label="",style="dashed", color="red", weight=0]; 21[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (compare2 (Left vyw40) (Right vyw300) False == LT)",fontsize=16,color="magenta"];21 -> 99[label="",style="dashed", color="magenta", weight=3]; 22 -> 106[label="",style="dashed", color="red", weight=0]; 22[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Left vyw300) False == LT)",fontsize=16,color="magenta"];22 -> 107[label="",style="dashed", color="magenta", weight=3]; 23 -> 204[label="",style="dashed", color="red", weight=0]; 23[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300) == LT)",fontsize=16,color="magenta"];23 -> 205[label="",style="dashed", color="magenta", weight=3]; 23 -> 206[label="",style="dashed", color="magenta", weight=3]; 23 -> 207[label="",style="dashed", color="magenta", weight=3]; 23 -> 208[label="",style="dashed", color="magenta", weight=3]; 23 -> 209[label="",style="dashed", color="magenta", weight=3]; 23 -> 210[label="",style="dashed", color="magenta", weight=3]; 23 -> 211[label="",style="dashed", color="magenta", weight=3]; 183[label="vyw300",fontsize=16,color="green",shape="box"];184[label="vyw33",fontsize=16,color="green",shape="box"];185[label="vyw40",fontsize=16,color="green",shape="box"];186 -> 44[label="",style="dashed", color="red", weight=0]; 186[label="compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300) == LT",fontsize=16,color="magenta"];186 -> 193[label="",style="dashed", color="magenta", weight=3]; 186 -> 194[label="",style="dashed", color="magenta", weight=3]; 187[label="vyw34",fontsize=16,color="green",shape="box"];188[label="vyw31",fontsize=16,color="green",shape="box"];189[label="vyw32",fontsize=16,color="green",shape="box"];182[label="FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) vyw37",fontsize=16,color="burlywood",shape="triangle"];3701[label="vyw37/False",fontsize=10,color="white",style="solid",shape="box"];182 -> 3701[label="",style="solid", color="burlywood", weight=9]; 3701 -> 195[label="",style="solid", color="burlywood", weight=3]; 3702[label="vyw37/True",fontsize=10,color="white",style="solid",shape="box"];182 -> 3702[label="",style="solid", color="burlywood", weight=9]; 3702 -> 196[label="",style="solid", color="burlywood", weight=3]; 99 -> 44[label="",style="dashed", color="red", weight=0]; 99[label="compare2 (Left vyw40) (Right vyw300) False == LT",fontsize=16,color="magenta"];99 -> 102[label="",style="dashed", color="magenta", weight=3]; 99 -> 103[label="",style="dashed", color="magenta", weight=3]; 98[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) vyw35",fontsize=16,color="burlywood",shape="triangle"];3703[label="vyw35/False",fontsize=10,color="white",style="solid",shape="box"];98 -> 3703[label="",style="solid", color="burlywood", weight=9]; 3703 -> 104[label="",style="solid", color="burlywood", weight=3]; 3704[label="vyw35/True",fontsize=10,color="white",style="solid",shape="box"];98 -> 3704[label="",style="solid", color="burlywood", weight=9]; 3704 -> 105[label="",style="solid", color="burlywood", weight=3]; 107 -> 44[label="",style="dashed", color="red", weight=0]; 107[label="compare2 (Right vyw40) (Left vyw300) False == LT",fontsize=16,color="magenta"];107 -> 110[label="",style="dashed", color="magenta", weight=3]; 107 -> 111[label="",style="dashed", color="magenta", weight=3]; 106[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) vyw36",fontsize=16,color="burlywood",shape="triangle"];3705[label="vyw36/False",fontsize=10,color="white",style="solid",shape="box"];106 -> 3705[label="",style="solid", color="burlywood", weight=9]; 3705 -> 112[label="",style="solid", color="burlywood", weight=3]; 3706[label="vyw36/True",fontsize=10,color="white",style="solid",shape="box"];106 -> 3706[label="",style="solid", color="burlywood", weight=9]; 3706 -> 113[label="",style="solid", color="burlywood", weight=3]; 205[label="vyw31",fontsize=16,color="green",shape="box"];206[label="vyw33",fontsize=16,color="green",shape="box"];207[label="vyw40",fontsize=16,color="green",shape="box"];208[label="vyw32",fontsize=16,color="green",shape="box"];209[label="vyw300",fontsize=16,color="green",shape="box"];210 -> 44[label="",style="dashed", color="red", weight=0]; 210[label="compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300) == LT",fontsize=16,color="magenta"];210 -> 215[label="",style="dashed", color="magenta", weight=3]; 210 -> 216[label="",style="dashed", color="magenta", weight=3]; 211[label="vyw34",fontsize=16,color="green",shape="box"];204[label="FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) vyw38",fontsize=16,color="burlywood",shape="triangle"];3707[label="vyw38/False",fontsize=10,color="white",style="solid",shape="box"];204 -> 3707[label="",style="solid", color="burlywood", weight=9]; 3707 -> 217[label="",style="solid", color="burlywood", weight=3]; 3708[label="vyw38/True",fontsize=10,color="white",style="solid",shape="box"];204 -> 3708[label="",style="solid", color="burlywood", weight=9]; 3708 -> 218[label="",style="solid", color="burlywood", weight=3]; 193[label="LT",fontsize=16,color="green",shape="box"];194 -> 1842[label="",style="dashed", color="red", weight=0]; 194[label="compare2 (Left vyw40) (Left vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];194 -> 1843[label="",style="dashed", color="magenta", weight=3]; 194 -> 1844[label="",style="dashed", color="magenta", weight=3]; 194 -> 1845[label="",style="dashed", color="magenta", weight=3]; 44[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3709[label="vyw40/LT",fontsize=10,color="white",style="solid",shape="box"];44 -> 3709[label="",style="solid", color="burlywood", weight=9]; 3709 -> 78[label="",style="solid", color="burlywood", weight=3]; 3710[label="vyw40/EQ",fontsize=10,color="white",style="solid",shape="box"];44 -> 3710[label="",style="solid", color="burlywood", weight=9]; 3710 -> 79[label="",style="solid", color="burlywood", weight=3]; 3711[label="vyw40/GT",fontsize=10,color="white",style="solid",shape="box"];44 -> 3711[label="",style="solid", color="burlywood", weight=9]; 3711 -> 80[label="",style="solid", color="burlywood", weight=3]; 195[label="FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) False",fontsize=16,color="black",shape="box"];195 -> 223[label="",style="solid", color="black", weight=3]; 196[label="FiniteMap.lookupFM2 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True",fontsize=16,color="black",shape="box"];196 -> 224[label="",style="solid", color="black", weight=3]; 102[label="LT",fontsize=16,color="green",shape="box"];103 -> 1842[label="",style="dashed", color="red", weight=0]; 103[label="compare2 (Left vyw40) (Right vyw300) False",fontsize=16,color="magenta"];103 -> 1846[label="",style="dashed", color="magenta", weight=3]; 103 -> 1847[label="",style="dashed", color="magenta", weight=3]; 103 -> 1848[label="",style="dashed", color="magenta", weight=3]; 104[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) False",fontsize=16,color="black",shape="box"];104 -> 115[label="",style="solid", color="black", weight=3]; 105[label="FiniteMap.lookupFM2 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) True",fontsize=16,color="black",shape="box"];105 -> 116[label="",style="solid", color="black", weight=3]; 110[label="LT",fontsize=16,color="green",shape="box"];111 -> 1842[label="",style="dashed", color="red", weight=0]; 111[label="compare2 (Right vyw40) (Left vyw300) False",fontsize=16,color="magenta"];111 -> 1849[label="",style="dashed", color="magenta", weight=3]; 111 -> 1850[label="",style="dashed", color="magenta", weight=3]; 111 -> 1851[label="",style="dashed", color="magenta", weight=3]; 112[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) False",fontsize=16,color="black",shape="box"];112 -> 198[label="",style="solid", color="black", weight=3]; 113[label="FiniteMap.lookupFM2 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) True",fontsize=16,color="black",shape="box"];113 -> 199[label="",style="solid", color="black", weight=3]; 215[label="LT",fontsize=16,color="green",shape="box"];216 -> 1842[label="",style="dashed", color="red", weight=0]; 216[label="compare2 (Right vyw40) (Right vyw300) (vyw40 == vyw300)",fontsize=16,color="magenta"];216 -> 1852[label="",style="dashed", color="magenta", weight=3]; 216 -> 1853[label="",style="dashed", color="magenta", weight=3]; 216 -> 1854[label="",style="dashed", color="magenta", weight=3]; 217[label="FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) False",fontsize=16,color="black",shape="box"];217 -> 229[label="",style="solid", color="black", weight=3]; 218[label="FiniteMap.lookupFM2 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True",fontsize=16,color="black",shape="box"];218 -> 230[label="",style="solid", color="black", weight=3]; 1843[label="Left vyw40",fontsize=16,color="green",shape="box"];1844[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3712[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3712[label="",style="solid", color="blue", weight=9]; 3712 -> 1880[label="",style="solid", color="blue", weight=3]; 3713[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3713[label="",style="solid", color="blue", weight=9]; 3713 -> 1881[label="",style="solid", color="blue", weight=3]; 3714[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3714[label="",style="solid", color="blue", weight=9]; 3714 -> 1882[label="",style="solid", color="blue", weight=3]; 3715[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3715[label="",style="solid", color="blue", weight=9]; 3715 -> 1883[label="",style="solid", color="blue", weight=3]; 3716[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3716[label="",style="solid", color="blue", weight=9]; 3716 -> 1884[label="",style="solid", color="blue", weight=3]; 3717[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3717[label="",style="solid", color="blue", weight=9]; 3717 -> 1885[label="",style="solid", color="blue", weight=3]; 3718[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3718[label="",style="solid", color="blue", weight=9]; 3718 -> 1886[label="",style="solid", color="blue", weight=3]; 3719[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3719[label="",style="solid", color="blue", weight=9]; 3719 -> 1887[label="",style="solid", color="blue", weight=3]; 3720[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3720[label="",style="solid", color="blue", weight=9]; 3720 -> 1888[label="",style="solid", color="blue", weight=3]; 3721[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3721[label="",style="solid", color="blue", weight=9]; 3721 -> 1889[label="",style="solid", color="blue", weight=3]; 3722[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3722[label="",style="solid", color="blue", weight=9]; 3722 -> 1890[label="",style="solid", color="blue", weight=3]; 3723[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3723[label="",style="solid", color="blue", weight=9]; 3723 -> 1891[label="",style="solid", color="blue", weight=3]; 3724[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3724[label="",style="solid", color="blue", weight=9]; 3724 -> 1892[label="",style="solid", color="blue", weight=3]; 3725[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1844 -> 3725[label="",style="solid", color="blue", weight=9]; 3725 -> 1893[label="",style="solid", color="blue", weight=3]; 1845[label="Left vyw300",fontsize=16,color="green",shape="box"];1842[label="compare2 vyw430 vyw440 vyw101",fontsize=16,color="burlywood",shape="triangle"];3726[label="vyw101/False",fontsize=10,color="white",style="solid",shape="box"];1842 -> 3726[label="",style="solid", color="burlywood", weight=9]; 3726 -> 1894[label="",style="solid", color="burlywood", weight=3]; 3727[label="vyw101/True",fontsize=10,color="white",style="solid",shape="box"];1842 -> 3727[label="",style="solid", color="burlywood", weight=9]; 3727 -> 1895[label="",style="solid", color="burlywood", weight=3]; 78[label="LT == vyw300",fontsize=16,color="burlywood",shape="box"];3728[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];78 -> 3728[label="",style="solid", color="burlywood", weight=9]; 3728 -> 149[label="",style="solid", color="burlywood", weight=3]; 3729[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];78 -> 3729[label="",style="solid", color="burlywood", weight=9]; 3729 -> 150[label="",style="solid", color="burlywood", weight=3]; 3730[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];78 -> 3730[label="",style="solid", color="burlywood", weight=9]; 3730 -> 151[label="",style="solid", color="burlywood", weight=3]; 79[label="EQ == vyw300",fontsize=16,color="burlywood",shape="box"];3731[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];79 -> 3731[label="",style="solid", color="burlywood", weight=9]; 3731 -> 152[label="",style="solid", color="burlywood", weight=3]; 3732[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];79 -> 3732[label="",style="solid", color="burlywood", weight=9]; 3732 -> 153[label="",style="solid", color="burlywood", weight=3]; 3733[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];79 -> 3733[label="",style="solid", color="burlywood", weight=9]; 3733 -> 154[label="",style="solid", color="burlywood", weight=3]; 80[label="GT == vyw300",fontsize=16,color="burlywood",shape="box"];3734[label="vyw300/LT",fontsize=10,color="white",style="solid",shape="box"];80 -> 3734[label="",style="solid", color="burlywood", weight=9]; 3734 -> 155[label="",style="solid", color="burlywood", weight=3]; 3735[label="vyw300/EQ",fontsize=10,color="white",style="solid",shape="box"];80 -> 3735[label="",style="solid", color="burlywood", weight=9]; 3735 -> 156[label="",style="solid", color="burlywood", weight=3]; 3736[label="vyw300/GT",fontsize=10,color="white",style="solid",shape="box"];80 -> 3736[label="",style="solid", color="burlywood", weight=9]; 3736 -> 157[label="",style="solid", color="burlywood", weight=3]; 223 -> 305[label="",style="dashed", color="red", weight=0]; 223[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) (Left vyw18 > Left vyw13)",fontsize=16,color="magenta"];223 -> 306[label="",style="dashed", color="magenta", weight=3]; 224 -> 4[label="",style="dashed", color="red", weight=0]; 224[label="FiniteMap.lookupFM vyw16 (Left vyw18)",fontsize=16,color="magenta"];224 -> 248[label="",style="dashed", color="magenta", weight=3]; 224 -> 249[label="",style="dashed", color="magenta", weight=3]; 1846[label="Left vyw40",fontsize=16,color="green",shape="box"];1847[label="False",fontsize=16,color="green",shape="box"];1848[label="Right vyw300",fontsize=16,color="green",shape="box"];115 -> 280[label="",style="dashed", color="red", weight=0]; 115[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) (Left vyw40 > Right vyw300)",fontsize=16,color="magenta"];115 -> 281[label="",style="dashed", color="magenta", weight=3]; 116 -> 4[label="",style="dashed", color="red", weight=0]; 116[label="FiniteMap.lookupFM vyw33 (Left vyw40)",fontsize=16,color="magenta"];116 -> 202[label="",style="dashed", color="magenta", weight=3]; 116 -> 203[label="",style="dashed", color="magenta", weight=3]; 1849[label="Right vyw40",fontsize=16,color="green",shape="box"];1850[label="False",fontsize=16,color="green",shape="box"];1851[label="Left vyw300",fontsize=16,color="green",shape="box"];198 -> 315[label="",style="dashed", color="red", weight=0]; 198[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) (Right vyw40 > Left vyw300)",fontsize=16,color="magenta"];198 -> 316[label="",style="dashed", color="magenta", weight=3]; 199 -> 4[label="",style="dashed", color="red", weight=0]; 199[label="FiniteMap.lookupFM vyw33 (Right vyw40)",fontsize=16,color="magenta"];199 -> 252[label="",style="dashed", color="magenta", weight=3]; 199 -> 253[label="",style="dashed", color="magenta", weight=3]; 1852[label="Right vyw40",fontsize=16,color="green",shape="box"];1853[label="vyw40 == vyw300",fontsize=16,color="blue",shape="box"];3737[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3737[label="",style="solid", color="blue", weight=9]; 3737 -> 1896[label="",style="solid", color="blue", weight=3]; 3738[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3738[label="",style="solid", color="blue", weight=9]; 3738 -> 1897[label="",style="solid", color="blue", weight=3]; 3739[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3739[label="",style="solid", color="blue", weight=9]; 3739 -> 1898[label="",style="solid", color="blue", weight=3]; 3740[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3740[label="",style="solid", color="blue", weight=9]; 3740 -> 1899[label="",style="solid", color="blue", weight=3]; 3741[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3741[label="",style="solid", color="blue", weight=9]; 3741 -> 1900[label="",style="solid", color="blue", weight=3]; 3742[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3742[label="",style="solid", color="blue", weight=9]; 3742 -> 1901[label="",style="solid", color="blue", weight=3]; 3743[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3743[label="",style="solid", color="blue", weight=9]; 3743 -> 1902[label="",style="solid", color="blue", weight=3]; 3744[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3744[label="",style="solid", color="blue", weight=9]; 3744 -> 1903[label="",style="solid", color="blue", weight=3]; 3745[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3745[label="",style="solid", color="blue", weight=9]; 3745 -> 1904[label="",style="solid", color="blue", weight=3]; 3746[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3746[label="",style="solid", color="blue", weight=9]; 3746 -> 1905[label="",style="solid", color="blue", weight=3]; 3747[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3747[label="",style="solid", color="blue", weight=9]; 3747 -> 1906[label="",style="solid", color="blue", weight=3]; 3748[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3748[label="",style="solid", color="blue", weight=9]; 3748 -> 1907[label="",style="solid", color="blue", weight=3]; 3749[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3749[label="",style="solid", color="blue", weight=9]; 3749 -> 1908[label="",style="solid", color="blue", weight=3]; 3750[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1853 -> 3750[label="",style="solid", color="blue", weight=9]; 3750 -> 1909[label="",style="solid", color="blue", weight=3]; 1854[label="Right vyw300",fontsize=16,color="green",shape="box"];229 -> 351[label="",style="dashed", color="red", weight=0]; 229[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) (Right vyw33 > Right vyw28)",fontsize=16,color="magenta"];229 -> 352[label="",style="dashed", color="magenta", weight=3]; 230 -> 4[label="",style="dashed", color="red", weight=0]; 230[label="FiniteMap.lookupFM vyw31 (Right vyw33)",fontsize=16,color="magenta"];230 -> 284[label="",style="dashed", color="magenta", weight=3]; 230 -> 285[label="",style="dashed", color="magenta", weight=3]; 1880[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3751[label="vyw40/Integer vyw400",fontsize=10,color="white",style="solid",shape="box"];1880 -> 3751[label="",style="solid", color="burlywood", weight=9]; 3751 -> 1914[label="",style="solid", color="burlywood", weight=3]; 1881[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3752[label="vyw40/()",fontsize=10,color="white",style="solid",shape="box"];1881 -> 3752[label="",style="solid", color="burlywood", weight=9]; 3752 -> 1915[label="",style="solid", color="burlywood", weight=3]; 1882 -> 44[label="",style="dashed", color="red", weight=0]; 1882[label="vyw40 == vyw300",fontsize=16,color="magenta"];1883[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1883 -> 1916[label="",style="solid", color="black", weight=3]; 1884[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3753[label="vyw40/Left vyw400",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3753[label="",style="solid", color="burlywood", weight=9]; 3753 -> 1917[label="",style="solid", color="burlywood", weight=3]; 3754[label="vyw40/Right vyw400",fontsize=10,color="white",style="solid",shape="box"];1884 -> 3754[label="",style="solid", color="burlywood", weight=9]; 3754 -> 1918[label="",style="solid", color="burlywood", weight=3]; 1885[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3755[label="vyw40/(vyw400,vyw401,vyw402)",fontsize=10,color="white",style="solid",shape="box"];1885 -> 3755[label="",style="solid", color="burlywood", weight=9]; 3755 -> 1919[label="",style="solid", color="burlywood", weight=3]; 1886[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3756[label="vyw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3756[label="",style="solid", color="burlywood", weight=9]; 3756 -> 1920[label="",style="solid", color="burlywood", weight=3]; 3757[label="vyw40/Just vyw400",fontsize=10,color="white",style="solid",shape="box"];1886 -> 3757[label="",style="solid", color="burlywood", weight=9]; 3757 -> 1921[label="",style="solid", color="burlywood", weight=3]; 1887[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3758[label="vyw40/vyw400 : vyw401",fontsize=10,color="white",style="solid",shape="box"];1887 -> 3758[label="",style="solid", color="burlywood", weight=9]; 3758 -> 1922[label="",style="solid", color="burlywood", weight=3]; 3759[label="vyw40/[]",fontsize=10,color="white",style="solid",shape="box"];1887 -> 3759[label="",style="solid", color="burlywood", weight=9]; 3759 -> 1923[label="",style="solid", color="burlywood", weight=3]; 1888[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1888 -> 1924[label="",style="solid", color="black", weight=3]; 1889[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3760[label="vyw40/vyw400 :% vyw401",fontsize=10,color="white",style="solid",shape="box"];1889 -> 3760[label="",style="solid", color="burlywood", weight=9]; 3760 -> 1925[label="",style="solid", color="burlywood", weight=3]; 1890[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1890 -> 1926[label="",style="solid", color="black", weight=3]; 1891[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3761[label="vyw40/False",fontsize=10,color="white",style="solid",shape="box"];1891 -> 3761[label="",style="solid", color="burlywood", weight=9]; 3761 -> 1927[label="",style="solid", color="burlywood", weight=3]; 3762[label="vyw40/True",fontsize=10,color="white",style="solid",shape="box"];1891 -> 3762[label="",style="solid", color="burlywood", weight=9]; 3762 -> 1928[label="",style="solid", color="burlywood", weight=3]; 1892[label="vyw40 == vyw300",fontsize=16,color="black",shape="triangle"];1892 -> 1929[label="",style="solid", color="black", weight=3]; 1893[label="vyw40 == vyw300",fontsize=16,color="burlywood",shape="triangle"];3763[label="vyw40/(vyw400,vyw401)",fontsize=10,color="white",style="solid",shape="box"];1893 -> 3763[label="",style="solid", color="burlywood", weight=9]; 3763 -> 1930[label="",style="solid", color="burlywood", weight=3]; 1894[label="compare2 vyw430 vyw440 False",fontsize=16,color="black",shape="box"];1894 -> 1931[label="",style="solid", color="black", weight=3]; 1895[label="compare2 vyw430 vyw440 True",fontsize=16,color="black",shape="box"];1895 -> 1932[label="",style="solid", color="black", weight=3]; 149[label="LT == LT",fontsize=16,color="black",shape="box"];149 -> 270[label="",style="solid", color="black", weight=3]; 150[label="LT == EQ",fontsize=16,color="black",shape="box"];150 -> 271[label="",style="solid", color="black", weight=3]; 151[label="LT == GT",fontsize=16,color="black",shape="box"];151 -> 272[label="",style="solid", color="black", weight=3]; 152[label="EQ == LT",fontsize=16,color="black",shape="box"];152 -> 273[label="",style="solid", color="black", weight=3]; 153[label="EQ == EQ",fontsize=16,color="black",shape="box"];153 -> 274[label="",style="solid", color="black", weight=3]; 154[label="EQ == GT",fontsize=16,color="black",shape="box"];154 -> 275[label="",style="solid", color="black", weight=3]; 155[label="GT == LT",fontsize=16,color="black",shape="box"];155 -> 276[label="",style="solid", color="black", weight=3]; 156[label="GT == EQ",fontsize=16,color="black",shape="box"];156 -> 277[label="",style="solid", color="black", weight=3]; 157[label="GT == GT",fontsize=16,color="black",shape="box"];157 -> 278[label="",style="solid", color="black", weight=3]; 306[label="Left vyw18 > Left vyw13",fontsize=16,color="black",shape="box"];306 -> 308[label="",style="solid", color="black", weight=3]; 305[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) vyw54",fontsize=16,color="burlywood",shape="triangle"];3764[label="vyw54/False",fontsize=10,color="white",style="solid",shape="box"];305 -> 3764[label="",style="solid", color="burlywood", weight=9]; 3764 -> 309[label="",style="solid", color="burlywood", weight=3]; 3765[label="vyw54/True",fontsize=10,color="white",style="solid",shape="box"];305 -> 3765[label="",style="solid", color="burlywood", weight=9]; 3765 -> 310[label="",style="solid", color="burlywood", weight=3]; 248[label="Left vyw18",fontsize=16,color="green",shape="box"];249[label="vyw16",fontsize=16,color="green",shape="box"];281[label="Left vyw40 > Right vyw300",fontsize=16,color="black",shape="box"];281 -> 311[label="",style="solid", color="black", weight=3]; 280[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) vyw53",fontsize=16,color="burlywood",shape="triangle"];3766[label="vyw53/False",fontsize=10,color="white",style="solid",shape="box"];280 -> 3766[label="",style="solid", color="burlywood", weight=9]; 3766 -> 312[label="",style="solid", color="burlywood", weight=3]; 3767[label="vyw53/True",fontsize=10,color="white",style="solid",shape="box"];280 -> 3767[label="",style="solid", color="burlywood", weight=9]; 3767 -> 313[label="",style="solid", color="burlywood", weight=3]; 202[label="Left vyw40",fontsize=16,color="green",shape="box"];203[label="vyw33",fontsize=16,color="green",shape="box"];316[label="Right vyw40 > Left vyw300",fontsize=16,color="black",shape="box"];316 -> 318[label="",style="solid", color="black", weight=3]; 315[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) vyw55",fontsize=16,color="burlywood",shape="triangle"];3768[label="vyw55/False",fontsize=10,color="white",style="solid",shape="box"];315 -> 3768[label="",style="solid", color="burlywood", weight=9]; 3768 -> 319[label="",style="solid", color="burlywood", weight=3]; 3769[label="vyw55/True",fontsize=10,color="white",style="solid",shape="box"];315 -> 3769[label="",style="solid", color="burlywood", weight=9]; 3769 -> 320[label="",style="solid", color="burlywood", weight=3]; 252[label="Right vyw40",fontsize=16,color="green",shape="box"];253[label="vyw33",fontsize=16,color="green",shape="box"];1896 -> 1880[label="",style="dashed", color="red", weight=0]; 1896[label="vyw40 == vyw300",fontsize=16,color="magenta"];1896 -> 1933[label="",style="dashed", color="magenta", weight=3]; 1896 -> 1934[label="",style="dashed", color="magenta", weight=3]; 1897 -> 1881[label="",style="dashed", color="red", weight=0]; 1897[label="vyw40 == vyw300",fontsize=16,color="magenta"];1897 -> 1935[label="",style="dashed", color="magenta", weight=3]; 1897 -> 1936[label="",style="dashed", color="magenta", weight=3]; 1898 -> 44[label="",style="dashed", color="red", weight=0]; 1898[label="vyw40 == vyw300",fontsize=16,color="magenta"];1898 -> 1937[label="",style="dashed", color="magenta", weight=3]; 1898 -> 1938[label="",style="dashed", color="magenta", weight=3]; 1899 -> 1883[label="",style="dashed", color="red", weight=0]; 1899[label="vyw40 == vyw300",fontsize=16,color="magenta"];1899 -> 1939[label="",style="dashed", color="magenta", weight=3]; 1899 -> 1940[label="",style="dashed", color="magenta", weight=3]; 1900 -> 1884[label="",style="dashed", color="red", weight=0]; 1900[label="vyw40 == vyw300",fontsize=16,color="magenta"];1900 -> 1941[label="",style="dashed", color="magenta", weight=3]; 1900 -> 1942[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1885[label="",style="dashed", color="red", weight=0]; 1901[label="vyw40 == vyw300",fontsize=16,color="magenta"];1901 -> 1943[label="",style="dashed", color="magenta", weight=3]; 1901 -> 1944[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1886[label="",style="dashed", color="red", weight=0]; 1902[label="vyw40 == vyw300",fontsize=16,color="magenta"];1902 -> 1945[label="",style="dashed", color="magenta", weight=3]; 1902 -> 1946[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1887[label="",style="dashed", color="red", weight=0]; 1903[label="vyw40 == vyw300",fontsize=16,color="magenta"];1903 -> 1947[label="",style="dashed", color="magenta", weight=3]; 1903 -> 1948[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1888[label="",style="dashed", color="red", weight=0]; 1904[label="vyw40 == vyw300",fontsize=16,color="magenta"];1904 -> 1949[label="",style="dashed", color="magenta", weight=3]; 1904 -> 1950[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1889[label="",style="dashed", color="red", weight=0]; 1905[label="vyw40 == vyw300",fontsize=16,color="magenta"];1905 -> 1951[label="",style="dashed", color="magenta", weight=3]; 1905 -> 1952[label="",style="dashed", color="magenta", weight=3]; 1906 -> 1890[label="",style="dashed", color="red", weight=0]; 1906[label="vyw40 == vyw300",fontsize=16,color="magenta"];1906 -> 1953[label="",style="dashed", color="magenta", weight=3]; 1906 -> 1954[label="",style="dashed", color="magenta", weight=3]; 1907 -> 1891[label="",style="dashed", color="red", weight=0]; 1907[label="vyw40 == vyw300",fontsize=16,color="magenta"];1907 -> 1955[label="",style="dashed", color="magenta", weight=3]; 1907 -> 1956[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1892[label="",style="dashed", color="red", weight=0]; 1908[label="vyw40 == vyw300",fontsize=16,color="magenta"];1908 -> 1957[label="",style="dashed", color="magenta", weight=3]; 1908 -> 1958[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1893[label="",style="dashed", color="red", weight=0]; 1909[label="vyw40 == vyw300",fontsize=16,color="magenta"];1909 -> 1959[label="",style="dashed", color="magenta", weight=3]; 1909 -> 1960[label="",style="dashed", color="magenta", weight=3]; 352[label="Right vyw33 > Right vyw28",fontsize=16,color="black",shape="box"];352 -> 354[label="",style="solid", color="black", weight=3]; 351[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) vyw56",fontsize=16,color="burlywood",shape="triangle"];3770[label="vyw56/False",fontsize=10,color="white",style="solid",shape="box"];351 -> 3770[label="",style="solid", color="burlywood", weight=9]; 3770 -> 355[label="",style="solid", color="burlywood", weight=3]; 3771[label="vyw56/True",fontsize=10,color="white",style="solid",shape="box"];351 -> 3771[label="",style="solid", color="burlywood", weight=9]; 3771 -> 356[label="",style="solid", color="burlywood", weight=3]; 284[label="Right vyw33",fontsize=16,color="green",shape="box"];285[label="vyw31",fontsize=16,color="green",shape="box"];1914[label="Integer vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3772[label="vyw300/Integer vyw3000",fontsize=10,color="white",style="solid",shape="box"];1914 -> 3772[label="",style="solid", color="burlywood", weight=9]; 3772 -> 1989[label="",style="solid", color="burlywood", weight=3]; 1915[label="() == vyw300",fontsize=16,color="burlywood",shape="box"];3773[label="vyw300/()",fontsize=10,color="white",style="solid",shape="box"];1915 -> 3773[label="",style="solid", color="burlywood", weight=9]; 3773 -> 1990[label="",style="solid", color="burlywood", weight=3]; 1916[label="primEqChar vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3774[label="vyw40/Char vyw400",fontsize=10,color="white",style="solid",shape="box"];1916 -> 3774[label="",style="solid", color="burlywood", weight=9]; 3774 -> 1991[label="",style="solid", color="burlywood", weight=3]; 1917[label="Left vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3775[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1917 -> 3775[label="",style="solid", color="burlywood", weight=9]; 3775 -> 1992[label="",style="solid", color="burlywood", weight=3]; 3776[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1917 -> 3776[label="",style="solid", color="burlywood", weight=9]; 3776 -> 1993[label="",style="solid", color="burlywood", weight=3]; 1918[label="Right vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3777[label="vyw300/Left vyw3000",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3777[label="",style="solid", color="burlywood", weight=9]; 3777 -> 1994[label="",style="solid", color="burlywood", weight=3]; 3778[label="vyw300/Right vyw3000",fontsize=10,color="white",style="solid",shape="box"];1918 -> 3778[label="",style="solid", color="burlywood", weight=9]; 3778 -> 1995[label="",style="solid", color="burlywood", weight=3]; 1919[label="(vyw400,vyw401,vyw402) == vyw300",fontsize=16,color="burlywood",shape="box"];3779[label="vyw300/(vyw3000,vyw3001,vyw3002)",fontsize=10,color="white",style="solid",shape="box"];1919 -> 3779[label="",style="solid", color="burlywood", weight=9]; 3779 -> 1996[label="",style="solid", color="burlywood", weight=3]; 1920[label="Nothing == vyw300",fontsize=16,color="burlywood",shape="box"];3780[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1920 -> 3780[label="",style="solid", color="burlywood", weight=9]; 3780 -> 1997[label="",style="solid", color="burlywood", weight=3]; 3781[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1920 -> 3781[label="",style="solid", color="burlywood", weight=9]; 3781 -> 1998[label="",style="solid", color="burlywood", weight=3]; 1921[label="Just vyw400 == vyw300",fontsize=16,color="burlywood",shape="box"];3782[label="vyw300/Nothing",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3782[label="",style="solid", color="burlywood", weight=9]; 3782 -> 1999[label="",style="solid", color="burlywood", weight=3]; 3783[label="vyw300/Just vyw3000",fontsize=10,color="white",style="solid",shape="box"];1921 -> 3783[label="",style="solid", color="burlywood", weight=9]; 3783 -> 2000[label="",style="solid", color="burlywood", weight=3]; 1922[label="vyw400 : vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3784[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3784[label="",style="solid", color="burlywood", weight=9]; 3784 -> 2001[label="",style="solid", color="burlywood", weight=3]; 3785[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1922 -> 3785[label="",style="solid", color="burlywood", weight=9]; 3785 -> 2002[label="",style="solid", color="burlywood", weight=3]; 1923[label="[] == vyw300",fontsize=16,color="burlywood",shape="box"];3786[label="vyw300/vyw3000 : vyw3001",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3786[label="",style="solid", color="burlywood", weight=9]; 3786 -> 2003[label="",style="solid", color="burlywood", weight=3]; 3787[label="vyw300/[]",fontsize=10,color="white",style="solid",shape="box"];1923 -> 3787[label="",style="solid", color="burlywood", weight=9]; 3787 -> 2004[label="",style="solid", color="burlywood", weight=3]; 1924[label="primEqFloat vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3788[label="vyw40/Float vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];1924 -> 3788[label="",style="solid", color="burlywood", weight=9]; 3788 -> 2005[label="",style="solid", color="burlywood", weight=3]; 1925[label="vyw400 :% vyw401 == vyw300",fontsize=16,color="burlywood",shape="box"];3789[label="vyw300/vyw3000 :% vyw3001",fontsize=10,color="white",style="solid",shape="box"];1925 -> 3789[label="",style="solid", color="burlywood", weight=9]; 3789 -> 2006[label="",style="solid", color="burlywood", weight=3]; 1926[label="primEqDouble vyw40 vyw300",fontsize=16,color="burlywood",shape="box"];3790[label="vyw40/Double vyw400 vyw401",fontsize=10,color="white",style="solid",shape="box"];1926 -> 3790[label="",style="solid", color="burlywood", weight=9]; 3790 -> 2007[label="",style="solid", color="burlywood", weight=3]; 1927[label="False == vyw300",fontsize=16,color="burlywood",shape="box"];3791[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3791[label="",style="solid", color="burlywood", weight=9]; 3791 -> 2008[label="",style="solid", color="burlywood", weight=3]; 3792[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1927 -> 3792[label="",style="solid", color="burlywood", weight=9]; 3792 -> 2009[label="",style="solid", color="burlywood", weight=3]; 1928[label="True == vyw300",fontsize=16,color="burlywood",shape="box"];3793[label="vyw300/False",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3793[label="",style="solid", color="burlywood", weight=9]; 3793 -> 2010[label="",style="solid", color="burlywood", weight=3]; 3794[label="vyw300/True",fontsize=10,color="white",style="solid",shape="box"];1928 -> 3794[label="",style="solid", color="burlywood", weight=9]; 3794 -> 2011[label="",style="solid", color="burlywood", weight=3]; 1929[label="primEqInt vyw40 vyw300",fontsize=16,color="burlywood",shape="triangle"];3795[label="vyw40/Pos vyw400",fontsize=10,color="white",style="solid",shape="box"];1929 -> 3795[label="",style="solid", color="burlywood", weight=9]; 3795 -> 2012[label="",style="solid", color="burlywood", weight=3]; 3796[label="vyw40/Neg vyw400",fontsize=10,color="white",style="solid",shape="box"];1929 -> 3796[label="",style="solid", color="burlywood", weight=9]; 3796 -> 2013[label="",style="solid", color="burlywood", weight=3]; 1930[label="(vyw400,vyw401) == vyw300",fontsize=16,color="burlywood",shape="box"];3797[label="vyw300/(vyw3000,vyw3001)",fontsize=10,color="white",style="solid",shape="box"];1930 -> 3797[label="",style="solid", color="burlywood", weight=9]; 3797 -> 2014[label="",style="solid", color="burlywood", weight=3]; 1931[label="compare1 vyw430 vyw440 (vyw430 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3798[label="vyw430/Left vyw4300",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3798[label="",style="solid", color="burlywood", weight=9]; 3798 -> 2015[label="",style="solid", color="burlywood", weight=3]; 3799[label="vyw430/Right vyw4300",fontsize=10,color="white",style="solid",shape="box"];1931 -> 3799[label="",style="solid", color="burlywood", weight=9]; 3799 -> 2016[label="",style="solid", color="burlywood", weight=3]; 1932[label="EQ",fontsize=16,color="green",shape="box"];270[label="True",fontsize=16,color="green",shape="box"];271[label="False",fontsize=16,color="green",shape="box"];272[label="False",fontsize=16,color="green",shape="box"];273[label="False",fontsize=16,color="green",shape="box"];274[label="True",fontsize=16,color="green",shape="box"];275[label="False",fontsize=16,color="green",shape="box"];276[label="False",fontsize=16,color="green",shape="box"];277[label="False",fontsize=16,color="green",shape="box"];278[label="True",fontsize=16,color="green",shape="box"];308 -> 44[label="",style="dashed", color="red", weight=0]; 308[label="compare (Left vyw18) (Left vyw13) == GT",fontsize=16,color="magenta"];308 -> 384[label="",style="dashed", color="magenta", weight=3]; 308 -> 385[label="",style="dashed", color="magenta", weight=3]; 309[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) False",fontsize=16,color="black",shape="box"];309 -> 386[label="",style="solid", color="black", weight=3]; 310[label="FiniteMap.lookupFM1 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True",fontsize=16,color="black",shape="box"];310 -> 387[label="",style="solid", color="black", weight=3]; 311 -> 44[label="",style="dashed", color="red", weight=0]; 311[label="compare (Left vyw40) (Right vyw300) == GT",fontsize=16,color="magenta"];311 -> 388[label="",style="dashed", color="magenta", weight=3]; 311 -> 389[label="",style="dashed", color="magenta", weight=3]; 312[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) False",fontsize=16,color="black",shape="box"];312 -> 390[label="",style="solid", color="black", weight=3]; 313[label="FiniteMap.lookupFM1 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) True",fontsize=16,color="black",shape="box"];313 -> 391[label="",style="solid", color="black", weight=3]; 318 -> 44[label="",style="dashed", color="red", weight=0]; 318[label="compare (Right vyw40) (Left vyw300) == GT",fontsize=16,color="magenta"];318 -> 393[label="",style="dashed", color="magenta", weight=3]; 318 -> 394[label="",style="dashed", color="magenta", weight=3]; 319[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) False",fontsize=16,color="black",shape="box"];319 -> 395[label="",style="solid", color="black", weight=3]; 320[label="FiniteMap.lookupFM1 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) True",fontsize=16,color="black",shape="box"];320 -> 396[label="",style="solid", color="black", weight=3]; 1933[label="vyw300",fontsize=16,color="green",shape="box"];1934[label="vyw40",fontsize=16,color="green",shape="box"];1935[label="vyw300",fontsize=16,color="green",shape="box"];1936[label="vyw40",fontsize=16,color="green",shape="box"];1937[label="vyw300",fontsize=16,color="green",shape="box"];1938[label="vyw40",fontsize=16,color="green",shape="box"];1939[label="vyw300",fontsize=16,color="green",shape="box"];1940[label="vyw40",fontsize=16,color="green",shape="box"];1941[label="vyw300",fontsize=16,color="green",shape="box"];1942[label="vyw40",fontsize=16,color="green",shape="box"];1943[label="vyw300",fontsize=16,color="green",shape="box"];1944[label="vyw40",fontsize=16,color="green",shape="box"];1945[label="vyw300",fontsize=16,color="green",shape="box"];1946[label="vyw40",fontsize=16,color="green",shape="box"];1947[label="vyw300",fontsize=16,color="green",shape="box"];1948[label="vyw40",fontsize=16,color="green",shape="box"];1949[label="vyw300",fontsize=16,color="green",shape="box"];1950[label="vyw40",fontsize=16,color="green",shape="box"];1951[label="vyw300",fontsize=16,color="green",shape="box"];1952[label="vyw40",fontsize=16,color="green",shape="box"];1953[label="vyw300",fontsize=16,color="green",shape="box"];1954[label="vyw40",fontsize=16,color="green",shape="box"];1955[label="vyw300",fontsize=16,color="green",shape="box"];1956[label="vyw40",fontsize=16,color="green",shape="box"];1957[label="vyw300",fontsize=16,color="green",shape="box"];1958[label="vyw40",fontsize=16,color="green",shape="box"];1959[label="vyw300",fontsize=16,color="green",shape="box"];1960[label="vyw40",fontsize=16,color="green",shape="box"];354 -> 44[label="",style="dashed", color="red", weight=0]; 354[label="compare (Right vyw33) (Right vyw28) == GT",fontsize=16,color="magenta"];354 -> 398[label="",style="dashed", color="magenta", weight=3]; 354 -> 399[label="",style="dashed", color="magenta", weight=3]; 355[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) False",fontsize=16,color="black",shape="box"];355 -> 400[label="",style="solid", color="black", weight=3]; 356[label="FiniteMap.lookupFM1 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True",fontsize=16,color="black",shape="box"];356 -> 401[label="",style="solid", color="black", weight=3]; 1989[label="Integer vyw400 == Integer vyw3000",fontsize=16,color="black",shape="box"];1989 -> 2073[label="",style="solid", color="black", weight=3]; 1990[label="() == ()",fontsize=16,color="black",shape="box"];1990 -> 2074[label="",style="solid", color="black", weight=3]; 1991[label="primEqChar (Char vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3800[label="vyw300/Char vyw3000",fontsize=10,color="white",style="solid",shape="box"];1991 -> 3800[label="",style="solid", color="burlywood", weight=9]; 3800 -> 2075[label="",style="solid", color="burlywood", weight=3]; 1992[label="Left vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];1992 -> 2076[label="",style="solid", color="black", weight=3]; 1993[label="Left vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];1993 -> 2077[label="",style="solid", color="black", weight=3]; 1994[label="Right vyw400 == Left vyw3000",fontsize=16,color="black",shape="box"];1994 -> 2078[label="",style="solid", color="black", weight=3]; 1995[label="Right vyw400 == Right vyw3000",fontsize=16,color="black",shape="box"];1995 -> 2079[label="",style="solid", color="black", weight=3]; 1996[label="(vyw400,vyw401,vyw402) == (vyw3000,vyw3001,vyw3002)",fontsize=16,color="black",shape="box"];1996 -> 2080[label="",style="solid", color="black", weight=3]; 1997[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];1997 -> 2081[label="",style="solid", color="black", weight=3]; 1998[label="Nothing == Just vyw3000",fontsize=16,color="black",shape="box"];1998 -> 2082[label="",style="solid", color="black", weight=3]; 1999[label="Just vyw400 == Nothing",fontsize=16,color="black",shape="box"];1999 -> 2083[label="",style="solid", color="black", weight=3]; 2000[label="Just vyw400 == Just vyw3000",fontsize=16,color="black",shape="box"];2000 -> 2084[label="",style="solid", color="black", weight=3]; 2001[label="vyw400 : vyw401 == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];2001 -> 2085[label="",style="solid", color="black", weight=3]; 2002[label="vyw400 : vyw401 == []",fontsize=16,color="black",shape="box"];2002 -> 2086[label="",style="solid", color="black", weight=3]; 2003[label="[] == vyw3000 : vyw3001",fontsize=16,color="black",shape="box"];2003 -> 2087[label="",style="solid", color="black", weight=3]; 2004[label="[] == []",fontsize=16,color="black",shape="box"];2004 -> 2088[label="",style="solid", color="black", weight=3]; 2005[label="primEqFloat (Float vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3801[label="vyw300/Float vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];2005 -> 3801[label="",style="solid", color="burlywood", weight=9]; 3801 -> 2089[label="",style="solid", color="burlywood", weight=3]; 2006[label="vyw400 :% vyw401 == vyw3000 :% vyw3001",fontsize=16,color="black",shape="box"];2006 -> 2090[label="",style="solid", color="black", weight=3]; 2007[label="primEqDouble (Double vyw400 vyw401) vyw300",fontsize=16,color="burlywood",shape="box"];3802[label="vyw300/Double vyw3000 vyw3001",fontsize=10,color="white",style="solid",shape="box"];2007 -> 3802[label="",style="solid", color="burlywood", weight=9]; 3802 -> 2091[label="",style="solid", color="burlywood", weight=3]; 2008[label="False == False",fontsize=16,color="black",shape="box"];2008 -> 2092[label="",style="solid", color="black", weight=3]; 2009[label="False == True",fontsize=16,color="black",shape="box"];2009 -> 2093[label="",style="solid", color="black", weight=3]; 2010[label="True == False",fontsize=16,color="black",shape="box"];2010 -> 2094[label="",style="solid", color="black", weight=3]; 2011[label="True == True",fontsize=16,color="black",shape="box"];2011 -> 2095[label="",style="solid", color="black", weight=3]; 2012[label="primEqInt (Pos vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3803[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];2012 -> 3803[label="",style="solid", color="burlywood", weight=9]; 3803 -> 2096[label="",style="solid", color="burlywood", weight=3]; 3804[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];2012 -> 3804[label="",style="solid", color="burlywood", weight=9]; 3804 -> 2097[label="",style="solid", color="burlywood", weight=3]; 2013[label="primEqInt (Neg vyw400) vyw300",fontsize=16,color="burlywood",shape="box"];3805[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];2013 -> 3805[label="",style="solid", color="burlywood", weight=9]; 3805 -> 2098[label="",style="solid", color="burlywood", weight=3]; 3806[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];2013 -> 3806[label="",style="solid", color="burlywood", weight=9]; 3806 -> 2099[label="",style="solid", color="burlywood", weight=3]; 2014[label="(vyw400,vyw401) == (vyw3000,vyw3001)",fontsize=16,color="black",shape="box"];2014 -> 2100[label="",style="solid", color="black", weight=3]; 2015[label="compare1 (Left vyw4300) vyw440 (Left vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3807[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3807[label="",style="solid", color="burlywood", weight=9]; 3807 -> 2101[label="",style="solid", color="burlywood", weight=3]; 3808[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2015 -> 3808[label="",style="solid", color="burlywood", weight=9]; 3808 -> 2102[label="",style="solid", color="burlywood", weight=3]; 2016[label="compare1 (Right vyw4300) vyw440 (Right vyw4300 <= vyw440)",fontsize=16,color="burlywood",shape="box"];3809[label="vyw440/Left vyw4400",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3809[label="",style="solid", color="burlywood", weight=9]; 3809 -> 2103[label="",style="solid", color="burlywood", weight=3]; 3810[label="vyw440/Right vyw4400",fontsize=10,color="white",style="solid",shape="box"];2016 -> 3810[label="",style="solid", color="burlywood", weight=9]; 3810 -> 2104[label="",style="solid", color="burlywood", weight=3]; 384[label="GT",fontsize=16,color="green",shape="box"];385[label="compare (Left vyw18) (Left vyw13)",fontsize=16,color="black",shape="box"];385 -> 440[label="",style="solid", color="black", weight=3]; 386[label="FiniteMap.lookupFM0 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) otherwise",fontsize=16,color="black",shape="box"];386 -> 441[label="",style="solid", color="black", weight=3]; 387 -> 4[label="",style="dashed", color="red", weight=0]; 387[label="FiniteMap.lookupFM vyw17 (Left vyw18)",fontsize=16,color="magenta"];387 -> 442[label="",style="dashed", color="magenta", weight=3]; 387 -> 443[label="",style="dashed", color="magenta", weight=3]; 388[label="GT",fontsize=16,color="green",shape="box"];389[label="compare (Left vyw40) (Right vyw300)",fontsize=16,color="black",shape="box"];389 -> 444[label="",style="solid", color="black", weight=3]; 390[label="FiniteMap.lookupFM0 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) otherwise",fontsize=16,color="black",shape="box"];390 -> 445[label="",style="solid", color="black", weight=3]; 391 -> 4[label="",style="dashed", color="red", weight=0]; 391[label="FiniteMap.lookupFM vyw34 (Left vyw40)",fontsize=16,color="magenta"];391 -> 446[label="",style="dashed", color="magenta", weight=3]; 391 -> 447[label="",style="dashed", color="magenta", weight=3]; 393[label="GT",fontsize=16,color="green",shape="box"];394[label="compare (Right vyw40) (Left vyw300)",fontsize=16,color="black",shape="box"];394 -> 449[label="",style="solid", color="black", weight=3]; 395[label="FiniteMap.lookupFM0 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) otherwise",fontsize=16,color="black",shape="box"];395 -> 450[label="",style="solid", color="black", weight=3]; 396 -> 4[label="",style="dashed", color="red", weight=0]; 396[label="FiniteMap.lookupFM vyw34 (Right vyw40)",fontsize=16,color="magenta"];396 -> 451[label="",style="dashed", color="magenta", weight=3]; 396 -> 452[label="",style="dashed", color="magenta", weight=3]; 398[label="GT",fontsize=16,color="green",shape="box"];399[label="compare (Right vyw33) (Right vyw28)",fontsize=16,color="black",shape="box"];399 -> 463[label="",style="solid", color="black", weight=3]; 400[label="FiniteMap.lookupFM0 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) otherwise",fontsize=16,color="black",shape="box"];400 -> 464[label="",style="solid", color="black", weight=3]; 401 -> 4[label="",style="dashed", color="red", weight=0]; 401[label="FiniteMap.lookupFM vyw32 (Right vyw33)",fontsize=16,color="magenta"];401 -> 465[label="",style="dashed", color="magenta", weight=3]; 401 -> 466[label="",style="dashed", color="magenta", weight=3]; 2073 -> 1929[label="",style="dashed", color="red", weight=0]; 2073[label="primEqInt vyw400 vyw3000",fontsize=16,color="magenta"];2073 -> 2105[label="",style="dashed", color="magenta", weight=3]; 2073 -> 2106[label="",style="dashed", color="magenta", weight=3]; 2074[label="True",fontsize=16,color="green",shape="box"];2075[label="primEqChar (Char vyw400) (Char vyw3000)",fontsize=16,color="black",shape="box"];2075 -> 2107[label="",style="solid", color="black", weight=3]; 2076[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3811[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3811[label="",style="solid", color="blue", weight=9]; 3811 -> 2108[label="",style="solid", color="blue", weight=3]; 3812[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3812[label="",style="solid", color="blue", weight=9]; 3812 -> 2109[label="",style="solid", color="blue", weight=3]; 3813[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3813[label="",style="solid", color="blue", weight=9]; 3813 -> 2110[label="",style="solid", color="blue", weight=3]; 3814[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3814[label="",style="solid", color="blue", weight=9]; 3814 -> 2111[label="",style="solid", color="blue", weight=3]; 3815[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3815[label="",style="solid", color="blue", weight=9]; 3815 -> 2112[label="",style="solid", color="blue", weight=3]; 3816[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3816[label="",style="solid", color="blue", weight=9]; 3816 -> 2113[label="",style="solid", color="blue", weight=3]; 3817[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3817[label="",style="solid", color="blue", weight=9]; 3817 -> 2114[label="",style="solid", color="blue", weight=3]; 3818[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3818[label="",style="solid", color="blue", weight=9]; 3818 -> 2115[label="",style="solid", color="blue", weight=3]; 3819[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3819[label="",style="solid", color="blue", weight=9]; 3819 -> 2116[label="",style="solid", color="blue", weight=3]; 3820[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3820[label="",style="solid", color="blue", weight=9]; 3820 -> 2117[label="",style="solid", color="blue", weight=3]; 3821[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3821[label="",style="solid", color="blue", weight=9]; 3821 -> 2118[label="",style="solid", color="blue", weight=3]; 3822[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3822[label="",style="solid", color="blue", weight=9]; 3822 -> 2119[label="",style="solid", color="blue", weight=3]; 3823[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3823[label="",style="solid", color="blue", weight=9]; 3823 -> 2120[label="",style="solid", color="blue", weight=3]; 3824[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2076 -> 3824[label="",style="solid", color="blue", weight=9]; 3824 -> 2121[label="",style="solid", color="blue", weight=3]; 2077[label="False",fontsize=16,color="green",shape="box"];2078[label="False",fontsize=16,color="green",shape="box"];2079[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3825[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3825[label="",style="solid", color="blue", weight=9]; 3825 -> 2122[label="",style="solid", color="blue", weight=3]; 3826[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3826[label="",style="solid", color="blue", weight=9]; 3826 -> 2123[label="",style="solid", color="blue", weight=3]; 3827[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3827[label="",style="solid", color="blue", weight=9]; 3827 -> 2124[label="",style="solid", color="blue", weight=3]; 3828[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3828[label="",style="solid", color="blue", weight=9]; 3828 -> 2125[label="",style="solid", color="blue", weight=3]; 3829[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3829[label="",style="solid", color="blue", weight=9]; 3829 -> 2126[label="",style="solid", color="blue", weight=3]; 3830[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3830[label="",style="solid", color="blue", weight=9]; 3830 -> 2127[label="",style="solid", color="blue", weight=3]; 3831[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3831[label="",style="solid", color="blue", weight=9]; 3831 -> 2128[label="",style="solid", color="blue", weight=3]; 3832[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3832[label="",style="solid", color="blue", weight=9]; 3832 -> 2129[label="",style="solid", color="blue", weight=3]; 3833[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3833[label="",style="solid", color="blue", weight=9]; 3833 -> 2130[label="",style="solid", color="blue", weight=3]; 3834[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3834[label="",style="solid", color="blue", weight=9]; 3834 -> 2131[label="",style="solid", color="blue", weight=3]; 3835[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3835[label="",style="solid", color="blue", weight=9]; 3835 -> 2132[label="",style="solid", color="blue", weight=3]; 3836[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3836[label="",style="solid", color="blue", weight=9]; 3836 -> 2133[label="",style="solid", color="blue", weight=3]; 3837[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3837[label="",style="solid", color="blue", weight=9]; 3837 -> 2134[label="",style="solid", color="blue", weight=3]; 3838[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2079 -> 3838[label="",style="solid", color="blue", weight=9]; 3838 -> 2135[label="",style="solid", color="blue", weight=3]; 2080 -> 2242[label="",style="dashed", color="red", weight=0]; 2080[label="vyw400 == vyw3000 && vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];2080 -> 2243[label="",style="dashed", color="magenta", weight=3]; 2080 -> 2244[label="",style="dashed", color="magenta", weight=3]; 2081[label="True",fontsize=16,color="green",shape="box"];2082[label="False",fontsize=16,color="green",shape="box"];2083[label="False",fontsize=16,color="green",shape="box"];2084[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3839[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3839[label="",style="solid", color="blue", weight=9]; 3839 -> 2142[label="",style="solid", color="blue", weight=3]; 3840[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3840[label="",style="solid", color="blue", weight=9]; 3840 -> 2143[label="",style="solid", color="blue", weight=3]; 3841[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3841[label="",style="solid", color="blue", weight=9]; 3841 -> 2144[label="",style="solid", color="blue", weight=3]; 3842[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3842[label="",style="solid", color="blue", weight=9]; 3842 -> 2145[label="",style="solid", color="blue", weight=3]; 3843[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3843[label="",style="solid", color="blue", weight=9]; 3843 -> 2146[label="",style="solid", color="blue", weight=3]; 3844[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3844[label="",style="solid", color="blue", weight=9]; 3844 -> 2147[label="",style="solid", color="blue", weight=3]; 3845[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3845[label="",style="solid", color="blue", weight=9]; 3845 -> 2148[label="",style="solid", color="blue", weight=3]; 3846[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3846[label="",style="solid", color="blue", weight=9]; 3846 -> 2149[label="",style="solid", color="blue", weight=3]; 3847[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3847[label="",style="solid", color="blue", weight=9]; 3847 -> 2150[label="",style="solid", color="blue", weight=3]; 3848[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3848[label="",style="solid", color="blue", weight=9]; 3848 -> 2151[label="",style="solid", color="blue", weight=3]; 3849[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3849[label="",style="solid", color="blue", weight=9]; 3849 -> 2152[label="",style="solid", color="blue", weight=3]; 3850[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3850[label="",style="solid", color="blue", weight=9]; 3850 -> 2153[label="",style="solid", color="blue", weight=3]; 3851[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3851[label="",style="solid", color="blue", weight=9]; 3851 -> 2154[label="",style="solid", color="blue", weight=3]; 3852[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2084 -> 3852[label="",style="solid", color="blue", weight=9]; 3852 -> 2155[label="",style="solid", color="blue", weight=3]; 2085 -> 2242[label="",style="dashed", color="red", weight=0]; 2085[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];2085 -> 2245[label="",style="dashed", color="magenta", weight=3]; 2085 -> 2246[label="",style="dashed", color="magenta", weight=3]; 2086[label="False",fontsize=16,color="green",shape="box"];2087[label="False",fontsize=16,color="green",shape="box"];2088[label="True",fontsize=16,color="green",shape="box"];2089[label="primEqFloat (Float vyw400 vyw401) (Float vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];2089 -> 2167[label="",style="solid", color="black", weight=3]; 2090 -> 2242[label="",style="dashed", color="red", weight=0]; 2090[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];2090 -> 2247[label="",style="dashed", color="magenta", weight=3]; 2090 -> 2248[label="",style="dashed", color="magenta", weight=3]; 2091[label="primEqDouble (Double vyw400 vyw401) (Double vyw3000 vyw3001)",fontsize=16,color="black",shape="box"];2091 -> 2168[label="",style="solid", color="black", weight=3]; 2092[label="True",fontsize=16,color="green",shape="box"];2093[label="False",fontsize=16,color="green",shape="box"];2094[label="False",fontsize=16,color="green",shape="box"];2095[label="True",fontsize=16,color="green",shape="box"];2096[label="primEqInt (Pos (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3853[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2096 -> 3853[label="",style="solid", color="burlywood", weight=9]; 3853 -> 2169[label="",style="solid", color="burlywood", weight=3]; 3854[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2096 -> 3854[label="",style="solid", color="burlywood", weight=9]; 3854 -> 2170[label="",style="solid", color="burlywood", weight=3]; 2097[label="primEqInt (Pos Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3855[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3855[label="",style="solid", color="burlywood", weight=9]; 3855 -> 2171[label="",style="solid", color="burlywood", weight=3]; 3856[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2097 -> 3856[label="",style="solid", color="burlywood", weight=9]; 3856 -> 2172[label="",style="solid", color="burlywood", weight=3]; 2098[label="primEqInt (Neg (Succ vyw4000)) vyw300",fontsize=16,color="burlywood",shape="box"];3857[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2098 -> 3857[label="",style="solid", color="burlywood", weight=9]; 3857 -> 2173[label="",style="solid", color="burlywood", weight=3]; 3858[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2098 -> 3858[label="",style="solid", color="burlywood", weight=9]; 3858 -> 2174[label="",style="solid", color="burlywood", weight=3]; 2099[label="primEqInt (Neg Zero) vyw300",fontsize=16,color="burlywood",shape="box"];3859[label="vyw300/Pos vyw3000",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3859[label="",style="solid", color="burlywood", weight=9]; 3859 -> 2175[label="",style="solid", color="burlywood", weight=3]; 3860[label="vyw300/Neg vyw3000",fontsize=10,color="white",style="solid",shape="box"];2099 -> 3860[label="",style="solid", color="burlywood", weight=9]; 3860 -> 2176[label="",style="solid", color="burlywood", weight=3]; 2100 -> 2242[label="",style="dashed", color="red", weight=0]; 2100[label="vyw400 == vyw3000 && vyw401 == vyw3001",fontsize=16,color="magenta"];2100 -> 2249[label="",style="dashed", color="magenta", weight=3]; 2100 -> 2250[label="",style="dashed", color="magenta", weight=3]; 2101[label="compare1 (Left vyw4300) (Left vyw4400) (Left vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2101 -> 2177[label="",style="solid", color="black", weight=3]; 2102[label="compare1 (Left vyw4300) (Right vyw4400) (Left vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2102 -> 2178[label="",style="solid", color="black", weight=3]; 2103[label="compare1 (Right vyw4300) (Left vyw4400) (Right vyw4300 <= Left vyw4400)",fontsize=16,color="black",shape="box"];2103 -> 2179[label="",style="solid", color="black", weight=3]; 2104[label="compare1 (Right vyw4300) (Right vyw4400) (Right vyw4300 <= Right vyw4400)",fontsize=16,color="black",shape="box"];2104 -> 2180[label="",style="solid", color="black", weight=3]; 440[label="compare3 (Left vyw18) (Left vyw13)",fontsize=16,color="black",shape="box"];440 -> 555[label="",style="solid", color="black", weight=3]; 441[label="FiniteMap.lookupFM0 (Left vyw13) vyw14 vyw15 vyw16 vyw17 (Left vyw18) True",fontsize=16,color="black",shape="box"];441 -> 556[label="",style="solid", color="black", weight=3]; 442[label="Left vyw18",fontsize=16,color="green",shape="box"];443[label="vyw17",fontsize=16,color="green",shape="box"];444[label="compare3 (Left vyw40) (Right vyw300)",fontsize=16,color="black",shape="box"];444 -> 557[label="",style="solid", color="black", weight=3]; 445[label="FiniteMap.lookupFM0 (Right vyw300) vyw31 vyw32 vyw33 vyw34 (Left vyw40) True",fontsize=16,color="black",shape="box"];445 -> 558[label="",style="solid", color="black", weight=3]; 446[label="Left vyw40",fontsize=16,color="green",shape="box"];447[label="vyw34",fontsize=16,color="green",shape="box"];449[label="compare3 (Right vyw40) (Left vyw300)",fontsize=16,color="black",shape="box"];449 -> 559[label="",style="solid", color="black", weight=3]; 450[label="FiniteMap.lookupFM0 (Left vyw300) vyw31 vyw32 vyw33 vyw34 (Right vyw40) True",fontsize=16,color="black",shape="box"];450 -> 560[label="",style="solid", color="black", weight=3]; 451[label="Right vyw40",fontsize=16,color="green",shape="box"];452[label="vyw34",fontsize=16,color="green",shape="box"];463[label="compare3 (Right vyw33) (Right vyw28)",fontsize=16,color="black",shape="box"];463 -> 577[label="",style="solid", color="black", weight=3]; 464[label="FiniteMap.lookupFM0 (Right vyw28) vyw29 vyw30 vyw31 vyw32 (Right vyw33) True",fontsize=16,color="black",shape="box"];464 -> 578[label="",style="solid", color="black", weight=3]; 465[label="Right vyw33",fontsize=16,color="green",shape="box"];466[label="vyw32",fontsize=16,color="green",shape="box"];2105[label="vyw3000",fontsize=16,color="green",shape="box"];2106[label="vyw400",fontsize=16,color="green",shape="box"];2107[label="primEqNat vyw400 vyw3000",fontsize=16,color="burlywood",shape="triangle"];3861[label="vyw400/Succ vyw4000",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3861[label="",style="solid", color="burlywood", weight=9]; 3861 -> 2181[label="",style="solid", color="burlywood", weight=3]; 3862[label="vyw400/Zero",fontsize=10,color="white",style="solid",shape="box"];2107 -> 3862[label="",style="solid", color="burlywood", weight=9]; 3862 -> 2182[label="",style="solid", color="burlywood", weight=3]; 2108 -> 1880[label="",style="dashed", color="red", weight=0]; 2108[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2108 -> 2183[label="",style="dashed", color="magenta", weight=3]; 2108 -> 2184[label="",style="dashed", color="magenta", weight=3]; 2109 -> 1881[label="",style="dashed", color="red", weight=0]; 2109[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2109 -> 2185[label="",style="dashed", color="magenta", weight=3]; 2109 -> 2186[label="",style="dashed", color="magenta", weight=3]; 2110 -> 44[label="",style="dashed", color="red", weight=0]; 2110[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2110 -> 2187[label="",style="dashed", color="magenta", weight=3]; 2110 -> 2188[label="",style="dashed", color="magenta", weight=3]; 2111 -> 1883[label="",style="dashed", color="red", weight=0]; 2111[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2111 -> 2189[label="",style="dashed", color="magenta", weight=3]; 2111 -> 2190[label="",style="dashed", color="magenta", weight=3]; 2112 -> 1884[label="",style="dashed", color="red", weight=0]; 2112[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2112 -> 2191[label="",style="dashed", color="magenta", weight=3]; 2112 -> 2192[label="",style="dashed", color="magenta", weight=3]; 2113 -> 1885[label="",style="dashed", color="red", weight=0]; 2113[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2113 -> 2193[label="",style="dashed", color="magenta", weight=3]; 2113 -> 2194[label="",style="dashed", color="magenta", weight=3]; 2114 -> 1886[label="",style="dashed", color="red", weight=0]; 2114[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2114 -> 2195[label="",style="dashed", color="magenta", weight=3]; 2114 -> 2196[label="",style="dashed", color="magenta", weight=3]; 2115 -> 1887[label="",style="dashed", color="red", weight=0]; 2115[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2115 -> 2197[label="",style="dashed", color="magenta", weight=3]; 2115 -> 2198[label="",style="dashed", color="magenta", weight=3]; 2116 -> 1888[label="",style="dashed", color="red", weight=0]; 2116[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2116 -> 2199[label="",style="dashed", color="magenta", weight=3]; 2116 -> 2200[label="",style="dashed", color="magenta", weight=3]; 2117 -> 1889[label="",style="dashed", color="red", weight=0]; 2117[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2117 -> 2201[label="",style="dashed", color="magenta", weight=3]; 2117 -> 2202[label="",style="dashed", color="magenta", weight=3]; 2118 -> 1890[label="",style="dashed", color="red", weight=0]; 2118[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2118 -> 2203[label="",style="dashed", color="magenta", weight=3]; 2118 -> 2204[label="",style="dashed", color="magenta", weight=3]; 2119 -> 1891[label="",style="dashed", color="red", weight=0]; 2119[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2119 -> 2205[label="",style="dashed", color="magenta", weight=3]; 2119 -> 2206[label="",style="dashed", color="magenta", weight=3]; 2120 -> 1892[label="",style="dashed", color="red", weight=0]; 2120[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2120 -> 2207[label="",style="dashed", color="magenta", weight=3]; 2120 -> 2208[label="",style="dashed", color="magenta", weight=3]; 2121 -> 1893[label="",style="dashed", color="red", weight=0]; 2121[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2121 -> 2209[label="",style="dashed", color="magenta", weight=3]; 2121 -> 2210[label="",style="dashed", color="magenta", weight=3]; 2122 -> 1880[label="",style="dashed", color="red", weight=0]; 2122[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2122 -> 2211[label="",style="dashed", color="magenta", weight=3]; 2122 -> 2212[label="",style="dashed", color="magenta", weight=3]; 2123 -> 1881[label="",style="dashed", color="red", weight=0]; 2123[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2123 -> 2213[label="",style="dashed", color="magenta", weight=3]; 2123 -> 2214[label="",style="dashed", color="magenta", weight=3]; 2124 -> 44[label="",style="dashed", color="red", weight=0]; 2124[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2124 -> 2215[label="",style="dashed", color="magenta", weight=3]; 2124 -> 2216[label="",style="dashed", color="magenta", weight=3]; 2125 -> 1883[label="",style="dashed", color="red", weight=0]; 2125[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2125 -> 2217[label="",style="dashed", color="magenta", weight=3]; 2125 -> 2218[label="",style="dashed", color="magenta", weight=3]; 2126 -> 1884[label="",style="dashed", color="red", weight=0]; 2126[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2126 -> 2219[label="",style="dashed", color="magenta", weight=3]; 2126 -> 2220[label="",style="dashed", color="magenta", weight=3]; 2127 -> 1885[label="",style="dashed", color="red", weight=0]; 2127[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2127 -> 2221[label="",style="dashed", color="magenta", weight=3]; 2127 -> 2222[label="",style="dashed", color="magenta", weight=3]; 2128 -> 1886[label="",style="dashed", color="red", weight=0]; 2128[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2128 -> 2223[label="",style="dashed", color="magenta", weight=3]; 2128 -> 2224[label="",style="dashed", color="magenta", weight=3]; 2129 -> 1887[label="",style="dashed", color="red", weight=0]; 2129[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2129 -> 2225[label="",style="dashed", color="magenta", weight=3]; 2129 -> 2226[label="",style="dashed", color="magenta", weight=3]; 2130 -> 1888[label="",style="dashed", color="red", weight=0]; 2130[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2130 -> 2227[label="",style="dashed", color="magenta", weight=3]; 2130 -> 2228[label="",style="dashed", color="magenta", weight=3]; 2131 -> 1889[label="",style="dashed", color="red", weight=0]; 2131[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2131 -> 2229[label="",style="dashed", color="magenta", weight=3]; 2131 -> 2230[label="",style="dashed", color="magenta", weight=3]; 2132 -> 1890[label="",style="dashed", color="red", weight=0]; 2132[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2132 -> 2231[label="",style="dashed", color="magenta", weight=3]; 2132 -> 2232[label="",style="dashed", color="magenta", weight=3]; 2133 -> 1891[label="",style="dashed", color="red", weight=0]; 2133[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2133 -> 2233[label="",style="dashed", color="magenta", weight=3]; 2133 -> 2234[label="",style="dashed", color="magenta", weight=3]; 2134 -> 1892[label="",style="dashed", color="red", weight=0]; 2134[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2134 -> 2235[label="",style="dashed", color="magenta", weight=3]; 2134 -> 2236[label="",style="dashed", color="magenta", weight=3]; 2135 -> 1893[label="",style="dashed", color="red", weight=0]; 2135[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2135 -> 2237[label="",style="dashed", color="magenta", weight=3]; 2135 -> 2238[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2242[label="",style="dashed", color="red", weight=0]; 2243[label="vyw401 == vyw3001 && vyw402 == vyw3002",fontsize=16,color="magenta"];2243 -> 2255[label="",style="dashed", color="magenta", weight=3]; 2243 -> 2256[label="",style="dashed", color="magenta", weight=3]; 2244[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3863[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3863[label="",style="solid", color="blue", weight=9]; 3863 -> 2257[label="",style="solid", color="blue", weight=3]; 3864[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3864[label="",style="solid", color="blue", weight=9]; 3864 -> 2258[label="",style="solid", color="blue", weight=3]; 3865[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3865[label="",style="solid", color="blue", weight=9]; 3865 -> 2259[label="",style="solid", color="blue", weight=3]; 3866[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3866[label="",style="solid", color="blue", weight=9]; 3866 -> 2260[label="",style="solid", color="blue", weight=3]; 3867[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3867[label="",style="solid", color="blue", weight=9]; 3867 -> 2261[label="",style="solid", color="blue", weight=3]; 3868[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3868[label="",style="solid", color="blue", weight=9]; 3868 -> 2262[label="",style="solid", color="blue", weight=3]; 3869[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3869[label="",style="solid", color="blue", weight=9]; 3869 -> 2263[label="",style="solid", color="blue", weight=3]; 3870[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3870[label="",style="solid", color="blue", weight=9]; 3870 -> 2264[label="",style="solid", color="blue", weight=3]; 3871[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3871[label="",style="solid", color="blue", weight=9]; 3871 -> 2265[label="",style="solid", color="blue", weight=3]; 3872[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3872[label="",style="solid", color="blue", weight=9]; 3872 -> 2266[label="",style="solid", color="blue", weight=3]; 3873[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3873[label="",style="solid", color="blue", weight=9]; 3873 -> 2267[label="",style="solid", color="blue", weight=3]; 3874[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3874[label="",style="solid", color="blue", weight=9]; 3874 -> 2268[label="",style="solid", color="blue", weight=3]; 3875[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3875[label="",style="solid", color="blue", weight=9]; 3875 -> 2269[label="",style="solid", color="blue", weight=3]; 3876[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2244 -> 3876[label="",style="solid", color="blue", weight=9]; 3876 -> 2270[label="",style="solid", color="blue", weight=3]; 2242[label="vyw117 && vyw118",fontsize=16,color="burlywood",shape="triangle"];3877[label="vyw117/False",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3877[label="",style="solid", color="burlywood", weight=9]; 3877 -> 2271[label="",style="solid", color="burlywood", weight=3]; 3878[label="vyw117/True",fontsize=10,color="white",style="solid",shape="box"];2242 -> 3878[label="",style="solid", color="burlywood", weight=9]; 3878 -> 2272[label="",style="solid", color="burlywood", weight=3]; 2142 -> 1880[label="",style="dashed", color="red", weight=0]; 2142[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2142 -> 2273[label="",style="dashed", color="magenta", weight=3]; 2142 -> 2274[label="",style="dashed", color="magenta", weight=3]; 2143 -> 1881[label="",style="dashed", color="red", weight=0]; 2143[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2143 -> 2275[label="",style="dashed", color="magenta", weight=3]; 2143 -> 2276[label="",style="dashed", color="magenta", weight=3]; 2144 -> 44[label="",style="dashed", color="red", weight=0]; 2144[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2144 -> 2277[label="",style="dashed", color="magenta", weight=3]; 2144 -> 2278[label="",style="dashed", color="magenta", weight=3]; 2145 -> 1883[label="",style="dashed", color="red", weight=0]; 2145[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2145 -> 2279[label="",style="dashed", color="magenta", weight=3]; 2145 -> 2280[label="",style="dashed", color="magenta", weight=3]; 2146 -> 1884[label="",style="dashed", color="red", weight=0]; 2146[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2146 -> 2281[label="",style="dashed", color="magenta", weight=3]; 2146 -> 2282[label="",style="dashed", color="magenta", weight=3]; 2147 -> 1885[label="",style="dashed", color="red", weight=0]; 2147[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2147 -> 2283[label="",style="dashed", color="magenta", weight=3]; 2147 -> 2284[label="",style="dashed", color="magenta", weight=3]; 2148 -> 1886[label="",style="dashed", color="red", weight=0]; 2148[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2148 -> 2285[label="",style="dashed", color="magenta", weight=3]; 2148 -> 2286[label="",style="dashed", color="magenta", weight=3]; 2149 -> 1887[label="",style="dashed", color="red", weight=0]; 2149[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2149 -> 2287[label="",style="dashed", color="magenta", weight=3]; 2149 -> 2288[label="",style="dashed", color="magenta", weight=3]; 2150 -> 1888[label="",style="dashed", color="red", weight=0]; 2150[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2150 -> 2289[label="",style="dashed", color="magenta", weight=3]; 2150 -> 2290[label="",style="dashed", color="magenta", weight=3]; 2151 -> 1889[label="",style="dashed", color="red", weight=0]; 2151[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2151 -> 2291[label="",style="dashed", color="magenta", weight=3]; 2151 -> 2292[label="",style="dashed", color="magenta", weight=3]; 2152 -> 1890[label="",style="dashed", color="red", weight=0]; 2152[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2152 -> 2293[label="",style="dashed", color="magenta", weight=3]; 2152 -> 2294[label="",style="dashed", color="magenta", weight=3]; 2153 -> 1891[label="",style="dashed", color="red", weight=0]; 2153[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2153 -> 2295[label="",style="dashed", color="magenta", weight=3]; 2153 -> 2296[label="",style="dashed", color="magenta", weight=3]; 2154 -> 1892[label="",style="dashed", color="red", weight=0]; 2154[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2154 -> 2297[label="",style="dashed", color="magenta", weight=3]; 2154 -> 2298[label="",style="dashed", color="magenta", weight=3]; 2155 -> 1893[label="",style="dashed", color="red", weight=0]; 2155[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2155 -> 2299[label="",style="dashed", color="magenta", weight=3]; 2155 -> 2300[label="",style="dashed", color="magenta", weight=3]; 2245 -> 1887[label="",style="dashed", color="red", weight=0]; 2245[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2245 -> 2301[label="",style="dashed", color="magenta", weight=3]; 2245 -> 2302[label="",style="dashed", color="magenta", weight=3]; 2246[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3879[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3879[label="",style="solid", color="blue", weight=9]; 3879 -> 2303[label="",style="solid", color="blue", weight=3]; 3880[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3880[label="",style="solid", color="blue", weight=9]; 3880 -> 2304[label="",style="solid", color="blue", weight=3]; 3881[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3881[label="",style="solid", color="blue", weight=9]; 3881 -> 2305[label="",style="solid", color="blue", weight=3]; 3882[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3882[label="",style="solid", color="blue", weight=9]; 3882 -> 2306[label="",style="solid", color="blue", weight=3]; 3883[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3883[label="",style="solid", color="blue", weight=9]; 3883 -> 2307[label="",style="solid", color="blue", weight=3]; 3884[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3884[label="",style="solid", color="blue", weight=9]; 3884 -> 2308[label="",style="solid", color="blue", weight=3]; 3885[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3885[label="",style="solid", color="blue", weight=9]; 3885 -> 2309[label="",style="solid", color="blue", weight=3]; 3886[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3886[label="",style="solid", color="blue", weight=9]; 3886 -> 2310[label="",style="solid", color="blue", weight=3]; 3887[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3887[label="",style="solid", color="blue", weight=9]; 3887 -> 2311[label="",style="solid", color="blue", weight=3]; 3888[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3888[label="",style="solid", color="blue", weight=9]; 3888 -> 2312[label="",style="solid", color="blue", weight=3]; 3889[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3889[label="",style="solid", color="blue", weight=9]; 3889 -> 2313[label="",style="solid", color="blue", weight=3]; 3890[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3890[label="",style="solid", color="blue", weight=9]; 3890 -> 2314[label="",style="solid", color="blue", weight=3]; 3891[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3891[label="",style="solid", color="blue", weight=9]; 3891 -> 2315[label="",style="solid", color="blue", weight=3]; 3892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2246 -> 3892[label="",style="solid", color="blue", weight=9]; 3892 -> 2316[label="",style="solid", color="blue", weight=3]; 2167 -> 1892[label="",style="dashed", color="red", weight=0]; 2167[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];2167 -> 2317[label="",style="dashed", color="magenta", weight=3]; 2167 -> 2318[label="",style="dashed", color="magenta", weight=3]; 2247[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3893[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2247 -> 3893[label="",style="solid", color="blue", weight=9]; 3893 -> 2319[label="",style="solid", color="blue", weight=3]; 3894[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2247 -> 3894[label="",style="solid", color="blue", weight=9]; 3894 -> 2320[label="",style="solid", color="blue", weight=3]; 2248[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3895[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2248 -> 3895[label="",style="solid", color="blue", weight=9]; 3895 -> 2321[label="",style="solid", color="blue", weight=3]; 3896[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2248 -> 3896[label="",style="solid", color="blue", weight=9]; 3896 -> 2322[label="",style="solid", color="blue", weight=3]; 2168 -> 1892[label="",style="dashed", color="red", weight=0]; 2168[label="vyw400 * vyw3001 == vyw401 * vyw3000",fontsize=16,color="magenta"];2168 -> 2323[label="",style="dashed", color="magenta", weight=3]; 2168 -> 2324[label="",style="dashed", color="magenta", weight=3]; 2169[label="primEqInt (Pos (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3897[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2169 -> 3897[label="",style="solid", color="burlywood", weight=9]; 3897 -> 2325[label="",style="solid", color="burlywood", weight=3]; 3898[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2169 -> 3898[label="",style="solid", color="burlywood", weight=9]; 3898 -> 2326[label="",style="solid", color="burlywood", weight=3]; 2170[label="primEqInt (Pos (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="black",shape="box"];2170 -> 2327[label="",style="solid", color="black", weight=3]; 2171[label="primEqInt (Pos Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3899[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2171 -> 3899[label="",style="solid", color="burlywood", weight=9]; 3899 -> 2328[label="",style="solid", color="burlywood", weight=3]; 3900[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2171 -> 3900[label="",style="solid", color="burlywood", weight=9]; 3900 -> 2329[label="",style="solid", color="burlywood", weight=3]; 2172[label="primEqInt (Pos Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3901[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3901[label="",style="solid", color="burlywood", weight=9]; 3901 -> 2330[label="",style="solid", color="burlywood", weight=3]; 3902[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2172 -> 3902[label="",style="solid", color="burlywood", weight=9]; 3902 -> 2331[label="",style="solid", color="burlywood", weight=3]; 2173[label="primEqInt (Neg (Succ vyw4000)) (Pos vyw3000)",fontsize=16,color="black",shape="box"];2173 -> 2332[label="",style="solid", color="black", weight=3]; 2174[label="primEqInt (Neg (Succ vyw4000)) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3903[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2174 -> 3903[label="",style="solid", color="burlywood", weight=9]; 3903 -> 2333[label="",style="solid", color="burlywood", weight=3]; 3904[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2174 -> 3904[label="",style="solid", color="burlywood", weight=9]; 3904 -> 2334[label="",style="solid", color="burlywood", weight=3]; 2175[label="primEqInt (Neg Zero) (Pos vyw3000)",fontsize=16,color="burlywood",shape="box"];3905[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2175 -> 3905[label="",style="solid", color="burlywood", weight=9]; 3905 -> 2335[label="",style="solid", color="burlywood", weight=3]; 3906[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2175 -> 3906[label="",style="solid", color="burlywood", weight=9]; 3906 -> 2336[label="",style="solid", color="burlywood", weight=3]; 2176[label="primEqInt (Neg Zero) (Neg vyw3000)",fontsize=16,color="burlywood",shape="box"];3907[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2176 -> 3907[label="",style="solid", color="burlywood", weight=9]; 3907 -> 2337[label="",style="solid", color="burlywood", weight=3]; 3908[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2176 -> 3908[label="",style="solid", color="burlywood", weight=9]; 3908 -> 2338[label="",style="solid", color="burlywood", weight=3]; 2249[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3909[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3909[label="",style="solid", color="blue", weight=9]; 3909 -> 2339[label="",style="solid", color="blue", weight=3]; 3910[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3910[label="",style="solid", color="blue", weight=9]; 3910 -> 2340[label="",style="solid", color="blue", weight=3]; 3911[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3911[label="",style="solid", color="blue", weight=9]; 3911 -> 2341[label="",style="solid", color="blue", weight=3]; 3912[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3912[label="",style="solid", color="blue", weight=9]; 3912 -> 2342[label="",style="solid", color="blue", weight=3]; 3913[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3913[label="",style="solid", color="blue", weight=9]; 3913 -> 2343[label="",style="solid", color="blue", weight=3]; 3914[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3914[label="",style="solid", color="blue", weight=9]; 3914 -> 2344[label="",style="solid", color="blue", weight=3]; 3915[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3915[label="",style="solid", color="blue", weight=9]; 3915 -> 2345[label="",style="solid", color="blue", weight=3]; 3916[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3916[label="",style="solid", color="blue", weight=9]; 3916 -> 2346[label="",style="solid", color="blue", weight=3]; 3917[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3917[label="",style="solid", color="blue", weight=9]; 3917 -> 2347[label="",style="solid", color="blue", weight=3]; 3918[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3918[label="",style="solid", color="blue", weight=9]; 3918 -> 2348[label="",style="solid", color="blue", weight=3]; 3919[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3919[label="",style="solid", color="blue", weight=9]; 3919 -> 2349[label="",style="solid", color="blue", weight=3]; 3920[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3920[label="",style="solid", color="blue", weight=9]; 3920 -> 2350[label="",style="solid", color="blue", weight=3]; 3921[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3921[label="",style="solid", color="blue", weight=9]; 3921 -> 2351[label="",style="solid", color="blue", weight=3]; 3922[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2249 -> 3922[label="",style="solid", color="blue", weight=9]; 3922 -> 2352[label="",style="solid", color="blue", weight=3]; 2250[label="vyw400 == vyw3000",fontsize=16,color="blue",shape="box"];3923[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3923[label="",style="solid", color="blue", weight=9]; 3923 -> 2353[label="",style="solid", color="blue", weight=3]; 3924[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3924[label="",style="solid", color="blue", weight=9]; 3924 -> 2354[label="",style="solid", color="blue", weight=3]; 3925[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3925[label="",style="solid", color="blue", weight=9]; 3925 -> 2355[label="",style="solid", color="blue", weight=3]; 3926[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3926[label="",style="solid", color="blue", weight=9]; 3926 -> 2356[label="",style="solid", color="blue", weight=3]; 3927[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3927[label="",style="solid", color="blue", weight=9]; 3927 -> 2357[label="",style="solid", color="blue", weight=3]; 3928[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3928[label="",style="solid", color="blue", weight=9]; 3928 -> 2358[label="",style="solid", color="blue", weight=3]; 3929[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3929[label="",style="solid", color="blue", weight=9]; 3929 -> 2359[label="",style="solid", color="blue", weight=3]; 3930[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3930[label="",style="solid", color="blue", weight=9]; 3930 -> 2360[label="",style="solid", color="blue", weight=3]; 3931[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3931[label="",style="solid", color="blue", weight=9]; 3931 -> 2361[label="",style="solid", color="blue", weight=3]; 3932[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3932[label="",style="solid", color="blue", weight=9]; 3932 -> 2362[label="",style="solid", color="blue", weight=3]; 3933[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3933[label="",style="solid", color="blue", weight=9]; 3933 -> 2363[label="",style="solid", color="blue", weight=3]; 3934[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3934[label="",style="solid", color="blue", weight=9]; 3934 -> 2364[label="",style="solid", color="blue", weight=3]; 3935[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3935[label="",style="solid", color="blue", weight=9]; 3935 -> 2365[label="",style="solid", color="blue", weight=3]; 3936[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2250 -> 3936[label="",style="solid", color="blue", weight=9]; 3936 -> 2366[label="",style="solid", color="blue", weight=3]; 2177 -> 2367[label="",style="dashed", color="red", weight=0]; 2177[label="compare1 (Left vyw4300) (Left vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2177 -> 2368[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2369[label="",style="dashed", color="magenta", weight=3]; 2177 -> 2370[label="",style="dashed", color="magenta", weight=3]; 2178[label="compare1 (Left vyw4300) (Right vyw4400) True",fontsize=16,color="black",shape="box"];2178 -> 2371[label="",style="solid", color="black", weight=3]; 2179[label="compare1 (Right vyw4300) (Left vyw4400) False",fontsize=16,color="black",shape="box"];2179 -> 2372[label="",style="solid", color="black", weight=3]; 2180 -> 2373[label="",style="dashed", color="red", weight=0]; 2180[label="compare1 (Right vyw4300) (Right vyw4400) (vyw4300 <= vyw4400)",fontsize=16,color="magenta"];2180 -> 2374[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2375[label="",style="dashed", color="magenta", weight=3]; 2180 -> 2376[label="",style="dashed", color="magenta", weight=3]; 555 -> 1842[label="",style="dashed", color="red", weight=0]; 555[label="compare2 (Left vyw18) (Left vyw13) (Left vyw18 == Left vyw13)",fontsize=16,color="magenta"];555 -> 1867[label="",style="dashed", color="magenta", weight=3]; 555 -> 1868[label="",style="dashed", color="magenta", weight=3]; 555 -> 1869[label="",style="dashed", color="magenta", weight=3]; 556[label="Just vyw14",fontsize=16,color="green",shape="box"];557 -> 1842[label="",style="dashed", color="red", weight=0]; 557[label="compare2 (Left vyw40) (Right vyw300) (Left vyw40 == Right vyw300)",fontsize=16,color="magenta"];557 -> 1870[label="",style="dashed", color="magenta", weight=3]; 557 -> 1871[label="",style="dashed", color="magenta", weight=3]; 557 -> 1872[label="",style="dashed", color="magenta", weight=3]; 558[label="Just vyw31",fontsize=16,color="green",shape="box"];559 -> 1842[label="",style="dashed", color="red", weight=0]; 559[label="compare2 (Right vyw40) (Left vyw300) (Right vyw40 == Left vyw300)",fontsize=16,color="magenta"];559 -> 1873[label="",style="dashed", color="magenta", weight=3]; 559 -> 1874[label="",style="dashed", color="magenta", weight=3]; 559 -> 1875[label="",style="dashed", color="magenta", weight=3]; 560[label="Just vyw31",fontsize=16,color="green",shape="box"];577 -> 1842[label="",style="dashed", color="red", weight=0]; 577[label="compare2 (Right vyw33) (Right vyw28) (Right vyw33 == Right vyw28)",fontsize=16,color="magenta"];577 -> 1876[label="",style="dashed", color="magenta", weight=3]; 577 -> 1877[label="",style="dashed", color="magenta", weight=3]; 577 -> 1878[label="",style="dashed", color="magenta", weight=3]; 578[label="Just vyw29",fontsize=16,color="green",shape="box"];2181[label="primEqNat (Succ vyw4000) vyw3000",fontsize=16,color="burlywood",shape="box"];3937[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2181 -> 3937[label="",style="solid", color="burlywood", weight=9]; 3937 -> 2377[label="",style="solid", color="burlywood", weight=3]; 3938[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2181 -> 3938[label="",style="solid", color="burlywood", weight=9]; 3938 -> 2378[label="",style="solid", color="burlywood", weight=3]; 2182[label="primEqNat Zero vyw3000",fontsize=16,color="burlywood",shape="box"];3939[label="vyw3000/Succ vyw30000",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3939[label="",style="solid", color="burlywood", weight=9]; 3939 -> 2379[label="",style="solid", color="burlywood", weight=3]; 3940[label="vyw3000/Zero",fontsize=10,color="white",style="solid",shape="box"];2182 -> 3940[label="",style="solid", color="burlywood", weight=9]; 3940 -> 2380[label="",style="solid", color="burlywood", weight=3]; 2183[label="vyw3000",fontsize=16,color="green",shape="box"];2184[label="vyw400",fontsize=16,color="green",shape="box"];2185[label="vyw3000",fontsize=16,color="green",shape="box"];2186[label="vyw400",fontsize=16,color="green",shape="box"];2187[label="vyw3000",fontsize=16,color="green",shape="box"];2188[label="vyw400",fontsize=16,color="green",shape="box"];2189[label="vyw3000",fontsize=16,color="green",shape="box"];2190[label="vyw400",fontsize=16,color="green",shape="box"];2191[label="vyw3000",fontsize=16,color="green",shape="box"];2192[label="vyw400",fontsize=16,color="green",shape="box"];2193[label="vyw3000",fontsize=16,color="green",shape="box"];2194[label="vyw400",fontsize=16,color="green",shape="box"];2195[label="vyw3000",fontsize=16,color="green",shape="box"];2196[label="vyw400",fontsize=16,color="green",shape="box"];2197[label="vyw3000",fontsize=16,color="green",shape="box"];2198[label="vyw400",fontsize=16,color="green",shape="box"];2199[label="vyw3000",fontsize=16,color="green",shape="box"];2200[label="vyw400",fontsize=16,color="green",shape="box"];2201[label="vyw3000",fontsize=16,color="green",shape="box"];2202[label="vyw400",fontsize=16,color="green",shape="box"];2203[label="vyw3000",fontsize=16,color="green",shape="box"];2204[label="vyw400",fontsize=16,color="green",shape="box"];2205[label="vyw3000",fontsize=16,color="green",shape="box"];2206[label="vyw400",fontsize=16,color="green",shape="box"];2207[label="vyw3000",fontsize=16,color="green",shape="box"];2208[label="vyw400",fontsize=16,color="green",shape="box"];2209[label="vyw3000",fontsize=16,color="green",shape="box"];2210[label="vyw400",fontsize=16,color="green",shape="box"];2211[label="vyw3000",fontsize=16,color="green",shape="box"];2212[label="vyw400",fontsize=16,color="green",shape="box"];2213[label="vyw3000",fontsize=16,color="green",shape="box"];2214[label="vyw400",fontsize=16,color="green",shape="box"];2215[label="vyw3000",fontsize=16,color="green",shape="box"];2216[label="vyw400",fontsize=16,color="green",shape="box"];2217[label="vyw3000",fontsize=16,color="green",shape="box"];2218[label="vyw400",fontsize=16,color="green",shape="box"];2219[label="vyw3000",fontsize=16,color="green",shape="box"];2220[label="vyw400",fontsize=16,color="green",shape="box"];2221[label="vyw3000",fontsize=16,color="green",shape="box"];2222[label="vyw400",fontsize=16,color="green",shape="box"];2223[label="vyw3000",fontsize=16,color="green",shape="box"];2224[label="vyw400",fontsize=16,color="green",shape="box"];2225[label="vyw3000",fontsize=16,color="green",shape="box"];2226[label="vyw400",fontsize=16,color="green",shape="box"];2227[label="vyw3000",fontsize=16,color="green",shape="box"];2228[label="vyw400",fontsize=16,color="green",shape="box"];2229[label="vyw3000",fontsize=16,color="green",shape="box"];2230[label="vyw400",fontsize=16,color="green",shape="box"];2231[label="vyw3000",fontsize=16,color="green",shape="box"];2232[label="vyw400",fontsize=16,color="green",shape="box"];2233[label="vyw3000",fontsize=16,color="green",shape="box"];2234[label="vyw400",fontsize=16,color="green",shape="box"];2235[label="vyw3000",fontsize=16,color="green",shape="box"];2236[label="vyw400",fontsize=16,color="green",shape="box"];2237[label="vyw3000",fontsize=16,color="green",shape="box"];2238[label="vyw400",fontsize=16,color="green",shape="box"];2255[label="vyw402 == vyw3002",fontsize=16,color="blue",shape="box"];3941[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3941[label="",style="solid", color="blue", weight=9]; 3941 -> 2381[label="",style="solid", color="blue", weight=3]; 3942[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3942[label="",style="solid", color="blue", weight=9]; 3942 -> 2382[label="",style="solid", color="blue", weight=3]; 3943[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3943[label="",style="solid", color="blue", weight=9]; 3943 -> 2383[label="",style="solid", color="blue", weight=3]; 3944[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3944[label="",style="solid", color="blue", weight=9]; 3944 -> 2384[label="",style="solid", color="blue", weight=3]; 3945[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3945[label="",style="solid", color="blue", weight=9]; 3945 -> 2385[label="",style="solid", color="blue", weight=3]; 3946[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3946[label="",style="solid", color="blue", weight=9]; 3946 -> 2386[label="",style="solid", color="blue", weight=3]; 3947[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3947[label="",style="solid", color="blue", weight=9]; 3947 -> 2387[label="",style="solid", color="blue", weight=3]; 3948[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3948[label="",style="solid", color="blue", weight=9]; 3948 -> 2388[label="",style="solid", color="blue", weight=3]; 3949[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3949[label="",style="solid", color="blue", weight=9]; 3949 -> 2389[label="",style="solid", color="blue", weight=3]; 3950[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3950[label="",style="solid", color="blue", weight=9]; 3950 -> 2390[label="",style="solid", color="blue", weight=3]; 3951[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3951[label="",style="solid", color="blue", weight=9]; 3951 -> 2391[label="",style="solid", color="blue", weight=3]; 3952[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3952[label="",style="solid", color="blue", weight=9]; 3952 -> 2392[label="",style="solid", color="blue", weight=3]; 3953[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3953[label="",style="solid", color="blue", weight=9]; 3953 -> 2393[label="",style="solid", color="blue", weight=3]; 3954[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2255 -> 3954[label="",style="solid", color="blue", weight=9]; 3954 -> 2394[label="",style="solid", color="blue", weight=3]; 2256[label="vyw401 == vyw3001",fontsize=16,color="blue",shape="box"];3955[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3955[label="",style="solid", color="blue", weight=9]; 3955 -> 2395[label="",style="solid", color="blue", weight=3]; 3956[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3956[label="",style="solid", color="blue", weight=9]; 3956 -> 2396[label="",style="solid", color="blue", weight=3]; 3957[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3957[label="",style="solid", color="blue", weight=9]; 3957 -> 2397[label="",style="solid", color="blue", weight=3]; 3958[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3958[label="",style="solid", color="blue", weight=9]; 3958 -> 2398[label="",style="solid", color="blue", weight=3]; 3959[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3959[label="",style="solid", color="blue", weight=9]; 3959 -> 2399[label="",style="solid", color="blue", weight=3]; 3960[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3960[label="",style="solid", color="blue", weight=9]; 3960 -> 2400[label="",style="solid", color="blue", weight=3]; 3961[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3961[label="",style="solid", color="blue", weight=9]; 3961 -> 2401[label="",style="solid", color="blue", weight=3]; 3962[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3962[label="",style="solid", color="blue", weight=9]; 3962 -> 2402[label="",style="solid", color="blue", weight=3]; 3963[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3963[label="",style="solid", color="blue", weight=9]; 3963 -> 2403[label="",style="solid", color="blue", weight=3]; 3964[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3964[label="",style="solid", color="blue", weight=9]; 3964 -> 2404[label="",style="solid", color="blue", weight=3]; 3965[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3965[label="",style="solid", color="blue", weight=9]; 3965 -> 2405[label="",style="solid", color="blue", weight=3]; 3966[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3966[label="",style="solid", color="blue", weight=9]; 3966 -> 2406[label="",style="solid", color="blue", weight=3]; 3967[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3967[label="",style="solid", color="blue", weight=9]; 3967 -> 2407[label="",style="solid", color="blue", weight=3]; 3968[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2256 -> 3968[label="",style="solid", color="blue", weight=9]; 3968 -> 2408[label="",style="solid", color="blue", weight=3]; 2257 -> 1880[label="",style="dashed", color="red", weight=0]; 2257[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2257 -> 2409[label="",style="dashed", color="magenta", weight=3]; 2257 -> 2410[label="",style="dashed", color="magenta", weight=3]; 2258 -> 1881[label="",style="dashed", color="red", weight=0]; 2258[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2258 -> 2411[label="",style="dashed", color="magenta", weight=3]; 2258 -> 2412[label="",style="dashed", color="magenta", weight=3]; 2259 -> 44[label="",style="dashed", color="red", weight=0]; 2259[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2259 -> 2413[label="",style="dashed", color="magenta", weight=3]; 2259 -> 2414[label="",style="dashed", color="magenta", weight=3]; 2260 -> 1883[label="",style="dashed", color="red", weight=0]; 2260[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2260 -> 2415[label="",style="dashed", color="magenta", weight=3]; 2260 -> 2416[label="",style="dashed", color="magenta", weight=3]; 2261 -> 1884[label="",style="dashed", color="red", weight=0]; 2261[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2261 -> 2417[label="",style="dashed", color="magenta", weight=3]; 2261 -> 2418[label="",style="dashed", color="magenta", weight=3]; 2262 -> 1885[label="",style="dashed", color="red", weight=0]; 2262[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2262 -> 2419[label="",style="dashed", color="magenta", weight=3]; 2262 -> 2420[label="",style="dashed", color="magenta", weight=3]; 2263 -> 1886[label="",style="dashed", color="red", weight=0]; 2263[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2263 -> 2421[label="",style="dashed", color="magenta", weight=3]; 2263 -> 2422[label="",style="dashed", color="magenta", weight=3]; 2264 -> 1887[label="",style="dashed", color="red", weight=0]; 2264[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2264 -> 2423[label="",style="dashed", color="magenta", weight=3]; 2264 -> 2424[label="",style="dashed", color="magenta", weight=3]; 2265 -> 1888[label="",style="dashed", color="red", weight=0]; 2265[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2265 -> 2425[label="",style="dashed", color="magenta", weight=3]; 2265 -> 2426[label="",style="dashed", color="magenta", weight=3]; 2266 -> 1889[label="",style="dashed", color="red", weight=0]; 2266[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2266 -> 2427[label="",style="dashed", color="magenta", weight=3]; 2266 -> 2428[label="",style="dashed", color="magenta", weight=3]; 2267 -> 1890[label="",style="dashed", color="red", weight=0]; 2267[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2267 -> 2429[label="",style="dashed", color="magenta", weight=3]; 2267 -> 2430[label="",style="dashed", color="magenta", weight=3]; 2268 -> 1891[label="",style="dashed", color="red", weight=0]; 2268[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2268 -> 2431[label="",style="dashed", color="magenta", weight=3]; 2268 -> 2432[label="",style="dashed", color="magenta", weight=3]; 2269 -> 1892[label="",style="dashed", color="red", weight=0]; 2269[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2269 -> 2433[label="",style="dashed", color="magenta", weight=3]; 2269 -> 2434[label="",style="dashed", color="magenta", weight=3]; 2270 -> 1893[label="",style="dashed", color="red", weight=0]; 2270[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2270 -> 2435[label="",style="dashed", color="magenta", weight=3]; 2270 -> 2436[label="",style="dashed", color="magenta", weight=3]; 2271[label="False && vyw118",fontsize=16,color="black",shape="box"];2271 -> 2437[label="",style="solid", color="black", weight=3]; 2272[label="True && vyw118",fontsize=16,color="black",shape="box"];2272 -> 2438[label="",style="solid", color="black", weight=3]; 2273[label="vyw3000",fontsize=16,color="green",shape="box"];2274[label="vyw400",fontsize=16,color="green",shape="box"];2275[label="vyw3000",fontsize=16,color="green",shape="box"];2276[label="vyw400",fontsize=16,color="green",shape="box"];2277[label="vyw3000",fontsize=16,color="green",shape="box"];2278[label="vyw400",fontsize=16,color="green",shape="box"];2279[label="vyw3000",fontsize=16,color="green",shape="box"];2280[label="vyw400",fontsize=16,color="green",shape="box"];2281[label="vyw3000",fontsize=16,color="green",shape="box"];2282[label="vyw400",fontsize=16,color="green",shape="box"];2283[label="vyw3000",fontsize=16,color="green",shape="box"];2284[label="vyw400",fontsize=16,color="green",shape="box"];2285[label="vyw3000",fontsize=16,color="green",shape="box"];2286[label="vyw400",fontsize=16,color="green",shape="box"];2287[label="vyw3000",fontsize=16,color="green",shape="box"];2288[label="vyw400",fontsize=16,color="green",shape="box"];2289[label="vyw3000",fontsize=16,color="green",shape="box"];2290[label="vyw400",fontsize=16,color="green",shape="box"];2291[label="vyw3000",fontsize=16,color="green",shape="box"];2292[label="vyw400",fontsize=16,color="green",shape="box"];2293[label="vyw3000",fontsize=16,color="green",shape="box"];2294[label="vyw400",fontsize=16,color="green",shape="box"];2295[label="vyw3000",fontsize=16,color="green",shape="box"];2296[label="vyw400",fontsize=16,color="green",shape="box"];2297[label="vyw3000",fontsize=16,color="green",shape="box"];2298[label="vyw400",fontsize=16,color="green",shape="box"];2299[label="vyw3000",fontsize=16,color="green",shape="box"];2300[label="vyw400",fontsize=16,color="green",shape="box"];2301[label="vyw3001",fontsize=16,color="green",shape="box"];2302[label="vyw401",fontsize=16,color="green",shape="box"];2303 -> 1880[label="",style="dashed", color="red", weight=0]; 2303[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2303 -> 2439[label="",style="dashed", color="magenta", weight=3]; 2303 -> 2440[label="",style="dashed", color="magenta", weight=3]; 2304 -> 1881[label="",style="dashed", color="red", weight=0]; 2304[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2304 -> 2441[label="",style="dashed", color="magenta", weight=3]; 2304 -> 2442[label="",style="dashed", color="magenta", weight=3]; 2305 -> 44[label="",style="dashed", color="red", weight=0]; 2305[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2305 -> 2443[label="",style="dashed", color="magenta", weight=3]; 2305 -> 2444[label="",style="dashed", color="magenta", weight=3]; 2306 -> 1883[label="",style="dashed", color="red", weight=0]; 2306[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2306 -> 2445[label="",style="dashed", color="magenta", weight=3]; 2306 -> 2446[label="",style="dashed", color="magenta", weight=3]; 2307 -> 1884[label="",style="dashed", color="red", weight=0]; 2307[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2307 -> 2447[label="",style="dashed", color="magenta", weight=3]; 2307 -> 2448[label="",style="dashed", color="magenta", weight=3]; 2308 -> 1885[label="",style="dashed", color="red", weight=0]; 2308[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2308 -> 2449[label="",style="dashed", color="magenta", weight=3]; 2308 -> 2450[label="",style="dashed", color="magenta", weight=3]; 2309 -> 1886[label="",style="dashed", color="red", weight=0]; 2309[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2309 -> 2451[label="",style="dashed", color="magenta", weight=3]; 2309 -> 2452[label="",style="dashed", color="magenta", weight=3]; 2310 -> 1887[label="",style="dashed", color="red", weight=0]; 2310[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2310 -> 2453[label="",style="dashed", color="magenta", weight=3]; 2310 -> 2454[label="",style="dashed", color="magenta", weight=3]; 2311 -> 1888[label="",style="dashed", color="red", weight=0]; 2311[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2311 -> 2455[label="",style="dashed", color="magenta", weight=3]; 2311 -> 2456[label="",style="dashed", color="magenta", weight=3]; 2312 -> 1889[label="",style="dashed", color="red", weight=0]; 2312[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2312 -> 2457[label="",style="dashed", color="magenta", weight=3]; 2312 -> 2458[label="",style="dashed", color="magenta", weight=3]; 2313 -> 1890[label="",style="dashed", color="red", weight=0]; 2313[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2313 -> 2459[label="",style="dashed", color="magenta", weight=3]; 2313 -> 2460[label="",style="dashed", color="magenta", weight=3]; 2314 -> 1891[label="",style="dashed", color="red", weight=0]; 2314[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2314 -> 2461[label="",style="dashed", color="magenta", weight=3]; 2314 -> 2462[label="",style="dashed", color="magenta", weight=3]; 2315 -> 1892[label="",style="dashed", color="red", weight=0]; 2315[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2315 -> 2463[label="",style="dashed", color="magenta", weight=3]; 2315 -> 2464[label="",style="dashed", color="magenta", weight=3]; 2316 -> 1893[label="",style="dashed", color="red", weight=0]; 2316[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2316 -> 2465[label="",style="dashed", color="magenta", weight=3]; 2316 -> 2466[label="",style="dashed", color="magenta", weight=3]; 2317[label="vyw401 * vyw3000",fontsize=16,color="black",shape="triangle"];2317 -> 2467[label="",style="solid", color="black", weight=3]; 2318 -> 2317[label="",style="dashed", color="red", weight=0]; 2318[label="vyw400 * vyw3001",fontsize=16,color="magenta"];2318 -> 2468[label="",style="dashed", color="magenta", weight=3]; 2318 -> 2469[label="",style="dashed", color="magenta", weight=3]; 2319 -> 1880[label="",style="dashed", color="red", weight=0]; 2319[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2319 -> 2470[label="",style="dashed", color="magenta", weight=3]; 2319 -> 2471[label="",style="dashed", color="magenta", weight=3]; 2320 -> 1892[label="",style="dashed", color="red", weight=0]; 2320[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2320 -> 2472[label="",style="dashed", color="magenta", weight=3]; 2320 -> 2473[label="",style="dashed", color="magenta", weight=3]; 2321 -> 1880[label="",style="dashed", color="red", weight=0]; 2321[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2321 -> 2474[label="",style="dashed", color="magenta", weight=3]; 2321 -> 2475[label="",style="dashed", color="magenta", weight=3]; 2322 -> 1892[label="",style="dashed", color="red", weight=0]; 2322[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2322 -> 2476[label="",style="dashed", color="magenta", weight=3]; 2322 -> 2477[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2317[label="",style="dashed", color="red", weight=0]; 2323[label="vyw401 * vyw3000",fontsize=16,color="magenta"];2323 -> 2478[label="",style="dashed", color="magenta", weight=3]; 2323 -> 2479[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2317[label="",style="dashed", color="red", weight=0]; 2324[label="vyw400 * vyw3001",fontsize=16,color="magenta"];2324 -> 2480[label="",style="dashed", color="magenta", weight=3]; 2324 -> 2481[label="",style="dashed", color="magenta", weight=3]; 2325[label="primEqInt (Pos (Succ vyw4000)) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2325 -> 2482[label="",style="solid", color="black", weight=3]; 2326[label="primEqInt (Pos (Succ vyw4000)) (Pos Zero)",fontsize=16,color="black",shape="box"];2326 -> 2483[label="",style="solid", color="black", weight=3]; 2327[label="False",fontsize=16,color="green",shape="box"];2328[label="primEqInt (Pos Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2328 -> 2484[label="",style="solid", color="black", weight=3]; 2329[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2329 -> 2485[label="",style="solid", color="black", weight=3]; 2330[label="primEqInt (Pos Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2330 -> 2486[label="",style="solid", color="black", weight=3]; 2331[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2331 -> 2487[label="",style="solid", color="black", weight=3]; 2332[label="False",fontsize=16,color="green",shape="box"];2333[label="primEqInt (Neg (Succ vyw4000)) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2333 -> 2488[label="",style="solid", color="black", weight=3]; 2334[label="primEqInt (Neg (Succ vyw4000)) (Neg Zero)",fontsize=16,color="black",shape="box"];2334 -> 2489[label="",style="solid", color="black", weight=3]; 2335[label="primEqInt (Neg Zero) (Pos (Succ vyw30000))",fontsize=16,color="black",shape="box"];2335 -> 2490[label="",style="solid", color="black", weight=3]; 2336[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];2336 -> 2491[label="",style="solid", color="black", weight=3]; 2337[label="primEqInt (Neg Zero) (Neg (Succ vyw30000))",fontsize=16,color="black",shape="box"];2337 -> 2492[label="",style="solid", color="black", weight=3]; 2338[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];2338 -> 2493[label="",style="solid", color="black", weight=3]; 2339 -> 1880[label="",style="dashed", color="red", weight=0]; 2339[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2339 -> 2494[label="",style="dashed", color="magenta", weight=3]; 2339 -> 2495[label="",style="dashed", color="magenta", weight=3]; 2340 -> 1881[label="",style="dashed", color="red", weight=0]; 2340[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2340 -> 2496[label="",style="dashed", color="magenta", weight=3]; 2340 -> 2497[label="",style="dashed", color="magenta", weight=3]; 2341 -> 44[label="",style="dashed", color="red", weight=0]; 2341[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2341 -> 2498[label="",style="dashed", color="magenta", weight=3]; 2341 -> 2499[label="",style="dashed", color="magenta", weight=3]; 2342 -> 1883[label="",style="dashed", color="red", weight=0]; 2342[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2342 -> 2500[label="",style="dashed", color="magenta", weight=3]; 2342 -> 2501[label="",style="dashed", color="magenta", weight=3]; 2343 -> 1884[label="",style="dashed", color="red", weight=0]; 2343[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2343 -> 2502[label="",style="dashed", color="magenta", weight=3]; 2343 -> 2503[label="",style="dashed", color="magenta", weight=3]; 2344 -> 1885[label="",style="dashed", color="red", weight=0]; 2344[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2344 -> 2504[label="",style="dashed", color="magenta", weight=3]; 2344 -> 2505[label="",style="dashed", color="magenta", weight=3]; 2345 -> 1886[label="",style="dashed", color="red", weight=0]; 2345[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2345 -> 2506[label="",style="dashed", color="magenta", weight=3]; 2345 -> 2507[label="",style="dashed", color="magenta", weight=3]; 2346 -> 1887[label="",style="dashed", color="red", weight=0]; 2346[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2346 -> 2508[label="",style="dashed", color="magenta", weight=3]; 2346 -> 2509[label="",style="dashed", color="magenta", weight=3]; 2347 -> 1888[label="",style="dashed", color="red", weight=0]; 2347[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2347 -> 2510[label="",style="dashed", color="magenta", weight=3]; 2347 -> 2511[label="",style="dashed", color="magenta", weight=3]; 2348 -> 1889[label="",style="dashed", color="red", weight=0]; 2348[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2348 -> 2512[label="",style="dashed", color="magenta", weight=3]; 2348 -> 2513[label="",style="dashed", color="magenta", weight=3]; 2349 -> 1890[label="",style="dashed", color="red", weight=0]; 2349[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2349 -> 2514[label="",style="dashed", color="magenta", weight=3]; 2349 -> 2515[label="",style="dashed", color="magenta", weight=3]; 2350 -> 1891[label="",style="dashed", color="red", weight=0]; 2350[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2350 -> 2516[label="",style="dashed", color="magenta", weight=3]; 2350 -> 2517[label="",style="dashed", color="magenta", weight=3]; 2351 -> 1892[label="",style="dashed", color="red", weight=0]; 2351[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2351 -> 2518[label="",style="dashed", color="magenta", weight=3]; 2351 -> 2519[label="",style="dashed", color="magenta", weight=3]; 2352 -> 1893[label="",style="dashed", color="red", weight=0]; 2352[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2352 -> 2520[label="",style="dashed", color="magenta", weight=3]; 2352 -> 2521[label="",style="dashed", color="magenta", weight=3]; 2353 -> 1880[label="",style="dashed", color="red", weight=0]; 2353[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2353 -> 2522[label="",style="dashed", color="magenta", weight=3]; 2353 -> 2523[label="",style="dashed", color="magenta", weight=3]; 2354 -> 1881[label="",style="dashed", color="red", weight=0]; 2354[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2354 -> 2524[label="",style="dashed", color="magenta", weight=3]; 2354 -> 2525[label="",style="dashed", color="magenta", weight=3]; 2355 -> 44[label="",style="dashed", color="red", weight=0]; 2355[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2355 -> 2526[label="",style="dashed", color="magenta", weight=3]; 2355 -> 2527[label="",style="dashed", color="magenta", weight=3]; 2356 -> 1883[label="",style="dashed", color="red", weight=0]; 2356[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2356 -> 2528[label="",style="dashed", color="magenta", weight=3]; 2356 -> 2529[label="",style="dashed", color="magenta", weight=3]; 2357 -> 1884[label="",style="dashed", color="red", weight=0]; 2357[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2357 -> 2530[label="",style="dashed", color="magenta", weight=3]; 2357 -> 2531[label="",style="dashed", color="magenta", weight=3]; 2358 -> 1885[label="",style="dashed", color="red", weight=0]; 2358[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2358 -> 2532[label="",style="dashed", color="magenta", weight=3]; 2358 -> 2533[label="",style="dashed", color="magenta", weight=3]; 2359 -> 1886[label="",style="dashed", color="red", weight=0]; 2359[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2359 -> 2534[label="",style="dashed", color="magenta", weight=3]; 2359 -> 2535[label="",style="dashed", color="magenta", weight=3]; 2360 -> 1887[label="",style="dashed", color="red", weight=0]; 2360[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2360 -> 2536[label="",style="dashed", color="magenta", weight=3]; 2360 -> 2537[label="",style="dashed", color="magenta", weight=3]; 2361 -> 1888[label="",style="dashed", color="red", weight=0]; 2361[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2361 -> 2538[label="",style="dashed", color="magenta", weight=3]; 2361 -> 2539[label="",style="dashed", color="magenta", weight=3]; 2362 -> 1889[label="",style="dashed", color="red", weight=0]; 2362[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2362 -> 2540[label="",style="dashed", color="magenta", weight=3]; 2362 -> 2541[label="",style="dashed", color="magenta", weight=3]; 2363 -> 1890[label="",style="dashed", color="red", weight=0]; 2363[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2363 -> 2542[label="",style="dashed", color="magenta", weight=3]; 2363 -> 2543[label="",style="dashed", color="magenta", weight=3]; 2364 -> 1891[label="",style="dashed", color="red", weight=0]; 2364[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2364 -> 2544[label="",style="dashed", color="magenta", weight=3]; 2364 -> 2545[label="",style="dashed", color="magenta", weight=3]; 2365 -> 1892[label="",style="dashed", color="red", weight=0]; 2365[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2365 -> 2546[label="",style="dashed", color="magenta", weight=3]; 2365 -> 2547[label="",style="dashed", color="magenta", weight=3]; 2366 -> 1893[label="",style="dashed", color="red", weight=0]; 2366[label="vyw400 == vyw3000",fontsize=16,color="magenta"];2366 -> 2548[label="",style="dashed", color="magenta", weight=3]; 2366 -> 2549[label="",style="dashed", color="magenta", weight=3]; 2368[label="vyw4400",fontsize=16,color="green",shape="box"];2369[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];3969[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3969[label="",style="solid", color="blue", weight=9]; 3969 -> 2550[label="",style="solid", color="blue", weight=3]; 3970[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3970[label="",style="solid", color="blue", weight=9]; 3970 -> 2551[label="",style="solid", color="blue", weight=3]; 3971[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3971[label="",style="solid", color="blue", weight=9]; 3971 -> 2552[label="",style="solid", color="blue", weight=3]; 3972[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3972[label="",style="solid", color="blue", weight=9]; 3972 -> 2553[label="",style="solid", color="blue", weight=3]; 3973[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3973[label="",style="solid", color="blue", weight=9]; 3973 -> 2554[label="",style="solid", color="blue", weight=3]; 3974[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3974[label="",style="solid", color="blue", weight=9]; 3974 -> 2555[label="",style="solid", color="blue", weight=3]; 3975[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3975[label="",style="solid", color="blue", weight=9]; 3975 -> 2556[label="",style="solid", color="blue", weight=3]; 3976[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3976[label="",style="solid", color="blue", weight=9]; 3976 -> 2557[label="",style="solid", color="blue", weight=3]; 3977[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3977[label="",style="solid", color="blue", weight=9]; 3977 -> 2558[label="",style="solid", color="blue", weight=3]; 3978[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3978[label="",style="solid", color="blue", weight=9]; 3978 -> 2559[label="",style="solid", color="blue", weight=3]; 3979[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3979[label="",style="solid", color="blue", weight=9]; 3979 -> 2560[label="",style="solid", color="blue", weight=3]; 3980[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3980[label="",style="solid", color="blue", weight=9]; 3980 -> 2561[label="",style="solid", color="blue", weight=3]; 3981[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3981[label="",style="solid", color="blue", weight=9]; 3981 -> 2562[label="",style="solid", color="blue", weight=3]; 3982[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2369 -> 3982[label="",style="solid", color="blue", weight=9]; 3982 -> 2563[label="",style="solid", color="blue", weight=3]; 2370[label="vyw4300",fontsize=16,color="green",shape="box"];2367[label="compare1 (Left vyw123) (Left vyw124) vyw125",fontsize=16,color="burlywood",shape="triangle"];3983[label="vyw125/False",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3983[label="",style="solid", color="burlywood", weight=9]; 3983 -> 2564[label="",style="solid", color="burlywood", weight=3]; 3984[label="vyw125/True",fontsize=10,color="white",style="solid",shape="box"];2367 -> 3984[label="",style="solid", color="burlywood", weight=9]; 3984 -> 2565[label="",style="solid", color="burlywood", weight=3]; 2371[label="LT",fontsize=16,color="green",shape="box"];2372[label="compare0 (Right vyw4300) (Left vyw4400) otherwise",fontsize=16,color="black",shape="box"];2372 -> 2566[label="",style="solid", color="black", weight=3]; 2374[label="vyw4300 <= vyw4400",fontsize=16,color="blue",shape="box"];3985[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3985[label="",style="solid", color="blue", weight=9]; 3985 -> 2567[label="",style="solid", color="blue", weight=3]; 3986[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3986[label="",style="solid", color="blue", weight=9]; 3986 -> 2568[label="",style="solid", color="blue", weight=3]; 3987[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3987[label="",style="solid", color="blue", weight=9]; 3987 -> 2569[label="",style="solid", color="blue", weight=3]; 3988[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3988[label="",style="solid", color="blue", weight=9]; 3988 -> 2570[label="",style="solid", color="blue", weight=3]; 3989[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3989[label="",style="solid", color="blue", weight=9]; 3989 -> 2571[label="",style="solid", color="blue", weight=3]; 3990[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3990[label="",style="solid", color="blue", weight=9]; 3990 -> 2572[label="",style="solid", color="blue", weight=3]; 3991[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3991[label="",style="solid", color="blue", weight=9]; 3991 -> 2573[label="",style="solid", color="blue", weight=3]; 3992[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3992[label="",style="solid", color="blue", weight=9]; 3992 -> 2574[label="",style="solid", color="blue", weight=3]; 3993[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3993[label="",style="solid", color="blue", weight=9]; 3993 -> 2575[label="",style="solid", color="blue", weight=3]; 3994[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3994[label="",style="solid", color="blue", weight=9]; 3994 -> 2576[label="",style="solid", color="blue", weight=3]; 3995[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3995[label="",style="solid", color="blue", weight=9]; 3995 -> 2577[label="",style="solid", color="blue", weight=3]; 3996[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3996[label="",style="solid", color="blue", weight=9]; 3996 -> 2578[label="",style="solid", color="blue", weight=3]; 3997[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3997[label="",style="solid", color="blue", weight=9]; 3997 -> 2579[label="",style="solid", color="blue", weight=3]; 3998[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2374 -> 3998[label="",style="solid", color="blue", weight=9]; 3998 -> 2580[label="",style="solid", color="blue", weight=3]; 2375[label="vyw4400",fontsize=16,color="green",shape="box"];2376[label="vyw4300",fontsize=16,color="green",shape="box"];2373[label="compare1 (Right vyw130) (Right vyw131) vyw132",fontsize=16,color="burlywood",shape="triangle"];3999[label="vyw132/False",fontsize=10,color="white",style="solid",shape="box"];2373 -> 3999[label="",style="solid", color="burlywood", weight=9]; 3999 -> 2581[label="",style="solid", color="burlywood", weight=3]; 4000[label="vyw132/True",fontsize=10,color="white",style="solid",shape="box"];2373 -> 4000[label="",style="solid", color="burlywood", weight=9]; 4000 -> 2582[label="",style="solid", color="burlywood", weight=3]; 1867[label="Left vyw18",fontsize=16,color="green",shape="box"];1868[label="Left vyw18 == Left vyw13",fontsize=16,color="black",shape="box"];1868 -> 1910[label="",style="solid", color="black", weight=3]; 1869[label="Left vyw13",fontsize=16,color="green",shape="box"];1870[label="Left vyw40",fontsize=16,color="green",shape="box"];1871[label="Left vyw40 == Right vyw300",fontsize=16,color="black",shape="box"];1871 -> 1911[label="",style="solid", color="black", weight=3]; 1872[label="Right vyw300",fontsize=16,color="green",shape="box"];1873[label="Right vyw40",fontsize=16,color="green",shape="box"];1874[label="Right vyw40 == Left vyw300",fontsize=16,color="black",shape="box"];1874 -> 1912[label="",style="solid", color="black", weight=3]; 1875[label="Left vyw300",fontsize=16,color="green",shape="box"];1876[label="Right vyw33",fontsize=16,color="green",shape="box"];1877[label="Right vyw33 == Right vyw28",fontsize=16,color="black",shape="box"];1877 -> 1913[label="",style="solid", color="black", weight=3]; 1878[label="Right vyw28",fontsize=16,color="green",shape="box"];2377[label="primEqNat (Succ vyw4000) (Succ vyw30000)",fontsize=16,color="black",shape="box"];2377 -> 2583[label="",style="solid", color="black", weight=3]; 2378[label="primEqNat (Succ vyw4000) Zero",fontsize=16,color="black",shape="box"];2378 -> 2584[label="",style="solid", color="black", weight=3]; 2379[label="primEqNat Zero (Succ vyw30000)",fontsize=16,color="black",shape="box"];2379 -> 2585[label="",style="solid", color="black", weight=3]; 2380[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];2380 -> 2586[label="",style="solid", color="black", weight=3]; 2381 -> 1880[label="",style="dashed", color="red", weight=0]; 2381[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2381 -> 2587[label="",style="dashed", color="magenta", weight=3]; 2381 -> 2588[label="",style="dashed", color="magenta", weight=3]; 2382 -> 1881[label="",style="dashed", color="red", weight=0]; 2382[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2382 -> 2589[label="",style="dashed", color="magenta", weight=3]; 2382 -> 2590[label="",style="dashed", color="magenta", weight=3]; 2383 -> 44[label="",style="dashed", color="red", weight=0]; 2383[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2383 -> 2591[label="",style="dashed", color="magenta", weight=3]; 2383 -> 2592[label="",style="dashed", color="magenta", weight=3]; 2384 -> 1883[label="",style="dashed", color="red", weight=0]; 2384[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2384 -> 2593[label="",style="dashed", color="magenta", weight=3]; 2384 -> 2594[label="",style="dashed", color="magenta", weight=3]; 2385 -> 1884[label="",style="dashed", color="red", weight=0]; 2385[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2385 -> 2595[label="",style="dashed", color="magenta", weight=3]; 2385 -> 2596[label="",style="dashed", color="magenta", weight=3]; 2386 -> 1885[label="",style="dashed", color="red", weight=0]; 2386[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2386 -> 2597[label="",style="dashed", color="magenta", weight=3]; 2386 -> 2598[label="",style="dashed", color="magenta", weight=3]; 2387 -> 1886[label="",style="dashed", color="red", weight=0]; 2387[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2387 -> 2599[label="",style="dashed", color="magenta", weight=3]; 2387 -> 2600[label="",style="dashed", color="magenta", weight=3]; 2388 -> 1887[label="",style="dashed", color="red", weight=0]; 2388[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2388 -> 2601[label="",style="dashed", color="magenta", weight=3]; 2388 -> 2602[label="",style="dashed", color="magenta", weight=3]; 2389 -> 1888[label="",style="dashed", color="red", weight=0]; 2389[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2389 -> 2603[label="",style="dashed", color="magenta", weight=3]; 2389 -> 2604[label="",style="dashed", color="magenta", weight=3]; 2390 -> 1889[label="",style="dashed", color="red", weight=0]; 2390[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2390 -> 2605[label="",style="dashed", color="magenta", weight=3]; 2390 -> 2606[label="",style="dashed", color="magenta", weight=3]; 2391 -> 1890[label="",style="dashed", color="red", weight=0]; 2391[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2391 -> 2607[label="",style="dashed", color="magenta", weight=3]; 2391 -> 2608[label="",style="dashed", color="magenta", weight=3]; 2392 -> 1891[label="",style="dashed", color="red", weight=0]; 2392[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2392 -> 2609[label="",style="dashed", color="magenta", weight=3]; 2392 -> 2610[label="",style="dashed", color="magenta", weight=3]; 2393 -> 1892[label="",style="dashed", color="red", weight=0]; 2393[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2393 -> 2611[label="",style="dashed", color="magenta", weight=3]; 2393 -> 2612[label="",style="dashed", color="magenta", weight=3]; 2394 -> 1893[label="",style="dashed", color="red", weight=0]; 2394[label="vyw402 == vyw3002",fontsize=16,color="magenta"];2394 -> 2613[label="",style="dashed", color="magenta", weight=3]; 2394 -> 2614[label="",style="dashed", color="magenta", weight=3]; 2395 -> 1880[label="",style="dashed", color="red", weight=0]; 2395[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2395 -> 2615[label="",style="dashed", color="magenta", weight=3]; 2395 -> 2616[label="",style="dashed", color="magenta", weight=3]; 2396 -> 1881[label="",style="dashed", color="red", weight=0]; 2396[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2396 -> 2617[label="",style="dashed", color="magenta", weight=3]; 2396 -> 2618[label="",style="dashed", color="magenta", weight=3]; 2397 -> 44[label="",style="dashed", color="red", weight=0]; 2397[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2397 -> 2619[label="",style="dashed", color="magenta", weight=3]; 2397 -> 2620[label="",style="dashed", color="magenta", weight=3]; 2398 -> 1883[label="",style="dashed", color="red", weight=0]; 2398[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2398 -> 2621[label="",style="dashed", color="magenta", weight=3]; 2398 -> 2622[label="",style="dashed", color="magenta", weight=3]; 2399 -> 1884[label="",style="dashed", color="red", weight=0]; 2399[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2399 -> 2623[label="",style="dashed", color="magenta", weight=3]; 2399 -> 2624[label="",style="dashed", color="magenta", weight=3]; 2400 -> 1885[label="",style="dashed", color="red", weight=0]; 2400[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2400 -> 2625[label="",style="dashed", color="magenta", weight=3]; 2400 -> 2626[label="",style="dashed", color="magenta", weight=3]; 2401 -> 1886[label="",style="dashed", color="red", weight=0]; 2401[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2401 -> 2627[label="",style="dashed", color="magenta", weight=3]; 2401 -> 2628[label="",style="dashed", color="magenta", weight=3]; 2402 -> 1887[label="",style="dashed", color="red", weight=0]; 2402[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2402 -> 2629[label="",style="dashed", color="magenta", weight=3]; 2402 -> 2630[label="",style="dashed", color="magenta", weight=3]; 2403 -> 1888[label="",style="dashed", color="red", weight=0]; 2403[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2403 -> 2631[label="",style="dashed", color="magenta", weight=3]; 2403 -> 2632[label="",style="dashed", color="magenta", weight=3]; 2404 -> 1889[label="",style="dashed", color="red", weight=0]; 2404[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2404 -> 2633[label="",style="dashed", color="magenta", weight=3]; 2404 -> 2634[label="",style="dashed", color="magenta", weight=3]; 2405 -> 1890[label="",style="dashed", color="red", weight=0]; 2405[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2405 -> 2635[label="",style="dashed", color="magenta", weight=3]; 2405 -> 2636[label="",style="dashed", color="magenta", weight=3]; 2406 -> 1891[label="",style="dashed", color="red", weight=0]; 2406[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2406 -> 2637[label="",style="dashed", color="magenta", weight=3]; 2406 -> 2638[label="",style="dashed", color="magenta", weight=3]; 2407 -> 1892[label="",style="dashed", color="red", weight=0]; 2407[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2407 -> 2639[label="",style="dashed", color="magenta", weight=3]; 2407 -> 2640[label="",style="dashed", color="magenta", weight=3]; 2408 -> 1893[label="",style="dashed", color="red", weight=0]; 2408[label="vyw401 == vyw3001",fontsize=16,color="magenta"];2408 -> 2641[label="",style="dashed", color="magenta", weight=3]; 2408 -> 2642[label="",style="dashed", color="magenta", weight=3]; 2409[label="vyw3000",fontsize=16,color="green",shape="box"];2410[label="vyw400",fontsize=16,color="green",shape="box"];2411[label="vyw3000",fontsize=16,color="green",shape="box"];2412[label="vyw400",fontsize=16,color="green",shape="box"];2413[label="vyw3000",fontsize=16,color="green",shape="box"];2414[label="vyw400",fontsize=16,color="green",shape="box"];2415[label="vyw3000",fontsize=16,color="green",shape="box"];2416[label="vyw400",fontsize=16,color="green",shape="box"];2417[label="vyw3000",fontsize=16,color="green",shape="box"];2418[label="vyw400",fontsize=16,color="green",shape="box"];2419[label="vyw3000",fontsize=16,color="green",shape="box"];2420[label="vyw400",fontsize=16,color="green",shape="box"];2421[label="vyw3000",fontsize=16,color="green",shape="box"];2422[label="vyw400",fontsize=16,color="green",shape="box"];2423[label="vyw3000",fontsize=16,color="green",shape="box"];2424[label="vyw400",fontsize=16,color="green",shape="box"];2425[label="vyw3000",fontsize=16,color="green",shape="box"];2426[label="vyw400",fontsize=16,color="green",shape="box"];2427[label="vyw3000",fontsize=16,color="green",shape="box"];2428[label="vyw400",fontsize=16,color="green",shape="box"];2429[label="vyw3000",fontsize=16,color="green",shape="box"];2430[label="vyw400",fontsize=16,color="green",shape="box"];2431[label="vyw3000",fontsize=16,color="green",shape="box"];2432[label="vyw400",fontsize=16,color="green",shape="box"];2433[label="vyw3000",fontsize=16,color="green",shape="box"];2434[label="vyw400",fontsize=16,color="green",shape="box"];2435[label="vyw3000",fontsize=16,color="green",shape="box"];2436[label="vyw400",fontsize=16,color="green",shape="box"];2437[label="False",fontsize=16,color="green",shape="box"];2438[label="vyw118",fontsize=16,color="green",shape="box"];2439[label="vyw3000",fontsize=16,color="green",shape="box"];2440[label="vyw400",fontsize=16,color="green",shape="box"];2441[label="vyw3000",fontsize=16,color="green",shape="box"];2442[label="vyw400",fontsize=16,color="green",shape="box"];2443[label="vyw3000",fontsize=16,color="green",shape="box"];2444[label="vyw400",fontsize=16,color="green",shape="box"];2445[label="vyw3000",fontsize=16,color="green",shape="box"];2446[label="vyw400",fontsize=16,color="green",shape="box"];2447[label="vyw3000",fontsize=16,color="green",shape="box"];2448[label="vyw400",fontsize=16,color="green",shape="box"];2449[label="vyw3000",fontsize=16,color="green",shape="box"];2450[label="vyw400",fontsize=16,color="green",shape="box"];2451[label="vyw3000",fontsize=16,color="green",shape="box"];2452[label="vyw400",fontsize=16,color="green",shape="box"];2453[label="vyw3000",fontsize=16,color="green",shape="box"];2454[label="vyw400",fontsize=16,color="green",shape="box"];2455[label="vyw3000",fontsize=16,color="green",shape="box"];2456[label="vyw400",fontsize=16,color="green",shape="box"];2457[label="vyw3000",fontsize=16,color="green",shape="box"];2458[label="vyw400",fontsize=16,color="green",shape="box"];2459[label="vyw3000",fontsize=16,color="green",shape="box"];2460[label="vyw400",fontsize=16,color="green",shape="box"];2461[label="vyw3000",fontsize=16,color="green",shape="box"];2462[label="vyw400",fontsize=16,color="green",shape="box"];2463[label="vyw3000",fontsize=16,color="green",shape="box"];2464[label="vyw400",fontsize=16,color="green",shape="box"];2465[label="vyw3000",fontsize=16,color="green",shape="box"];2466[label="vyw400",fontsize=16,color="green",shape="box"];2467[label="primMulInt vyw401 vyw3000",fontsize=16,color="burlywood",shape="triangle"];4001[label="vyw401/Pos vyw4010",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4001[label="",style="solid", color="burlywood", weight=9]; 4001 -> 2643[label="",style="solid", color="burlywood", weight=3]; 4002[label="vyw401/Neg vyw4010",fontsize=10,color="white",style="solid",shape="box"];2467 -> 4002[label="",style="solid", color="burlywood", weight=9]; 4002 -> 2644[label="",style="solid", color="burlywood", weight=3]; 2468[label="vyw3001",fontsize=16,color="green",shape="box"];2469[label="vyw400",fontsize=16,color="green",shape="box"];2470[label="vyw3001",fontsize=16,color="green",shape="box"];2471[label="vyw401",fontsize=16,color="green",shape="box"];2472[label="vyw3001",fontsize=16,color="green",shape="box"];2473[label="vyw401",fontsize=16,color="green",shape="box"];2474[label="vyw3000",fontsize=16,color="green",shape="box"];2475[label="vyw400",fontsize=16,color="green",shape="box"];2476[label="vyw3000",fontsize=16,color="green",shape="box"];2477[label="vyw400",fontsize=16,color="green",shape="box"];2478[label="vyw3000",fontsize=16,color="green",shape="box"];2479[label="vyw401",fontsize=16,color="green",shape="box"];2480[label="vyw3001",fontsize=16,color="green",shape="box"];2481[label="vyw400",fontsize=16,color="green",shape="box"];2482 -> 2107[label="",style="dashed", color="red", weight=0]; 2482[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2482 -> 2645[label="",style="dashed", color="magenta", weight=3]; 2482 -> 2646[label="",style="dashed", color="magenta", weight=3]; 2483[label="False",fontsize=16,color="green",shape="box"];2484[label="False",fontsize=16,color="green",shape="box"];2485[label="True",fontsize=16,color="green",shape="box"];2486[label="False",fontsize=16,color="green",shape="box"];2487[label="True",fontsize=16,color="green",shape="box"];2488 -> 2107[label="",style="dashed", color="red", weight=0]; 2488[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2488 -> 2647[label="",style="dashed", color="magenta", weight=3]; 2488 -> 2648[label="",style="dashed", color="magenta", weight=3]; 2489[label="False",fontsize=16,color="green",shape="box"];2490[label="False",fontsize=16,color="green",shape="box"];2491[label="True",fontsize=16,color="green",shape="box"];2492[label="False",fontsize=16,color="green",shape="box"];2493[label="True",fontsize=16,color="green",shape="box"];2494[label="vyw3001",fontsize=16,color="green",shape="box"];2495[label="vyw401",fontsize=16,color="green",shape="box"];2496[label="vyw3001",fontsize=16,color="green",shape="box"];2497[label="vyw401",fontsize=16,color="green",shape="box"];2498[label="vyw3001",fontsize=16,color="green",shape="box"];2499[label="vyw401",fontsize=16,color="green",shape="box"];2500[label="vyw3001",fontsize=16,color="green",shape="box"];2501[label="vyw401",fontsize=16,color="green",shape="box"];2502[label="vyw3001",fontsize=16,color="green",shape="box"];2503[label="vyw401",fontsize=16,color="green",shape="box"];2504[label="vyw3001",fontsize=16,color="green",shape="box"];2505[label="vyw401",fontsize=16,color="green",shape="box"];2506[label="vyw3001",fontsize=16,color="green",shape="box"];2507[label="vyw401",fontsize=16,color="green",shape="box"];2508[label="vyw3001",fontsize=16,color="green",shape="box"];2509[label="vyw401",fontsize=16,color="green",shape="box"];2510[label="vyw3001",fontsize=16,color="green",shape="box"];2511[label="vyw401",fontsize=16,color="green",shape="box"];2512[label="vyw3001",fontsize=16,color="green",shape="box"];2513[label="vyw401",fontsize=16,color="green",shape="box"];2514[label="vyw3001",fontsize=16,color="green",shape="box"];2515[label="vyw401",fontsize=16,color="green",shape="box"];2516[label="vyw3001",fontsize=16,color="green",shape="box"];2517[label="vyw401",fontsize=16,color="green",shape="box"];2518[label="vyw3001",fontsize=16,color="green",shape="box"];2519[label="vyw401",fontsize=16,color="green",shape="box"];2520[label="vyw3001",fontsize=16,color="green",shape="box"];2521[label="vyw401",fontsize=16,color="green",shape="box"];2522[label="vyw3000",fontsize=16,color="green",shape="box"];2523[label="vyw400",fontsize=16,color="green",shape="box"];2524[label="vyw3000",fontsize=16,color="green",shape="box"];2525[label="vyw400",fontsize=16,color="green",shape="box"];2526[label="vyw3000",fontsize=16,color="green",shape="box"];2527[label="vyw400",fontsize=16,color="green",shape="box"];2528[label="vyw3000",fontsize=16,color="green",shape="box"];2529[label="vyw400",fontsize=16,color="green",shape="box"];2530[label="vyw3000",fontsize=16,color="green",shape="box"];2531[label="vyw400",fontsize=16,color="green",shape="box"];2532[label="vyw3000",fontsize=16,color="green",shape="box"];2533[label="vyw400",fontsize=16,color="green",shape="box"];2534[label="vyw3000",fontsize=16,color="green",shape="box"];2535[label="vyw400",fontsize=16,color="green",shape="box"];2536[label="vyw3000",fontsize=16,color="green",shape="box"];2537[label="vyw400",fontsize=16,color="green",shape="box"];2538[label="vyw3000",fontsize=16,color="green",shape="box"];2539[label="vyw400",fontsize=16,color="green",shape="box"];2540[label="vyw3000",fontsize=16,color="green",shape="box"];2541[label="vyw400",fontsize=16,color="green",shape="box"];2542[label="vyw3000",fontsize=16,color="green",shape="box"];2543[label="vyw400",fontsize=16,color="green",shape="box"];2544[label="vyw3000",fontsize=16,color="green",shape="box"];2545[label="vyw400",fontsize=16,color="green",shape="box"];2546[label="vyw3000",fontsize=16,color="green",shape="box"];2547[label="vyw400",fontsize=16,color="green",shape="box"];2548[label="vyw3000",fontsize=16,color="green",shape="box"];2549[label="vyw400",fontsize=16,color="green",shape="box"];2550[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2550 -> 2649[label="",style="solid", color="black", weight=3]; 2551[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4003[label="vyw4300/Left vyw43000",fontsize=10,color="white",style="solid",shape="box"];2551 -> 4003[label="",style="solid", color="burlywood", weight=9]; 4003 -> 2650[label="",style="solid", color="burlywood", weight=3]; 4004[label="vyw4300/Right vyw43000",fontsize=10,color="white",style="solid",shape="box"];2551 -> 4004[label="",style="solid", color="burlywood", weight=9]; 4004 -> 2651[label="",style="solid", color="burlywood", weight=3]; 2552[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4005[label="vyw4300/LT",fontsize=10,color="white",style="solid",shape="box"];2552 -> 4005[label="",style="solid", color="burlywood", weight=9]; 4005 -> 2652[label="",style="solid", color="burlywood", weight=3]; 4006[label="vyw4300/EQ",fontsize=10,color="white",style="solid",shape="box"];2552 -> 4006[label="",style="solid", color="burlywood", weight=9]; 4006 -> 2653[label="",style="solid", color="burlywood", weight=3]; 4007[label="vyw4300/GT",fontsize=10,color="white",style="solid",shape="box"];2552 -> 4007[label="",style="solid", color="burlywood", weight=9]; 4007 -> 2654[label="",style="solid", color="burlywood", weight=3]; 2553[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2553 -> 2655[label="",style="solid", color="black", weight=3]; 2554[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4008[label="vyw4300/(vyw43000,vyw43001)",fontsize=10,color="white",style="solid",shape="box"];2554 -> 4008[label="",style="solid", color="burlywood", weight=9]; 4008 -> 2656[label="",style="solid", color="burlywood", weight=3]; 2555[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4009[label="vyw4300/False",fontsize=10,color="white",style="solid",shape="box"];2555 -> 4009[label="",style="solid", color="burlywood", weight=9]; 4009 -> 2657[label="",style="solid", color="burlywood", weight=3]; 4010[label="vyw4300/True",fontsize=10,color="white",style="solid",shape="box"];2555 -> 4010[label="",style="solid", color="burlywood", weight=9]; 4010 -> 2658[label="",style="solid", color="burlywood", weight=3]; 2556[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4011[label="vyw4300/(vyw43000,vyw43001,vyw43002)",fontsize=10,color="white",style="solid",shape="box"];2556 -> 4011[label="",style="solid", color="burlywood", weight=9]; 4011 -> 2659[label="",style="solid", color="burlywood", weight=3]; 2557[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2557 -> 2660[label="",style="solid", color="black", weight=3]; 2558[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2558 -> 2661[label="",style="solid", color="black", weight=3]; 2559[label="vyw4300 <= vyw4400",fontsize=16,color="burlywood",shape="triangle"];4012[label="vyw4300/Nothing",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4012[label="",style="solid", color="burlywood", weight=9]; 4012 -> 2662[label="",style="solid", color="burlywood", weight=3]; 4013[label="vyw4300/Just vyw43000",fontsize=10,color="white",style="solid",shape="box"];2559 -> 4013[label="",style="solid", color="burlywood", weight=9]; 4013 -> 2663[label="",style="solid", color="burlywood", weight=3]; 2560[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2560 -> 2664[label="",style="solid", color="black", weight=3]; 2561[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2561 -> 2665[label="",style="solid", color="black", weight=3]; 2562[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2562 -> 2666[label="",style="solid", color="black", weight=3]; 2563[label="vyw4300 <= vyw4400",fontsize=16,color="black",shape="triangle"];2563 -> 2667[label="",style="solid", color="black", weight=3]; 2564[label="compare1 (Left vyw123) (Left vyw124) False",fontsize=16,color="black",shape="box"];2564 -> 2668[label="",style="solid", color="black", weight=3]; 2565[label="compare1 (Left vyw123) (Left vyw124) True",fontsize=16,color="black",shape="box"];2565 -> 2669[label="",style="solid", color="black", weight=3]; 2566[label="compare0 (Right vyw4300) (Left vyw4400) True",fontsize=16,color="black",shape="box"];2566 -> 2670[label="",style="solid", color="black", weight=3]; 2567 -> 2550[label="",style="dashed", color="red", weight=0]; 2567[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2567 -> 2671[label="",style="dashed", color="magenta", weight=3]; 2567 -> 2672[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2551[label="",style="dashed", color="red", weight=0]; 2568[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2568 -> 2673[label="",style="dashed", color="magenta", weight=3]; 2568 -> 2674[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2552[label="",style="dashed", color="red", weight=0]; 2569[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2569 -> 2675[label="",style="dashed", color="magenta", weight=3]; 2569 -> 2676[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2553[label="",style="dashed", color="red", weight=0]; 2570[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2570 -> 2677[label="",style="dashed", color="magenta", weight=3]; 2570 -> 2678[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2554[label="",style="dashed", color="red", weight=0]; 2571[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2571 -> 2679[label="",style="dashed", color="magenta", weight=3]; 2571 -> 2680[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2555[label="",style="dashed", color="red", weight=0]; 2572[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2572 -> 2681[label="",style="dashed", color="magenta", weight=3]; 2572 -> 2682[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2556[label="",style="dashed", color="red", weight=0]; 2573[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2573 -> 2683[label="",style="dashed", color="magenta", weight=3]; 2573 -> 2684[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2557[label="",style="dashed", color="red", weight=0]; 2574[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2574 -> 2685[label="",style="dashed", color="magenta", weight=3]; 2574 -> 2686[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2558[label="",style="dashed", color="red", weight=0]; 2575[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2575 -> 2687[label="",style="dashed", color="magenta", weight=3]; 2575 -> 2688[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2559[label="",style="dashed", color="red", weight=0]; 2576[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2576 -> 2689[label="",style="dashed", color="magenta", weight=3]; 2576 -> 2690[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2560[label="",style="dashed", color="red", weight=0]; 2577[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2577 -> 2691[label="",style="dashed", color="magenta", weight=3]; 2577 -> 2692[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2561[label="",style="dashed", color="red", weight=0]; 2578[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2578 -> 2693[label="",style="dashed", color="magenta", weight=3]; 2578 -> 2694[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2562[label="",style="dashed", color="red", weight=0]; 2579[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2579 -> 2695[label="",style="dashed", color="magenta", weight=3]; 2579 -> 2696[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2563[label="",style="dashed", color="red", weight=0]; 2580[label="vyw4300 <= vyw4400",fontsize=16,color="magenta"];2580 -> 2697[label="",style="dashed", color="magenta", weight=3]; 2580 -> 2698[label="",style="dashed", color="magenta", weight=3]; 2581[label="compare1 (Right vyw130) (Right vyw131) False",fontsize=16,color="black",shape="box"];2581 -> 2699[label="",style="solid", color="black", weight=3]; 2582[label="compare1 (Right vyw130) (Right vyw131) True",fontsize=16,color="black",shape="box"];2582 -> 2700[label="",style="solid", color="black", weight=3]; 1910[label="vyw18 == vyw13",fontsize=16,color="blue",shape="box"];4014[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4014[label="",style="solid", color="blue", weight=9]; 4014 -> 1961[label="",style="solid", color="blue", weight=3]; 4015[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4015[label="",style="solid", color="blue", weight=9]; 4015 -> 1962[label="",style="solid", color="blue", weight=3]; 4016[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4016[label="",style="solid", color="blue", weight=9]; 4016 -> 1963[label="",style="solid", color="blue", weight=3]; 4017[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4017[label="",style="solid", color="blue", weight=9]; 4017 -> 1964[label="",style="solid", color="blue", weight=3]; 4018[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4018[label="",style="solid", color="blue", weight=9]; 4018 -> 1965[label="",style="solid", color="blue", weight=3]; 4019[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4019[label="",style="solid", color="blue", weight=9]; 4019 -> 1966[label="",style="solid", color="blue", weight=3]; 4020[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4020[label="",style="solid", color="blue", weight=9]; 4020 -> 1967[label="",style="solid", color="blue", weight=3]; 4021[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4021[label="",style="solid", color="blue", weight=9]; 4021 -> 1968[label="",style="solid", color="blue", weight=3]; 4022[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4022[label="",style="solid", color="blue", weight=9]; 4022 -> 1969[label="",style="solid", color="blue", weight=3]; 4023[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4023[label="",style="solid", color="blue", weight=9]; 4023 -> 1970[label="",style="solid", color="blue", weight=3]; 4024[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4024[label="",style="solid", color="blue", weight=9]; 4024 -> 1971[label="",style="solid", color="blue", weight=3]; 4025[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4025[label="",style="solid", color="blue", weight=9]; 4025 -> 1972[label="",style="solid", color="blue", weight=3]; 4026[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4026[label="",style="solid", color="blue", weight=9]; 4026 -> 1973[label="",style="solid", color="blue", weight=3]; 4027[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1910 -> 4027[label="",style="solid", color="blue", weight=9]; 4027 -> 1974[label="",style="solid", color="blue", weight=3]; 1911[label="False",fontsize=16,color="green",shape="box"];1912[label="False",fontsize=16,color="green",shape="box"];1913[label="vyw33 == vyw28",fontsize=16,color="blue",shape="box"];4028[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4028[label="",style="solid", color="blue", weight=9]; 4028 -> 1975[label="",style="solid", color="blue", weight=3]; 4029[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4029[label="",style="solid", color="blue", weight=9]; 4029 -> 1976[label="",style="solid", color="blue", weight=3]; 4030[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4030[label="",style="solid", color="blue", weight=9]; 4030 -> 1977[label="",style="solid", color="blue", weight=3]; 4031[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4031[label="",style="solid", color="blue", weight=9]; 4031 -> 1978[label="",style="solid", color="blue", weight=3]; 4032[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4032[label="",style="solid", color="blue", weight=9]; 4032 -> 1979[label="",style="solid", color="blue", weight=3]; 4033[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4033[label="",style="solid", color="blue", weight=9]; 4033 -> 1980[label="",style="solid", color="blue", weight=3]; 4034[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4034[label="",style="solid", color="blue", weight=9]; 4034 -> 1981[label="",style="solid", color="blue", weight=3]; 4035[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4035[label="",style="solid", color="blue", weight=9]; 4035 -> 1982[label="",style="solid", color="blue", weight=3]; 4036[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4036[label="",style="solid", color="blue", weight=9]; 4036 -> 1983[label="",style="solid", color="blue", weight=3]; 4037[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4037[label="",style="solid", color="blue", weight=9]; 4037 -> 1984[label="",style="solid", color="blue", weight=3]; 4038[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4038[label="",style="solid", color="blue", weight=9]; 4038 -> 1985[label="",style="solid", color="blue", weight=3]; 4039[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4039[label="",style="solid", color="blue", weight=9]; 4039 -> 1986[label="",style="solid", color="blue", weight=3]; 4040[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4040[label="",style="solid", color="blue", weight=9]; 4040 -> 1987[label="",style="solid", color="blue", weight=3]; 4041[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1913 -> 4041[label="",style="solid", color="blue", weight=9]; 4041 -> 1988[label="",style="solid", color="blue", weight=3]; 2583 -> 2107[label="",style="dashed", color="red", weight=0]; 2583[label="primEqNat vyw4000 vyw30000",fontsize=16,color="magenta"];2583 -> 2701[label="",style="dashed", color="magenta", weight=3]; 2583 -> 2702[label="",style="dashed", color="magenta", weight=3]; 2584[label="False",fontsize=16,color="green",shape="box"];2585[label="False",fontsize=16,color="green",shape="box"];2586[label="True",fontsize=16,color="green",shape="box"];2587[label="vyw3002",fontsize=16,color="green",shape="box"];2588[label="vyw402",fontsize=16,color="green",shape="box"];2589[label="vyw3002",fontsize=16,color="green",shape="box"];2590[label="vyw402",fontsize=16,color="green",shape="box"];2591[label="vyw3002",fontsize=16,color="green",shape="box"];2592[label="vyw402",fontsize=16,color="green",shape="box"];2593[label="vyw3002",fontsize=16,color="green",shape="box"];2594[label="vyw402",fontsize=16,color="green",shape="box"];2595[label="vyw3002",fontsize=16,color="green",shape="box"];2596[label="vyw402",fontsize=16,color="green",shape="box"];2597[label="vyw3002",fontsize=16,color="green",shape="box"];2598[label="vyw402",fontsize=16,color="green",shape="box"];2599[label="vyw3002",fontsize=16,color="green",shape="box"];2600[label="vyw402",fontsize=16,color="green",shape="box"];2601[label="vyw3002",fontsize=16,color="green",shape="box"];2602[label="vyw402",fontsize=16,color="green",shape="box"];2603[label="vyw3002",fontsize=16,color="green",shape="box"];2604[label="vyw402",fontsize=16,color="green",shape="box"];2605[label="vyw3002",fontsize=16,color="green",shape="box"];2606[label="vyw402",fontsize=16,color="green",shape="box"];2607[label="vyw3002",fontsize=16,color="green",shape="box"];2608[label="vyw402",fontsize=16,color="green",shape="box"];2609[label="vyw3002",fontsize=16,color="green",shape="box"];2610[label="vyw402",fontsize=16,color="green",shape="box"];2611[label="vyw3002",fontsize=16,color="green",shape="box"];2612[label="vyw402",fontsize=16,color="green",shape="box"];2613[label="vyw3002",fontsize=16,color="green",shape="box"];2614[label="vyw402",fontsize=16,color="green",shape="box"];2615[label="vyw3001",fontsize=16,color="green",shape="box"];2616[label="vyw401",fontsize=16,color="green",shape="box"];2617[label="vyw3001",fontsize=16,color="green",shape="box"];2618[label="vyw401",fontsize=16,color="green",shape="box"];2619[label="vyw3001",fontsize=16,color="green",shape="box"];2620[label="vyw401",fontsize=16,color="green",shape="box"];2621[label="vyw3001",fontsize=16,color="green",shape="box"];2622[label="vyw401",fontsize=16,color="green",shape="box"];2623[label="vyw3001",fontsize=16,color="green",shape="box"];2624[label="vyw401",fontsize=16,color="green",shape="box"];2625[label="vyw3001",fontsize=16,color="green",shape="box"];2626[label="vyw401",fontsize=16,color="green",shape="box"];2627[label="vyw3001",fontsize=16,color="green",shape="box"];2628[label="vyw401",fontsize=16,color="green",shape="box"];2629[label="vyw3001",fontsize=16,color="green",shape="box"];2630[label="vyw401",fontsize=16,color="green",shape="box"];2631[label="vyw3001",fontsize=16,color="green",shape="box"];2632[label="vyw401",fontsize=16,color="green",shape="box"];2633[label="vyw3001",fontsize=16,color="green",shape="box"];2634[label="vyw401",fontsize=16,color="green",shape="box"];2635[label="vyw3001",fontsize=16,color="green",shape="box"];2636[label="vyw401",fontsize=16,color="green",shape="box"];2637[label="vyw3001",fontsize=16,color="green",shape="box"];2638[label="vyw401",fontsize=16,color="green",shape="box"];2639[label="vyw3001",fontsize=16,color="green",shape="box"];2640[label="vyw401",fontsize=16,color="green",shape="box"];2641[label="vyw3001",fontsize=16,color="green",shape="box"];2642[label="vyw401",fontsize=16,color="green",shape="box"];2643[label="primMulInt (Pos vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];4042[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4042[label="",style="solid", color="burlywood", weight=9]; 4042 -> 2703[label="",style="solid", color="burlywood", weight=3]; 4043[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];2643 -> 4043[label="",style="solid", color="burlywood", weight=9]; 4043 -> 2704[label="",style="solid", color="burlywood", weight=3]; 2644[label="primMulInt (Neg vyw4010) vyw3000",fontsize=16,color="burlywood",shape="box"];4044[label="vyw3000/Pos vyw30000",fontsize=10,color="white",style="solid",shape="box"];2644 -> 4044[label="",style="solid", color="burlywood", weight=9]; 4044 -> 2705[label="",style="solid", color="burlywood", weight=3]; 4045[label="vyw3000/Neg vyw30000",fontsize=10,color="white",style="solid",shape="box"];2644 -> 4045[label="",style="solid", color="burlywood", weight=9]; 4045 -> 2706[label="",style="solid", color="burlywood", weight=3]; 2645[label="vyw4000",fontsize=16,color="green",shape="box"];2646[label="vyw30000",fontsize=16,color="green",shape="box"];2647[label="vyw4000",fontsize=16,color="green",shape="box"];2648[label="vyw30000",fontsize=16,color="green",shape="box"];2649[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2649 -> 2707[label="",style="solid", color="black", weight=3]; 2650[label="Left vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4046[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4046[label="",style="solid", color="burlywood", weight=9]; 4046 -> 2708[label="",style="solid", color="burlywood", weight=3]; 4047[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2650 -> 4047[label="",style="solid", color="burlywood", weight=9]; 4047 -> 2709[label="",style="solid", color="burlywood", weight=3]; 2651[label="Right vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4048[label="vyw4400/Left vyw44000",fontsize=10,color="white",style="solid",shape="box"];2651 -> 4048[label="",style="solid", color="burlywood", weight=9]; 4048 -> 2710[label="",style="solid", color="burlywood", weight=3]; 4049[label="vyw4400/Right vyw44000",fontsize=10,color="white",style="solid",shape="box"];2651 -> 4049[label="",style="solid", color="burlywood", weight=9]; 4049 -> 2711[label="",style="solid", color="burlywood", weight=3]; 2652[label="LT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4050[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2652 -> 4050[label="",style="solid", color="burlywood", weight=9]; 4050 -> 2712[label="",style="solid", color="burlywood", weight=3]; 4051[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2652 -> 4051[label="",style="solid", color="burlywood", weight=9]; 4051 -> 2713[label="",style="solid", color="burlywood", weight=3]; 4052[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2652 -> 4052[label="",style="solid", color="burlywood", weight=9]; 4052 -> 2714[label="",style="solid", color="burlywood", weight=3]; 2653[label="EQ <= vyw4400",fontsize=16,color="burlywood",shape="box"];4053[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2653 -> 4053[label="",style="solid", color="burlywood", weight=9]; 4053 -> 2715[label="",style="solid", color="burlywood", weight=3]; 4054[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2653 -> 4054[label="",style="solid", color="burlywood", weight=9]; 4054 -> 2716[label="",style="solid", color="burlywood", weight=3]; 4055[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2653 -> 4055[label="",style="solid", color="burlywood", weight=9]; 4055 -> 2717[label="",style="solid", color="burlywood", weight=3]; 2654[label="GT <= vyw4400",fontsize=16,color="burlywood",shape="box"];4056[label="vyw4400/LT",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4056[label="",style="solid", color="burlywood", weight=9]; 4056 -> 2718[label="",style="solid", color="burlywood", weight=3]; 4057[label="vyw4400/EQ",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4057[label="",style="solid", color="burlywood", weight=9]; 4057 -> 2719[label="",style="solid", color="burlywood", weight=3]; 4058[label="vyw4400/GT",fontsize=10,color="white",style="solid",shape="box"];2654 -> 4058[label="",style="solid", color="burlywood", weight=9]; 4058 -> 2720[label="",style="solid", color="burlywood", weight=3]; 2655[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2655 -> 2721[label="",style="solid", color="black", weight=3]; 2656[label="(vyw43000,vyw43001) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4059[label="vyw4400/(vyw44000,vyw44001)",fontsize=10,color="white",style="solid",shape="box"];2656 -> 4059[label="",style="solid", color="burlywood", weight=9]; 4059 -> 2722[label="",style="solid", color="burlywood", weight=3]; 2657[label="False <= vyw4400",fontsize=16,color="burlywood",shape="box"];4060[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2657 -> 4060[label="",style="solid", color="burlywood", weight=9]; 4060 -> 2723[label="",style="solid", color="burlywood", weight=3]; 4061[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2657 -> 4061[label="",style="solid", color="burlywood", weight=9]; 4061 -> 2724[label="",style="solid", color="burlywood", weight=3]; 2658[label="True <= vyw4400",fontsize=16,color="burlywood",shape="box"];4062[label="vyw4400/False",fontsize=10,color="white",style="solid",shape="box"];2658 -> 4062[label="",style="solid", color="burlywood", weight=9]; 4062 -> 2725[label="",style="solid", color="burlywood", weight=3]; 4063[label="vyw4400/True",fontsize=10,color="white",style="solid",shape="box"];2658 -> 4063[label="",style="solid", color="burlywood", weight=9]; 4063 -> 2726[label="",style="solid", color="burlywood", weight=3]; 2659[label="(vyw43000,vyw43001,vyw43002) <= vyw4400",fontsize=16,color="burlywood",shape="box"];4064[label="vyw4400/(vyw44000,vyw44001,vyw44002)",fontsize=10,color="white",style="solid",shape="box"];2659 -> 4064[label="",style="solid", color="burlywood", weight=9]; 4064 -> 2727[label="",style="solid", color="burlywood", weight=3]; 2660[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2660 -> 2728[label="",style="solid", color="black", weight=3]; 2661[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2661 -> 2729[label="",style="solid", color="black", weight=3]; 2662[label="Nothing <= vyw4400",fontsize=16,color="burlywood",shape="box"];4065[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4065[label="",style="solid", color="burlywood", weight=9]; 4065 -> 2730[label="",style="solid", color="burlywood", weight=3]; 4066[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2662 -> 4066[label="",style="solid", color="burlywood", weight=9]; 4066 -> 2731[label="",style="solid", color="burlywood", weight=3]; 2663[label="Just vyw43000 <= vyw4400",fontsize=16,color="burlywood",shape="box"];4067[label="vyw4400/Nothing",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4067[label="",style="solid", color="burlywood", weight=9]; 4067 -> 2732[label="",style="solid", color="burlywood", weight=3]; 4068[label="vyw4400/Just vyw44000",fontsize=10,color="white",style="solid",shape="box"];2663 -> 4068[label="",style="solid", color="burlywood", weight=9]; 4068 -> 2733[label="",style="solid", color="burlywood", weight=3]; 2664[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2664 -> 2734[label="",style="solid", color="black", weight=3]; 2665[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2665 -> 2735[label="",style="solid", color="black", weight=3]; 2666[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2666 -> 2736[label="",style="solid", color="black", weight=3]; 2667[label="compare vyw4300 vyw4400 /= GT",fontsize=16,color="black",shape="box"];2667 -> 2737[label="",style="solid", color="black", weight=3]; 2668[label="compare0 (Left vyw123) (Left vyw124) otherwise",fontsize=16,color="black",shape="box"];2668 -> 2738[label="",style="solid", color="black", weight=3]; 2669[label="LT",fontsize=16,color="green",shape="box"];2670[label="GT",fontsize=16,color="green",shape="box"];2671[label="vyw4300",fontsize=16,color="green",shape="box"];2672[label="vyw4400",fontsize=16,color="green",shape="box"];2673[label="vyw4300",fontsize=16,color="green",shape="box"];2674[label="vyw4400",fontsize=16,color="green",shape="box"];2675[label="vyw4300",fontsize=16,color="green",shape="box"];2676[label="vyw4400",fontsize=16,color="green",shape="box"];2677[label="vyw4300",fontsize=16,color="green",shape="box"];2678[label="vyw4400",fontsize=16,color="green",shape="box"];2679[label="vyw4300",fontsize=16,color="green",shape="box"];2680[label="vyw4400",fontsize=16,color="green",shape="box"];2681[label="vyw4300",fontsize=16,color="green",shape="box"];2682[label="vyw4400",fontsize=16,color="green",shape="box"];2683[label="vyw4300",fontsize=16,color="green",shape="box"];2684[label="vyw4400",fontsize=16,color="green",shape="box"];2685[label="vyw4300",fontsize=16,color="green",shape="box"];2686[label="vyw4400",fontsize=16,color="green",shape="box"];2687[label="vyw4300",fontsize=16,color="green",shape="box"];2688[label="vyw4400",fontsize=16,color="green",shape="box"];2689[label="vyw4300",fontsize=16,color="green",shape="box"];2690[label="vyw4400",fontsize=16,color="green",shape="box"];2691[label="vyw4300",fontsize=16,color="green",shape="box"];2692[label="vyw4400",fontsize=16,color="green",shape="box"];2693[label="vyw4300",fontsize=16,color="green",shape="box"];2694[label="vyw4400",fontsize=16,color="green",shape="box"];2695[label="vyw4300",fontsize=16,color="green",shape="box"];2696[label="vyw4400",fontsize=16,color="green",shape="box"];2697[label="vyw4300",fontsize=16,color="green",shape="box"];2698[label="vyw4400",fontsize=16,color="green",shape="box"];2699[label="compare0 (Right vyw130) (Right vyw131) otherwise",fontsize=16,color="black",shape="box"];2699 -> 2739[label="",style="solid", color="black", weight=3]; 2700[label="LT",fontsize=16,color="green",shape="box"];1961 -> 1880[label="",style="dashed", color="red", weight=0]; 1961[label="vyw18 == vyw13",fontsize=16,color="magenta"];1961 -> 2017[label="",style="dashed", color="magenta", weight=3]; 1961 -> 2018[label="",style="dashed", color="magenta", weight=3]; 1962 -> 1881[label="",style="dashed", color="red", weight=0]; 1962[label="vyw18 == vyw13",fontsize=16,color="magenta"];1962 -> 2019[label="",style="dashed", color="magenta", weight=3]; 1962 -> 2020[label="",style="dashed", color="magenta", weight=3]; 1963 -> 44[label="",style="dashed", color="red", weight=0]; 1963[label="vyw18 == vyw13",fontsize=16,color="magenta"];1963 -> 2021[label="",style="dashed", color="magenta", weight=3]; 1963 -> 2022[label="",style="dashed", color="magenta", weight=3]; 1964 -> 1883[label="",style="dashed", color="red", weight=0]; 1964[label="vyw18 == vyw13",fontsize=16,color="magenta"];1964 -> 2023[label="",style="dashed", color="magenta", weight=3]; 1964 -> 2024[label="",style="dashed", color="magenta", weight=3]; 1965 -> 1884[label="",style="dashed", color="red", weight=0]; 1965[label="vyw18 == vyw13",fontsize=16,color="magenta"];1965 -> 2025[label="",style="dashed", color="magenta", weight=3]; 1965 -> 2026[label="",style="dashed", color="magenta", weight=3]; 1966 -> 1885[label="",style="dashed", color="red", weight=0]; 1966[label="vyw18 == vyw13",fontsize=16,color="magenta"];1966 -> 2027[label="",style="dashed", color="magenta", weight=3]; 1966 -> 2028[label="",style="dashed", color="magenta", weight=3]; 1967 -> 1886[label="",style="dashed", color="red", weight=0]; 1967[label="vyw18 == vyw13",fontsize=16,color="magenta"];1967 -> 2029[label="",style="dashed", color="magenta", weight=3]; 1967 -> 2030[label="",style="dashed", color="magenta", weight=3]; 1968 -> 1887[label="",style="dashed", color="red", weight=0]; 1968[label="vyw18 == vyw13",fontsize=16,color="magenta"];1968 -> 2031[label="",style="dashed", color="magenta", weight=3]; 1968 -> 2032[label="",style="dashed", color="magenta", weight=3]; 1969 -> 1888[label="",style="dashed", color="red", weight=0]; 1969[label="vyw18 == vyw13",fontsize=16,color="magenta"];1969 -> 2033[label="",style="dashed", color="magenta", weight=3]; 1969 -> 2034[label="",style="dashed", color="magenta", weight=3]; 1970 -> 1889[label="",style="dashed", color="red", weight=0]; 1970[label="vyw18 == vyw13",fontsize=16,color="magenta"];1970 -> 2035[label="",style="dashed", color="magenta", weight=3]; 1970 -> 2036[label="",style="dashed", color="magenta", weight=3]; 1971 -> 1890[label="",style="dashed", color="red", weight=0]; 1971[label="vyw18 == vyw13",fontsize=16,color="magenta"];1971 -> 2037[label="",style="dashed", color="magenta", weight=3]; 1971 -> 2038[label="",style="dashed", color="magenta", weight=3]; 1972 -> 1891[label="",style="dashed", color="red", weight=0]; 1972[label="vyw18 == vyw13",fontsize=16,color="magenta"];1972 -> 2039[label="",style="dashed", color="magenta", weight=3]; 1972 -> 2040[label="",style="dashed", color="magenta", weight=3]; 1973 -> 1892[label="",style="dashed", color="red", weight=0]; 1973[label="vyw18 == vyw13",fontsize=16,color="magenta"];1973 -> 2041[label="",style="dashed", color="magenta", weight=3]; 1973 -> 2042[label="",style="dashed", color="magenta", weight=3]; 1974 -> 1893[label="",style="dashed", color="red", weight=0]; 1974[label="vyw18 == vyw13",fontsize=16,color="magenta"];1974 -> 2043[label="",style="dashed", color="magenta", weight=3]; 1974 -> 2044[label="",style="dashed", color="magenta", weight=3]; 1975 -> 1880[label="",style="dashed", color="red", weight=0]; 1975[label="vyw33 == vyw28",fontsize=16,color="magenta"];1975 -> 2045[label="",style="dashed", color="magenta", weight=3]; 1975 -> 2046[label="",style="dashed", color="magenta", weight=3]; 1976 -> 1881[label="",style="dashed", color="red", weight=0]; 1976[label="vyw33 == vyw28",fontsize=16,color="magenta"];1976 -> 2047[label="",style="dashed", color="magenta", weight=3]; 1976 -> 2048[label="",style="dashed", color="magenta", weight=3]; 1977 -> 44[label="",style="dashed", color="red", weight=0]; 1977[label="vyw33 == vyw28",fontsize=16,color="magenta"];1977 -> 2049[label="",style="dashed", color="magenta", weight=3]; 1977 -> 2050[label="",style="dashed", color="magenta", weight=3]; 1978 -> 1883[label="",style="dashed", color="red", weight=0]; 1978[label="vyw33 == vyw28",fontsize=16,color="magenta"];1978 -> 2051[label="",style="dashed", color="magenta", weight=3]; 1978 -> 2052[label="",style="dashed", color="magenta", weight=3]; 1979 -> 1884[label="",style="dashed", color="red", weight=0]; 1979[label="vyw33 == vyw28",fontsize=16,color="magenta"];1979 -> 2053[label="",style="dashed", color="magenta", weight=3]; 1979 -> 2054[label="",style="dashed", color="magenta", weight=3]; 1980 -> 1885[label="",style="dashed", color="red", weight=0]; 1980[label="vyw33 == vyw28",fontsize=16,color="magenta"];1980 -> 2055[label="",style="dashed", color="magenta", weight=3]; 1980 -> 2056[label="",style="dashed", color="magenta", weight=3]; 1981 -> 1886[label="",style="dashed", color="red", weight=0]; 1981[label="vyw33 == vyw28",fontsize=16,color="magenta"];1981 -> 2057[label="",style="dashed", color="magenta", weight=3]; 1981 -> 2058[label="",style="dashed", color="magenta", weight=3]; 1982 -> 1887[label="",style="dashed", color="red", weight=0]; 1982[label="vyw33 == vyw28",fontsize=16,color="magenta"];1982 -> 2059[label="",style="dashed", color="magenta", weight=3]; 1982 -> 2060[label="",style="dashed", color="magenta", weight=3]; 1983 -> 1888[label="",style="dashed", color="red", weight=0]; 1983[label="vyw33 == vyw28",fontsize=16,color="magenta"];1983 -> 2061[label="",style="dashed", color="magenta", weight=3]; 1983 -> 2062[label="",style="dashed", color="magenta", weight=3]; 1984 -> 1889[label="",style="dashed", color="red", weight=0]; 1984[label="vyw33 == vyw28",fontsize=16,color="magenta"];1984 -> 2063[label="",style="dashed", color="magenta", weight=3]; 1984 -> 2064[label="",style="dashed", color="magenta", weight=3]; 1985 -> 1890[label="",style="dashed", color="red", weight=0]; 1985[label="vyw33 == vyw28",fontsize=16,color="magenta"];1985 -> 2065[label="",style="dashed", color="magenta", weight=3]; 1985 -> 2066[label="",style="dashed", color="magenta", weight=3]; 1986 -> 1891[label="",style="dashed", color="red", weight=0]; 1986[label="vyw33 == vyw28",fontsize=16,color="magenta"];1986 -> 2067[label="",style="dashed", color="magenta", weight=3]; 1986 -> 2068[label="",style="dashed", color="magenta", weight=3]; 1987 -> 1892[label="",style="dashed", color="red", weight=0]; 1987[label="vyw33 == vyw28",fontsize=16,color="magenta"];1987 -> 2069[label="",style="dashed", color="magenta", weight=3]; 1987 -> 2070[label="",style="dashed", color="magenta", weight=3]; 1988 -> 1893[label="",style="dashed", color="red", weight=0]; 1988[label="vyw33 == vyw28",fontsize=16,color="magenta"];1988 -> 2071[label="",style="dashed", color="magenta", weight=3]; 1988 -> 2072[label="",style="dashed", color="magenta", weight=3]; 2701[label="vyw4000",fontsize=16,color="green",shape="box"];2702[label="vyw30000",fontsize=16,color="green",shape="box"];2703[label="primMulInt (Pos vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];2703 -> 2740[label="",style="solid", color="black", weight=3]; 2704[label="primMulInt (Pos vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];2704 -> 2741[label="",style="solid", color="black", weight=3]; 2705[label="primMulInt (Neg vyw4010) (Pos vyw30000)",fontsize=16,color="black",shape="box"];2705 -> 2742[label="",style="solid", color="black", weight=3]; 2706[label="primMulInt (Neg vyw4010) (Neg vyw30000)",fontsize=16,color="black",shape="box"];2706 -> 2743[label="",style="solid", color="black", weight=3]; 2707 -> 2744[label="",style="dashed", color="red", weight=0]; 2707[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2707 -> 2745[label="",style="dashed", color="magenta", weight=3]; 2708[label="Left vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2708 -> 2753[label="",style="solid", color="black", weight=3]; 2709[label="Left vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2709 -> 2754[label="",style="solid", color="black", weight=3]; 2710[label="Right vyw43000 <= Left vyw44000",fontsize=16,color="black",shape="box"];2710 -> 2755[label="",style="solid", color="black", weight=3]; 2711[label="Right vyw43000 <= Right vyw44000",fontsize=16,color="black",shape="box"];2711 -> 2756[label="",style="solid", color="black", weight=3]; 2712[label="LT <= LT",fontsize=16,color="black",shape="box"];2712 -> 2757[label="",style="solid", color="black", weight=3]; 2713[label="LT <= EQ",fontsize=16,color="black",shape="box"];2713 -> 2758[label="",style="solid", color="black", weight=3]; 2714[label="LT <= GT",fontsize=16,color="black",shape="box"];2714 -> 2759[label="",style="solid", color="black", weight=3]; 2715[label="EQ <= LT",fontsize=16,color="black",shape="box"];2715 -> 2760[label="",style="solid", color="black", weight=3]; 2716[label="EQ <= EQ",fontsize=16,color="black",shape="box"];2716 -> 2761[label="",style="solid", color="black", weight=3]; 2717[label="EQ <= GT",fontsize=16,color="black",shape="box"];2717 -> 2762[label="",style="solid", color="black", weight=3]; 2718[label="GT <= LT",fontsize=16,color="black",shape="box"];2718 -> 2763[label="",style="solid", color="black", weight=3]; 2719[label="GT <= EQ",fontsize=16,color="black",shape="box"];2719 -> 2764[label="",style="solid", color="black", weight=3]; 2720[label="GT <= GT",fontsize=16,color="black",shape="box"];2720 -> 2765[label="",style="solid", color="black", weight=3]; 2721 -> 2744[label="",style="dashed", color="red", weight=0]; 2721[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2721 -> 2746[label="",style="dashed", color="magenta", weight=3]; 2722[label="(vyw43000,vyw43001) <= (vyw44000,vyw44001)",fontsize=16,color="black",shape="box"];2722 -> 2766[label="",style="solid", color="black", weight=3]; 2723[label="False <= False",fontsize=16,color="black",shape="box"];2723 -> 2767[label="",style="solid", color="black", weight=3]; 2724[label="False <= True",fontsize=16,color="black",shape="box"];2724 -> 2768[label="",style="solid", color="black", weight=3]; 2725[label="True <= False",fontsize=16,color="black",shape="box"];2725 -> 2769[label="",style="solid", color="black", weight=3]; 2726[label="True <= True",fontsize=16,color="black",shape="box"];2726 -> 2770[label="",style="solid", color="black", weight=3]; 2727[label="(vyw43000,vyw43001,vyw43002) <= (vyw44000,vyw44001,vyw44002)",fontsize=16,color="black",shape="box"];2727 -> 2771[label="",style="solid", color="black", weight=3]; 2728 -> 2744[label="",style="dashed", color="red", weight=0]; 2728[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2728 -> 2747[label="",style="dashed", color="magenta", weight=3]; 2729 -> 2744[label="",style="dashed", color="red", weight=0]; 2729[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2729 -> 2748[label="",style="dashed", color="magenta", weight=3]; 2730[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];2730 -> 2772[label="",style="solid", color="black", weight=3]; 2731[label="Nothing <= Just vyw44000",fontsize=16,color="black",shape="box"];2731 -> 2773[label="",style="solid", color="black", weight=3]; 2732[label="Just vyw43000 <= Nothing",fontsize=16,color="black",shape="box"];2732 -> 2774[label="",style="solid", color="black", weight=3]; 2733[label="Just vyw43000 <= Just vyw44000",fontsize=16,color="black",shape="box"];2733 -> 2775[label="",style="solid", color="black", weight=3]; 2734 -> 2744[label="",style="dashed", color="red", weight=0]; 2734[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2734 -> 2749[label="",style="dashed", color="magenta", weight=3]; 2735 -> 2744[label="",style="dashed", color="red", weight=0]; 2735[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2735 -> 2750[label="",style="dashed", color="magenta", weight=3]; 2736 -> 2744[label="",style="dashed", color="red", weight=0]; 2736[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2736 -> 2751[label="",style="dashed", color="magenta", weight=3]; 2737 -> 2744[label="",style="dashed", color="red", weight=0]; 2737[label="not (compare vyw4300 vyw4400 == GT)",fontsize=16,color="magenta"];2737 -> 2752[label="",style="dashed", color="magenta", weight=3]; 2738[label="compare0 (Left vyw123) (Left vyw124) True",fontsize=16,color="black",shape="box"];2738 -> 2776[label="",style="solid", color="black", weight=3]; 2739[label="compare0 (Right vyw130) (Right vyw131) True",fontsize=16,color="black",shape="box"];2739 -> 2777[label="",style="solid", color="black", weight=3]; 2017[label="vyw13",fontsize=16,color="green",shape="box"];2018[label="vyw18",fontsize=16,color="green",shape="box"];2019[label="vyw13",fontsize=16,color="green",shape="box"];2020[label="vyw18",fontsize=16,color="green",shape="box"];2021[label="vyw13",fontsize=16,color="green",shape="box"];2022[label="vyw18",fontsize=16,color="green",shape="box"];2023[label="vyw13",fontsize=16,color="green",shape="box"];2024[label="vyw18",fontsize=16,color="green",shape="box"];2025[label="vyw13",fontsize=16,color="green",shape="box"];2026[label="vyw18",fontsize=16,color="green",shape="box"];2027[label="vyw13",fontsize=16,color="green",shape="box"];2028[label="vyw18",fontsize=16,color="green",shape="box"];2029[label="vyw13",fontsize=16,color="green",shape="box"];2030[label="vyw18",fontsize=16,color="green",shape="box"];2031[label="vyw13",fontsize=16,color="green",shape="box"];2032[label="vyw18",fontsize=16,color="green",shape="box"];2033[label="vyw13",fontsize=16,color="green",shape="box"];2034[label="vyw18",fontsize=16,color="green",shape="box"];2035[label="vyw13",fontsize=16,color="green",shape="box"];2036[label="vyw18",fontsize=16,color="green",shape="box"];2037[label="vyw13",fontsize=16,color="green",shape="box"];2038[label="vyw18",fontsize=16,color="green",shape="box"];2039[label="vyw13",fontsize=16,color="green",shape="box"];2040[label="vyw18",fontsize=16,color="green",shape="box"];2041[label="vyw13",fontsize=16,color="green",shape="box"];2042[label="vyw18",fontsize=16,color="green",shape="box"];2043[label="vyw13",fontsize=16,color="green",shape="box"];2044[label="vyw18",fontsize=16,color="green",shape="box"];2045[label="vyw28",fontsize=16,color="green",shape="box"];2046[label="vyw33",fontsize=16,color="green",shape="box"];2047[label="vyw28",fontsize=16,color="green",shape="box"];2048[label="vyw33",fontsize=16,color="green",shape="box"];2049[label="vyw28",fontsize=16,color="green",shape="box"];2050[label="vyw33",fontsize=16,color="green",shape="box"];2051[label="vyw28",fontsize=16,color="green",shape="box"];2052[label="vyw33",fontsize=16,color="green",shape="box"];2053[label="vyw28",fontsize=16,color="green",shape="box"];2054[label="vyw33",fontsize=16,color="green",shape="box"];2055[label="vyw28",fontsize=16,color="green",shape="box"];2056[label="vyw33",fontsize=16,color="green",shape="box"];2057[label="vyw28",fontsize=16,color="green",shape="box"];2058[label="vyw33",fontsize=16,color="green",shape="box"];2059[label="vyw28",fontsize=16,color="green",shape="box"];2060[label="vyw33",fontsize=16,color="green",shape="box"];2061[label="vyw28",fontsize=16,color="green",shape="box"];2062[label="vyw33",fontsize=16,color="green",shape="box"];2063[label="vyw28",fontsize=16,color="green",shape="box"];2064[label="vyw33",fontsize=16,color="green",shape="box"];2065[label="vyw28",fontsize=16,color="green",shape="box"];2066[label="vyw33",fontsize=16,color="green",shape="box"];2067[label="vyw28",fontsize=16,color="green",shape="box"];2068[label="vyw33",fontsize=16,color="green",shape="box"];2069[label="vyw28",fontsize=16,color="green",shape="box"];2070[label="vyw33",fontsize=16,color="green",shape="box"];2071[label="vyw28",fontsize=16,color="green",shape="box"];2072[label="vyw33",fontsize=16,color="green",shape="box"];2740[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2740 -> 2778[label="",style="dashed", color="green", weight=3]; 2741[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2741 -> 2779[label="",style="dashed", color="green", weight=3]; 2742[label="Neg (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2742 -> 2780[label="",style="dashed", color="green", weight=3]; 2743[label="Pos (primMulNat vyw4010 vyw30000)",fontsize=16,color="green",shape="box"];2743 -> 2781[label="",style="dashed", color="green", weight=3]; 2745 -> 44[label="",style="dashed", color="red", weight=0]; 2745[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2745 -> 2782[label="",style="dashed", color="magenta", weight=3]; 2745 -> 2783[label="",style="dashed", color="magenta", weight=3]; 2744[label="not vyw133",fontsize=16,color="burlywood",shape="triangle"];4069[label="vyw133/False",fontsize=10,color="white",style="solid",shape="box"];2744 -> 4069[label="",style="solid", color="burlywood", weight=9]; 4069 -> 2784[label="",style="solid", color="burlywood", weight=3]; 4070[label="vyw133/True",fontsize=10,color="white",style="solid",shape="box"];2744 -> 4070[label="",style="solid", color="burlywood", weight=9]; 4070 -> 2785[label="",style="solid", color="burlywood", weight=3]; 2753[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4071[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4071[label="",style="solid", color="blue", weight=9]; 4071 -> 2800[label="",style="solid", color="blue", weight=3]; 4072[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4072[label="",style="solid", color="blue", weight=9]; 4072 -> 2801[label="",style="solid", color="blue", weight=3]; 4073[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4073[label="",style="solid", color="blue", weight=9]; 4073 -> 2802[label="",style="solid", color="blue", weight=3]; 4074[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4074[label="",style="solid", color="blue", weight=9]; 4074 -> 2803[label="",style="solid", color="blue", weight=3]; 4075[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4075[label="",style="solid", color="blue", weight=9]; 4075 -> 2804[label="",style="solid", color="blue", weight=3]; 4076[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4076[label="",style="solid", color="blue", weight=9]; 4076 -> 2805[label="",style="solid", color="blue", weight=3]; 4077[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4077[label="",style="solid", color="blue", weight=9]; 4077 -> 2806[label="",style="solid", color="blue", weight=3]; 4078[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4078[label="",style="solid", color="blue", weight=9]; 4078 -> 2807[label="",style="solid", color="blue", weight=3]; 4079[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4079[label="",style="solid", color="blue", weight=9]; 4079 -> 2808[label="",style="solid", color="blue", weight=3]; 4080[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4080[label="",style="solid", color="blue", weight=9]; 4080 -> 2809[label="",style="solid", color="blue", weight=3]; 4081[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4081[label="",style="solid", color="blue", weight=9]; 4081 -> 2810[label="",style="solid", color="blue", weight=3]; 4082[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4082[label="",style="solid", color="blue", weight=9]; 4082 -> 2811[label="",style="solid", color="blue", weight=3]; 4083[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4083[label="",style="solid", color="blue", weight=9]; 4083 -> 2812[label="",style="solid", color="blue", weight=3]; 4084[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2753 -> 4084[label="",style="solid", color="blue", weight=9]; 4084 -> 2813[label="",style="solid", color="blue", weight=3]; 2754[label="True",fontsize=16,color="green",shape="box"];2755[label="False",fontsize=16,color="green",shape="box"];2756[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4085[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4085[label="",style="solid", color="blue", weight=9]; 4085 -> 2814[label="",style="solid", color="blue", weight=3]; 4086[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4086[label="",style="solid", color="blue", weight=9]; 4086 -> 2815[label="",style="solid", color="blue", weight=3]; 4087[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4087[label="",style="solid", color="blue", weight=9]; 4087 -> 2816[label="",style="solid", color="blue", weight=3]; 4088[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4088[label="",style="solid", color="blue", weight=9]; 4088 -> 2817[label="",style="solid", color="blue", weight=3]; 4089[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4089[label="",style="solid", color="blue", weight=9]; 4089 -> 2818[label="",style="solid", color="blue", weight=3]; 4090[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4090[label="",style="solid", color="blue", weight=9]; 4090 -> 2819[label="",style="solid", color="blue", weight=3]; 4091[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4091[label="",style="solid", color="blue", weight=9]; 4091 -> 2820[label="",style="solid", color="blue", weight=3]; 4092[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4092[label="",style="solid", color="blue", weight=9]; 4092 -> 2821[label="",style="solid", color="blue", weight=3]; 4093[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4093[label="",style="solid", color="blue", weight=9]; 4093 -> 2822[label="",style="solid", color="blue", weight=3]; 4094[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4094[label="",style="solid", color="blue", weight=9]; 4094 -> 2823[label="",style="solid", color="blue", weight=3]; 4095[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4095[label="",style="solid", color="blue", weight=9]; 4095 -> 2824[label="",style="solid", color="blue", weight=3]; 4096[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4096[label="",style="solid", color="blue", weight=9]; 4096 -> 2825[label="",style="solid", color="blue", weight=3]; 4097[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4097[label="",style="solid", color="blue", weight=9]; 4097 -> 2826[label="",style="solid", color="blue", weight=3]; 4098[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2756 -> 4098[label="",style="solid", color="blue", weight=9]; 4098 -> 2827[label="",style="solid", color="blue", weight=3]; 2757[label="True",fontsize=16,color="green",shape="box"];2758[label="True",fontsize=16,color="green",shape="box"];2759[label="True",fontsize=16,color="green",shape="box"];2760[label="False",fontsize=16,color="green",shape="box"];2761[label="True",fontsize=16,color="green",shape="box"];2762[label="True",fontsize=16,color="green",shape="box"];2763[label="False",fontsize=16,color="green",shape="box"];2764[label="False",fontsize=16,color="green",shape="box"];2765[label="True",fontsize=16,color="green",shape="box"];2746 -> 44[label="",style="dashed", color="red", weight=0]; 2746[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2746 -> 2786[label="",style="dashed", color="magenta", weight=3]; 2746 -> 2787[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2915[label="",style="dashed", color="red", weight=0]; 2766[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];2766 -> 2916[label="",style="dashed", color="magenta", weight=3]; 2766 -> 2917[label="",style="dashed", color="magenta", weight=3]; 2767[label="True",fontsize=16,color="green",shape="box"];2768[label="True",fontsize=16,color="green",shape="box"];2769[label="False",fontsize=16,color="green",shape="box"];2770[label="True",fontsize=16,color="green",shape="box"];2771 -> 2915[label="",style="dashed", color="red", weight=0]; 2771[label="vyw43000 < vyw44000 || vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];2771 -> 2918[label="",style="dashed", color="magenta", weight=3]; 2771 -> 2919[label="",style="dashed", color="magenta", weight=3]; 2747 -> 44[label="",style="dashed", color="red", weight=0]; 2747[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2747 -> 2788[label="",style="dashed", color="magenta", weight=3]; 2747 -> 2789[label="",style="dashed", color="magenta", weight=3]; 2748 -> 44[label="",style="dashed", color="red", weight=0]; 2748[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2748 -> 2790[label="",style="dashed", color="magenta", weight=3]; 2748 -> 2791[label="",style="dashed", color="magenta", weight=3]; 2772[label="True",fontsize=16,color="green",shape="box"];2773[label="True",fontsize=16,color="green",shape="box"];2774[label="False",fontsize=16,color="green",shape="box"];2775[label="vyw43000 <= vyw44000",fontsize=16,color="blue",shape="box"];4099[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4099[label="",style="solid", color="blue", weight=9]; 4099 -> 2833[label="",style="solid", color="blue", weight=3]; 4100[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4100[label="",style="solid", color="blue", weight=9]; 4100 -> 2834[label="",style="solid", color="blue", weight=3]; 4101[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4101[label="",style="solid", color="blue", weight=9]; 4101 -> 2835[label="",style="solid", color="blue", weight=3]; 4102[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4102[label="",style="solid", color="blue", weight=9]; 4102 -> 2836[label="",style="solid", color="blue", weight=3]; 4103[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4103[label="",style="solid", color="blue", weight=9]; 4103 -> 2837[label="",style="solid", color="blue", weight=3]; 4104[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4104[label="",style="solid", color="blue", weight=9]; 4104 -> 2838[label="",style="solid", color="blue", weight=3]; 4105[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4105[label="",style="solid", color="blue", weight=9]; 4105 -> 2839[label="",style="solid", color="blue", weight=3]; 4106[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4106[label="",style="solid", color="blue", weight=9]; 4106 -> 2840[label="",style="solid", color="blue", weight=3]; 4107[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4107[label="",style="solid", color="blue", weight=9]; 4107 -> 2841[label="",style="solid", color="blue", weight=3]; 4108[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4108[label="",style="solid", color="blue", weight=9]; 4108 -> 2842[label="",style="solid", color="blue", weight=3]; 4109[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4109[label="",style="solid", color="blue", weight=9]; 4109 -> 2843[label="",style="solid", color="blue", weight=3]; 4110[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4110[label="",style="solid", color="blue", weight=9]; 4110 -> 2844[label="",style="solid", color="blue", weight=3]; 4111[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4111[label="",style="solid", color="blue", weight=9]; 4111 -> 2845[label="",style="solid", color="blue", weight=3]; 4112[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2775 -> 4112[label="",style="solid", color="blue", weight=9]; 4112 -> 2846[label="",style="solid", color="blue", weight=3]; 2749 -> 44[label="",style="dashed", color="red", weight=0]; 2749[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2749 -> 2792[label="",style="dashed", color="magenta", weight=3]; 2749 -> 2793[label="",style="dashed", color="magenta", weight=3]; 2750 -> 44[label="",style="dashed", color="red", weight=0]; 2750[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2750 -> 2794[label="",style="dashed", color="magenta", weight=3]; 2750 -> 2795[label="",style="dashed", color="magenta", weight=3]; 2751 -> 44[label="",style="dashed", color="red", weight=0]; 2751[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2751 -> 2796[label="",style="dashed", color="magenta", weight=3]; 2751 -> 2797[label="",style="dashed", color="magenta", weight=3]; 2752 -> 44[label="",style="dashed", color="red", weight=0]; 2752[label="compare vyw4300 vyw4400 == GT",fontsize=16,color="magenta"];2752 -> 2798[label="",style="dashed", color="magenta", weight=3]; 2752 -> 2799[label="",style="dashed", color="magenta", weight=3]; 2776[label="GT",fontsize=16,color="green",shape="box"];2777[label="GT",fontsize=16,color="green",shape="box"];2778[label="primMulNat vyw4010 vyw30000",fontsize=16,color="burlywood",shape="triangle"];4113[label="vyw4010/Succ vyw40100",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4113[label="",style="solid", color="burlywood", weight=9]; 4113 -> 2847[label="",style="solid", color="burlywood", weight=3]; 4114[label="vyw4010/Zero",fontsize=10,color="white",style="solid",shape="box"];2778 -> 4114[label="",style="solid", color="burlywood", weight=9]; 4114 -> 2848[label="",style="solid", color="burlywood", weight=3]; 2779 -> 2778[label="",style="dashed", color="red", weight=0]; 2779[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2779 -> 2849[label="",style="dashed", color="magenta", weight=3]; 2780 -> 2778[label="",style="dashed", color="red", weight=0]; 2780[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2780 -> 2850[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2778[label="",style="dashed", color="red", weight=0]; 2781[label="primMulNat vyw4010 vyw30000",fontsize=16,color="magenta"];2781 -> 2851[label="",style="dashed", color="magenta", weight=3]; 2781 -> 2852[label="",style="dashed", color="magenta", weight=3]; 2782[label="GT",fontsize=16,color="green",shape="box"];2783[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2783 -> 2853[label="",style="solid", color="black", weight=3]; 2784[label="not False",fontsize=16,color="black",shape="box"];2784 -> 2854[label="",style="solid", color="black", weight=3]; 2785[label="not True",fontsize=16,color="black",shape="box"];2785 -> 2855[label="",style="solid", color="black", weight=3]; 2800 -> 2550[label="",style="dashed", color="red", weight=0]; 2800[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2800 -> 2856[label="",style="dashed", color="magenta", weight=3]; 2800 -> 2857[label="",style="dashed", color="magenta", weight=3]; 2801 -> 2551[label="",style="dashed", color="red", weight=0]; 2801[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2801 -> 2858[label="",style="dashed", color="magenta", weight=3]; 2801 -> 2859[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2552[label="",style="dashed", color="red", weight=0]; 2802[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2802 -> 2860[label="",style="dashed", color="magenta", weight=3]; 2802 -> 2861[label="",style="dashed", color="magenta", weight=3]; 2803 -> 2553[label="",style="dashed", color="red", weight=0]; 2803[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2803 -> 2862[label="",style="dashed", color="magenta", weight=3]; 2803 -> 2863[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2554[label="",style="dashed", color="red", weight=0]; 2804[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2804 -> 2864[label="",style="dashed", color="magenta", weight=3]; 2804 -> 2865[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2555[label="",style="dashed", color="red", weight=0]; 2805[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2805 -> 2866[label="",style="dashed", color="magenta", weight=3]; 2805 -> 2867[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2556[label="",style="dashed", color="red", weight=0]; 2806[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2806 -> 2868[label="",style="dashed", color="magenta", weight=3]; 2806 -> 2869[label="",style="dashed", color="magenta", weight=3]; 2807 -> 2557[label="",style="dashed", color="red", weight=0]; 2807[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2807 -> 2870[label="",style="dashed", color="magenta", weight=3]; 2807 -> 2871[label="",style="dashed", color="magenta", weight=3]; 2808 -> 2558[label="",style="dashed", color="red", weight=0]; 2808[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2808 -> 2872[label="",style="dashed", color="magenta", weight=3]; 2808 -> 2873[label="",style="dashed", color="magenta", weight=3]; 2809 -> 2559[label="",style="dashed", color="red", weight=0]; 2809[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2809 -> 2874[label="",style="dashed", color="magenta", weight=3]; 2809 -> 2875[label="",style="dashed", color="magenta", weight=3]; 2810 -> 2560[label="",style="dashed", color="red", weight=0]; 2810[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2810 -> 2876[label="",style="dashed", color="magenta", weight=3]; 2810 -> 2877[label="",style="dashed", color="magenta", weight=3]; 2811 -> 2561[label="",style="dashed", color="red", weight=0]; 2811[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2811 -> 2878[label="",style="dashed", color="magenta", weight=3]; 2811 -> 2879[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2562[label="",style="dashed", color="red", weight=0]; 2812[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2812 -> 2880[label="",style="dashed", color="magenta", weight=3]; 2812 -> 2881[label="",style="dashed", color="magenta", weight=3]; 2813 -> 2563[label="",style="dashed", color="red", weight=0]; 2813[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2813 -> 2882[label="",style="dashed", color="magenta", weight=3]; 2813 -> 2883[label="",style="dashed", color="magenta", weight=3]; 2814 -> 2550[label="",style="dashed", color="red", weight=0]; 2814[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2814 -> 2884[label="",style="dashed", color="magenta", weight=3]; 2814 -> 2885[label="",style="dashed", color="magenta", weight=3]; 2815 -> 2551[label="",style="dashed", color="red", weight=0]; 2815[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2815 -> 2886[label="",style="dashed", color="magenta", weight=3]; 2815 -> 2887[label="",style="dashed", color="magenta", weight=3]; 2816 -> 2552[label="",style="dashed", color="red", weight=0]; 2816[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2816 -> 2888[label="",style="dashed", color="magenta", weight=3]; 2816 -> 2889[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2553[label="",style="dashed", color="red", weight=0]; 2817[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2817 -> 2890[label="",style="dashed", color="magenta", weight=3]; 2817 -> 2891[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2554[label="",style="dashed", color="red", weight=0]; 2818[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2818 -> 2892[label="",style="dashed", color="magenta", weight=3]; 2818 -> 2893[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2555[label="",style="dashed", color="red", weight=0]; 2819[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2819 -> 2894[label="",style="dashed", color="magenta", weight=3]; 2819 -> 2895[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2556[label="",style="dashed", color="red", weight=0]; 2820[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2820 -> 2896[label="",style="dashed", color="magenta", weight=3]; 2820 -> 2897[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2557[label="",style="dashed", color="red", weight=0]; 2821[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2821 -> 2898[label="",style="dashed", color="magenta", weight=3]; 2821 -> 2899[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2558[label="",style="dashed", color="red", weight=0]; 2822[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2822 -> 2900[label="",style="dashed", color="magenta", weight=3]; 2822 -> 2901[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2559[label="",style="dashed", color="red", weight=0]; 2823[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2823 -> 2902[label="",style="dashed", color="magenta", weight=3]; 2823 -> 2903[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2560[label="",style="dashed", color="red", weight=0]; 2824[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2824 -> 2904[label="",style="dashed", color="magenta", weight=3]; 2824 -> 2905[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2561[label="",style="dashed", color="red", weight=0]; 2825[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2825 -> 2906[label="",style="dashed", color="magenta", weight=3]; 2825 -> 2907[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2562[label="",style="dashed", color="red", weight=0]; 2826[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2826 -> 2908[label="",style="dashed", color="magenta", weight=3]; 2826 -> 2909[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2563[label="",style="dashed", color="red", weight=0]; 2827[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2827 -> 2910[label="",style="dashed", color="magenta", weight=3]; 2827 -> 2911[label="",style="dashed", color="magenta", weight=3]; 2786[label="GT",fontsize=16,color="green",shape="box"];2787[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4115[label="vyw4300/vyw43000 :% vyw43001",fontsize=10,color="white",style="solid",shape="box"];2787 -> 4115[label="",style="solid", color="burlywood", weight=9]; 4115 -> 2912[label="",style="solid", color="burlywood", weight=3]; 2916 -> 2242[label="",style="dashed", color="red", weight=0]; 2916[label="vyw43000 == vyw44000 && vyw43001 <= vyw44001",fontsize=16,color="magenta"];2916 -> 2922[label="",style="dashed", color="magenta", weight=3]; 2916 -> 2923[label="",style="dashed", color="magenta", weight=3]; 2917[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4116[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4116[label="",style="solid", color="blue", weight=9]; 4116 -> 2924[label="",style="solid", color="blue", weight=3]; 4117[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4117[label="",style="solid", color="blue", weight=9]; 4117 -> 2925[label="",style="solid", color="blue", weight=3]; 4118[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4118[label="",style="solid", color="blue", weight=9]; 4118 -> 2926[label="",style="solid", color="blue", weight=3]; 4119[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4119[label="",style="solid", color="blue", weight=9]; 4119 -> 2927[label="",style="solid", color="blue", weight=3]; 4120[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4120[label="",style="solid", color="blue", weight=9]; 4120 -> 2928[label="",style="solid", color="blue", weight=3]; 4121[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4121[label="",style="solid", color="blue", weight=9]; 4121 -> 2929[label="",style="solid", color="blue", weight=3]; 4122[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4122[label="",style="solid", color="blue", weight=9]; 4122 -> 2930[label="",style="solid", color="blue", weight=3]; 4123[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4123[label="",style="solid", color="blue", weight=9]; 4123 -> 2931[label="",style="solid", color="blue", weight=3]; 4124[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4124[label="",style="solid", color="blue", weight=9]; 4124 -> 2932[label="",style="solid", color="blue", weight=3]; 4125[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4125[label="",style="solid", color="blue", weight=9]; 4125 -> 2933[label="",style="solid", color="blue", weight=3]; 4126[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4126[label="",style="solid", color="blue", weight=9]; 4126 -> 2934[label="",style="solid", color="blue", weight=3]; 4127[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4127[label="",style="solid", color="blue", weight=9]; 4127 -> 2935[label="",style="solid", color="blue", weight=3]; 4128[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4128[label="",style="solid", color="blue", weight=9]; 4128 -> 2936[label="",style="solid", color="blue", weight=3]; 4129[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2917 -> 4129[label="",style="solid", color="blue", weight=9]; 4129 -> 2937[label="",style="solid", color="blue", weight=3]; 2915[label="vyw138 || vyw139",fontsize=16,color="burlywood",shape="triangle"];4130[label="vyw138/False",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4130[label="",style="solid", color="burlywood", weight=9]; 4130 -> 2938[label="",style="solid", color="burlywood", weight=3]; 4131[label="vyw138/True",fontsize=10,color="white",style="solid",shape="box"];2915 -> 4131[label="",style="solid", color="burlywood", weight=9]; 4131 -> 2939[label="",style="solid", color="burlywood", weight=3]; 2918 -> 2242[label="",style="dashed", color="red", weight=0]; 2918[label="vyw43000 == vyw44000 && (vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002)",fontsize=16,color="magenta"];2918 -> 2940[label="",style="dashed", color="magenta", weight=3]; 2918 -> 2941[label="",style="dashed", color="magenta", weight=3]; 2919[label="vyw43000 < vyw44000",fontsize=16,color="blue",shape="box"];4132[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4132[label="",style="solid", color="blue", weight=9]; 4132 -> 2942[label="",style="solid", color="blue", weight=3]; 4133[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4133[label="",style="solid", color="blue", weight=9]; 4133 -> 2943[label="",style="solid", color="blue", weight=3]; 4134[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4134[label="",style="solid", color="blue", weight=9]; 4134 -> 2944[label="",style="solid", color="blue", weight=3]; 4135[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4135[label="",style="solid", color="blue", weight=9]; 4135 -> 2945[label="",style="solid", color="blue", weight=3]; 4136[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4136[label="",style="solid", color="blue", weight=9]; 4136 -> 2946[label="",style="solid", color="blue", weight=3]; 4137[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4137[label="",style="solid", color="blue", weight=9]; 4137 -> 2947[label="",style="solid", color="blue", weight=3]; 4138[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4138[label="",style="solid", color="blue", weight=9]; 4138 -> 2948[label="",style="solid", color="blue", weight=3]; 4139[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4139[label="",style="solid", color="blue", weight=9]; 4139 -> 2949[label="",style="solid", color="blue", weight=3]; 4140[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4140[label="",style="solid", color="blue", weight=9]; 4140 -> 2950[label="",style="solid", color="blue", weight=3]; 4141[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4141[label="",style="solid", color="blue", weight=9]; 4141 -> 2951[label="",style="solid", color="blue", weight=3]; 4142[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4142[label="",style="solid", color="blue", weight=9]; 4142 -> 2952[label="",style="solid", color="blue", weight=3]; 4143[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4143[label="",style="solid", color="blue", weight=9]; 4143 -> 2953[label="",style="solid", color="blue", weight=3]; 4144[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4144[label="",style="solid", color="blue", weight=9]; 4144 -> 2954[label="",style="solid", color="blue", weight=3]; 4145[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2919 -> 4145[label="",style="solid", color="blue", weight=9]; 4145 -> 2955[label="",style="solid", color="blue", weight=3]; 2788[label="GT",fontsize=16,color="green",shape="box"];2789[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4146[label="vyw4300/Integer vyw43000",fontsize=10,color="white",style="solid",shape="box"];2789 -> 4146[label="",style="solid", color="burlywood", weight=9]; 4146 -> 2956[label="",style="solid", color="burlywood", weight=3]; 2790[label="GT",fontsize=16,color="green",shape="box"];2791[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4147[label="vyw4300/vyw43000 : vyw43001",fontsize=10,color="white",style="solid",shape="box"];2791 -> 4147[label="",style="solid", color="burlywood", weight=9]; 4147 -> 2957[label="",style="solid", color="burlywood", weight=3]; 4148[label="vyw4300/[]",fontsize=10,color="white",style="solid",shape="box"];2791 -> 4148[label="",style="solid", color="burlywood", weight=9]; 4148 -> 2958[label="",style="solid", color="burlywood", weight=3]; 2833 -> 2550[label="",style="dashed", color="red", weight=0]; 2833[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2833 -> 2959[label="",style="dashed", color="magenta", weight=3]; 2833 -> 2960[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2551[label="",style="dashed", color="red", weight=0]; 2834[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2834 -> 2961[label="",style="dashed", color="magenta", weight=3]; 2834 -> 2962[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2552[label="",style="dashed", color="red", weight=0]; 2835[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2835 -> 2963[label="",style="dashed", color="magenta", weight=3]; 2835 -> 2964[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2553[label="",style="dashed", color="red", weight=0]; 2836[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2836 -> 2965[label="",style="dashed", color="magenta", weight=3]; 2836 -> 2966[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2554[label="",style="dashed", color="red", weight=0]; 2837[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2837 -> 2967[label="",style="dashed", color="magenta", weight=3]; 2837 -> 2968[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2555[label="",style="dashed", color="red", weight=0]; 2838[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2838 -> 2969[label="",style="dashed", color="magenta", weight=3]; 2838 -> 2970[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2556[label="",style="dashed", color="red", weight=0]; 2839[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2839 -> 2971[label="",style="dashed", color="magenta", weight=3]; 2839 -> 2972[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2557[label="",style="dashed", color="red", weight=0]; 2840[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2840 -> 2973[label="",style="dashed", color="magenta", weight=3]; 2840 -> 2974[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2558[label="",style="dashed", color="red", weight=0]; 2841[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2841 -> 2975[label="",style="dashed", color="magenta", weight=3]; 2841 -> 2976[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2559[label="",style="dashed", color="red", weight=0]; 2842[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2842 -> 2977[label="",style="dashed", color="magenta", weight=3]; 2842 -> 2978[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2560[label="",style="dashed", color="red", weight=0]; 2843[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2843 -> 2979[label="",style="dashed", color="magenta", weight=3]; 2843 -> 2980[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2561[label="",style="dashed", color="red", weight=0]; 2844[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2844 -> 2981[label="",style="dashed", color="magenta", weight=3]; 2844 -> 2982[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2562[label="",style="dashed", color="red", weight=0]; 2845[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2845 -> 2983[label="",style="dashed", color="magenta", weight=3]; 2845 -> 2984[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2563[label="",style="dashed", color="red", weight=0]; 2846[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];2846 -> 2985[label="",style="dashed", color="magenta", weight=3]; 2846 -> 2986[label="",style="dashed", color="magenta", weight=3]; 2792[label="GT",fontsize=16,color="green",shape="box"];2793[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2793 -> 2987[label="",style="solid", color="black", weight=3]; 2794[label="GT",fontsize=16,color="green",shape="box"];2795[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2795 -> 2988[label="",style="solid", color="black", weight=3]; 2796[label="GT",fontsize=16,color="green",shape="box"];2797[label="compare vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4149[label="vyw4300/()",fontsize=10,color="white",style="solid",shape="box"];2797 -> 4149[label="",style="solid", color="burlywood", weight=9]; 4149 -> 2989[label="",style="solid", color="burlywood", weight=3]; 2798[label="GT",fontsize=16,color="green",shape="box"];2799[label="compare vyw4300 vyw4400",fontsize=16,color="black",shape="triangle"];2799 -> 2990[label="",style="solid", color="black", weight=3]; 2847[label="primMulNat (Succ vyw40100) vyw30000",fontsize=16,color="burlywood",shape="box"];4150[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];2847 -> 4150[label="",style="solid", color="burlywood", weight=9]; 4150 -> 2991[label="",style="solid", color="burlywood", weight=3]; 4151[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2847 -> 4151[label="",style="solid", color="burlywood", weight=9]; 4151 -> 2992[label="",style="solid", color="burlywood", weight=3]; 2848[label="primMulNat Zero vyw30000",fontsize=16,color="burlywood",shape="box"];4152[label="vyw30000/Succ vyw300000",fontsize=10,color="white",style="solid",shape="box"];2848 -> 4152[label="",style="solid", color="burlywood", weight=9]; 4152 -> 2993[label="",style="solid", color="burlywood", weight=3]; 4153[label="vyw30000/Zero",fontsize=10,color="white",style="solid",shape="box"];2848 -> 4153[label="",style="solid", color="burlywood", weight=9]; 4153 -> 2994[label="",style="solid", color="burlywood", weight=3]; 2849[label="vyw30000",fontsize=16,color="green",shape="box"];2850[label="vyw4010",fontsize=16,color="green",shape="box"];2851[label="vyw4010",fontsize=16,color="green",shape="box"];2852[label="vyw30000",fontsize=16,color="green",shape="box"];2853[label="primCmpChar vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4154[label="vyw4300/Char vyw43000",fontsize=10,color="white",style="solid",shape="box"];2853 -> 4154[label="",style="solid", color="burlywood", weight=9]; 4154 -> 2995[label="",style="solid", color="burlywood", weight=3]; 2854[label="True",fontsize=16,color="green",shape="box"];2855[label="False",fontsize=16,color="green",shape="box"];2856[label="vyw43000",fontsize=16,color="green",shape="box"];2857[label="vyw44000",fontsize=16,color="green",shape="box"];2858[label="vyw43000",fontsize=16,color="green",shape="box"];2859[label="vyw44000",fontsize=16,color="green",shape="box"];2860[label="vyw43000",fontsize=16,color="green",shape="box"];2861[label="vyw44000",fontsize=16,color="green",shape="box"];2862[label="vyw43000",fontsize=16,color="green",shape="box"];2863[label="vyw44000",fontsize=16,color="green",shape="box"];2864[label="vyw43000",fontsize=16,color="green",shape="box"];2865[label="vyw44000",fontsize=16,color="green",shape="box"];2866[label="vyw43000",fontsize=16,color="green",shape="box"];2867[label="vyw44000",fontsize=16,color="green",shape="box"];2868[label="vyw43000",fontsize=16,color="green",shape="box"];2869[label="vyw44000",fontsize=16,color="green",shape="box"];2870[label="vyw43000",fontsize=16,color="green",shape="box"];2871[label="vyw44000",fontsize=16,color="green",shape="box"];2872[label="vyw43000",fontsize=16,color="green",shape="box"];2873[label="vyw44000",fontsize=16,color="green",shape="box"];2874[label="vyw43000",fontsize=16,color="green",shape="box"];2875[label="vyw44000",fontsize=16,color="green",shape="box"];2876[label="vyw43000",fontsize=16,color="green",shape="box"];2877[label="vyw44000",fontsize=16,color="green",shape="box"];2878[label="vyw43000",fontsize=16,color="green",shape="box"];2879[label="vyw44000",fontsize=16,color="green",shape="box"];2880[label="vyw43000",fontsize=16,color="green",shape="box"];2881[label="vyw44000",fontsize=16,color="green",shape="box"];2882[label="vyw43000",fontsize=16,color="green",shape="box"];2883[label="vyw44000",fontsize=16,color="green",shape="box"];2884[label="vyw43000",fontsize=16,color="green",shape="box"];2885[label="vyw44000",fontsize=16,color="green",shape="box"];2886[label="vyw43000",fontsize=16,color="green",shape="box"];2887[label="vyw44000",fontsize=16,color="green",shape="box"];2888[label="vyw43000",fontsize=16,color="green",shape="box"];2889[label="vyw44000",fontsize=16,color="green",shape="box"];2890[label="vyw43000",fontsize=16,color="green",shape="box"];2891[label="vyw44000",fontsize=16,color="green",shape="box"];2892[label="vyw43000",fontsize=16,color="green",shape="box"];2893[label="vyw44000",fontsize=16,color="green",shape="box"];2894[label="vyw43000",fontsize=16,color="green",shape="box"];2895[label="vyw44000",fontsize=16,color="green",shape="box"];2896[label="vyw43000",fontsize=16,color="green",shape="box"];2897[label="vyw44000",fontsize=16,color="green",shape="box"];2898[label="vyw43000",fontsize=16,color="green",shape="box"];2899[label="vyw44000",fontsize=16,color="green",shape="box"];2900[label="vyw43000",fontsize=16,color="green",shape="box"];2901[label="vyw44000",fontsize=16,color="green",shape="box"];2902[label="vyw43000",fontsize=16,color="green",shape="box"];2903[label="vyw44000",fontsize=16,color="green",shape="box"];2904[label="vyw43000",fontsize=16,color="green",shape="box"];2905[label="vyw44000",fontsize=16,color="green",shape="box"];2906[label="vyw43000",fontsize=16,color="green",shape="box"];2907[label="vyw44000",fontsize=16,color="green",shape="box"];2908[label="vyw43000",fontsize=16,color="green",shape="box"];2909[label="vyw44000",fontsize=16,color="green",shape="box"];2910[label="vyw43000",fontsize=16,color="green",shape="box"];2911[label="vyw44000",fontsize=16,color="green",shape="box"];2912[label="compare (vyw43000 :% vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4155[label="vyw4400/vyw44000 :% vyw44001",fontsize=10,color="white",style="solid",shape="box"];2912 -> 4155[label="",style="solid", color="burlywood", weight=9]; 4155 -> 2996[label="",style="solid", color="burlywood", weight=3]; 2922[label="vyw43001 <= vyw44001",fontsize=16,color="blue",shape="box"];4156[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4156[label="",style="solid", color="blue", weight=9]; 4156 -> 2997[label="",style="solid", color="blue", weight=3]; 4157[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4157[label="",style="solid", color="blue", weight=9]; 4157 -> 2998[label="",style="solid", color="blue", weight=3]; 4158[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4158[label="",style="solid", color="blue", weight=9]; 4158 -> 2999[label="",style="solid", color="blue", weight=3]; 4159[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4159[label="",style="solid", color="blue", weight=9]; 4159 -> 3000[label="",style="solid", color="blue", weight=3]; 4160[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4160[label="",style="solid", color="blue", weight=9]; 4160 -> 3001[label="",style="solid", color="blue", weight=3]; 4161[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4161[label="",style="solid", color="blue", weight=9]; 4161 -> 3002[label="",style="solid", color="blue", weight=3]; 4162[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4162[label="",style="solid", color="blue", weight=9]; 4162 -> 3003[label="",style="solid", color="blue", weight=3]; 4163[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4163[label="",style="solid", color="blue", weight=9]; 4163 -> 3004[label="",style="solid", color="blue", weight=3]; 4164[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4164[label="",style="solid", color="blue", weight=9]; 4164 -> 3005[label="",style="solid", color="blue", weight=3]; 4165[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4165[label="",style="solid", color="blue", weight=9]; 4165 -> 3006[label="",style="solid", color="blue", weight=3]; 4166[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4166[label="",style="solid", color="blue", weight=9]; 4166 -> 3007[label="",style="solid", color="blue", weight=3]; 4167[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4167[label="",style="solid", color="blue", weight=9]; 4167 -> 3008[label="",style="solid", color="blue", weight=3]; 4168[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4168[label="",style="solid", color="blue", weight=9]; 4168 -> 3009[label="",style="solid", color="blue", weight=3]; 4169[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2922 -> 4169[label="",style="solid", color="blue", weight=9]; 4169 -> 3010[label="",style="solid", color="blue", weight=3]; 2923[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4170[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4170[label="",style="solid", color="blue", weight=9]; 4170 -> 3011[label="",style="solid", color="blue", weight=3]; 4171[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4171[label="",style="solid", color="blue", weight=9]; 4171 -> 3012[label="",style="solid", color="blue", weight=3]; 4172[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4172[label="",style="solid", color="blue", weight=9]; 4172 -> 3013[label="",style="solid", color="blue", weight=3]; 4173[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4173[label="",style="solid", color="blue", weight=9]; 4173 -> 3014[label="",style="solid", color="blue", weight=3]; 4174[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4174[label="",style="solid", color="blue", weight=9]; 4174 -> 3015[label="",style="solid", color="blue", weight=3]; 4175[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4175[label="",style="solid", color="blue", weight=9]; 4175 -> 3016[label="",style="solid", color="blue", weight=3]; 4176[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4176[label="",style="solid", color="blue", weight=9]; 4176 -> 3017[label="",style="solid", color="blue", weight=3]; 4177[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4177[label="",style="solid", color="blue", weight=9]; 4177 -> 3018[label="",style="solid", color="blue", weight=3]; 4178[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4178[label="",style="solid", color="blue", weight=9]; 4178 -> 3019[label="",style="solid", color="blue", weight=3]; 4179[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4179[label="",style="solid", color="blue", weight=9]; 4179 -> 3020[label="",style="solid", color="blue", weight=3]; 4180[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4180[label="",style="solid", color="blue", weight=9]; 4180 -> 3021[label="",style="solid", color="blue", weight=3]; 4181[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4181[label="",style="solid", color="blue", weight=9]; 4181 -> 3022[label="",style="solid", color="blue", weight=3]; 4182[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4182[label="",style="solid", color="blue", weight=9]; 4182 -> 3023[label="",style="solid", color="blue", weight=3]; 4183[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2923 -> 4183[label="",style="solid", color="blue", weight=9]; 4183 -> 3024[label="",style="solid", color="blue", weight=3]; 2924[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2924 -> 3025[label="",style="solid", color="black", weight=3]; 2925[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2925 -> 3026[label="",style="solid", color="black", weight=3]; 2926[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2926 -> 3027[label="",style="solid", color="black", weight=3]; 2927[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2927 -> 3028[label="",style="solid", color="black", weight=3]; 2928[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2928 -> 3029[label="",style="solid", color="black", weight=3]; 2929[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2929 -> 3030[label="",style="solid", color="black", weight=3]; 2930[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2930 -> 3031[label="",style="solid", color="black", weight=3]; 2931[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2931 -> 3032[label="",style="solid", color="black", weight=3]; 2932[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2932 -> 3033[label="",style="solid", color="black", weight=3]; 2933[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2933 -> 3034[label="",style="solid", color="black", weight=3]; 2934[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2934 -> 3035[label="",style="solid", color="black", weight=3]; 2935[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2935 -> 3036[label="",style="solid", color="black", weight=3]; 2936[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2936 -> 3037[label="",style="solid", color="black", weight=3]; 2937[label="vyw43000 < vyw44000",fontsize=16,color="black",shape="triangle"];2937 -> 3038[label="",style="solid", color="black", weight=3]; 2938[label="False || vyw139",fontsize=16,color="black",shape="box"];2938 -> 3039[label="",style="solid", color="black", weight=3]; 2939[label="True || vyw139",fontsize=16,color="black",shape="box"];2939 -> 3040[label="",style="solid", color="black", weight=3]; 2940 -> 2915[label="",style="dashed", color="red", weight=0]; 2940[label="vyw43001 < vyw44001 || vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];2940 -> 3041[label="",style="dashed", color="magenta", weight=3]; 2940 -> 3042[label="",style="dashed", color="magenta", weight=3]; 2941[label="vyw43000 == vyw44000",fontsize=16,color="blue",shape="box"];4184[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4184[label="",style="solid", color="blue", weight=9]; 4184 -> 3043[label="",style="solid", color="blue", weight=3]; 4185[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4185[label="",style="solid", color="blue", weight=9]; 4185 -> 3044[label="",style="solid", color="blue", weight=3]; 4186[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4186[label="",style="solid", color="blue", weight=9]; 4186 -> 3045[label="",style="solid", color="blue", weight=3]; 4187[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4187[label="",style="solid", color="blue", weight=9]; 4187 -> 3046[label="",style="solid", color="blue", weight=3]; 4188[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4188[label="",style="solid", color="blue", weight=9]; 4188 -> 3047[label="",style="solid", color="blue", weight=3]; 4189[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4189[label="",style="solid", color="blue", weight=9]; 4189 -> 3048[label="",style="solid", color="blue", weight=3]; 4190[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4190[label="",style="solid", color="blue", weight=9]; 4190 -> 3049[label="",style="solid", color="blue", weight=3]; 4191[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4191[label="",style="solid", color="blue", weight=9]; 4191 -> 3050[label="",style="solid", color="blue", weight=3]; 4192[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4192[label="",style="solid", color="blue", weight=9]; 4192 -> 3051[label="",style="solid", color="blue", weight=3]; 4193[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4193[label="",style="solid", color="blue", weight=9]; 4193 -> 3052[label="",style="solid", color="blue", weight=3]; 4194[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4194[label="",style="solid", color="blue", weight=9]; 4194 -> 3053[label="",style="solid", color="blue", weight=3]; 4195[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4195[label="",style="solid", color="blue", weight=9]; 4195 -> 3054[label="",style="solid", color="blue", weight=3]; 4196[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4196[label="",style="solid", color="blue", weight=9]; 4196 -> 3055[label="",style="solid", color="blue", weight=3]; 4197[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];2941 -> 4197[label="",style="solid", color="blue", weight=9]; 4197 -> 3056[label="",style="solid", color="blue", weight=3]; 2942 -> 2924[label="",style="dashed", color="red", weight=0]; 2942[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2942 -> 3057[label="",style="dashed", color="magenta", weight=3]; 2942 -> 3058[label="",style="dashed", color="magenta", weight=3]; 2943 -> 2925[label="",style="dashed", color="red", weight=0]; 2943[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2943 -> 3059[label="",style="dashed", color="magenta", weight=3]; 2943 -> 3060[label="",style="dashed", color="magenta", weight=3]; 2944 -> 2926[label="",style="dashed", color="red", weight=0]; 2944[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2944 -> 3061[label="",style="dashed", color="magenta", weight=3]; 2944 -> 3062[label="",style="dashed", color="magenta", weight=3]; 2945 -> 2927[label="",style="dashed", color="red", weight=0]; 2945[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2945 -> 3063[label="",style="dashed", color="magenta", weight=3]; 2945 -> 3064[label="",style="dashed", color="magenta", weight=3]; 2946 -> 2928[label="",style="dashed", color="red", weight=0]; 2946[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2946 -> 3065[label="",style="dashed", color="magenta", weight=3]; 2946 -> 3066[label="",style="dashed", color="magenta", weight=3]; 2947 -> 2929[label="",style="dashed", color="red", weight=0]; 2947[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2947 -> 3067[label="",style="dashed", color="magenta", weight=3]; 2947 -> 3068[label="",style="dashed", color="magenta", weight=3]; 2948 -> 2930[label="",style="dashed", color="red", weight=0]; 2948[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2948 -> 3069[label="",style="dashed", color="magenta", weight=3]; 2948 -> 3070[label="",style="dashed", color="magenta", weight=3]; 2949 -> 2931[label="",style="dashed", color="red", weight=0]; 2949[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2949 -> 3071[label="",style="dashed", color="magenta", weight=3]; 2949 -> 3072[label="",style="dashed", color="magenta", weight=3]; 2950 -> 2932[label="",style="dashed", color="red", weight=0]; 2950[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2950 -> 3073[label="",style="dashed", color="magenta", weight=3]; 2950 -> 3074[label="",style="dashed", color="magenta", weight=3]; 2951 -> 2933[label="",style="dashed", color="red", weight=0]; 2951[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2951 -> 3075[label="",style="dashed", color="magenta", weight=3]; 2951 -> 3076[label="",style="dashed", color="magenta", weight=3]; 2952 -> 2934[label="",style="dashed", color="red", weight=0]; 2952[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2952 -> 3077[label="",style="dashed", color="magenta", weight=3]; 2952 -> 3078[label="",style="dashed", color="magenta", weight=3]; 2953 -> 2935[label="",style="dashed", color="red", weight=0]; 2953[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2953 -> 3079[label="",style="dashed", color="magenta", weight=3]; 2953 -> 3080[label="",style="dashed", color="magenta", weight=3]; 2954 -> 2936[label="",style="dashed", color="red", weight=0]; 2954[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2954 -> 3081[label="",style="dashed", color="magenta", weight=3]; 2954 -> 3082[label="",style="dashed", color="magenta", weight=3]; 2955 -> 2937[label="",style="dashed", color="red", weight=0]; 2955[label="vyw43000 < vyw44000",fontsize=16,color="magenta"];2955 -> 3083[label="",style="dashed", color="magenta", weight=3]; 2955 -> 3084[label="",style="dashed", color="magenta", weight=3]; 2956[label="compare (Integer vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4198[label="vyw4400/Integer vyw44000",fontsize=10,color="white",style="solid",shape="box"];2956 -> 4198[label="",style="solid", color="burlywood", weight=9]; 4198 -> 3085[label="",style="solid", color="burlywood", weight=3]; 2957[label="compare (vyw43000 : vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4199[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4199[label="",style="solid", color="burlywood", weight=9]; 4199 -> 3086[label="",style="solid", color="burlywood", weight=3]; 4200[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2957 -> 4200[label="",style="solid", color="burlywood", weight=9]; 4200 -> 3087[label="",style="solid", color="burlywood", weight=3]; 2958[label="compare [] vyw4400",fontsize=16,color="burlywood",shape="box"];4201[label="vyw4400/vyw44000 : vyw44001",fontsize=10,color="white",style="solid",shape="box"];2958 -> 4201[label="",style="solid", color="burlywood", weight=9]; 4201 -> 3088[label="",style="solid", color="burlywood", weight=3]; 4202[label="vyw4400/[]",fontsize=10,color="white",style="solid",shape="box"];2958 -> 4202[label="",style="solid", color="burlywood", weight=9]; 4202 -> 3089[label="",style="solid", color="burlywood", weight=3]; 2959[label="vyw43000",fontsize=16,color="green",shape="box"];2960[label="vyw44000",fontsize=16,color="green",shape="box"];2961[label="vyw43000",fontsize=16,color="green",shape="box"];2962[label="vyw44000",fontsize=16,color="green",shape="box"];2963[label="vyw43000",fontsize=16,color="green",shape="box"];2964[label="vyw44000",fontsize=16,color="green",shape="box"];2965[label="vyw43000",fontsize=16,color="green",shape="box"];2966[label="vyw44000",fontsize=16,color="green",shape="box"];2967[label="vyw43000",fontsize=16,color="green",shape="box"];2968[label="vyw44000",fontsize=16,color="green",shape="box"];2969[label="vyw43000",fontsize=16,color="green",shape="box"];2970[label="vyw44000",fontsize=16,color="green",shape="box"];2971[label="vyw43000",fontsize=16,color="green",shape="box"];2972[label="vyw44000",fontsize=16,color="green",shape="box"];2973[label="vyw43000",fontsize=16,color="green",shape="box"];2974[label="vyw44000",fontsize=16,color="green",shape="box"];2975[label="vyw43000",fontsize=16,color="green",shape="box"];2976[label="vyw44000",fontsize=16,color="green",shape="box"];2977[label="vyw43000",fontsize=16,color="green",shape="box"];2978[label="vyw44000",fontsize=16,color="green",shape="box"];2979[label="vyw43000",fontsize=16,color="green",shape="box"];2980[label="vyw44000",fontsize=16,color="green",shape="box"];2981[label="vyw43000",fontsize=16,color="green",shape="box"];2982[label="vyw44000",fontsize=16,color="green",shape="box"];2983[label="vyw43000",fontsize=16,color="green",shape="box"];2984[label="vyw44000",fontsize=16,color="green",shape="box"];2985[label="vyw43000",fontsize=16,color="green",shape="box"];2986[label="vyw44000",fontsize=16,color="green",shape="box"];2987[label="primCmpFloat vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4203[label="vyw4300/Float vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2987 -> 4203[label="",style="solid", color="burlywood", weight=9]; 4203 -> 3090[label="",style="solid", color="burlywood", weight=3]; 2988[label="primCmpDouble vyw4300 vyw4400",fontsize=16,color="burlywood",shape="box"];4204[label="vyw4300/Double vyw43000 vyw43001",fontsize=10,color="white",style="solid",shape="box"];2988 -> 4204[label="",style="solid", color="burlywood", weight=9]; 4204 -> 3091[label="",style="solid", color="burlywood", weight=3]; 2989[label="compare () vyw4400",fontsize=16,color="burlywood",shape="box"];4205[label="vyw4400/()",fontsize=10,color="white",style="solid",shape="box"];2989 -> 4205[label="",style="solid", color="burlywood", weight=9]; 4205 -> 3092[label="",style="solid", color="burlywood", weight=3]; 2990[label="primCmpInt vyw4300 vyw4400",fontsize=16,color="burlywood",shape="triangle"];4206[label="vyw4300/Pos vyw43000",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4206[label="",style="solid", color="burlywood", weight=9]; 4206 -> 3093[label="",style="solid", color="burlywood", weight=3]; 4207[label="vyw4300/Neg vyw43000",fontsize=10,color="white",style="solid",shape="box"];2990 -> 4207[label="",style="solid", color="burlywood", weight=9]; 4207 -> 3094[label="",style="solid", color="burlywood", weight=3]; 2991[label="primMulNat (Succ vyw40100) (Succ vyw300000)",fontsize=16,color="black",shape="box"];2991 -> 3095[label="",style="solid", color="black", weight=3]; 2992[label="primMulNat (Succ vyw40100) Zero",fontsize=16,color="black",shape="box"];2992 -> 3096[label="",style="solid", color="black", weight=3]; 2993[label="primMulNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];2993 -> 3097[label="",style="solid", color="black", weight=3]; 2994[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];2994 -> 3098[label="",style="solid", color="black", weight=3]; 2995[label="primCmpChar (Char vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4208[label="vyw4400/Char vyw44000",fontsize=10,color="white",style="solid",shape="box"];2995 -> 4208[label="",style="solid", color="burlywood", weight=9]; 4208 -> 3099[label="",style="solid", color="burlywood", weight=3]; 2996[label="compare (vyw43000 :% vyw43001) (vyw44000 :% vyw44001)",fontsize=16,color="black",shape="box"];2996 -> 3100[label="",style="solid", color="black", weight=3]; 2997 -> 2550[label="",style="dashed", color="red", weight=0]; 2997[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];2997 -> 3101[label="",style="dashed", color="magenta", weight=3]; 2997 -> 3102[label="",style="dashed", color="magenta", weight=3]; 2998 -> 2551[label="",style="dashed", color="red", weight=0]; 2998[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];2998 -> 3103[label="",style="dashed", color="magenta", weight=3]; 2998 -> 3104[label="",style="dashed", color="magenta", weight=3]; 2999 -> 2552[label="",style="dashed", color="red", weight=0]; 2999[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];2999 -> 3105[label="",style="dashed", color="magenta", weight=3]; 2999 -> 3106[label="",style="dashed", color="magenta", weight=3]; 3000 -> 2553[label="",style="dashed", color="red", weight=0]; 3000[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3000 -> 3107[label="",style="dashed", color="magenta", weight=3]; 3000 -> 3108[label="",style="dashed", color="magenta", weight=3]; 3001 -> 2554[label="",style="dashed", color="red", weight=0]; 3001[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3001 -> 3109[label="",style="dashed", color="magenta", weight=3]; 3001 -> 3110[label="",style="dashed", color="magenta", weight=3]; 3002 -> 2555[label="",style="dashed", color="red", weight=0]; 3002[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3002 -> 3111[label="",style="dashed", color="magenta", weight=3]; 3002 -> 3112[label="",style="dashed", color="magenta", weight=3]; 3003 -> 2556[label="",style="dashed", color="red", weight=0]; 3003[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3003 -> 3113[label="",style="dashed", color="magenta", weight=3]; 3003 -> 3114[label="",style="dashed", color="magenta", weight=3]; 3004 -> 2557[label="",style="dashed", color="red", weight=0]; 3004[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3004 -> 3115[label="",style="dashed", color="magenta", weight=3]; 3004 -> 3116[label="",style="dashed", color="magenta", weight=3]; 3005 -> 2558[label="",style="dashed", color="red", weight=0]; 3005[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3005 -> 3117[label="",style="dashed", color="magenta", weight=3]; 3005 -> 3118[label="",style="dashed", color="magenta", weight=3]; 3006 -> 2559[label="",style="dashed", color="red", weight=0]; 3006[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3006 -> 3119[label="",style="dashed", color="magenta", weight=3]; 3006 -> 3120[label="",style="dashed", color="magenta", weight=3]; 3007 -> 2560[label="",style="dashed", color="red", weight=0]; 3007[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3007 -> 3121[label="",style="dashed", color="magenta", weight=3]; 3007 -> 3122[label="",style="dashed", color="magenta", weight=3]; 3008 -> 2561[label="",style="dashed", color="red", weight=0]; 3008[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3008 -> 3123[label="",style="dashed", color="magenta", weight=3]; 3008 -> 3124[label="",style="dashed", color="magenta", weight=3]; 3009 -> 2562[label="",style="dashed", color="red", weight=0]; 3009[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3009 -> 3125[label="",style="dashed", color="magenta", weight=3]; 3009 -> 3126[label="",style="dashed", color="magenta", weight=3]; 3010 -> 2563[label="",style="dashed", color="red", weight=0]; 3010[label="vyw43001 <= vyw44001",fontsize=16,color="magenta"];3010 -> 3127[label="",style="dashed", color="magenta", weight=3]; 3010 -> 3128[label="",style="dashed", color="magenta", weight=3]; 3011 -> 1883[label="",style="dashed", color="red", weight=0]; 3011[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3011 -> 3129[label="",style="dashed", color="magenta", weight=3]; 3011 -> 3130[label="",style="dashed", color="magenta", weight=3]; 3012 -> 1884[label="",style="dashed", color="red", weight=0]; 3012[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3012 -> 3131[label="",style="dashed", color="magenta", weight=3]; 3012 -> 3132[label="",style="dashed", color="magenta", weight=3]; 3013 -> 44[label="",style="dashed", color="red", weight=0]; 3013[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3013 -> 3133[label="",style="dashed", color="magenta", weight=3]; 3013 -> 3134[label="",style="dashed", color="magenta", weight=3]; 3014 -> 1889[label="",style="dashed", color="red", weight=0]; 3014[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3014 -> 3135[label="",style="dashed", color="magenta", weight=3]; 3014 -> 3136[label="",style="dashed", color="magenta", weight=3]; 3015 -> 1893[label="",style="dashed", color="red", weight=0]; 3015[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3015 -> 3137[label="",style="dashed", color="magenta", weight=3]; 3015 -> 3138[label="",style="dashed", color="magenta", weight=3]; 3016 -> 1891[label="",style="dashed", color="red", weight=0]; 3016[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3016 -> 3139[label="",style="dashed", color="magenta", weight=3]; 3016 -> 3140[label="",style="dashed", color="magenta", weight=3]; 3017 -> 1885[label="",style="dashed", color="red", weight=0]; 3017[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3017 -> 3141[label="",style="dashed", color="magenta", weight=3]; 3017 -> 3142[label="",style="dashed", color="magenta", weight=3]; 3018 -> 1880[label="",style="dashed", color="red", weight=0]; 3018[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3018 -> 3143[label="",style="dashed", color="magenta", weight=3]; 3018 -> 3144[label="",style="dashed", color="magenta", weight=3]; 3019 -> 1887[label="",style="dashed", color="red", weight=0]; 3019[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3019 -> 3145[label="",style="dashed", color="magenta", weight=3]; 3019 -> 3146[label="",style="dashed", color="magenta", weight=3]; 3020 -> 1886[label="",style="dashed", color="red", weight=0]; 3020[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3020 -> 3147[label="",style="dashed", color="magenta", weight=3]; 3020 -> 3148[label="",style="dashed", color="magenta", weight=3]; 3021 -> 1888[label="",style="dashed", color="red", weight=0]; 3021[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3021 -> 3149[label="",style="dashed", color="magenta", weight=3]; 3021 -> 3150[label="",style="dashed", color="magenta", weight=3]; 3022 -> 1890[label="",style="dashed", color="red", weight=0]; 3022[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3022 -> 3151[label="",style="dashed", color="magenta", weight=3]; 3022 -> 3152[label="",style="dashed", color="magenta", weight=3]; 3023 -> 1881[label="",style="dashed", color="red", weight=0]; 3023[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3023 -> 3153[label="",style="dashed", color="magenta", weight=3]; 3023 -> 3154[label="",style="dashed", color="magenta", weight=3]; 3024 -> 1892[label="",style="dashed", color="red", weight=0]; 3024[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3024 -> 3155[label="",style="dashed", color="magenta", weight=3]; 3024 -> 3156[label="",style="dashed", color="magenta", weight=3]; 3025 -> 44[label="",style="dashed", color="red", weight=0]; 3025[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3025 -> 3157[label="",style="dashed", color="magenta", weight=3]; 3025 -> 3158[label="",style="dashed", color="magenta", weight=3]; 3026 -> 44[label="",style="dashed", color="red", weight=0]; 3026[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3026 -> 3159[label="",style="dashed", color="magenta", weight=3]; 3026 -> 3160[label="",style="dashed", color="magenta", weight=3]; 3027 -> 44[label="",style="dashed", color="red", weight=0]; 3027[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3027 -> 3161[label="",style="dashed", color="magenta", weight=3]; 3027 -> 3162[label="",style="dashed", color="magenta", weight=3]; 3028 -> 44[label="",style="dashed", color="red", weight=0]; 3028[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3028 -> 3163[label="",style="dashed", color="magenta", weight=3]; 3028 -> 3164[label="",style="dashed", color="magenta", weight=3]; 3029 -> 44[label="",style="dashed", color="red", weight=0]; 3029[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3029 -> 3165[label="",style="dashed", color="magenta", weight=3]; 3029 -> 3166[label="",style="dashed", color="magenta", weight=3]; 3030 -> 44[label="",style="dashed", color="red", weight=0]; 3030[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3030 -> 3167[label="",style="dashed", color="magenta", weight=3]; 3030 -> 3168[label="",style="dashed", color="magenta", weight=3]; 3031 -> 44[label="",style="dashed", color="red", weight=0]; 3031[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3031 -> 3169[label="",style="dashed", color="magenta", weight=3]; 3031 -> 3170[label="",style="dashed", color="magenta", weight=3]; 3032 -> 44[label="",style="dashed", color="red", weight=0]; 3032[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3032 -> 3171[label="",style="dashed", color="magenta", weight=3]; 3032 -> 3172[label="",style="dashed", color="magenta", weight=3]; 3033 -> 44[label="",style="dashed", color="red", weight=0]; 3033[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3033 -> 3173[label="",style="dashed", color="magenta", weight=3]; 3033 -> 3174[label="",style="dashed", color="magenta", weight=3]; 3034 -> 44[label="",style="dashed", color="red", weight=0]; 3034[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3034 -> 3175[label="",style="dashed", color="magenta", weight=3]; 3034 -> 3176[label="",style="dashed", color="magenta", weight=3]; 3035 -> 44[label="",style="dashed", color="red", weight=0]; 3035[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3035 -> 3177[label="",style="dashed", color="magenta", weight=3]; 3035 -> 3178[label="",style="dashed", color="magenta", weight=3]; 3036 -> 44[label="",style="dashed", color="red", weight=0]; 3036[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3036 -> 3179[label="",style="dashed", color="magenta", weight=3]; 3036 -> 3180[label="",style="dashed", color="magenta", weight=3]; 3037 -> 44[label="",style="dashed", color="red", weight=0]; 3037[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3037 -> 3181[label="",style="dashed", color="magenta", weight=3]; 3037 -> 3182[label="",style="dashed", color="magenta", weight=3]; 3038 -> 44[label="",style="dashed", color="red", weight=0]; 3038[label="compare vyw43000 vyw44000 == LT",fontsize=16,color="magenta"];3038 -> 3183[label="",style="dashed", color="magenta", weight=3]; 3038 -> 3184[label="",style="dashed", color="magenta", weight=3]; 3039[label="vyw139",fontsize=16,color="green",shape="box"];3040[label="True",fontsize=16,color="green",shape="box"];3041 -> 2242[label="",style="dashed", color="red", weight=0]; 3041[label="vyw43001 == vyw44001 && vyw43002 <= vyw44002",fontsize=16,color="magenta"];3041 -> 3185[label="",style="dashed", color="magenta", weight=3]; 3041 -> 3186[label="",style="dashed", color="magenta", weight=3]; 3042[label="vyw43001 < vyw44001",fontsize=16,color="blue",shape="box"];4209[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4209[label="",style="solid", color="blue", weight=9]; 4209 -> 3187[label="",style="solid", color="blue", weight=3]; 4210[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4210[label="",style="solid", color="blue", weight=9]; 4210 -> 3188[label="",style="solid", color="blue", weight=3]; 4211[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4211[label="",style="solid", color="blue", weight=9]; 4211 -> 3189[label="",style="solid", color="blue", weight=3]; 4212[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4212[label="",style="solid", color="blue", weight=9]; 4212 -> 3190[label="",style="solid", color="blue", weight=3]; 4213[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4213[label="",style="solid", color="blue", weight=9]; 4213 -> 3191[label="",style="solid", color="blue", weight=3]; 4214[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4214[label="",style="solid", color="blue", weight=9]; 4214 -> 3192[label="",style="solid", color="blue", weight=3]; 4215[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4215[label="",style="solid", color="blue", weight=9]; 4215 -> 3193[label="",style="solid", color="blue", weight=3]; 4216[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4216[label="",style="solid", color="blue", weight=9]; 4216 -> 3194[label="",style="solid", color="blue", weight=3]; 4217[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4217[label="",style="solid", color="blue", weight=9]; 4217 -> 3195[label="",style="solid", color="blue", weight=3]; 4218[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4218[label="",style="solid", color="blue", weight=9]; 4218 -> 3196[label="",style="solid", color="blue", weight=3]; 4219[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4219[label="",style="solid", color="blue", weight=9]; 4219 -> 3197[label="",style="solid", color="blue", weight=3]; 4220[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4220[label="",style="solid", color="blue", weight=9]; 4220 -> 3198[label="",style="solid", color="blue", weight=3]; 4221[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4221[label="",style="solid", color="blue", weight=9]; 4221 -> 3199[label="",style="solid", color="blue", weight=3]; 4222[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3042 -> 4222[label="",style="solid", color="blue", weight=9]; 4222 -> 3200[label="",style="solid", color="blue", weight=3]; 3043 -> 1883[label="",style="dashed", color="red", weight=0]; 3043[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3043 -> 3201[label="",style="dashed", color="magenta", weight=3]; 3043 -> 3202[label="",style="dashed", color="magenta", weight=3]; 3044 -> 1884[label="",style="dashed", color="red", weight=0]; 3044[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3044 -> 3203[label="",style="dashed", color="magenta", weight=3]; 3044 -> 3204[label="",style="dashed", color="magenta", weight=3]; 3045 -> 44[label="",style="dashed", color="red", weight=0]; 3045[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3045 -> 3205[label="",style="dashed", color="magenta", weight=3]; 3045 -> 3206[label="",style="dashed", color="magenta", weight=3]; 3046 -> 1889[label="",style="dashed", color="red", weight=0]; 3046[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3046 -> 3207[label="",style="dashed", color="magenta", weight=3]; 3046 -> 3208[label="",style="dashed", color="magenta", weight=3]; 3047 -> 1893[label="",style="dashed", color="red", weight=0]; 3047[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3047 -> 3209[label="",style="dashed", color="magenta", weight=3]; 3047 -> 3210[label="",style="dashed", color="magenta", weight=3]; 3048 -> 1891[label="",style="dashed", color="red", weight=0]; 3048[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3048 -> 3211[label="",style="dashed", color="magenta", weight=3]; 3048 -> 3212[label="",style="dashed", color="magenta", weight=3]; 3049 -> 1885[label="",style="dashed", color="red", weight=0]; 3049[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3049 -> 3213[label="",style="dashed", color="magenta", weight=3]; 3049 -> 3214[label="",style="dashed", color="magenta", weight=3]; 3050 -> 1880[label="",style="dashed", color="red", weight=0]; 3050[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3050 -> 3215[label="",style="dashed", color="magenta", weight=3]; 3050 -> 3216[label="",style="dashed", color="magenta", weight=3]; 3051 -> 1887[label="",style="dashed", color="red", weight=0]; 3051[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3051 -> 3217[label="",style="dashed", color="magenta", weight=3]; 3051 -> 3218[label="",style="dashed", color="magenta", weight=3]; 3052 -> 1886[label="",style="dashed", color="red", weight=0]; 3052[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3052 -> 3219[label="",style="dashed", color="magenta", weight=3]; 3052 -> 3220[label="",style="dashed", color="magenta", weight=3]; 3053 -> 1888[label="",style="dashed", color="red", weight=0]; 3053[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3053 -> 3221[label="",style="dashed", color="magenta", weight=3]; 3053 -> 3222[label="",style="dashed", color="magenta", weight=3]; 3054 -> 1890[label="",style="dashed", color="red", weight=0]; 3054[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3054 -> 3223[label="",style="dashed", color="magenta", weight=3]; 3054 -> 3224[label="",style="dashed", color="magenta", weight=3]; 3055 -> 1881[label="",style="dashed", color="red", weight=0]; 3055[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3055 -> 3225[label="",style="dashed", color="magenta", weight=3]; 3055 -> 3226[label="",style="dashed", color="magenta", weight=3]; 3056 -> 1892[label="",style="dashed", color="red", weight=0]; 3056[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3056 -> 3227[label="",style="dashed", color="magenta", weight=3]; 3056 -> 3228[label="",style="dashed", color="magenta", weight=3]; 3057[label="vyw44000",fontsize=16,color="green",shape="box"];3058[label="vyw43000",fontsize=16,color="green",shape="box"];3059[label="vyw44000",fontsize=16,color="green",shape="box"];3060[label="vyw43000",fontsize=16,color="green",shape="box"];3061[label="vyw44000",fontsize=16,color="green",shape="box"];3062[label="vyw43000",fontsize=16,color="green",shape="box"];3063[label="vyw44000",fontsize=16,color="green",shape="box"];3064[label="vyw43000",fontsize=16,color="green",shape="box"];3065[label="vyw44000",fontsize=16,color="green",shape="box"];3066[label="vyw43000",fontsize=16,color="green",shape="box"];3067[label="vyw44000",fontsize=16,color="green",shape="box"];3068[label="vyw43000",fontsize=16,color="green",shape="box"];3069[label="vyw44000",fontsize=16,color="green",shape="box"];3070[label="vyw43000",fontsize=16,color="green",shape="box"];3071[label="vyw44000",fontsize=16,color="green",shape="box"];3072[label="vyw43000",fontsize=16,color="green",shape="box"];3073[label="vyw44000",fontsize=16,color="green",shape="box"];3074[label="vyw43000",fontsize=16,color="green",shape="box"];3075[label="vyw44000",fontsize=16,color="green",shape="box"];3076[label="vyw43000",fontsize=16,color="green",shape="box"];3077[label="vyw44000",fontsize=16,color="green",shape="box"];3078[label="vyw43000",fontsize=16,color="green",shape="box"];3079[label="vyw44000",fontsize=16,color="green",shape="box"];3080[label="vyw43000",fontsize=16,color="green",shape="box"];3081[label="vyw44000",fontsize=16,color="green",shape="box"];3082[label="vyw43000",fontsize=16,color="green",shape="box"];3083[label="vyw44000",fontsize=16,color="green",shape="box"];3084[label="vyw43000",fontsize=16,color="green",shape="box"];3085[label="compare (Integer vyw43000) (Integer vyw44000)",fontsize=16,color="black",shape="box"];3085 -> 3229[label="",style="solid", color="black", weight=3]; 3086[label="compare (vyw43000 : vyw43001) (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3086 -> 3230[label="",style="solid", color="black", weight=3]; 3087[label="compare (vyw43000 : vyw43001) []",fontsize=16,color="black",shape="box"];3087 -> 3231[label="",style="solid", color="black", weight=3]; 3088[label="compare [] (vyw44000 : vyw44001)",fontsize=16,color="black",shape="box"];3088 -> 3232[label="",style="solid", color="black", weight=3]; 3089[label="compare [] []",fontsize=16,color="black",shape="box"];3089 -> 3233[label="",style="solid", color="black", weight=3]; 3090[label="primCmpFloat (Float vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4223[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3090 -> 4223[label="",style="solid", color="burlywood", weight=9]; 4223 -> 3234[label="",style="solid", color="burlywood", weight=3]; 4224[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3090 -> 4224[label="",style="solid", color="burlywood", weight=9]; 4224 -> 3235[label="",style="solid", color="burlywood", weight=3]; 3091[label="primCmpDouble (Double vyw43000 vyw43001) vyw4400",fontsize=16,color="burlywood",shape="box"];4225[label="vyw43001/Pos vyw430010",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4225[label="",style="solid", color="burlywood", weight=9]; 4225 -> 3236[label="",style="solid", color="burlywood", weight=3]; 4226[label="vyw43001/Neg vyw430010",fontsize=10,color="white",style="solid",shape="box"];3091 -> 4226[label="",style="solid", color="burlywood", weight=9]; 4226 -> 3237[label="",style="solid", color="burlywood", weight=3]; 3092[label="compare () ()",fontsize=16,color="black",shape="box"];3092 -> 3238[label="",style="solid", color="black", weight=3]; 3093[label="primCmpInt (Pos vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4227[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3093 -> 4227[label="",style="solid", color="burlywood", weight=9]; 4227 -> 3239[label="",style="solid", color="burlywood", weight=3]; 4228[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3093 -> 4228[label="",style="solid", color="burlywood", weight=9]; 4228 -> 3240[label="",style="solid", color="burlywood", weight=3]; 3094[label="primCmpInt (Neg vyw43000) vyw4400",fontsize=16,color="burlywood",shape="box"];4229[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3094 -> 4229[label="",style="solid", color="burlywood", weight=9]; 4229 -> 3241[label="",style="solid", color="burlywood", weight=3]; 4230[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3094 -> 4230[label="",style="solid", color="burlywood", weight=9]; 4230 -> 3242[label="",style="solid", color="burlywood", weight=3]; 3095 -> 3243[label="",style="dashed", color="red", weight=0]; 3095[label="primPlusNat (primMulNat vyw40100 (Succ vyw300000)) (Succ vyw300000)",fontsize=16,color="magenta"];3095 -> 3244[label="",style="dashed", color="magenta", weight=3]; 3096[label="Zero",fontsize=16,color="green",shape="box"];3097[label="Zero",fontsize=16,color="green",shape="box"];3098[label="Zero",fontsize=16,color="green",shape="box"];3099[label="primCmpChar (Char vyw43000) (Char vyw44000)",fontsize=16,color="black",shape="box"];3099 -> 3245[label="",style="solid", color="black", weight=3]; 3100[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="blue",shape="box"];4231[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3100 -> 4231[label="",style="solid", color="blue", weight=9]; 4231 -> 3246[label="",style="solid", color="blue", weight=3]; 4232[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3100 -> 4232[label="",style="solid", color="blue", weight=9]; 4232 -> 3247[label="",style="solid", color="blue", weight=3]; 3101[label="vyw43001",fontsize=16,color="green",shape="box"];3102[label="vyw44001",fontsize=16,color="green",shape="box"];3103[label="vyw43001",fontsize=16,color="green",shape="box"];3104[label="vyw44001",fontsize=16,color="green",shape="box"];3105[label="vyw43001",fontsize=16,color="green",shape="box"];3106[label="vyw44001",fontsize=16,color="green",shape="box"];3107[label="vyw43001",fontsize=16,color="green",shape="box"];3108[label="vyw44001",fontsize=16,color="green",shape="box"];3109[label="vyw43001",fontsize=16,color="green",shape="box"];3110[label="vyw44001",fontsize=16,color="green",shape="box"];3111[label="vyw43001",fontsize=16,color="green",shape="box"];3112[label="vyw44001",fontsize=16,color="green",shape="box"];3113[label="vyw43001",fontsize=16,color="green",shape="box"];3114[label="vyw44001",fontsize=16,color="green",shape="box"];3115[label="vyw43001",fontsize=16,color="green",shape="box"];3116[label="vyw44001",fontsize=16,color="green",shape="box"];3117[label="vyw43001",fontsize=16,color="green",shape="box"];3118[label="vyw44001",fontsize=16,color="green",shape="box"];3119[label="vyw43001",fontsize=16,color="green",shape="box"];3120[label="vyw44001",fontsize=16,color="green",shape="box"];3121[label="vyw43001",fontsize=16,color="green",shape="box"];3122[label="vyw44001",fontsize=16,color="green",shape="box"];3123[label="vyw43001",fontsize=16,color="green",shape="box"];3124[label="vyw44001",fontsize=16,color="green",shape="box"];3125[label="vyw43001",fontsize=16,color="green",shape="box"];3126[label="vyw44001",fontsize=16,color="green",shape="box"];3127[label="vyw43001",fontsize=16,color="green",shape="box"];3128[label="vyw44001",fontsize=16,color="green",shape="box"];3129[label="vyw44000",fontsize=16,color="green",shape="box"];3130[label="vyw43000",fontsize=16,color="green",shape="box"];3131[label="vyw44000",fontsize=16,color="green",shape="box"];3132[label="vyw43000",fontsize=16,color="green",shape="box"];3133[label="vyw44000",fontsize=16,color="green",shape="box"];3134[label="vyw43000",fontsize=16,color="green",shape="box"];3135[label="vyw44000",fontsize=16,color="green",shape="box"];3136[label="vyw43000",fontsize=16,color="green",shape="box"];3137[label="vyw44000",fontsize=16,color="green",shape="box"];3138[label="vyw43000",fontsize=16,color="green",shape="box"];3139[label="vyw44000",fontsize=16,color="green",shape="box"];3140[label="vyw43000",fontsize=16,color="green",shape="box"];3141[label="vyw44000",fontsize=16,color="green",shape="box"];3142[label="vyw43000",fontsize=16,color="green",shape="box"];3143[label="vyw44000",fontsize=16,color="green",shape="box"];3144[label="vyw43000",fontsize=16,color="green",shape="box"];3145[label="vyw44000",fontsize=16,color="green",shape="box"];3146[label="vyw43000",fontsize=16,color="green",shape="box"];3147[label="vyw44000",fontsize=16,color="green",shape="box"];3148[label="vyw43000",fontsize=16,color="green",shape="box"];3149[label="vyw44000",fontsize=16,color="green",shape="box"];3150[label="vyw43000",fontsize=16,color="green",shape="box"];3151[label="vyw44000",fontsize=16,color="green",shape="box"];3152[label="vyw43000",fontsize=16,color="green",shape="box"];3153[label="vyw44000",fontsize=16,color="green",shape="box"];3154[label="vyw43000",fontsize=16,color="green",shape="box"];3155[label="vyw44000",fontsize=16,color="green",shape="box"];3156[label="vyw43000",fontsize=16,color="green",shape="box"];3157[label="LT",fontsize=16,color="green",shape="box"];3158 -> 2783[label="",style="dashed", color="red", weight=0]; 3158[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3158 -> 3248[label="",style="dashed", color="magenta", weight=3]; 3158 -> 3249[label="",style="dashed", color="magenta", weight=3]; 3159[label="LT",fontsize=16,color="green",shape="box"];3160[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3160 -> 3250[label="",style="solid", color="black", weight=3]; 3161[label="LT",fontsize=16,color="green",shape="box"];3162[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3162 -> 3251[label="",style="solid", color="black", weight=3]; 3163[label="LT",fontsize=16,color="green",shape="box"];3164 -> 2787[label="",style="dashed", color="red", weight=0]; 3164[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3164 -> 3252[label="",style="dashed", color="magenta", weight=3]; 3164 -> 3253[label="",style="dashed", color="magenta", weight=3]; 3165[label="LT",fontsize=16,color="green",shape="box"];3166[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3166 -> 3254[label="",style="solid", color="black", weight=3]; 3167[label="LT",fontsize=16,color="green",shape="box"];3168[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3168 -> 3255[label="",style="solid", color="black", weight=3]; 3169[label="LT",fontsize=16,color="green",shape="box"];3170[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3170 -> 3256[label="",style="solid", color="black", weight=3]; 3171[label="LT",fontsize=16,color="green",shape="box"];3172 -> 2789[label="",style="dashed", color="red", weight=0]; 3172[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3172 -> 3257[label="",style="dashed", color="magenta", weight=3]; 3172 -> 3258[label="",style="dashed", color="magenta", weight=3]; 3173[label="LT",fontsize=16,color="green",shape="box"];3174 -> 2791[label="",style="dashed", color="red", weight=0]; 3174[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3174 -> 3259[label="",style="dashed", color="magenta", weight=3]; 3174 -> 3260[label="",style="dashed", color="magenta", weight=3]; 3175[label="LT",fontsize=16,color="green",shape="box"];3176[label="compare vyw43000 vyw44000",fontsize=16,color="black",shape="triangle"];3176 -> 3261[label="",style="solid", color="black", weight=3]; 3177[label="LT",fontsize=16,color="green",shape="box"];3178 -> 2793[label="",style="dashed", color="red", weight=0]; 3178[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3178 -> 3262[label="",style="dashed", color="magenta", weight=3]; 3178 -> 3263[label="",style="dashed", color="magenta", weight=3]; 3179[label="LT",fontsize=16,color="green",shape="box"];3180 -> 2795[label="",style="dashed", color="red", weight=0]; 3180[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3180 -> 3264[label="",style="dashed", color="magenta", weight=3]; 3180 -> 3265[label="",style="dashed", color="magenta", weight=3]; 3181[label="LT",fontsize=16,color="green",shape="box"];3182 -> 2797[label="",style="dashed", color="red", weight=0]; 3182[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3182 -> 3266[label="",style="dashed", color="magenta", weight=3]; 3182 -> 3267[label="",style="dashed", color="magenta", weight=3]; 3183[label="LT",fontsize=16,color="green",shape="box"];3184 -> 2799[label="",style="dashed", color="red", weight=0]; 3184[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3184 -> 3268[label="",style="dashed", color="magenta", weight=3]; 3184 -> 3269[label="",style="dashed", color="magenta", weight=3]; 3185[label="vyw43002 <= vyw44002",fontsize=16,color="blue",shape="box"];4233[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4233[label="",style="solid", color="blue", weight=9]; 4233 -> 3270[label="",style="solid", color="blue", weight=3]; 4234[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4234[label="",style="solid", color="blue", weight=9]; 4234 -> 3271[label="",style="solid", color="blue", weight=3]; 4235[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4235[label="",style="solid", color="blue", weight=9]; 4235 -> 3272[label="",style="solid", color="blue", weight=3]; 4236[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4236[label="",style="solid", color="blue", weight=9]; 4236 -> 3273[label="",style="solid", color="blue", weight=3]; 4237[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4237[label="",style="solid", color="blue", weight=9]; 4237 -> 3274[label="",style="solid", color="blue", weight=3]; 4238[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4238[label="",style="solid", color="blue", weight=9]; 4238 -> 3275[label="",style="solid", color="blue", weight=3]; 4239[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4239[label="",style="solid", color="blue", weight=9]; 4239 -> 3276[label="",style="solid", color="blue", weight=3]; 4240[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4240[label="",style="solid", color="blue", weight=9]; 4240 -> 3277[label="",style="solid", color="blue", weight=3]; 4241[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4241[label="",style="solid", color="blue", weight=9]; 4241 -> 3278[label="",style="solid", color="blue", weight=3]; 4242[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4242[label="",style="solid", color="blue", weight=9]; 4242 -> 3279[label="",style="solid", color="blue", weight=3]; 4243[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4243[label="",style="solid", color="blue", weight=9]; 4243 -> 3280[label="",style="solid", color="blue", weight=3]; 4244[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4244[label="",style="solid", color="blue", weight=9]; 4244 -> 3281[label="",style="solid", color="blue", weight=3]; 4245[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4245[label="",style="solid", color="blue", weight=9]; 4245 -> 3282[label="",style="solid", color="blue", weight=3]; 4246[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3185 -> 4246[label="",style="solid", color="blue", weight=9]; 4246 -> 3283[label="",style="solid", color="blue", weight=3]; 3186[label="vyw43001 == vyw44001",fontsize=16,color="blue",shape="box"];4247[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4247[label="",style="solid", color="blue", weight=9]; 4247 -> 3284[label="",style="solid", color="blue", weight=3]; 4248[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4248[label="",style="solid", color="blue", weight=9]; 4248 -> 3285[label="",style="solid", color="blue", weight=3]; 4249[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4249[label="",style="solid", color="blue", weight=9]; 4249 -> 3286[label="",style="solid", color="blue", weight=3]; 4250[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4250[label="",style="solid", color="blue", weight=9]; 4250 -> 3287[label="",style="solid", color="blue", weight=3]; 4251[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4251[label="",style="solid", color="blue", weight=9]; 4251 -> 3288[label="",style="solid", color="blue", weight=3]; 4252[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4252[label="",style="solid", color="blue", weight=9]; 4252 -> 3289[label="",style="solid", color="blue", weight=3]; 4253[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4253[label="",style="solid", color="blue", weight=9]; 4253 -> 3290[label="",style="solid", color="blue", weight=3]; 4254[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4254[label="",style="solid", color="blue", weight=9]; 4254 -> 3291[label="",style="solid", color="blue", weight=3]; 4255[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4255[label="",style="solid", color="blue", weight=9]; 4255 -> 3292[label="",style="solid", color="blue", weight=3]; 4256[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4256[label="",style="solid", color="blue", weight=9]; 4256 -> 3293[label="",style="solid", color="blue", weight=3]; 4257[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4257[label="",style="solid", color="blue", weight=9]; 4257 -> 3294[label="",style="solid", color="blue", weight=3]; 4258[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4258[label="",style="solid", color="blue", weight=9]; 4258 -> 3295[label="",style="solid", color="blue", weight=3]; 4259[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4259[label="",style="solid", color="blue", weight=9]; 4259 -> 3296[label="",style="solid", color="blue", weight=3]; 4260[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];3186 -> 4260[label="",style="solid", color="blue", weight=9]; 4260 -> 3297[label="",style="solid", color="blue", weight=3]; 3187 -> 2924[label="",style="dashed", color="red", weight=0]; 3187[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3187 -> 3298[label="",style="dashed", color="magenta", weight=3]; 3187 -> 3299[label="",style="dashed", color="magenta", weight=3]; 3188 -> 2925[label="",style="dashed", color="red", weight=0]; 3188[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3188 -> 3300[label="",style="dashed", color="magenta", weight=3]; 3188 -> 3301[label="",style="dashed", color="magenta", weight=3]; 3189 -> 2926[label="",style="dashed", color="red", weight=0]; 3189[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3189 -> 3302[label="",style="dashed", color="magenta", weight=3]; 3189 -> 3303[label="",style="dashed", color="magenta", weight=3]; 3190 -> 2927[label="",style="dashed", color="red", weight=0]; 3190[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3190 -> 3304[label="",style="dashed", color="magenta", weight=3]; 3190 -> 3305[label="",style="dashed", color="magenta", weight=3]; 3191 -> 2928[label="",style="dashed", color="red", weight=0]; 3191[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3191 -> 3306[label="",style="dashed", color="magenta", weight=3]; 3191 -> 3307[label="",style="dashed", color="magenta", weight=3]; 3192 -> 2929[label="",style="dashed", color="red", weight=0]; 3192[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3192 -> 3308[label="",style="dashed", color="magenta", weight=3]; 3192 -> 3309[label="",style="dashed", color="magenta", weight=3]; 3193 -> 2930[label="",style="dashed", color="red", weight=0]; 3193[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3193 -> 3310[label="",style="dashed", color="magenta", weight=3]; 3193 -> 3311[label="",style="dashed", color="magenta", weight=3]; 3194 -> 2931[label="",style="dashed", color="red", weight=0]; 3194[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3194 -> 3312[label="",style="dashed", color="magenta", weight=3]; 3194 -> 3313[label="",style="dashed", color="magenta", weight=3]; 3195 -> 2932[label="",style="dashed", color="red", weight=0]; 3195[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3195 -> 3314[label="",style="dashed", color="magenta", weight=3]; 3195 -> 3315[label="",style="dashed", color="magenta", weight=3]; 3196 -> 2933[label="",style="dashed", color="red", weight=0]; 3196[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3196 -> 3316[label="",style="dashed", color="magenta", weight=3]; 3196 -> 3317[label="",style="dashed", color="magenta", weight=3]; 3197 -> 2934[label="",style="dashed", color="red", weight=0]; 3197[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3197 -> 3318[label="",style="dashed", color="magenta", weight=3]; 3197 -> 3319[label="",style="dashed", color="magenta", weight=3]; 3198 -> 2935[label="",style="dashed", color="red", weight=0]; 3198[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3198 -> 3320[label="",style="dashed", color="magenta", weight=3]; 3198 -> 3321[label="",style="dashed", color="magenta", weight=3]; 3199 -> 2936[label="",style="dashed", color="red", weight=0]; 3199[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3199 -> 3322[label="",style="dashed", color="magenta", weight=3]; 3199 -> 3323[label="",style="dashed", color="magenta", weight=3]; 3200 -> 2937[label="",style="dashed", color="red", weight=0]; 3200[label="vyw43001 < vyw44001",fontsize=16,color="magenta"];3200 -> 3324[label="",style="dashed", color="magenta", weight=3]; 3200 -> 3325[label="",style="dashed", color="magenta", weight=3]; 3201[label="vyw44000",fontsize=16,color="green",shape="box"];3202[label="vyw43000",fontsize=16,color="green",shape="box"];3203[label="vyw44000",fontsize=16,color="green",shape="box"];3204[label="vyw43000",fontsize=16,color="green",shape="box"];3205[label="vyw44000",fontsize=16,color="green",shape="box"];3206[label="vyw43000",fontsize=16,color="green",shape="box"];3207[label="vyw44000",fontsize=16,color="green",shape="box"];3208[label="vyw43000",fontsize=16,color="green",shape="box"];3209[label="vyw44000",fontsize=16,color="green",shape="box"];3210[label="vyw43000",fontsize=16,color="green",shape="box"];3211[label="vyw44000",fontsize=16,color="green",shape="box"];3212[label="vyw43000",fontsize=16,color="green",shape="box"];3213[label="vyw44000",fontsize=16,color="green",shape="box"];3214[label="vyw43000",fontsize=16,color="green",shape="box"];3215[label="vyw44000",fontsize=16,color="green",shape="box"];3216[label="vyw43000",fontsize=16,color="green",shape="box"];3217[label="vyw44000",fontsize=16,color="green",shape="box"];3218[label="vyw43000",fontsize=16,color="green",shape="box"];3219[label="vyw44000",fontsize=16,color="green",shape="box"];3220[label="vyw43000",fontsize=16,color="green",shape="box"];3221[label="vyw44000",fontsize=16,color="green",shape="box"];3222[label="vyw43000",fontsize=16,color="green",shape="box"];3223[label="vyw44000",fontsize=16,color="green",shape="box"];3224[label="vyw43000",fontsize=16,color="green",shape="box"];3225[label="vyw44000",fontsize=16,color="green",shape="box"];3226[label="vyw43000",fontsize=16,color="green",shape="box"];3227[label="vyw44000",fontsize=16,color="green",shape="box"];3228[label="vyw43000",fontsize=16,color="green",shape="box"];3229 -> 2990[label="",style="dashed", color="red", weight=0]; 3229[label="primCmpInt vyw43000 vyw44000",fontsize=16,color="magenta"];3229 -> 3326[label="",style="dashed", color="magenta", weight=3]; 3229 -> 3327[label="",style="dashed", color="magenta", weight=3]; 3230 -> 3328[label="",style="dashed", color="red", weight=0]; 3230[label="primCompAux vyw43000 vyw44000 (compare vyw43001 vyw44001)",fontsize=16,color="magenta"];3230 -> 3329[label="",style="dashed", color="magenta", weight=3]; 3231[label="GT",fontsize=16,color="green",shape="box"];3232[label="LT",fontsize=16,color="green",shape="box"];3233[label="EQ",fontsize=16,color="green",shape="box"];3234[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4261[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3234 -> 4261[label="",style="solid", color="burlywood", weight=9]; 4261 -> 3330[label="",style="solid", color="burlywood", weight=3]; 3235[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4262[label="vyw4400/Float vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3235 -> 4262[label="",style="solid", color="burlywood", weight=9]; 4262 -> 3331[label="",style="solid", color="burlywood", weight=3]; 3236[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4263[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3236 -> 4263[label="",style="solid", color="burlywood", weight=9]; 4263 -> 3332[label="",style="solid", color="burlywood", weight=3]; 3237[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) vyw4400",fontsize=16,color="burlywood",shape="box"];4264[label="vyw4400/Double vyw44000 vyw44001",fontsize=10,color="white",style="solid",shape="box"];3237 -> 4264[label="",style="solid", color="burlywood", weight=9]; 4264 -> 3333[label="",style="solid", color="burlywood", weight=3]; 3238[label="EQ",fontsize=16,color="green",shape="box"];3239[label="primCmpInt (Pos (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4265[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3239 -> 4265[label="",style="solid", color="burlywood", weight=9]; 4265 -> 3334[label="",style="solid", color="burlywood", weight=3]; 4266[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3239 -> 4266[label="",style="solid", color="burlywood", weight=9]; 4266 -> 3335[label="",style="solid", color="burlywood", weight=3]; 3240[label="primCmpInt (Pos Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4267[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4267[label="",style="solid", color="burlywood", weight=9]; 4267 -> 3336[label="",style="solid", color="burlywood", weight=3]; 4268[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3240 -> 4268[label="",style="solid", color="burlywood", weight=9]; 4268 -> 3337[label="",style="solid", color="burlywood", weight=3]; 3241[label="primCmpInt (Neg (Succ vyw430000)) vyw4400",fontsize=16,color="burlywood",shape="box"];4269[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4269[label="",style="solid", color="burlywood", weight=9]; 4269 -> 3338[label="",style="solid", color="burlywood", weight=3]; 4270[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3241 -> 4270[label="",style="solid", color="burlywood", weight=9]; 4270 -> 3339[label="",style="solid", color="burlywood", weight=3]; 3242[label="primCmpInt (Neg Zero) vyw4400",fontsize=16,color="burlywood",shape="box"];4271[label="vyw4400/Pos vyw44000",fontsize=10,color="white",style="solid",shape="box"];3242 -> 4271[label="",style="solid", color="burlywood", weight=9]; 4271 -> 3340[label="",style="solid", color="burlywood", weight=3]; 4272[label="vyw4400/Neg vyw44000",fontsize=10,color="white",style="solid",shape="box"];3242 -> 4272[label="",style="solid", color="burlywood", weight=9]; 4272 -> 3341[label="",style="solid", color="burlywood", weight=3]; 3244 -> 2778[label="",style="dashed", color="red", weight=0]; 3244[label="primMulNat vyw40100 (Succ vyw300000)",fontsize=16,color="magenta"];3244 -> 3342[label="",style="dashed", color="magenta", weight=3]; 3244 -> 3343[label="",style="dashed", color="magenta", weight=3]; 3243[label="primPlusNat vyw140 (Succ vyw300000)",fontsize=16,color="burlywood",shape="triangle"];4273[label="vyw140/Succ vyw1400",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4273[label="",style="solid", color="burlywood", weight=9]; 4273 -> 3344[label="",style="solid", color="burlywood", weight=3]; 4274[label="vyw140/Zero",fontsize=10,color="white",style="solid",shape="box"];3243 -> 4274[label="",style="solid", color="burlywood", weight=9]; 4274 -> 3345[label="",style="solid", color="burlywood", weight=3]; 3245[label="primCmpNat vyw43000 vyw44000",fontsize=16,color="burlywood",shape="triangle"];4275[label="vyw43000/Succ vyw430000",fontsize=10,color="white",style="solid",shape="box"];3245 -> 4275[label="",style="solid", color="burlywood", weight=9]; 4275 -> 3346[label="",style="solid", color="burlywood", weight=3]; 4276[label="vyw43000/Zero",fontsize=10,color="white",style="solid",shape="box"];3245 -> 4276[label="",style="solid", color="burlywood", weight=9]; 4276 -> 3347[label="",style="solid", color="burlywood", weight=3]; 3246 -> 2789[label="",style="dashed", color="red", weight=0]; 3246[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3246 -> 3348[label="",style="dashed", color="magenta", weight=3]; 3246 -> 3349[label="",style="dashed", color="magenta", weight=3]; 3247 -> 2799[label="",style="dashed", color="red", weight=0]; 3247[label="compare (vyw43000 * vyw44001) (vyw44000 * vyw43001)",fontsize=16,color="magenta"];3247 -> 3350[label="",style="dashed", color="magenta", weight=3]; 3247 -> 3351[label="",style="dashed", color="magenta", weight=3]; 3248[label="vyw43000",fontsize=16,color="green",shape="box"];3249[label="vyw44000",fontsize=16,color="green",shape="box"];3250[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3250 -> 3352[label="",style="solid", color="black", weight=3]; 3251[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3251 -> 3353[label="",style="solid", color="black", weight=3]; 3252[label="vyw43000",fontsize=16,color="green",shape="box"];3253[label="vyw44000",fontsize=16,color="green",shape="box"];3254[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3254 -> 3354[label="",style="solid", color="black", weight=3]; 3255[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3255 -> 3355[label="",style="solid", color="black", weight=3]; 3256[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3256 -> 3356[label="",style="solid", color="black", weight=3]; 3257[label="vyw43000",fontsize=16,color="green",shape="box"];3258[label="vyw44000",fontsize=16,color="green",shape="box"];3259[label="vyw43000",fontsize=16,color="green",shape="box"];3260[label="vyw44000",fontsize=16,color="green",shape="box"];3261[label="compare3 vyw43000 vyw44000",fontsize=16,color="black",shape="box"];3261 -> 3357[label="",style="solid", color="black", weight=3]; 3262[label="vyw43000",fontsize=16,color="green",shape="box"];3263[label="vyw44000",fontsize=16,color="green",shape="box"];3264[label="vyw43000",fontsize=16,color="green",shape="box"];3265[label="vyw44000",fontsize=16,color="green",shape="box"];3266[label="vyw43000",fontsize=16,color="green",shape="box"];3267[label="vyw44000",fontsize=16,color="green",shape="box"];3268[label="vyw43000",fontsize=16,color="green",shape="box"];3269[label="vyw44000",fontsize=16,color="green",shape="box"];3270 -> 2550[label="",style="dashed", color="red", weight=0]; 3270[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3270 -> 3358[label="",style="dashed", color="magenta", weight=3]; 3270 -> 3359[label="",style="dashed", color="magenta", weight=3]; 3271 -> 2551[label="",style="dashed", color="red", weight=0]; 3271[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3271 -> 3360[label="",style="dashed", color="magenta", weight=3]; 3271 -> 3361[label="",style="dashed", color="magenta", weight=3]; 3272 -> 2552[label="",style="dashed", color="red", weight=0]; 3272[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3272 -> 3362[label="",style="dashed", color="magenta", weight=3]; 3272 -> 3363[label="",style="dashed", color="magenta", weight=3]; 3273 -> 2553[label="",style="dashed", color="red", weight=0]; 3273[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3273 -> 3364[label="",style="dashed", color="magenta", weight=3]; 3273 -> 3365[label="",style="dashed", color="magenta", weight=3]; 3274 -> 2554[label="",style="dashed", color="red", weight=0]; 3274[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3274 -> 3366[label="",style="dashed", color="magenta", weight=3]; 3274 -> 3367[label="",style="dashed", color="magenta", weight=3]; 3275 -> 2555[label="",style="dashed", color="red", weight=0]; 3275[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3275 -> 3368[label="",style="dashed", color="magenta", weight=3]; 3275 -> 3369[label="",style="dashed", color="magenta", weight=3]; 3276 -> 2556[label="",style="dashed", color="red", weight=0]; 3276[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3276 -> 3370[label="",style="dashed", color="magenta", weight=3]; 3276 -> 3371[label="",style="dashed", color="magenta", weight=3]; 3277 -> 2557[label="",style="dashed", color="red", weight=0]; 3277[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3277 -> 3372[label="",style="dashed", color="magenta", weight=3]; 3277 -> 3373[label="",style="dashed", color="magenta", weight=3]; 3278 -> 2558[label="",style="dashed", color="red", weight=0]; 3278[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3278 -> 3374[label="",style="dashed", color="magenta", weight=3]; 3278 -> 3375[label="",style="dashed", color="magenta", weight=3]; 3279 -> 2559[label="",style="dashed", color="red", weight=0]; 3279[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3279 -> 3376[label="",style="dashed", color="magenta", weight=3]; 3279 -> 3377[label="",style="dashed", color="magenta", weight=3]; 3280 -> 2560[label="",style="dashed", color="red", weight=0]; 3280[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3280 -> 3378[label="",style="dashed", color="magenta", weight=3]; 3280 -> 3379[label="",style="dashed", color="magenta", weight=3]; 3281 -> 2561[label="",style="dashed", color="red", weight=0]; 3281[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3281 -> 3380[label="",style="dashed", color="magenta", weight=3]; 3281 -> 3381[label="",style="dashed", color="magenta", weight=3]; 3282 -> 2562[label="",style="dashed", color="red", weight=0]; 3282[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3282 -> 3382[label="",style="dashed", color="magenta", weight=3]; 3282 -> 3383[label="",style="dashed", color="magenta", weight=3]; 3283 -> 2563[label="",style="dashed", color="red", weight=0]; 3283[label="vyw43002 <= vyw44002",fontsize=16,color="magenta"];3283 -> 3384[label="",style="dashed", color="magenta", weight=3]; 3283 -> 3385[label="",style="dashed", color="magenta", weight=3]; 3284 -> 1883[label="",style="dashed", color="red", weight=0]; 3284[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3284 -> 3386[label="",style="dashed", color="magenta", weight=3]; 3284 -> 3387[label="",style="dashed", color="magenta", weight=3]; 3285 -> 1884[label="",style="dashed", color="red", weight=0]; 3285[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3285 -> 3388[label="",style="dashed", color="magenta", weight=3]; 3285 -> 3389[label="",style="dashed", color="magenta", weight=3]; 3286 -> 44[label="",style="dashed", color="red", weight=0]; 3286[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3286 -> 3390[label="",style="dashed", color="magenta", weight=3]; 3286 -> 3391[label="",style="dashed", color="magenta", weight=3]; 3287 -> 1889[label="",style="dashed", color="red", weight=0]; 3287[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3287 -> 3392[label="",style="dashed", color="magenta", weight=3]; 3287 -> 3393[label="",style="dashed", color="magenta", weight=3]; 3288 -> 1893[label="",style="dashed", color="red", weight=0]; 3288[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3288 -> 3394[label="",style="dashed", color="magenta", weight=3]; 3288 -> 3395[label="",style="dashed", color="magenta", weight=3]; 3289 -> 1891[label="",style="dashed", color="red", weight=0]; 3289[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3289 -> 3396[label="",style="dashed", color="magenta", weight=3]; 3289 -> 3397[label="",style="dashed", color="magenta", weight=3]; 3290 -> 1885[label="",style="dashed", color="red", weight=0]; 3290[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3290 -> 3398[label="",style="dashed", color="magenta", weight=3]; 3290 -> 3399[label="",style="dashed", color="magenta", weight=3]; 3291 -> 1880[label="",style="dashed", color="red", weight=0]; 3291[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3291 -> 3400[label="",style="dashed", color="magenta", weight=3]; 3291 -> 3401[label="",style="dashed", color="magenta", weight=3]; 3292 -> 1887[label="",style="dashed", color="red", weight=0]; 3292[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3292 -> 3402[label="",style="dashed", color="magenta", weight=3]; 3292 -> 3403[label="",style="dashed", color="magenta", weight=3]; 3293 -> 1886[label="",style="dashed", color="red", weight=0]; 3293[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3293 -> 3404[label="",style="dashed", color="magenta", weight=3]; 3293 -> 3405[label="",style="dashed", color="magenta", weight=3]; 3294 -> 1888[label="",style="dashed", color="red", weight=0]; 3294[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3294 -> 3406[label="",style="dashed", color="magenta", weight=3]; 3294 -> 3407[label="",style="dashed", color="magenta", weight=3]; 3295 -> 1890[label="",style="dashed", color="red", weight=0]; 3295[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3295 -> 3408[label="",style="dashed", color="magenta", weight=3]; 3295 -> 3409[label="",style="dashed", color="magenta", weight=3]; 3296 -> 1881[label="",style="dashed", color="red", weight=0]; 3296[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3296 -> 3410[label="",style="dashed", color="magenta", weight=3]; 3296 -> 3411[label="",style="dashed", color="magenta", weight=3]; 3297 -> 1892[label="",style="dashed", color="red", weight=0]; 3297[label="vyw43001 == vyw44001",fontsize=16,color="magenta"];3297 -> 3412[label="",style="dashed", color="magenta", weight=3]; 3297 -> 3413[label="",style="dashed", color="magenta", weight=3]; 3298[label="vyw44001",fontsize=16,color="green",shape="box"];3299[label="vyw43001",fontsize=16,color="green",shape="box"];3300[label="vyw44001",fontsize=16,color="green",shape="box"];3301[label="vyw43001",fontsize=16,color="green",shape="box"];3302[label="vyw44001",fontsize=16,color="green",shape="box"];3303[label="vyw43001",fontsize=16,color="green",shape="box"];3304[label="vyw44001",fontsize=16,color="green",shape="box"];3305[label="vyw43001",fontsize=16,color="green",shape="box"];3306[label="vyw44001",fontsize=16,color="green",shape="box"];3307[label="vyw43001",fontsize=16,color="green",shape="box"];3308[label="vyw44001",fontsize=16,color="green",shape="box"];3309[label="vyw43001",fontsize=16,color="green",shape="box"];3310[label="vyw44001",fontsize=16,color="green",shape="box"];3311[label="vyw43001",fontsize=16,color="green",shape="box"];3312[label="vyw44001",fontsize=16,color="green",shape="box"];3313[label="vyw43001",fontsize=16,color="green",shape="box"];3314[label="vyw44001",fontsize=16,color="green",shape="box"];3315[label="vyw43001",fontsize=16,color="green",shape="box"];3316[label="vyw44001",fontsize=16,color="green",shape="box"];3317[label="vyw43001",fontsize=16,color="green",shape="box"];3318[label="vyw44001",fontsize=16,color="green",shape="box"];3319[label="vyw43001",fontsize=16,color="green",shape="box"];3320[label="vyw44001",fontsize=16,color="green",shape="box"];3321[label="vyw43001",fontsize=16,color="green",shape="box"];3322[label="vyw44001",fontsize=16,color="green",shape="box"];3323[label="vyw43001",fontsize=16,color="green",shape="box"];3324[label="vyw44001",fontsize=16,color="green",shape="box"];3325[label="vyw43001",fontsize=16,color="green",shape="box"];3326[label="vyw43000",fontsize=16,color="green",shape="box"];3327[label="vyw44000",fontsize=16,color="green",shape="box"];3329 -> 2791[label="",style="dashed", color="red", weight=0]; 3329[label="compare vyw43001 vyw44001",fontsize=16,color="magenta"];3329 -> 3414[label="",style="dashed", color="magenta", weight=3]; 3329 -> 3415[label="",style="dashed", color="magenta", weight=3]; 3328[label="primCompAux vyw43000 vyw44000 vyw141",fontsize=16,color="black",shape="triangle"];3328 -> 3416[label="",style="solid", color="black", weight=3]; 3330[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4277[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3330 -> 4277[label="",style="solid", color="burlywood", weight=9]; 4277 -> 3417[label="",style="solid", color="burlywood", weight=3]; 4278[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3330 -> 4278[label="",style="solid", color="burlywood", weight=9]; 4278 -> 3418[label="",style="solid", color="burlywood", weight=3]; 3331[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4279[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3331 -> 4279[label="",style="solid", color="burlywood", weight=9]; 4279 -> 3419[label="",style="solid", color="burlywood", weight=3]; 4280[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3331 -> 4280[label="",style="solid", color="burlywood", weight=9]; 4280 -> 3420[label="",style="solid", color="burlywood", weight=3]; 3332[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4281[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4281[label="",style="solid", color="burlywood", weight=9]; 4281 -> 3421[label="",style="solid", color="burlywood", weight=3]; 4282[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3332 -> 4282[label="",style="solid", color="burlywood", weight=9]; 4282 -> 3422[label="",style="solid", color="burlywood", weight=3]; 3333[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 vyw44001)",fontsize=16,color="burlywood",shape="box"];4283[label="vyw44001/Pos vyw440010",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4283[label="",style="solid", color="burlywood", weight=9]; 4283 -> 3423[label="",style="solid", color="burlywood", weight=3]; 4284[label="vyw44001/Neg vyw440010",fontsize=10,color="white",style="solid",shape="box"];3333 -> 4284[label="",style="solid", color="burlywood", weight=9]; 4284 -> 3424[label="",style="solid", color="burlywood", weight=3]; 3334[label="primCmpInt (Pos (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3334 -> 3425[label="",style="solid", color="black", weight=3]; 3335[label="primCmpInt (Pos (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3335 -> 3426[label="",style="solid", color="black", weight=3]; 3336[label="primCmpInt (Pos Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4285[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3336 -> 4285[label="",style="solid", color="burlywood", weight=9]; 4285 -> 3427[label="",style="solid", color="burlywood", weight=3]; 4286[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3336 -> 4286[label="",style="solid", color="burlywood", weight=9]; 4286 -> 3428[label="",style="solid", color="burlywood", weight=3]; 3337[label="primCmpInt (Pos Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4287[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3337 -> 4287[label="",style="solid", color="burlywood", weight=9]; 4287 -> 3429[label="",style="solid", color="burlywood", weight=3]; 4288[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3337 -> 4288[label="",style="solid", color="burlywood", weight=9]; 4288 -> 3430[label="",style="solid", color="burlywood", weight=3]; 3338[label="primCmpInt (Neg (Succ vyw430000)) (Pos vyw44000)",fontsize=16,color="black",shape="box"];3338 -> 3431[label="",style="solid", color="black", weight=3]; 3339[label="primCmpInt (Neg (Succ vyw430000)) (Neg vyw44000)",fontsize=16,color="black",shape="box"];3339 -> 3432[label="",style="solid", color="black", weight=3]; 3340[label="primCmpInt (Neg Zero) (Pos vyw44000)",fontsize=16,color="burlywood",shape="box"];4289[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3340 -> 4289[label="",style="solid", color="burlywood", weight=9]; 4289 -> 3433[label="",style="solid", color="burlywood", weight=3]; 4290[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3340 -> 4290[label="",style="solid", color="burlywood", weight=9]; 4290 -> 3434[label="",style="solid", color="burlywood", weight=3]; 3341[label="primCmpInt (Neg Zero) (Neg vyw44000)",fontsize=16,color="burlywood",shape="box"];4291[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3341 -> 4291[label="",style="solid", color="burlywood", weight=9]; 4291 -> 3435[label="",style="solid", color="burlywood", weight=3]; 4292[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3341 -> 4292[label="",style="solid", color="burlywood", weight=9]; 4292 -> 3436[label="",style="solid", color="burlywood", weight=3]; 3342[label="vyw40100",fontsize=16,color="green",shape="box"];3343[label="Succ vyw300000",fontsize=16,color="green",shape="box"];3344[label="primPlusNat (Succ vyw1400) (Succ vyw300000)",fontsize=16,color="black",shape="box"];3344 -> 3437[label="",style="solid", color="black", weight=3]; 3345[label="primPlusNat Zero (Succ vyw300000)",fontsize=16,color="black",shape="box"];3345 -> 3438[label="",style="solid", color="black", weight=3]; 3346[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="burlywood",shape="box"];4293[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3346 -> 4293[label="",style="solid", color="burlywood", weight=9]; 4293 -> 3439[label="",style="solid", color="burlywood", weight=3]; 4294[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3346 -> 4294[label="",style="solid", color="burlywood", weight=9]; 4294 -> 3440[label="",style="solid", color="burlywood", weight=3]; 3347[label="primCmpNat Zero vyw44000",fontsize=16,color="burlywood",shape="box"];4295[label="vyw44000/Succ vyw440000",fontsize=10,color="white",style="solid",shape="box"];3347 -> 4295[label="",style="solid", color="burlywood", weight=9]; 4295 -> 3441[label="",style="solid", color="burlywood", weight=3]; 4296[label="vyw44000/Zero",fontsize=10,color="white",style="solid",shape="box"];3347 -> 4296[label="",style="solid", color="burlywood", weight=9]; 4296 -> 3442[label="",style="solid", color="burlywood", weight=3]; 3348[label="vyw43000 * vyw44001",fontsize=16,color="burlywood",shape="triangle"];4297[label="vyw43000/Integer vyw430000",fontsize=10,color="white",style="solid",shape="box"];3348 -> 4297[label="",style="solid", color="burlywood", weight=9]; 4297 -> 3443[label="",style="solid", color="burlywood", weight=3]; 3349 -> 3348[label="",style="dashed", color="red", weight=0]; 3349[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3349 -> 3444[label="",style="dashed", color="magenta", weight=3]; 3349 -> 3445[label="",style="dashed", color="magenta", weight=3]; 3350 -> 2317[label="",style="dashed", color="red", weight=0]; 3350[label="vyw43000 * vyw44001",fontsize=16,color="magenta"];3350 -> 3446[label="",style="dashed", color="magenta", weight=3]; 3350 -> 3447[label="",style="dashed", color="magenta", weight=3]; 3351 -> 2317[label="",style="dashed", color="red", weight=0]; 3351[label="vyw44000 * vyw43001",fontsize=16,color="magenta"];3351 -> 3448[label="",style="dashed", color="magenta", weight=3]; 3351 -> 3449[label="",style="dashed", color="magenta", weight=3]; 3352 -> 1842[label="",style="dashed", color="red", weight=0]; 3352[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3352 -> 3450[label="",style="dashed", color="magenta", weight=3]; 3352 -> 3451[label="",style="dashed", color="magenta", weight=3]; 3352 -> 3452[label="",style="dashed", color="magenta", weight=3]; 3353 -> 3453[label="",style="dashed", color="red", weight=0]; 3353[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3353 -> 3454[label="",style="dashed", color="magenta", weight=3]; 3354 -> 3455[label="",style="dashed", color="red", weight=0]; 3354[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3354 -> 3456[label="",style="dashed", color="magenta", weight=3]; 3355 -> 3457[label="",style="dashed", color="red", weight=0]; 3355[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3355 -> 3458[label="",style="dashed", color="magenta", weight=3]; 3356 -> 3459[label="",style="dashed", color="red", weight=0]; 3356[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3356 -> 3460[label="",style="dashed", color="magenta", weight=3]; 3357 -> 3461[label="",style="dashed", color="red", weight=0]; 3357[label="compare2 vyw43000 vyw44000 (vyw43000 == vyw44000)",fontsize=16,color="magenta"];3357 -> 3462[label="",style="dashed", color="magenta", weight=3]; 3358[label="vyw43002",fontsize=16,color="green",shape="box"];3359[label="vyw44002",fontsize=16,color="green",shape="box"];3360[label="vyw43002",fontsize=16,color="green",shape="box"];3361[label="vyw44002",fontsize=16,color="green",shape="box"];3362[label="vyw43002",fontsize=16,color="green",shape="box"];3363[label="vyw44002",fontsize=16,color="green",shape="box"];3364[label="vyw43002",fontsize=16,color="green",shape="box"];3365[label="vyw44002",fontsize=16,color="green",shape="box"];3366[label="vyw43002",fontsize=16,color="green",shape="box"];3367[label="vyw44002",fontsize=16,color="green",shape="box"];3368[label="vyw43002",fontsize=16,color="green",shape="box"];3369[label="vyw44002",fontsize=16,color="green",shape="box"];3370[label="vyw43002",fontsize=16,color="green",shape="box"];3371[label="vyw44002",fontsize=16,color="green",shape="box"];3372[label="vyw43002",fontsize=16,color="green",shape="box"];3373[label="vyw44002",fontsize=16,color="green",shape="box"];3374[label="vyw43002",fontsize=16,color="green",shape="box"];3375[label="vyw44002",fontsize=16,color="green",shape="box"];3376[label="vyw43002",fontsize=16,color="green",shape="box"];3377[label="vyw44002",fontsize=16,color="green",shape="box"];3378[label="vyw43002",fontsize=16,color="green",shape="box"];3379[label="vyw44002",fontsize=16,color="green",shape="box"];3380[label="vyw43002",fontsize=16,color="green",shape="box"];3381[label="vyw44002",fontsize=16,color="green",shape="box"];3382[label="vyw43002",fontsize=16,color="green",shape="box"];3383[label="vyw44002",fontsize=16,color="green",shape="box"];3384[label="vyw43002",fontsize=16,color="green",shape="box"];3385[label="vyw44002",fontsize=16,color="green",shape="box"];3386[label="vyw44001",fontsize=16,color="green",shape="box"];3387[label="vyw43001",fontsize=16,color="green",shape="box"];3388[label="vyw44001",fontsize=16,color="green",shape="box"];3389[label="vyw43001",fontsize=16,color="green",shape="box"];3390[label="vyw44001",fontsize=16,color="green",shape="box"];3391[label="vyw43001",fontsize=16,color="green",shape="box"];3392[label="vyw44001",fontsize=16,color="green",shape="box"];3393[label="vyw43001",fontsize=16,color="green",shape="box"];3394[label="vyw44001",fontsize=16,color="green",shape="box"];3395[label="vyw43001",fontsize=16,color="green",shape="box"];3396[label="vyw44001",fontsize=16,color="green",shape="box"];3397[label="vyw43001",fontsize=16,color="green",shape="box"];3398[label="vyw44001",fontsize=16,color="green",shape="box"];3399[label="vyw43001",fontsize=16,color="green",shape="box"];3400[label="vyw44001",fontsize=16,color="green",shape="box"];3401[label="vyw43001",fontsize=16,color="green",shape="box"];3402[label="vyw44001",fontsize=16,color="green",shape="box"];3403[label="vyw43001",fontsize=16,color="green",shape="box"];3404[label="vyw44001",fontsize=16,color="green",shape="box"];3405[label="vyw43001",fontsize=16,color="green",shape="box"];3406[label="vyw44001",fontsize=16,color="green",shape="box"];3407[label="vyw43001",fontsize=16,color="green",shape="box"];3408[label="vyw44001",fontsize=16,color="green",shape="box"];3409[label="vyw43001",fontsize=16,color="green",shape="box"];3410[label="vyw44001",fontsize=16,color="green",shape="box"];3411[label="vyw43001",fontsize=16,color="green",shape="box"];3412[label="vyw44001",fontsize=16,color="green",shape="box"];3413[label="vyw43001",fontsize=16,color="green",shape="box"];3414[label="vyw43001",fontsize=16,color="green",shape="box"];3415[label="vyw44001",fontsize=16,color="green",shape="box"];3416 -> 3463[label="",style="dashed", color="red", weight=0]; 3416[label="primCompAux0 vyw141 (compare vyw43000 vyw44000)",fontsize=16,color="magenta"];3416 -> 3464[label="",style="dashed", color="magenta", weight=3]; 3416 -> 3465[label="",style="dashed", color="magenta", weight=3]; 3417[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3417 -> 3466[label="",style="solid", color="black", weight=3]; 3418[label="primCmpFloat (Float vyw43000 (Pos vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3418 -> 3467[label="",style="solid", color="black", weight=3]; 3419[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3419 -> 3468[label="",style="solid", color="black", weight=3]; 3420[label="primCmpFloat (Float vyw43000 (Neg vyw430010)) (Float vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3420 -> 3469[label="",style="solid", color="black", weight=3]; 3421[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3421 -> 3470[label="",style="solid", color="black", weight=3]; 3422[label="primCmpDouble (Double vyw43000 (Pos vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3422 -> 3471[label="",style="solid", color="black", weight=3]; 3423[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Pos vyw440010))",fontsize=16,color="black",shape="box"];3423 -> 3472[label="",style="solid", color="black", weight=3]; 3424[label="primCmpDouble (Double vyw43000 (Neg vyw430010)) (Double vyw44000 (Neg vyw440010))",fontsize=16,color="black",shape="box"];3424 -> 3473[label="",style="solid", color="black", weight=3]; 3425 -> 3245[label="",style="dashed", color="red", weight=0]; 3425[label="primCmpNat (Succ vyw430000) vyw44000",fontsize=16,color="magenta"];3425 -> 3474[label="",style="dashed", color="magenta", weight=3]; 3425 -> 3475[label="",style="dashed", color="magenta", weight=3]; 3426[label="GT",fontsize=16,color="green",shape="box"];3427[label="primCmpInt (Pos Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3427 -> 3476[label="",style="solid", color="black", weight=3]; 3428[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3428 -> 3477[label="",style="solid", color="black", weight=3]; 3429[label="primCmpInt (Pos Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3429 -> 3478[label="",style="solid", color="black", weight=3]; 3430[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3430 -> 3479[label="",style="solid", color="black", weight=3]; 3431[label="LT",fontsize=16,color="green",shape="box"];3432 -> 3245[label="",style="dashed", color="red", weight=0]; 3432[label="primCmpNat vyw44000 (Succ vyw430000)",fontsize=16,color="magenta"];3432 -> 3480[label="",style="dashed", color="magenta", weight=3]; 3432 -> 3481[label="",style="dashed", color="magenta", weight=3]; 3433[label="primCmpInt (Neg Zero) (Pos (Succ vyw440000))",fontsize=16,color="black",shape="box"];3433 -> 3482[label="",style="solid", color="black", weight=3]; 3434[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];3434 -> 3483[label="",style="solid", color="black", weight=3]; 3435[label="primCmpInt (Neg Zero) (Neg (Succ vyw440000))",fontsize=16,color="black",shape="box"];3435 -> 3484[label="",style="solid", color="black", weight=3]; 3436[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];3436 -> 3485[label="",style="solid", color="black", weight=3]; 3437[label="Succ (Succ (primPlusNat vyw1400 vyw300000))",fontsize=16,color="green",shape="box"];3437 -> 3486[label="",style="dashed", color="green", weight=3]; 3438[label="Succ vyw300000",fontsize=16,color="green",shape="box"];3439[label="primCmpNat (Succ vyw430000) (Succ vyw440000)",fontsize=16,color="black",shape="box"];3439 -> 3487[label="",style="solid", color="black", weight=3]; 3440[label="primCmpNat (Succ vyw430000) Zero",fontsize=16,color="black",shape="box"];3440 -> 3488[label="",style="solid", color="black", weight=3]; 3441[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="black",shape="box"];3441 -> 3489[label="",style="solid", color="black", weight=3]; 3442[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];3442 -> 3490[label="",style="solid", color="black", weight=3]; 3443[label="Integer vyw430000 * vyw44001",fontsize=16,color="burlywood",shape="box"];4298[label="vyw44001/Integer vyw440010",fontsize=10,color="white",style="solid",shape="box"];3443 -> 4298[label="",style="solid", color="burlywood", weight=9]; 4298 -> 3491[label="",style="solid", color="burlywood", weight=3]; 3444[label="vyw43001",fontsize=16,color="green",shape="box"];3445[label="vyw44000",fontsize=16,color="green",shape="box"];3446[label="vyw44001",fontsize=16,color="green",shape="box"];3447[label="vyw43000",fontsize=16,color="green",shape="box"];3448[label="vyw43001",fontsize=16,color="green",shape="box"];3449[label="vyw44000",fontsize=16,color="green",shape="box"];3450[label="vyw43000",fontsize=16,color="green",shape="box"];3451 -> 1884[label="",style="dashed", color="red", weight=0]; 3451[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3451 -> 3492[label="",style="dashed", color="magenta", weight=3]; 3451 -> 3493[label="",style="dashed", color="magenta", weight=3]; 3452[label="vyw44000",fontsize=16,color="green",shape="box"];3454 -> 44[label="",style="dashed", color="red", weight=0]; 3454[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3454 -> 3494[label="",style="dashed", color="magenta", weight=3]; 3454 -> 3495[label="",style="dashed", color="magenta", weight=3]; 3453[label="compare2 vyw43000 vyw44000 vyw142",fontsize=16,color="burlywood",shape="triangle"];4299[label="vyw142/False",fontsize=10,color="white",style="solid",shape="box"];3453 -> 4299[label="",style="solid", color="burlywood", weight=9]; 4299 -> 3496[label="",style="solid", color="burlywood", weight=3]; 4300[label="vyw142/True",fontsize=10,color="white",style="solid",shape="box"];3453 -> 4300[label="",style="solid", color="burlywood", weight=9]; 4300 -> 3497[label="",style="solid", color="burlywood", weight=3]; 3456 -> 1893[label="",style="dashed", color="red", weight=0]; 3456[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3456 -> 3498[label="",style="dashed", color="magenta", weight=3]; 3456 -> 3499[label="",style="dashed", color="magenta", weight=3]; 3455[label="compare2 vyw43000 vyw44000 vyw143",fontsize=16,color="burlywood",shape="triangle"];4301[label="vyw143/False",fontsize=10,color="white",style="solid",shape="box"];3455 -> 4301[label="",style="solid", color="burlywood", weight=9]; 4301 -> 3500[label="",style="solid", color="burlywood", weight=3]; 4302[label="vyw143/True",fontsize=10,color="white",style="solid",shape="box"];3455 -> 4302[label="",style="solid", color="burlywood", weight=9]; 4302 -> 3501[label="",style="solid", color="burlywood", weight=3]; 3458 -> 1891[label="",style="dashed", color="red", weight=0]; 3458[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3458 -> 3502[label="",style="dashed", color="magenta", weight=3]; 3458 -> 3503[label="",style="dashed", color="magenta", weight=3]; 3457[label="compare2 vyw43000 vyw44000 vyw144",fontsize=16,color="burlywood",shape="triangle"];4303[label="vyw144/False",fontsize=10,color="white",style="solid",shape="box"];3457 -> 4303[label="",style="solid", color="burlywood", weight=9]; 4303 -> 3504[label="",style="solid", color="burlywood", weight=3]; 4304[label="vyw144/True",fontsize=10,color="white",style="solid",shape="box"];3457 -> 4304[label="",style="solid", color="burlywood", weight=9]; 4304 -> 3505[label="",style="solid", color="burlywood", weight=3]; 3460 -> 1885[label="",style="dashed", color="red", weight=0]; 3460[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3460 -> 3506[label="",style="dashed", color="magenta", weight=3]; 3460 -> 3507[label="",style="dashed", color="magenta", weight=3]; 3459[label="compare2 vyw43000 vyw44000 vyw145",fontsize=16,color="burlywood",shape="triangle"];4305[label="vyw145/False",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4305[label="",style="solid", color="burlywood", weight=9]; 4305 -> 3508[label="",style="solid", color="burlywood", weight=3]; 4306[label="vyw145/True",fontsize=10,color="white",style="solid",shape="box"];3459 -> 4306[label="",style="solid", color="burlywood", weight=9]; 4306 -> 3509[label="",style="solid", color="burlywood", weight=3]; 3462 -> 1886[label="",style="dashed", color="red", weight=0]; 3462[label="vyw43000 == vyw44000",fontsize=16,color="magenta"];3462 -> 3510[label="",style="dashed", color="magenta", weight=3]; 3462 -> 3511[label="",style="dashed", color="magenta", weight=3]; 3461[label="compare2 vyw43000 vyw44000 vyw146",fontsize=16,color="burlywood",shape="triangle"];4307[label="vyw146/False",fontsize=10,color="white",style="solid",shape="box"];3461 -> 4307[label="",style="solid", color="burlywood", weight=9]; 4307 -> 3512[label="",style="solid", color="burlywood", weight=3]; 4308[label="vyw146/True",fontsize=10,color="white",style="solid",shape="box"];3461 -> 4308[label="",style="solid", color="burlywood", weight=9]; 4308 -> 3513[label="",style="solid", color="burlywood", weight=3]; 3464[label="vyw141",fontsize=16,color="green",shape="box"];3465[label="compare vyw43000 vyw44000",fontsize=16,color="blue",shape="box"];4309[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4309[label="",style="solid", color="blue", weight=9]; 4309 -> 3514[label="",style="solid", color="blue", weight=3]; 4310[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4310[label="",style="solid", color="blue", weight=9]; 4310 -> 3515[label="",style="solid", color="blue", weight=3]; 4311[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4311[label="",style="solid", color="blue", weight=9]; 4311 -> 3516[label="",style="solid", color="blue", weight=3]; 4312[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4312[label="",style="solid", color="blue", weight=9]; 4312 -> 3517[label="",style="solid", color="blue", weight=3]; 4313[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4313[label="",style="solid", color="blue", weight=9]; 4313 -> 3518[label="",style="solid", color="blue", weight=3]; 4314[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4314[label="",style="solid", color="blue", weight=9]; 4314 -> 3519[label="",style="solid", color="blue", weight=3]; 4315[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4315[label="",style="solid", color="blue", weight=9]; 4315 -> 3520[label="",style="solid", color="blue", weight=3]; 4316[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4316[label="",style="solid", color="blue", weight=9]; 4316 -> 3521[label="",style="solid", color="blue", weight=3]; 4317[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4317[label="",style="solid", color="blue", weight=9]; 4317 -> 3522[label="",style="solid", color="blue", weight=3]; 4318[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4318[label="",style="solid", color="blue", weight=9]; 4318 -> 3523[label="",style="solid", color="blue", weight=3]; 4319[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4319[label="",style="solid", color="blue", weight=9]; 4319 -> 3524[label="",style="solid", color="blue", weight=3]; 4320[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4320[label="",style="solid", color="blue", weight=9]; 4320 -> 3525[label="",style="solid", color="blue", weight=3]; 4321[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4321[label="",style="solid", color="blue", weight=9]; 4321 -> 3526[label="",style="solid", color="blue", weight=3]; 4322[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];3465 -> 4322[label="",style="solid", color="blue", weight=9]; 4322 -> 3527[label="",style="solid", color="blue", weight=3]; 3463[label="primCompAux0 vyw150 vyw151",fontsize=16,color="burlywood",shape="triangle"];4323[label="vyw151/LT",fontsize=10,color="white",style="solid",shape="box"];3463 -> 4323[label="",style="solid", color="burlywood", weight=9]; 4323 -> 3528[label="",style="solid", color="burlywood", weight=3]; 4324[label="vyw151/EQ",fontsize=10,color="white",style="solid",shape="box"];3463 -> 4324[label="",style="solid", color="burlywood", weight=9]; 4324 -> 3529[label="",style="solid", color="burlywood", weight=3]; 4325[label="vyw151/GT",fontsize=10,color="white",style="solid",shape="box"];3463 -> 4325[label="",style="solid", color="burlywood", weight=9]; 4325 -> 3530[label="",style="solid", color="burlywood", weight=3]; 3466 -> 2799[label="",style="dashed", color="red", weight=0]; 3466[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3466 -> 3531[label="",style="dashed", color="magenta", weight=3]; 3466 -> 3532[label="",style="dashed", color="magenta", weight=3]; 3467 -> 2799[label="",style="dashed", color="red", weight=0]; 3467[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3467 -> 3533[label="",style="dashed", color="magenta", weight=3]; 3467 -> 3534[label="",style="dashed", color="magenta", weight=3]; 3468 -> 2799[label="",style="dashed", color="red", weight=0]; 3468[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3468 -> 3535[label="",style="dashed", color="magenta", weight=3]; 3468 -> 3536[label="",style="dashed", color="magenta", weight=3]; 3469 -> 2799[label="",style="dashed", color="red", weight=0]; 3469[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3469 -> 3537[label="",style="dashed", color="magenta", weight=3]; 3469 -> 3538[label="",style="dashed", color="magenta", weight=3]; 3470 -> 2799[label="",style="dashed", color="red", weight=0]; 3470[label="compare (vyw43000 * Pos vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3470 -> 3539[label="",style="dashed", color="magenta", weight=3]; 3470 -> 3540[label="",style="dashed", color="magenta", weight=3]; 3471 -> 2799[label="",style="dashed", color="red", weight=0]; 3471[label="compare (vyw43000 * Pos vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3471 -> 3541[label="",style="dashed", color="magenta", weight=3]; 3471 -> 3542[label="",style="dashed", color="magenta", weight=3]; 3472 -> 2799[label="",style="dashed", color="red", weight=0]; 3472[label="compare (vyw43000 * Neg vyw440010) (Pos vyw430010 * vyw44000)",fontsize=16,color="magenta"];3472 -> 3543[label="",style="dashed", color="magenta", weight=3]; 3472 -> 3544[label="",style="dashed", color="magenta", weight=3]; 3473 -> 2799[label="",style="dashed", color="red", weight=0]; 3473[label="compare (vyw43000 * Neg vyw440010) (Neg vyw430010 * vyw44000)",fontsize=16,color="magenta"];3473 -> 3545[label="",style="dashed", color="magenta", weight=3]; 3473 -> 3546[label="",style="dashed", color="magenta", weight=3]; 3474[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3475[label="vyw44000",fontsize=16,color="green",shape="box"];3476 -> 3245[label="",style="dashed", color="red", weight=0]; 3476[label="primCmpNat Zero (Succ vyw440000)",fontsize=16,color="magenta"];3476 -> 3547[label="",style="dashed", color="magenta", weight=3]; 3476 -> 3548[label="",style="dashed", color="magenta", weight=3]; 3477[label="EQ",fontsize=16,color="green",shape="box"];3478[label="GT",fontsize=16,color="green",shape="box"];3479[label="EQ",fontsize=16,color="green",shape="box"];3480[label="vyw44000",fontsize=16,color="green",shape="box"];3481[label="Succ vyw430000",fontsize=16,color="green",shape="box"];3482[label="LT",fontsize=16,color="green",shape="box"];3483[label="EQ",fontsize=16,color="green",shape="box"];3484 -> 3245[label="",style="dashed", color="red", weight=0]; 3484[label="primCmpNat (Succ vyw440000) Zero",fontsize=16,color="magenta"];3484 -> 3549[label="",style="dashed", color="magenta", weight=3]; 3484 -> 3550[label="",style="dashed", color="magenta", weight=3]; 3485[label="EQ",fontsize=16,color="green",shape="box"];3486[label="primPlusNat vyw1400 vyw300000",fontsize=16,color="burlywood",shape="triangle"];4326[label="vyw1400/Succ vyw14000",fontsize=10,color="white",style="solid",shape="box"];3486 -> 4326[label="",style="solid", color="burlywood", weight=9]; 4326 -> 3551[label="",style="solid", color="burlywood", weight=3]; 4327[label="vyw1400/Zero",fontsize=10,color="white",style="solid",shape="box"];3486 -> 4327[label="",style="solid", color="burlywood", weight=9]; 4327 -> 3552[label="",style="solid", color="burlywood", weight=3]; 3487 -> 3245[label="",style="dashed", color="red", weight=0]; 3487[label="primCmpNat vyw430000 vyw440000",fontsize=16,color="magenta"];3487 -> 3553[label="",style="dashed", color="magenta", weight=3]; 3487 -> 3554[label="",style="dashed", color="magenta", weight=3]; 3488[label="GT",fontsize=16,color="green",shape="box"];3489[label="LT",fontsize=16,color="green",shape="box"];3490[label="EQ",fontsize=16,color="green",shape="box"];3491[label="Integer vyw430000 * Integer vyw440010",fontsize=16,color="black",shape="box"];3491 -> 3555[label="",style="solid", color="black", weight=3]; 3492[label="vyw44000",fontsize=16,color="green",shape="box"];3493[label="vyw43000",fontsize=16,color="green",shape="box"];3494[label="vyw44000",fontsize=16,color="green",shape="box"];3495[label="vyw43000",fontsize=16,color="green",shape="box"];3496[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3496 -> 3556[label="",style="solid", color="black", weight=3]; 3497[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3497 -> 3557[label="",style="solid", color="black", weight=3]; 3498[label="vyw44000",fontsize=16,color="green",shape="box"];3499[label="vyw43000",fontsize=16,color="green",shape="box"];3500[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3500 -> 3558[label="",style="solid", color="black", weight=3]; 3501[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3501 -> 3559[label="",style="solid", color="black", weight=3]; 3502[label="vyw44000",fontsize=16,color="green",shape="box"];3503[label="vyw43000",fontsize=16,color="green",shape="box"];3504[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3504 -> 3560[label="",style="solid", color="black", weight=3]; 3505[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3505 -> 3561[label="",style="solid", color="black", weight=3]; 3506[label="vyw44000",fontsize=16,color="green",shape="box"];3507[label="vyw43000",fontsize=16,color="green",shape="box"];3508[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3508 -> 3562[label="",style="solid", color="black", weight=3]; 3509[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3509 -> 3563[label="",style="solid", color="black", weight=3]; 3510[label="vyw44000",fontsize=16,color="green",shape="box"];3511[label="vyw43000",fontsize=16,color="green",shape="box"];3512[label="compare2 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3512 -> 3564[label="",style="solid", color="black", weight=3]; 3513[label="compare2 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3513 -> 3565[label="",style="solid", color="black", weight=3]; 3514 -> 2783[label="",style="dashed", color="red", weight=0]; 3514[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3514 -> 3566[label="",style="dashed", color="magenta", weight=3]; 3514 -> 3567[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3160[label="",style="dashed", color="red", weight=0]; 3515[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3515 -> 3568[label="",style="dashed", color="magenta", weight=3]; 3515 -> 3569[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3162[label="",style="dashed", color="red", weight=0]; 3516[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3516 -> 3570[label="",style="dashed", color="magenta", weight=3]; 3516 -> 3571[label="",style="dashed", color="magenta", weight=3]; 3517 -> 2787[label="",style="dashed", color="red", weight=0]; 3517[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3517 -> 3572[label="",style="dashed", color="magenta", weight=3]; 3517 -> 3573[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3166[label="",style="dashed", color="red", weight=0]; 3518[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3518 -> 3574[label="",style="dashed", color="magenta", weight=3]; 3518 -> 3575[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3168[label="",style="dashed", color="red", weight=0]; 3519[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3519 -> 3576[label="",style="dashed", color="magenta", weight=3]; 3519 -> 3577[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3170[label="",style="dashed", color="red", weight=0]; 3520[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3520 -> 3578[label="",style="dashed", color="magenta", weight=3]; 3520 -> 3579[label="",style="dashed", color="magenta", weight=3]; 3521 -> 2789[label="",style="dashed", color="red", weight=0]; 3521[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3521 -> 3580[label="",style="dashed", color="magenta", weight=3]; 3521 -> 3581[label="",style="dashed", color="magenta", weight=3]; 3522 -> 2791[label="",style="dashed", color="red", weight=0]; 3522[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3522 -> 3582[label="",style="dashed", color="magenta", weight=3]; 3522 -> 3583[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3176[label="",style="dashed", color="red", weight=0]; 3523[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3523 -> 3584[label="",style="dashed", color="magenta", weight=3]; 3523 -> 3585[label="",style="dashed", color="magenta", weight=3]; 3524 -> 2793[label="",style="dashed", color="red", weight=0]; 3524[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3524 -> 3586[label="",style="dashed", color="magenta", weight=3]; 3524 -> 3587[label="",style="dashed", color="magenta", weight=3]; 3525 -> 2795[label="",style="dashed", color="red", weight=0]; 3525[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3525 -> 3588[label="",style="dashed", color="magenta", weight=3]; 3525 -> 3589[label="",style="dashed", color="magenta", weight=3]; 3526 -> 2797[label="",style="dashed", color="red", weight=0]; 3526[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3526 -> 3590[label="",style="dashed", color="magenta", weight=3]; 3526 -> 3591[label="",style="dashed", color="magenta", weight=3]; 3527 -> 2799[label="",style="dashed", color="red", weight=0]; 3527[label="compare vyw43000 vyw44000",fontsize=16,color="magenta"];3527 -> 3592[label="",style="dashed", color="magenta", weight=3]; 3527 -> 3593[label="",style="dashed", color="magenta", weight=3]; 3528[label="primCompAux0 vyw150 LT",fontsize=16,color="black",shape="box"];3528 -> 3594[label="",style="solid", color="black", weight=3]; 3529[label="primCompAux0 vyw150 EQ",fontsize=16,color="black",shape="box"];3529 -> 3595[label="",style="solid", color="black", weight=3]; 3530[label="primCompAux0 vyw150 GT",fontsize=16,color="black",shape="box"];3530 -> 3596[label="",style="solid", color="black", weight=3]; 3531 -> 2317[label="",style="dashed", color="red", weight=0]; 3531[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3531 -> 3597[label="",style="dashed", color="magenta", weight=3]; 3531 -> 3598[label="",style="dashed", color="magenta", weight=3]; 3532 -> 2317[label="",style="dashed", color="red", weight=0]; 3532[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3532 -> 3599[label="",style="dashed", color="magenta", weight=3]; 3532 -> 3600[label="",style="dashed", color="magenta", weight=3]; 3533 -> 2317[label="",style="dashed", color="red", weight=0]; 3533[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3533 -> 3601[label="",style="dashed", color="magenta", weight=3]; 3533 -> 3602[label="",style="dashed", color="magenta", weight=3]; 3534 -> 2317[label="",style="dashed", color="red", weight=0]; 3534[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3534 -> 3603[label="",style="dashed", color="magenta", weight=3]; 3534 -> 3604[label="",style="dashed", color="magenta", weight=3]; 3535 -> 2317[label="",style="dashed", color="red", weight=0]; 3535[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3535 -> 3605[label="",style="dashed", color="magenta", weight=3]; 3535 -> 3606[label="",style="dashed", color="magenta", weight=3]; 3536 -> 2317[label="",style="dashed", color="red", weight=0]; 3536[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3536 -> 3607[label="",style="dashed", color="magenta", weight=3]; 3536 -> 3608[label="",style="dashed", color="magenta", weight=3]; 3537 -> 2317[label="",style="dashed", color="red", weight=0]; 3537[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3537 -> 3609[label="",style="dashed", color="magenta", weight=3]; 3537 -> 3610[label="",style="dashed", color="magenta", weight=3]; 3538 -> 2317[label="",style="dashed", color="red", weight=0]; 3538[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3538 -> 3611[label="",style="dashed", color="magenta", weight=3]; 3538 -> 3612[label="",style="dashed", color="magenta", weight=3]; 3539 -> 2317[label="",style="dashed", color="red", weight=0]; 3539[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3539 -> 3613[label="",style="dashed", color="magenta", weight=3]; 3539 -> 3614[label="",style="dashed", color="magenta", weight=3]; 3540 -> 2317[label="",style="dashed", color="red", weight=0]; 3540[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3540 -> 3615[label="",style="dashed", color="magenta", weight=3]; 3540 -> 3616[label="",style="dashed", color="magenta", weight=3]; 3541 -> 2317[label="",style="dashed", color="red", weight=0]; 3541[label="vyw43000 * Pos vyw440010",fontsize=16,color="magenta"];3541 -> 3617[label="",style="dashed", color="magenta", weight=3]; 3541 -> 3618[label="",style="dashed", color="magenta", weight=3]; 3542 -> 2317[label="",style="dashed", color="red", weight=0]; 3542[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3542 -> 3619[label="",style="dashed", color="magenta", weight=3]; 3542 -> 3620[label="",style="dashed", color="magenta", weight=3]; 3543 -> 2317[label="",style="dashed", color="red", weight=0]; 3543[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3543 -> 3621[label="",style="dashed", color="magenta", weight=3]; 3543 -> 3622[label="",style="dashed", color="magenta", weight=3]; 3544 -> 2317[label="",style="dashed", color="red", weight=0]; 3544[label="Pos vyw430010 * vyw44000",fontsize=16,color="magenta"];3544 -> 3623[label="",style="dashed", color="magenta", weight=3]; 3544 -> 3624[label="",style="dashed", color="magenta", weight=3]; 3545 -> 2317[label="",style="dashed", color="red", weight=0]; 3545[label="vyw43000 * Neg vyw440010",fontsize=16,color="magenta"];3545 -> 3625[label="",style="dashed", color="magenta", weight=3]; 3545 -> 3626[label="",style="dashed", color="magenta", weight=3]; 3546 -> 2317[label="",style="dashed", color="red", weight=0]; 3546[label="Neg vyw430010 * vyw44000",fontsize=16,color="magenta"];3546 -> 3627[label="",style="dashed", color="magenta", weight=3]; 3546 -> 3628[label="",style="dashed", color="magenta", weight=3]; 3547[label="Zero",fontsize=16,color="green",shape="box"];3548[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3549[label="Succ vyw440000",fontsize=16,color="green",shape="box"];3550[label="Zero",fontsize=16,color="green",shape="box"];3551[label="primPlusNat (Succ vyw14000) vyw300000",fontsize=16,color="burlywood",shape="box"];4328[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];3551 -> 4328[label="",style="solid", color="burlywood", weight=9]; 4328 -> 3629[label="",style="solid", color="burlywood", weight=3]; 4329[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3551 -> 4329[label="",style="solid", color="burlywood", weight=9]; 4329 -> 3630[label="",style="solid", color="burlywood", weight=3]; 3552[label="primPlusNat Zero vyw300000",fontsize=16,color="burlywood",shape="box"];4330[label="vyw300000/Succ vyw3000000",fontsize=10,color="white",style="solid",shape="box"];3552 -> 4330[label="",style="solid", color="burlywood", weight=9]; 4330 -> 3631[label="",style="solid", color="burlywood", weight=3]; 4331[label="vyw300000/Zero",fontsize=10,color="white",style="solid",shape="box"];3552 -> 4331[label="",style="solid", color="burlywood", weight=9]; 4331 -> 3632[label="",style="solid", color="burlywood", weight=3]; 3553[label="vyw430000",fontsize=16,color="green",shape="box"];3554[label="vyw440000",fontsize=16,color="green",shape="box"];3555[label="Integer (primMulInt vyw430000 vyw440010)",fontsize=16,color="green",shape="box"];3555 -> 3633[label="",style="dashed", color="green", weight=3]; 3556 -> 3634[label="",style="dashed", color="red", weight=0]; 3556[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3556 -> 3635[label="",style="dashed", color="magenta", weight=3]; 3557[label="EQ",fontsize=16,color="green",shape="box"];3558 -> 3636[label="",style="dashed", color="red", weight=0]; 3558[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3558 -> 3637[label="",style="dashed", color="magenta", weight=3]; 3559[label="EQ",fontsize=16,color="green",shape="box"];3560 -> 3638[label="",style="dashed", color="red", weight=0]; 3560[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3560 -> 3639[label="",style="dashed", color="magenta", weight=3]; 3561[label="EQ",fontsize=16,color="green",shape="box"];3562 -> 3640[label="",style="dashed", color="red", weight=0]; 3562[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3562 -> 3641[label="",style="dashed", color="magenta", weight=3]; 3563[label="EQ",fontsize=16,color="green",shape="box"];3564 -> 3642[label="",style="dashed", color="red", weight=0]; 3564[label="compare1 vyw43000 vyw44000 (vyw43000 <= vyw44000)",fontsize=16,color="magenta"];3564 -> 3643[label="",style="dashed", color="magenta", weight=3]; 3565[label="EQ",fontsize=16,color="green",shape="box"];3566[label="vyw43000",fontsize=16,color="green",shape="box"];3567[label="vyw44000",fontsize=16,color="green",shape="box"];3568[label="vyw44000",fontsize=16,color="green",shape="box"];3569[label="vyw43000",fontsize=16,color="green",shape="box"];3570[label="vyw44000",fontsize=16,color="green",shape="box"];3571[label="vyw43000",fontsize=16,color="green",shape="box"];3572[label="vyw43000",fontsize=16,color="green",shape="box"];3573[label="vyw44000",fontsize=16,color="green",shape="box"];3574[label="vyw44000",fontsize=16,color="green",shape="box"];3575[label="vyw43000",fontsize=16,color="green",shape="box"];3576[label="vyw44000",fontsize=16,color="green",shape="box"];3577[label="vyw43000",fontsize=16,color="green",shape="box"];3578[label="vyw44000",fontsize=16,color="green",shape="box"];3579[label="vyw43000",fontsize=16,color="green",shape="box"];3580[label="vyw43000",fontsize=16,color="green",shape="box"];3581[label="vyw44000",fontsize=16,color="green",shape="box"];3582[label="vyw43000",fontsize=16,color="green",shape="box"];3583[label="vyw44000",fontsize=16,color="green",shape="box"];3584[label="vyw44000",fontsize=16,color="green",shape="box"];3585[label="vyw43000",fontsize=16,color="green",shape="box"];3586[label="vyw43000",fontsize=16,color="green",shape="box"];3587[label="vyw44000",fontsize=16,color="green",shape="box"];3588[label="vyw43000",fontsize=16,color="green",shape="box"];3589[label="vyw44000",fontsize=16,color="green",shape="box"];3590[label="vyw43000",fontsize=16,color="green",shape="box"];3591[label="vyw44000",fontsize=16,color="green",shape="box"];3592[label="vyw43000",fontsize=16,color="green",shape="box"];3593[label="vyw44000",fontsize=16,color="green",shape="box"];3594[label="LT",fontsize=16,color="green",shape="box"];3595[label="vyw150",fontsize=16,color="green",shape="box"];3596[label="GT",fontsize=16,color="green",shape="box"];3597[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3598[label="vyw43000",fontsize=16,color="green",shape="box"];3599[label="vyw44000",fontsize=16,color="green",shape="box"];3600[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3601[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3602[label="vyw43000",fontsize=16,color="green",shape="box"];3603[label="vyw44000",fontsize=16,color="green",shape="box"];3604[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3605[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3606[label="vyw43000",fontsize=16,color="green",shape="box"];3607[label="vyw44000",fontsize=16,color="green",shape="box"];3608[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3609[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3610[label="vyw43000",fontsize=16,color="green",shape="box"];3611[label="vyw44000",fontsize=16,color="green",shape="box"];3612[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3613[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3614[label="vyw43000",fontsize=16,color="green",shape="box"];3615[label="vyw44000",fontsize=16,color="green",shape="box"];3616[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3617[label="Pos vyw440010",fontsize=16,color="green",shape="box"];3618[label="vyw43000",fontsize=16,color="green",shape="box"];3619[label="vyw44000",fontsize=16,color="green",shape="box"];3620[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3621[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3622[label="vyw43000",fontsize=16,color="green",shape="box"];3623[label="vyw44000",fontsize=16,color="green",shape="box"];3624[label="Pos vyw430010",fontsize=16,color="green",shape="box"];3625[label="Neg vyw440010",fontsize=16,color="green",shape="box"];3626[label="vyw43000",fontsize=16,color="green",shape="box"];3627[label="vyw44000",fontsize=16,color="green",shape="box"];3628[label="Neg vyw430010",fontsize=16,color="green",shape="box"];3629[label="primPlusNat (Succ vyw14000) (Succ vyw3000000)",fontsize=16,color="black",shape="box"];3629 -> 3644[label="",style="solid", color="black", weight=3]; 3630[label="primPlusNat (Succ vyw14000) Zero",fontsize=16,color="black",shape="box"];3630 -> 3645[label="",style="solid", color="black", weight=3]; 3631[label="primPlusNat Zero (Succ vyw3000000)",fontsize=16,color="black",shape="box"];3631 -> 3646[label="",style="solid", color="black", weight=3]; 3632[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];3632 -> 3647[label="",style="solid", color="black", weight=3]; 3633 -> 2467[label="",style="dashed", color="red", weight=0]; 3633[label="primMulInt vyw430000 vyw440010",fontsize=16,color="magenta"];3633 -> 3648[label="",style="dashed", color="magenta", weight=3]; 3633 -> 3649[label="",style="dashed", color="magenta", weight=3]; 3635 -> 2552[label="",style="dashed", color="red", weight=0]; 3635[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3635 -> 3650[label="",style="dashed", color="magenta", weight=3]; 3635 -> 3651[label="",style="dashed", color="magenta", weight=3]; 3634[label="compare1 vyw43000 vyw44000 vyw152",fontsize=16,color="burlywood",shape="triangle"];4332[label="vyw152/False",fontsize=10,color="white",style="solid",shape="box"];3634 -> 4332[label="",style="solid", color="burlywood", weight=9]; 4332 -> 3652[label="",style="solid", color="burlywood", weight=3]; 4333[label="vyw152/True",fontsize=10,color="white",style="solid",shape="box"];3634 -> 4333[label="",style="solid", color="burlywood", weight=9]; 4333 -> 3653[label="",style="solid", color="burlywood", weight=3]; 3637 -> 2554[label="",style="dashed", color="red", weight=0]; 3637[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3637 -> 3654[label="",style="dashed", color="magenta", weight=3]; 3637 -> 3655[label="",style="dashed", color="magenta", weight=3]; 3636[label="compare1 vyw43000 vyw44000 vyw153",fontsize=16,color="burlywood",shape="triangle"];4334[label="vyw153/False",fontsize=10,color="white",style="solid",shape="box"];3636 -> 4334[label="",style="solid", color="burlywood", weight=9]; 4334 -> 3656[label="",style="solid", color="burlywood", weight=3]; 4335[label="vyw153/True",fontsize=10,color="white",style="solid",shape="box"];3636 -> 4335[label="",style="solid", color="burlywood", weight=9]; 4335 -> 3657[label="",style="solid", color="burlywood", weight=3]; 3639 -> 2555[label="",style="dashed", color="red", weight=0]; 3639[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3639 -> 3658[label="",style="dashed", color="magenta", weight=3]; 3639 -> 3659[label="",style="dashed", color="magenta", weight=3]; 3638[label="compare1 vyw43000 vyw44000 vyw154",fontsize=16,color="burlywood",shape="triangle"];4336[label="vyw154/False",fontsize=10,color="white",style="solid",shape="box"];3638 -> 4336[label="",style="solid", color="burlywood", weight=9]; 4336 -> 3660[label="",style="solid", color="burlywood", weight=3]; 4337[label="vyw154/True",fontsize=10,color="white",style="solid",shape="box"];3638 -> 4337[label="",style="solid", color="burlywood", weight=9]; 4337 -> 3661[label="",style="solid", color="burlywood", weight=3]; 3641 -> 2556[label="",style="dashed", color="red", weight=0]; 3641[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3641 -> 3662[label="",style="dashed", color="magenta", weight=3]; 3641 -> 3663[label="",style="dashed", color="magenta", weight=3]; 3640[label="compare1 vyw43000 vyw44000 vyw155",fontsize=16,color="burlywood",shape="triangle"];4338[label="vyw155/False",fontsize=10,color="white",style="solid",shape="box"];3640 -> 4338[label="",style="solid", color="burlywood", weight=9]; 4338 -> 3664[label="",style="solid", color="burlywood", weight=3]; 4339[label="vyw155/True",fontsize=10,color="white",style="solid",shape="box"];3640 -> 4339[label="",style="solid", color="burlywood", weight=9]; 4339 -> 3665[label="",style="solid", color="burlywood", weight=3]; 3643 -> 2559[label="",style="dashed", color="red", weight=0]; 3643[label="vyw43000 <= vyw44000",fontsize=16,color="magenta"];3643 -> 3666[label="",style="dashed", color="magenta", weight=3]; 3643 -> 3667[label="",style="dashed", color="magenta", weight=3]; 3642[label="compare1 vyw43000 vyw44000 vyw156",fontsize=16,color="burlywood",shape="triangle"];4340[label="vyw156/False",fontsize=10,color="white",style="solid",shape="box"];3642 -> 4340[label="",style="solid", color="burlywood", weight=9]; 4340 -> 3668[label="",style="solid", color="burlywood", weight=3]; 4341[label="vyw156/True",fontsize=10,color="white",style="solid",shape="box"];3642 -> 4341[label="",style="solid", color="burlywood", weight=9]; 4341 -> 3669[label="",style="solid", color="burlywood", weight=3]; 3644[label="Succ (Succ (primPlusNat vyw14000 vyw3000000))",fontsize=16,color="green",shape="box"];3644 -> 3670[label="",style="dashed", color="green", weight=3]; 3645[label="Succ vyw14000",fontsize=16,color="green",shape="box"];3646[label="Succ vyw3000000",fontsize=16,color="green",shape="box"];3647[label="Zero",fontsize=16,color="green",shape="box"];3648[label="vyw440010",fontsize=16,color="green",shape="box"];3649[label="vyw430000",fontsize=16,color="green",shape="box"];3650[label="vyw43000",fontsize=16,color="green",shape="box"];3651[label="vyw44000",fontsize=16,color="green",shape="box"];3652[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3652 -> 3671[label="",style="solid", color="black", weight=3]; 3653[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3653 -> 3672[label="",style="solid", color="black", weight=3]; 3654[label="vyw43000",fontsize=16,color="green",shape="box"];3655[label="vyw44000",fontsize=16,color="green",shape="box"];3656[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3656 -> 3673[label="",style="solid", color="black", weight=3]; 3657[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3657 -> 3674[label="",style="solid", color="black", weight=3]; 3658[label="vyw43000",fontsize=16,color="green",shape="box"];3659[label="vyw44000",fontsize=16,color="green",shape="box"];3660[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3660 -> 3675[label="",style="solid", color="black", weight=3]; 3661[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3661 -> 3676[label="",style="solid", color="black", weight=3]; 3662[label="vyw43000",fontsize=16,color="green",shape="box"];3663[label="vyw44000",fontsize=16,color="green",shape="box"];3664[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3664 -> 3677[label="",style="solid", color="black", weight=3]; 3665[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3665 -> 3678[label="",style="solid", color="black", weight=3]; 3666[label="vyw43000",fontsize=16,color="green",shape="box"];3667[label="vyw44000",fontsize=16,color="green",shape="box"];3668[label="compare1 vyw43000 vyw44000 False",fontsize=16,color="black",shape="box"];3668 -> 3679[label="",style="solid", color="black", weight=3]; 3669[label="compare1 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3669 -> 3680[label="",style="solid", color="black", weight=3]; 3670 -> 3486[label="",style="dashed", color="red", weight=0]; 3670[label="primPlusNat vyw14000 vyw3000000",fontsize=16,color="magenta"];3670 -> 3681[label="",style="dashed", color="magenta", weight=3]; 3670 -> 3682[label="",style="dashed", color="magenta", weight=3]; 3671[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3671 -> 3683[label="",style="solid", color="black", weight=3]; 3672[label="LT",fontsize=16,color="green",shape="box"];3673[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3673 -> 3684[label="",style="solid", color="black", weight=3]; 3674[label="LT",fontsize=16,color="green",shape="box"];3675[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3675 -> 3685[label="",style="solid", color="black", weight=3]; 3676[label="LT",fontsize=16,color="green",shape="box"];3677[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3677 -> 3686[label="",style="solid", color="black", weight=3]; 3678[label="LT",fontsize=16,color="green",shape="box"];3679[label="compare0 vyw43000 vyw44000 otherwise",fontsize=16,color="black",shape="box"];3679 -> 3687[label="",style="solid", color="black", weight=3]; 3680[label="LT",fontsize=16,color="green",shape="box"];3681[label="vyw14000",fontsize=16,color="green",shape="box"];3682[label="vyw3000000",fontsize=16,color="green",shape="box"];3683[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3683 -> 3688[label="",style="solid", color="black", weight=3]; 3684[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3684 -> 3689[label="",style="solid", color="black", weight=3]; 3685[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3685 -> 3690[label="",style="solid", color="black", weight=3]; 3686[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3686 -> 3691[label="",style="solid", color="black", weight=3]; 3687[label="compare0 vyw43000 vyw44000 True",fontsize=16,color="black",shape="box"];3687 -> 3692[label="",style="solid", color="black", weight=3]; 3688[label="GT",fontsize=16,color="green",shape="box"];3689[label="GT",fontsize=16,color="green",shape="box"];3690[label="GT",fontsize=16,color="green",shape="box"];3691[label="GT",fontsize=16,color="green",shape="box"];3692[label="GT",fontsize=16,color="green",shape="box"];} ---------------------------------------- (16) Complex Obligation (AND) ---------------------------------------- (17) Obligation: Q DP problem: The TRS P consists of the following rules: new_primCmpNat(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat(vyw430000, vyw440000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (18) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primCmpNat(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat(vyw430000, vyw440000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (19) YES ---------------------------------------- (20) Obligation: Q DP problem: The TRS P consists of the following rules: new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyw43000, vyw44000, dd) new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, bc), bd)), bb), bdb) -> new_ltEs0(vyw43000, vyw44000, bc, bd) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(app(ty_@2, hh), baa), hg) -> new_lt0(vyw43001, vyw44001, hh, baa) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(ty_Maybe, ef)) -> new_ltEs3(vyw43001, vyw44001, ef) new_ltEs2(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_compare(vyw43001, vyw44001, bbh) new_compare2(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], bbh), bdb) -> new_compare(vyw43001, vyw44001, bbh) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, bag), bah), gc, hg) -> new_lt(vyw43000, vyw44000, bag, bah) new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(app(ty_@2, ce), cf)), bdb) -> new_ltEs0(vyw43000, vyw44000, ce, cf) new_lt3(vyw43000, vyw44000, ga) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(app(app(ty_@3, eb), ec), ed)), bdb) -> new_ltEs1(vyw43001, vyw44001, eb, ec, ed) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(app(ty_@2, dh), ea)) -> new_ltEs0(vyw43001, vyw44001, dh, ea) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(app(app(ty_@3, bab), bac), bad), hg) -> new_lt1(vyw43001, vyw44001, bab, bac, bad) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(app(ty_Either, df), dg)) -> new_ltEs(vyw43001, vyw44001, df, dg) new_ltEs3(Just(vyw43000), Just(vyw44000), app(ty_[], beb)) -> new_ltEs2(vyw43000, vyw44000, beb) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs1(vyw43001, vyw44001, eb, ec, ed) new_lt(vyw43000, vyw44000, eg, eh) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(ty_[], bae), hg) -> new_lt2(vyw43001, vyw44001, bae) new_ltEs(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ca), bb) -> new_ltEs3(vyw43000, vyw44000, ca) new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], bh)), bb), bdb) -> new_ltEs2(vyw43000, vyw44000, bh) new_ltEs3(Just(vyw43000), Just(vyw44000), app(app(ty_Either, bdc), bdd)) -> new_ltEs(vyw43000, vyw44000, bdc, bdd) new_ltEs3(Just(vyw43000), Just(vyw44000), app(app(ty_@2, bde), bdf)) -> new_ltEs0(vyw43000, vyw44000, bde, bdf) new_ltEs(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bc), bd), bb) -> new_ltEs0(vyw43000, vyw44000, bc, bd) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), gc), hg), bdb) -> new_lt0(vyw43000, vyw44000, bba, bbb) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(ty_[], hc)) -> new_ltEs2(vyw43002, vyw44002, hc) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(app(ty_Either, gd), ge)), bdb) -> new_ltEs(vyw43002, vyw44002, gd, ge) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, fb), fc), fa) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, bbg), gc, hg) -> new_lt3(vyw43000, vyw44000, bbg) new_lt1(vyw43000, vyw44000, fd, ff, fg) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) new_primCompAux(vyw43000, vyw44000, vyw141, app(app(ty_@2, bcc), bcd)) -> new_compare3(vyw43000, vyw44000, bcc, bcd) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fa), bdb) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(app(app(ty_@3, bab), bac), bad)), hg), bdb) -> new_lt1(vyw43001, vyw44001, bab, bac, bad) new_ltEs(Left(vyw43000), Left(vyw44000), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw43000, vyw44000, h, ba) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, fd), ff), fg), fa) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) new_ltEs2(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) new_lt2(vyw43000, vyw44000, fh) -> new_compare(vyw43000, vyw44000, fh) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], bbf)), gc), hg), bdb) -> new_lt2(vyw43000, vyw44000, bbf) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(ty_Maybe, hd)), bdb) -> new_ltEs3(vyw43002, vyw44002, hd) new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bdg), bdh), bea)), bdb) -> new_ltEs1(vyw43000, vyw44000, bdg, bdh, bea) new_primCompAux(vyw43000, vyw44000, vyw141, app(app(ty_Either, bca), bcb)) -> new_compare1(vyw43000, vyw44000, bca, bcb) new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, be), bf), bg)), bb), bdb) -> new_ltEs1(vyw43000, vyw44000, be, bf, bg) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(app(app(ty_@3, gh), ha), hb)), bdb) -> new_ltEs1(vyw43002, vyw44002, gh, ha, hb) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, bbc), bbd), bbe), gc, hg) -> new_lt1(vyw43000, vyw44000, bbc, bbd, bbe) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(app(ty_Either, he), hf)), hg), bdb) -> new_lt(vyw43001, vyw44001, he, hf) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(app(ty_@2, dh), ea)), bdb) -> new_ltEs0(vyw43001, vyw44001, dh, ea) new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(ty_[], bfd)) -> new_ltEs2(vyw4300, vyw4400, bfd) new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, bdc), bdd)), bdb) -> new_ltEs(vyw43000, vyw44000, bdc, bdd) new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, bde), bdf)), bdb) -> new_ltEs0(vyw43000, vyw44000, bde, bdf) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(app(ty_Either, df), dg)), bdb) -> new_ltEs(vyw43001, vyw44001, df, dg) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, eg), eh), fa) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) new_compare20(vyw43000, vyw44000, False, fb, fc) -> new_ltEs0(vyw43000, vyw44000, fb, fc) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(app(ty_@2, gf), gg)) -> new_ltEs0(vyw43002, vyw44002, gf, gg) new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], beb)), bdb) -> new_ltEs2(vyw43000, vyw44000, beb) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(ty_[], ee)) -> new_ltEs2(vyw43001, vyw44001, ee) new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(ty_[], dc)), bdb) -> new_ltEs2(vyw43000, vyw44000, dc) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(app(ty_@2, gf), gg)), bdb) -> new_ltEs0(vyw43002, vyw44002, gf, gg) new_primCompAux(vyw43000, vyw44000, vyw141, app(ty_Maybe, bda)) -> new_compare5(vyw43000, vyw44000, bda) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(ty_Maybe, ef)), bdb) -> new_ltEs3(vyw43001, vyw44001, ef) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(ty_[], bae)), hg), bdb) -> new_lt2(vyw43001, vyw44001, bae) new_ltEs(Left(vyw43000), Left(vyw44000), app(ty_[], bh), bb) -> new_ltEs2(vyw43000, vyw44000, bh) new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bdb) -> new_ltEs(vyw43000, vyw44000, h, ba) new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, beg), beh)) -> new_ltEs0(vyw4300, vyw4400, beg, beh) new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(ty_[], dc)) -> new_ltEs2(vyw43000, vyw44000, dc) new_ltEs(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs1(vyw43000, vyw44000, be, bf, bg) new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw43000, vyw44000, cc, cd) new_ltEs3(Just(vyw43000), Just(vyw44000), app(ty_Maybe, bec)) -> new_ltEs3(vyw43000, vyw44000, bec) new_primCompAux(vyw43000, vyw44000, vyw141, app(app(app(ty_@3, bce), bcf), bcg)) -> new_compare4(vyw43000, vyw44000, bce, bcf, bcg) new_compare21(vyw43000, vyw44000, False, fd, ff, fg) -> new_ltEs1(vyw43000, vyw44000, fd, ff, fg) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(ty_Maybe, baf)), hg), bdb) -> new_lt3(vyw43001, vyw44001, baf) new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vyw43000, vyw44000, cg, da, db) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) new_compare2(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], bbh), bdb) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) new_compare3(vyw43000, vyw44000, fb, fc) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(ty_Maybe, dd)), bdb) -> new_ltEs3(vyw43000, vyw44000, dd) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), gc), hg), bdb) -> new_lt(vyw43000, vyw44000, bag, bah) new_ltEs3(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs1(vyw43000, vyw44000, bdg, bdh, bea) new_primCompAux(vyw43000, vyw44000, vyw141, app(ty_[], bch)) -> new_compare(vyw43000, vyw44000, bch) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_@2, bba), bbb), gc, hg) -> new_lt0(vyw43000, vyw44000, bba, bbb) new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), bdb) -> new_ltEs(vyw43000, vyw44000, cc, cd) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(app(ty_Either, gd), ge)) -> new_ltEs(vyw43002, vyw44002, gd, ge) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(ty_Maybe, baf), hg) -> new_lt3(vyw43001, vyw44001, baf) new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(ty_Maybe, bfe)) -> new_ltEs3(vyw4300, vyw4400, bfe) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, ga)), fa), bdb) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, bbg)), gc), hg), bdb) -> new_lt3(vyw43000, vyw44000, bbg) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(app(ty_Either, he), hf), hg) -> new_lt(vyw43001, vyw44001, he, hf) new_compare4(vyw43000, vyw44000, fd, ff, fg) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(vyw43002, vyw44002, gh, ha, hb) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(ty_[], hc)), bdb) -> new_ltEs2(vyw43002, vyw44002, hc) new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs1(vyw4300, vyw4400, bfa, bfb, bfc) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(ty_Maybe, hd)) -> new_ltEs3(vyw43002, vyw44002, hd) new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_compare(vyw43001, vyw44001, bbh) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(app(ty_@2, hh), baa)), hg), bdb) -> new_lt0(vyw43001, vyw44001, hh, baa) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, ga), fa) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, cg), da), db)), bdb) -> new_ltEs1(vyw43000, vyw44000, cg, da, db) new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], bbf), gc, hg) -> new_lt2(vyw43000, vyw44000, bbf) new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, ca)), bb), bdb) -> new_ltEs3(vyw43000, vyw44000, ca) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(ty_[], ee)), bdb) -> new_ltEs2(vyw43001, vyw44001, ee) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], fh)), fa), bdb) -> new_compare(vyw43000, vyw44000, fh) new_compare22(vyw43000, vyw44000, False, ga) -> new_ltEs3(vyw43000, vyw44000, ga) new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(app(ty_@2, ce), cf)) -> new_ltEs0(vyw43000, vyw44000, ce, cf) new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, bec)), bdb) -> new_ltEs3(vyw43000, vyw44000, bec) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, eg), eh)), fa), bdb) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) new_compare5(vyw43000, vyw44000, ga) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], fh), fa) -> new_compare(vyw43000, vyw44000, fh) new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, bee), bef)) -> new_ltEs(vyw4300, vyw4400, bee, bef) new_lt0(vyw43000, vyw44000, fb, fc) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) new_compare1(vyw43000, vyw44000, eg, eh) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, fd), ff), fg)), fa), bdb) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bbc), bbd), bbe)), gc), hg), bdb) -> new_lt1(vyw43000, vyw44000, bbc, bbd, bbe) The TRS R consists of the following rules: new_esEs7(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_Either, h), ba), bb) -> new_ltEs7(vyw43000, vyw44000, h, ba) new_ltEs7(Right(vyw43000), Left(vyw44000), cb, bb) -> False new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs24(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare18(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, app(app(app(ty_@3, dbc), dbd), dbe)) -> new_esEs6(vyw400, vyw3000, dbc, dbd, dbe) new_pePe(True, vyw139) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Ratio, dea)) -> new_ltEs9(vyw43000, vyw44000, dea) new_compare15(vyw43000, vyw44000, fb, fc) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) new_lt20(vyw43000, vyw44000, app(ty_Ratio, cfe)) -> new_lt10(vyw43000, vyw44000, cfe) new_compare26(Right(vyw4300), Right(vyw4400), False, bed, bdb) -> new_compare14(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, bdb), bed, bdb) new_esEs24(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_esEs7(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs17(vyw400, vyw3000) new_lt7(vyw43000, vyw44000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_lt13(vyw43000, vyw44000, bbc, bbd, bbe) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bc), bd), bb) -> new_ltEs10(vyw43000, vyw44000, bc, bd) new_esEs10(vyw43000, vyw44000, app(app(ty_@2, bba), bbb)) -> new_esEs5(vyw43000, vyw44000, bba, bbb) new_esEs10(vyw43000, vyw44000, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs6(vyw43000, vyw44000, bbc, bbd, bbe) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare28(vyw4300, vyw4400), GT)) new_esEs4(Left(vyw400), Right(vyw3000), bhf, bgc) -> False new_esEs4(Right(vyw400), Left(vyw3000), bhf, bgc) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(vyw130, vyw131, True, cfb, cfc) -> LT new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare32(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_compare26(vyw430, vyw440, True, bed, bdb) -> EQ new_esEs24(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Maybe, cgh)) -> new_esEs7(vyw400, vyw3000, cgh) new_esEs18(@0, @0) -> True new_lt6(vyw43001, vyw44001, ty_Bool) -> new_lt12(vyw43001, vyw44001) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs22(vyw400, vyw3000, app(app(ty_Either, cdh), cea)) -> new_esEs4(vyw400, vyw3000, cdh, cea) new_esEs22(vyw400, vyw3000, app(ty_Ratio, ceg)) -> new_esEs12(vyw400, vyw3000, ceg) new_lt18(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_@2, bhd), bhe), bgc) -> new_esEs5(vyw400, vyw3000, bhd, bhe) new_esEs25(vyw400, vyw3000, app(app(ty_@2, dca), dcb)) -> new_esEs5(vyw400, vyw3000, dca, dcb) new_esEs26(vyw400, vyw3000, app(ty_[], ddd)) -> new_esEs15(vyw400, vyw3000, ddd) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_[], bhb), bgc) -> new_esEs15(vyw400, vyw3000, bhb) new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_[], bh), bb) -> new_ltEs13(vyw43000, vyw44000, bh) new_ltEs14(Nothing, Just(vyw44000), cfg) -> True new_compare26(Right(vyw4300), Left(vyw4400), False, bed, bdb) -> GT new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_esEs8(GT, GT) -> True new_esEs20(vyw402, vyw3002, app(app(ty_@2, ccd), cce)) -> new_esEs5(vyw402, vyw3002, ccd, cce) new_esEs24(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_lt6(vyw43001, vyw44001, app(app(ty_@2, hh), baa)) -> new_lt11(vyw43001, vyw44001, hh, baa) new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs19(vyw402, vyw3002) new_esEs8(EQ, EQ) -> True new_compare26(Left(vyw4300), Left(vyw4400), False, bed, bdb) -> new_compare10(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, bed), bed, bdb) new_esEs24(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, cff)) -> new_ltEs9(vyw4300, vyw4400, cff) new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_ltEs21(vyw4300, vyw4400, app(ty_[], bfd)) -> new_ltEs13(vyw4300, vyw4400, bfd) new_compare32(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs13(vyw43000, vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, app(ty_[], dc)) -> new_ltEs13(vyw43000, vyw44000, dc) new_not(True) -> False new_ltEs19(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, de), fa)) -> new_ltEs10(vyw4300, vyw4400, de, fa) new_lt6(vyw43001, vyw44001, ty_@0) -> new_lt19(vyw43001, vyw44001) new_primCompAux00(vyw150, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, cch), cda), cdb)) -> new_esEs6(vyw401, vyw3001, cch, cda, cdb) new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_esEs6(vyw402, vyw3002, cbf, cbg, cbh) new_esEs4(Right(vyw400), Right(vyw3000), bhf, app(ty_Ratio, caf)) -> new_esEs12(vyw400, vyw3000, caf) new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_Float) -> new_esEs16(vyw400, vyw3000) new_compare31(vyw43000, vyw44000) -> new_compare25(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs10(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_compare27(vyw43000, vyw44000, True, ga) -> EQ new_compare24(vyw43000, vyw44000, False, fb, fc) -> new_compare110(vyw43000, vyw44000, new_ltEs10(vyw43000, vyw44000, fb, fc), fb, fc) new_esEs7(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, cb), bb)) -> new_ltEs7(vyw4300, vyw4400, cb, bb) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_lt6(vyw43001, vyw44001, app(ty_Maybe, baf)) -> new_lt16(vyw43001, vyw44001, baf) new_compare8(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_esEs23(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_@0, bgc) -> new_esEs18(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Char) -> new_ltEs6(vyw43001, vyw44001) new_compare10(vyw123, vyw124, True, bff, bfg) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs8(GT, LT) -> False new_esEs9(vyw43001, vyw44001, app(ty_Ratio, bga)) -> new_esEs12(vyw43001, vyw44001, bga) new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, fd), ff), fg)) -> new_lt13(vyw43000, vyw44000, fd, ff, fg) new_primCompAux00(vyw150, GT) -> GT new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, app(ty_Ratio, dcd)) -> new_ltEs9(vyw43000, vyw44000, dcd) new_lt7(vyw43000, vyw44000, app(ty_Maybe, bbg)) -> new_lt16(vyw43000, vyw44000, bbg) new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) new_esEs25(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_esEs10(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_ltEs8(GT, EQ) -> False new_compare110(vyw43000, vyw44000, True, fb, fc) -> LT new_esEs24(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs5(@2(vyw400, vyw401), @2(vyw3000, vyw3001), che, chf) -> new_asAs(new_esEs25(vyw400, vyw3000, che), new_esEs24(vyw401, vyw3001, chf)) new_esEs23(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_lt8(vyw43000, vyw44000, eg, eh) new_esEs17(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_lt7(vyw43000, vyw44000, app(ty_Ratio, bgb)) -> new_lt10(vyw43000, vyw44000, bgb) new_primPlusNat1(Succ(vyw14000), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw14000, vyw3000000))) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Ratio, bhc), bgc) -> new_esEs12(vyw400, vyw3000, bhc) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Ordering) -> new_ltEs8(vyw43001, vyw44001) new_esEs19(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_esEs21(vyw401, vyw3001, app(app(ty_@2, cdf), cdg)) -> new_esEs5(vyw401, vyw3001, cdf, cdg) new_lt20(vyw43000, vyw44000, app(ty_[], fh)) -> new_lt15(vyw43000, vyw44000, fh) new_esEs4(Left(vyw400), Left(vyw3000), ty_Bool, bgc) -> new_esEs13(vyw400, vyw3000) new_compare210(vyw43000, vyw44000, True) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Ratio, dcc), bb) -> new_ltEs9(vyw43000, vyw44000, dcc) new_esEs4(Left(vyw400), Left(vyw3000), ty_Double, bgc) -> new_esEs17(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_[], ee)) -> new_ltEs13(vyw43001, vyw44001, ee) new_ltEs17(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare28(vyw43000, vyw44000) new_lt13(vyw43000, vyw44000, fd, ff, fg) -> new_esEs8(new_compare16(vyw43000, vyw44000, fd, ff, fg), LT) new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(ty_Either, df), dg)) -> new_ltEs7(vyw43001, vyw44001, df, dg) new_pePe(False, vyw139) -> vyw139 new_esEs7(Nothing, Just(vyw3000), cgb) -> False new_esEs7(Just(vyw400), Nothing, cgb) -> False new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Bool, bb) -> new_ltEs11(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Ordering, bgc) -> new_esEs8(vyw400, vyw3000) new_compare29(vyw43000, vyw44000, app(ty_Ratio, cga)) -> new_compare9(vyw43000, vyw44000, cga) new_esEs25(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_[], beb)) -> new_ltEs13(vyw43000, vyw44000, beb) new_esEs6(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), cba, cbb, cbc) -> new_asAs(new_esEs22(vyw400, vyw3000, cba), new_asAs(new_esEs21(vyw401, vyw3001, cbb), new_esEs20(vyw402, vyw3002, cbc))) new_lt7(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, app(app(ty_Either, ccf), ccg)) -> new_esEs4(vyw401, vyw3001, ccf, ccg) new_esEs10(vyw43000, vyw44000, app(ty_Maybe, bbg)) -> new_esEs7(vyw43000, vyw44000, bbg) new_esEs10(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(app(ty_@2, ddf), ddg)) -> new_esEs5(vyw400, vyw3000, ddf, ddg) new_ltEs19(vyw43001, vyw44001, app(app(ty_@2, dh), ea)) -> new_ltEs10(vyw43001, vyw44001, dh, ea) new_esEs25(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_Maybe, ef)) -> new_ltEs14(vyw43001, vyw44001, ef) new_esEs25(vyw400, vyw3000, app(ty_[], dbg)) -> new_esEs15(vyw400, vyw3000, dbg) new_esEs9(vyw43001, vyw44001, app(app(ty_@2, hh), baa)) -> new_esEs5(vyw43001, vyw44001, hh, baa) new_esEs4(Right(vyw400), Right(vyw3000), bhf, app(app(ty_@2, cag), cah)) -> new_esEs5(vyw400, vyw3000, cag, cah) new_ltEs19(vyw43001, vyw44001, ty_Double) -> new_ltEs16(vyw43001, vyw44001) new_esEs11(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_compare26(Left(vyw4300), Right(vyw4400), False, bed, bdb) -> LT new_compare17(vyw43000, vyw44000, True) -> LT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs27(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_ltEs7(Right(vyw43000), Right(vyw44000), cb, app(app(ty_@2, ce), cf)) -> new_ltEs10(vyw43000, vyw44000, ce, cf) new_ltEs5(vyw43002, vyw44002, app(ty_[], hc)) -> new_ltEs13(vyw43002, vyw44002, hc) new_esEs7(Nothing, Nothing, cgb) -> True new_compare19(vyw43000, vyw44000, True, ga) -> LT new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_lt6(vyw43001, vyw44001, app(app(app(ty_@3, bab), bac), bad)) -> new_lt13(vyw43001, vyw44001, bab, bac, bad) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs25(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Int) -> new_ltEs18(vyw43001, vyw44001) new_ltEs5(vyw43002, vyw44002, app(app(ty_@2, gf), gg)) -> new_ltEs10(vyw43002, vyw44002, gf, gg) new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs11(vyw43000, vyw44000)) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs25(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_esEs21(vyw401, vyw3001, app(ty_Ratio, cde)) -> new_esEs12(vyw401, vyw3001, cde) new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs16(vyw402, vyw3002) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare8(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_esEs25(vyw400, vyw3000, app(ty_Maybe, dbf)) -> new_esEs7(vyw400, vyw3000, dbf) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs7(vyw43000, vyw44000, cc, cd) new_esEs23(vyw43000, vyw44000, app(app(ty_Either, eg), eh)) -> new_esEs4(vyw43000, vyw44000, eg, eh) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_lt7(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Int) -> new_ltEs18(vyw43002, vyw44002) new_compare29(vyw43000, vyw44000, app(ty_Maybe, bda)) -> new_compare13(vyw43000, vyw44000, bda) new_esEs15([], [], dce) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, app(ty_Ratio, bgb)) -> new_esEs12(vyw43000, vyw44000, bgb) new_esEs24(vyw401, vyw3001, app(app(app(ty_@3, daa), dab), dac)) -> new_esEs6(vyw401, vyw3001, daa, dab, dac) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Integer, bb) -> new_ltEs12(vyw43000, vyw44000) new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_primMulNat0(Succ(vyw40100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Int, bb) -> new_ltEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Char, bgc) -> new_esEs11(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_ltEs11(False, False) -> True new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cge), cgf), cgg)) -> new_esEs6(vyw400, vyw3000, cge, cgf, cgg) new_esEs23(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs6(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_ltEs5(vyw43002, vyw44002, app(app(ty_Either, gd), ge)) -> new_ltEs7(vyw43002, vyw44002, gd, ge) new_esEs15(:(vyw400, vyw401), :(vyw3000, vyw3001), dce) -> new_asAs(new_esEs26(vyw400, vyw3000, dce), new_esEs15(vyw401, vyw3001, dce)) new_esEs4(Right(vyw400), Right(vyw3000), bhf, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs6(vyw400, vyw3000, caa, cab, cac) new_esEs22(vyw400, vyw3000, app(ty_Maybe, cee)) -> new_esEs7(vyw400, vyw3000, cee) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Ordering, bb) -> new_ltEs8(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, app(ty_Maybe, ga)) -> new_esEs7(vyw43000, vyw44000, ga) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, cfg)) -> new_ltEs14(vyw4300, vyw4400, cfg) new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare11(vyw43000, vyw44000) new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare31(vyw43000, vyw44000), LT) new_esEs10(vyw43000, vyw44000, app(app(ty_Either, bag), bah)) -> new_esEs4(vyw43000, vyw44000, bag, bah) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Maybe, bec)) -> new_ltEs14(vyw43000, vyw44000, bec) new_esEs23(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs8(LT, LT) -> True new_compare111(vyw43000, vyw44000, True) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_@2, bde), bdf)) -> new_ltEs10(vyw43000, vyw44000, bde, bdf) new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs11(True, True) -> True new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs18(vyw402, vyw3002) new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, ceb), cec), ced)) -> new_esEs6(vyw400, vyw3000, ceb, cec, ced) new_primPlusNat1(Succ(vyw14000), Zero) -> Succ(vyw14000) new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_esEs9(vyw43001, vyw44001, app(app(app(ty_@3, bab), bac), bad)) -> new_esEs6(vyw43001, vyw44001, bab, bac, bad) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCompAux0(vyw43000, vyw44000, vyw141, bbh) -> new_primCompAux00(vyw141, new_compare29(vyw43000, vyw44000, bbh)) new_lt7(vyw43000, vyw44000, app(ty_[], bbf)) -> new_lt15(vyw43000, vyw44000, bbf) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_Either, bdc), bdd)) -> new_ltEs7(vyw43000, vyw44000, bdc, bdd) new_esEs13(True, True) -> True new_esEs23(vyw43000, vyw44000, app(app(ty_@2, fb), fc)) -> new_esEs5(vyw43000, vyw44000, fb, fc) new_ltEs4(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, hg) -> new_pePe(new_lt7(vyw43000, vyw44000, gb), new_asAs(new_esEs10(vyw43000, vyw44000, gb), new_pePe(new_lt6(vyw43001, vyw44001, gc), new_asAs(new_esEs9(vyw43001, vyw44001, gc), new_ltEs5(vyw43002, vyw44002, hg))))) new_esEs24(vyw401, vyw3001, app(ty_Maybe, dad)) -> new_esEs7(vyw401, vyw3001, dad) new_lt5(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, app(ty_Maybe, hd)) -> new_ltEs14(vyw43002, vyw44002, hd) new_compare12(vyw43000, vyw44000, False, fd, ff, fg) -> GT new_lt7(vyw43000, vyw44000, app(app(ty_@2, bba), bbb)) -> new_lt11(vyw43000, vyw44000, bba, bbb) new_esEs23(vyw43000, vyw44000, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs6(vyw43000, vyw44000, fd, ff, fg) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs11(vyw400, vyw3000) new_esEs9(vyw43001, vyw44001, app(app(ty_Either, he), hf)) -> new_esEs4(vyw43001, vyw44001, he, hf) new_esEs20(vyw402, vyw3002, app(ty_Ratio, ccc)) -> new_esEs12(vyw402, vyw3002, ccc) new_esEs25(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs17(vyw402, vyw3002) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs4(vyw43000, vyw44000, cg, da, db) new_compare27(vyw43000, vyw44000, False, ga) -> new_compare19(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, ga), ga) new_esEs27(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare25(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000)) new_ltEs11(False, True) -> True new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_@2, chc), chd)) -> new_esEs5(vyw400, vyw3000, chc, chd) new_lt6(vyw43001, vyw44001, ty_Int) -> new_lt5(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_Float) -> new_esEs16(vyw43001, vyw44001) new_esEs24(vyw401, vyw3001, app(app(ty_@2, dag), dah)) -> new_esEs5(vyw401, vyw3001, dag, dah) new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs23(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare11(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Char, bb) -> new_ltEs6(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Right(vyw44000), cb, bb) -> True new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) new_esEs24(vyw401, vyw3001, app(ty_[], dae)) -> new_esEs15(vyw401, vyw3001, dae) new_compare30(vyw43000, vyw44000, eg, eh) -> new_compare26(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) new_lt6(vyw43001, vyw44001, ty_Char) -> new_lt4(vyw43001, vyw44001) new_esEs24(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Maybe, bha), bgc) -> new_esEs7(vyw400, vyw3000, bha) new_esEs13(False, False) -> True new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_lt6(vyw43001, vyw44001, ty_Integer) -> new_lt14(vyw43001, vyw44001) new_esEs7(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs16(vyw400, vyw3000) new_ltEs8(GT, GT) -> True new_lt8(vyw43000, vyw44000, eg, eh) -> new_esEs8(new_compare30(vyw43000, vyw44000, eg, eh), LT) new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_lt6(vyw43001, vyw44001, app(ty_[], bae)) -> new_lt15(vyw43001, vyw44001, bae) new_compare0([], :(vyw44000, vyw44001), bbh) -> LT new_asAs(True, vyw118) -> vyw118 new_compare10(vyw123, vyw124, False, bff, bfg) -> GT new_compare12(vyw43000, vyw44000, True, fd, ff, fg) -> LT new_ltEs8(EQ, EQ) -> True new_esEs9(vyw43001, vyw44001, ty_Double) -> new_esEs17(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_@0) -> new_esEs18(vyw43001, vyw44001) new_ltEs10(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, fa) -> new_pePe(new_lt20(vyw43000, vyw44000, de), new_asAs(new_esEs23(vyw43000, vyw44000, de), new_ltEs19(vyw43001, vyw44001, fa))) new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_Either, bgd), bge), bgc) -> new_esEs4(vyw400, vyw3000, bgd, bge) new_esEs4(Right(vyw400), Right(vyw3000), bhf, app(ty_Maybe, cad)) -> new_esEs7(vyw400, vyw3000, cad) new_esEs20(vyw402, vyw3002, app(ty_[], ccb)) -> new_esEs15(vyw402, vyw3002, ccb) new_esEs24(vyw401, vyw3001, app(ty_Ratio, daf)) -> new_esEs12(vyw401, vyw3001, daf) new_esEs9(vyw43001, vyw44001, app(ty_Maybe, baf)) -> new_esEs7(vyw43001, vyw44001, baf) new_esEs4(Left(vyw400), Left(vyw3000), ty_Float, bgc) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Ratio, chb)) -> new_esEs12(vyw400, vyw3000, chb) new_lt6(vyw43001, vyw44001, app(app(ty_Either, he), hf)) -> new_lt8(vyw43001, vyw44001, he, hf) new_compare24(vyw43000, vyw44000, True, fb, fc) -> EQ new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_compare29(vyw43000, vyw44000, app(app(ty_Either, bca), bcb)) -> new_compare30(vyw43000, vyw44000, bca, bcb) new_primCompAux00(vyw150, EQ) -> vyw150 new_compare13(vyw43000, vyw44000, ga) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) new_compare0([], [], bbh) -> EQ new_esEs20(vyw402, vyw3002, app(app(ty_Either, cbd), cbe)) -> new_esEs4(vyw402, vyw3002, cbd, cbe) new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) new_ltEs8(EQ, GT) -> True new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, bee), bef)) -> new_ltEs7(vyw4300, vyw4400, bee, bef) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_Either, cgc), cgd)) -> new_esEs4(vyw400, vyw3000, cgc, cgd) new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs9(vyw43001, vyw44001, ty_Char) -> new_esEs11(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000, fb, fc) -> new_esEs8(new_compare15(vyw43000, vyw44000, fb, fc), LT) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_lt7(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False) -> GT new_esEs22(vyw400, vyw3000, app(app(ty_@2, ceh), cfa)) -> new_esEs5(vyw400, vyw3000, ceh, cfa) new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, bce), bcf), bcg)) -> new_compare16(vyw43000, vyw44000, bce, bcf, bcg) new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, bfe)) -> new_ltEs14(vyw4300, vyw4400, bfe) new_compare29(vyw43000, vyw44000, app(ty_[], bch)) -> new_compare0(vyw43000, vyw44000, bch) new_compare11(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_esEs15(:(vyw400, vyw401), [], dce) -> False new_esEs15([], :(vyw3000, vyw3001), dce) -> False new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare11(vyw4300, vyw4400), GT)) new_ltEs11(True, False) -> False new_esEs25(vyw400, vyw3000, app(app(ty_Either, dba), dbb)) -> new_esEs4(vyw400, vyw3000, dba, dbb) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, beg), beh)) -> new_ltEs10(vyw4300, vyw4400, beg, beh) new_esEs24(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs14(vyw402, vyw3002) new_esEs4(Right(vyw400), Right(vyw3000), bhf, app(app(ty_Either, bhg), bhh)) -> new_esEs4(vyw400, vyw3000, bhg, bhh) new_ltEs5(vyw43002, vyw44002, ty_Ordering) -> new_ltEs8(vyw43002, vyw44002) new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_ltEs8(LT, EQ) -> True new_esEs7(Just(vyw400), Just(vyw3000), app(ty_[], cha)) -> new_esEs15(vyw400, vyw3000, cha) new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_@0) -> new_esEs18(vyw400, vyw3000) new_lt17(vyw43000, vyw44000) -> new_esEs8(new_compare28(vyw43000, vyw44000), LT) new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare6(vyw43000, vyw44000) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_compare16(vyw43000, vyw44000, fd, ff, fg) -> new_compare23(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_ltEs7(Right(vyw43000), Right(vyw44000), cb, app(ty_Maybe, dd)) -> new_ltEs14(vyw43000, vyw44000, dd) new_esEs21(vyw401, vyw3001, app(ty_Maybe, cdc)) -> new_esEs7(vyw401, vyw3001, cdc) new_compare19(vyw43000, vyw44000, False, ga) -> GT new_ltEs8(LT, LT) -> True new_ltEs14(Just(vyw43000), Nothing, cfg) -> False new_ltEs14(Nothing, Nothing, cfg) -> True new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_lt20(vyw43000, vyw44000, app(app(ty_@2, fb), fc)) -> new_lt11(vyw43000, vyw44000, fb, fc) new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_lt12(vyw43000, vyw44000) -> new_esEs8(new_compare32(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ca), bb) -> new_ltEs14(vyw43000, vyw44000, ca) new_ltEs5(vyw43002, vyw44002, ty_Char) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_lt6(vyw43001, vyw44001, ty_Float) -> new_lt17(vyw43001, vyw44001) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, ty_Double) -> new_ltEs16(vyw43002, vyw44002) new_lt15(vyw43000, vyw44000, fh) -> new_esEs8(new_compare0(vyw43000, vyw44000, fh), LT) new_esEs24(vyw401, vyw3001, app(app(ty_Either, chg), chh)) -> new_esEs4(vyw401, vyw3001, chg, chh) new_esEs26(vyw400, vyw3000, app(ty_Maybe, ddc)) -> new_esEs7(vyw400, vyw3000, ddc) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs4(vyw43001, vyw44001, eb, ec, ed) new_esEs23(vyw43000, vyw44000, app(ty_Ratio, cfe)) -> new_esEs12(vyw43000, vyw44000, cfe) new_ltEs19(vyw43001, vyw44001, ty_@0) -> new_ltEs17(vyw43001, vyw44001) new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dch), dda), ddb)) -> new_esEs6(vyw400, vyw3000, dch, dda, ddb) new_ltEs5(vyw43002, vyw44002, ty_Bool) -> new_ltEs11(vyw43002, vyw44002) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, cfh)) -> new_ltEs9(vyw4300, vyw4400, cfh) new_ltEs5(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_compare23(vyw43000, vyw44000, True, fd, ff, fg) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Float, bb) -> new_ltEs15(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_[], bbh)) -> new_ltEs13(vyw4300, vyw4400, bbh) new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_@0, bb) -> new_ltEs17(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare7(vyw43000, vyw44000) new_esEs4(Right(vyw400), Right(vyw3000), bhf, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs20(vyw402, vyw3002, app(ty_Maybe, cca)) -> new_esEs7(vyw402, vyw3002, cca) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_compare0(:(vyw43000, vyw43001), [], bbh) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs5(vyw43002, vyw44002, ty_@0) -> new_ltEs17(vyw43002, vyw44002) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_lt6(vyw43001, vyw44001, app(ty_Ratio, bga)) -> new_lt10(vyw43001, vyw44001, bga) new_compare25(vyw43000, vyw44000, True) -> EQ new_esEs23(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs9(vyw4300, vyw4400, cff) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, cff), GT)) new_esEs12(:%(vyw400, vyw401), :%(vyw3000, vyw3001), ddh) -> new_asAs(new_esEs28(vyw400, vyw3000, ddh), new_esEs27(vyw401, vyw3001, ddh)) new_lt16(vyw43000, vyw44000, ga) -> new_esEs8(new_compare13(vyw43000, vyw44000, ga), LT) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_primPlusNat0(Succ(vyw1400), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1400, vyw300000))) new_esEs9(vyw43001, vyw44001, ty_Bool) -> new_esEs13(vyw43001, vyw44001) new_ltEs19(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_ltEs5(vyw43002, vyw44002, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs4(vyw43002, vyw44002, gh, ha, hb) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs4(vyw43000, vyw44000, bdg, bdh, bea) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Bool) -> new_ltEs11(vyw43001, vyw44001) new_esEs23(vyw43000, vyw44000, app(ty_[], fh)) -> new_esEs15(vyw43000, vyw44000, fh) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Int, bgc) -> new_esEs19(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs26(vyw400, vyw3000, app(app(ty_Either, dcf), dcg)) -> new_esEs4(vyw400, vyw3000, dcf, dcg) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_lt6(vyw43001, vyw44001, ty_Ordering) -> new_lt9(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs4(vyw4300, vyw4400, bfa, bfb, bfc) new_esEs9(vyw43001, vyw44001, ty_Int) -> new_esEs19(vyw43001, vyw44001) new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs11(vyw402, vyw3002) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_lt6(vyw43001, vyw44001, ty_Double) -> new_lt18(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, app(ty_[], bae)) -> new_esEs15(vyw43001, vyw44001, bae) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare11(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs4(vyw43000, vyw44000, be, bf, bg) new_esEs16(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs19(vyw43001, vyw44001, app(ty_Ratio, cfd)) -> new_ltEs9(vyw43001, vyw44001, cfd) new_lt20(vyw43000, vyw44000, app(ty_Maybe, ga)) -> new_lt16(vyw43000, vyw44000, ga) new_esEs4(Left(vyw400), Left(vyw3000), ty_Integer, bgc) -> new_esEs14(vyw400, vyw3000) new_compare6(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, fd, ff, fg) -> new_compare12(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) new_esEs4(Right(vyw400), Right(vyw3000), bhf, app(ty_[], cae)) -> new_esEs15(vyw400, vyw3000, cae) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt7(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(ty_Ratio, dde)) -> new_esEs12(vyw400, vyw3000, dde) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare31(vyw43000, vyw44000) new_compare110(vyw43000, vyw44000, False, fb, fc) -> GT new_esEs25(vyw400, vyw3000, app(ty_Ratio, dbh)) -> new_esEs12(vyw400, vyw3000, dbh) new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, bcc), bcd)) -> new_compare15(vyw43000, vyw44000, bcc, bcd) new_primEqNat0(Zero, Zero) -> True new_esEs21(vyw401, vyw3001, app(ty_[], cdd)) -> new_esEs15(vyw401, vyw3001, cdd) new_lt7(vyw43000, vyw44000, app(app(ty_Either, bag), bah)) -> new_lt8(vyw43000, vyw44000, bag, bah) new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs13(vyw402, vyw3002) new_compare14(vyw130, vyw131, False, cfb, cfc) -> GT new_esEs22(vyw400, vyw3000, app(ty_[], cef)) -> new_esEs15(vyw400, vyw3000, cef) new_ltEs8(LT, GT) -> True new_ltEs5(vyw43002, vyw44002, app(ty_Ratio, bfh)) -> new_ltEs9(vyw43002, vyw44002, bfh) new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_asAs(False, vyw118) -> False new_ltEs13(vyw4300, vyw4400, bbh) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, bbh), GT)) new_ltEs8(EQ, LT) -> False new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs14(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_lt7(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bgf), bgg), bgh), bgc) -> new_esEs6(vyw400, vyw3000, bgf, bgg, bgh) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, gb), gc), hg)) -> new_ltEs4(vyw4300, vyw4400, gb, gc, hg) new_ltEs7(Right(vyw43000), Right(vyw44000), cb, ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Integer) -> new_esEs14(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Double, bb) -> new_ltEs16(vyw43000, vyw44000) new_compare18(@0, @0) -> EQ new_esEs10(vyw43000, vyw44000, app(ty_[], bbf)) -> new_esEs15(vyw43000, vyw44000, bbf) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_lt10(vyw43000, vyw44000, cfe) -> new_esEs8(new_compare9(vyw43000, vyw44000, cfe), LT) new_lt7(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) The set Q consists of the following terms: new_ltEs20(x0, x1, ty_@0) new_esEs7(Just(x0), Nothing, x1) new_lt7(x0, x1, ty_Char) new_esEs8(EQ, EQ) new_compare31(x0, x1) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_esEs7(Just(x0), Just(x1), ty_Float) new_esEs10(x0, x1, ty_@0) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_compare27(x0, x1, True, x2) new_compare17(x0, x1, True) new_esEs10(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, ty_Char) new_esEs15(:(x0, x1), :(x2, x3), x4) new_lt8(x0, x1, x2, x3) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_ltEs14(Just(x0), Just(x1), ty_Double) new_primPlusNat1(Zero, Zero) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs20(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare29(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, ty_Int) new_esEs20(x0, x1, ty_Int) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs21(x0, x1, ty_Ordering) new_ltEs14(Just(x0), Just(x1), ty_Int) new_ltEs5(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_primEqInt(Pos(Zero), Pos(Zero)) new_compare25(x0, x1, False) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs10(x0, x1, ty_Integer) new_esEs7(Nothing, Nothing, x0) new_compare24(x0, x1, True, x2, x3) new_esEs22(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_esEs20(x0, x1, ty_Double) new_compare15(x0, x1, x2, x3) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt6(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_esEs24(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs5(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_lt6(x0, x1, ty_Integer) new_lt15(x0, x1, x2) new_compare28(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs10(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Integer) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_esEs25(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs20(x0, x1, ty_Char) new_compare11(Integer(x0), Integer(x1)) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs11(True, True) new_lt7(x0, x1, ty_Ordering) new_compare26(Left(x0), Left(x1), False, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_asAs(True, x0) new_compare26(Right(x0), Left(x1), False, x2, x3) new_compare26(Left(x0), Right(x1), False, x2, x3) new_lt12(x0, x1) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Double) new_esEs15(:(x0, x1), [], x2) new_compare19(x0, x1, True, x2) new_esEs25(x0, x1, ty_@0) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_compare29(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_esEs20(x0, x1, ty_Ordering) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare6(Char(x0), Char(x1)) new_primPlusNat1(Succ(x0), Succ(x1)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs8(LT, LT) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_compare24(x0, x1, False, x2, x3) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_esEs24(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare8(x0, x1) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_compare12(x0, x1, True, x2, x3, x4) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_esEs23(x0, x1, ty_Ordering) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_compare25(x0, x1, True) new_ltEs20(x0, x1, ty_Int) new_primCompAux00(x0, EQ) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs10(x0, x1, ty_Double) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_compare29(x0, x1, app(ty_Ratio, x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_ltEs18(x0, x1) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(ty_[], x2)) new_ltEs17(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_ltEs19(x0, x1, ty_Ordering) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCompAux00(x0, LT) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(Just(x0), Just(x1), ty_@0) new_compare29(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_lt18(x0, x1) new_lt6(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Int) new_lt6(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs26(x0, x1, ty_Char) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_ltEs21(x0, x1, ty_Ordering) new_esEs28(x0, x1, ty_Int) new_lt20(x0, x1, ty_Float) new_esEs17(Double(x0, x1), Double(x2, x3)) new_esEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Float) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_lt20(x0, x1, ty_Int) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_esEs22(x0, x1, ty_Int) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs20(x0, x1, ty_Bool) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_compare10(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs20(x0, x1, app(ty_[], x2)) new_ltEs12(x0, x1) new_ltEs5(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs26(x0, x1, ty_Float) new_compare110(x0, x1, True, x2, x3) new_compare14(x0, x1, True, x2, x3) new_lt13(x0, x1, x2, x3, x4) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_ltEs21(x0, x1, ty_Double) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs8(GT, GT) new_ltEs8(GT, GT) new_esEs25(x0, x1, ty_Double) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs7(Nothing, Just(x0), x1) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs15([], [], x0) new_ltEs8(LT, EQ) new_ltEs8(EQ, LT) new_lt7(x0, x1, ty_Integer) new_sr0(Integer(x0), Integer(x1)) new_esEs22(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, ty_@0) new_compare28(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs8(LT, LT) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs19(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs23(x0, x1, ty_Double) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_Char) new_compare26(x0, x1, True, x2, x3) new_esEs24(x0, x1, ty_Int) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_esEs22(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_Integer) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs24(x0, x1, ty_Bool) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primPlusNat0(Zero, x0) new_ltEs5(x0, x1, ty_Double) new_esEs14(Integer(x0), Integer(x1)) new_ltEs8(EQ, EQ) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs26(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Char) new_esEs9(x0, x1, ty_Float) new_lt6(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Bool) new_ltEs11(False, True) new_ltEs11(True, False) new_esEs20(x0, x1, ty_Float) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_lt19(x0, x1) new_ltEs19(x0, x1, ty_Int) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_esEs28(x0, x1, ty_Integer) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare0([], :(x0, x1), x2) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), ty_Double) new_primMulNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_ltEs14(Just(x0), Just(x1), ty_Float) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_compare29(x0, x1, ty_Ordering) new_compare32(x0, x1) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_pePe(True, x0) new_esEs26(x0, x1, ty_Integer) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs21(x0, x1, ty_Float) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare111(x0, x1, False) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_primEqNat0(Succ(x0), Succ(x1)) new_primMulNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_esEs15([], :(x0, x1), x2) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_compare29(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_compare16(x0, x1, x2, x3, x4) new_esEs9(x0, x1, app(ty_[], x2)) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs5(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, ty_Bool) new_lt7(x0, x1, app(ty_Ratio, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_esEs27(x0, x1, ty_Integer) new_compare29(x0, x1, ty_Char) new_lt20(x0, x1, app(ty_[], x2)) new_lt7(x0, x1, ty_Float) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_lt6(x0, x1, app(ty_[], x2)) new_not(True) new_esEs26(x0, x1, ty_@0) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Succ(x0)) new_lt5(x0, x1) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs11(Char(x0), Char(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs13(x0, x1, x2) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_esEs22(x0, x1, ty_@0) new_compare23(x0, x1, True, x2, x3, x4) new_compare23(x0, x1, False, x2, x3, x4) new_primCompAux00(x0, GT) new_esEs22(x0, x1, ty_Float) new_compare19(x0, x1, False, x2) new_esEs13(True, True) new_lt20(x0, x1, ty_Integer) new_ltEs8(GT, LT) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs8(LT, GT) new_primPlusNat1(Succ(x0), Zero) new_esEs21(x0, x1, app(ty_[], x2)) new_ltEs19(x0, x1, ty_Integer) new_compare30(x0, x1, x2, x3) new_compare210(x0, x1, True) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_compare13(x0, x1, x2) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_compare18(@0, @0) new_sr(x0, x1) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_ltEs14(Nothing, Nothing, x0) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Bool) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_lt16(x0, x1, x2) new_primMulInt(Pos(x0), Pos(x1)) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_lt7(x0, x1, app(ty_[], x2)) new_primCmpNat0(Succ(x0), Zero) new_compare14(x0, x1, False, x2, x3) new_primPlusNat0(Succ(x0), x1) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_compare111(x0, x1, True) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, ty_Char) new_compare27(x0, x1, False, x2) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Ordering) new_pePe(False, x0) new_esEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_compare29(x0, x1, ty_@0) new_ltEs15(x0, x1) new_esEs24(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Ordering) new_esEs23(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_lt11(x0, x1, x2, x3) new_ltEs20(x0, x1, ty_Float) new_compare17(x0, x1, False) new_ltEs21(x0, x1, app(ty_[], x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_esEs25(x0, x1, ty_Int) new_compare210(x0, x1, False) new_lt17(x0, x1) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_lt9(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_compare12(x0, x1, False, x2, x3, x4) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs18(@0, @0) new_ltEs14(Nothing, Just(x0), x1) new_ltEs11(False, False) new_compare26(Right(x0), Right(x1), False, x2, x3) new_esEs10(x0, x1, ty_Float) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_lt20(x0, x1, app(ty_Ratio, x2)) new_primEqNat0(Zero, Zero) new_compare29(x0, x1, app(ty_Maybe, x2)) new_esEs13(False, False) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_compare28(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare28(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs5(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_ltEs21(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Char) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(GT, EQ) new_ltEs8(EQ, GT) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs16(Float(x0, x1), Float(x2, x3)) new_lt7(x0, x1, ty_Double) new_lt7(x0, x1, ty_@0) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs5(x0, x1, app(ty_[], x2)) new_asAs(False, x0) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs6(x0, x1) new_lt6(x0, x1, ty_Char) new_lt10(x0, x1, x2) new_ltEs21(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Int) new_esEs20(x0, x1, ty_@0) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Int) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_Maybe, x2)) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, ty_Ordering) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_compare10(x0, x1, False, x2, x3) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs5(x0, x1, ty_Char) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs9(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs21(x0, x1, ty_Int) new_ltEs21(x0, x1, ty_Float) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs24(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_ltEs14(Just(x0), Nothing, x1) new_esEs20(x0, x1, app(ty_[], x2)) new_compare0([], [], x0) new_lt6(x0, x1, ty_Float) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_primCmpNat0(Zero, Zero) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_esEs21(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs5(x0, x1, ty_Bool) new_primCmpNat0(Zero, Succ(x0)) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_compare110(x0, x1, False, x2, x3) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (21) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_ltEs3(Just(vyw43000), Just(vyw44000), app(app(ty_Either, bdc), bdd)) -> new_ltEs(vyw43000, vyw44000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(app(ty_Either, df), dg)) -> new_ltEs(vyw43001, vyw44001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_Either, eg), eh), fa) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_ltEs3(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, bdg), bdh), bea)) -> new_ltEs1(vyw43000, vyw44000, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs1(vyw43001, vyw44001, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_lt0(vyw43000, vyw44000, fb, fc) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs3(Just(vyw43000), Just(vyw44000), app(app(ty_@2, bde), bdf)) -> new_ltEs0(vyw43000, vyw44000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(app(ty_@2, dh), ea)) -> new_ltEs0(vyw43001, vyw44001, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs3(Just(vyw43000), Just(vyw44000), app(ty_[], beb)) -> new_ltEs2(vyw43000, vyw44000, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs3(Just(vyw43000), Just(vyw44000), app(ty_Maybe, bec)) -> new_ltEs3(vyw43000, vyw44000, bec) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(ty_[], ee)) -> new_ltEs2(vyw43001, vyw44001, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_lt(vyw43000, vyw44000, eg, eh) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare22(vyw43000, vyw44000, False, ga) -> new_ltEs3(vyw43000, vyw44000, ga) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(app(ty_Either, gd), ge)) -> new_ltEs(vyw43002, vyw44002, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(app(app(ty_@3, gh), ha), hb)) -> new_ltEs1(vyw43002, vyw44002, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(app(ty_@2, gf), gg)) -> new_ltEs0(vyw43002, vyw44002, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(ty_[], hc)) -> new_ltEs2(vyw43002, vyw44002, hc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_lt1(vyw43000, vyw44000, fd, ff, fg) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), de, app(ty_Maybe, ef)) -> new_ltEs3(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, gc, app(ty_Maybe, hd)) -> new_ltEs3(vyw43002, vyw44002, hd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_Either, eg), eh)), fa), bdb) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare1(vyw43000, vyw44000, eg, eh) -> new_compare2(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, eg, eh), eg, eh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_compare21(vyw43000, vyw44000, False, fd, ff, fg) -> new_ltEs1(vyw43000, vyw44000, fd, ff, fg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 *new_compare20(vyw43000, vyw44000, False, fb, fc) -> new_ltEs0(vyw43000, vyw44000, fb, fc) The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 *new_lt2(vyw43000, vyw44000, fh) -> new_compare(vyw43000, vyw44000, fh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 *new_lt3(vyw43000, vyw44000, ga) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_compare(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_compare(vyw43001, vyw44001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_ltEs2(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 *new_ltEs2(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_compare(vyw43001, vyw44001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_compare2(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], bbh), bdb) -> new_primCompAux(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_compare3(vyw43000, vyw44000, fb, fc) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(ty_@2, fb), fc), fa) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(ty_@2, fb), fc)), fa), bdb) -> new_compare20(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, fb, fc), fb, fc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 *new_compare5(vyw43000, vyw44000, ga) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 *new_compare4(vyw43000, vyw44000, fd, ff, fg) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(app(app(ty_@3, fd), ff), fg), fa) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(app(app(ty_@3, fd), ff), fg)), fa), bdb) -> new_compare21(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, fd, ff, fg), fd, ff, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_[], fh), fa) -> new_compare(vyw43000, vyw44000, fh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs0(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), app(ty_Maybe, ga), fa) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 *new_primCompAux(vyw43000, vyw44000, vyw141, app(ty_[], bch)) -> new_compare(vyw43000, vyw44000, bch) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw43000, vyw44000, vyw141, app(app(ty_@2, bcc), bcd)) -> new_compare3(vyw43000, vyw44000, bcc, bcd) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_primCompAux(vyw43000, vyw44000, vyw141, app(app(app(ty_@3, bce), bcf), bcg)) -> new_compare4(vyw43000, vyw44000, bce, bcf, bcg) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_Maybe, ga)), fa), bdb) -> new_compare22(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ga), ga) The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 *new_primCompAux(vyw43000, vyw44000, vyw141, app(ty_Maybe, bda)) -> new_compare5(vyw43000, vyw44000, bda) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 *new_primCompAux(vyw43000, vyw44000, vyw141, app(app(ty_Either, bca), bcb)) -> new_compare1(vyw43000, vyw44000, bca, bcb) The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 *new_ltEs(Left(vyw43000), Left(vyw44000), app(app(ty_Either, h), ba), bb) -> new_ltEs(vyw43000, vyw44000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(app(ty_Either, cc), cd)) -> new_ltEs(vyw43000, vyw44000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(app(ty_Either, gd), ge)), bdb) -> new_ltEs(vyw43002, vyw44002, gd, ge) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_Either, bdc), bdd)), bdb) -> new_ltEs(vyw43000, vyw44000, bdc, bdd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(app(ty_Either, df), dg)), bdb) -> new_ltEs(vyw43001, vyw44001, df, dg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_Either, h), ba)), bb), bdb) -> new_ltEs(vyw43000, vyw44000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(app(ty_Either, cc), cd)), bdb) -> new_ltEs(vyw43000, vyw44000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_Either, bee), bef)) -> new_ltEs(vyw4300, vyw4400, bee, bef) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, be), bf), bg), bb) -> new_ltEs1(vyw43000, vyw44000, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(app(app(ty_@3, cg), da), db)) -> new_ltEs1(vyw43000, vyw44000, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(app(app(ty_@3, eb), ec), ed)), bdb) -> new_ltEs1(vyw43001, vyw44001, eb, ec, ed) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(app(ty_@3, bdg), bdh), bea)), bdb) -> new_ltEs1(vyw43000, vyw44000, bdg, bdh, bea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(app(ty_@3, be), bf), bg)), bb), bdb) -> new_ltEs1(vyw43000, vyw44000, be, bf, bg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(app(app(ty_@3, gh), ha), hb)), bdb) -> new_ltEs1(vyw43002, vyw44002, gh, ha, hb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs1(vyw4300, vyw4400, bfa, bfb, bfc) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(app(app(ty_@3, cg), da), db)), bdb) -> new_ltEs1(vyw43000, vyw44000, cg, da, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs(Left(vyw43000), Left(vyw44000), app(app(ty_@2, bc), bd), bb) -> new_ltEs0(vyw43000, vyw44000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(app(ty_@2, ce), cf)) -> new_ltEs0(vyw43000, vyw44000, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(app(ty_@2, bc), bd)), bb), bdb) -> new_ltEs0(vyw43000, vyw44000, bc, bd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(app(ty_@2, ce), cf)), bdb) -> new_ltEs0(vyw43000, vyw44000, ce, cf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(app(ty_@2, dh), ea)), bdb) -> new_ltEs0(vyw43001, vyw44001, dh, ea) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(app(ty_@2, bde), bdf)), bdb) -> new_ltEs0(vyw43000, vyw44000, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(app(ty_@2, gf), gg)), bdb) -> new_ltEs0(vyw43002, vyw44002, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(app(ty_@2, beg), beh)) -> new_ltEs0(vyw4300, vyw4400, beg, beh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_ltEs(Left(vyw43000), Left(vyw44000), app(ty_[], bh), bb) -> new_ltEs2(vyw43000, vyw44000, bh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(ty_[], dc)) -> new_ltEs2(vyw43000, vyw44000, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_[], bh)), bb), bdb) -> new_ltEs2(vyw43000, vyw44000, bh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(ty_[], bfd)) -> new_ltEs2(vyw4300, vyw4400, bfd) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_[], beb)), bdb) -> new_ltEs2(vyw43000, vyw44000, beb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(ty_[], dc)), bdb) -> new_ltEs2(vyw43000, vyw44000, dc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(ty_[], hc)), bdb) -> new_ltEs2(vyw43002, vyw44002, hc) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(ty_[], ee)), bdb) -> new_ltEs2(vyw43001, vyw44001, ee) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_Maybe, bbg), gc, hg) -> new_lt3(vyw43000, vyw44000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(ty_Maybe, baf), hg) -> new_lt3(vyw43001, vyw44001, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(ty_Maybe, baf)), hg), bdb) -> new_lt3(vyw43001, vyw44001, baf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_Maybe, bbg)), gc), hg), bdb) -> new_lt3(vyw43000, vyw44000, bbg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_Either, bag), bah), gc, hg) -> new_lt(vyw43000, vyw44000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(app(ty_Either, he), hf), hg) -> new_lt(vyw43001, vyw44001, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(app(app(ty_@3, bab), bac), bad), hg) -> new_lt1(vyw43001, vyw44001, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(app(ty_@3, bbc), bbd), bbe), gc, hg) -> new_lt1(vyw43000, vyw44000, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(ty_[], bae), hg) -> new_lt2(vyw43001, vyw44001, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(ty_[], bbf), gc, hg) -> new_lt2(vyw43000, vyw44000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), gb, app(app(ty_@2, hh), baa), hg) -> new_lt0(vyw43001, vyw44001, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_ltEs1(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), app(app(ty_@2, bba), bbb), gc, hg) -> new_lt0(vyw43000, vyw44000, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_ltEs(Right(vyw43000), Right(vyw44000), cb, app(ty_Maybe, dd)) -> new_ltEs3(vyw43000, vyw44000, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_ltEs(Left(vyw43000), Left(vyw44000), app(ty_Maybe, ca), bb) -> new_ltEs3(vyw43000, vyw44000, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), gc), app(ty_Maybe, hd)), bdb) -> new_ltEs3(vyw43002, vyw44002, hd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, de), app(ty_Maybe, ef)), bdb) -> new_ltEs3(vyw43001, vyw44001, ef) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Right(vyw43000)), Left(Right(vyw44000)), False, app(app(ty_Either, cb), app(ty_Maybe, dd)), bdb) -> new_ltEs3(vyw43000, vyw44000, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Right(vyw4300), Right(vyw4400), False, bed, app(ty_Maybe, bfe)) -> new_ltEs3(vyw4300, vyw4400, bfe) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_compare2(Left(Left(vyw43000)), Left(Left(vyw44000)), False, app(app(ty_Either, app(ty_Maybe, ca)), bb), bdb) -> new_ltEs3(vyw43000, vyw44000, ca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(Just(vyw43000)), Left(Just(vyw44000)), False, app(ty_Maybe, app(ty_Maybe, bec)), bdb) -> new_ltEs3(vyw43000, vyw44000, bec) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(app(ty_Either, he), hf)), hg), bdb) -> new_lt(vyw43001, vyw44001, he, hf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_Either, bag), bah)), gc), hg), bdb) -> new_lt(vyw43000, vyw44000, bag, bah) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(app(app(ty_@3, bab), bac), bad)), hg), bdb) -> new_lt1(vyw43001, vyw44001, bab, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(app(ty_@3, bbc), bbd), bbe)), gc), hg), bdb) -> new_lt1(vyw43000, vyw44000, bbc, bbd, bbe) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(ty_[], bbf)), gc), hg), bdb) -> new_lt2(vyw43000, vyw44000, bbf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(ty_[], bae)), hg), bdb) -> new_lt2(vyw43001, vyw44001, bae) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(:(vyw43000, vyw43001)), Left(:(vyw44000, vyw44001)), False, app(ty_[], bbh), bdb) -> new_compare(vyw43001, vyw44001, bbh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@2(vyw43000, vyw43001)), Left(@2(vyw44000, vyw44001)), False, app(app(ty_@2, app(ty_[], fh)), fa), bdb) -> new_compare(vyw43000, vyw44000, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, app(app(ty_@2, bba), bbb)), gc), hg), bdb) -> new_lt0(vyw43000, vyw44000, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_compare2(Left(@3(vyw43000, vyw43001, vyw43002)), Left(@3(vyw44000, vyw44001, vyw44002)), False, app(app(app(ty_@3, gb), app(app(ty_@2, hh), baa)), hg), bdb) -> new_lt0(vyw43001, vyw44001, hh, baa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 ---------------------------------------- (22) YES ---------------------------------------- (23) Obligation: Q DP problem: The TRS P consists of the following rules: new_esEs(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(vyw400, vyw3000, bc, bd, be) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, gh), df, fb) -> new_esEs1(vyw400, vyw3000, gh) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), bae) -> new_esEs2(vyw401, vyw3001, bae) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, gc), gd), df, fb) -> new_esEs(vyw400, vyw3000, gc, gd) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(vyw401, vyw3001, fc, fd, ff) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(app(ty_Either, bbh), bca)) -> new_esEs(vyw401, vyw3001, bbh, bca) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_esEs0(vyw400, vyw3000, bdd, bde, bdf) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_Maybe, ed)) -> new_esEs1(vyw402, vyw3002, ed) new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_@2, bh), ca), bb) -> new_esEs3(vyw400, vyw3000, bh, ca) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_Maybe, fg), fb) -> new_esEs1(vyw401, vyw3001, fg) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw400, vyw3000, bah, bba, bbb) new_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_Either, hd), he)) -> new_esEs(vyw400, vyw3000, hd, he) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_@2, dc), dd)) -> new_esEs3(vyw400, vyw3000, dc, dd) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_Either, dg), dh)) -> new_esEs(vyw402, vyw3002, dg, dh) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_@2, ga), gb), fb) -> new_esEs3(vyw401, vyw3001, ga, gb) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, hb), hc), df, fb) -> new_esEs3(vyw400, vyw3000, hb, hc) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, baf), bag)) -> new_esEs(vyw400, vyw3000, baf, bag) new_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_@2, bac), bad)) -> new_esEs3(vyw400, vyw3000, bac, bad) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, bdg), bdc) -> new_esEs1(vyw400, vyw3000, bdg) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_Maybe, da)) -> new_esEs1(vyw400, vyw3000, da) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs3(vyw401, vyw3001, bcg, bch) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(ty_Maybe, bce)) -> new_esEs1(vyw401, vyw3001, bce) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(vyw402, vyw3002, ea, eb, ec) new_esEs1(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw400, vyw3000, hf, hg, hh) new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw400, vyw3000, cc, cd) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(vyw401, vyw3001, bcb, bcc, bcd) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_Either, eh), fa), fb) -> new_esEs(vyw401, vyw3001, eh, fa) new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_[], db)) -> new_esEs2(vyw400, vyw3000, db) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], bdh), bdc) -> new_esEs2(vyw400, vyw3000, bdh) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, bea), beb), bdc) -> new_esEs3(vyw400, vyw3000, bea, beb) new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw400, vyw3000, h, ba) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(ty_[], bcf)) -> new_esEs2(vyw401, vyw3001, bcf) new_esEs1(Just(vyw400), Just(vyw3000), app(ty_[], bab)) -> new_esEs2(vyw400, vyw3000, bab) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bbd)) -> new_esEs2(vyw400, vyw3000, bbd) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_@2, ef), eg)) -> new_esEs3(vyw402, vyw3002, ef, eg) new_esEs(Left(vyw400), Left(vyw3000), app(ty_[], bg), bb) -> new_esEs2(vyw400, vyw3000, bg) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_[], ee)) -> new_esEs2(vyw402, vyw3002, ee) new_esEs(Left(vyw400), Left(vyw3000), app(ty_Maybe, bf), bb) -> new_esEs1(vyw400, vyw3000, bf) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_[], fh), fb) -> new_esEs2(vyw401, vyw3001, fh) new_esEs1(Just(vyw400), Just(vyw3000), app(ty_Maybe, baa)) -> new_esEs1(vyw400, vyw3000, baa) new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, bda), bdb), bdc) -> new_esEs(vyw400, vyw3000, bda, bdb) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], ha), df, fb) -> new_esEs2(vyw400, vyw3000, ha) new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(vyw400, vyw3000, ge, gf, gg) new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bbc)) -> new_esEs1(vyw400, vyw3000, bbc) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (24) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_Either, hd), he)) -> new_esEs(vyw400, vyw3000, hd, he) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, hf), hg), hh)) -> new_esEs0(vyw400, vyw3000, hf, hg, hh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_Either, baf), bag)) -> new_esEs(vyw400, vyw3000, baf, bag) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw400), Just(vyw3000), app(ty_[], bab)) -> new_esEs2(vyw400, vyw3000, bab) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs0(vyw400, vyw3000, bah, bba, bbb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs1(Just(vyw400), Just(vyw3000), app(app(ty_@2, bac), bad)) -> new_esEs3(vyw400, vyw3000, bac, bad) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs1(Just(vyw400), Just(vyw3000), app(ty_Maybe, baa)) -> new_esEs1(vyw400, vyw3000, baa) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(app(ty_@2, bbe), bbf)) -> new_esEs3(vyw400, vyw3000, bbe, bbf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_Maybe, bbc)) -> new_esEs1(vyw400, vyw3000, bbc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_Either, gc), gd), df, fb) -> new_esEs(vyw400, vyw3000, gc, gd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_Either, dg), dh)) -> new_esEs(vyw402, vyw3002, dg, dh) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_Either, eh), fa), fb) -> new_esEs(vyw401, vyw3001, eh, fa) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(app(ty_@3, fc), fd), ff), fb) -> new_esEs0(vyw401, vyw3001, fc, fd, ff) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(app(ty_@3, ea), eb), ec)) -> new_esEs0(vyw402, vyw3002, ea, eb, ec) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(app(ty_@3, ge), gf), gg), df, fb) -> new_esEs0(vyw400, vyw3000, ge, gf, gg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_[], ee)) -> new_esEs2(vyw402, vyw3002, ee) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_[], fh), fb) -> new_esEs2(vyw401, vyw3001, fh) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_[], ha), df, fb) -> new_esEs2(vyw400, vyw3000, ha) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(app(ty_@2, ga), gb), fb) -> new_esEs3(vyw401, vyw3001, ga, gb) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(app(ty_@2, hb), hc), df, fb) -> new_esEs3(vyw400, vyw3000, hb, hc) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(app(ty_@2, ef), eg)) -> new_esEs3(vyw402, vyw3002, ef, eg) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), app(ty_Maybe, gh), df, fb) -> new_esEs1(vyw400, vyw3000, gh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, df, app(ty_Maybe, ed)) -> new_esEs1(vyw402, vyw3002, ed) The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 *new_esEs0(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), de, app(ty_Maybe, fg), fb) -> new_esEs1(vyw401, vyw3001, fg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_Either, cc), cd)) -> new_esEs(vyw400, vyw3000, cc, cd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_Either, h), ba), bb) -> new_esEs(vyw400, vyw3000, h, ba) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(app(ty_Either, bbh), bca)) -> new_esEs(vyw401, vyw3001, bbh, bca) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_Either, bda), bdb), bdc) -> new_esEs(vyw400, vyw3000, bda, bdb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, bc), bd), be), bb) -> new_esEs0(vyw400, vyw3000, bc, bd, be) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs0(vyw400, vyw3000, ce, cf, cg) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(app(ty_@3, bdd), bde), bdf), bdc) -> new_esEs0(vyw400, vyw3000, bdd, bde, bdf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(app(app(ty_@3, bcb), bcc), bcd)) -> new_esEs0(vyw401, vyw3001, bcb, bcc, bcd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), bae) -> new_esEs2(vyw401, vyw3001, bae) The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 *new_esEs2(:(vyw400, vyw401), :(vyw3000, vyw3001), app(ty_[], bbd)) -> new_esEs2(vyw400, vyw3000, bbd) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_[], db)) -> new_esEs2(vyw400, vyw3000, db) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(ty_[], bg), bb) -> new_esEs2(vyw400, vyw3000, bg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_[], bdh), bdc) -> new_esEs2(vyw400, vyw3000, bdh) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(ty_[], bcf)) -> new_esEs2(vyw401, vyw3001, bcf) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(app(ty_@2, bh), ca), bb) -> new_esEs3(vyw400, vyw3000, bh, ca) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(app(ty_@2, dc), dd)) -> new_esEs3(vyw400, vyw3000, dc, dd) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs(Right(vyw400), Right(vyw3000), cb, app(ty_Maybe, da)) -> new_esEs1(vyw400, vyw3000, da) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 *new_esEs(Left(vyw400), Left(vyw3000), app(ty_Maybe, bf), bb) -> new_esEs1(vyw400, vyw3000, bf) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(app(ty_@2, bcg), bch)) -> new_esEs3(vyw401, vyw3001, bcg, bch) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(app(ty_@2, bea), beb), bdc) -> new_esEs3(vyw400, vyw3000, bea, beb) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), app(ty_Maybe, bdg), bdc) -> new_esEs1(vyw400, vyw3000, bdg) The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 *new_esEs3(@2(vyw400, vyw401), @2(vyw3000, vyw3001), bbg, app(ty_Maybe, bce)) -> new_esEs1(vyw401, vyw3001, bce) The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 ---------------------------------------- (25) YES ---------------------------------------- (26) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM22(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Right(vyw300), new_esEs31(vyw40, vyw300, be), bd, be), LT), bc, bd, be) new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw17, Left(vyw18), h, ba, bb) new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw32, Right(vyw33), bf, bg, bh) new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Left(vyw40), bc, bd, be) new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare26(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Left(vyw40), bc, bd, be) new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Right(vyw300), False, bd, be), GT), bc, bd, be) new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare26(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Right(vyw40), bc, bd, be) new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw16, Left(vyw18), h, ba, bb) new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Right(vyw40), bc, bd, be) new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Left(vyw300), False, bd, be), LT), bc, bd, be) new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Left(vyw300), new_esEs30(vyw40, vyw300, bd), bd, be), LT), bc, bd, be) new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Right(vyw300), False, bd, be), LT), bc, bd, be) new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Left(vyw300), False, bd, be), GT), bc, bd, be) new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw31, Right(vyw33), bf, bg, bh) The TRS R consists of the following rules: new_esEs7(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_Either, dbe), dbf), ccc) -> new_ltEs7(vyw43000, vyw44000, dbe, dbf) new_ltEs7(Right(vyw43000), Left(vyw44000), ccb, ccc) -> False new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs24(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare18(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs6(vyw400, vyw3000, dac, dad, dae) new_pePe(True, vyw139) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Ratio, dfe)) -> new_ltEs9(vyw43000, vyw44000, dfe) new_compare15(vyw43000, vyw44000, bge, bgf) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, bge, bgf), bge, bgf) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs14(vyw33, vyw28) new_lt20(vyw43000, vyw44000, app(ty_Ratio, cbg)) -> new_lt10(vyw43000, vyw44000, cbg) new_compare26(Right(vyw4300), Right(vyw4400), False, cbh, cca) -> new_compare14(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, cca), cbh, cca) new_esEs30(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) new_esEs24(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_esEs30(vyw40, vyw300, ty_Int) -> new_esEs19(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs30(vyw40, vyw300, ty_Bool) -> new_esEs13(vyw40, vyw300) new_lt7(vyw43000, vyw44000, app(app(app(ty_@3, gd), ge), gf)) -> new_lt13(vyw43000, vyw44000, gd, ge, gf) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_@2, dbh), dca), ccc) -> new_ltEs10(vyw43000, vyw44000, dbh, dca) new_esEs10(vyw43000, vyw44000, app(app(ty_@2, gb), gc)) -> new_esEs5(vyw43000, vyw44000, gb, gc) new_esEs10(vyw43000, vyw44000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(vyw43000, vyw44000, gd, ge, gf) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare28(vyw4300, vyw4400), GT)) new_esEs4(Left(vyw400), Right(vyw3000), bae, hb) -> False new_esEs4(Right(vyw400), Left(vyw3000), bae, hb) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(vyw130, vyw131, True, bgc, bgd) -> LT new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare32(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_compare26(vyw430, vyw440, True, cbh, cca) -> EQ new_esEs24(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_esEs30(vyw40, vyw300, ty_Char) -> new_esEs11(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Maybe, cfh)) -> new_esEs7(vyw400, vyw3000, cfh) new_esEs18(@0, @0) -> True new_lt6(vyw43001, vyw44001, ty_Bool) -> new_lt12(vyw43001, vyw44001) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs22(vyw400, vyw3000, app(app(ty_Either, beh), bfa)) -> new_esEs4(vyw400, vyw3000, beh, bfa) new_esEs22(vyw400, vyw3000, app(ty_Ratio, bfg)) -> new_esEs12(vyw400, vyw3000, bfg) new_lt18(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_esEs32(vyw33, vyw28, app(ty_Ratio, bhf)) -> new_esEs12(vyw33, vyw28, bhf) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_@2, bac), bad), hb) -> new_esEs5(vyw400, vyw3000, bac, bad) new_esEs25(vyw400, vyw3000, app(app(ty_@2, dba), dbb)) -> new_esEs5(vyw400, vyw3000, dba, dbb) new_esEs26(vyw400, vyw3000, app(ty_[], deg)) -> new_esEs15(vyw400, vyw3000, deg) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_[], baa), hb) -> new_esEs15(vyw400, vyw3000, baa) new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_[], dce), ccc) -> new_ltEs13(vyw43000, vyw44000, dce) new_ltEs14(Nothing, Just(vyw44000), cce) -> True new_compare26(Right(vyw4300), Left(vyw4400), False, cbh, cca) -> GT new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_esEs8(GT, GT) -> True new_esEs20(vyw402, vyw3002, app(app(ty_@2, bdd), bde)) -> new_esEs5(vyw402, vyw3002, bdd, bde) new_esEs24(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_esEs32(vyw33, vyw28, app(ty_[], bhe)) -> new_esEs15(vyw33, vyw28, bhe) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs6(vyw18, vyw13, eaa, eab, eac) new_lt6(vyw43001, vyw44001, app(app(ty_@2, eg), eh)) -> new_lt11(vyw43001, vyw44001, eg, eh) new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs19(vyw402, vyw3002) new_esEs8(EQ, EQ) -> True new_compare26(Left(vyw4300), Left(vyw4400), False, cbh, cca) -> new_compare10(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, cbh), cbh, cca) new_esEs24(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs31(vyw40, vyw300, app(app(ty_@2, dhe), dhf)) -> new_esEs5(vyw40, vyw300, dhe, dhf) new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, ccd)) -> new_ltEs9(vyw4300, vyw4400, ccd) new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs16(vyw33, vyw28) new_ltEs21(vyw4300, vyw4400, app(ty_[], cdf)) -> new_ltEs13(vyw4300, vyw4400, cdf) new_compare32(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs13(vyw43000, vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_[], ddg)) -> new_ltEs13(vyw43000, vyw44000, ddg) new_not(True) -> False new_ltEs19(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, caa), cab)) -> new_ltEs10(vyw4300, vyw4400, caa, cab) new_lt6(vyw43001, vyw44001, ty_@0) -> new_lt19(vyw43001, vyw44001) new_primCompAux00(vyw150, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs6(vyw401, vyw3001, bdh, bea, beb) new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs6(vyw402, vyw3002, bcf, bcg, bch) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_Ratio, bbe)) -> new_esEs12(vyw400, vyw3000, bbe) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Float) -> new_esEs16(vyw400, vyw3000) new_compare31(vyw43000, vyw44000) -> new_compare25(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs30(vyw40, vyw300, ty_Double) -> new_esEs17(vyw40, vyw300) new_esEs10(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_compare27(vyw43000, vyw44000, True, ha) -> EQ new_compare24(vyw43000, vyw44000, False, bge, bgf) -> new_compare110(vyw43000, vyw44000, new_ltEs10(vyw43000, vyw44000, bge, bgf), bge, bgf) new_esEs7(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, ccb), ccc)) -> new_ltEs7(vyw4300, vyw4400, ccb, ccc) new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs16(vyw40, vyw300) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_lt6(vyw43001, vyw44001, app(ty_Maybe, ff)) -> new_lt16(vyw43001, vyw44001, ff) new_compare8(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_esEs23(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_@0, hb) -> new_esEs18(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Char) -> new_ltEs6(vyw43001, vyw44001) new_compare10(vyw123, vyw124, True, ca, cb) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs13(vyw18, vyw13) new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs19(vyw18, vyw13) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs8(GT, LT) -> False new_esEs9(vyw43001, vyw44001, app(ty_Ratio, ef)) -> new_esEs12(vyw43001, vyw44001, ef) new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, cc), cd), ce)) -> new_lt13(vyw43000, vyw44000, cc, cd, ce) new_primCompAux00(vyw150, GT) -> GT new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs17(vyw18, vyw13) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_Ratio, dda)) -> new_ltEs9(vyw43000, vyw44000, dda) new_lt7(vyw43000, vyw44000, app(ty_Maybe, gh)) -> new_lt16(vyw43000, vyw44000, gh) new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) new_esEs25(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_esEs10(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_esEs30(vyw40, vyw300, ty_@0) -> new_esEs18(vyw40, vyw300) new_ltEs8(GT, EQ) -> False new_compare110(vyw43000, vyw44000, True, bge, bgf) -> LT new_esEs24(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs5(@2(vyw400, vyw401), @2(vyw3000, vyw3001), cge, cgf) -> new_asAs(new_esEs25(vyw400, vyw3000, cge), new_esEs24(vyw401, vyw3001, cgf)) new_esEs23(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, app(app(ty_Either, cbe), cbf)) -> new_lt8(vyw43000, vyw44000, cbe, cbf) new_esEs17(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_lt7(vyw43000, vyw44000, app(ty_Ratio, ga)) -> new_lt10(vyw43000, vyw44000, ga) new_primPlusNat1(Succ(vyw14000), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw14000, vyw3000000))) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Ratio, bab), hb) -> new_esEs12(vyw400, vyw3000, bab) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Ordering) -> new_ltEs8(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs6(vyw40, vyw300, dgg, dgh, dha) new_esEs19(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs14(vyw40, vyw300) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_esEs21(vyw401, vyw3001, app(app(ty_@2, bef), beg)) -> new_esEs5(vyw401, vyw3001, bef, beg) new_lt20(vyw43000, vyw44000, app(ty_[], bgb)) -> new_lt15(vyw43000, vyw44000, bgb) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw400), Left(vyw3000), ty_Bool, hb) -> new_esEs13(vyw400, vyw3000) new_compare210(vyw43000, vyw44000, True) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Ratio, dbg), ccc) -> new_ltEs9(vyw43000, vyw44000, dbg) new_esEs4(Left(vyw400), Left(vyw3000), ty_Double, hb) -> new_esEs17(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_[], cbc)) -> new_ltEs13(vyw43001, vyw44001, cbc) new_ltEs17(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare28(vyw43000, vyw44000) new_lt13(vyw43000, vyw44000, cc, cd, ce) -> new_esEs8(new_compare16(vyw43000, vyw44000, cc, cd, ce), LT) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(ty_Either, cac), cad)) -> new_ltEs7(vyw43001, vyw44001, cac, cad) new_pePe(False, vyw139) -> vyw139 new_esEs7(Nothing, Just(vyw3000), cfb) -> False new_esEs7(Just(vyw400), Nothing, cfb) -> False new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Bool, ccc) -> new_ltEs11(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Ordering, hb) -> new_esEs8(vyw400, vyw3000) new_compare29(vyw43000, vyw44000, app(ty_Ratio, ceb)) -> new_compare9(vyw43000, vyw44000, ceb) new_esEs25(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_[], dgc)) -> new_ltEs13(vyw43000, vyw44000, dgc) new_esEs6(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bca, bcb, bcc) -> new_asAs(new_esEs22(vyw400, vyw3000, bca), new_asAs(new_esEs21(vyw401, vyw3001, bcb), new_esEs20(vyw402, vyw3002, bcc))) new_lt7(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, app(app(ty_Either, bdf), bdg)) -> new_esEs4(vyw401, vyw3001, bdf, bdg) new_esEs10(vyw43000, vyw44000, app(ty_Maybe, gh)) -> new_esEs7(vyw43000, vyw44000, gh) new_esEs10(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(app(ty_@2, dfa), dfb)) -> new_esEs5(vyw400, vyw3000, dfa, dfb) new_ltEs19(vyw43001, vyw44001, app(app(ty_@2, caf), cag)) -> new_ltEs10(vyw43001, vyw44001, caf, cag) new_esEs25(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_Maybe, cbd)) -> new_ltEs14(vyw43001, vyw44001, cbd) new_esEs25(vyw400, vyw3000, app(ty_[], dag)) -> new_esEs15(vyw400, vyw3000, dag) new_esEs9(vyw43001, vyw44001, app(app(ty_@2, eg), eh)) -> new_esEs5(vyw43001, vyw44001, eg, eh) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(ty_@2, bbf), bbg)) -> new_esEs5(vyw400, vyw3000, bbf, bbg) new_ltEs19(vyw43001, vyw44001, ty_Double) -> new_ltEs16(vyw43001, vyw44001) new_esEs11(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_compare26(Left(vyw4300), Right(vyw4400), False, cbh, cca) -> LT new_compare17(vyw43000, vyw44000, True) -> LT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs27(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs32(vyw33, vyw28, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs6(vyw33, vyw28, bha, bhb, bhc) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(ty_@2, ddb), ddc)) -> new_ltEs10(vyw43000, vyw44000, ddb, ddc) new_ltEs5(vyw43002, vyw44002, app(ty_[], eb)) -> new_ltEs13(vyw43002, vyw44002, eb) new_esEs7(Nothing, Nothing, cfb) -> True new_compare19(vyw43000, vyw44000, True, ha) -> LT new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_lt6(vyw43001, vyw44001, app(app(app(ty_@3, fa), fb), fc)) -> new_lt13(vyw43001, vyw44001, fa, fb, fc) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs25(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Int) -> new_ltEs18(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, app(app(ty_Either, dge), dgf)) -> new_esEs4(vyw40, vyw300, dge, dgf) new_ltEs5(vyw43002, vyw44002, app(app(ty_@2, de), df)) -> new_ltEs10(vyw43002, vyw44002, de, df) new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs11(vyw43000, vyw44000)) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs25(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_esEs21(vyw401, vyw3001, app(ty_Ratio, bee)) -> new_esEs12(vyw401, vyw3001, bee) new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs16(vyw402, vyw3002) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare8(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_esEs25(vyw400, vyw3000, app(ty_Maybe, daf)) -> new_esEs7(vyw400, vyw3000, daf) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(ty_Either, dcg), dch)) -> new_ltEs7(vyw43000, vyw44000, dcg, dch) new_esEs23(vyw43000, vyw44000, app(app(ty_Either, cbe), cbf)) -> new_esEs4(vyw43000, vyw44000, cbe, cbf) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_lt7(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Int) -> new_ltEs18(vyw43002, vyw44002) new_compare29(vyw43000, vyw44000, app(ty_Maybe, cfa)) -> new_compare13(vyw43000, vyw44000, cfa) new_esEs15([], [], dbc) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, app(ty_Ratio, ga)) -> new_esEs12(vyw43000, vyw44000, ga) new_esEs24(vyw401, vyw3001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs6(vyw401, vyw3001, cha, chb, chc) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Integer, ccc) -> new_ltEs12(vyw43000, vyw44000) new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_primMulNat0(Succ(vyw40100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Int, ccc) -> new_ltEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Char, hb) -> new_esEs11(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_ltEs11(False, False) -> True new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs14(vyw18, vyw13) new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs6(vyw400, vyw3000, cfe, cff, cfg) new_esEs23(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs6(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_ltEs5(vyw43002, vyw44002, app(app(ty_Either, db), dc)) -> new_ltEs7(vyw43002, vyw44002, db, dc) new_esEs15(:(vyw400, vyw401), :(vyw3000, vyw3001), dbc) -> new_asAs(new_esEs26(vyw400, vyw3000, dbc), new_esEs15(vyw401, vyw3001, dbc)) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs6(vyw400, vyw3000, bah, bba, bbb) new_esEs22(vyw400, vyw3000, app(ty_Maybe, bfe)) -> new_esEs7(vyw400, vyw3000, bfe) new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs18(vyw40, vyw300) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Ordering, ccc) -> new_ltEs8(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, app(ty_Maybe, ha)) -> new_esEs7(vyw43000, vyw44000, ha) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, cce)) -> new_ltEs14(vyw4300, vyw4400, cce) new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare11(vyw43000, vyw44000) new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare31(vyw43000, vyw44000), LT) new_esEs10(vyw43000, vyw44000, app(app(ty_Either, fg), fh)) -> new_esEs4(vyw43000, vyw44000, fg, fh) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Maybe, dgd)) -> new_ltEs14(vyw43000, vyw44000, dgd) new_esEs23(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs8(LT, LT) -> True new_compare111(vyw43000, vyw44000, True) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_@2, dff), dfg)) -> new_ltEs10(vyw43000, vyw44000, dff, dfg) new_esEs32(vyw33, vyw28, app(app(ty_Either, bgg), bgh)) -> new_esEs4(vyw33, vyw28, bgg, bgh) new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs11(True, True) -> True new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs18(vyw402, vyw3002) new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs6(vyw400, vyw3000, bfb, bfc, bfd) new_primPlusNat1(Succ(vyw14000), Zero) -> Succ(vyw14000) new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_esEs9(vyw43001, vyw44001, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs6(vyw43001, vyw44001, fa, fb, fc) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCompAux0(vyw43000, vyw44000, vyw141, bbh) -> new_primCompAux00(vyw141, new_compare29(vyw43000, vyw44000, bbh)) new_lt7(vyw43000, vyw44000, app(ty_[], gg)) -> new_lt15(vyw43000, vyw44000, gg) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_Either, dfc), dfd)) -> new_ltEs7(vyw43000, vyw44000, dfc, dfd) new_esEs13(True, True) -> True new_esEs23(vyw43000, vyw44000, app(app(ty_@2, bge), bgf)) -> new_esEs5(vyw43000, vyw44000, bge, bgf) new_ltEs4(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), cf, cg, da) -> new_pePe(new_lt7(vyw43000, vyw44000, cf), new_asAs(new_esEs10(vyw43000, vyw44000, cf), new_pePe(new_lt6(vyw43001, vyw44001, cg), new_asAs(new_esEs9(vyw43001, vyw44001, cg), new_ltEs5(vyw43002, vyw44002, da))))) new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs17(vyw40, vyw300) new_esEs24(vyw401, vyw3001, app(ty_Maybe, chd)) -> new_esEs7(vyw401, vyw3001, chd) new_lt5(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, app(ty_Maybe, ec)) -> new_ltEs14(vyw43002, vyw44002, ec) new_compare12(vyw43000, vyw44000, False, cc, cd, ce) -> GT new_lt7(vyw43000, vyw44000, app(app(ty_@2, gb), gc)) -> new_lt11(vyw43000, vyw44000, gb, gc) new_esEs23(vyw43000, vyw44000, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs6(vyw43000, vyw44000, cc, cd, ce) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs11(vyw400, vyw3000) new_esEs9(vyw43001, vyw44001, app(app(ty_Either, ed), ee)) -> new_esEs4(vyw43001, vyw44001, ed, ee) new_esEs20(vyw402, vyw3002, app(ty_Ratio, bdc)) -> new_esEs12(vyw402, vyw3002, bdc) new_esEs25(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs17(vyw33, vyw28) new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs17(vyw402, vyw3002) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(app(ty_@3, ddd), dde), ddf)) -> new_ltEs4(vyw43000, vyw44000, ddd, dde, ddf) new_compare27(vyw43000, vyw44000, False, ha) -> new_compare19(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, ha), ha) new_esEs31(vyw40, vyw300, app(ty_Ratio, dhd)) -> new_esEs12(vyw40, vyw300, dhd) new_esEs27(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare25(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000)) new_ltEs11(False, True) -> True new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_@2, cgc), cgd)) -> new_esEs5(vyw400, vyw3000, cgc, cgd) new_lt6(vyw43001, vyw44001, ty_Int) -> new_lt5(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_Float) -> new_esEs16(vyw43001, vyw44001) new_esEs24(vyw401, vyw3001, app(app(ty_@2, chg), chh)) -> new_esEs5(vyw401, vyw3001, chg, chh) new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs23(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare11(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Char, ccc) -> new_ltEs6(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Right(vyw44000), ccb, ccc) -> True new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) new_esEs24(vyw401, vyw3001, app(ty_[], che)) -> new_esEs15(vyw401, vyw3001, che) new_compare30(vyw43000, vyw44000, cbe, cbf) -> new_compare26(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cbe, cbf), cbe, cbf) new_esEs30(vyw40, vyw300, app(ty_[], dbc)) -> new_esEs15(vyw40, vyw300, dbc) new_lt6(vyw43001, vyw44001, ty_Char) -> new_lt4(vyw43001, vyw44001) new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs18(vyw33, vyw28) new_esEs24(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hb) -> new_esEs7(vyw400, vyw3000, hh) new_esEs13(False, False) -> True new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_lt6(vyw43001, vyw44001, ty_Integer) -> new_lt14(vyw43001, vyw44001) new_esEs7(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs16(vyw400, vyw3000) new_ltEs8(GT, GT) -> True new_lt8(vyw43000, vyw44000, cbe, cbf) -> new_esEs8(new_compare30(vyw43000, vyw44000, cbe, cbf), LT) new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_lt6(vyw43001, vyw44001, app(ty_[], fd)) -> new_lt15(vyw43001, vyw44001, fd) new_compare0([], :(vyw44000, vyw44001), bbh) -> LT new_asAs(True, vyw118) -> vyw118 new_esEs30(vyw40, vyw300, ty_Integer) -> new_esEs14(vyw40, vyw300) new_compare10(vyw123, vyw124, False, ca, cb) -> GT new_compare12(vyw43000, vyw44000, True, cc, cd, ce) -> LT new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs19(vyw33, vyw28) new_ltEs8(EQ, EQ) -> True new_esEs9(vyw43001, vyw44001, ty_Double) -> new_esEs17(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_@0) -> new_esEs18(vyw43001, vyw44001) new_ltEs10(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), caa, cab) -> new_pePe(new_lt20(vyw43000, vyw44000, caa), new_asAs(new_esEs23(vyw43000, vyw44000, caa), new_ltEs19(vyw43001, vyw44001, cab))) new_esEs29(vyw18, vyw13, app(ty_Ratio, eaf)) -> new_esEs12(vyw18, vyw13, eaf) new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_Either, hc), hd), hb) -> new_esEs4(vyw400, vyw3000, hc, hd) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_Maybe, bbc)) -> new_esEs7(vyw400, vyw3000, bbc) new_esEs20(vyw402, vyw3002, app(ty_[], bdb)) -> new_esEs15(vyw402, vyw3002, bdb) new_esEs24(vyw401, vyw3001, app(ty_Ratio, chf)) -> new_esEs12(vyw401, vyw3001, chf) new_esEs9(vyw43001, vyw44001, app(ty_Maybe, ff)) -> new_esEs7(vyw43001, vyw44001, ff) new_esEs4(Left(vyw400), Left(vyw3000), ty_Float, hb) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Ratio, cgb)) -> new_esEs12(vyw400, vyw3000, cgb) new_lt6(vyw43001, vyw44001, app(app(ty_Either, ed), ee)) -> new_lt8(vyw43001, vyw44001, ed, ee) new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs11(vyw33, vyw28) new_compare24(vyw43000, vyw44000, True, bge, bgf) -> EQ new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_esEs30(vyw40, vyw300, app(ty_Ratio, dbd)) -> new_esEs12(vyw40, vyw300, dbd) new_compare29(vyw43000, vyw44000, app(app(ty_Either, cdh), cea)) -> new_compare30(vyw43000, vyw44000, cdh, cea) new_primCompAux00(vyw150, EQ) -> vyw150 new_compare13(vyw43000, vyw44000, ha) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ha), ha) new_compare0([], [], bbh) -> EQ new_esEs20(vyw402, vyw3002, app(app(ty_Either, bcd), bce)) -> new_esEs4(vyw402, vyw3002, bcd, bce) new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) new_ltEs8(EQ, GT) -> True new_esEs30(vyw40, vyw300, ty_Float) -> new_esEs16(vyw40, vyw300) new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, ccf), ccg)) -> new_ltEs7(vyw4300, vyw4400, ccf, ccg) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_Either, cfc), cfd)) -> new_esEs4(vyw400, vyw3000, cfc, cfd) new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs9(vyw43001, vyw44001, ty_Char) -> new_esEs11(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000, bge, bgf) -> new_esEs8(new_compare15(vyw43000, vyw44000, bge, bgf), LT) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_lt7(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False) -> GT new_esEs22(vyw400, vyw3000, app(app(ty_@2, bfh), bga)) -> new_esEs5(vyw400, vyw3000, bfh, bga) new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, cee), cef), ceg)) -> new_compare16(vyw43000, vyw44000, cee, cef, ceg) new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, cdg)) -> new_ltEs14(vyw4300, vyw4400, cdg) new_compare29(vyw43000, vyw44000, app(ty_[], ceh)) -> new_compare0(vyw43000, vyw44000, ceh) new_compare11(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, app(ty_Maybe, dhb)) -> new_esEs7(vyw40, vyw300, dhb) new_esEs15(:(vyw400, vyw401), [], dbc) -> False new_esEs15([], :(vyw3000, vyw3001), dbc) -> False new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare11(vyw4300, vyw4400), GT)) new_ltEs11(True, False) -> False new_esEs25(vyw400, vyw3000, app(app(ty_Either, daa), dab)) -> new_esEs4(vyw400, vyw3000, daa, dab) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, cda), cdb)) -> new_ltEs10(vyw4300, vyw4400, cda, cdb) new_esEs24(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs14(vyw402, vyw3002) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(ty_Either, baf), bag)) -> new_esEs4(vyw400, vyw3000, baf, bag) new_ltEs5(vyw43002, vyw44002, ty_Ordering) -> new_ltEs8(vyw43002, vyw44002) new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_ltEs8(LT, EQ) -> True new_esEs29(vyw18, vyw13, app(ty_[], eae)) -> new_esEs15(vyw18, vyw13, eae) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) new_esEs32(vyw33, vyw28, app(app(ty_@2, bhg), bhh)) -> new_esEs5(vyw33, vyw28, bhg, bhh) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_[], cga)) -> new_esEs15(vyw400, vyw3000, cga) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_@0) -> new_esEs18(vyw400, vyw3000) new_lt17(vyw43000, vyw44000) -> new_esEs8(new_compare28(vyw43000, vyw44000), LT) new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare6(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_Either, dhg), dhh)) -> new_esEs4(vyw18, vyw13, dhg, dhh) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_compare16(vyw43000, vyw44000, cc, cd, ce) -> new_compare23(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cc, cd, ce), cc, cd, ce) new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_Maybe, ddh)) -> new_ltEs14(vyw43000, vyw44000, ddh) new_esEs21(vyw401, vyw3001, app(ty_Maybe, bec)) -> new_esEs7(vyw401, vyw3001, bec) new_compare19(vyw43000, vyw44000, False, ha) -> GT new_ltEs8(LT, LT) -> True new_ltEs14(Just(vyw43000), Nothing, cce) -> False new_ltEs14(Nothing, Nothing, cce) -> True new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_lt20(vyw43000, vyw44000, app(app(ty_@2, bge), bgf)) -> new_lt11(vyw43000, vyw44000, bge, bgf) new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_lt12(vyw43000, vyw44000) -> new_esEs8(new_compare32(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Maybe, dcf), ccc) -> new_ltEs14(vyw43000, vyw44000, dcf) new_ltEs5(vyw43002, vyw44002, ty_Char) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_esEs32(vyw33, vyw28, app(ty_Maybe, bhd)) -> new_esEs7(vyw33, vyw28, bhd) new_lt6(vyw43001, vyw44001, ty_Float) -> new_lt17(vyw43001, vyw44001) new_esEs30(vyw40, vyw300, app(app(ty_Either, bae), hb)) -> new_esEs4(vyw40, vyw300, bae, hb) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, ty_Double) -> new_ltEs16(vyw43002, vyw44002) new_lt15(vyw43000, vyw44000, bgb) -> new_esEs8(new_compare0(vyw43000, vyw44000, bgb), LT) new_esEs24(vyw401, vyw3001, app(app(ty_Either, cgg), cgh)) -> new_esEs4(vyw401, vyw3001, cgg, cgh) new_esEs26(vyw400, vyw3000, app(ty_Maybe, def)) -> new_esEs7(vyw400, vyw3000, def) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs4(vyw43001, vyw44001, cah, cba, cbb) new_esEs23(vyw43000, vyw44000, app(ty_Ratio, cbg)) -> new_esEs12(vyw43000, vyw44000, cbg) new_ltEs19(vyw43001, vyw44001, ty_@0) -> new_ltEs17(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs11(vyw40, vyw300) new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs6(vyw400, vyw3000, dec, ded, dee) new_ltEs5(vyw43002, vyw44002, ty_Bool) -> new_ltEs11(vyw43002, vyw44002) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, cch)) -> new_ltEs9(vyw4300, vyw4400, cch) new_ltEs5(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_compare23(vyw43000, vyw44000, True, cc, cd, ce) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Float, ccc) -> new_ltEs15(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_[], bbh)) -> new_ltEs13(vyw4300, vyw4400, bbh) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_@0, ccc) -> new_ltEs17(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare7(vyw43000, vyw44000) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs13(vyw40, vyw300) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) new_esEs20(vyw402, vyw3002, app(ty_Maybe, bda)) -> new_esEs7(vyw402, vyw3002, bda) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs19(vyw40, vyw300) new_compare0(:(vyw43000, vyw43001), [], bbh) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs5(vyw43002, vyw44002, ty_@0) -> new_ltEs17(vyw43002, vyw44002) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, app(ty_[], dhc)) -> new_esEs15(vyw40, vyw300, dhc) new_esEs25(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_lt6(vyw43001, vyw44001, app(ty_Ratio, ef)) -> new_lt10(vyw43001, vyw44001, ef) new_compare25(vyw43000, vyw44000, True) -> EQ new_esEs23(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs9(vyw4300, vyw4400, ccd) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, ccd), GT)) new_esEs12(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dbd) -> new_asAs(new_esEs28(vyw400, vyw3000, dbd), new_esEs27(vyw401, vyw3001, dbd)) new_lt16(vyw43000, vyw44000, ha) -> new_esEs8(new_compare13(vyw43000, vyw44000, ha), LT) new_esEs30(vyw40, vyw300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(vyw40, vyw300, bca, bcb, bcc) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_primPlusNat0(Succ(vyw1400), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1400, vyw300000))) new_esEs9(vyw43001, vyw44001, ty_Bool) -> new_esEs13(vyw43001, vyw44001) new_ltEs19(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_ltEs5(vyw43002, vyw44002, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs4(vyw43002, vyw44002, dg, dh, ea) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, dfh), dga), dgb)) -> new_ltEs4(vyw43000, vyw44000, dfh, dga, dgb) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Bool) -> new_ltEs11(vyw43001, vyw44001) new_esEs23(vyw43000, vyw44000, app(ty_[], bgb)) -> new_esEs15(vyw43000, vyw44000, bgb) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Int, hb) -> new_esEs19(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs30(vyw40, vyw300, app(ty_Maybe, cfb)) -> new_esEs7(vyw40, vyw300, cfb) new_esEs26(vyw400, vyw3000, app(app(ty_Either, dea), deb)) -> new_esEs4(vyw400, vyw3000, dea, deb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vyw40, vyw300, app(app(ty_@2, cge), cgf)) -> new_esEs5(vyw40, vyw300, cge, cgf) new_lt6(vyw43001, vyw44001, ty_Ordering) -> new_lt9(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs4(vyw4300, vyw4400, cdc, cdd, cde) new_esEs9(vyw43001, vyw44001, ty_Int) -> new_esEs19(vyw43001, vyw44001) new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs11(vyw402, vyw3002) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_lt6(vyw43001, vyw44001, ty_Double) -> new_lt18(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, app(ty_[], fd)) -> new_esEs15(vyw43001, vyw44001, fd) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare11(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, dcb), dcc), dcd), ccc) -> new_ltEs4(vyw43000, vyw44000, dcb, dcc, dcd) new_esEs16(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs19(vyw43001, vyw44001, app(ty_Ratio, cae)) -> new_ltEs9(vyw43001, vyw44001, cae) new_lt20(vyw43000, vyw44000, app(ty_Maybe, ha)) -> new_lt16(vyw43000, vyw44000, ha) new_esEs4(Left(vyw400), Left(vyw3000), ty_Integer, hb) -> new_esEs14(vyw400, vyw3000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs11(vyw18, vyw13) new_compare6(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, cc, cd, ce) -> new_compare12(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, cc, cd, ce), cc, cd, ce) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_[], bbd)) -> new_esEs15(vyw400, vyw3000, bbd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt7(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(ty_Ratio, deh)) -> new_esEs12(vyw400, vyw3000, deh) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare31(vyw43000, vyw44000) new_compare110(vyw43000, vyw44000, False, bge, bgf) -> GT new_esEs25(vyw400, vyw3000, app(ty_Ratio, dah)) -> new_esEs12(vyw400, vyw3000, dah) new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, cec), ced)) -> new_compare15(vyw43000, vyw44000, cec, ced) new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs13(vyw33, vyw28) new_primEqNat0(Zero, Zero) -> True new_esEs21(vyw401, vyw3001, app(ty_[], bed)) -> new_esEs15(vyw401, vyw3001, bed) new_lt7(vyw43000, vyw44000, app(app(ty_Either, fg), fh)) -> new_lt8(vyw43000, vyw44000, fg, fh) new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs13(vyw402, vyw3002) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_esEs29(vyw18, vyw13, app(app(ty_@2, eag), eah)) -> new_esEs5(vyw18, vyw13, eag, eah) new_compare14(vyw130, vyw131, False, bgc, bgd) -> GT new_esEs22(vyw400, vyw3000, app(ty_[], bff)) -> new_esEs15(vyw400, vyw3000, bff) new_ltEs8(LT, GT) -> True new_ltEs5(vyw43002, vyw44002, app(ty_Ratio, dd)) -> new_ltEs9(vyw43002, vyw44002, dd) new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_asAs(False, vyw118) -> False new_ltEs13(vyw4300, vyw4400, bbh) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, bbh), GT)) new_ltEs8(EQ, LT) -> False new_esEs29(vyw18, vyw13, app(ty_Maybe, ead)) -> new_esEs7(vyw18, vyw13, ead) new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs14(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_lt7(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, he), hf), hg), hb) -> new_esEs6(vyw400, vyw3000, he, hf, hg) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs4(vyw4300, vyw4400, cf, cg, da) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Integer) -> new_esEs14(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Double, ccc) -> new_ltEs16(vyw43000, vyw44000) new_compare18(@0, @0) -> EQ new_esEs10(vyw43000, vyw44000, app(ty_[], gg)) -> new_esEs15(vyw43000, vyw44000, gg) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_lt10(vyw43000, vyw44000, cbg) -> new_esEs8(new_compare9(vyw43000, vyw44000, cbg), LT) new_lt7(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) The set Q consists of the following terms: new_esEs30(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_lt7(x0, x1, ty_Char) new_esEs8(EQ, EQ) new_compare31(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_compare17(x0, x1, True) new_esEs10(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_ltEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare27(x0, x1, True, x2) new_compare10(x0, x1, False, x2, x3) new_esEs7(Just(x0), Nothing, x1) new_compare25(x0, x1, False) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_compare19(x0, x1, True, x2) new_esEs22(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt6(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt6(x0, x1, ty_Integer) new_compare28(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare24(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_compare11(Integer(x0), Integer(x1)) new_ltEs11(True, True) new_compare15(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, ty_Ordering) new_asAs(True, x0) new_compare29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Ordering) new_lt6(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(Char(x0), Char(x1)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs8(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare8(x0, x1) new_compare23(x0, x1, False, x2, x3, x4) new_compare30(x0, x1, x2, x3) new_esEs31(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_compare25(x0, x1, True) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, ty_Int) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Char) new_primCompAux00(x0, EQ) new_esEs31(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1) new_esEs30(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs7(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCompAux00(x0, LT) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(Just(x0), Just(x1), ty_@0) new_compare29(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_lt18(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt11(x0, x1, x2, x3) new_lt16(x0, x1, x2) new_esEs9(x0, x1, ty_Int) new_lt6(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs26(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs17(Double(x0, x1), Double(x2, x3)) new_compare12(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs12(x0, x1) new_ltEs5(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare26(x0, x1, True, x2, x3) new_esEs8(GT, GT) new_compare29(x0, x1, app(ty_[], x2)) new_ltEs8(GT, GT) new_esEs25(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs8(LT, EQ) new_ltEs8(EQ, LT) new_lt7(x0, x1, ty_Integer) new_sr0(Integer(x0), Integer(x1)) new_esEs22(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare13(x0, x1, x2) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare28(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs8(LT, LT) new_esEs19(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_compare14(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_ltEs5(x0, x1, ty_Double) new_esEs14(Integer(x0), Integer(x1)) new_ltEs8(EQ, EQ) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_lt6(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Bool) new_ltEs11(False, True) new_ltEs11(True, False) new_esEs20(x0, x1, ty_Float) new_lt19(x0, x1) new_ltEs19(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), ty_Double) new_primMulNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Float) new_lt15(x0, x1, x2) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_compare29(x0, x1, ty_Ordering) new_compare32(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs31(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_compare111(x0, x1, False) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, False, x2, x3, x4) new_primMulNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt13(x0, x1, x2, x3, x4) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare29(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_compare14(x0, x1, True, x2, x3) new_esEs24(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2, x3) new_ltEs21(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, x2) new_esEs23(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, ty_Char) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Nothing, Nothing, x0) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Float) new_compare23(x0, x1, True, x2, x3, x4) new_not(True) new_esEs26(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Succ(x0)) new_lt5(x0, x1) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs11(Char(x0), Char(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_primCompAux00(x0, GT) new_esEs22(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_lt20(x0, x1, ty_Integer) new_ltEs8(GT, LT) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs8(LT, GT) new_esEs15(:(x0, x1), :(x2, x3), x4) new_primPlusNat1(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, x2, x3) new_compare210(x0, x1, True) new_compare29(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Char) new_compare18(@0, @0) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_sr(x0, x1) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs24(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, True, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Succ(x0), Zero) new_esEs9(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), x1) new_compare111(x0, x1, True) new_esEs32(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_pePe(False, x0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, ty_@0) new_ltEs15(x0, x1) new_esEs24(x0, x1, ty_@0) new_compare26(Right(x0), Right(x1), False, x2, x3) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_compare10(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_compare17(x0, x1, False) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs15([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs25(x0, x1, ty_Int) new_compare210(x0, x1, False) new_lt7(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt9(x0, x1) new_esEs32(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs18(@0, @0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs11(False, False) new_esEs32(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare28(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs5(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_ltEs21(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Char) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(GT, EQ) new_ltEs8(EQ, GT) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs16(Float(x0, x1), Float(x2, x3)) new_lt7(x0, x1, ty_Double) new_lt7(x0, x1, ty_@0) new_asAs(False, x0) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_Int) new_ltEs6(x0, x1) new_lt6(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Int) new_compare19(x0, x1, False, x2) new_compare26(Left(x0), Left(x1), False, x2, x3) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_compare16(x0, x1, x2, x3, x4) new_esEs25(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs15(:(x0, x1), [], x2) new_esEs21(x0, x1, ty_Int) new_ltEs14(Nothing, Just(x0), x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Integer) new_esEs15([], [], x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs31(x0, x1, ty_Float) new_compare0([], [], x0) new_lt6(x0, x1, ty_Float) new_compare27(x0, x1, False, x2) new_primCmpNat0(Zero, Zero) new_esEs21(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs5(x0, x1, ty_Bool) new_primCmpNat0(Zero, Succ(x0)) new_compare26(Right(x0), Left(x1), False, x2, x3) new_compare26(Left(x0), Right(x1), False, x2, x3) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (27) DependencyGraphProof (EQUIVALENT) The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. ---------------------------------------- (28) Complex Obligation (AND) ---------------------------------------- (29) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Left(vyw300), new_esEs30(vyw40, vyw300, bd), bd, be), LT), bc, bd, be) new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare26(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw17, Left(vyw18), h, ba, bb) new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Right(vyw300), False, bd, be), LT), bc, bd, be) new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Left(vyw40), bc, bd, be) new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Right(vyw300), False, bd, be), GT), bc, bd, be) new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Left(vyw40), bc, bd, be) new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw16, Left(vyw18), h, ba, bb) The TRS R consists of the following rules: new_esEs7(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_Either, dbe), dbf), ccc) -> new_ltEs7(vyw43000, vyw44000, dbe, dbf) new_ltEs7(Right(vyw43000), Left(vyw44000), ccb, ccc) -> False new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs24(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare18(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs6(vyw400, vyw3000, dac, dad, dae) new_pePe(True, vyw139) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Ratio, dfe)) -> new_ltEs9(vyw43000, vyw44000, dfe) new_compare15(vyw43000, vyw44000, bge, bgf) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, bge, bgf), bge, bgf) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs14(vyw33, vyw28) new_lt20(vyw43000, vyw44000, app(ty_Ratio, cbg)) -> new_lt10(vyw43000, vyw44000, cbg) new_compare26(Right(vyw4300), Right(vyw4400), False, cbh, cca) -> new_compare14(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, cca), cbh, cca) new_esEs30(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) new_esEs24(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_esEs30(vyw40, vyw300, ty_Int) -> new_esEs19(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs30(vyw40, vyw300, ty_Bool) -> new_esEs13(vyw40, vyw300) new_lt7(vyw43000, vyw44000, app(app(app(ty_@3, gd), ge), gf)) -> new_lt13(vyw43000, vyw44000, gd, ge, gf) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_@2, dbh), dca), ccc) -> new_ltEs10(vyw43000, vyw44000, dbh, dca) new_esEs10(vyw43000, vyw44000, app(app(ty_@2, gb), gc)) -> new_esEs5(vyw43000, vyw44000, gb, gc) new_esEs10(vyw43000, vyw44000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(vyw43000, vyw44000, gd, ge, gf) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare28(vyw4300, vyw4400), GT)) new_esEs4(Left(vyw400), Right(vyw3000), bae, hb) -> False new_esEs4(Right(vyw400), Left(vyw3000), bae, hb) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(vyw130, vyw131, True, bgc, bgd) -> LT new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare32(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_compare26(vyw430, vyw440, True, cbh, cca) -> EQ new_esEs24(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_esEs30(vyw40, vyw300, ty_Char) -> new_esEs11(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Maybe, cfh)) -> new_esEs7(vyw400, vyw3000, cfh) new_esEs18(@0, @0) -> True new_lt6(vyw43001, vyw44001, ty_Bool) -> new_lt12(vyw43001, vyw44001) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs22(vyw400, vyw3000, app(app(ty_Either, beh), bfa)) -> new_esEs4(vyw400, vyw3000, beh, bfa) new_esEs22(vyw400, vyw3000, app(ty_Ratio, bfg)) -> new_esEs12(vyw400, vyw3000, bfg) new_lt18(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_esEs32(vyw33, vyw28, app(ty_Ratio, bhf)) -> new_esEs12(vyw33, vyw28, bhf) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_@2, bac), bad), hb) -> new_esEs5(vyw400, vyw3000, bac, bad) new_esEs25(vyw400, vyw3000, app(app(ty_@2, dba), dbb)) -> new_esEs5(vyw400, vyw3000, dba, dbb) new_esEs26(vyw400, vyw3000, app(ty_[], deg)) -> new_esEs15(vyw400, vyw3000, deg) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_[], baa), hb) -> new_esEs15(vyw400, vyw3000, baa) new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_[], dce), ccc) -> new_ltEs13(vyw43000, vyw44000, dce) new_ltEs14(Nothing, Just(vyw44000), cce) -> True new_compare26(Right(vyw4300), Left(vyw4400), False, cbh, cca) -> GT new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_esEs8(GT, GT) -> True new_esEs20(vyw402, vyw3002, app(app(ty_@2, bdd), bde)) -> new_esEs5(vyw402, vyw3002, bdd, bde) new_esEs24(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_esEs32(vyw33, vyw28, app(ty_[], bhe)) -> new_esEs15(vyw33, vyw28, bhe) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs6(vyw18, vyw13, eaa, eab, eac) new_lt6(vyw43001, vyw44001, app(app(ty_@2, eg), eh)) -> new_lt11(vyw43001, vyw44001, eg, eh) new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs19(vyw402, vyw3002) new_esEs8(EQ, EQ) -> True new_compare26(Left(vyw4300), Left(vyw4400), False, cbh, cca) -> new_compare10(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, cbh), cbh, cca) new_esEs24(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs31(vyw40, vyw300, app(app(ty_@2, dhe), dhf)) -> new_esEs5(vyw40, vyw300, dhe, dhf) new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, ccd)) -> new_ltEs9(vyw4300, vyw4400, ccd) new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs16(vyw33, vyw28) new_ltEs21(vyw4300, vyw4400, app(ty_[], cdf)) -> new_ltEs13(vyw4300, vyw4400, cdf) new_compare32(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs13(vyw43000, vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_[], ddg)) -> new_ltEs13(vyw43000, vyw44000, ddg) new_not(True) -> False new_ltEs19(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, caa), cab)) -> new_ltEs10(vyw4300, vyw4400, caa, cab) new_lt6(vyw43001, vyw44001, ty_@0) -> new_lt19(vyw43001, vyw44001) new_primCompAux00(vyw150, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs6(vyw401, vyw3001, bdh, bea, beb) new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs6(vyw402, vyw3002, bcf, bcg, bch) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_Ratio, bbe)) -> new_esEs12(vyw400, vyw3000, bbe) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Float) -> new_esEs16(vyw400, vyw3000) new_compare31(vyw43000, vyw44000) -> new_compare25(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs30(vyw40, vyw300, ty_Double) -> new_esEs17(vyw40, vyw300) new_esEs10(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_compare27(vyw43000, vyw44000, True, ha) -> EQ new_compare24(vyw43000, vyw44000, False, bge, bgf) -> new_compare110(vyw43000, vyw44000, new_ltEs10(vyw43000, vyw44000, bge, bgf), bge, bgf) new_esEs7(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, ccb), ccc)) -> new_ltEs7(vyw4300, vyw4400, ccb, ccc) new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs16(vyw40, vyw300) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_lt6(vyw43001, vyw44001, app(ty_Maybe, ff)) -> new_lt16(vyw43001, vyw44001, ff) new_compare8(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_esEs23(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_@0, hb) -> new_esEs18(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Char) -> new_ltEs6(vyw43001, vyw44001) new_compare10(vyw123, vyw124, True, ca, cb) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs13(vyw18, vyw13) new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs19(vyw18, vyw13) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs8(GT, LT) -> False new_esEs9(vyw43001, vyw44001, app(ty_Ratio, ef)) -> new_esEs12(vyw43001, vyw44001, ef) new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, cc), cd), ce)) -> new_lt13(vyw43000, vyw44000, cc, cd, ce) new_primCompAux00(vyw150, GT) -> GT new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs17(vyw18, vyw13) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_Ratio, dda)) -> new_ltEs9(vyw43000, vyw44000, dda) new_lt7(vyw43000, vyw44000, app(ty_Maybe, gh)) -> new_lt16(vyw43000, vyw44000, gh) new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) new_esEs25(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_esEs10(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_esEs30(vyw40, vyw300, ty_@0) -> new_esEs18(vyw40, vyw300) new_ltEs8(GT, EQ) -> False new_compare110(vyw43000, vyw44000, True, bge, bgf) -> LT new_esEs24(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs5(@2(vyw400, vyw401), @2(vyw3000, vyw3001), cge, cgf) -> new_asAs(new_esEs25(vyw400, vyw3000, cge), new_esEs24(vyw401, vyw3001, cgf)) new_esEs23(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, app(app(ty_Either, cbe), cbf)) -> new_lt8(vyw43000, vyw44000, cbe, cbf) new_esEs17(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_lt7(vyw43000, vyw44000, app(ty_Ratio, ga)) -> new_lt10(vyw43000, vyw44000, ga) new_primPlusNat1(Succ(vyw14000), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw14000, vyw3000000))) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Ratio, bab), hb) -> new_esEs12(vyw400, vyw3000, bab) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Ordering) -> new_ltEs8(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs6(vyw40, vyw300, dgg, dgh, dha) new_esEs19(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs14(vyw40, vyw300) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_esEs21(vyw401, vyw3001, app(app(ty_@2, bef), beg)) -> new_esEs5(vyw401, vyw3001, bef, beg) new_lt20(vyw43000, vyw44000, app(ty_[], bgb)) -> new_lt15(vyw43000, vyw44000, bgb) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw400), Left(vyw3000), ty_Bool, hb) -> new_esEs13(vyw400, vyw3000) new_compare210(vyw43000, vyw44000, True) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Ratio, dbg), ccc) -> new_ltEs9(vyw43000, vyw44000, dbg) new_esEs4(Left(vyw400), Left(vyw3000), ty_Double, hb) -> new_esEs17(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_[], cbc)) -> new_ltEs13(vyw43001, vyw44001, cbc) new_ltEs17(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare28(vyw43000, vyw44000) new_lt13(vyw43000, vyw44000, cc, cd, ce) -> new_esEs8(new_compare16(vyw43000, vyw44000, cc, cd, ce), LT) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(ty_Either, cac), cad)) -> new_ltEs7(vyw43001, vyw44001, cac, cad) new_pePe(False, vyw139) -> vyw139 new_esEs7(Nothing, Just(vyw3000), cfb) -> False new_esEs7(Just(vyw400), Nothing, cfb) -> False new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Bool, ccc) -> new_ltEs11(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Ordering, hb) -> new_esEs8(vyw400, vyw3000) new_compare29(vyw43000, vyw44000, app(ty_Ratio, ceb)) -> new_compare9(vyw43000, vyw44000, ceb) new_esEs25(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_[], dgc)) -> new_ltEs13(vyw43000, vyw44000, dgc) new_esEs6(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bca, bcb, bcc) -> new_asAs(new_esEs22(vyw400, vyw3000, bca), new_asAs(new_esEs21(vyw401, vyw3001, bcb), new_esEs20(vyw402, vyw3002, bcc))) new_lt7(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, app(app(ty_Either, bdf), bdg)) -> new_esEs4(vyw401, vyw3001, bdf, bdg) new_esEs10(vyw43000, vyw44000, app(ty_Maybe, gh)) -> new_esEs7(vyw43000, vyw44000, gh) new_esEs10(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(app(ty_@2, dfa), dfb)) -> new_esEs5(vyw400, vyw3000, dfa, dfb) new_ltEs19(vyw43001, vyw44001, app(app(ty_@2, caf), cag)) -> new_ltEs10(vyw43001, vyw44001, caf, cag) new_esEs25(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_Maybe, cbd)) -> new_ltEs14(vyw43001, vyw44001, cbd) new_esEs25(vyw400, vyw3000, app(ty_[], dag)) -> new_esEs15(vyw400, vyw3000, dag) new_esEs9(vyw43001, vyw44001, app(app(ty_@2, eg), eh)) -> new_esEs5(vyw43001, vyw44001, eg, eh) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(ty_@2, bbf), bbg)) -> new_esEs5(vyw400, vyw3000, bbf, bbg) new_ltEs19(vyw43001, vyw44001, ty_Double) -> new_ltEs16(vyw43001, vyw44001) new_esEs11(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_compare26(Left(vyw4300), Right(vyw4400), False, cbh, cca) -> LT new_compare17(vyw43000, vyw44000, True) -> LT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs27(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs32(vyw33, vyw28, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs6(vyw33, vyw28, bha, bhb, bhc) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(ty_@2, ddb), ddc)) -> new_ltEs10(vyw43000, vyw44000, ddb, ddc) new_ltEs5(vyw43002, vyw44002, app(ty_[], eb)) -> new_ltEs13(vyw43002, vyw44002, eb) new_esEs7(Nothing, Nothing, cfb) -> True new_compare19(vyw43000, vyw44000, True, ha) -> LT new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_lt6(vyw43001, vyw44001, app(app(app(ty_@3, fa), fb), fc)) -> new_lt13(vyw43001, vyw44001, fa, fb, fc) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs25(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Int) -> new_ltEs18(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, app(app(ty_Either, dge), dgf)) -> new_esEs4(vyw40, vyw300, dge, dgf) new_ltEs5(vyw43002, vyw44002, app(app(ty_@2, de), df)) -> new_ltEs10(vyw43002, vyw44002, de, df) new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs11(vyw43000, vyw44000)) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs25(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_esEs21(vyw401, vyw3001, app(ty_Ratio, bee)) -> new_esEs12(vyw401, vyw3001, bee) new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs16(vyw402, vyw3002) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare8(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_esEs25(vyw400, vyw3000, app(ty_Maybe, daf)) -> new_esEs7(vyw400, vyw3000, daf) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(ty_Either, dcg), dch)) -> new_ltEs7(vyw43000, vyw44000, dcg, dch) new_esEs23(vyw43000, vyw44000, app(app(ty_Either, cbe), cbf)) -> new_esEs4(vyw43000, vyw44000, cbe, cbf) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_lt7(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Int) -> new_ltEs18(vyw43002, vyw44002) new_compare29(vyw43000, vyw44000, app(ty_Maybe, cfa)) -> new_compare13(vyw43000, vyw44000, cfa) new_esEs15([], [], dbc) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, app(ty_Ratio, ga)) -> new_esEs12(vyw43000, vyw44000, ga) new_esEs24(vyw401, vyw3001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs6(vyw401, vyw3001, cha, chb, chc) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Integer, ccc) -> new_ltEs12(vyw43000, vyw44000) new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_primMulNat0(Succ(vyw40100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Int, ccc) -> new_ltEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Char, hb) -> new_esEs11(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_ltEs11(False, False) -> True new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs14(vyw18, vyw13) new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs6(vyw400, vyw3000, cfe, cff, cfg) new_esEs23(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs6(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_ltEs5(vyw43002, vyw44002, app(app(ty_Either, db), dc)) -> new_ltEs7(vyw43002, vyw44002, db, dc) new_esEs15(:(vyw400, vyw401), :(vyw3000, vyw3001), dbc) -> new_asAs(new_esEs26(vyw400, vyw3000, dbc), new_esEs15(vyw401, vyw3001, dbc)) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs6(vyw400, vyw3000, bah, bba, bbb) new_esEs22(vyw400, vyw3000, app(ty_Maybe, bfe)) -> new_esEs7(vyw400, vyw3000, bfe) new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs18(vyw40, vyw300) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Ordering, ccc) -> new_ltEs8(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, app(ty_Maybe, ha)) -> new_esEs7(vyw43000, vyw44000, ha) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, cce)) -> new_ltEs14(vyw4300, vyw4400, cce) new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare11(vyw43000, vyw44000) new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare31(vyw43000, vyw44000), LT) new_esEs10(vyw43000, vyw44000, app(app(ty_Either, fg), fh)) -> new_esEs4(vyw43000, vyw44000, fg, fh) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Maybe, dgd)) -> new_ltEs14(vyw43000, vyw44000, dgd) new_esEs23(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs8(LT, LT) -> True new_compare111(vyw43000, vyw44000, True) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_@2, dff), dfg)) -> new_ltEs10(vyw43000, vyw44000, dff, dfg) new_esEs32(vyw33, vyw28, app(app(ty_Either, bgg), bgh)) -> new_esEs4(vyw33, vyw28, bgg, bgh) new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs11(True, True) -> True new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs18(vyw402, vyw3002) new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs6(vyw400, vyw3000, bfb, bfc, bfd) new_primPlusNat1(Succ(vyw14000), Zero) -> Succ(vyw14000) new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_esEs9(vyw43001, vyw44001, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs6(vyw43001, vyw44001, fa, fb, fc) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCompAux0(vyw43000, vyw44000, vyw141, bbh) -> new_primCompAux00(vyw141, new_compare29(vyw43000, vyw44000, bbh)) new_lt7(vyw43000, vyw44000, app(ty_[], gg)) -> new_lt15(vyw43000, vyw44000, gg) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_Either, dfc), dfd)) -> new_ltEs7(vyw43000, vyw44000, dfc, dfd) new_esEs13(True, True) -> True new_esEs23(vyw43000, vyw44000, app(app(ty_@2, bge), bgf)) -> new_esEs5(vyw43000, vyw44000, bge, bgf) new_ltEs4(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), cf, cg, da) -> new_pePe(new_lt7(vyw43000, vyw44000, cf), new_asAs(new_esEs10(vyw43000, vyw44000, cf), new_pePe(new_lt6(vyw43001, vyw44001, cg), new_asAs(new_esEs9(vyw43001, vyw44001, cg), new_ltEs5(vyw43002, vyw44002, da))))) new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs17(vyw40, vyw300) new_esEs24(vyw401, vyw3001, app(ty_Maybe, chd)) -> new_esEs7(vyw401, vyw3001, chd) new_lt5(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, app(ty_Maybe, ec)) -> new_ltEs14(vyw43002, vyw44002, ec) new_compare12(vyw43000, vyw44000, False, cc, cd, ce) -> GT new_lt7(vyw43000, vyw44000, app(app(ty_@2, gb), gc)) -> new_lt11(vyw43000, vyw44000, gb, gc) new_esEs23(vyw43000, vyw44000, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs6(vyw43000, vyw44000, cc, cd, ce) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs11(vyw400, vyw3000) new_esEs9(vyw43001, vyw44001, app(app(ty_Either, ed), ee)) -> new_esEs4(vyw43001, vyw44001, ed, ee) new_esEs20(vyw402, vyw3002, app(ty_Ratio, bdc)) -> new_esEs12(vyw402, vyw3002, bdc) new_esEs25(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs17(vyw33, vyw28) new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs17(vyw402, vyw3002) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(app(ty_@3, ddd), dde), ddf)) -> new_ltEs4(vyw43000, vyw44000, ddd, dde, ddf) new_compare27(vyw43000, vyw44000, False, ha) -> new_compare19(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, ha), ha) new_esEs31(vyw40, vyw300, app(ty_Ratio, dhd)) -> new_esEs12(vyw40, vyw300, dhd) new_esEs27(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare25(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000)) new_ltEs11(False, True) -> True new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_@2, cgc), cgd)) -> new_esEs5(vyw400, vyw3000, cgc, cgd) new_lt6(vyw43001, vyw44001, ty_Int) -> new_lt5(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_Float) -> new_esEs16(vyw43001, vyw44001) new_esEs24(vyw401, vyw3001, app(app(ty_@2, chg), chh)) -> new_esEs5(vyw401, vyw3001, chg, chh) new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs23(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare11(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Char, ccc) -> new_ltEs6(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Right(vyw44000), ccb, ccc) -> True new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) new_esEs24(vyw401, vyw3001, app(ty_[], che)) -> new_esEs15(vyw401, vyw3001, che) new_compare30(vyw43000, vyw44000, cbe, cbf) -> new_compare26(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cbe, cbf), cbe, cbf) new_esEs30(vyw40, vyw300, app(ty_[], dbc)) -> new_esEs15(vyw40, vyw300, dbc) new_lt6(vyw43001, vyw44001, ty_Char) -> new_lt4(vyw43001, vyw44001) new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs18(vyw33, vyw28) new_esEs24(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hb) -> new_esEs7(vyw400, vyw3000, hh) new_esEs13(False, False) -> True new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_lt6(vyw43001, vyw44001, ty_Integer) -> new_lt14(vyw43001, vyw44001) new_esEs7(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs16(vyw400, vyw3000) new_ltEs8(GT, GT) -> True new_lt8(vyw43000, vyw44000, cbe, cbf) -> new_esEs8(new_compare30(vyw43000, vyw44000, cbe, cbf), LT) new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_lt6(vyw43001, vyw44001, app(ty_[], fd)) -> new_lt15(vyw43001, vyw44001, fd) new_compare0([], :(vyw44000, vyw44001), bbh) -> LT new_asAs(True, vyw118) -> vyw118 new_esEs30(vyw40, vyw300, ty_Integer) -> new_esEs14(vyw40, vyw300) new_compare10(vyw123, vyw124, False, ca, cb) -> GT new_compare12(vyw43000, vyw44000, True, cc, cd, ce) -> LT new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs19(vyw33, vyw28) new_ltEs8(EQ, EQ) -> True new_esEs9(vyw43001, vyw44001, ty_Double) -> new_esEs17(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_@0) -> new_esEs18(vyw43001, vyw44001) new_ltEs10(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), caa, cab) -> new_pePe(new_lt20(vyw43000, vyw44000, caa), new_asAs(new_esEs23(vyw43000, vyw44000, caa), new_ltEs19(vyw43001, vyw44001, cab))) new_esEs29(vyw18, vyw13, app(ty_Ratio, eaf)) -> new_esEs12(vyw18, vyw13, eaf) new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_Either, hc), hd), hb) -> new_esEs4(vyw400, vyw3000, hc, hd) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_Maybe, bbc)) -> new_esEs7(vyw400, vyw3000, bbc) new_esEs20(vyw402, vyw3002, app(ty_[], bdb)) -> new_esEs15(vyw402, vyw3002, bdb) new_esEs24(vyw401, vyw3001, app(ty_Ratio, chf)) -> new_esEs12(vyw401, vyw3001, chf) new_esEs9(vyw43001, vyw44001, app(ty_Maybe, ff)) -> new_esEs7(vyw43001, vyw44001, ff) new_esEs4(Left(vyw400), Left(vyw3000), ty_Float, hb) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Ratio, cgb)) -> new_esEs12(vyw400, vyw3000, cgb) new_lt6(vyw43001, vyw44001, app(app(ty_Either, ed), ee)) -> new_lt8(vyw43001, vyw44001, ed, ee) new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs11(vyw33, vyw28) new_compare24(vyw43000, vyw44000, True, bge, bgf) -> EQ new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_esEs30(vyw40, vyw300, app(ty_Ratio, dbd)) -> new_esEs12(vyw40, vyw300, dbd) new_compare29(vyw43000, vyw44000, app(app(ty_Either, cdh), cea)) -> new_compare30(vyw43000, vyw44000, cdh, cea) new_primCompAux00(vyw150, EQ) -> vyw150 new_compare13(vyw43000, vyw44000, ha) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ha), ha) new_compare0([], [], bbh) -> EQ new_esEs20(vyw402, vyw3002, app(app(ty_Either, bcd), bce)) -> new_esEs4(vyw402, vyw3002, bcd, bce) new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) new_ltEs8(EQ, GT) -> True new_esEs30(vyw40, vyw300, ty_Float) -> new_esEs16(vyw40, vyw300) new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, ccf), ccg)) -> new_ltEs7(vyw4300, vyw4400, ccf, ccg) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_Either, cfc), cfd)) -> new_esEs4(vyw400, vyw3000, cfc, cfd) new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs9(vyw43001, vyw44001, ty_Char) -> new_esEs11(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000, bge, bgf) -> new_esEs8(new_compare15(vyw43000, vyw44000, bge, bgf), LT) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_lt7(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False) -> GT new_esEs22(vyw400, vyw3000, app(app(ty_@2, bfh), bga)) -> new_esEs5(vyw400, vyw3000, bfh, bga) new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, cee), cef), ceg)) -> new_compare16(vyw43000, vyw44000, cee, cef, ceg) new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, cdg)) -> new_ltEs14(vyw4300, vyw4400, cdg) new_compare29(vyw43000, vyw44000, app(ty_[], ceh)) -> new_compare0(vyw43000, vyw44000, ceh) new_compare11(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, app(ty_Maybe, dhb)) -> new_esEs7(vyw40, vyw300, dhb) new_esEs15(:(vyw400, vyw401), [], dbc) -> False new_esEs15([], :(vyw3000, vyw3001), dbc) -> False new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare11(vyw4300, vyw4400), GT)) new_ltEs11(True, False) -> False new_esEs25(vyw400, vyw3000, app(app(ty_Either, daa), dab)) -> new_esEs4(vyw400, vyw3000, daa, dab) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, cda), cdb)) -> new_ltEs10(vyw4300, vyw4400, cda, cdb) new_esEs24(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs14(vyw402, vyw3002) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(ty_Either, baf), bag)) -> new_esEs4(vyw400, vyw3000, baf, bag) new_ltEs5(vyw43002, vyw44002, ty_Ordering) -> new_ltEs8(vyw43002, vyw44002) new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_ltEs8(LT, EQ) -> True new_esEs29(vyw18, vyw13, app(ty_[], eae)) -> new_esEs15(vyw18, vyw13, eae) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) new_esEs32(vyw33, vyw28, app(app(ty_@2, bhg), bhh)) -> new_esEs5(vyw33, vyw28, bhg, bhh) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_[], cga)) -> new_esEs15(vyw400, vyw3000, cga) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_@0) -> new_esEs18(vyw400, vyw3000) new_lt17(vyw43000, vyw44000) -> new_esEs8(new_compare28(vyw43000, vyw44000), LT) new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare6(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_Either, dhg), dhh)) -> new_esEs4(vyw18, vyw13, dhg, dhh) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_compare16(vyw43000, vyw44000, cc, cd, ce) -> new_compare23(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cc, cd, ce), cc, cd, ce) new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_Maybe, ddh)) -> new_ltEs14(vyw43000, vyw44000, ddh) new_esEs21(vyw401, vyw3001, app(ty_Maybe, bec)) -> new_esEs7(vyw401, vyw3001, bec) new_compare19(vyw43000, vyw44000, False, ha) -> GT new_ltEs8(LT, LT) -> True new_ltEs14(Just(vyw43000), Nothing, cce) -> False new_ltEs14(Nothing, Nothing, cce) -> True new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_lt20(vyw43000, vyw44000, app(app(ty_@2, bge), bgf)) -> new_lt11(vyw43000, vyw44000, bge, bgf) new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_lt12(vyw43000, vyw44000) -> new_esEs8(new_compare32(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Maybe, dcf), ccc) -> new_ltEs14(vyw43000, vyw44000, dcf) new_ltEs5(vyw43002, vyw44002, ty_Char) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_esEs32(vyw33, vyw28, app(ty_Maybe, bhd)) -> new_esEs7(vyw33, vyw28, bhd) new_lt6(vyw43001, vyw44001, ty_Float) -> new_lt17(vyw43001, vyw44001) new_esEs30(vyw40, vyw300, app(app(ty_Either, bae), hb)) -> new_esEs4(vyw40, vyw300, bae, hb) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, ty_Double) -> new_ltEs16(vyw43002, vyw44002) new_lt15(vyw43000, vyw44000, bgb) -> new_esEs8(new_compare0(vyw43000, vyw44000, bgb), LT) new_esEs24(vyw401, vyw3001, app(app(ty_Either, cgg), cgh)) -> new_esEs4(vyw401, vyw3001, cgg, cgh) new_esEs26(vyw400, vyw3000, app(ty_Maybe, def)) -> new_esEs7(vyw400, vyw3000, def) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs4(vyw43001, vyw44001, cah, cba, cbb) new_esEs23(vyw43000, vyw44000, app(ty_Ratio, cbg)) -> new_esEs12(vyw43000, vyw44000, cbg) new_ltEs19(vyw43001, vyw44001, ty_@0) -> new_ltEs17(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs11(vyw40, vyw300) new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs6(vyw400, vyw3000, dec, ded, dee) new_ltEs5(vyw43002, vyw44002, ty_Bool) -> new_ltEs11(vyw43002, vyw44002) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, cch)) -> new_ltEs9(vyw4300, vyw4400, cch) new_ltEs5(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_compare23(vyw43000, vyw44000, True, cc, cd, ce) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Float, ccc) -> new_ltEs15(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_[], bbh)) -> new_ltEs13(vyw4300, vyw4400, bbh) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_@0, ccc) -> new_ltEs17(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare7(vyw43000, vyw44000) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs13(vyw40, vyw300) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) new_esEs20(vyw402, vyw3002, app(ty_Maybe, bda)) -> new_esEs7(vyw402, vyw3002, bda) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs19(vyw40, vyw300) new_compare0(:(vyw43000, vyw43001), [], bbh) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs5(vyw43002, vyw44002, ty_@0) -> new_ltEs17(vyw43002, vyw44002) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, app(ty_[], dhc)) -> new_esEs15(vyw40, vyw300, dhc) new_esEs25(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_lt6(vyw43001, vyw44001, app(ty_Ratio, ef)) -> new_lt10(vyw43001, vyw44001, ef) new_compare25(vyw43000, vyw44000, True) -> EQ new_esEs23(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs9(vyw4300, vyw4400, ccd) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, ccd), GT)) new_esEs12(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dbd) -> new_asAs(new_esEs28(vyw400, vyw3000, dbd), new_esEs27(vyw401, vyw3001, dbd)) new_lt16(vyw43000, vyw44000, ha) -> new_esEs8(new_compare13(vyw43000, vyw44000, ha), LT) new_esEs30(vyw40, vyw300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(vyw40, vyw300, bca, bcb, bcc) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_primPlusNat0(Succ(vyw1400), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1400, vyw300000))) new_esEs9(vyw43001, vyw44001, ty_Bool) -> new_esEs13(vyw43001, vyw44001) new_ltEs19(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_ltEs5(vyw43002, vyw44002, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs4(vyw43002, vyw44002, dg, dh, ea) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, dfh), dga), dgb)) -> new_ltEs4(vyw43000, vyw44000, dfh, dga, dgb) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Bool) -> new_ltEs11(vyw43001, vyw44001) new_esEs23(vyw43000, vyw44000, app(ty_[], bgb)) -> new_esEs15(vyw43000, vyw44000, bgb) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Int, hb) -> new_esEs19(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs30(vyw40, vyw300, app(ty_Maybe, cfb)) -> new_esEs7(vyw40, vyw300, cfb) new_esEs26(vyw400, vyw3000, app(app(ty_Either, dea), deb)) -> new_esEs4(vyw400, vyw3000, dea, deb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vyw40, vyw300, app(app(ty_@2, cge), cgf)) -> new_esEs5(vyw40, vyw300, cge, cgf) new_lt6(vyw43001, vyw44001, ty_Ordering) -> new_lt9(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs4(vyw4300, vyw4400, cdc, cdd, cde) new_esEs9(vyw43001, vyw44001, ty_Int) -> new_esEs19(vyw43001, vyw44001) new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs11(vyw402, vyw3002) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_lt6(vyw43001, vyw44001, ty_Double) -> new_lt18(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, app(ty_[], fd)) -> new_esEs15(vyw43001, vyw44001, fd) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare11(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, dcb), dcc), dcd), ccc) -> new_ltEs4(vyw43000, vyw44000, dcb, dcc, dcd) new_esEs16(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs19(vyw43001, vyw44001, app(ty_Ratio, cae)) -> new_ltEs9(vyw43001, vyw44001, cae) new_lt20(vyw43000, vyw44000, app(ty_Maybe, ha)) -> new_lt16(vyw43000, vyw44000, ha) new_esEs4(Left(vyw400), Left(vyw3000), ty_Integer, hb) -> new_esEs14(vyw400, vyw3000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs11(vyw18, vyw13) new_compare6(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, cc, cd, ce) -> new_compare12(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, cc, cd, ce), cc, cd, ce) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_[], bbd)) -> new_esEs15(vyw400, vyw3000, bbd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt7(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(ty_Ratio, deh)) -> new_esEs12(vyw400, vyw3000, deh) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare31(vyw43000, vyw44000) new_compare110(vyw43000, vyw44000, False, bge, bgf) -> GT new_esEs25(vyw400, vyw3000, app(ty_Ratio, dah)) -> new_esEs12(vyw400, vyw3000, dah) new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, cec), ced)) -> new_compare15(vyw43000, vyw44000, cec, ced) new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs13(vyw33, vyw28) new_primEqNat0(Zero, Zero) -> True new_esEs21(vyw401, vyw3001, app(ty_[], bed)) -> new_esEs15(vyw401, vyw3001, bed) new_lt7(vyw43000, vyw44000, app(app(ty_Either, fg), fh)) -> new_lt8(vyw43000, vyw44000, fg, fh) new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs13(vyw402, vyw3002) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_esEs29(vyw18, vyw13, app(app(ty_@2, eag), eah)) -> new_esEs5(vyw18, vyw13, eag, eah) new_compare14(vyw130, vyw131, False, bgc, bgd) -> GT new_esEs22(vyw400, vyw3000, app(ty_[], bff)) -> new_esEs15(vyw400, vyw3000, bff) new_ltEs8(LT, GT) -> True new_ltEs5(vyw43002, vyw44002, app(ty_Ratio, dd)) -> new_ltEs9(vyw43002, vyw44002, dd) new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_asAs(False, vyw118) -> False new_ltEs13(vyw4300, vyw4400, bbh) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, bbh), GT)) new_ltEs8(EQ, LT) -> False new_esEs29(vyw18, vyw13, app(ty_Maybe, ead)) -> new_esEs7(vyw18, vyw13, ead) new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs14(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_lt7(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, he), hf), hg), hb) -> new_esEs6(vyw400, vyw3000, he, hf, hg) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs4(vyw4300, vyw4400, cf, cg, da) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Integer) -> new_esEs14(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Double, ccc) -> new_ltEs16(vyw43000, vyw44000) new_compare18(@0, @0) -> EQ new_esEs10(vyw43000, vyw44000, app(ty_[], gg)) -> new_esEs15(vyw43000, vyw44000, gg) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_lt10(vyw43000, vyw44000, cbg) -> new_esEs8(new_compare9(vyw43000, vyw44000, cbg), LT) new_lt7(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) The set Q consists of the following terms: new_esEs30(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_lt7(x0, x1, ty_Char) new_esEs8(EQ, EQ) new_compare31(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_compare17(x0, x1, True) new_esEs10(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_ltEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare27(x0, x1, True, x2) new_compare10(x0, x1, False, x2, x3) new_esEs7(Just(x0), Nothing, x1) new_compare25(x0, x1, False) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_compare19(x0, x1, True, x2) new_esEs22(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt6(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt6(x0, x1, ty_Integer) new_compare28(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare24(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_compare11(Integer(x0), Integer(x1)) new_ltEs11(True, True) new_compare15(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, ty_Ordering) new_asAs(True, x0) new_compare29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Ordering) new_lt6(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(Char(x0), Char(x1)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs8(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare8(x0, x1) new_compare23(x0, x1, False, x2, x3, x4) new_compare30(x0, x1, x2, x3) new_esEs31(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_compare25(x0, x1, True) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, ty_Int) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Char) new_primCompAux00(x0, EQ) new_esEs31(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1) new_esEs30(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs7(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCompAux00(x0, LT) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(Just(x0), Just(x1), ty_@0) new_compare29(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_lt18(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt11(x0, x1, x2, x3) new_lt16(x0, x1, x2) new_esEs9(x0, x1, ty_Int) new_lt6(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs26(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs17(Double(x0, x1), Double(x2, x3)) new_compare12(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs12(x0, x1) new_ltEs5(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare26(x0, x1, True, x2, x3) new_esEs8(GT, GT) new_compare29(x0, x1, app(ty_[], x2)) new_ltEs8(GT, GT) new_esEs25(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs8(LT, EQ) new_ltEs8(EQ, LT) new_lt7(x0, x1, ty_Integer) new_sr0(Integer(x0), Integer(x1)) new_esEs22(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare13(x0, x1, x2) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare28(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs8(LT, LT) new_esEs19(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_compare14(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_ltEs5(x0, x1, ty_Double) new_esEs14(Integer(x0), Integer(x1)) new_ltEs8(EQ, EQ) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_lt6(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Bool) new_ltEs11(False, True) new_ltEs11(True, False) new_esEs20(x0, x1, ty_Float) new_lt19(x0, x1) new_ltEs19(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), ty_Double) new_primMulNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Float) new_lt15(x0, x1, x2) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_compare29(x0, x1, ty_Ordering) new_compare32(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs31(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_compare111(x0, x1, False) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, False, x2, x3, x4) new_primMulNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt13(x0, x1, x2, x3, x4) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare29(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_compare14(x0, x1, True, x2, x3) new_esEs24(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2, x3) new_ltEs21(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, x2) new_esEs23(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, ty_Char) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Nothing, Nothing, x0) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Float) new_compare23(x0, x1, True, x2, x3, x4) new_not(True) new_esEs26(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Succ(x0)) new_lt5(x0, x1) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs11(Char(x0), Char(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_primCompAux00(x0, GT) new_esEs22(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_lt20(x0, x1, ty_Integer) new_ltEs8(GT, LT) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs8(LT, GT) new_esEs15(:(x0, x1), :(x2, x3), x4) new_primPlusNat1(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, x2, x3) new_compare210(x0, x1, True) new_compare29(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Char) new_compare18(@0, @0) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_sr(x0, x1) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs24(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, True, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Succ(x0), Zero) new_esEs9(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), x1) new_compare111(x0, x1, True) new_esEs32(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_pePe(False, x0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, ty_@0) new_ltEs15(x0, x1) new_esEs24(x0, x1, ty_@0) new_compare26(Right(x0), Right(x1), False, x2, x3) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_compare10(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_compare17(x0, x1, False) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs15([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs25(x0, x1, ty_Int) new_compare210(x0, x1, False) new_lt7(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt9(x0, x1) new_esEs32(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs18(@0, @0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs11(False, False) new_esEs32(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare28(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs5(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_ltEs21(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Char) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(GT, EQ) new_ltEs8(EQ, GT) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs16(Float(x0, x1), Float(x2, x3)) new_lt7(x0, x1, ty_Double) new_lt7(x0, x1, ty_@0) new_asAs(False, x0) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_Int) new_ltEs6(x0, x1) new_lt6(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Int) new_compare19(x0, x1, False, x2) new_compare26(Left(x0), Left(x1), False, x2, x3) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_compare16(x0, x1, x2, x3, x4) new_esEs25(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs15(:(x0, x1), [], x2) new_esEs21(x0, x1, ty_Int) new_ltEs14(Nothing, Just(x0), x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Integer) new_esEs15([], [], x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs31(x0, x1, ty_Float) new_compare0([], [], x0) new_lt6(x0, x1, ty_Float) new_compare27(x0, x1, False, x2) new_primCmpNat0(Zero, Zero) new_esEs21(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs5(x0, x1, ty_Bool) new_primCmpNat0(Zero, Succ(x0)) new_compare26(Right(x0), Left(x1), False, x2, x3) new_compare26(Left(x0), Right(x1), False, x2, x3) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (30) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw16, Left(vyw18), h, ba, bb) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_lookupFM2(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, False, h, ba, bb) -> new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, new_esEs8(new_compare26(Left(vyw18), Left(vyw13), new_esEs29(vyw18, vyw13, ba), ba, bb), GT), h, ba, bb) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_lookupFM1(vyw13, vyw14, vyw15, vyw16, vyw17, vyw18, True, h, ba, bb) -> new_lookupFM(vyw17, Left(vyw18), h, ba, bb) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM2(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Left(vyw300), new_esEs30(vyw40, vyw300, bd), bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Left(vyw40), bc, bd, be) -> new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Right(vyw300), False, bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Left(vyw40), Right(vyw300), False, bd, be), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_lookupFM20(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Left(vyw40), bc, bd, be) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_lookupFM10(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Left(vyw40), bc, bd, be) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (31) YES ---------------------------------------- (32) Obligation: Q DP problem: The TRS P consists of the following rules: new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare26(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw32, Right(vyw33), bf, bg, bh) new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM22(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Right(vyw300), new_esEs31(vyw40, vyw300, be), bd, be), LT), bc, bd, be) new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw31, Right(vyw33), bf, bg, bh) new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Left(vyw300), False, bd, be), LT), bc, bd, be) new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Right(vyw40), bc, bd, be) new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Left(vyw300), False, bd, be), GT), bc, bd, be) new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Right(vyw40), bc, bd, be) The TRS R consists of the following rules: new_esEs7(Just(vyw400), Just(vyw3000), ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_Either, dbe), dbf), ccc) -> new_ltEs7(vyw43000, vyw44000, dbe, dbf) new_ltEs7(Right(vyw43000), Left(vyw44000), ccb, ccc) -> False new_primCmpInt(Neg(Succ(vyw430000)), Pos(vyw44000)) -> LT new_primEqInt(Pos(Zero), Pos(Zero)) -> True new_ltEs21(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_esEs24(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare29(vyw43000, vyw44000, ty_@0) -> new_compare18(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, app(app(app(ty_@3, dac), dad), dae)) -> new_esEs6(vyw400, vyw3000, dac, dad, dae) new_pePe(True, vyw139) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Ratio, dfe)) -> new_ltEs9(vyw43000, vyw44000, dfe) new_compare15(vyw43000, vyw44000, bge, bgf) -> new_compare24(vyw43000, vyw44000, new_esEs5(vyw43000, vyw44000, bge, bgf), bge, bgf) new_esEs32(vyw33, vyw28, ty_Integer) -> new_esEs14(vyw33, vyw28) new_lt20(vyw43000, vyw44000, app(ty_Ratio, cbg)) -> new_lt10(vyw43000, vyw44000, cbg) new_compare26(Right(vyw4300), Right(vyw4400), False, cbh, cca) -> new_compare14(vyw4300, vyw4400, new_ltEs21(vyw4300, vyw4400, cca), cbh, cca) new_esEs30(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) new_esEs24(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_esEs30(vyw40, vyw300, ty_Int) -> new_esEs19(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs30(vyw40, vyw300, ty_Bool) -> new_esEs13(vyw40, vyw300) new_lt7(vyw43000, vyw44000, app(app(app(ty_@3, gd), ge), gf)) -> new_lt13(vyw43000, vyw44000, gd, ge, gf) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(ty_@2, dbh), dca), ccc) -> new_ltEs10(vyw43000, vyw44000, dbh, dca) new_esEs10(vyw43000, vyw44000, app(app(ty_@2, gb), gc)) -> new_esEs5(vyw43000, vyw44000, gb, gc) new_esEs10(vyw43000, vyw44000, app(app(app(ty_@3, gd), ge), gf)) -> new_esEs6(vyw43000, vyw44000, gd, ge, gf) new_ltEs15(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare28(vyw4300, vyw4400), GT)) new_esEs4(Left(vyw400), Right(vyw3000), bae, hb) -> False new_esEs4(Right(vyw400), Left(vyw3000), bae, hb) -> False new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ new_compare14(vyw130, vyw131, True, bgc, bgd) -> LT new_compare29(vyw43000, vyw44000, ty_Bool) -> new_compare32(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Succ(vyw440000))) -> GT new_compare26(vyw430, vyw440, True, cbh, cca) -> EQ new_esEs24(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_esEs30(vyw40, vyw300, ty_Char) -> new_esEs11(vyw40, vyw300) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Maybe, cfh)) -> new_esEs7(vyw400, vyw3000, cfh) new_esEs18(@0, @0) -> True new_lt6(vyw43001, vyw44001, ty_Bool) -> new_lt12(vyw43001, vyw44001) new_primCmpInt(Neg(Succ(vyw430000)), Neg(vyw44000)) -> new_primCmpNat0(vyw44000, Succ(vyw430000)) new_esEs22(vyw400, vyw3000, app(app(ty_Either, beh), bfa)) -> new_esEs4(vyw400, vyw3000, beh, bfa) new_esEs22(vyw400, vyw3000, app(ty_Ratio, bfg)) -> new_esEs12(vyw400, vyw3000, bfg) new_lt18(vyw43000, vyw44000) -> new_esEs8(new_compare7(vyw43000, vyw44000), LT) new_ltEs21(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_esEs32(vyw33, vyw28, app(ty_Ratio, bhf)) -> new_esEs12(vyw33, vyw28, bhf) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_@2, bac), bad), hb) -> new_esEs5(vyw400, vyw3000, bac, bad) new_esEs25(vyw400, vyw3000, app(app(ty_@2, dba), dbb)) -> new_esEs5(vyw400, vyw3000, dba, dbb) new_esEs26(vyw400, vyw3000, app(ty_[], deg)) -> new_esEs15(vyw400, vyw3000, deg) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_[], baa), hb) -> new_esEs15(vyw400, vyw3000, baa) new_esEs21(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_[], dce), ccc) -> new_ltEs13(vyw43000, vyw44000, dce) new_ltEs14(Nothing, Just(vyw44000), cce) -> True new_compare26(Right(vyw4300), Left(vyw4400), False, cbh, cca) -> GT new_primEqInt(Pos(Succ(vyw4000)), Pos(Zero)) -> False new_primEqInt(Pos(Zero), Pos(Succ(vyw30000))) -> False new_esEs8(GT, GT) -> True new_esEs20(vyw402, vyw3002, app(app(ty_@2, bdd), bde)) -> new_esEs5(vyw402, vyw3002, bdd, bde) new_esEs24(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_esEs32(vyw33, vyw28, app(ty_[], bhe)) -> new_esEs15(vyw33, vyw28, bhe) new_esEs29(vyw18, vyw13, app(app(app(ty_@3, eaa), eab), eac)) -> new_esEs6(vyw18, vyw13, eaa, eab, eac) new_lt6(vyw43001, vyw44001, app(app(ty_@2, eg), eh)) -> new_lt11(vyw43001, vyw44001, eg, eh) new_esEs20(vyw402, vyw3002, ty_Int) -> new_esEs19(vyw402, vyw3002) new_esEs8(EQ, EQ) -> True new_compare26(Left(vyw4300), Left(vyw4400), False, cbh, cca) -> new_compare10(vyw4300, vyw4400, new_ltEs20(vyw4300, vyw4400, cbh), cbh, cca) new_esEs24(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_primEqNat0(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat0(vyw4000, vyw30000) new_esEs31(vyw40, vyw300, app(app(ty_@2, dhe), dhf)) -> new_esEs5(vyw40, vyw300, dhe, dhf) new_esEs26(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(ty_Ratio, ccd)) -> new_ltEs9(vyw4300, vyw4400, ccd) new_esEs26(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs32(vyw33, vyw28, ty_Float) -> new_esEs16(vyw33, vyw28) new_ltEs21(vyw4300, vyw4400, app(ty_[], cdf)) -> new_ltEs13(vyw4300, vyw4400, cdf) new_compare32(vyw43000, vyw44000) -> new_compare210(vyw43000, vyw44000, new_esEs13(vyw43000, vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_[], ddg)) -> new_ltEs13(vyw43000, vyw44000, ddg) new_not(True) -> False new_ltEs19(vyw43001, vyw44001, ty_Integer) -> new_ltEs12(vyw43001, vyw44001) new_ltEs20(vyw4300, vyw4400, app(app(ty_@2, caa), cab)) -> new_ltEs10(vyw4300, vyw4400, caa, cab) new_lt6(vyw43001, vyw44001, ty_@0) -> new_lt19(vyw43001, vyw44001) new_primCompAux00(vyw150, LT) -> LT new_primCmpNat0(Zero, Zero) -> EQ new_esEs21(vyw401, vyw3001, app(app(app(ty_@3, bdh), bea), beb)) -> new_esEs6(vyw401, vyw3001, bdh, bea, beb) new_esEs20(vyw402, vyw3002, app(app(app(ty_@3, bcf), bcg), bch)) -> new_esEs6(vyw402, vyw3002, bcf, bcg, bch) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_Ratio, bbe)) -> new_esEs12(vyw400, vyw3000, bbe) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Float) -> new_esEs16(vyw400, vyw3000) new_compare31(vyw43000, vyw44000) -> new_compare25(vyw43000, vyw44000, new_esEs8(vyw43000, vyw44000)) new_esEs30(vyw40, vyw300, ty_Double) -> new_esEs17(vyw40, vyw300) new_esEs10(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_compare27(vyw43000, vyw44000, True, ha) -> EQ new_compare24(vyw43000, vyw44000, False, bge, bgf) -> new_compare110(vyw43000, vyw44000, new_ltEs10(vyw43000, vyw44000, bge, bgf), bge, bgf) new_esEs7(Just(vyw400), Just(vyw3000), ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, app(app(ty_Either, ccb), ccc)) -> new_ltEs7(vyw4300, vyw4400, ccb, ccc) new_esEs31(vyw40, vyw300, ty_Float) -> new_esEs16(vyw40, vyw300) new_ltEs20(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_primEqNat0(Succ(vyw4000), Zero) -> False new_primEqNat0(Zero, Succ(vyw30000)) -> False new_lt6(vyw43001, vyw44001, app(ty_Maybe, ff)) -> new_lt16(vyw43001, vyw44001, ff) new_compare8(vyw4300, vyw4400) -> new_primCmpInt(vyw4300, vyw4400) new_esEs23(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_@0, hb) -> new_esEs18(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Char) -> new_ltEs6(vyw43001, vyw44001) new_compare10(vyw123, vyw124, True, ca, cb) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, ty_Bool) -> new_esEs13(vyw18, vyw13) new_esEs29(vyw18, vyw13, ty_Int) -> new_esEs19(vyw18, vyw13) new_lt20(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs8(GT, LT) -> False new_esEs9(vyw43001, vyw44001, app(ty_Ratio, ef)) -> new_esEs12(vyw43001, vyw44001, ef) new_lt20(vyw43000, vyw44000, app(app(app(ty_@3, cc), cd), ce)) -> new_lt13(vyw43000, vyw44000, cc, cd, ce) new_primCompAux00(vyw150, GT) -> GT new_ltEs21(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_esEs29(vyw18, vyw13, ty_Double) -> new_esEs17(vyw18, vyw13) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_Ratio, dda)) -> new_ltEs9(vyw43000, vyw44000, dda) new_lt7(vyw43000, vyw44000, app(ty_Maybe, gh)) -> new_lt16(vyw43000, vyw44000, gh) new_esEs20(vyw402, vyw3002, ty_Ordering) -> new_esEs8(vyw402, vyw3002) new_esEs25(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_primCmpInt(Pos(Succ(vyw430000)), Neg(vyw44000)) -> GT new_ltEs20(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_esEs10(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_esEs30(vyw40, vyw300, ty_@0) -> new_esEs18(vyw40, vyw300) new_ltEs8(GT, EQ) -> False new_compare110(vyw43000, vyw44000, True, bge, bgf) -> LT new_esEs24(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs5(@2(vyw400, vyw401), @2(vyw3000, vyw3001), cge, cgf) -> new_asAs(new_esEs25(vyw400, vyw3000, cge), new_esEs24(vyw401, vyw3001, cgf)) new_esEs23(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, app(app(ty_Either, cbe), cbf)) -> new_lt8(vyw43000, vyw44000, cbe, cbf) new_esEs17(Double(vyw400, vyw401), Double(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_lt7(vyw43000, vyw44000, app(ty_Ratio, ga)) -> new_lt10(vyw43000, vyw44000, ga) new_primPlusNat1(Succ(vyw14000), Succ(vyw3000000)) -> Succ(Succ(new_primPlusNat1(vyw14000, vyw3000000))) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Ratio, bab), hb) -> new_esEs12(vyw400, vyw3000, bab) new_ltEs20(vyw4300, vyw4400, ty_Integer) -> new_ltEs12(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Ordering) -> new_ltEs8(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, app(app(app(ty_@3, dgg), dgh), dha)) -> new_esEs6(vyw40, vyw300, dgg, dgh, dha) new_esEs19(vyw40, vyw300) -> new_primEqInt(vyw40, vyw300) new_esEs31(vyw40, vyw300, ty_Integer) -> new_esEs14(vyw40, vyw300) new_primCmpNat0(Zero, Succ(vyw440000)) -> LT new_ltEs20(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_esEs21(vyw401, vyw3001, app(app(ty_@2, bef), beg)) -> new_esEs5(vyw401, vyw3001, bef, beg) new_lt20(vyw43000, vyw44000, app(ty_[], bgb)) -> new_lt15(vyw43000, vyw44000, bgb) new_esEs29(vyw18, vyw13, ty_@0) -> new_esEs18(vyw18, vyw13) new_esEs4(Left(vyw400), Left(vyw3000), ty_Bool, hb) -> new_esEs13(vyw400, vyw3000) new_compare210(vyw43000, vyw44000, True) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Ratio, dbg), ccc) -> new_ltEs9(vyw43000, vyw44000, dbg) new_esEs4(Left(vyw400), Left(vyw3000), ty_Double, hb) -> new_esEs17(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_[], cbc)) -> new_ltEs13(vyw43001, vyw44001, cbc) new_ltEs17(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare18(vyw4300, vyw4400), GT)) new_primCmpNat0(Succ(vyw430000), Zero) -> GT new_compare29(vyw43000, vyw44000, ty_Float) -> new_compare28(vyw43000, vyw44000) new_lt13(vyw43000, vyw44000, cc, cd, ce) -> new_esEs8(new_compare16(vyw43000, vyw44000, cc, cd, ce), LT) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(ty_Either, cac), cad)) -> new_ltEs7(vyw43001, vyw44001, cac, cad) new_pePe(False, vyw139) -> vyw139 new_esEs7(Nothing, Just(vyw3000), cfb) -> False new_esEs7(Just(vyw400), Nothing, cfb) -> False new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Bool, ccc) -> new_ltEs11(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_Double) -> new_esEs17(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs10(vyw43000, vyw44000, ty_@0) -> new_esEs18(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Ordering, hb) -> new_esEs8(vyw400, vyw3000) new_compare29(vyw43000, vyw44000, app(ty_Ratio, ceb)) -> new_compare9(vyw43000, vyw44000, ceb) new_esEs25(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_[], dgc)) -> new_ltEs13(vyw43000, vyw44000, dgc) new_esEs6(@3(vyw400, vyw401, vyw402), @3(vyw3000, vyw3001, vyw3002), bca, bcb, bcc) -> new_asAs(new_esEs22(vyw400, vyw3000, bca), new_asAs(new_esEs21(vyw401, vyw3001, bcb), new_esEs20(vyw402, vyw3002, bcc))) new_lt7(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, app(app(ty_Either, bdf), bdg)) -> new_esEs4(vyw401, vyw3001, bdf, bdg) new_esEs10(vyw43000, vyw44000, app(ty_Maybe, gh)) -> new_esEs7(vyw43000, vyw44000, gh) new_esEs10(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(app(ty_@2, dfa), dfb)) -> new_esEs5(vyw400, vyw3000, dfa, dfb) new_ltEs19(vyw43001, vyw44001, app(app(ty_@2, caf), cag)) -> new_ltEs10(vyw43001, vyw44001, caf, cag) new_esEs25(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(ty_Maybe, cbd)) -> new_ltEs14(vyw43001, vyw44001, cbd) new_esEs25(vyw400, vyw3000, app(ty_[], dag)) -> new_esEs15(vyw400, vyw3000, dag) new_esEs9(vyw43001, vyw44001, app(app(ty_@2, eg), eh)) -> new_esEs5(vyw43001, vyw44001, eg, eh) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(ty_@2, bbf), bbg)) -> new_esEs5(vyw400, vyw3000, bbf, bbg) new_ltEs19(vyw43001, vyw44001, ty_Double) -> new_ltEs16(vyw43001, vyw44001) new_esEs11(Char(vyw400), Char(vyw3000)) -> new_primEqNat0(vyw400, vyw3000) new_compare26(Left(vyw4300), Right(vyw4400), False, cbh, cca) -> LT new_compare17(vyw43000, vyw44000, True) -> LT new_esEs8(LT, EQ) -> False new_esEs8(EQ, LT) -> False new_esEs27(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_primEqInt(Pos(Zero), Neg(Succ(vyw30000))) -> False new_primEqInt(Neg(Zero), Pos(Succ(vyw30000))) -> False new_esEs32(vyw33, vyw28, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs6(vyw33, vyw28, bha, bhb, bhc) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(ty_@2, ddb), ddc)) -> new_ltEs10(vyw43000, vyw44000, ddb, ddc) new_ltEs5(vyw43002, vyw44002, app(ty_[], eb)) -> new_ltEs13(vyw43002, vyw44002, eb) new_esEs7(Nothing, Nothing, cfb) -> True new_compare19(vyw43000, vyw44000, True, ha) -> LT new_esEs21(vyw401, vyw3001, ty_Ordering) -> new_esEs8(vyw401, vyw3001) new_lt6(vyw43001, vyw44001, app(app(app(ty_@3, fa), fb), fc)) -> new_lt13(vyw43001, vyw44001, fa, fb, fc) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_esEs25(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, ty_Int) -> new_ltEs18(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, app(app(ty_Either, dge), dgf)) -> new_esEs4(vyw40, vyw300, dge, dgf) new_ltEs5(vyw43002, vyw44002, app(app(ty_@2, de), df)) -> new_ltEs10(vyw43002, vyw44002, de, df) new_compare210(vyw43000, vyw44000, False) -> new_compare111(vyw43000, vyw44000, new_ltEs11(vyw43000, vyw44000)) new_primEqInt(Neg(Succ(vyw4000)), Neg(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs25(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs20(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCmpInt(Neg(Zero), Pos(Succ(vyw440000))) -> LT new_esEs21(vyw401, vyw3001, app(ty_Ratio, bee)) -> new_esEs12(vyw401, vyw3001, bee) new_esEs20(vyw402, vyw3002, ty_Float) -> new_esEs16(vyw402, vyw3002) new_compare29(vyw43000, vyw44000, ty_Int) -> new_compare8(vyw43000, vyw44000) new_compare17(vyw43000, vyw44000, False) -> GT new_primMulInt(Pos(vyw4010), Pos(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_esEs25(vyw400, vyw3000, app(ty_Maybe, daf)) -> new_esEs7(vyw400, vyw3000, daf) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(ty_Either, dcg), dch)) -> new_ltEs7(vyw43000, vyw44000, dcg, dch) new_esEs23(vyw43000, vyw44000, app(app(ty_Either, cbe), cbf)) -> new_esEs4(vyw43000, vyw44000, cbe, cbf) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Integer) -> new_ltEs12(vyw43002, vyw44002) new_lt7(vyw43000, vyw44000, ty_Integer) -> new_lt14(vyw43000, vyw44000) new_ltEs5(vyw43002, vyw44002, ty_Int) -> new_ltEs18(vyw43002, vyw44002) new_compare29(vyw43000, vyw44000, app(ty_Maybe, cfa)) -> new_compare13(vyw43000, vyw44000, cfa) new_esEs15([], [], dbc) -> True new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Ordering) -> new_esEs8(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, app(ty_Ratio, ga)) -> new_esEs12(vyw43000, vyw44000, ga) new_esEs24(vyw401, vyw3001, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs6(vyw401, vyw3001, cha, chb, chc) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Integer, ccc) -> new_ltEs12(vyw43000, vyw44000) new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_primMulNat0(Succ(vyw40100), Zero) -> Zero new_primMulNat0(Zero, Succ(vyw300000)) -> Zero new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Int, ccc) -> new_ltEs18(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Char, hb) -> new_esEs11(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_ltEs11(False, False) -> True new_esEs29(vyw18, vyw13, ty_Integer) -> new_esEs14(vyw18, vyw13) new_primPlusNat0(Zero, vyw300000) -> Succ(vyw300000) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(app(app(ty_@3, cfe), cff), cfg)) -> new_esEs6(vyw400, vyw3000, cfe, cff, cfg) new_esEs23(vyw43000, vyw44000, ty_Char) -> new_esEs11(vyw43000, vyw44000) new_ltEs6(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare6(vyw4300, vyw4400), GT)) new_ltEs5(vyw43002, vyw44002, app(app(ty_Either, db), dc)) -> new_ltEs7(vyw43002, vyw44002, db, dc) new_esEs15(:(vyw400, vyw401), :(vyw3000, vyw3001), dbc) -> new_asAs(new_esEs26(vyw400, vyw3000, dbc), new_esEs15(vyw401, vyw3001, dbc)) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(app(ty_@3, bah), bba), bbb)) -> new_esEs6(vyw400, vyw3000, bah, bba, bbb) new_esEs22(vyw400, vyw3000, app(ty_Maybe, bfe)) -> new_esEs7(vyw400, vyw3000, bfe) new_esEs31(vyw40, vyw300, ty_@0) -> new_esEs18(vyw40, vyw300) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Ordering, ccc) -> new_ltEs8(vyw43000, vyw44000) new_lt7(vyw43000, vyw44000, ty_Int) -> new_lt5(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, app(ty_Maybe, ha)) -> new_esEs7(vyw43000, vyw44000, ha) new_ltEs20(vyw4300, vyw4400, app(ty_Maybe, cce)) -> new_ltEs14(vyw4300, vyw4400, cce) new_compare29(vyw43000, vyw44000, ty_Integer) -> new_compare11(vyw43000, vyw44000) new_esEs28(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Bool) -> new_lt12(vyw43000, vyw44000) new_lt9(vyw43000, vyw44000) -> new_esEs8(new_compare31(vyw43000, vyw44000), LT) new_esEs10(vyw43000, vyw44000, app(app(ty_Either, fg), fh)) -> new_esEs4(vyw43000, vyw44000, fg, fh) new_ltEs14(Just(vyw43000), Just(vyw44000), app(ty_Maybe, dgd)) -> new_ltEs14(vyw43000, vyw44000, dgd) new_esEs23(vyw43000, vyw44000, ty_Float) -> new_esEs16(vyw43000, vyw44000) new_esEs22(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs8(LT, LT) -> True new_compare111(vyw43000, vyw44000, True) -> LT new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_@2, dff), dfg)) -> new_ltEs10(vyw43000, vyw44000, dff, dfg) new_esEs32(vyw33, vyw28, app(app(ty_Either, bgg), bgh)) -> new_esEs4(vyw33, vyw28, bgg, bgh) new_esEs26(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_ltEs11(True, True) -> True new_esEs20(vyw402, vyw3002, ty_@0) -> new_esEs18(vyw402, vyw3002) new_esEs22(vyw400, vyw3000, app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs6(vyw400, vyw3000, bfb, bfc, bfd) new_primPlusNat1(Succ(vyw14000), Zero) -> Succ(vyw14000) new_primPlusNat1(Zero, Succ(vyw3000000)) -> Succ(vyw3000000) new_esEs21(vyw401, vyw3001, ty_Double) -> new_esEs17(vyw401, vyw3001) new_esEs9(vyw43001, vyw44001, app(app(app(ty_@3, fa), fb), fc)) -> new_esEs6(vyw43001, vyw44001, fa, fb, fc) new_ltEs21(vyw4300, vyw4400, ty_Double) -> new_ltEs16(vyw4300, vyw4400) new_primCompAux0(vyw43000, vyw44000, vyw141, bbh) -> new_primCompAux00(vyw141, new_compare29(vyw43000, vyw44000, bbh)) new_lt7(vyw43000, vyw44000, app(ty_[], gg)) -> new_lt15(vyw43000, vyw44000, gg) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(ty_Either, dfc), dfd)) -> new_ltEs7(vyw43000, vyw44000, dfc, dfd) new_esEs13(True, True) -> True new_esEs23(vyw43000, vyw44000, app(app(ty_@2, bge), bgf)) -> new_esEs5(vyw43000, vyw44000, bge, bgf) new_ltEs4(@3(vyw43000, vyw43001, vyw43002), @3(vyw44000, vyw44001, vyw44002), cf, cg, da) -> new_pePe(new_lt7(vyw43000, vyw44000, cf), new_asAs(new_esEs10(vyw43000, vyw44000, cf), new_pePe(new_lt6(vyw43001, vyw44001, cg), new_asAs(new_esEs9(vyw43001, vyw44001, cg), new_ltEs5(vyw43002, vyw44002, da))))) new_esEs31(vyw40, vyw300, ty_Double) -> new_esEs17(vyw40, vyw300) new_esEs24(vyw401, vyw3001, app(ty_Maybe, chd)) -> new_esEs7(vyw401, vyw3001, chd) new_lt5(vyw43000, vyw44000) -> new_esEs8(new_compare8(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, app(ty_Maybe, ec)) -> new_ltEs14(vyw43002, vyw44002, ec) new_compare12(vyw43000, vyw44000, False, cc, cd, ce) -> GT new_lt7(vyw43000, vyw44000, app(app(ty_@2, gb), gc)) -> new_lt11(vyw43000, vyw44000, gb, gc) new_esEs23(vyw43000, vyw44000, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs6(vyw43000, vyw44000, cc, cd, ce) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Double) -> new_ltEs16(vyw43000, vyw44000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Char) -> new_esEs11(vyw400, vyw3000) new_esEs9(vyw43001, vyw44001, app(app(ty_Either, ed), ee)) -> new_esEs4(vyw43001, vyw44001, ed, ee) new_esEs20(vyw402, vyw3002, app(ty_Ratio, bdc)) -> new_esEs12(vyw402, vyw3002, bdc) new_esEs25(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs28(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_primMulInt(Neg(vyw4010), Neg(vyw30000)) -> Pos(new_primMulNat0(vyw4010, vyw30000)) new_primCmpInt(Pos(Zero), Pos(Succ(vyw440000))) -> new_primCmpNat0(Zero, Succ(vyw440000)) new_esEs32(vyw33, vyw28, ty_Double) -> new_esEs17(vyw33, vyw28) new_esEs20(vyw402, vyw3002, ty_Double) -> new_esEs17(vyw402, vyw3002) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Int) -> new_compare8(new_sr(vyw43000, vyw44001), new_sr(vyw44000, vyw43001)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(app(app(ty_@3, ddd), dde), ddf)) -> new_ltEs4(vyw43000, vyw44000, ddd, dde, ddf) new_compare27(vyw43000, vyw44000, False, ha) -> new_compare19(vyw43000, vyw44000, new_ltEs14(vyw43000, vyw44000, ha), ha) new_esEs31(vyw40, vyw300, app(ty_Ratio, dhd)) -> new_esEs12(vyw40, vyw300, dhd) new_esEs27(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare25(vyw43000, vyw44000, False) -> new_compare17(vyw43000, vyw44000, new_ltEs8(vyw43000, vyw44000)) new_ltEs11(False, True) -> True new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_@2, cgc), cgd)) -> new_esEs5(vyw400, vyw3000, cgc, cgd) new_lt6(vyw43001, vyw44001, ty_Int) -> new_lt5(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_Float) -> new_esEs16(vyw43001, vyw44001) new_esEs24(vyw401, vyw3001, app(app(ty_@2, chg), chh)) -> new_esEs5(vyw401, vyw3001, chg, chh) new_esEs22(vyw400, vyw3000, ty_Float) -> new_esEs16(vyw400, vyw3000) new_esEs23(vyw43000, vyw44000, ty_Ordering) -> new_esEs8(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_@0) -> new_esEs18(vyw401, vyw3001) new_lt14(vyw43000, vyw44000) -> new_esEs8(new_compare11(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Char, ccc) -> new_ltEs6(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_ltEs7(Left(vyw43000), Right(vyw44000), ccb, ccc) -> True new_primMulInt(Pos(vyw4010), Neg(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_primMulInt(Neg(vyw4010), Pos(vyw30000)) -> Neg(new_primMulNat0(vyw4010, vyw30000)) new_esEs22(vyw400, vyw3000, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_esEs26(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs22(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), ty_Integer) -> new_esEs14(vyw400, vyw3000) new_ltEs16(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare7(vyw4300, vyw4400), GT)) new_esEs24(vyw401, vyw3001, app(ty_[], che)) -> new_esEs15(vyw401, vyw3001, che) new_compare30(vyw43000, vyw44000, cbe, cbf) -> new_compare26(vyw43000, vyw44000, new_esEs4(vyw43000, vyw44000, cbe, cbf), cbe, cbf) new_esEs30(vyw40, vyw300, app(ty_[], dbc)) -> new_esEs15(vyw40, vyw300, dbc) new_lt6(vyw43001, vyw44001, ty_Char) -> new_lt4(vyw43001, vyw44001) new_esEs32(vyw33, vyw28, ty_@0) -> new_esEs18(vyw33, vyw28) new_esEs24(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_sr0(Integer(vyw430000), Integer(vyw440010)) -> Integer(new_primMulInt(vyw430000, vyw440010)) new_esEs4(Left(vyw400), Left(vyw3000), app(ty_Maybe, hh), hb) -> new_esEs7(vyw400, vyw3000, hh) new_esEs13(False, False) -> True new_lt19(vyw43000, vyw44000) -> new_esEs8(new_compare18(vyw43000, vyw44000), LT) new_lt6(vyw43001, vyw44001, ty_Integer) -> new_lt14(vyw43001, vyw44001) new_esEs7(Just(vyw400), Just(vyw3000), ty_Float) -> new_esEs16(vyw400, vyw3000) new_ltEs8(GT, GT) -> True new_lt8(vyw43000, vyw44000, cbe, cbf) -> new_esEs8(new_compare30(vyw43000, vyw44000, cbe, cbf), LT) new_esEs26(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_lt6(vyw43001, vyw44001, app(ty_[], fd)) -> new_lt15(vyw43001, vyw44001, fd) new_compare0([], :(vyw44000, vyw44001), bbh) -> LT new_asAs(True, vyw118) -> vyw118 new_esEs30(vyw40, vyw300, ty_Integer) -> new_esEs14(vyw40, vyw300) new_compare10(vyw123, vyw124, False, ca, cb) -> GT new_compare12(vyw43000, vyw44000, True, cc, cd, ce) -> LT new_esEs32(vyw33, vyw28, ty_Int) -> new_esEs19(vyw33, vyw28) new_ltEs8(EQ, EQ) -> True new_esEs9(vyw43001, vyw44001, ty_Double) -> new_esEs17(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, ty_@0) -> new_esEs18(vyw43001, vyw44001) new_ltEs10(@2(vyw43000, vyw43001), @2(vyw44000, vyw44001), caa, cab) -> new_pePe(new_lt20(vyw43000, vyw44000, caa), new_asAs(new_esEs23(vyw43000, vyw44000, caa), new_ltEs19(vyw43001, vyw44001, cab))) new_esEs29(vyw18, vyw13, app(ty_Ratio, eaf)) -> new_esEs12(vyw18, vyw13, eaf) new_esEs26(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(ty_Either, hc), hd), hb) -> new_esEs4(vyw400, vyw3000, hc, hd) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_Maybe, bbc)) -> new_esEs7(vyw400, vyw3000, bbc) new_esEs20(vyw402, vyw3002, app(ty_[], bdb)) -> new_esEs15(vyw402, vyw3002, bdb) new_esEs24(vyw401, vyw3001, app(ty_Ratio, chf)) -> new_esEs12(vyw401, vyw3001, chf) new_esEs9(vyw43001, vyw44001, app(ty_Maybe, ff)) -> new_esEs7(vyw43001, vyw44001, ff) new_esEs4(Left(vyw400), Left(vyw3000), ty_Float, hb) -> new_esEs16(vyw400, vyw3000) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_Ratio, cgb)) -> new_esEs12(vyw400, vyw3000, cgb) new_lt6(vyw43001, vyw44001, app(app(ty_Either, ed), ee)) -> new_lt8(vyw43001, vyw44001, ed, ee) new_esEs32(vyw33, vyw28, ty_Char) -> new_esEs11(vyw33, vyw28) new_compare24(vyw43000, vyw44000, True, bge, bgf) -> EQ new_primCmpInt(Pos(Succ(vyw430000)), Pos(vyw44000)) -> new_primCmpNat0(Succ(vyw430000), vyw44000) new_esEs30(vyw40, vyw300, app(ty_Ratio, dbd)) -> new_esEs12(vyw40, vyw300, dbd) new_compare29(vyw43000, vyw44000, app(app(ty_Either, cdh), cea)) -> new_compare30(vyw43000, vyw44000, cdh, cea) new_primCompAux00(vyw150, EQ) -> vyw150 new_compare13(vyw43000, vyw44000, ha) -> new_compare27(vyw43000, vyw44000, new_esEs7(vyw43000, vyw44000, ha), ha) new_compare0([], [], bbh) -> EQ new_esEs20(vyw402, vyw3002, app(app(ty_Either, bcd), bce)) -> new_esEs4(vyw402, vyw3002, bcd, bce) new_sr(vyw401, vyw3000) -> new_primMulInt(vyw401, vyw3000) new_ltEs8(EQ, GT) -> True new_esEs30(vyw40, vyw300, ty_Float) -> new_esEs16(vyw40, vyw300) new_ltEs21(vyw4300, vyw4400, app(app(ty_Either, ccf), ccg)) -> new_ltEs7(vyw4300, vyw4400, ccf, ccg) new_esEs7(Just(vyw400), Just(vyw3000), app(app(ty_Either, cfc), cfd)) -> new_esEs4(vyw400, vyw3000, cfc, cfd) new_esEs22(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_primMulNat0(Zero, Zero) -> Zero new_esEs9(vyw43001, vyw44001, ty_Char) -> new_esEs11(vyw43001, vyw44001) new_lt11(vyw43000, vyw44000, bge, bgf) -> new_esEs8(new_compare15(vyw43000, vyw44000, bge, bgf), LT) new_ltEs21(vyw4300, vyw4400, ty_@0) -> new_ltEs17(vyw4300, vyw4400) new_lt7(vyw43000, vyw44000, ty_Float) -> new_lt17(vyw43000, vyw44000) new_compare111(vyw43000, vyw44000, False) -> GT new_esEs22(vyw400, vyw3000, app(app(ty_@2, bfh), bga)) -> new_esEs5(vyw400, vyw3000, bfh, bga) new_compare29(vyw43000, vyw44000, app(app(app(ty_@3, cee), cef), ceg)) -> new_compare16(vyw43000, vyw44000, cee, cef, ceg) new_ltEs21(vyw4300, vyw4400, app(ty_Maybe, cdg)) -> new_ltEs14(vyw4300, vyw4400, cdg) new_compare29(vyw43000, vyw44000, app(ty_[], ceh)) -> new_compare0(vyw43000, vyw44000, ceh) new_compare11(Integer(vyw43000), Integer(vyw44000)) -> new_primCmpInt(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, app(ty_Maybe, dhb)) -> new_esEs7(vyw40, vyw300, dhb) new_esEs15(:(vyw400, vyw401), [], dbc) -> False new_esEs15([], :(vyw3000, vyw3001), dbc) -> False new_compare7(Double(vyw43000, Pos(vyw430010)), Double(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_compare7(Double(vyw43000, Neg(vyw430010)), Double(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_ltEs12(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare11(vyw4300, vyw4400), GT)) new_ltEs11(True, False) -> False new_esEs25(vyw400, vyw3000, app(app(ty_Either, daa), dab)) -> new_esEs4(vyw400, vyw3000, daa, dab) new_ltEs21(vyw4300, vyw4400, app(app(ty_@2, cda), cdb)) -> new_ltEs10(vyw4300, vyw4400, cda, cdb) new_esEs24(vyw401, vyw3001, ty_Float) -> new_esEs16(vyw401, vyw3001) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Double) -> new_esEs17(vyw400, vyw3000) new_esEs20(vyw402, vyw3002, ty_Integer) -> new_esEs14(vyw402, vyw3002) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(app(ty_Either, baf), bag)) -> new_esEs4(vyw400, vyw3000, baf, bag) new_ltEs5(vyw43002, vyw44002, ty_Ordering) -> new_ltEs8(vyw43002, vyw44002) new_esEs21(vyw401, vyw3001, ty_Char) -> new_esEs11(vyw401, vyw3001) new_ltEs8(LT, EQ) -> True new_esEs29(vyw18, vyw13, app(ty_[], eae)) -> new_esEs15(vyw18, vyw13, eae) new_esEs32(vyw33, vyw28, ty_Ordering) -> new_esEs8(vyw33, vyw28) new_esEs32(vyw33, vyw28, app(app(ty_@2, bhg), bhh)) -> new_esEs5(vyw33, vyw28, bhg, bhh) new_esEs7(Just(vyw400), Just(vyw3000), app(ty_[], cga)) -> new_esEs15(vyw400, vyw3000, cga) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_@0) -> new_esEs18(vyw400, vyw3000) new_lt17(vyw43000, vyw44000) -> new_esEs8(new_compare28(vyw43000, vyw44000), LT) new_compare29(vyw43000, vyw44000, ty_Char) -> new_compare6(vyw43000, vyw44000) new_esEs29(vyw18, vyw13, app(app(ty_Either, dhg), dhh)) -> new_esEs4(vyw18, vyw13, dhg, dhh) new_primEqInt(Neg(Succ(vyw4000)), Neg(Zero)) -> False new_primEqInt(Neg(Zero), Neg(Succ(vyw30000))) -> False new_ltEs21(vyw4300, vyw4400, ty_Int) -> new_ltEs18(vyw4300, vyw4400) new_esEs22(vyw400, vyw3000, ty_Char) -> new_esEs11(vyw400, vyw3000) new_compare16(vyw43000, vyw44000, cc, cd, ce) -> new_compare23(vyw43000, vyw44000, new_esEs6(vyw43000, vyw44000, cc, cd, ce), cc, cd, ce) new_primEqInt(Pos(Succ(vyw4000)), Pos(Succ(vyw30000))) -> new_primEqNat0(vyw4000, vyw30000) new_esEs13(False, True) -> False new_esEs13(True, False) -> False new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, app(ty_Maybe, ddh)) -> new_ltEs14(vyw43000, vyw44000, ddh) new_esEs21(vyw401, vyw3001, app(ty_Maybe, bec)) -> new_esEs7(vyw401, vyw3001, bec) new_compare19(vyw43000, vyw44000, False, ha) -> GT new_ltEs8(LT, LT) -> True new_ltEs14(Just(vyw43000), Nothing, cce) -> False new_ltEs14(Nothing, Nothing, cce) -> True new_primEqInt(Pos(Succ(vyw4000)), Neg(vyw3000)) -> False new_primEqInt(Neg(Succ(vyw4000)), Pos(vyw3000)) -> False new_lt20(vyw43000, vyw44000, app(app(ty_@2, bge), bgf)) -> new_lt11(vyw43000, vyw44000, bge, bgf) new_esEs26(vyw400, vyw3000, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_lt12(vyw43000, vyw44000) -> new_esEs8(new_compare32(vyw43000, vyw44000), LT) new_ltEs7(Left(vyw43000), Left(vyw44000), app(ty_Maybe, dcf), ccc) -> new_ltEs14(vyw43000, vyw44000, dcf) new_ltEs5(vyw43002, vyw44002, ty_Char) -> new_ltEs6(vyw43002, vyw44002) new_primCmpInt(Neg(Zero), Neg(Succ(vyw440000))) -> new_primCmpNat0(Succ(vyw440000), Zero) new_esEs32(vyw33, vyw28, app(ty_Maybe, bhd)) -> new_esEs7(vyw33, vyw28, bhd) new_lt6(vyw43001, vyw44001, ty_Float) -> new_lt17(vyw43001, vyw44001) new_esEs30(vyw40, vyw300, app(app(ty_Either, bae), hb)) -> new_esEs4(vyw40, vyw300, bae, hb) new_lt4(vyw43000, vyw44000) -> new_esEs8(new_compare6(vyw43000, vyw44000), LT) new_ltEs5(vyw43002, vyw44002, ty_Double) -> new_ltEs16(vyw43002, vyw44002) new_lt15(vyw43000, vyw44000, bgb) -> new_esEs8(new_compare0(vyw43000, vyw44000, bgb), LT) new_esEs24(vyw401, vyw3001, app(app(ty_Either, cgg), cgh)) -> new_esEs4(vyw401, vyw3001, cgg, cgh) new_esEs26(vyw400, vyw3000, app(ty_Maybe, def)) -> new_esEs7(vyw400, vyw3000, def) new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Char) -> new_esEs11(vyw400, vyw3000) new_ltEs19(vyw43001, vyw44001, app(app(app(ty_@3, cah), cba), cbb)) -> new_ltEs4(vyw43001, vyw44001, cah, cba, cbb) new_esEs23(vyw43000, vyw44000, app(ty_Ratio, cbg)) -> new_esEs12(vyw43000, vyw44000, cbg) new_ltEs19(vyw43001, vyw44001, ty_@0) -> new_ltEs17(vyw43001, vyw44001) new_esEs31(vyw40, vyw300, ty_Char) -> new_esEs11(vyw40, vyw300) new_esEs26(vyw400, vyw3000, app(app(app(ty_@3, dec), ded), dee)) -> new_esEs6(vyw400, vyw3000, dec, ded, dee) new_ltEs5(vyw43002, vyw44002, ty_Bool) -> new_ltEs11(vyw43002, vyw44002) new_ltEs21(vyw4300, vyw4400, app(ty_Ratio, cch)) -> new_ltEs9(vyw4300, vyw4400, cch) new_ltEs5(vyw43002, vyw44002, ty_Float) -> new_ltEs15(vyw43002, vyw44002) new_compare23(vyw43000, vyw44000, True, cc, cd, ce) -> EQ new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Float, ccc) -> new_ltEs15(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, app(ty_[], bbh)) -> new_ltEs13(vyw4300, vyw4400, bbh) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Bool) -> new_esEs13(vyw400, vyw3000) new_lt20(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_@0, ccc) -> new_ltEs17(vyw43000, vyw44000) new_compare29(vyw43000, vyw44000, ty_Double) -> new_compare7(vyw43000, vyw44000) new_esEs4(Right(vyw400), Right(vyw3000), bae, ty_Ordering) -> new_esEs8(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Float) -> new_ltEs15(vyw4300, vyw4400) new_not(False) -> True new_esEs31(vyw40, vyw300, ty_Bool) -> new_esEs13(vyw40, vyw300) new_esEs29(vyw18, vyw13, ty_Float) -> new_esEs16(vyw18, vyw13) new_esEs21(vyw401, vyw3001, ty_Bool) -> new_esEs13(vyw401, vyw3001) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Integer) -> new_ltEs12(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, ty_Ordering) -> new_esEs8(vyw40, vyw300) new_esEs20(vyw402, vyw3002, app(ty_Maybe, bda)) -> new_esEs7(vyw402, vyw3002, bda) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_Float) -> new_ltEs15(vyw43000, vyw44000) new_lt20(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, ty_Int) -> new_esEs19(vyw40, vyw300) new_compare0(:(vyw43000, vyw43001), [], bbh) -> GT new_esEs8(LT, GT) -> False new_esEs8(GT, LT) -> False new_ltEs5(vyw43002, vyw44002, ty_@0) -> new_ltEs17(vyw43002, vyw44002) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Char) -> new_ltEs6(vyw43000, vyw44000) new_esEs31(vyw40, vyw300, app(ty_[], dhc)) -> new_esEs15(vyw40, vyw300, dhc) new_esEs25(vyw400, vyw3000, ty_Double) -> new_esEs17(vyw400, vyw3000) new_compare28(Float(vyw43000, Pos(vyw430010)), Float(vyw44000, Pos(vyw440010))) -> new_compare8(new_sr(vyw43000, Pos(vyw440010)), new_sr(Pos(vyw430010), vyw44000)) new_lt6(vyw43001, vyw44001, app(ty_Ratio, ef)) -> new_lt10(vyw43001, vyw44001, ef) new_compare25(vyw43000, vyw44000, True) -> EQ new_esEs23(vyw43000, vyw44000, ty_Integer) -> new_esEs14(vyw43000, vyw44000) new_ltEs9(vyw4300, vyw4400, ccd) -> new_not(new_esEs8(new_compare9(vyw4300, vyw4400, ccd), GT)) new_esEs12(:%(vyw400, vyw401), :%(vyw3000, vyw3001), dbd) -> new_asAs(new_esEs28(vyw400, vyw3000, dbd), new_esEs27(vyw401, vyw3001, dbd)) new_lt16(vyw43000, vyw44000, ha) -> new_esEs8(new_compare13(vyw43000, vyw44000, ha), LT) new_esEs30(vyw40, vyw300, app(app(app(ty_@3, bca), bcb), bcc)) -> new_esEs6(vyw40, vyw300, bca, bcb, bcc) new_ltEs20(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_primPlusNat0(Succ(vyw1400), vyw300000) -> Succ(Succ(new_primPlusNat1(vyw1400, vyw300000))) new_esEs9(vyw43001, vyw44001, ty_Bool) -> new_esEs13(vyw43001, vyw44001) new_ltEs19(vyw43001, vyw44001, ty_Float) -> new_ltEs15(vyw43001, vyw44001) new_lt20(vyw43000, vyw44000, ty_Char) -> new_lt4(vyw43000, vyw44000) new_ltEs20(vyw4300, vyw4400, ty_Char) -> new_ltEs6(vyw4300, vyw4400) new_ltEs5(vyw43002, vyw44002, app(app(app(ty_@3, dg), dh), ea)) -> new_ltEs4(vyw43002, vyw44002, dg, dh, ea) new_ltEs14(Just(vyw43000), Just(vyw44000), app(app(app(ty_@3, dfh), dga), dgb)) -> new_ltEs4(vyw43000, vyw44000, dfh, dga, dgb) new_ltEs14(Just(vyw43000), Just(vyw44000), ty_@0) -> new_ltEs17(vyw43000, vyw44000) new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ new_primPlusNat1(Zero, Zero) -> Zero new_compare0(:(vyw43000, vyw43001), :(vyw44000, vyw44001), bbh) -> new_primCompAux0(vyw43000, vyw44000, new_compare0(vyw43001, vyw44001, bbh), bbh) new_ltEs21(vyw4300, vyw4400, ty_Ordering) -> new_ltEs8(vyw4300, vyw4400) new_ltEs19(vyw43001, vyw44001, ty_Bool) -> new_ltEs11(vyw43001, vyw44001) new_esEs23(vyw43000, vyw44000, app(ty_[], bgb)) -> new_esEs15(vyw43000, vyw44000, bgb) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Bool) -> new_ltEs11(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), ty_Int, hb) -> new_esEs19(vyw400, vyw3000) new_esEs10(vyw43000, vyw44000, ty_Bool) -> new_esEs13(vyw43000, vyw44000) new_esEs23(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_esEs25(vyw400, vyw3000, ty_@0) -> new_esEs18(vyw400, vyw3000) new_esEs30(vyw40, vyw300, app(ty_Maybe, cfb)) -> new_esEs7(vyw40, vyw300, cfb) new_esEs26(vyw400, vyw3000, app(app(ty_Either, dea), deb)) -> new_esEs4(vyw400, vyw3000, dea, deb) new_primEqInt(Neg(Zero), Neg(Zero)) -> True new_esEs30(vyw40, vyw300, app(app(ty_@2, cge), cgf)) -> new_esEs5(vyw40, vyw300, cge, cgf) new_lt6(vyw43001, vyw44001, ty_Ordering) -> new_lt9(vyw43001, vyw44001) new_ltEs18(vyw4300, vyw4400) -> new_not(new_esEs8(new_compare8(vyw4300, vyw4400), GT)) new_ltEs21(vyw4300, vyw4400, app(app(app(ty_@3, cdc), cdd), cde)) -> new_ltEs4(vyw4300, vyw4400, cdc, cdd, cde) new_esEs9(vyw43001, vyw44001, ty_Int) -> new_esEs19(vyw43001, vyw44001) new_primMulNat0(Succ(vyw40100), Succ(vyw300000)) -> new_primPlusNat0(new_primMulNat0(vyw40100, Succ(vyw300000)), vyw300000) new_compare28(Float(vyw43000, Neg(vyw430010)), Float(vyw44000, Neg(vyw440010))) -> new_compare8(new_sr(vyw43000, Neg(vyw440010)), new_sr(Neg(vyw430010), vyw44000)) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Int) -> new_ltEs18(vyw43000, vyw44000) new_esEs21(vyw401, vyw3001, ty_Integer) -> new_esEs14(vyw401, vyw3001) new_esEs20(vyw402, vyw3002, ty_Char) -> new_esEs11(vyw402, vyw3002) new_primCmpNat0(Succ(vyw430000), Succ(vyw440000)) -> new_primCmpNat0(vyw430000, vyw440000) new_lt6(vyw43001, vyw44001, ty_Double) -> new_lt18(vyw43001, vyw44001) new_esEs9(vyw43001, vyw44001, app(ty_[], fd)) -> new_esEs15(vyw43001, vyw44001, fd) new_compare9(:%(vyw43000, vyw43001), :%(vyw44000, vyw44001), ty_Integer) -> new_compare11(new_sr0(vyw43000, vyw44001), new_sr0(vyw44000, vyw43001)) new_ltEs7(Left(vyw43000), Left(vyw44000), app(app(app(ty_@3, dcb), dcc), dcd), ccc) -> new_ltEs4(vyw43000, vyw44000, dcb, dcc, dcd) new_esEs16(Float(vyw400, vyw401), Float(vyw3000, vyw3001)) -> new_esEs19(new_sr(vyw400, vyw3001), new_sr(vyw401, vyw3000)) new_ltEs19(vyw43001, vyw44001, app(ty_Ratio, cae)) -> new_ltEs9(vyw43001, vyw44001, cae) new_lt20(vyw43000, vyw44000, app(ty_Maybe, ha)) -> new_lt16(vyw43000, vyw44000, ha) new_esEs4(Left(vyw400), Left(vyw3000), ty_Integer, hb) -> new_esEs14(vyw400, vyw3000) new_esEs29(vyw18, vyw13, ty_Char) -> new_esEs11(vyw18, vyw13) new_compare6(Char(vyw43000), Char(vyw44000)) -> new_primCmpNat0(vyw43000, vyw44000) new_compare23(vyw43000, vyw44000, False, cc, cd, ce) -> new_compare12(vyw43000, vyw44000, new_ltEs4(vyw43000, vyw44000, cc, cd, ce), cc, cd, ce) new_esEs4(Right(vyw400), Right(vyw3000), bae, app(ty_[], bbd)) -> new_esEs15(vyw400, vyw3000, bbd) new_primEqInt(Pos(Zero), Neg(Zero)) -> True new_primEqInt(Neg(Zero), Pos(Zero)) -> True new_lt7(vyw43000, vyw44000, ty_@0) -> new_lt19(vyw43000, vyw44000) new_esEs26(vyw400, vyw3000, app(ty_Ratio, deh)) -> new_esEs12(vyw400, vyw3000, deh) new_compare29(vyw43000, vyw44000, ty_Ordering) -> new_compare31(vyw43000, vyw44000) new_compare110(vyw43000, vyw44000, False, bge, bgf) -> GT new_esEs25(vyw400, vyw3000, app(ty_Ratio, dah)) -> new_esEs12(vyw400, vyw3000, dah) new_esEs21(vyw401, vyw3001, ty_Int) -> new_esEs19(vyw401, vyw3001) new_compare29(vyw43000, vyw44000, app(app(ty_@2, cec), ced)) -> new_compare15(vyw43000, vyw44000, cec, ced) new_esEs32(vyw33, vyw28, ty_Bool) -> new_esEs13(vyw33, vyw28) new_primEqNat0(Zero, Zero) -> True new_esEs21(vyw401, vyw3001, app(ty_[], bed)) -> new_esEs15(vyw401, vyw3001, bed) new_lt7(vyw43000, vyw44000, app(app(ty_Either, fg), fh)) -> new_lt8(vyw43000, vyw44000, fg, fh) new_esEs20(vyw402, vyw3002, ty_Bool) -> new_esEs13(vyw402, vyw3002) new_esEs29(vyw18, vyw13, ty_Ordering) -> new_esEs8(vyw18, vyw13) new_esEs29(vyw18, vyw13, app(app(ty_@2, eag), eah)) -> new_esEs5(vyw18, vyw13, eag, eah) new_compare14(vyw130, vyw131, False, bgc, bgd) -> GT new_esEs22(vyw400, vyw3000, app(ty_[], bff)) -> new_esEs15(vyw400, vyw3000, bff) new_ltEs8(LT, GT) -> True new_ltEs5(vyw43002, vyw44002, app(ty_Ratio, dd)) -> new_ltEs9(vyw43002, vyw44002, dd) new_esEs22(vyw400, vyw3000, ty_Int) -> new_esEs19(vyw400, vyw3000) new_asAs(False, vyw118) -> False new_ltEs13(vyw4300, vyw4400, bbh) -> new_not(new_esEs8(new_compare0(vyw4300, vyw4400, bbh), GT)) new_ltEs8(EQ, LT) -> False new_esEs29(vyw18, vyw13, app(ty_Maybe, ead)) -> new_esEs7(vyw18, vyw13, ead) new_esEs22(vyw400, vyw3000, ty_Integer) -> new_esEs14(vyw400, vyw3000) new_esEs14(Integer(vyw400), Integer(vyw3000)) -> new_primEqInt(vyw400, vyw3000) new_lt7(vyw43000, vyw44000, ty_Ordering) -> new_lt9(vyw43000, vyw44000) new_esEs4(Left(vyw400), Left(vyw3000), app(app(app(ty_@3, he), hf), hg), hb) -> new_esEs6(vyw400, vyw3000, he, hf, hg) new_esEs8(EQ, GT) -> False new_esEs8(GT, EQ) -> False new_ltEs20(vyw4300, vyw4400, app(app(app(ty_@3, cf), cg), da)) -> new_ltEs4(vyw4300, vyw4400, cf, cg, da) new_ltEs7(Right(vyw43000), Right(vyw44000), ccb, ty_Ordering) -> new_ltEs8(vyw43000, vyw44000) new_esEs9(vyw43001, vyw44001, ty_Integer) -> new_esEs14(vyw43001, vyw44001) new_esEs10(vyw43000, vyw44000, ty_Int) -> new_esEs19(vyw43000, vyw44000) new_ltEs7(Left(vyw43000), Left(vyw44000), ty_Double, ccc) -> new_ltEs16(vyw43000, vyw44000) new_compare18(@0, @0) -> EQ new_esEs10(vyw43000, vyw44000, app(ty_[], gg)) -> new_esEs15(vyw43000, vyw44000, gg) new_ltEs21(vyw4300, vyw4400, ty_Bool) -> new_ltEs11(vyw4300, vyw4400) new_lt10(vyw43000, vyw44000, cbg) -> new_esEs8(new_compare9(vyw43000, vyw44000, cbg), LT) new_lt7(vyw43000, vyw44000, ty_Double) -> new_lt18(vyw43000, vyw44000) The set Q consists of the following terms: new_esEs30(x0, x1, ty_Double) new_ltEs20(x0, x1, ty_@0) new_lt7(x0, x1, ty_Char) new_esEs8(EQ, EQ) new_compare31(x0, x1) new_esEs7(Just(x0), Just(x1), ty_Float) new_lt6(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_@0) new_compare17(x0, x1, True) new_esEs10(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Float) new_ltEs20(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) new_esEs20(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Ordering) new_lt20(x0, x1, app(ty_[], x2)) new_ltEs7(Right(x0), Right(x1), x2, ty_Ordering) new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) new_ltEs14(Just(x0), Just(x1), ty_Double) new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs30(x0, x1, ty_Ordering) new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) new_primPlusNat1(Zero, Zero) new_ltEs20(x0, x1, ty_Bool) new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Int) new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_Int) new_esEs21(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, app(ty_[], x2)) new_esEs4(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs14(Just(x0), Just(x1), ty_Int) new_esEs9(x0, x1, app(ty_Maybe, x2)) new_ltEs5(x0, x1, ty_Float) new_primEqInt(Pos(Zero), Pos(Zero)) new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_ltEs7(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_compare27(x0, x1, True, x2) new_compare10(x0, x1, False, x2, x3) new_esEs7(Just(x0), Nothing, x1) new_compare25(x0, x1, False) new_esEs10(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) new_esEs10(x0, x1, ty_Integer) new_compare19(x0, x1, True, x2) new_esEs22(x0, x1, ty_Double) new_esEs20(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Neg(Zero), Neg(Zero)) new_lt6(x0, x1, ty_Bool) new_esEs9(x0, x1, ty_Bool) new_esEs24(x0, x1, ty_Float) new_esEs29(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Float) new_ltEs5(x0, x1, ty_Integer) new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs4(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_lt6(x0, x1, ty_Integer) new_compare28(Float(x0, Pos(x1)), Float(x2, Pos(x3))) new_esEs24(x0, x1, ty_Integer) new_ltEs21(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(ty_Maybe, x2)) new_primEqInt(Pos(Succ(x0)), Neg(x1)) new_primEqInt(Neg(Succ(x0)), Pos(x1)) new_compare24(x0, x1, False, x2, x3) new_esEs25(x0, x1, ty_Float) new_primEqInt(Pos(Succ(x0)), Pos(Zero)) new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs20(x0, x1, ty_Char) new_compare11(Integer(x0), Integer(x1)) new_ltEs11(True, True) new_compare15(x0, x1, x2, x3) new_esEs4(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt7(x0, x1, ty_Ordering) new_asAs(True, x0) new_compare29(x0, x1, app(ty_Maybe, x2)) new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) new_lt12(x0, x1) new_lt7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) new_esEs26(x0, x1, ty_Double) new_esEs26(x0, x1, app(ty_Ratio, x2)) new_esEs25(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs21(x0, x1, app(ty_Ratio, x2)) new_compare29(x0, x1, ty_Integer) new_lt6(x0, x1, ty_Ordering) new_lt6(x0, x1, app(ty_[], x2)) new_esEs9(x0, x1, ty_Integer) new_primEqInt(Pos(Zero), Neg(Zero)) new_primEqInt(Neg(Zero), Pos(Zero)) new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs20(x0, x1, ty_Ordering) new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) new_compare6(Char(x0), Char(x1)) new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat1(Succ(x0), Succ(x1)) new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) new_esEs23(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_Int) new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) new_ltEs7(Right(x0), Right(x1), x2, ty_@0) new_ltEs8(LT, LT) new_ltEs7(Right(x0), Right(x1), x2, ty_Double) new_ltEs19(x0, x1, app(ty_Ratio, x2)) new_primCmpInt(Neg(Succ(x0)), Pos(x1)) new_primCmpInt(Pos(Succ(x0)), Neg(x1)) new_primCmpNat0(Succ(x0), Succ(x1)) new_compare8(x0, x1) new_compare23(x0, x1, False, x2, x3, x4) new_compare30(x0, x1, x2, x3) new_esEs31(x0, x1, ty_Integer) new_ltEs7(Right(x0), Right(x1), x2, ty_Char) new_esEs23(x0, x1, ty_Ordering) new_ltEs7(Right(x0), Right(x1), x2, ty_Int) new_compare25(x0, x1, True) new_ltEs7(Right(x0), Left(x1), x2, x3) new_ltEs7(Left(x0), Right(x1), x2, x3) new_ltEs20(x0, x1, ty_Int) new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs26(x0, x1, app(ty_Maybe, x2)) new_esEs30(x0, x1, ty_Char) new_primCompAux00(x0, EQ) new_esEs31(x0, x1, ty_@0) new_esEs10(x0, x1, ty_Double) new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs22(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_@0) new_lt20(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_ltEs18(x0, x1) new_esEs30(x0, x1, ty_Bool) new_ltEs17(x0, x1) new_esEs4(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_esEs29(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), ty_Bool) new_primCmpInt(Pos(Succ(x0)), Pos(x1)) new_lt6(x0, x1, app(ty_Ratio, x2)) new_ltEs19(x0, x1, ty_Ordering) new_esEs7(Nothing, Just(x0), x1) new_primCmpInt(Pos(Zero), Neg(Succ(x0))) new_primCompAux00(x0, LT) new_primCmpInt(Neg(Zero), Pos(Succ(x0))) new_ltEs14(Just(x0), Just(x1), ty_@0) new_compare29(x0, x1, ty_Bool) new_esEs26(x0, x1, ty_Int) new_lt18(x0, x1) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_lt11(x0, x1, x2, x3) new_lt16(x0, x1, x2) new_esEs9(x0, x1, ty_Int) new_lt6(x0, x1, ty_Double) new_primCmpInt(Neg(Zero), Neg(Succ(x0))) new_esEs26(x0, x1, ty_Char) new_esEs32(x0, x1, app(ty_Ratio, x2)) new_esEs30(x0, x1, ty_@0) new_esEs10(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(ty_[], x2)) new_esEs28(x0, x1, ty_Int) new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Float) new_esEs17(Double(x0, x1), Double(x2, x3)) new_compare12(x0, x1, True, x2, x3, x4) new_esEs21(x0, x1, ty_@0) new_ltEs19(x0, x1, ty_Float) new_ltEs7(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs4(Right(x0), Right(x1), x2, ty_Int) new_esEs29(x0, x1, ty_@0) new_esEs7(Nothing, Nothing, x0) new_lt20(x0, x1, ty_Int) new_esEs22(x0, x1, ty_Int) new_lt14(x0, x1) new_compare9(:%(x0, x1), :%(x2, x3), ty_Int) new_esEs20(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) new_ltEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, app(ty_Maybe, x2)) new_ltEs12(x0, x1) new_ltEs5(x0, x1, ty_@0) new_esEs30(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_Maybe, x2)) new_compare7(Double(x0, Pos(x1)), Double(x2, Pos(x3))) new_esEs29(x0, x1, ty_Integer) new_esEs26(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_[], x2)) new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) new_lt20(x0, x1, ty_Char) new_ltEs16(x0, x1) new_esEs24(x0, x1, app(ty_Ratio, x2)) new_ltEs21(x0, x1, ty_Double) new_esEs20(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Char) new_esEs7(Just(x0), Just(x1), ty_Integer) new_primEqNat0(Zero, Succ(x0)) new_esEs4(Left(x0), Left(x1), ty_Double, x2) new_compare26(x0, x1, True, x2, x3) new_esEs8(GT, GT) new_compare29(x0, x1, app(ty_[], x2)) new_ltEs8(GT, GT) new_esEs25(x0, x1, ty_Double) new_esEs8(LT, EQ) new_esEs8(EQ, LT) new_esEs12(:%(x0, x1), :%(x2, x3), x4) new_esEs4(Right(x0), Right(x1), x2, ty_Float) new_ltEs8(LT, EQ) new_ltEs8(EQ, LT) new_lt7(x0, x1, ty_Integer) new_sr0(Integer(x0), Integer(x1)) new_esEs22(x0, x1, ty_Ordering) new_primCmpInt(Neg(Zero), Neg(Zero)) new_compare13(x0, x1, x2) new_esEs13(False, True) new_esEs13(True, False) new_esEs23(x0, x1, ty_@0) new_ltEs7(Left(x0), Left(x1), ty_Int, x2) new_compare28(Float(x0, Neg(x1)), Float(x2, Neg(x3))) new_esEs8(LT, LT) new_esEs19(x0, x1) new_primCmpInt(Pos(Zero), Neg(Zero)) new_primCmpInt(Neg(Zero), Pos(Zero)) new_ltEs19(x0, x1, ty_Char) new_esEs23(x0, x1, ty_Double) new_ltEs7(Left(x0), Left(x1), ty_Char, x2) new_esEs20(x0, x1, app(ty_Ratio, x2)) new_esEs9(x0, x1, ty_Char) new_esEs24(x0, x1, ty_Int) new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs20(x0, x1, ty_Integer) new_compare14(x0, x1, False, x2, x3) new_esEs22(x0, x1, ty_Bool) new_ltEs7(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) new_lt20(x0, x1, app(app(ty_@2, x2), x3)) new_esEs23(x0, x1, app(ty_[], x2)) new_esEs22(x0, x1, ty_Integer) new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs24(x0, x1, ty_Bool) new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(ty_[], x2)) new_lt20(x0, x1, app(app(ty_Either, x2), x3)) new_primPlusNat0(Zero, x0) new_ltEs5(x0, x1, ty_Double) new_esEs14(Integer(x0), Integer(x1)) new_ltEs8(EQ, EQ) new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs10(x0, x1, app(ty_[], x2)) new_esEs24(x0, x1, ty_Char) new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) new_esEs9(x0, x1, ty_Float) new_lt6(x0, x1, ty_@0) new_ltEs20(x0, x1, ty_Ordering) new_lt7(x0, x1, ty_Bool) new_ltEs11(False, True) new_ltEs11(True, False) new_esEs20(x0, x1, ty_Float) new_lt19(x0, x1) new_ltEs19(x0, x1, ty_Int) new_esEs28(x0, x1, ty_Integer) new_lt7(x0, x1, app(app(ty_Either, x2), x3)) new_esEs31(x0, x1, app(ty_Maybe, x2)) new_ltEs7(Left(x0), Left(x1), ty_Float, x2) new_compare0([], :(x0, x1), x2) new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs21(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), ty_Double) new_primMulNat0(Succ(x0), Zero) new_lt20(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), ty_Float) new_lt15(x0, x1, x2) new_primPlusNat1(Zero, Succ(x0)) new_esEs4(Right(x0), Right(x1), x2, ty_Bool) new_compare29(x0, x1, ty_Ordering) new_compare32(x0, x1) new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_pePe(True, x0) new_esEs31(x0, x1, ty_Double) new_esEs26(x0, x1, ty_Integer) new_esEs4(Left(x0), Left(x1), ty_Bool, x2) new_ltEs19(x0, x1, ty_@0) new_esEs23(x0, x1, ty_Integer) new_esEs32(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Float) new_esEs32(x0, x1, ty_Ordering) new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) new_esEs30(x0, x1, ty_Float) new_compare111(x0, x1, False) new_esEs21(x0, x1, app(ty_Maybe, x2)) new_lt20(x0, x1, ty_@0) new_esEs29(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_@0) new_primEqNat0(Succ(x0), Succ(x1)) new_compare12(x0, x1, False, x2, x3, x4) new_primMulNat0(Zero, Zero) new_compare9(:%(x0, x1), :%(x2, x3), ty_Integer) new_lt13(x0, x1, x2, x3, x4) new_esEs7(Just(x0), Just(x1), ty_Ordering) new_ltEs5(x0, x1, app(ty_[], x2)) new_ltEs14(Just(x0), Nothing, x1) new_compare29(x0, x1, ty_Int) new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_@0, x2) new_ltEs19(x0, x1, ty_Bool) new_ltEs21(x0, x1, ty_@0) new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs7(Right(x0), Right(x1), x2, ty_Float) new_esEs4(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_ltEs5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs29(x0, x1, ty_Int) new_compare14(x0, x1, True, x2, x3) new_esEs24(x0, x1, ty_Ordering) new_ltEs7(Left(x0), Left(x1), ty_Bool, x2) new_esEs22(x0, x1, app(ty_Ratio, x2)) new_esEs32(x0, x1, ty_Int) new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_ltEs5(x0, x1, ty_Ordering) new_primCompAux0(x0, x1, x2, x3) new_esEs26(x0, x1, app(ty_[], x2)) new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) new_compare110(x0, x1, False, x2, x3) new_ltEs21(x0, x1, ty_Bool) new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs32(x0, x1, app(ty_Maybe, x2)) new_primMulNat0(Succ(x0), Succ(x1)) new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) new_esEs31(x0, x1, app(ty_[], x2)) new_ltEs5(x0, x1, app(app(ty_@2, x2), x3)) new_lt10(x0, x1, x2) new_esEs23(x0, x1, ty_Bool) new_compare29(x0, x1, ty_Double) new_ltEs21(x0, x1, app(ty_Maybe, x2)) new_esEs27(x0, x1, ty_Integer) new_compare29(x0, x1, app(app(ty_Either, x2), x3)) new_compare29(x0, x1, ty_Char) new_lt6(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Integer) new_esEs29(x0, x1, app(ty_Ratio, x2)) new_ltEs14(Nothing, Nothing, x0) new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, ty_Float) new_compare23(x0, x1, True, x2, x3, x4) new_not(True) new_esEs26(x0, x1, ty_@0) new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) new_esEs7(Just(x0), Just(x1), ty_Char) new_ltEs21(x0, x1, ty_Integer) new_primEqNat0(Succ(x0), Zero) new_primMulNat0(Zero, Succ(x0)) new_lt5(x0, x1) new_primEqInt(Neg(Zero), Neg(Succ(x0))) new_esEs11(Char(x0), Char(x1)) new_esEs8(EQ, GT) new_esEs8(GT, EQ) new_esEs21(x0, x1, app(ty_Ratio, x2)) new_esEs23(x0, x1, app(ty_Maybe, x2)) new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_Ratio, x2)) new_ltEs13(x0, x1, x2) new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) new_esEs4(Right(x0), Right(x1), x2, ty_Char) new_compare7(Double(x0, Pos(x1)), Double(x2, Neg(x3))) new_compare7(Double(x0, Neg(x1)), Double(x2, Pos(x3))) new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_esEs22(x0, x1, ty_@0) new_esEs32(x0, x1, ty_Char) new_primCompAux00(x0, GT) new_esEs22(x0, x1, ty_Float) new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs13(True, True) new_lt20(x0, x1, ty_Integer) new_ltEs8(GT, LT) new_esEs7(Just(x0), Just(x1), ty_Int) new_ltEs8(LT, GT) new_esEs15(:(x0, x1), :(x2, x3), x4) new_primPlusNat1(Succ(x0), Zero) new_ltEs19(x0, x1, ty_Integer) new_lt6(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, ty_Double) new_ltEs5(x0, x1, app(ty_Ratio, x2)) new_lt8(x0, x1, x2, x3) new_compare210(x0, x1, True) new_compare29(x0, x1, app(ty_Ratio, x2)) new_compare0(:(x0, x1), [], x2) new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) new_compare7(Double(x0, Neg(x1)), Double(x2, Neg(x3))) new_esEs4(Right(x0), Right(x1), x2, app(ty_[], x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_[], x3)) new_esEs29(x0, x1, ty_Char) new_compare18(@0, @0) new_ltEs7(Left(x0), Left(x1), ty_Ordering, x2) new_sr(x0, x1) new_compare0(:(x0, x1), :(x2, x3), x4) new_esEs26(x0, x1, ty_Bool) new_esEs31(x0, x1, ty_Ordering) new_esEs29(x0, x1, ty_Bool) new_lt20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Float, x2) new_esEs24(x0, x1, app(ty_[], x2)) new_compare110(x0, x1, True, x2, x3) new_ltEs7(Left(x0), Left(x1), ty_Integer, x2) new_esEs30(x0, x1, app(ty_Ratio, x2)) new_primMulInt(Pos(x0), Pos(x1)) new_primCmpInt(Pos(Zero), Pos(Succ(x0))) new_primCmpInt(Pos(Zero), Pos(Zero)) new_ltEs7(Left(x0), Left(x1), app(ty_Ratio, x2), x3) new_primCmpNat0(Succ(x0), Zero) new_esEs9(x0, x1, app(ty_[], x2)) new_primPlusNat0(Succ(x0), x1) new_compare111(x0, x1, True) new_esEs32(x0, x1, ty_Bool) new_esEs4(Left(x0), Left(x1), app(ty_[], x2), x3) new_esEs25(x0, x1, ty_Char) new_esEs4(Left(x0), Left(x1), ty_Ordering, x2) new_ltEs14(Just(x0), Just(x1), ty_Bool) new_esEs20(x0, x1, ty_Integer) new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_lt20(x0, x1, ty_Double) new_esEs21(x0, x1, ty_Bool) new_ltEs20(x0, x1, ty_Double) new_esEs9(x0, x1, ty_Ordering) new_esEs4(Right(x0), Right(x1), x2, ty_Ordering) new_pePe(False, x0) new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) new_esEs25(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, ty_Double) new_esEs23(x0, x1, ty_Int) new_ltEs19(x0, x1, ty_Double) new_lt20(x0, x1, ty_Ordering) new_esEs9(x0, x1, ty_Double) new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) new_compare29(x0, x1, ty_@0) new_ltEs15(x0, x1) new_esEs24(x0, x1, ty_@0) new_compare26(Right(x0), Right(x1), False, x2, x3) new_esEs24(x0, x1, app(ty_Maybe, x2)) new_esEs10(x0, x1, ty_Ordering) new_ltEs9(x0, x1, x2) new_compare10(x0, x1, True, x2, x3) new_ltEs7(Right(x0), Right(x1), x2, ty_Bool) new_esEs23(x0, x1, ty_Char) new_ltEs20(x0, x1, ty_Float) new_compare17(x0, x1, False) new_esEs31(x0, x1, app(ty_Ratio, x2)) new_esEs8(LT, GT) new_esEs8(GT, LT) new_esEs4(Left(x0), Left(x1), ty_Int, x2) new_esEs4(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs5(x0, x1, app(app(ty_Either, x2), x3)) new_esEs29(x0, x1, app(ty_Maybe, x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_primMulInt(Neg(x0), Neg(x1)) new_primMulInt(Pos(x0), Neg(x1)) new_primMulInt(Neg(x0), Pos(x1)) new_esEs15([], :(x0, x1), x2) new_ltEs7(Right(x0), Right(x1), x2, ty_Integer) new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_Double, x2) new_esEs25(x0, x1, ty_Int) new_compare210(x0, x1, False) new_lt7(x0, x1, app(ty_Maybe, x2)) new_lt17(x0, x1) new_ltEs7(Left(x0), Left(x1), app(ty_Maybe, x2), x3) new_primEqInt(Pos(Zero), Pos(Succ(x0))) new_esEs9(x0, x1, app(ty_Ratio, x2)) new_esEs21(x0, x1, ty_Integer) new_ltEs19(x0, x1, app(ty_[], x2)) new_ltEs7(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) new_lt9(x0, x1) new_esEs32(x0, x1, ty_@0) new_ltEs7(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) new_esEs4(Left(x0), Left(x1), ty_Char, x2) new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) new_esEs26(x0, x1, ty_Ordering) new_primCmpInt(Neg(Succ(x0)), Neg(x1)) new_esEs18(@0, @0) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) new_ltEs11(False, False) new_esEs32(x0, x1, ty_Integer) new_esEs10(x0, x1, ty_Float) new_esEs30(x0, x1, app(ty_Maybe, x2)) new_ltEs14(Just(x0), Just(x1), ty_Integer) new_esEs31(x0, x1, ty_Bool) new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) new_primEqNat0(Zero, Zero) new_esEs13(False, False) new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) new_compare28(Float(x0, Pos(x1)), Float(x2, Neg(x3))) new_compare28(Float(x0, Neg(x1)), Float(x2, Pos(x3))) new_ltEs5(x0, x1, ty_Int) new_esEs31(x0, x1, ty_Char) new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) new_primEqInt(Neg(Succ(x0)), Neg(Zero)) new_not(False) new_ltEs21(x0, x1, ty_Char) new_ltEs14(Just(x0), Just(x1), ty_Char) new_compare29(x0, x1, app(app(ty_@2, x2), x3)) new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) new_ltEs8(GT, EQ) new_ltEs8(EQ, GT) new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) new_esEs25(x0, x1, ty_Bool) new_lt6(x0, x1, ty_Int) new_esEs10(x0, x1, ty_Char) new_esEs16(Float(x0, x1), Float(x2, x3)) new_lt7(x0, x1, ty_Double) new_lt7(x0, x1, ty_@0) new_asAs(False, x0) new_ltEs10(@2(x0, x1), @2(x2, x3), x4, x5) new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) new_lt7(x0, x1, app(ty_[], x2)) new_esEs4(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) new_esEs31(x0, x1, ty_Int) new_ltEs6(x0, x1) new_lt6(x0, x1, ty_Char) new_ltEs21(x0, x1, ty_Int) new_esEs27(x0, x1, ty_Int) new_compare19(x0, x1, False, x2) new_compare26(Left(x0), Left(x1), False, x2, x3) new_lt7(x0, x1, app(ty_Ratio, x2)) new_esEs20(x0, x1, ty_@0) new_esEs4(Left(x0), Right(x1), x2, x3) new_esEs4(Right(x0), Left(x1), x2, x3) new_esEs10(x0, x1, ty_Int) new_esEs5(@2(x0, x1), @2(x2, x3), x4, x5) new_compare16(x0, x1, x2, x3, x4) new_esEs25(x0, x1, ty_Ordering) new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) new_esEs20(x0, x1, app(ty_Maybe, x2)) new_esEs4(Left(x0), Left(x1), ty_Integer, x2) new_ltEs5(x0, x1, ty_Char) new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) new_esEs9(x0, x1, ty_@0) new_esEs15(:(x0, x1), [], x2) new_esEs21(x0, x1, ty_Int) new_ltEs14(Nothing, Just(x0), x1) new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) new_ltEs7(Left(x0), Left(x1), ty_@0, x2) new_lt7(x0, x1, app(app(ty_@2, x2), x3)) new_ltEs7(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) new_ltEs21(x0, x1, ty_Float) new_esEs24(x0, x1, ty_Double) new_esEs25(x0, x1, ty_Integer) new_esEs15([], [], x0) new_primEqInt(Pos(Zero), Neg(Succ(x0))) new_primEqInt(Neg(Zero), Pos(Succ(x0))) new_esEs23(x0, x1, ty_Float) new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) new_compare24(x0, x1, True, x2, x3) new_esEs31(x0, x1, ty_Float) new_compare0([], [], x0) new_lt6(x0, x1, ty_Float) new_compare27(x0, x1, False, x2) new_primCmpNat0(Zero, Zero) new_esEs21(x0, x1, ty_Char) new_lt4(x0, x1) new_ltEs5(x0, x1, ty_Bool) new_primCmpNat0(Zero, Succ(x0)) new_compare26(Right(x0), Left(x1), False, x2, x3) new_compare26(Left(x0), Right(x1), False, x2, x3) We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (33) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw32, Right(vyw33), bf, bg, bh) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_lookupFM(Branch(Right(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM22(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Right(vyw300), new_esEs31(vyw40, vyw300, be), bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_lookupFM(Branch(Left(vyw300), vyw31, vyw32, vyw33, vyw34), Right(vyw40), bc, bd, be) -> new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Left(vyw300), False, bd, be), LT), bc, bd, be) The graph contains the following edges 1 > 1, 1 > 2, 1 > 3, 1 > 4, 1 > 5, 2 > 6, 3 >= 8, 4 >= 9, 5 >= 10 *new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, False, bf, bg, bh) -> new_lookupFM12(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, new_esEs8(new_compare26(Right(vyw33), Right(vyw28), new_esEs32(vyw33, vyw28, bh), bg, bh), GT), bf, bg, bh) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_lookupFM22(vyw28, vyw29, vyw30, vyw31, vyw32, vyw33, True, bf, bg, bh) -> new_lookupFM(vyw31, Right(vyw33), bf, bg, bh) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, False, bc, bd, be) -> new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, new_esEs8(new_compare26(Right(vyw40), Left(vyw300), False, bd, be), GT), bc, bd, be) The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 6 >= 6, 8 >= 8, 9 >= 9, 10 >= 10 *new_lookupFM21(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw33, Right(vyw40), bc, bd, be) The graph contains the following edges 4 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 *new_lookupFM11(vyw300, vyw31, vyw32, vyw33, vyw34, vyw40, True, bc, bd, be) -> new_lookupFM(vyw34, Right(vyw40), bc, bd, be) The graph contains the following edges 5 >= 1, 8 >= 3, 9 >= 4, 10 >= 5 ---------------------------------------- (34) YES ---------------------------------------- (35) Obligation: Q DP problem: The TRS P consists of the following rules: new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (36) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primMulNat(Succ(vyw40100), Succ(vyw300000)) -> new_primMulNat(vyw40100, Succ(vyw300000)) The graph contains the following edges 1 > 1, 2 >= 2 ---------------------------------------- (37) YES ---------------------------------------- (38) Obligation: Q DP problem: The TRS P consists of the following rules: new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (39) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primEqNat(Succ(vyw4000), Succ(vyw30000)) -> new_primEqNat(vyw4000, vyw30000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (40) YES ---------------------------------------- (41) Obligation: Q DP problem: The TRS P consists of the following rules: new_primPlusNat(Succ(vyw14000), Succ(vyw3000000)) -> new_primPlusNat(vyw14000, vyw3000000) R is empty. Q is empty. We have to consider all minimal (P,Q,R)-chains. ---------------------------------------- (42) QDPSizeChangeProof (EQUIVALENT) By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. From the DPs we obtained the following set of size-change graphs: *new_primPlusNat(Succ(vyw14000), Succ(vyw3000000)) -> new_primPlusNat(vyw14000, vyw3000000) The graph contains the following edges 1 > 1, 2 > 2 ---------------------------------------- (43) YES