22.74/9.68 YES 26.01/10.57 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 26.01/10.57 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 26.01/10.57 26.01/10.57 26.01/10.57 H-Termination with start terms of the given HASKELL could be proven: 26.01/10.57 26.01/10.57 (0) HASKELL 26.01/10.57 (1) LR [EQUIVALENT, 0 ms] 26.01/10.57 (2) HASKELL 26.01/10.57 (3) CR [EQUIVALENT, 0 ms] 26.01/10.57 (4) HASKELL 26.01/10.57 (5) IFR [EQUIVALENT, 0 ms] 26.01/10.57 (6) HASKELL 26.01/10.57 (7) BR [EQUIVALENT, 0 ms] 26.01/10.57 (8) HASKELL 26.01/10.57 (9) COR [EQUIVALENT, 4 ms] 26.01/10.57 (10) HASKELL 26.01/10.57 (11) LetRed [EQUIVALENT, 0 ms] 26.01/10.57 (12) HASKELL 26.01/10.57 (13) NumRed [SOUND, 10 ms] 26.01/10.57 (14) HASKELL 26.01/10.57 (15) Narrow [SOUND, 0 ms] 26.01/10.57 (16) AND 26.01/10.57 (17) QDP 26.01/10.57 (18) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.01/10.57 (19) YES 26.01/10.57 (20) QDP 26.01/10.57 (21) QDPSizeChangeProof [EQUIVALENT, 15 ms] 26.01/10.57 (22) YES 26.01/10.57 (23) QDP 26.01/10.57 (24) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.01/10.57 (25) YES 26.01/10.57 (26) QDP 26.01/10.57 (27) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.01/10.57 (28) YES 26.01/10.57 (29) QDP 26.01/10.57 (30) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.01/10.57 (31) YES 26.01/10.57 (32) QDP 26.01/10.57 (33) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.01/10.57 (34) YES 26.01/10.57 (35) QDP 26.01/10.57 (36) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.01/10.57 (37) YES 26.01/10.57 26.01/10.57 26.01/10.57 ---------------------------------------- 26.01/10.57 26.01/10.57 (0) 26.01/10.57 Obligation: 26.01/10.57 mainModule Main 26.01/10.57 module FiniteMap where { 26.01/10.57 import qualified Main; 26.01/10.57 import qualified Maybe; 26.01/10.57 import qualified Prelude; 26.01/10.57 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.01/10.57 26.01/10.57 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.01/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.01/10.57 } 26.01/10.57 fmToList :: FiniteMap b a -> [(b,a)]; 26.01/10.57 fmToList fm = foldFM (\key elt rest ->(key,elt) : rest) [] fm; 26.01/10.57 26.01/10.57 foldFM :: (c -> a -> b -> b) -> b -> FiniteMap c a -> b; 26.01/10.57 foldFM k z EmptyFM = z; 26.01/10.57 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.01/10.57 26.01/10.57 foldFM_GE :: Ord c => (c -> a -> b -> b) -> b -> c -> FiniteMap c a -> b; 26.01/10.57 foldFM_GE k z fr EmptyFM = z; 26.01/10.57 foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l 26.01/10.57 | otherwise = foldFM_GE k z fr fm_r; 26.01/10.57 26.01/10.57 sizeFM :: FiniteMap a b -> Int; 26.01/10.57 sizeFM EmptyFM = 0; 26.01/10.57 sizeFM (Branch _ _ size _ _) = size; 26.01/10.57 26.01/10.57 } 26.01/10.57 module Maybe where { 26.01/10.57 import qualified FiniteMap; 26.01/10.57 import qualified Main; 26.01/10.57 import qualified Prelude; 26.01/10.57 } 26.01/10.57 module Main where { 26.01/10.57 import qualified FiniteMap; 26.01/10.57 import qualified Maybe; 26.01/10.57 import qualified Prelude; 26.01/10.57 } 26.01/10.57 26.01/10.57 ---------------------------------------- 26.01/10.57 26.01/10.57 (1) LR (EQUIVALENT) 26.01/10.57 Lambda Reductions: 26.01/10.57 The following Lambda expression 26.01/10.57 "\keyeltrest->(key,elt) : rest" 26.01/10.57 is transformed to 26.01/10.57 "fmToList0 key elt rest = (key,elt) : rest; 26.01/10.57 " 26.01/10.57 26.01/10.57 ---------------------------------------- 26.01/10.57 26.01/10.57 (2) 26.01/10.57 Obligation: 26.01/10.57 mainModule Main 26.01/10.57 module FiniteMap where { 26.01/10.57 import qualified Main; 26.01/10.57 import qualified Maybe; 26.01/10.57 import qualified Prelude; 26.01/10.57 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.01/10.57 26.01/10.57 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.01/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.01/10.57 } 26.01/10.57 fmToList :: FiniteMap a b -> [(a,b)]; 26.01/10.57 fmToList fm = foldFM fmToList0 [] fm; 26.01/10.57 26.01/10.57 fmToList0 key elt rest = (key,elt) : rest; 26.21/10.57 26.21/10.57 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 26.21/10.57 foldFM k z EmptyFM = z; 26.21/10.57 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/10.57 26.21/10.57 foldFM_GE :: Ord c => (c -> b -> a -> a) -> a -> c -> FiniteMap c b -> a; 26.21/10.57 foldFM_GE k z fr EmptyFM = z; 26.21/10.57 foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l 26.21/10.57 | otherwise = foldFM_GE k z fr fm_r; 26.21/10.57 26.21/10.57 sizeFM :: FiniteMap a b -> Int; 26.21/10.57 sizeFM EmptyFM = 0; 26.21/10.57 sizeFM (Branch _ _ size _ _) = size; 26.21/10.57 26.21/10.57 } 26.21/10.57 module Maybe where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 module Main where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (3) CR (EQUIVALENT) 26.21/10.57 Case Reductions: 26.21/10.57 The following Case expression 26.21/10.57 "case compare x y of { 26.21/10.57 EQ -> o; 26.21/10.57 LT -> LT; 26.21/10.57 GT -> GT} 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "primCompAux0 o EQ = o; 26.21/10.57 primCompAux0 o LT = LT; 26.21/10.57 primCompAux0 o GT = GT; 26.21/10.57 " 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (4) 26.21/10.57 Obligation: 26.21/10.57 mainModule Main 26.21/10.57 module FiniteMap where { 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.21/10.57 26.21/10.57 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.21/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/10.57 } 26.21/10.57 fmToList :: FiniteMap a b -> [(a,b)]; 26.21/10.57 fmToList fm = foldFM fmToList0 [] fm; 26.21/10.57 26.21/10.57 fmToList0 key elt rest = (key,elt) : rest; 26.21/10.57 26.21/10.57 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 26.21/10.57 foldFM k z EmptyFM = z; 26.21/10.57 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/10.57 26.21/10.57 foldFM_GE :: Ord b => (b -> a -> c -> c) -> c -> b -> FiniteMap b a -> c; 26.21/10.57 foldFM_GE k z fr EmptyFM = z; 26.21/10.57 foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l 26.21/10.57 | otherwise = foldFM_GE k z fr fm_r; 26.21/10.57 26.21/10.57 sizeFM :: FiniteMap a b -> Int; 26.21/10.57 sizeFM EmptyFM = 0; 26.21/10.57 sizeFM (Branch _ _ size _ _) = size; 26.21/10.57 26.21/10.57 } 26.21/10.57 module Maybe where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 module Main where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (5) IFR (EQUIVALENT) 26.21/10.57 If Reductions: 26.21/10.57 The following If expression 26.21/10.57 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 26.21/10.57 is transformed to 26.21/10.57 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 26.21/10.57 primDivNatS0 x y False = Zero; 26.21/10.57 " 26.21/10.57 The following If expression 26.21/10.57 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 26.21/10.57 is transformed to 26.21/10.57 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 26.21/10.57 primModNatS0 x y False = Succ x; 26.21/10.57 " 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (6) 26.21/10.57 Obligation: 26.21/10.57 mainModule Main 26.21/10.57 module FiniteMap where { 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.21/10.57 26.21/10.57 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.21/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/10.57 } 26.21/10.57 fmToList :: FiniteMap b a -> [(b,a)]; 26.21/10.57 fmToList fm = foldFM fmToList0 [] fm; 26.21/10.57 26.21/10.57 fmToList0 key elt rest = (key,elt) : rest; 26.21/10.57 26.21/10.57 foldFM :: (b -> a -> c -> c) -> c -> FiniteMap b a -> c; 26.21/10.57 foldFM k z EmptyFM = z; 26.21/10.57 foldFM k z (Branch key elt _ fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/10.57 26.21/10.57 foldFM_GE :: Ord a => (a -> c -> b -> b) -> b -> a -> FiniteMap a c -> b; 26.21/10.57 foldFM_GE k z fr EmptyFM = z; 26.21/10.57 foldFM_GE k z fr (Branch key elt _ fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l 26.21/10.57 | otherwise = foldFM_GE k z fr fm_r; 26.21/10.57 26.21/10.57 sizeFM :: FiniteMap a b -> Int; 26.21/10.57 sizeFM EmptyFM = 0; 26.21/10.57 sizeFM (Branch _ _ size _ _) = size; 26.21/10.57 26.21/10.57 } 26.21/10.57 module Maybe where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 module Main where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (7) BR (EQUIVALENT) 26.21/10.57 Replaced joker patterns by fresh variables and removed binding patterns. 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (8) 26.21/10.57 Obligation: 26.21/10.57 mainModule Main 26.21/10.57 module FiniteMap where { 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.21/10.57 26.21/10.57 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.21/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/10.57 } 26.21/10.57 fmToList :: FiniteMap a b -> [(a,b)]; 26.21/10.57 fmToList fm = foldFM fmToList0 [] fm; 26.21/10.57 26.21/10.57 fmToList0 key elt rest = (key,elt) : rest; 26.21/10.57 26.21/10.57 foldFM :: (a -> b -> c -> c) -> c -> FiniteMap a b -> c; 26.21/10.57 foldFM k z EmptyFM = z; 26.21/10.57 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/10.57 26.21/10.57 foldFM_GE :: Ord b => (b -> c -> a -> a) -> a -> b -> FiniteMap b c -> a; 26.21/10.57 foldFM_GE k z fr EmptyFM = z; 26.21/10.57 foldFM_GE k z fr (Branch key elt vux fm_l fm_r) | key >= fr = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l 26.21/10.57 | otherwise = foldFM_GE k z fr fm_r; 26.21/10.57 26.21/10.57 sizeFM :: FiniteMap a b -> Int; 26.21/10.57 sizeFM EmptyFM = 0; 26.21/10.57 sizeFM (Branch zz vuu size vuv vuw) = size; 26.21/10.57 26.21/10.57 } 26.21/10.57 module Maybe where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 module Main where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (9) COR (EQUIVALENT) 26.21/10.57 Cond Reductions: 26.21/10.57 The following Function with conditions 26.21/10.57 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "compare x y = compare3 x y; 26.21/10.57 " 26.21/10.57 "compare1 x y True = LT; 26.21/10.57 compare1 x y False = compare0 x y otherwise; 26.21/10.57 " 26.21/10.57 "compare2 x y True = EQ; 26.21/10.57 compare2 x y False = compare1 x y (x <= y); 26.21/10.57 " 26.21/10.57 "compare0 x y True = GT; 26.21/10.57 " 26.21/10.57 "compare3 x y = compare2 x y (x == y); 26.21/10.57 " 26.21/10.57 The following Function with conditions 26.21/10.57 "absReal x|x >= 0x|otherwise`negate` x; 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "absReal x = absReal2 x; 26.21/10.57 " 26.21/10.57 "absReal0 x True = `negate` x; 26.21/10.57 " 26.21/10.57 "absReal1 x True = x; 26.21/10.57 absReal1 x False = absReal0 x otherwise; 26.21/10.57 " 26.21/10.57 "absReal2 x = absReal1 x (x >= 0); 26.21/10.57 " 26.21/10.57 The following Function with conditions 26.21/10.57 "gcd' x 0 = x; 26.21/10.57 gcd' x y = gcd' y (x `rem` y); 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "gcd' x vuy = gcd'2 x vuy; 26.21/10.57 gcd' x y = gcd'0 x y; 26.21/10.57 " 26.21/10.57 "gcd'0 x y = gcd' y (x `rem` y); 26.21/10.57 " 26.21/10.57 "gcd'1 True x vuy = x; 26.21/10.57 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 26.21/10.57 " 26.21/10.57 "gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 26.21/10.57 gcd'2 vvw vvx = gcd'0 vvw vvx; 26.21/10.57 " 26.21/10.57 The following Function with conditions 26.21/10.57 "gcd 0 0 = error []; 26.21/10.57 gcd x y = gcd' (abs x) (abs y) where { 26.21/10.57 gcd' x 0 = x; 26.21/10.57 gcd' x y = gcd' y (x `rem` y); 26.21/10.57 } 26.21/10.57 ; 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "gcd vvy vvz = gcd3 vvy vvz; 26.21/10.57 gcd x y = gcd0 x y; 26.21/10.57 " 26.21/10.57 "gcd0 x y = gcd' (abs x) (abs y) where { 26.21/10.57 gcd' x vuy = gcd'2 x vuy; 26.21/10.57 gcd' x y = gcd'0 x y; 26.21/10.57 ; 26.21/10.57 gcd'0 x y = gcd' y (x `rem` y); 26.21/10.57 ; 26.21/10.57 gcd'1 True x vuy = x; 26.21/10.57 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 26.21/10.57 ; 26.21/10.57 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 26.21/10.57 gcd'2 vvw vvx = gcd'0 vvw vvx; 26.21/10.57 } 26.21/10.57 ; 26.21/10.57 " 26.21/10.57 "gcd1 True vvy vvz = error []; 26.21/10.57 gcd1 vwu vwv vww = gcd0 vwv vww; 26.21/10.57 " 26.21/10.57 "gcd2 True vvy vvz = gcd1 (vvz == 0) vvy vvz; 26.21/10.57 gcd2 vwx vwy vwz = gcd0 vwy vwz; 26.21/10.57 " 26.21/10.57 "gcd3 vvy vvz = gcd2 (vvy == 0) vvy vvz; 26.21/10.57 gcd3 vxu vxv = gcd0 vxu vxv; 26.21/10.57 " 26.21/10.57 The following Function with conditions 26.21/10.57 "undefined |Falseundefined; 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "undefined = undefined1; 26.21/10.57 " 26.21/10.57 "undefined0 True = undefined; 26.21/10.57 " 26.21/10.57 "undefined1 = undefined0 False; 26.21/10.57 " 26.21/10.57 The following Function with conditions 26.21/10.57 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 26.21/10.57 d = gcd x y; 26.21/10.57 } 26.21/10.57 ; 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "reduce x y = reduce2 x y; 26.21/10.57 " 26.21/10.57 "reduce2 x y = reduce1 x y (y == 0) where { 26.21/10.57 d = gcd x y; 26.21/10.57 ; 26.21/10.57 reduce0 x y True = x `quot` d :% (y `quot` d); 26.21/10.57 ; 26.21/10.57 reduce1 x y True = error []; 26.21/10.57 reduce1 x y False = reduce0 x y otherwise; 26.21/10.57 } 26.21/10.57 ; 26.21/10.57 " 26.21/10.57 The following Function with conditions 26.21/10.57 "foldFM_GE k z fr EmptyFM = z; 26.21/10.57 foldFM_GE k z fr (Branch key elt vux fm_l fm_r)|key >= frfoldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l|otherwisefoldFM_GE k z fr fm_r; 26.21/10.57 " 26.21/10.57 is transformed to 26.21/10.57 "foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; 26.21/10.57 foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); 26.21/10.57 " 26.21/10.57 "foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; 26.21/10.57 foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; 26.21/10.57 " 26.21/10.57 "foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; 26.21/10.57 " 26.21/10.57 "foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); 26.21/10.57 " 26.21/10.57 "foldFM_GE3 k z fr EmptyFM = z; 26.21/10.57 foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; 26.21/10.57 " 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (10) 26.21/10.57 Obligation: 26.21/10.57 mainModule Main 26.21/10.57 module FiniteMap where { 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 data FiniteMap a b = EmptyFM | Branch a b Int (FiniteMap a b) (FiniteMap a b) ; 26.21/10.57 26.21/10.57 instance (Eq a, Eq b) => Eq FiniteMap b a where { 26.21/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/10.57 } 26.21/10.57 fmToList :: FiniteMap b a -> [(b,a)]; 26.21/10.57 fmToList fm = foldFM fmToList0 [] fm; 26.21/10.57 26.21/10.57 fmToList0 key elt rest = (key,elt) : rest; 26.21/10.57 26.21/10.57 foldFM :: (a -> c -> b -> b) -> b -> FiniteMap a c -> b; 26.21/10.57 foldFM k z EmptyFM = z; 26.21/10.57 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/10.57 26.21/10.57 foldFM_GE :: Ord b => (b -> a -> c -> c) -> c -> b -> FiniteMap b a -> c; 26.21/10.57 foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; 26.21/10.57 foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); 26.21/10.57 26.21/10.57 foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; 26.21/10.57 26.21/10.57 foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; 26.21/10.57 foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; 26.21/10.57 26.21/10.57 foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); 26.21/10.57 26.21/10.57 foldFM_GE3 k z fr EmptyFM = z; 26.21/10.57 foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; 26.21/10.57 26.21/10.57 sizeFM :: FiniteMap a b -> Int; 26.21/10.57 sizeFM EmptyFM = 0; 26.21/10.57 sizeFM (Branch zz vuu size vuv vuw) = size; 26.21/10.57 26.21/10.57 } 26.21/10.57 module Maybe where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 module Main where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (11) LetRed (EQUIVALENT) 26.21/10.57 Let/Where Reductions: 26.21/10.57 The bindings of the following Let/Where expression 26.21/10.57 "gcd' (abs x) (abs y) where { 26.21/10.57 gcd' x vuy = gcd'2 x vuy; 26.21/10.57 gcd' x y = gcd'0 x y; 26.21/10.57 ; 26.21/10.57 gcd'0 x y = gcd' y (x `rem` y); 26.21/10.57 ; 26.21/10.57 gcd'1 True x vuy = x; 26.21/10.57 gcd'1 vuz vvu vvv = gcd'0 vvu vvv; 26.21/10.57 ; 26.21/10.57 gcd'2 x vuy = gcd'1 (vuy == 0) x vuy; 26.21/10.57 gcd'2 vvw vvx = gcd'0 vvw vvx; 26.21/10.57 } 26.21/10.57 " 26.21/10.57 are unpacked to the following functions on top level 26.21/10.57 "gcd0Gcd' x vuy = gcd0Gcd'2 x vuy; 26.21/10.57 gcd0Gcd' x y = gcd0Gcd'0 x y; 26.21/10.57 " 26.21/10.57 "gcd0Gcd'2 x vuy = gcd0Gcd'1 (vuy == 0) x vuy; 26.21/10.57 gcd0Gcd'2 vvw vvx = gcd0Gcd'0 vvw vvx; 26.21/10.57 " 26.21/10.57 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 26.21/10.57 " 26.21/10.57 "gcd0Gcd'1 True x vuy = x; 26.21/10.57 gcd0Gcd'1 vuz vvu vvv = gcd0Gcd'0 vvu vvv; 26.21/10.57 " 26.21/10.57 The bindings of the following Let/Where expression 26.21/10.57 "reduce1 x y (y == 0) where { 26.21/10.57 d = gcd x y; 26.21/10.57 ; 26.21/10.57 reduce0 x y True = x `quot` d :% (y `quot` d); 26.21/10.57 ; 26.21/10.57 reduce1 x y True = error []; 26.21/10.57 reduce1 x y False = reduce0 x y otherwise; 26.21/10.57 } 26.21/10.57 " 26.21/10.57 are unpacked to the following functions on top level 26.21/10.57 "reduce2D vyw vyx = gcd vyw vyx; 26.21/10.57 " 26.21/10.57 "reduce2Reduce1 vyw vyx x y True = error []; 26.21/10.57 reduce2Reduce1 vyw vyx x y False = reduce2Reduce0 vyw vyx x y otherwise; 26.21/10.57 " 26.21/10.57 "reduce2Reduce0 vyw vyx x y True = x `quot` reduce2D vyw vyx :% (y `quot` reduce2D vyw vyx); 26.21/10.57 " 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (12) 26.21/10.57 Obligation: 26.21/10.57 mainModule Main 26.21/10.57 module FiniteMap where { 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.21/10.57 26.21/10.57 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.21/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/10.57 } 26.21/10.57 fmToList :: FiniteMap a b -> [(a,b)]; 26.21/10.57 fmToList fm = foldFM fmToList0 [] fm; 26.21/10.57 26.21/10.57 fmToList0 key elt rest = (key,elt) : rest; 26.21/10.57 26.21/10.57 foldFM :: (b -> c -> a -> a) -> a -> FiniteMap b c -> a; 26.21/10.57 foldFM k z EmptyFM = z; 26.21/10.57 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/10.57 26.21/10.57 foldFM_GE :: Ord a => (a -> b -> c -> c) -> c -> a -> FiniteMap a b -> c; 26.21/10.57 foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; 26.21/10.57 foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); 26.21/10.57 26.21/10.57 foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; 26.21/10.57 26.21/10.57 foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; 26.21/10.57 foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; 26.21/10.57 26.21/10.57 foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); 26.21/10.57 26.21/10.57 foldFM_GE3 k z fr EmptyFM = z; 26.21/10.57 foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; 26.21/10.57 26.21/10.57 sizeFM :: FiniteMap a b -> Int; 26.21/10.57 sizeFM EmptyFM = 0; 26.21/10.57 sizeFM (Branch zz vuu size vuv vuw) = size; 26.21/10.57 26.21/10.57 } 26.21/10.57 module Maybe where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 module Main where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (13) NumRed (SOUND) 26.21/10.57 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (14) 26.21/10.57 Obligation: 26.21/10.57 mainModule Main 26.21/10.57 module FiniteMap where { 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 data FiniteMap b a = EmptyFM | Branch b a Int (FiniteMap b a) (FiniteMap b a) ; 26.21/10.57 26.21/10.57 instance (Eq a, Eq b) => Eq FiniteMap a b where { 26.21/10.57 (==) fm_1 fm_2 = sizeFM fm_1 == sizeFM fm_2 && fmToList fm_1 == fmToList fm_2; 26.21/10.57 } 26.21/10.57 fmToList :: FiniteMap a b -> [(a,b)]; 26.21/10.57 fmToList fm = foldFM fmToList0 [] fm; 26.21/10.57 26.21/10.57 fmToList0 key elt rest = (key,elt) : rest; 26.21/10.57 26.21/10.57 foldFM :: (c -> b -> a -> a) -> a -> FiniteMap c b -> a; 26.21/10.57 foldFM k z EmptyFM = z; 26.21/10.57 foldFM k z (Branch key elt zy fm_l fm_r) = foldFM k (k key elt (foldFM k z fm_r)) fm_l; 26.21/10.57 26.21/10.57 foldFM_GE :: Ord a => (a -> c -> b -> b) -> b -> a -> FiniteMap a c -> b; 26.21/10.57 foldFM_GE k z fr EmptyFM = foldFM_GE3 k z fr EmptyFM; 26.21/10.57 foldFM_GE k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r); 26.21/10.57 26.21/10.57 foldFM_GE0 k z fr key elt vux fm_l fm_r True = foldFM_GE k z fr fm_r; 26.21/10.57 26.21/10.57 foldFM_GE1 k z fr key elt vux fm_l fm_r True = foldFM_GE k (k key elt (foldFM_GE k z fr fm_r)) fr fm_l; 26.21/10.57 foldFM_GE1 k z fr key elt vux fm_l fm_r False = foldFM_GE0 k z fr key elt vux fm_l fm_r otherwise; 26.21/10.57 26.21/10.57 foldFM_GE2 k z fr (Branch key elt vux fm_l fm_r) = foldFM_GE1 k z fr key elt vux fm_l fm_r (key >= fr); 26.21/10.57 26.21/10.57 foldFM_GE3 k z fr EmptyFM = z; 26.21/10.57 foldFM_GE3 vxy vxz vyu vyv = foldFM_GE2 vxy vxz vyu vyv; 26.21/10.57 26.21/10.57 sizeFM :: FiniteMap b a -> Int; 26.21/10.57 sizeFM EmptyFM = Pos Zero; 26.21/10.57 sizeFM (Branch zz vuu size vuv vuw) = size; 26.21/10.57 26.21/10.57 } 26.21/10.57 module Maybe where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Main; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 module Main where { 26.21/10.57 import qualified FiniteMap; 26.21/10.57 import qualified Maybe; 26.21/10.57 import qualified Prelude; 26.21/10.57 } 26.21/10.57 26.21/10.57 ---------------------------------------- 26.21/10.57 26.21/10.57 (15) Narrow (SOUND) 26.21/10.57 Haskell To QDPs 26.21/10.57 26.21/10.57 digraph dp_graph { 26.21/10.57 node [outthreshold=100, inthreshold=100];1[label="FiniteMap.foldFM_GE",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 26.21/10.57 3[label="FiniteMap.foldFM_GE vyy3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 26.21/10.57 4[label="FiniteMap.foldFM_GE vyy3 vyy4",fontsize=16,color="grey",shape="box"];4 -> 5[label="",style="dashed", color="grey", weight=3]; 26.21/10.57 5[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5",fontsize=16,color="grey",shape="box"];5 -> 6[label="",style="dashed", color="grey", weight=3]; 26.21/10.57 6[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5 vyy6",fontsize=16,color="burlywood",shape="triangle"];2356[label="vyy6/FiniteMap.EmptyFM",fontsize=10,color="white",style="solid",shape="box"];6 -> 2356[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2356 -> 7[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2357[label="vyy6/FiniteMap.Branch vyy60 vyy61 vyy62 vyy63 vyy64",fontsize=10,color="white",style="solid",shape="box"];6 -> 2357[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2357 -> 8[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 7[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 26.21/10.57 8[label="FiniteMap.foldFM_GE vyy3 vyy4 vyy5 (FiniteMap.Branch vyy60 vyy61 vyy62 vyy63 vyy64)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 26.21/10.57 9[label="FiniteMap.foldFM_GE3 vyy3 vyy4 vyy5 FiniteMap.EmptyFM",fontsize=16,color="black",shape="box"];9 -> 11[label="",style="solid", color="black", weight=3]; 26.21/10.57 10[label="FiniteMap.foldFM_GE2 vyy3 vyy4 vyy5 (FiniteMap.Branch vyy60 vyy61 vyy62 vyy63 vyy64)",fontsize=16,color="black",shape="box"];10 -> 12[label="",style="solid", color="black", weight=3]; 26.21/10.57 11[label="vyy4",fontsize=16,color="green",shape="box"];12[label="FiniteMap.foldFM_GE1 vyy3 vyy4 vyy5 vyy60 vyy61 vyy62 vyy63 vyy64 (vyy60 >= vyy5)",fontsize=16,color="black",shape="box"];12 -> 13[label="",style="solid", color="black", weight=3]; 26.21/10.57 13[label="FiniteMap.foldFM_GE1 vyy3 vyy4 vyy5 vyy60 vyy61 vyy62 vyy63 vyy64 (compare vyy60 vyy5 /= LT)",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 26.21/10.57 14[label="FiniteMap.foldFM_GE1 vyy3 vyy4 vyy5 vyy60 vyy61 vyy62 vyy63 vyy64 (not (compare vyy60 vyy5 == LT))",fontsize=16,color="black",shape="box"];14 -> 15[label="",style="solid", color="black", weight=3]; 26.21/10.57 15[label="FiniteMap.foldFM_GE1 vyy3 vyy4 vyy5 vyy60 vyy61 vyy62 vyy63 vyy64 (not (compare3 vyy60 vyy5 == LT))",fontsize=16,color="black",shape="box"];15 -> 16[label="",style="solid", color="black", weight=3]; 26.21/10.57 16[label="FiniteMap.foldFM_GE1 vyy3 vyy4 vyy5 vyy60 vyy61 vyy62 vyy63 vyy64 (not (compare2 vyy60 vyy5 (vyy60 == vyy5) == LT))",fontsize=16,color="burlywood",shape="box"];2358[label="vyy60/(vyy600,vyy601)",fontsize=10,color="white",style="solid",shape="box"];16 -> 2358[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2358 -> 17[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 17[label="FiniteMap.foldFM_GE1 vyy3 vyy4 vyy5 (vyy600,vyy601) vyy61 vyy62 vyy63 vyy64 (not (compare2 (vyy600,vyy601) vyy5 ((vyy600,vyy601) == vyy5) == LT))",fontsize=16,color="burlywood",shape="box"];2359[label="vyy5/(vyy50,vyy51)",fontsize=10,color="white",style="solid",shape="box"];17 -> 2359[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2359 -> 18[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 18[label="FiniteMap.foldFM_GE1 vyy3 vyy4 (vyy50,vyy51) (vyy600,vyy601) vyy61 vyy62 vyy63 vyy64 (not (compare2 (vyy600,vyy601) (vyy50,vyy51) ((vyy600,vyy601) == (vyy50,vyy51)) == LT))",fontsize=16,color="black",shape="box"];18 -> 19[label="",style="solid", color="black", weight=3]; 26.21/10.57 19 -> 105[label="",style="dashed", color="red", weight=0]; 26.21/10.57 19[label="FiniteMap.foldFM_GE1 vyy3 vyy4 (vyy50,vyy51) (vyy600,vyy601) vyy61 vyy62 vyy63 vyy64 (not (compare2 (vyy600,vyy601) (vyy50,vyy51) (vyy600 == vyy50 && vyy601 == vyy51) == LT))",fontsize=16,color="magenta"];19 -> 106[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 107[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 108[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 109[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 110[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 111[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 112[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 113[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 114[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 115[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 19 -> 116[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 106[label="vyy51",fontsize=16,color="green",shape="box"];107[label="vyy600",fontsize=16,color="green",shape="box"];108[label="vyy601",fontsize=16,color="green",shape="box"];109[label="vyy61",fontsize=16,color="green",shape="box"];110 -> 120[label="",style="dashed", color="red", weight=0]; 26.21/10.57 110[label="compare2 (vyy600,vyy601) (vyy50,vyy51) (vyy600 == vyy50 && vyy601 == vyy51) == LT",fontsize=16,color="magenta"];110 -> 121[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 110 -> 122[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 110 -> 123[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 110 -> 124[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 110 -> 125[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 111[label="vyy50",fontsize=16,color="green",shape="box"];112[label="vyy3",fontsize=16,color="green",shape="box"];113[label="vyy4",fontsize=16,color="green",shape="box"];114[label="vyy62",fontsize=16,color="green",shape="box"];115[label="vyy64",fontsize=16,color="green",shape="box"];116[label="vyy63",fontsize=16,color="green",shape="box"];105[label="FiniteMap.foldFM_GE1 vyy19 vyy20 (vyy21,vyy22) (vyy23,vyy24) vyy25 vyy26 vyy27 vyy28 (not vyy30)",fontsize=16,color="burlywood",shape="triangle"];2360[label="vyy30/False",fontsize=10,color="white",style="solid",shape="box"];105 -> 2360[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2360 -> 126[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2361[label="vyy30/True",fontsize=10,color="white",style="solid",shape="box"];105 -> 2361[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2361 -> 127[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 121[label="vyy50",fontsize=16,color="green",shape="box"];122[label="vyy601",fontsize=16,color="green",shape="box"];123[label="vyy600",fontsize=16,color="green",shape="box"];124[label="vyy600 == vyy50",fontsize=16,color="blue",shape="box"];2362[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2362[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2362 -> 128[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2363[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2363[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2363 -> 129[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2364[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2364[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2364 -> 130[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2365[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2365[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2365 -> 131[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2366[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2366[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2366 -> 132[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2367[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2367[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2367 -> 133[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2368[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2368[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2368 -> 134[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2369[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2369[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2369 -> 135[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2370[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2370[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2370 -> 136[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2371[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2371[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2371 -> 137[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2372[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2372[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2372 -> 138[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2373[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2373[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2373 -> 139[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2374[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2374[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2374 -> 140[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2375[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];124 -> 2375[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2375 -> 141[label="",style="solid", color="blue", weight=3]; 26.21/10.57 125[label="vyy51",fontsize=16,color="green",shape="box"];120[label="compare2 (vyy37,vyy38) (vyy39,vyy40) (vyy41 && vyy38 == vyy40) == LT",fontsize=16,color="burlywood",shape="triangle"];2376[label="vyy41/False",fontsize=10,color="white",style="solid",shape="box"];120 -> 2376[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2376 -> 142[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2377[label="vyy41/True",fontsize=10,color="white",style="solid",shape="box"];120 -> 2377[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2377 -> 143[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 126[label="FiniteMap.foldFM_GE1 vyy19 vyy20 (vyy21,vyy22) (vyy23,vyy24) vyy25 vyy26 vyy27 vyy28 (not False)",fontsize=16,color="black",shape="box"];126 -> 144[label="",style="solid", color="black", weight=3]; 26.21/10.57 127[label="FiniteMap.foldFM_GE1 vyy19 vyy20 (vyy21,vyy22) (vyy23,vyy24) vyy25 vyy26 vyy27 vyy28 (not True)",fontsize=16,color="black",shape="box"];127 -> 145[label="",style="solid", color="black", weight=3]; 26.21/10.57 128[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2378[label="vyy600/LT",fontsize=10,color="white",style="solid",shape="box"];128 -> 2378[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2378 -> 146[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2379[label="vyy600/EQ",fontsize=10,color="white",style="solid",shape="box"];128 -> 2379[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2379 -> 147[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2380[label="vyy600/GT",fontsize=10,color="white",style="solid",shape="box"];128 -> 2380[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2380 -> 148[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 129[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2381[label="vyy600/vyy6000 : vyy6001",fontsize=10,color="white",style="solid",shape="box"];129 -> 2381[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2381 -> 149[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2382[label="vyy600/[]",fontsize=10,color="white",style="solid",shape="box"];129 -> 2382[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2382 -> 150[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 130[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];130 -> 151[label="",style="solid", color="black", weight=3]; 26.21/10.57 131[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2383[label="vyy600/Left vyy6000",fontsize=10,color="white",style="solid",shape="box"];131 -> 2383[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2383 -> 152[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2384[label="vyy600/Right vyy6000",fontsize=10,color="white",style="solid",shape="box"];131 -> 2384[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2384 -> 153[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 132[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];132 -> 154[label="",style="solid", color="black", weight=3]; 26.21/10.57 133[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];133 -> 155[label="",style="solid", color="black", weight=3]; 26.21/10.57 134[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2385[label="vyy600/Nothing",fontsize=10,color="white",style="solid",shape="box"];134 -> 2385[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2385 -> 156[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2386[label="vyy600/Just vyy6000",fontsize=10,color="white",style="solid",shape="box"];134 -> 2386[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2386 -> 157[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 135[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2387[label="vyy600/()",fontsize=10,color="white",style="solid",shape="box"];135 -> 2387[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2387 -> 158[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 136[label="vyy600 == vyy50",fontsize=16,color="black",shape="triangle"];136 -> 159[label="",style="solid", color="black", weight=3]; 26.21/10.57 137[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2388[label="vyy600/Integer vyy6000",fontsize=10,color="white",style="solid",shape="box"];137 -> 2388[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2388 -> 160[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 138[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2389[label="vyy600/False",fontsize=10,color="white",style="solid",shape="box"];138 -> 2389[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2389 -> 161[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2390[label="vyy600/True",fontsize=10,color="white",style="solid",shape="box"];138 -> 2390[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2390 -> 162[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 139[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2391[label="vyy600/(vyy6000,vyy6001,vyy6002)",fontsize=10,color="white",style="solid",shape="box"];139 -> 2391[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2391 -> 163[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 140[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2392[label="vyy600/(vyy6000,vyy6001)",fontsize=10,color="white",style="solid",shape="box"];140 -> 2392[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2392 -> 164[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 141[label="vyy600 == vyy50",fontsize=16,color="burlywood",shape="triangle"];2393[label="vyy600/vyy6000 :% vyy6001",fontsize=10,color="white",style="solid",shape="box"];141 -> 2393[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2393 -> 165[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 142[label="compare2 (vyy37,vyy38) (vyy39,vyy40) (False && vyy38 == vyy40) == LT",fontsize=16,color="black",shape="box"];142 -> 166[label="",style="solid", color="black", weight=3]; 26.21/10.57 143[label="compare2 (vyy37,vyy38) (vyy39,vyy40) (True && vyy38 == vyy40) == LT",fontsize=16,color="black",shape="box"];143 -> 167[label="",style="solid", color="black", weight=3]; 26.21/10.57 144[label="FiniteMap.foldFM_GE1 vyy19 vyy20 (vyy21,vyy22) (vyy23,vyy24) vyy25 vyy26 vyy27 vyy28 True",fontsize=16,color="black",shape="box"];144 -> 168[label="",style="solid", color="black", weight=3]; 26.21/10.57 145[label="FiniteMap.foldFM_GE1 vyy19 vyy20 (vyy21,vyy22) (vyy23,vyy24) vyy25 vyy26 vyy27 vyy28 False",fontsize=16,color="black",shape="box"];145 -> 169[label="",style="solid", color="black", weight=3]; 26.21/10.57 146[label="LT == vyy50",fontsize=16,color="burlywood",shape="box"];2394[label="vyy50/LT",fontsize=10,color="white",style="solid",shape="box"];146 -> 2394[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2394 -> 170[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2395[label="vyy50/EQ",fontsize=10,color="white",style="solid",shape="box"];146 -> 2395[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2395 -> 171[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2396[label="vyy50/GT",fontsize=10,color="white",style="solid",shape="box"];146 -> 2396[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2396 -> 172[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 147[label="EQ == vyy50",fontsize=16,color="burlywood",shape="box"];2397[label="vyy50/LT",fontsize=10,color="white",style="solid",shape="box"];147 -> 2397[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2397 -> 173[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2398[label="vyy50/EQ",fontsize=10,color="white",style="solid",shape="box"];147 -> 2398[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2398 -> 174[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2399[label="vyy50/GT",fontsize=10,color="white",style="solid",shape="box"];147 -> 2399[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2399 -> 175[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 148[label="GT == vyy50",fontsize=16,color="burlywood",shape="box"];2400[label="vyy50/LT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2400[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2400 -> 176[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2401[label="vyy50/EQ",fontsize=10,color="white",style="solid",shape="box"];148 -> 2401[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2401 -> 177[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2402[label="vyy50/GT",fontsize=10,color="white",style="solid",shape="box"];148 -> 2402[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2402 -> 178[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 149[label="vyy6000 : vyy6001 == vyy50",fontsize=16,color="burlywood",shape="box"];2403[label="vyy50/vyy500 : vyy501",fontsize=10,color="white",style="solid",shape="box"];149 -> 2403[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2403 -> 179[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2404[label="vyy50/[]",fontsize=10,color="white",style="solid",shape="box"];149 -> 2404[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2404 -> 180[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 150[label="[] == vyy50",fontsize=16,color="burlywood",shape="box"];2405[label="vyy50/vyy500 : vyy501",fontsize=10,color="white",style="solid",shape="box"];150 -> 2405[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2405 -> 181[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2406[label="vyy50/[]",fontsize=10,color="white",style="solid",shape="box"];150 -> 2406[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2406 -> 182[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 151[label="primEqFloat vyy600 vyy50",fontsize=16,color="burlywood",shape="box"];2407[label="vyy600/Float vyy6000 vyy6001",fontsize=10,color="white",style="solid",shape="box"];151 -> 2407[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2407 -> 183[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 152[label="Left vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];2408[label="vyy50/Left vyy500",fontsize=10,color="white",style="solid",shape="box"];152 -> 2408[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2408 -> 184[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2409[label="vyy50/Right vyy500",fontsize=10,color="white",style="solid",shape="box"];152 -> 2409[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2409 -> 185[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 153[label="Right vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];2410[label="vyy50/Left vyy500",fontsize=10,color="white",style="solid",shape="box"];153 -> 2410[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2410 -> 186[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2411[label="vyy50/Right vyy500",fontsize=10,color="white",style="solid",shape="box"];153 -> 2411[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2411 -> 187[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 154[label="primEqDouble vyy600 vyy50",fontsize=16,color="burlywood",shape="box"];2412[label="vyy600/Double vyy6000 vyy6001",fontsize=10,color="white",style="solid",shape="box"];154 -> 2412[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2412 -> 188[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 155[label="primEqInt vyy600 vyy50",fontsize=16,color="burlywood",shape="triangle"];2413[label="vyy600/Pos vyy6000",fontsize=10,color="white",style="solid",shape="box"];155 -> 2413[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2413 -> 189[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2414[label="vyy600/Neg vyy6000",fontsize=10,color="white",style="solid",shape="box"];155 -> 2414[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2414 -> 190[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 156[label="Nothing == vyy50",fontsize=16,color="burlywood",shape="box"];2415[label="vyy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];156 -> 2415[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2415 -> 191[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2416[label="vyy50/Just vyy500",fontsize=10,color="white",style="solid",shape="box"];156 -> 2416[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2416 -> 192[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 157[label="Just vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];2417[label="vyy50/Nothing",fontsize=10,color="white",style="solid",shape="box"];157 -> 2417[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2417 -> 193[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2418[label="vyy50/Just vyy500",fontsize=10,color="white",style="solid",shape="box"];157 -> 2418[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2418 -> 194[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 158[label="() == vyy50",fontsize=16,color="burlywood",shape="box"];2419[label="vyy50/()",fontsize=10,color="white",style="solid",shape="box"];158 -> 2419[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2419 -> 195[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 159[label="primEqChar vyy600 vyy50",fontsize=16,color="burlywood",shape="box"];2420[label="vyy600/Char vyy6000",fontsize=10,color="white",style="solid",shape="box"];159 -> 2420[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2420 -> 196[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 160[label="Integer vyy6000 == vyy50",fontsize=16,color="burlywood",shape="box"];2421[label="vyy50/Integer vyy500",fontsize=10,color="white",style="solid",shape="box"];160 -> 2421[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2421 -> 197[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 161[label="False == vyy50",fontsize=16,color="burlywood",shape="box"];2422[label="vyy50/False",fontsize=10,color="white",style="solid",shape="box"];161 -> 2422[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2422 -> 198[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2423[label="vyy50/True",fontsize=10,color="white",style="solid",shape="box"];161 -> 2423[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2423 -> 199[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 162[label="True == vyy50",fontsize=16,color="burlywood",shape="box"];2424[label="vyy50/False",fontsize=10,color="white",style="solid",shape="box"];162 -> 2424[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2424 -> 200[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2425[label="vyy50/True",fontsize=10,color="white",style="solid",shape="box"];162 -> 2425[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2425 -> 201[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 163[label="(vyy6000,vyy6001,vyy6002) == vyy50",fontsize=16,color="burlywood",shape="box"];2426[label="vyy50/(vyy500,vyy501,vyy502)",fontsize=10,color="white",style="solid",shape="box"];163 -> 2426[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2426 -> 202[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 164[label="(vyy6000,vyy6001) == vyy50",fontsize=16,color="burlywood",shape="box"];2427[label="vyy50/(vyy500,vyy501)",fontsize=10,color="white",style="solid",shape="box"];164 -> 2427[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2427 -> 203[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 165[label="vyy6000 :% vyy6001 == vyy50",fontsize=16,color="burlywood",shape="box"];2428[label="vyy50/vyy500 :% vyy501",fontsize=10,color="white",style="solid",shape="box"];165 -> 2428[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2428 -> 204[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 166 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.57 166[label="compare2 (vyy37,vyy38) (vyy39,vyy40) False == LT",fontsize=16,color="magenta"];166 -> 205[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 166 -> 206[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 167 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.57 167[label="compare2 (vyy37,vyy38) (vyy39,vyy40) (vyy38 == vyy40) == LT",fontsize=16,color="magenta"];167 -> 207[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 167 -> 208[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 168 -> 6[label="",style="dashed", color="red", weight=0]; 26.21/10.57 168[label="FiniteMap.foldFM_GE vyy19 (vyy19 (vyy23,vyy24) vyy25 (FiniteMap.foldFM_GE vyy19 vyy20 (vyy21,vyy22) vyy28)) (vyy21,vyy22) vyy27",fontsize=16,color="magenta"];168 -> 209[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 168 -> 210[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 168 -> 211[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 168 -> 212[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 169[label="FiniteMap.foldFM_GE0 vyy19 vyy20 (vyy21,vyy22) (vyy23,vyy24) vyy25 vyy26 vyy27 vyy28 otherwise",fontsize=16,color="black",shape="box"];169 -> 213[label="",style="solid", color="black", weight=3]; 26.21/10.57 170[label="LT == LT",fontsize=16,color="black",shape="box"];170 -> 214[label="",style="solid", color="black", weight=3]; 26.21/10.57 171[label="LT == EQ",fontsize=16,color="black",shape="box"];171 -> 215[label="",style="solid", color="black", weight=3]; 26.21/10.57 172[label="LT == GT",fontsize=16,color="black",shape="box"];172 -> 216[label="",style="solid", color="black", weight=3]; 26.21/10.57 173[label="EQ == LT",fontsize=16,color="black",shape="box"];173 -> 217[label="",style="solid", color="black", weight=3]; 26.21/10.57 174[label="EQ == EQ",fontsize=16,color="black",shape="box"];174 -> 218[label="",style="solid", color="black", weight=3]; 26.21/10.57 175[label="EQ == GT",fontsize=16,color="black",shape="box"];175 -> 219[label="",style="solid", color="black", weight=3]; 26.21/10.57 176[label="GT == LT",fontsize=16,color="black",shape="box"];176 -> 220[label="",style="solid", color="black", weight=3]; 26.21/10.57 177[label="GT == EQ",fontsize=16,color="black",shape="box"];177 -> 221[label="",style="solid", color="black", weight=3]; 26.21/10.57 178[label="GT == GT",fontsize=16,color="black",shape="box"];178 -> 222[label="",style="solid", color="black", weight=3]; 26.21/10.57 179[label="vyy6000 : vyy6001 == vyy500 : vyy501",fontsize=16,color="black",shape="box"];179 -> 223[label="",style="solid", color="black", weight=3]; 26.21/10.57 180[label="vyy6000 : vyy6001 == []",fontsize=16,color="black",shape="box"];180 -> 224[label="",style="solid", color="black", weight=3]; 26.21/10.57 181[label="[] == vyy500 : vyy501",fontsize=16,color="black",shape="box"];181 -> 225[label="",style="solid", color="black", weight=3]; 26.21/10.57 182[label="[] == []",fontsize=16,color="black",shape="box"];182 -> 226[label="",style="solid", color="black", weight=3]; 26.21/10.57 183[label="primEqFloat (Float vyy6000 vyy6001) vyy50",fontsize=16,color="burlywood",shape="box"];2429[label="vyy50/Float vyy500 vyy501",fontsize=10,color="white",style="solid",shape="box"];183 -> 2429[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2429 -> 227[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 184[label="Left vyy6000 == Left vyy500",fontsize=16,color="black",shape="box"];184 -> 228[label="",style="solid", color="black", weight=3]; 26.21/10.57 185[label="Left vyy6000 == Right vyy500",fontsize=16,color="black",shape="box"];185 -> 229[label="",style="solid", color="black", weight=3]; 26.21/10.57 186[label="Right vyy6000 == Left vyy500",fontsize=16,color="black",shape="box"];186 -> 230[label="",style="solid", color="black", weight=3]; 26.21/10.57 187[label="Right vyy6000 == Right vyy500",fontsize=16,color="black",shape="box"];187 -> 231[label="",style="solid", color="black", weight=3]; 26.21/10.57 188[label="primEqDouble (Double vyy6000 vyy6001) vyy50",fontsize=16,color="burlywood",shape="box"];2430[label="vyy50/Double vyy500 vyy501",fontsize=10,color="white",style="solid",shape="box"];188 -> 2430[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2430 -> 232[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 189[label="primEqInt (Pos vyy6000) vyy50",fontsize=16,color="burlywood",shape="box"];2431[label="vyy6000/Succ vyy60000",fontsize=10,color="white",style="solid",shape="box"];189 -> 2431[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2431 -> 233[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2432[label="vyy6000/Zero",fontsize=10,color="white",style="solid",shape="box"];189 -> 2432[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2432 -> 234[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 190[label="primEqInt (Neg vyy6000) vyy50",fontsize=16,color="burlywood",shape="box"];2433[label="vyy6000/Succ vyy60000",fontsize=10,color="white",style="solid",shape="box"];190 -> 2433[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2433 -> 235[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2434[label="vyy6000/Zero",fontsize=10,color="white",style="solid",shape="box"];190 -> 2434[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2434 -> 236[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 191[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];191 -> 237[label="",style="solid", color="black", weight=3]; 26.21/10.57 192[label="Nothing == Just vyy500",fontsize=16,color="black",shape="box"];192 -> 238[label="",style="solid", color="black", weight=3]; 26.21/10.57 193[label="Just vyy6000 == Nothing",fontsize=16,color="black",shape="box"];193 -> 239[label="",style="solid", color="black", weight=3]; 26.21/10.57 194[label="Just vyy6000 == Just vyy500",fontsize=16,color="black",shape="box"];194 -> 240[label="",style="solid", color="black", weight=3]; 26.21/10.57 195[label="() == ()",fontsize=16,color="black",shape="box"];195 -> 241[label="",style="solid", color="black", weight=3]; 26.21/10.57 196[label="primEqChar (Char vyy6000) vyy50",fontsize=16,color="burlywood",shape="box"];2435[label="vyy50/Char vyy500",fontsize=10,color="white",style="solid",shape="box"];196 -> 2435[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2435 -> 242[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 197[label="Integer vyy6000 == Integer vyy500",fontsize=16,color="black",shape="box"];197 -> 243[label="",style="solid", color="black", weight=3]; 26.21/10.57 198[label="False == False",fontsize=16,color="black",shape="box"];198 -> 244[label="",style="solid", color="black", weight=3]; 26.21/10.57 199[label="False == True",fontsize=16,color="black",shape="box"];199 -> 245[label="",style="solid", color="black", weight=3]; 26.21/10.57 200[label="True == False",fontsize=16,color="black",shape="box"];200 -> 246[label="",style="solid", color="black", weight=3]; 26.21/10.57 201[label="True == True",fontsize=16,color="black",shape="box"];201 -> 247[label="",style="solid", color="black", weight=3]; 26.21/10.57 202[label="(vyy6000,vyy6001,vyy6002) == (vyy500,vyy501,vyy502)",fontsize=16,color="black",shape="box"];202 -> 248[label="",style="solid", color="black", weight=3]; 26.21/10.57 203[label="(vyy6000,vyy6001) == (vyy500,vyy501)",fontsize=16,color="black",shape="box"];203 -> 249[label="",style="solid", color="black", weight=3]; 26.21/10.57 204[label="vyy6000 :% vyy6001 == vyy500 :% vyy501",fontsize=16,color="black",shape="box"];204 -> 250[label="",style="solid", color="black", weight=3]; 26.21/10.57 205 -> 1187[label="",style="dashed", color="red", weight=0]; 26.21/10.57 205[label="compare2 (vyy37,vyy38) (vyy39,vyy40) False",fontsize=16,color="magenta"];205 -> 1188[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 205 -> 1189[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 205 -> 1190[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 206[label="LT",fontsize=16,color="green",shape="box"];207 -> 1187[label="",style="dashed", color="red", weight=0]; 26.21/10.57 207[label="compare2 (vyy37,vyy38) (vyy39,vyy40) (vyy38 == vyy40)",fontsize=16,color="magenta"];207 -> 1191[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 207 -> 1192[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 207 -> 1193[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 208[label="LT",fontsize=16,color="green",shape="box"];209[label="vyy19",fontsize=16,color="green",shape="box"];210[label="(vyy21,vyy22)",fontsize=16,color="green",shape="box"];211[label="vyy19 (vyy23,vyy24) vyy25 (FiniteMap.foldFM_GE vyy19 vyy20 (vyy21,vyy22) vyy28)",fontsize=16,color="green",shape="box"];211 -> 263[label="",style="dashed", color="green", weight=3]; 26.21/10.57 211 -> 264[label="",style="dashed", color="green", weight=3]; 26.21/10.57 211 -> 265[label="",style="dashed", color="green", weight=3]; 26.21/10.57 212[label="vyy27",fontsize=16,color="green",shape="box"];213[label="FiniteMap.foldFM_GE0 vyy19 vyy20 (vyy21,vyy22) (vyy23,vyy24) vyy25 vyy26 vyy27 vyy28 True",fontsize=16,color="black",shape="box"];213 -> 266[label="",style="solid", color="black", weight=3]; 26.21/10.57 214[label="True",fontsize=16,color="green",shape="box"];215[label="False",fontsize=16,color="green",shape="box"];216[label="False",fontsize=16,color="green",shape="box"];217[label="False",fontsize=16,color="green",shape="box"];218[label="True",fontsize=16,color="green",shape="box"];219[label="False",fontsize=16,color="green",shape="box"];220[label="False",fontsize=16,color="green",shape="box"];221[label="False",fontsize=16,color="green",shape="box"];222[label="True",fontsize=16,color="green",shape="box"];223 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.57 223[label="vyy6000 == vyy500 && vyy6001 == vyy501",fontsize=16,color="magenta"];223 -> 360[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 223 -> 361[label="",style="dashed", color="magenta", weight=3]; 26.21/10.57 224[label="False",fontsize=16,color="green",shape="box"];225[label="False",fontsize=16,color="green",shape="box"];226[label="True",fontsize=16,color="green",shape="box"];227[label="primEqFloat (Float vyy6000 vyy6001) (Float vyy500 vyy501)",fontsize=16,color="black",shape="box"];227 -> 278[label="",style="solid", color="black", weight=3]; 26.21/10.57 228[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];2436[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2436[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2436 -> 279[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2437[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2437[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2437 -> 280[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2438[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2438[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2438 -> 281[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2439[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2439[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2439 -> 282[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2440[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2440[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2440 -> 283[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2441[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2441[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2441 -> 284[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2442[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2442[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2442 -> 285[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2443[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2443[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2443 -> 286[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2444[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2444[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2444 -> 287[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2445[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2445[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2445 -> 288[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2446[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2446[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2446 -> 289[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2447[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2447[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2447 -> 290[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2448[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2448[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2448 -> 291[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2449[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];228 -> 2449[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2449 -> 292[label="",style="solid", color="blue", weight=3]; 26.21/10.57 229[label="False",fontsize=16,color="green",shape="box"];230[label="False",fontsize=16,color="green",shape="box"];231[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];2450[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2450[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2450 -> 293[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2451[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2451[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2451 -> 294[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2452[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2452[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2452 -> 295[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2453[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2453[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2453 -> 296[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2454[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2454[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2454 -> 297[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2455[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2455[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2455 -> 298[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2456[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2456[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2456 -> 299[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2457[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2457[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2457 -> 300[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2458[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2458[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2458 -> 301[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2459[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2459[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2459 -> 302[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2460[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2460[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2460 -> 303[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2461[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2461[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2461 -> 304[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2462[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2462[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2462 -> 305[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2463[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];231 -> 2463[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2463 -> 306[label="",style="solid", color="blue", weight=3]; 26.21/10.57 232[label="primEqDouble (Double vyy6000 vyy6001) (Double vyy500 vyy501)",fontsize=16,color="black",shape="box"];232 -> 307[label="",style="solid", color="black", weight=3]; 26.21/10.57 233[label="primEqInt (Pos (Succ vyy60000)) vyy50",fontsize=16,color="burlywood",shape="box"];2464[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];233 -> 2464[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2464 -> 308[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2465[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];233 -> 2465[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2465 -> 309[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 234[label="primEqInt (Pos Zero) vyy50",fontsize=16,color="burlywood",shape="box"];2466[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];234 -> 2466[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2466 -> 310[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2467[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];234 -> 2467[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2467 -> 311[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 235[label="primEqInt (Neg (Succ vyy60000)) vyy50",fontsize=16,color="burlywood",shape="box"];2468[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];235 -> 2468[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2468 -> 312[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2469[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];235 -> 2469[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2469 -> 313[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 236[label="primEqInt (Neg Zero) vyy50",fontsize=16,color="burlywood",shape="box"];2470[label="vyy50/Pos vyy500",fontsize=10,color="white",style="solid",shape="box"];236 -> 2470[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2470 -> 314[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 2471[label="vyy50/Neg vyy500",fontsize=10,color="white",style="solid",shape="box"];236 -> 2471[label="",style="solid", color="burlywood", weight=9]; 26.21/10.57 2471 -> 315[label="",style="solid", color="burlywood", weight=3]; 26.21/10.57 237[label="True",fontsize=16,color="green",shape="box"];238[label="False",fontsize=16,color="green",shape="box"];239[label="False",fontsize=16,color="green",shape="box"];240[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];2472[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2472[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2472 -> 316[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2473[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2473[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2473 -> 317[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2474[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2474[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2474 -> 318[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2475[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2475[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2475 -> 319[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2476[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2476[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2476 -> 320[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2477[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2477[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2477 -> 321[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2478[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2478[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2478 -> 322[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2479[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2479[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2479 -> 323[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2480[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2480[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2480 -> 324[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2481[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2481[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2481 -> 325[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2482[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2482[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2482 -> 326[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2483[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2483[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2483 -> 327[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2484[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2484[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2484 -> 328[label="",style="solid", color="blue", weight=3]; 26.21/10.57 2485[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];240 -> 2485[label="",style="solid", color="blue", weight=9]; 26.21/10.57 2485 -> 329[label="",style="solid", color="blue", weight=3]; 26.21/10.57 241[label="True",fontsize=16,color="green",shape="box"];242[label="primEqChar (Char vyy6000) (Char vyy500)",fontsize=16,color="black",shape="box"];242 -> 330[label="",style="solid", color="black", weight=3]; 26.21/10.58 243 -> 155[label="",style="dashed", color="red", weight=0]; 26.21/10.58 243[label="primEqInt vyy6000 vyy500",fontsize=16,color="magenta"];243 -> 331[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 243 -> 332[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 244[label="True",fontsize=16,color="green",shape="box"];245[label="False",fontsize=16,color="green",shape="box"];246[label="False",fontsize=16,color="green",shape="box"];247[label="True",fontsize=16,color="green",shape="box"];248 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.58 248[label="vyy6000 == vyy500 && vyy6001 == vyy501 && vyy6002 == vyy502",fontsize=16,color="magenta"];248 -> 362[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 248 -> 363[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 249 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.58 249[label="vyy6000 == vyy500 && vyy6001 == vyy501",fontsize=16,color="magenta"];249 -> 364[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 249 -> 365[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 250 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.58 250[label="vyy6000 == vyy500 && vyy6001 == vyy501",fontsize=16,color="magenta"];250 -> 366[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 250 -> 367[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1188[label="False",fontsize=16,color="green",shape="box"];1189[label="(vyy37,vyy38)",fontsize=16,color="green",shape="box"];1190[label="(vyy39,vyy40)",fontsize=16,color="green",shape="box"];1187[label="compare2 vyy48 vyy50 vyy82",fontsize=16,color="burlywood",shape="triangle"];2486[label="vyy82/False",fontsize=10,color="white",style="solid",shape="box"];1187 -> 2486[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2486 -> 1198[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2487[label="vyy82/True",fontsize=10,color="white",style="solid",shape="box"];1187 -> 2487[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2487 -> 1199[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1191[label="vyy38 == vyy40",fontsize=16,color="blue",shape="box"];2488[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2488[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2488 -> 1200[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2489[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2489[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2489 -> 1201[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2490[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2490[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2490 -> 1202[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2491[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2491[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2491 -> 1203[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2492[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2492[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2492 -> 1204[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2493[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2493[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2493 -> 1205[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2494[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2494[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2494 -> 1206[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2495[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2495[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2495 -> 1207[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2496[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2496[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2496 -> 1208[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2497[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2497[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2497 -> 1209[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2498[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2498[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2498 -> 1210[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2499[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2499[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2499 -> 1211[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2500[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2500[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2500 -> 1212[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2501[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1191 -> 2501[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2501 -> 1213[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1192[label="(vyy37,vyy38)",fontsize=16,color="green",shape="box"];1193[label="(vyy39,vyy40)",fontsize=16,color="green",shape="box"];263[label="(vyy23,vyy24)",fontsize=16,color="green",shape="box"];264[label="vyy25",fontsize=16,color="green",shape="box"];265 -> 6[label="",style="dashed", color="red", weight=0]; 26.21/10.58 265[label="FiniteMap.foldFM_GE vyy19 vyy20 (vyy21,vyy22) vyy28",fontsize=16,color="magenta"];265 -> 349[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 265 -> 350[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 265 -> 351[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 265 -> 352[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 266 -> 6[label="",style="dashed", color="red", weight=0]; 26.21/10.58 266[label="FiniteMap.foldFM_GE vyy19 vyy20 (vyy21,vyy22) vyy28",fontsize=16,color="magenta"];266 -> 353[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 266 -> 354[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 266 -> 355[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 266 -> 356[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 360[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];2502[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2502[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2502 -> 372[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2503[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2503[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2503 -> 373[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2504[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2504[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2504 -> 374[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2505[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2505[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2505 -> 375[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2506[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2506[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2506 -> 376[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2507[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2507[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2507 -> 377[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2508[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2508[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2508 -> 378[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2509[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2509[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2509 -> 379[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2510[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2510[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2510 -> 380[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2511[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2511[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2511 -> 381[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2512[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2512[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2512 -> 382[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2513[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2513[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2513 -> 383[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2514[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2514[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2514 -> 384[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2515[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];360 -> 2515[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2515 -> 385[label="",style="solid", color="blue", weight=3]; 26.21/10.58 361 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 361[label="vyy6001 == vyy501",fontsize=16,color="magenta"];361 -> 386[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 361 -> 387[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 359[label="vyy57 && vyy58",fontsize=16,color="burlywood",shape="triangle"];2516[label="vyy57/False",fontsize=10,color="white",style="solid",shape="box"];359 -> 2516[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2516 -> 388[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2517[label="vyy57/True",fontsize=10,color="white",style="solid",shape="box"];359 -> 2517[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2517 -> 389[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 278 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 278[label="vyy6000 * vyy501 == vyy6001 * vyy500",fontsize=16,color="magenta"];278 -> 390[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 278 -> 391[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 279 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 279[label="vyy6000 == vyy500",fontsize=16,color="magenta"];279 -> 392[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 279 -> 393[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 280 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 280[label="vyy6000 == vyy500",fontsize=16,color="magenta"];280 -> 394[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 280 -> 395[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 281 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 281[label="vyy6000 == vyy500",fontsize=16,color="magenta"];281 -> 396[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 281 -> 397[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 282 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 282[label="vyy6000 == vyy500",fontsize=16,color="magenta"];282 -> 398[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 282 -> 399[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 283 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 283[label="vyy6000 == vyy500",fontsize=16,color="magenta"];283 -> 400[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 283 -> 401[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 284 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 284[label="vyy6000 == vyy500",fontsize=16,color="magenta"];284 -> 402[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 284 -> 403[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 285 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 285[label="vyy6000 == vyy500",fontsize=16,color="magenta"];285 -> 404[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 285 -> 405[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 286 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 286[label="vyy6000 == vyy500",fontsize=16,color="magenta"];286 -> 406[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 286 -> 407[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 287 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 287[label="vyy6000 == vyy500",fontsize=16,color="magenta"];287 -> 408[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 287 -> 409[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 288 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 288[label="vyy6000 == vyy500",fontsize=16,color="magenta"];288 -> 410[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 288 -> 411[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 289 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 289[label="vyy6000 == vyy500",fontsize=16,color="magenta"];289 -> 412[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 289 -> 413[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 290 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 290[label="vyy6000 == vyy500",fontsize=16,color="magenta"];290 -> 414[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 290 -> 415[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 291 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 291[label="vyy6000 == vyy500",fontsize=16,color="magenta"];291 -> 416[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 291 -> 417[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 292 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 292[label="vyy6000 == vyy500",fontsize=16,color="magenta"];292 -> 418[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 292 -> 419[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 293 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 293[label="vyy6000 == vyy500",fontsize=16,color="magenta"];293 -> 420[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 293 -> 421[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 294 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 294[label="vyy6000 == vyy500",fontsize=16,color="magenta"];294 -> 422[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 294 -> 423[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 295 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 295[label="vyy6000 == vyy500",fontsize=16,color="magenta"];295 -> 424[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 295 -> 425[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 296 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 296[label="vyy6000 == vyy500",fontsize=16,color="magenta"];296 -> 426[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 296 -> 427[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 297 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 297[label="vyy6000 == vyy500",fontsize=16,color="magenta"];297 -> 428[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 297 -> 429[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 298 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 298[label="vyy6000 == vyy500",fontsize=16,color="magenta"];298 -> 430[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 298 -> 431[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 299 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 299[label="vyy6000 == vyy500",fontsize=16,color="magenta"];299 -> 432[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 299 -> 433[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 300 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 300[label="vyy6000 == vyy500",fontsize=16,color="magenta"];300 -> 434[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 300 -> 435[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 301 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 301[label="vyy6000 == vyy500",fontsize=16,color="magenta"];301 -> 436[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 301 -> 437[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 302 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 302[label="vyy6000 == vyy500",fontsize=16,color="magenta"];302 -> 438[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 302 -> 439[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 303 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 303[label="vyy6000 == vyy500",fontsize=16,color="magenta"];303 -> 440[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 303 -> 441[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 304 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 304[label="vyy6000 == vyy500",fontsize=16,color="magenta"];304 -> 442[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 304 -> 443[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 305 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 305[label="vyy6000 == vyy500",fontsize=16,color="magenta"];305 -> 444[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 305 -> 445[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 306 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 306[label="vyy6000 == vyy500",fontsize=16,color="magenta"];306 -> 446[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 306 -> 447[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 307 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 307[label="vyy6000 * vyy501 == vyy6001 * vyy500",fontsize=16,color="magenta"];307 -> 448[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 307 -> 449[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 308[label="primEqInt (Pos (Succ vyy60000)) (Pos vyy500)",fontsize=16,color="burlywood",shape="box"];2518[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];308 -> 2518[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2518 -> 450[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2519[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];308 -> 2519[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2519 -> 451[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 309[label="primEqInt (Pos (Succ vyy60000)) (Neg vyy500)",fontsize=16,color="black",shape="box"];309 -> 452[label="",style="solid", color="black", weight=3]; 26.21/10.58 310[label="primEqInt (Pos Zero) (Pos vyy500)",fontsize=16,color="burlywood",shape="box"];2520[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];310 -> 2520[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2520 -> 453[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2521[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];310 -> 2521[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2521 -> 454[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 311[label="primEqInt (Pos Zero) (Neg vyy500)",fontsize=16,color="burlywood",shape="box"];2522[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];311 -> 2522[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2522 -> 455[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2523[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];311 -> 2523[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2523 -> 456[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 312[label="primEqInt (Neg (Succ vyy60000)) (Pos vyy500)",fontsize=16,color="black",shape="box"];312 -> 457[label="",style="solid", color="black", weight=3]; 26.21/10.58 313[label="primEqInt (Neg (Succ vyy60000)) (Neg vyy500)",fontsize=16,color="burlywood",shape="box"];2524[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];313 -> 2524[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2524 -> 458[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2525[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];313 -> 2525[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2525 -> 459[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 314[label="primEqInt (Neg Zero) (Pos vyy500)",fontsize=16,color="burlywood",shape="box"];2526[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];314 -> 2526[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2526 -> 460[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2527[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];314 -> 2527[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2527 -> 461[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 315[label="primEqInt (Neg Zero) (Neg vyy500)",fontsize=16,color="burlywood",shape="box"];2528[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];315 -> 2528[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2528 -> 462[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2529[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];315 -> 2529[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2529 -> 463[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 316 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 316[label="vyy6000 == vyy500",fontsize=16,color="magenta"];316 -> 464[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 316 -> 465[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 317 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 317[label="vyy6000 == vyy500",fontsize=16,color="magenta"];317 -> 466[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 317 -> 467[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 318 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 318[label="vyy6000 == vyy500",fontsize=16,color="magenta"];318 -> 468[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 318 -> 469[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 319 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 319[label="vyy6000 == vyy500",fontsize=16,color="magenta"];319 -> 470[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 319 -> 471[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 320 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 320[label="vyy6000 == vyy500",fontsize=16,color="magenta"];320 -> 472[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 320 -> 473[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 321 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 321[label="vyy6000 == vyy500",fontsize=16,color="magenta"];321 -> 474[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 321 -> 475[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 322 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 322[label="vyy6000 == vyy500",fontsize=16,color="magenta"];322 -> 476[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 322 -> 477[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 323 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 323[label="vyy6000 == vyy500",fontsize=16,color="magenta"];323 -> 478[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 323 -> 479[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 324 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 324[label="vyy6000 == vyy500",fontsize=16,color="magenta"];324 -> 480[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 324 -> 481[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 325 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 325[label="vyy6000 == vyy500",fontsize=16,color="magenta"];325 -> 482[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 325 -> 483[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 326 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 326[label="vyy6000 == vyy500",fontsize=16,color="magenta"];326 -> 484[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 326 -> 485[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 327 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 327[label="vyy6000 == vyy500",fontsize=16,color="magenta"];327 -> 486[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 327 -> 487[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 328 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 328[label="vyy6000 == vyy500",fontsize=16,color="magenta"];328 -> 488[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 328 -> 489[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 329 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 329[label="vyy6000 == vyy500",fontsize=16,color="magenta"];329 -> 490[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 329 -> 491[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 330[label="primEqNat vyy6000 vyy500",fontsize=16,color="burlywood",shape="triangle"];2530[label="vyy6000/Succ vyy60000",fontsize=10,color="white",style="solid",shape="box"];330 -> 2530[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2530 -> 492[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2531[label="vyy6000/Zero",fontsize=10,color="white",style="solid",shape="box"];330 -> 2531[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2531 -> 493[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 331[label="vyy6000",fontsize=16,color="green",shape="box"];332[label="vyy500",fontsize=16,color="green",shape="box"];362[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];2532[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2532[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2532 -> 494[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2533[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2533[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2533 -> 495[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2534[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2534[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2534 -> 496[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2535[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2535[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2535 -> 497[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2536[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2536[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2536 -> 498[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2537[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2537[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2537 -> 499[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2538[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2538[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2538 -> 500[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2539[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2539[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2539 -> 501[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2540[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2540[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2540 -> 502[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2541[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2541[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2541 -> 503[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2542[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2542[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2542 -> 504[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2543[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2543[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2543 -> 505[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2544[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2544[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2544 -> 506[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2545[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];362 -> 2545[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2545 -> 507[label="",style="solid", color="blue", weight=3]; 26.21/10.58 363 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.58 363[label="vyy6001 == vyy501 && vyy6002 == vyy502",fontsize=16,color="magenta"];363 -> 508[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 363 -> 509[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 364[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];2546[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2546[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2546 -> 510[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2547[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2547[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2547 -> 511[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2548[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2548[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2548 -> 512[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2549[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2549[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2549 -> 513[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2550[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2550[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2550 -> 514[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2551[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2551[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2551 -> 515[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2552[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2552[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2552 -> 516[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2553[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2553[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2553 -> 517[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2554[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2554[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2554 -> 518[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2555[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2555[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2555 -> 519[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2556[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2556[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2556 -> 520[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2557[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2557[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2557 -> 521[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2558[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2558[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2558 -> 522[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2559[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];364 -> 2559[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2559 -> 523[label="",style="solid", color="blue", weight=3]; 26.21/10.58 365[label="vyy6001 == vyy501",fontsize=16,color="blue",shape="box"];2560[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2560[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2560 -> 524[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2561[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2561[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2561 -> 525[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2562[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2562[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2562 -> 526[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2563[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2563[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2563 -> 527[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2564[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2564[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2564 -> 528[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2565[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2565[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2565 -> 529[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2566[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2566[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2566 -> 530[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2567[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2567[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2567 -> 531[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2568[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2568[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2568 -> 532[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2569[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2569[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2569 -> 533[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2570[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2570[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2570 -> 534[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2571[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2571[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2571 -> 535[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2572[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2572[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2572 -> 536[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2573[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];365 -> 2573[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2573 -> 537[label="",style="solid", color="blue", weight=3]; 26.21/10.58 366[label="vyy6000 == vyy500",fontsize=16,color="blue",shape="box"];2574[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2574[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2574 -> 538[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2575[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];366 -> 2575[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2575 -> 539[label="",style="solid", color="blue", weight=3]; 26.21/10.58 367[label="vyy6001 == vyy501",fontsize=16,color="blue",shape="box"];2576[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2576[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2576 -> 540[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2577[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];367 -> 2577[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2577 -> 541[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1198[label="compare2 vyy48 vyy50 False",fontsize=16,color="black",shape="box"];1198 -> 1216[label="",style="solid", color="black", weight=3]; 26.21/10.58 1199[label="compare2 vyy48 vyy50 True",fontsize=16,color="black",shape="box"];1199 -> 1217[label="",style="solid", color="black", weight=3]; 26.21/10.58 1200 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1200[label="vyy38 == vyy40",fontsize=16,color="magenta"];1200 -> 1218[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1200 -> 1219[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1201 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1201[label="vyy38 == vyy40",fontsize=16,color="magenta"];1201 -> 1220[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1201 -> 1221[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1202 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1202[label="vyy38 == vyy40",fontsize=16,color="magenta"];1202 -> 1222[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1202 -> 1223[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1203 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1203[label="vyy38 == vyy40",fontsize=16,color="magenta"];1203 -> 1224[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1203 -> 1225[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1204 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1204[label="vyy38 == vyy40",fontsize=16,color="magenta"];1204 -> 1226[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1204 -> 1227[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1205 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1205[label="vyy38 == vyy40",fontsize=16,color="magenta"];1205 -> 1228[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1205 -> 1229[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1206 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1206[label="vyy38 == vyy40",fontsize=16,color="magenta"];1206 -> 1230[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1206 -> 1231[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1207 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1207[label="vyy38 == vyy40",fontsize=16,color="magenta"];1207 -> 1232[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1207 -> 1233[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1208 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1208[label="vyy38 == vyy40",fontsize=16,color="magenta"];1208 -> 1234[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1208 -> 1235[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1209 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1209[label="vyy38 == vyy40",fontsize=16,color="magenta"];1209 -> 1236[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1209 -> 1237[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1210 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1210[label="vyy38 == vyy40",fontsize=16,color="magenta"];1210 -> 1238[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1210 -> 1239[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1211 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1211[label="vyy38 == vyy40",fontsize=16,color="magenta"];1211 -> 1240[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1211 -> 1241[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1212 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1212[label="vyy38 == vyy40",fontsize=16,color="magenta"];1212 -> 1242[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1212 -> 1243[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1213 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1213[label="vyy38 == vyy40",fontsize=16,color="magenta"];1213 -> 1244[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1213 -> 1245[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 349[label="vyy19",fontsize=16,color="green",shape="box"];350[label="(vyy21,vyy22)",fontsize=16,color="green",shape="box"];351[label="vyy20",fontsize=16,color="green",shape="box"];352[label="vyy28",fontsize=16,color="green",shape="box"];353[label="vyy19",fontsize=16,color="green",shape="box"];354[label="(vyy21,vyy22)",fontsize=16,color="green",shape="box"];355[label="vyy20",fontsize=16,color="green",shape="box"];356[label="vyy28",fontsize=16,color="green",shape="box"];372 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 372[label="vyy6000 == vyy500",fontsize=16,color="magenta"];372 -> 572[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 372 -> 573[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 373 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 373[label="vyy6000 == vyy500",fontsize=16,color="magenta"];373 -> 574[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 373 -> 575[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 374 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 374[label="vyy6000 == vyy500",fontsize=16,color="magenta"];374 -> 576[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 374 -> 577[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 375 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 375[label="vyy6000 == vyy500",fontsize=16,color="magenta"];375 -> 578[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 375 -> 579[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 376 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 376[label="vyy6000 == vyy500",fontsize=16,color="magenta"];376 -> 580[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 376 -> 581[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 377 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 377[label="vyy6000 == vyy500",fontsize=16,color="magenta"];377 -> 582[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 377 -> 583[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 378 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 378[label="vyy6000 == vyy500",fontsize=16,color="magenta"];378 -> 584[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 378 -> 585[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 379 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 379[label="vyy6000 == vyy500",fontsize=16,color="magenta"];379 -> 586[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 379 -> 587[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 380 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 380[label="vyy6000 == vyy500",fontsize=16,color="magenta"];380 -> 588[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 380 -> 589[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 381 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 381[label="vyy6000 == vyy500",fontsize=16,color="magenta"];381 -> 590[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 381 -> 591[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 382 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 382[label="vyy6000 == vyy500",fontsize=16,color="magenta"];382 -> 592[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 382 -> 593[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 383 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 383[label="vyy6000 == vyy500",fontsize=16,color="magenta"];383 -> 594[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 383 -> 595[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 384 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 384[label="vyy6000 == vyy500",fontsize=16,color="magenta"];384 -> 596[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 384 -> 597[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 385 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 385[label="vyy6000 == vyy500",fontsize=16,color="magenta"];385 -> 598[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 385 -> 599[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 386[label="vyy6001",fontsize=16,color="green",shape="box"];387[label="vyy501",fontsize=16,color="green",shape="box"];388[label="False && vyy58",fontsize=16,color="black",shape="box"];388 -> 600[label="",style="solid", color="black", weight=3]; 26.21/10.58 389[label="True && vyy58",fontsize=16,color="black",shape="box"];389 -> 601[label="",style="solid", color="black", weight=3]; 26.21/10.58 390[label="vyy6000 * vyy501",fontsize=16,color="black",shape="triangle"];390 -> 602[label="",style="solid", color="black", weight=3]; 26.21/10.58 391 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.58 391[label="vyy6001 * vyy500",fontsize=16,color="magenta"];391 -> 603[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 391 -> 604[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 392[label="vyy6000",fontsize=16,color="green",shape="box"];393[label="vyy500",fontsize=16,color="green",shape="box"];394[label="vyy6000",fontsize=16,color="green",shape="box"];395[label="vyy500",fontsize=16,color="green",shape="box"];396[label="vyy6000",fontsize=16,color="green",shape="box"];397[label="vyy500",fontsize=16,color="green",shape="box"];398[label="vyy6000",fontsize=16,color="green",shape="box"];399[label="vyy500",fontsize=16,color="green",shape="box"];400[label="vyy6000",fontsize=16,color="green",shape="box"];401[label="vyy500",fontsize=16,color="green",shape="box"];402[label="vyy6000",fontsize=16,color="green",shape="box"];403[label="vyy500",fontsize=16,color="green",shape="box"];404[label="vyy6000",fontsize=16,color="green",shape="box"];405[label="vyy500",fontsize=16,color="green",shape="box"];406[label="vyy6000",fontsize=16,color="green",shape="box"];407[label="vyy500",fontsize=16,color="green",shape="box"];408[label="vyy6000",fontsize=16,color="green",shape="box"];409[label="vyy500",fontsize=16,color="green",shape="box"];410[label="vyy6000",fontsize=16,color="green",shape="box"];411[label="vyy500",fontsize=16,color="green",shape="box"];412[label="vyy6000",fontsize=16,color="green",shape="box"];413[label="vyy500",fontsize=16,color="green",shape="box"];414[label="vyy6000",fontsize=16,color="green",shape="box"];415[label="vyy500",fontsize=16,color="green",shape="box"];416[label="vyy6000",fontsize=16,color="green",shape="box"];417[label="vyy500",fontsize=16,color="green",shape="box"];418[label="vyy6000",fontsize=16,color="green",shape="box"];419[label="vyy500",fontsize=16,color="green",shape="box"];420[label="vyy6000",fontsize=16,color="green",shape="box"];421[label="vyy500",fontsize=16,color="green",shape="box"];422[label="vyy6000",fontsize=16,color="green",shape="box"];423[label="vyy500",fontsize=16,color="green",shape="box"];424[label="vyy6000",fontsize=16,color="green",shape="box"];425[label="vyy500",fontsize=16,color="green",shape="box"];426[label="vyy6000",fontsize=16,color="green",shape="box"];427[label="vyy500",fontsize=16,color="green",shape="box"];428[label="vyy6000",fontsize=16,color="green",shape="box"];429[label="vyy500",fontsize=16,color="green",shape="box"];430[label="vyy6000",fontsize=16,color="green",shape="box"];431[label="vyy500",fontsize=16,color="green",shape="box"];432[label="vyy6000",fontsize=16,color="green",shape="box"];433[label="vyy500",fontsize=16,color="green",shape="box"];434[label="vyy6000",fontsize=16,color="green",shape="box"];435[label="vyy500",fontsize=16,color="green",shape="box"];436[label="vyy6000",fontsize=16,color="green",shape="box"];437[label="vyy500",fontsize=16,color="green",shape="box"];438[label="vyy6000",fontsize=16,color="green",shape="box"];439[label="vyy500",fontsize=16,color="green",shape="box"];440[label="vyy6000",fontsize=16,color="green",shape="box"];441[label="vyy500",fontsize=16,color="green",shape="box"];442[label="vyy6000",fontsize=16,color="green",shape="box"];443[label="vyy500",fontsize=16,color="green",shape="box"];444[label="vyy6000",fontsize=16,color="green",shape="box"];445[label="vyy500",fontsize=16,color="green",shape="box"];446[label="vyy6000",fontsize=16,color="green",shape="box"];447[label="vyy500",fontsize=16,color="green",shape="box"];448 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.58 448[label="vyy6000 * vyy501",fontsize=16,color="magenta"];448 -> 605[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 448 -> 606[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 449 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.58 449[label="vyy6001 * vyy500",fontsize=16,color="magenta"];449 -> 607[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 449 -> 608[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 450[label="primEqInt (Pos (Succ vyy60000)) (Pos (Succ vyy5000))",fontsize=16,color="black",shape="box"];450 -> 609[label="",style="solid", color="black", weight=3]; 26.21/10.58 451[label="primEqInt (Pos (Succ vyy60000)) (Pos Zero)",fontsize=16,color="black",shape="box"];451 -> 610[label="",style="solid", color="black", weight=3]; 26.21/10.58 452[label="False",fontsize=16,color="green",shape="box"];453[label="primEqInt (Pos Zero) (Pos (Succ vyy5000))",fontsize=16,color="black",shape="box"];453 -> 611[label="",style="solid", color="black", weight=3]; 26.21/10.58 454[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];454 -> 612[label="",style="solid", color="black", weight=3]; 26.21/10.58 455[label="primEqInt (Pos Zero) (Neg (Succ vyy5000))",fontsize=16,color="black",shape="box"];455 -> 613[label="",style="solid", color="black", weight=3]; 26.21/10.58 456[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];456 -> 614[label="",style="solid", color="black", weight=3]; 26.21/10.58 457[label="False",fontsize=16,color="green",shape="box"];458[label="primEqInt (Neg (Succ vyy60000)) (Neg (Succ vyy5000))",fontsize=16,color="black",shape="box"];458 -> 615[label="",style="solid", color="black", weight=3]; 26.21/10.58 459[label="primEqInt (Neg (Succ vyy60000)) (Neg Zero)",fontsize=16,color="black",shape="box"];459 -> 616[label="",style="solid", color="black", weight=3]; 26.21/10.58 460[label="primEqInt (Neg Zero) (Pos (Succ vyy5000))",fontsize=16,color="black",shape="box"];460 -> 617[label="",style="solid", color="black", weight=3]; 26.21/10.58 461[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];461 -> 618[label="",style="solid", color="black", weight=3]; 26.21/10.58 462[label="primEqInt (Neg Zero) (Neg (Succ vyy5000))",fontsize=16,color="black",shape="box"];462 -> 619[label="",style="solid", color="black", weight=3]; 26.21/10.58 463[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];463 -> 620[label="",style="solid", color="black", weight=3]; 26.21/10.58 464[label="vyy6000",fontsize=16,color="green",shape="box"];465[label="vyy500",fontsize=16,color="green",shape="box"];466[label="vyy6000",fontsize=16,color="green",shape="box"];467[label="vyy500",fontsize=16,color="green",shape="box"];468[label="vyy6000",fontsize=16,color="green",shape="box"];469[label="vyy500",fontsize=16,color="green",shape="box"];470[label="vyy6000",fontsize=16,color="green",shape="box"];471[label="vyy500",fontsize=16,color="green",shape="box"];472[label="vyy6000",fontsize=16,color="green",shape="box"];473[label="vyy500",fontsize=16,color="green",shape="box"];474[label="vyy6000",fontsize=16,color="green",shape="box"];475[label="vyy500",fontsize=16,color="green",shape="box"];476[label="vyy6000",fontsize=16,color="green",shape="box"];477[label="vyy500",fontsize=16,color="green",shape="box"];478[label="vyy6000",fontsize=16,color="green",shape="box"];479[label="vyy500",fontsize=16,color="green",shape="box"];480[label="vyy6000",fontsize=16,color="green",shape="box"];481[label="vyy500",fontsize=16,color="green",shape="box"];482[label="vyy6000",fontsize=16,color="green",shape="box"];483[label="vyy500",fontsize=16,color="green",shape="box"];484[label="vyy6000",fontsize=16,color="green",shape="box"];485[label="vyy500",fontsize=16,color="green",shape="box"];486[label="vyy6000",fontsize=16,color="green",shape="box"];487[label="vyy500",fontsize=16,color="green",shape="box"];488[label="vyy6000",fontsize=16,color="green",shape="box"];489[label="vyy500",fontsize=16,color="green",shape="box"];490[label="vyy6000",fontsize=16,color="green",shape="box"];491[label="vyy500",fontsize=16,color="green",shape="box"];492[label="primEqNat (Succ vyy60000) vyy500",fontsize=16,color="burlywood",shape="box"];2578[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];492 -> 2578[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2578 -> 621[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2579[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];492 -> 2579[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2579 -> 622[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 493[label="primEqNat Zero vyy500",fontsize=16,color="burlywood",shape="box"];2580[label="vyy500/Succ vyy5000",fontsize=10,color="white",style="solid",shape="box"];493 -> 2580[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2580 -> 623[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2581[label="vyy500/Zero",fontsize=10,color="white",style="solid",shape="box"];493 -> 2581[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2581 -> 624[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 494 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 494[label="vyy6000 == vyy500",fontsize=16,color="magenta"];494 -> 625[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 494 -> 626[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 495 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 495[label="vyy6000 == vyy500",fontsize=16,color="magenta"];495 -> 627[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 495 -> 628[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 496 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 496[label="vyy6000 == vyy500",fontsize=16,color="magenta"];496 -> 629[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 496 -> 630[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 497 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 497[label="vyy6000 == vyy500",fontsize=16,color="magenta"];497 -> 631[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 497 -> 632[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 498 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 498[label="vyy6000 == vyy500",fontsize=16,color="magenta"];498 -> 633[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 498 -> 634[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 499 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 499[label="vyy6000 == vyy500",fontsize=16,color="magenta"];499 -> 635[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 499 -> 636[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 500 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 500[label="vyy6000 == vyy500",fontsize=16,color="magenta"];500 -> 637[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 500 -> 638[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 501 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 501[label="vyy6000 == vyy500",fontsize=16,color="magenta"];501 -> 639[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 501 -> 640[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 502 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 502[label="vyy6000 == vyy500",fontsize=16,color="magenta"];502 -> 641[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 502 -> 642[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 503 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 503[label="vyy6000 == vyy500",fontsize=16,color="magenta"];503 -> 643[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 503 -> 644[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 504 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 504[label="vyy6000 == vyy500",fontsize=16,color="magenta"];504 -> 645[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 504 -> 646[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 505 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 505[label="vyy6000 == vyy500",fontsize=16,color="magenta"];505 -> 647[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 505 -> 648[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 506 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 506[label="vyy6000 == vyy500",fontsize=16,color="magenta"];506 -> 649[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 506 -> 650[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 507 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 507[label="vyy6000 == vyy500",fontsize=16,color="magenta"];507 -> 651[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 507 -> 652[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 508[label="vyy6001 == vyy501",fontsize=16,color="blue",shape="box"];2582[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2582[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2582 -> 653[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2583[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2583[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2583 -> 654[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2584[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2584[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2584 -> 655[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2585[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2585[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2585 -> 656[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2586[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2586[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2586 -> 657[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2587[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2587[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2587 -> 658[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2588[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2588[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2588 -> 659[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2589[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2589[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2589 -> 660[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2590[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2590[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2590 -> 661[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2591[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2591[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2591 -> 662[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2592[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2592[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2592 -> 663[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2593[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2593[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2593 -> 664[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2594[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2594[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2594 -> 665[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2595[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];508 -> 2595[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2595 -> 666[label="",style="solid", color="blue", weight=3]; 26.21/10.58 509[label="vyy6002 == vyy502",fontsize=16,color="blue",shape="box"];2596[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2596[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2596 -> 667[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2597[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2597[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2597 -> 668[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2598[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2598[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2598 -> 669[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2599[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2599[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2599 -> 670[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2600[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2600[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2600 -> 671[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2601[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2601[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2601 -> 672[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2602[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2602[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2602 -> 673[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2603[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2603[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2603 -> 674[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2604[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2604[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2604 -> 675[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2605[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2605[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2605 -> 676[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2606[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2606[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2606 -> 677[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2607[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2607[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2607 -> 678[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2608[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2608[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2608 -> 679[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2609[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];509 -> 2609[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2609 -> 680[label="",style="solid", color="blue", weight=3]; 26.21/10.58 510 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 510[label="vyy6000 == vyy500",fontsize=16,color="magenta"];510 -> 681[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 510 -> 682[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 511 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 511[label="vyy6000 == vyy500",fontsize=16,color="magenta"];511 -> 683[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 511 -> 684[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 512 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 512[label="vyy6000 == vyy500",fontsize=16,color="magenta"];512 -> 685[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 512 -> 686[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 513 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 513[label="vyy6000 == vyy500",fontsize=16,color="magenta"];513 -> 687[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 513 -> 688[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 514 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 514[label="vyy6000 == vyy500",fontsize=16,color="magenta"];514 -> 689[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 514 -> 690[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 515 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 515[label="vyy6000 == vyy500",fontsize=16,color="magenta"];515 -> 691[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 515 -> 692[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 516 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 516[label="vyy6000 == vyy500",fontsize=16,color="magenta"];516 -> 693[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 516 -> 694[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 517 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 517[label="vyy6000 == vyy500",fontsize=16,color="magenta"];517 -> 695[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 517 -> 696[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 518 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 518[label="vyy6000 == vyy500",fontsize=16,color="magenta"];518 -> 697[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 518 -> 698[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 519 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 519[label="vyy6000 == vyy500",fontsize=16,color="magenta"];519 -> 699[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 519 -> 700[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 520 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 520[label="vyy6000 == vyy500",fontsize=16,color="magenta"];520 -> 701[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 520 -> 702[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 521 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 521[label="vyy6000 == vyy500",fontsize=16,color="magenta"];521 -> 703[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 521 -> 704[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 522 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 522[label="vyy6000 == vyy500",fontsize=16,color="magenta"];522 -> 705[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 522 -> 706[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 523 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 523[label="vyy6000 == vyy500",fontsize=16,color="magenta"];523 -> 707[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 523 -> 708[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 524 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 524[label="vyy6001 == vyy501",fontsize=16,color="magenta"];524 -> 709[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 524 -> 710[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 525 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 525[label="vyy6001 == vyy501",fontsize=16,color="magenta"];525 -> 711[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 525 -> 712[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 526 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 526[label="vyy6001 == vyy501",fontsize=16,color="magenta"];526 -> 713[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 526 -> 714[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 527 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 527[label="vyy6001 == vyy501",fontsize=16,color="magenta"];527 -> 715[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 527 -> 716[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 528 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 528[label="vyy6001 == vyy501",fontsize=16,color="magenta"];528 -> 717[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 528 -> 718[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 529 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 529[label="vyy6001 == vyy501",fontsize=16,color="magenta"];529 -> 719[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 529 -> 720[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 530 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 530[label="vyy6001 == vyy501",fontsize=16,color="magenta"];530 -> 721[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 530 -> 722[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 531 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 531[label="vyy6001 == vyy501",fontsize=16,color="magenta"];531 -> 723[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 531 -> 724[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 532 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 532[label="vyy6001 == vyy501",fontsize=16,color="magenta"];532 -> 725[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 532 -> 726[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 533 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 533[label="vyy6001 == vyy501",fontsize=16,color="magenta"];533 -> 727[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 533 -> 728[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 534 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 534[label="vyy6001 == vyy501",fontsize=16,color="magenta"];534 -> 729[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 534 -> 730[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 535 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 535[label="vyy6001 == vyy501",fontsize=16,color="magenta"];535 -> 731[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 535 -> 732[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 536 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 536[label="vyy6001 == vyy501",fontsize=16,color="magenta"];536 -> 733[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 536 -> 734[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 537 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 537[label="vyy6001 == vyy501",fontsize=16,color="magenta"];537 -> 735[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 537 -> 736[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 538 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 538[label="vyy6000 == vyy500",fontsize=16,color="magenta"];538 -> 737[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 538 -> 738[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 539 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 539[label="vyy6000 == vyy500",fontsize=16,color="magenta"];539 -> 739[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 539 -> 740[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 540 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 540[label="vyy6001 == vyy501",fontsize=16,color="magenta"];540 -> 741[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 540 -> 742[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 541 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 541[label="vyy6001 == vyy501",fontsize=16,color="magenta"];541 -> 743[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 541 -> 744[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1216[label="compare1 vyy48 vyy50 (vyy48 <= vyy50)",fontsize=16,color="burlywood",shape="box"];2610[label="vyy48/(vyy480,vyy481)",fontsize=10,color="white",style="solid",shape="box"];1216 -> 2610[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2610 -> 1250[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1217[label="EQ",fontsize=16,color="green",shape="box"];1218[label="vyy38",fontsize=16,color="green",shape="box"];1219[label="vyy40",fontsize=16,color="green",shape="box"];1220[label="vyy38",fontsize=16,color="green",shape="box"];1221[label="vyy40",fontsize=16,color="green",shape="box"];1222[label="vyy38",fontsize=16,color="green",shape="box"];1223[label="vyy40",fontsize=16,color="green",shape="box"];1224[label="vyy38",fontsize=16,color="green",shape="box"];1225[label="vyy40",fontsize=16,color="green",shape="box"];1226[label="vyy38",fontsize=16,color="green",shape="box"];1227[label="vyy40",fontsize=16,color="green",shape="box"];1228[label="vyy38",fontsize=16,color="green",shape="box"];1229[label="vyy40",fontsize=16,color="green",shape="box"];1230[label="vyy38",fontsize=16,color="green",shape="box"];1231[label="vyy40",fontsize=16,color="green",shape="box"];1232[label="vyy38",fontsize=16,color="green",shape="box"];1233[label="vyy40",fontsize=16,color="green",shape="box"];1234[label="vyy38",fontsize=16,color="green",shape="box"];1235[label="vyy40",fontsize=16,color="green",shape="box"];1236[label="vyy38",fontsize=16,color="green",shape="box"];1237[label="vyy40",fontsize=16,color="green",shape="box"];1238[label="vyy38",fontsize=16,color="green",shape="box"];1239[label="vyy40",fontsize=16,color="green",shape="box"];1240[label="vyy38",fontsize=16,color="green",shape="box"];1241[label="vyy40",fontsize=16,color="green",shape="box"];1242[label="vyy38",fontsize=16,color="green",shape="box"];1243[label="vyy40",fontsize=16,color="green",shape="box"];1244[label="vyy38",fontsize=16,color="green",shape="box"];1245[label="vyy40",fontsize=16,color="green",shape="box"];572[label="vyy6000",fontsize=16,color="green",shape="box"];573[label="vyy500",fontsize=16,color="green",shape="box"];574[label="vyy6000",fontsize=16,color="green",shape="box"];575[label="vyy500",fontsize=16,color="green",shape="box"];576[label="vyy6000",fontsize=16,color="green",shape="box"];577[label="vyy500",fontsize=16,color="green",shape="box"];578[label="vyy6000",fontsize=16,color="green",shape="box"];579[label="vyy500",fontsize=16,color="green",shape="box"];580[label="vyy6000",fontsize=16,color="green",shape="box"];581[label="vyy500",fontsize=16,color="green",shape="box"];582[label="vyy6000",fontsize=16,color="green",shape="box"];583[label="vyy500",fontsize=16,color="green",shape="box"];584[label="vyy6000",fontsize=16,color="green",shape="box"];585[label="vyy500",fontsize=16,color="green",shape="box"];586[label="vyy6000",fontsize=16,color="green",shape="box"];587[label="vyy500",fontsize=16,color="green",shape="box"];588[label="vyy6000",fontsize=16,color="green",shape="box"];589[label="vyy500",fontsize=16,color="green",shape="box"];590[label="vyy6000",fontsize=16,color="green",shape="box"];591[label="vyy500",fontsize=16,color="green",shape="box"];592[label="vyy6000",fontsize=16,color="green",shape="box"];593[label="vyy500",fontsize=16,color="green",shape="box"];594[label="vyy6000",fontsize=16,color="green",shape="box"];595[label="vyy500",fontsize=16,color="green",shape="box"];596[label="vyy6000",fontsize=16,color="green",shape="box"];597[label="vyy500",fontsize=16,color="green",shape="box"];598[label="vyy6000",fontsize=16,color="green",shape="box"];599[label="vyy500",fontsize=16,color="green",shape="box"];600[label="False",fontsize=16,color="green",shape="box"];601[label="vyy58",fontsize=16,color="green",shape="box"];602[label="primMulInt vyy6000 vyy501",fontsize=16,color="burlywood",shape="triangle"];2611[label="vyy6000/Pos vyy60000",fontsize=10,color="white",style="solid",shape="box"];602 -> 2611[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2611 -> 746[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2612[label="vyy6000/Neg vyy60000",fontsize=10,color="white",style="solid",shape="box"];602 -> 2612[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2612 -> 747[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 603[label="vyy6001",fontsize=16,color="green",shape="box"];604[label="vyy500",fontsize=16,color="green",shape="box"];605[label="vyy6000",fontsize=16,color="green",shape="box"];606[label="vyy501",fontsize=16,color="green",shape="box"];607[label="vyy6001",fontsize=16,color="green",shape="box"];608[label="vyy500",fontsize=16,color="green",shape="box"];609 -> 330[label="",style="dashed", color="red", weight=0]; 26.21/10.58 609[label="primEqNat vyy60000 vyy5000",fontsize=16,color="magenta"];609 -> 748[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 609 -> 749[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 610[label="False",fontsize=16,color="green",shape="box"];611[label="False",fontsize=16,color="green",shape="box"];612[label="True",fontsize=16,color="green",shape="box"];613[label="False",fontsize=16,color="green",shape="box"];614[label="True",fontsize=16,color="green",shape="box"];615 -> 330[label="",style="dashed", color="red", weight=0]; 26.21/10.58 615[label="primEqNat vyy60000 vyy5000",fontsize=16,color="magenta"];615 -> 750[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 615 -> 751[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 616[label="False",fontsize=16,color="green",shape="box"];617[label="False",fontsize=16,color="green",shape="box"];618[label="True",fontsize=16,color="green",shape="box"];619[label="False",fontsize=16,color="green",shape="box"];620[label="True",fontsize=16,color="green",shape="box"];621[label="primEqNat (Succ vyy60000) (Succ vyy5000)",fontsize=16,color="black",shape="box"];621 -> 752[label="",style="solid", color="black", weight=3]; 26.21/10.58 622[label="primEqNat (Succ vyy60000) Zero",fontsize=16,color="black",shape="box"];622 -> 753[label="",style="solid", color="black", weight=3]; 26.21/10.58 623[label="primEqNat Zero (Succ vyy5000)",fontsize=16,color="black",shape="box"];623 -> 754[label="",style="solid", color="black", weight=3]; 26.21/10.58 624[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];624 -> 755[label="",style="solid", color="black", weight=3]; 26.21/10.58 625[label="vyy6000",fontsize=16,color="green",shape="box"];626[label="vyy500",fontsize=16,color="green",shape="box"];627[label="vyy6000",fontsize=16,color="green",shape="box"];628[label="vyy500",fontsize=16,color="green",shape="box"];629[label="vyy6000",fontsize=16,color="green",shape="box"];630[label="vyy500",fontsize=16,color="green",shape="box"];631[label="vyy6000",fontsize=16,color="green",shape="box"];632[label="vyy500",fontsize=16,color="green",shape="box"];633[label="vyy6000",fontsize=16,color="green",shape="box"];634[label="vyy500",fontsize=16,color="green",shape="box"];635[label="vyy6000",fontsize=16,color="green",shape="box"];636[label="vyy500",fontsize=16,color="green",shape="box"];637[label="vyy6000",fontsize=16,color="green",shape="box"];638[label="vyy500",fontsize=16,color="green",shape="box"];639[label="vyy6000",fontsize=16,color="green",shape="box"];640[label="vyy500",fontsize=16,color="green",shape="box"];641[label="vyy6000",fontsize=16,color="green",shape="box"];642[label="vyy500",fontsize=16,color="green",shape="box"];643[label="vyy6000",fontsize=16,color="green",shape="box"];644[label="vyy500",fontsize=16,color="green",shape="box"];645[label="vyy6000",fontsize=16,color="green",shape="box"];646[label="vyy500",fontsize=16,color="green",shape="box"];647[label="vyy6000",fontsize=16,color="green",shape="box"];648[label="vyy500",fontsize=16,color="green",shape="box"];649[label="vyy6000",fontsize=16,color="green",shape="box"];650[label="vyy500",fontsize=16,color="green",shape="box"];651[label="vyy6000",fontsize=16,color="green",shape="box"];652[label="vyy500",fontsize=16,color="green",shape="box"];653 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 653[label="vyy6001 == vyy501",fontsize=16,color="magenta"];653 -> 756[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 653 -> 757[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 654 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 654[label="vyy6001 == vyy501",fontsize=16,color="magenta"];654 -> 758[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 654 -> 759[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 655 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 655[label="vyy6001 == vyy501",fontsize=16,color="magenta"];655 -> 760[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 655 -> 761[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 656 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 656[label="vyy6001 == vyy501",fontsize=16,color="magenta"];656 -> 762[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 656 -> 763[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 657 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 657[label="vyy6001 == vyy501",fontsize=16,color="magenta"];657 -> 764[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 657 -> 765[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 658 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 658[label="vyy6001 == vyy501",fontsize=16,color="magenta"];658 -> 766[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 658 -> 767[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 659 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 659[label="vyy6001 == vyy501",fontsize=16,color="magenta"];659 -> 768[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 659 -> 769[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 660 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 660[label="vyy6001 == vyy501",fontsize=16,color="magenta"];660 -> 770[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 660 -> 771[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 661 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 661[label="vyy6001 == vyy501",fontsize=16,color="magenta"];661 -> 772[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 661 -> 773[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 662 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 662[label="vyy6001 == vyy501",fontsize=16,color="magenta"];662 -> 774[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 662 -> 775[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 663 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 663[label="vyy6001 == vyy501",fontsize=16,color="magenta"];663 -> 776[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 663 -> 777[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 664 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 664[label="vyy6001 == vyy501",fontsize=16,color="magenta"];664 -> 778[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 664 -> 779[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 665 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 665[label="vyy6001 == vyy501",fontsize=16,color="magenta"];665 -> 780[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 665 -> 781[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 666 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 666[label="vyy6001 == vyy501",fontsize=16,color="magenta"];666 -> 782[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 666 -> 783[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 667 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 667[label="vyy6002 == vyy502",fontsize=16,color="magenta"];667 -> 784[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 667 -> 785[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 668 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 668[label="vyy6002 == vyy502",fontsize=16,color="magenta"];668 -> 786[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 668 -> 787[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 669 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 669[label="vyy6002 == vyy502",fontsize=16,color="magenta"];669 -> 788[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 669 -> 789[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 670 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 670[label="vyy6002 == vyy502",fontsize=16,color="magenta"];670 -> 790[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 670 -> 791[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 671 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 671[label="vyy6002 == vyy502",fontsize=16,color="magenta"];671 -> 792[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 671 -> 793[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 672 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 672[label="vyy6002 == vyy502",fontsize=16,color="magenta"];672 -> 794[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 672 -> 795[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 673 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 673[label="vyy6002 == vyy502",fontsize=16,color="magenta"];673 -> 796[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 673 -> 797[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 674 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 674[label="vyy6002 == vyy502",fontsize=16,color="magenta"];674 -> 798[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 674 -> 799[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 675 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 675[label="vyy6002 == vyy502",fontsize=16,color="magenta"];675 -> 800[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 675 -> 801[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 676 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 676[label="vyy6002 == vyy502",fontsize=16,color="magenta"];676 -> 802[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 676 -> 803[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 677 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 677[label="vyy6002 == vyy502",fontsize=16,color="magenta"];677 -> 804[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 677 -> 805[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 678 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 678[label="vyy6002 == vyy502",fontsize=16,color="magenta"];678 -> 806[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 678 -> 807[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 679 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 679[label="vyy6002 == vyy502",fontsize=16,color="magenta"];679 -> 808[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 679 -> 809[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 680 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 680[label="vyy6002 == vyy502",fontsize=16,color="magenta"];680 -> 810[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 680 -> 811[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 681[label="vyy6000",fontsize=16,color="green",shape="box"];682[label="vyy500",fontsize=16,color="green",shape="box"];683[label="vyy6000",fontsize=16,color="green",shape="box"];684[label="vyy500",fontsize=16,color="green",shape="box"];685[label="vyy6000",fontsize=16,color="green",shape="box"];686[label="vyy500",fontsize=16,color="green",shape="box"];687[label="vyy6000",fontsize=16,color="green",shape="box"];688[label="vyy500",fontsize=16,color="green",shape="box"];689[label="vyy6000",fontsize=16,color="green",shape="box"];690[label="vyy500",fontsize=16,color="green",shape="box"];691[label="vyy6000",fontsize=16,color="green",shape="box"];692[label="vyy500",fontsize=16,color="green",shape="box"];693[label="vyy6000",fontsize=16,color="green",shape="box"];694[label="vyy500",fontsize=16,color="green",shape="box"];695[label="vyy6000",fontsize=16,color="green",shape="box"];696[label="vyy500",fontsize=16,color="green",shape="box"];697[label="vyy6000",fontsize=16,color="green",shape="box"];698[label="vyy500",fontsize=16,color="green",shape="box"];699[label="vyy6000",fontsize=16,color="green",shape="box"];700[label="vyy500",fontsize=16,color="green",shape="box"];701[label="vyy6000",fontsize=16,color="green",shape="box"];702[label="vyy500",fontsize=16,color="green",shape="box"];703[label="vyy6000",fontsize=16,color="green",shape="box"];704[label="vyy500",fontsize=16,color="green",shape="box"];705[label="vyy6000",fontsize=16,color="green",shape="box"];706[label="vyy500",fontsize=16,color="green",shape="box"];707[label="vyy6000",fontsize=16,color="green",shape="box"];708[label="vyy500",fontsize=16,color="green",shape="box"];709[label="vyy6001",fontsize=16,color="green",shape="box"];710[label="vyy501",fontsize=16,color="green",shape="box"];711[label="vyy6001",fontsize=16,color="green",shape="box"];712[label="vyy501",fontsize=16,color="green",shape="box"];713[label="vyy6001",fontsize=16,color="green",shape="box"];714[label="vyy501",fontsize=16,color="green",shape="box"];715[label="vyy6001",fontsize=16,color="green",shape="box"];716[label="vyy501",fontsize=16,color="green",shape="box"];717[label="vyy6001",fontsize=16,color="green",shape="box"];718[label="vyy501",fontsize=16,color="green",shape="box"];719[label="vyy6001",fontsize=16,color="green",shape="box"];720[label="vyy501",fontsize=16,color="green",shape="box"];721[label="vyy6001",fontsize=16,color="green",shape="box"];722[label="vyy501",fontsize=16,color="green",shape="box"];723[label="vyy6001",fontsize=16,color="green",shape="box"];724[label="vyy501",fontsize=16,color="green",shape="box"];725[label="vyy6001",fontsize=16,color="green",shape="box"];726[label="vyy501",fontsize=16,color="green",shape="box"];727[label="vyy6001",fontsize=16,color="green",shape="box"];728[label="vyy501",fontsize=16,color="green",shape="box"];729[label="vyy6001",fontsize=16,color="green",shape="box"];730[label="vyy501",fontsize=16,color="green",shape="box"];731[label="vyy6001",fontsize=16,color="green",shape="box"];732[label="vyy501",fontsize=16,color="green",shape="box"];733[label="vyy6001",fontsize=16,color="green",shape="box"];734[label="vyy501",fontsize=16,color="green",shape="box"];735[label="vyy6001",fontsize=16,color="green",shape="box"];736[label="vyy501",fontsize=16,color="green",shape="box"];737[label="vyy6000",fontsize=16,color="green",shape="box"];738[label="vyy500",fontsize=16,color="green",shape="box"];739[label="vyy6000",fontsize=16,color="green",shape="box"];740[label="vyy500",fontsize=16,color="green",shape="box"];741[label="vyy6001",fontsize=16,color="green",shape="box"];742[label="vyy501",fontsize=16,color="green",shape="box"];743[label="vyy6001",fontsize=16,color="green",shape="box"];744[label="vyy501",fontsize=16,color="green",shape="box"];1250[label="compare1 (vyy480,vyy481) vyy50 ((vyy480,vyy481) <= vyy50)",fontsize=16,color="burlywood",shape="box"];2613[label="vyy50/(vyy500,vyy501)",fontsize=10,color="white",style="solid",shape="box"];1250 -> 2613[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2613 -> 1253[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 746[label="primMulInt (Pos vyy60000) vyy501",fontsize=16,color="burlywood",shape="box"];2614[label="vyy501/Pos vyy5010",fontsize=10,color="white",style="solid",shape="box"];746 -> 2614[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2614 -> 814[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2615[label="vyy501/Neg vyy5010",fontsize=10,color="white",style="solid",shape="box"];746 -> 2615[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2615 -> 815[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 747[label="primMulInt (Neg vyy60000) vyy501",fontsize=16,color="burlywood",shape="box"];2616[label="vyy501/Pos vyy5010",fontsize=10,color="white",style="solid",shape="box"];747 -> 2616[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2616 -> 816[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2617[label="vyy501/Neg vyy5010",fontsize=10,color="white",style="solid",shape="box"];747 -> 2617[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2617 -> 817[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 748[label="vyy60000",fontsize=16,color="green",shape="box"];749[label="vyy5000",fontsize=16,color="green",shape="box"];750[label="vyy60000",fontsize=16,color="green",shape="box"];751[label="vyy5000",fontsize=16,color="green",shape="box"];752 -> 330[label="",style="dashed", color="red", weight=0]; 26.21/10.58 752[label="primEqNat vyy60000 vyy5000",fontsize=16,color="magenta"];752 -> 818[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 752 -> 819[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 753[label="False",fontsize=16,color="green",shape="box"];754[label="False",fontsize=16,color="green",shape="box"];755[label="True",fontsize=16,color="green",shape="box"];756[label="vyy6001",fontsize=16,color="green",shape="box"];757[label="vyy501",fontsize=16,color="green",shape="box"];758[label="vyy6001",fontsize=16,color="green",shape="box"];759[label="vyy501",fontsize=16,color="green",shape="box"];760[label="vyy6001",fontsize=16,color="green",shape="box"];761[label="vyy501",fontsize=16,color="green",shape="box"];762[label="vyy6001",fontsize=16,color="green",shape="box"];763[label="vyy501",fontsize=16,color="green",shape="box"];764[label="vyy6001",fontsize=16,color="green",shape="box"];765[label="vyy501",fontsize=16,color="green",shape="box"];766[label="vyy6001",fontsize=16,color="green",shape="box"];767[label="vyy501",fontsize=16,color="green",shape="box"];768[label="vyy6001",fontsize=16,color="green",shape="box"];769[label="vyy501",fontsize=16,color="green",shape="box"];770[label="vyy6001",fontsize=16,color="green",shape="box"];771[label="vyy501",fontsize=16,color="green",shape="box"];772[label="vyy6001",fontsize=16,color="green",shape="box"];773[label="vyy501",fontsize=16,color="green",shape="box"];774[label="vyy6001",fontsize=16,color="green",shape="box"];775[label="vyy501",fontsize=16,color="green",shape="box"];776[label="vyy6001",fontsize=16,color="green",shape="box"];777[label="vyy501",fontsize=16,color="green",shape="box"];778[label="vyy6001",fontsize=16,color="green",shape="box"];779[label="vyy501",fontsize=16,color="green",shape="box"];780[label="vyy6001",fontsize=16,color="green",shape="box"];781[label="vyy501",fontsize=16,color="green",shape="box"];782[label="vyy6001",fontsize=16,color="green",shape="box"];783[label="vyy501",fontsize=16,color="green",shape="box"];784[label="vyy6002",fontsize=16,color="green",shape="box"];785[label="vyy502",fontsize=16,color="green",shape="box"];786[label="vyy6002",fontsize=16,color="green",shape="box"];787[label="vyy502",fontsize=16,color="green",shape="box"];788[label="vyy6002",fontsize=16,color="green",shape="box"];789[label="vyy502",fontsize=16,color="green",shape="box"];790[label="vyy6002",fontsize=16,color="green",shape="box"];791[label="vyy502",fontsize=16,color="green",shape="box"];792[label="vyy6002",fontsize=16,color="green",shape="box"];793[label="vyy502",fontsize=16,color="green",shape="box"];794[label="vyy6002",fontsize=16,color="green",shape="box"];795[label="vyy502",fontsize=16,color="green",shape="box"];796[label="vyy6002",fontsize=16,color="green",shape="box"];797[label="vyy502",fontsize=16,color="green",shape="box"];798[label="vyy6002",fontsize=16,color="green",shape="box"];799[label="vyy502",fontsize=16,color="green",shape="box"];800[label="vyy6002",fontsize=16,color="green",shape="box"];801[label="vyy502",fontsize=16,color="green",shape="box"];802[label="vyy6002",fontsize=16,color="green",shape="box"];803[label="vyy502",fontsize=16,color="green",shape="box"];804[label="vyy6002",fontsize=16,color="green",shape="box"];805[label="vyy502",fontsize=16,color="green",shape="box"];806[label="vyy6002",fontsize=16,color="green",shape="box"];807[label="vyy502",fontsize=16,color="green",shape="box"];808[label="vyy6002",fontsize=16,color="green",shape="box"];809[label="vyy502",fontsize=16,color="green",shape="box"];810[label="vyy6002",fontsize=16,color="green",shape="box"];811[label="vyy502",fontsize=16,color="green",shape="box"];1253[label="compare1 (vyy480,vyy481) (vyy500,vyy501) ((vyy480,vyy481) <= (vyy500,vyy501))",fontsize=16,color="black",shape="box"];1253 -> 1255[label="",style="solid", color="black", weight=3]; 26.21/10.58 814[label="primMulInt (Pos vyy60000) (Pos vyy5010)",fontsize=16,color="black",shape="box"];814 -> 853[label="",style="solid", color="black", weight=3]; 26.21/10.58 815[label="primMulInt (Pos vyy60000) (Neg vyy5010)",fontsize=16,color="black",shape="box"];815 -> 854[label="",style="solid", color="black", weight=3]; 26.21/10.58 816[label="primMulInt (Neg vyy60000) (Pos vyy5010)",fontsize=16,color="black",shape="box"];816 -> 855[label="",style="solid", color="black", weight=3]; 26.21/10.58 817[label="primMulInt (Neg vyy60000) (Neg vyy5010)",fontsize=16,color="black",shape="box"];817 -> 856[label="",style="solid", color="black", weight=3]; 26.21/10.58 818[label="vyy60000",fontsize=16,color="green",shape="box"];819[label="vyy5000",fontsize=16,color="green",shape="box"];1255 -> 1262[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1255[label="compare1 (vyy480,vyy481) (vyy500,vyy501) (vyy480 < vyy500 || vyy480 == vyy500 && vyy481 <= vyy501)",fontsize=16,color="magenta"];1255 -> 1263[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1255 -> 1264[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1255 -> 1265[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1255 -> 1266[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1255 -> 1267[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1255 -> 1268[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 853[label="Pos (primMulNat vyy60000 vyy5010)",fontsize=16,color="green",shape="box"];853 -> 901[label="",style="dashed", color="green", weight=3]; 26.21/10.58 854[label="Neg (primMulNat vyy60000 vyy5010)",fontsize=16,color="green",shape="box"];854 -> 902[label="",style="dashed", color="green", weight=3]; 26.21/10.58 855[label="Neg (primMulNat vyy60000 vyy5010)",fontsize=16,color="green",shape="box"];855 -> 903[label="",style="dashed", color="green", weight=3]; 26.21/10.58 856[label="Pos (primMulNat vyy60000 vyy5010)",fontsize=16,color="green",shape="box"];856 -> 904[label="",style="dashed", color="green", weight=3]; 26.21/10.58 1263[label="vyy481",fontsize=16,color="green",shape="box"];1264[label="vyy500",fontsize=16,color="green",shape="box"];1265 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1265[label="vyy480 == vyy500 && vyy481 <= vyy501",fontsize=16,color="magenta"];1265 -> 1275[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1265 -> 1276[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1266[label="vyy480",fontsize=16,color="green",shape="box"];1267[label="vyy480 < vyy500",fontsize=16,color="blue",shape="box"];2618[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2618[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2618 -> 1277[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2619[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2619[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2619 -> 1278[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2620[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2620[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2620 -> 1279[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2621[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2621[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2621 -> 1280[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2622[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2622[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2622 -> 1281[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2623[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2623[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2623 -> 1282[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2624[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2624[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2624 -> 1283[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2625[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2625[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2625 -> 1284[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2626[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2626[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2626 -> 1285[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2627[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2627[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2627 -> 1286[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2628[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2628[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2628 -> 1287[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2629[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2629[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2629 -> 1288[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2630[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2630[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2630 -> 1289[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2631[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1267 -> 2631[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2631 -> 1290[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1268[label="vyy501",fontsize=16,color="green",shape="box"];1262[label="compare1 (vyy92,vyy93) (vyy94,vyy95) (vyy96 || vyy97)",fontsize=16,color="burlywood",shape="triangle"];2632[label="vyy96/False",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2632[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2632 -> 1291[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2633[label="vyy96/True",fontsize=10,color="white",style="solid",shape="box"];1262 -> 2633[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2633 -> 1292[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 901[label="primMulNat vyy60000 vyy5010",fontsize=16,color="burlywood",shape="triangle"];2634[label="vyy60000/Succ vyy600000",fontsize=10,color="white",style="solid",shape="box"];901 -> 2634[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2634 -> 983[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2635[label="vyy60000/Zero",fontsize=10,color="white",style="solid",shape="box"];901 -> 2635[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2635 -> 984[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 902 -> 901[label="",style="dashed", color="red", weight=0]; 26.21/10.58 902[label="primMulNat vyy60000 vyy5010",fontsize=16,color="magenta"];902 -> 985[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 903 -> 901[label="",style="dashed", color="red", weight=0]; 26.21/10.58 903[label="primMulNat vyy60000 vyy5010",fontsize=16,color="magenta"];903 -> 986[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 904 -> 901[label="",style="dashed", color="red", weight=0]; 26.21/10.58 904[label="primMulNat vyy60000 vyy5010",fontsize=16,color="magenta"];904 -> 987[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 904 -> 988[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1275[label="vyy480 == vyy500",fontsize=16,color="blue",shape="box"];2636[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2636[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2636 -> 1297[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2637[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2637[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2637 -> 1298[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2638[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2638[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2638 -> 1299[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2639[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2639[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2639 -> 1300[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2640[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2640[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2640 -> 1301[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2641[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2641[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2641 -> 1302[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2642[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2642[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2642 -> 1303[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2643[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2643[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2643 -> 1304[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2644[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2644[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2644 -> 1305[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2645[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2645[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2645 -> 1306[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2646[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2646[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2646 -> 1307[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2647[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2647[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2647 -> 1308[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2648[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2648[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2648 -> 1309[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2649[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1275 -> 2649[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2649 -> 1310[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1276[label="vyy481 <= vyy501",fontsize=16,color="blue",shape="box"];2650[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2650[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2650 -> 1311[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2651[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2651[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2651 -> 1312[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2652[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2652[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2652 -> 1313[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2653[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2653[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2653 -> 1314[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2654[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2654[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2654 -> 1315[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2655[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2655[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2655 -> 1316[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2656[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2656[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2656 -> 1317[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2657[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2657[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2657 -> 1318[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2658[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2658[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2658 -> 1319[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2659[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2659[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2659 -> 1320[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2660[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2660[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2660 -> 1321[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2661[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2661[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2661 -> 1322[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2662[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2662[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2662 -> 1323[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2663[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1276 -> 2663[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2663 -> 1324[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1277[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1277 -> 1325[label="",style="solid", color="black", weight=3]; 26.21/10.58 1278[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1278 -> 1326[label="",style="solid", color="black", weight=3]; 26.21/10.58 1279[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1279 -> 1327[label="",style="solid", color="black", weight=3]; 26.21/10.58 1280[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1280 -> 1328[label="",style="solid", color="black", weight=3]; 26.21/10.58 1281[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1281 -> 1329[label="",style="solid", color="black", weight=3]; 26.21/10.58 1282[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1282 -> 1330[label="",style="solid", color="black", weight=3]; 26.21/10.58 1283[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1283 -> 1331[label="",style="solid", color="black", weight=3]; 26.21/10.58 1284[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1284 -> 1332[label="",style="solid", color="black", weight=3]; 26.21/10.58 1285[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1285 -> 1333[label="",style="solid", color="black", weight=3]; 26.21/10.58 1286[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1286 -> 1334[label="",style="solid", color="black", weight=3]; 26.21/10.58 1287[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1287 -> 1335[label="",style="solid", color="black", weight=3]; 26.21/10.58 1288[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1288 -> 1336[label="",style="solid", color="black", weight=3]; 26.21/10.58 1289[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1289 -> 1337[label="",style="solid", color="black", weight=3]; 26.21/10.58 1290[label="vyy480 < vyy500",fontsize=16,color="black",shape="triangle"];1290 -> 1338[label="",style="solid", color="black", weight=3]; 26.21/10.58 1291[label="compare1 (vyy92,vyy93) (vyy94,vyy95) (False || vyy97)",fontsize=16,color="black",shape="box"];1291 -> 1339[label="",style="solid", color="black", weight=3]; 26.21/10.58 1292[label="compare1 (vyy92,vyy93) (vyy94,vyy95) (True || vyy97)",fontsize=16,color="black",shape="box"];1292 -> 1340[label="",style="solid", color="black", weight=3]; 26.21/10.58 983[label="primMulNat (Succ vyy600000) vyy5010",fontsize=16,color="burlywood",shape="box"];2664[label="vyy5010/Succ vyy50100",fontsize=10,color="white",style="solid",shape="box"];983 -> 2664[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2664 -> 1037[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2665[label="vyy5010/Zero",fontsize=10,color="white",style="solid",shape="box"];983 -> 2665[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2665 -> 1038[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 984[label="primMulNat Zero vyy5010",fontsize=16,color="burlywood",shape="box"];2666[label="vyy5010/Succ vyy50100",fontsize=10,color="white",style="solid",shape="box"];984 -> 2666[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2666 -> 1039[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2667[label="vyy5010/Zero",fontsize=10,color="white",style="solid",shape="box"];984 -> 2667[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2667 -> 1040[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 985[label="vyy5010",fontsize=16,color="green",shape="box"];986[label="vyy60000",fontsize=16,color="green",shape="box"];987[label="vyy60000",fontsize=16,color="green",shape="box"];988[label="vyy5010",fontsize=16,color="green",shape="box"];1297 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1297[label="vyy480 == vyy500",fontsize=16,color="magenta"];1297 -> 1345[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1297 -> 1346[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1298 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1298[label="vyy480 == vyy500",fontsize=16,color="magenta"];1298 -> 1347[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1298 -> 1348[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1299 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1299[label="vyy480 == vyy500",fontsize=16,color="magenta"];1299 -> 1349[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1299 -> 1350[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1300 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1300[label="vyy480 == vyy500",fontsize=16,color="magenta"];1300 -> 1351[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1300 -> 1352[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1301 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1301[label="vyy480 == vyy500",fontsize=16,color="magenta"];1301 -> 1353[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1301 -> 1354[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1302 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1302[label="vyy480 == vyy500",fontsize=16,color="magenta"];1302 -> 1355[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1302 -> 1356[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1303 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1303[label="vyy480 == vyy500",fontsize=16,color="magenta"];1303 -> 1357[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1303 -> 1358[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1304 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1304[label="vyy480 == vyy500",fontsize=16,color="magenta"];1304 -> 1359[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1304 -> 1360[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1305 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1305[label="vyy480 == vyy500",fontsize=16,color="magenta"];1305 -> 1361[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1305 -> 1362[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1306 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1306[label="vyy480 == vyy500",fontsize=16,color="magenta"];1306 -> 1363[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1306 -> 1364[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1307 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1307[label="vyy480 == vyy500",fontsize=16,color="magenta"];1307 -> 1365[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1307 -> 1366[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1308 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1308[label="vyy480 == vyy500",fontsize=16,color="magenta"];1308 -> 1367[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1308 -> 1368[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1309 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1309[label="vyy480 == vyy500",fontsize=16,color="magenta"];1309 -> 1369[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1309 -> 1370[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1310 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1310[label="vyy480 == vyy500",fontsize=16,color="magenta"];1310 -> 1371[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1310 -> 1372[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1311[label="vyy481 <= vyy501",fontsize=16,color="burlywood",shape="triangle"];2668[label="vyy481/(vyy4810,vyy4811,vyy4812)",fontsize=10,color="white",style="solid",shape="box"];1311 -> 2668[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2668 -> 1373[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1312[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1312 -> 1374[label="",style="solid", color="black", weight=3]; 26.21/10.58 1313[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1313 -> 1375[label="",style="solid", color="black", weight=3]; 26.21/10.58 1314[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1314 -> 1376[label="",style="solid", color="black", weight=3]; 26.21/10.58 1315[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1315 -> 1377[label="",style="solid", color="black", weight=3]; 26.21/10.58 1316[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1316 -> 1378[label="",style="solid", color="black", weight=3]; 26.21/10.58 1317[label="vyy481 <= vyy501",fontsize=16,color="burlywood",shape="triangle"];2669[label="vyy481/LT",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2669[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2669 -> 1379[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2670[label="vyy481/EQ",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2670[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2670 -> 1380[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2671[label="vyy481/GT",fontsize=10,color="white",style="solid",shape="box"];1317 -> 2671[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2671 -> 1381[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1318[label="vyy481 <= vyy501",fontsize=16,color="burlywood",shape="triangle"];2672[label="vyy481/False",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2672[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2672 -> 1382[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2673[label="vyy481/True",fontsize=10,color="white",style="solid",shape="box"];1318 -> 2673[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2673 -> 1383[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1319[label="vyy481 <= vyy501",fontsize=16,color="burlywood",shape="triangle"];2674[label="vyy481/Left vyy4810",fontsize=10,color="white",style="solid",shape="box"];1319 -> 2674[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2674 -> 1384[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2675[label="vyy481/Right vyy4810",fontsize=10,color="white",style="solid",shape="box"];1319 -> 2675[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2675 -> 1385[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1320[label="vyy481 <= vyy501",fontsize=16,color="burlywood",shape="triangle"];2676[label="vyy481/Nothing",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2676[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2676 -> 1386[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2677[label="vyy481/Just vyy4810",fontsize=10,color="white",style="solid",shape="box"];1320 -> 2677[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2677 -> 1387[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1321[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1321 -> 1388[label="",style="solid", color="black", weight=3]; 26.21/10.58 1322[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1322 -> 1389[label="",style="solid", color="black", weight=3]; 26.21/10.58 1323[label="vyy481 <= vyy501",fontsize=16,color="black",shape="triangle"];1323 -> 1390[label="",style="solid", color="black", weight=3]; 26.21/10.58 1324[label="vyy481 <= vyy501",fontsize=16,color="burlywood",shape="triangle"];2678[label="vyy481/(vyy4810,vyy4811)",fontsize=10,color="white",style="solid",shape="box"];1324 -> 2678[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2678 -> 1391[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1325 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1325[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1325 -> 1392[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1325 -> 1393[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1326 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1326[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1326 -> 1394[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1326 -> 1395[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1327 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1327[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1327 -> 1396[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1327 -> 1397[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1328 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1328[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1328 -> 1398[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1328 -> 1399[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1329 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1329[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1329 -> 1400[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1329 -> 1401[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1330 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1330[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1330 -> 1402[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1330 -> 1403[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1331 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1331[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1331 -> 1404[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1331 -> 1405[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1332 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1332[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1332 -> 1406[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1332 -> 1407[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1333 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1333[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1333 -> 1408[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1333 -> 1409[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1334 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1334[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1334 -> 1410[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1334 -> 1411[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1335 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1335[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1335 -> 1412[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1335 -> 1413[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1336 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1336[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1336 -> 1414[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1336 -> 1415[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1337 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1337[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1337 -> 1416[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1337 -> 1417[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1338 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1338[label="compare vyy480 vyy500 == LT",fontsize=16,color="magenta"];1338 -> 1418[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1338 -> 1419[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1339[label="compare1 (vyy92,vyy93) (vyy94,vyy95) vyy97",fontsize=16,color="burlywood",shape="triangle"];2679[label="vyy97/False",fontsize=10,color="white",style="solid",shape="box"];1339 -> 2679[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2679 -> 1420[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2680[label="vyy97/True",fontsize=10,color="white",style="solid",shape="box"];1339 -> 2680[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2680 -> 1421[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1340 -> 1339[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1340[label="compare1 (vyy92,vyy93) (vyy94,vyy95) True",fontsize=16,color="magenta"];1340 -> 1422[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1037[label="primMulNat (Succ vyy600000) (Succ vyy50100)",fontsize=16,color="black",shape="box"];1037 -> 1092[label="",style="solid", color="black", weight=3]; 26.21/10.58 1038[label="primMulNat (Succ vyy600000) Zero",fontsize=16,color="black",shape="box"];1038 -> 1093[label="",style="solid", color="black", weight=3]; 26.21/10.58 1039[label="primMulNat Zero (Succ vyy50100)",fontsize=16,color="black",shape="box"];1039 -> 1094[label="",style="solid", color="black", weight=3]; 26.21/10.58 1040[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1040 -> 1095[label="",style="solid", color="black", weight=3]; 26.21/10.58 1345[label="vyy480",fontsize=16,color="green",shape="box"];1346[label="vyy500",fontsize=16,color="green",shape="box"];1347[label="vyy480",fontsize=16,color="green",shape="box"];1348[label="vyy500",fontsize=16,color="green",shape="box"];1349[label="vyy480",fontsize=16,color="green",shape="box"];1350[label="vyy500",fontsize=16,color="green",shape="box"];1351[label="vyy480",fontsize=16,color="green",shape="box"];1352[label="vyy500",fontsize=16,color="green",shape="box"];1353[label="vyy480",fontsize=16,color="green",shape="box"];1354[label="vyy500",fontsize=16,color="green",shape="box"];1355[label="vyy480",fontsize=16,color="green",shape="box"];1356[label="vyy500",fontsize=16,color="green",shape="box"];1357[label="vyy480",fontsize=16,color="green",shape="box"];1358[label="vyy500",fontsize=16,color="green",shape="box"];1359[label="vyy480",fontsize=16,color="green",shape="box"];1360[label="vyy500",fontsize=16,color="green",shape="box"];1361[label="vyy480",fontsize=16,color="green",shape="box"];1362[label="vyy500",fontsize=16,color="green",shape="box"];1363[label="vyy480",fontsize=16,color="green",shape="box"];1364[label="vyy500",fontsize=16,color="green",shape="box"];1365[label="vyy480",fontsize=16,color="green",shape="box"];1366[label="vyy500",fontsize=16,color="green",shape="box"];1367[label="vyy480",fontsize=16,color="green",shape="box"];1368[label="vyy500",fontsize=16,color="green",shape="box"];1369[label="vyy480",fontsize=16,color="green",shape="box"];1370[label="vyy500",fontsize=16,color="green",shape="box"];1371[label="vyy480",fontsize=16,color="green",shape="box"];1372[label="vyy500",fontsize=16,color="green",shape="box"];1373[label="(vyy4810,vyy4811,vyy4812) <= vyy501",fontsize=16,color="burlywood",shape="box"];2681[label="vyy501/(vyy5010,vyy5011,vyy5012)",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2681[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2681 -> 1424[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1374[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1374 -> 1425[label="",style="solid", color="black", weight=3]; 26.21/10.58 1375[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1375 -> 1426[label="",style="solid", color="black", weight=3]; 26.21/10.58 1376[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1376 -> 1427[label="",style="solid", color="black", weight=3]; 26.21/10.58 1377[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1377 -> 1428[label="",style="solid", color="black", weight=3]; 26.21/10.58 1378[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1378 -> 1429[label="",style="solid", color="black", weight=3]; 26.21/10.58 1379[label="LT <= vyy501",fontsize=16,color="burlywood",shape="box"];2682[label="vyy501/LT",fontsize=10,color="white",style="solid",shape="box"];1379 -> 2682[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2682 -> 1430[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2683[label="vyy501/EQ",fontsize=10,color="white",style="solid",shape="box"];1379 -> 2683[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2683 -> 1431[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2684[label="vyy501/GT",fontsize=10,color="white",style="solid",shape="box"];1379 -> 2684[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2684 -> 1432[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1380[label="EQ <= vyy501",fontsize=16,color="burlywood",shape="box"];2685[label="vyy501/LT",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2685[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2685 -> 1433[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2686[label="vyy501/EQ",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2686[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2686 -> 1434[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2687[label="vyy501/GT",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2687[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2687 -> 1435[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1381[label="GT <= vyy501",fontsize=16,color="burlywood",shape="box"];2688[label="vyy501/LT",fontsize=10,color="white",style="solid",shape="box"];1381 -> 2688[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2688 -> 1436[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2689[label="vyy501/EQ",fontsize=10,color="white",style="solid",shape="box"];1381 -> 2689[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2689 -> 1437[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2690[label="vyy501/GT",fontsize=10,color="white",style="solid",shape="box"];1381 -> 2690[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2690 -> 1438[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1382[label="False <= vyy501",fontsize=16,color="burlywood",shape="box"];2691[label="vyy501/False",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2691[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2691 -> 1439[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2692[label="vyy501/True",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2692[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2692 -> 1440[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1383[label="True <= vyy501",fontsize=16,color="burlywood",shape="box"];2693[label="vyy501/False",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2693[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2693 -> 1441[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2694[label="vyy501/True",fontsize=10,color="white",style="solid",shape="box"];1383 -> 2694[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2694 -> 1442[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1384[label="Left vyy4810 <= vyy501",fontsize=16,color="burlywood",shape="box"];2695[label="vyy501/Left vyy5010",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2695[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2695 -> 1443[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2696[label="vyy501/Right vyy5010",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2696[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2696 -> 1444[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1385[label="Right vyy4810 <= vyy501",fontsize=16,color="burlywood",shape="box"];2697[label="vyy501/Left vyy5010",fontsize=10,color="white",style="solid",shape="box"];1385 -> 2697[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2697 -> 1445[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2698[label="vyy501/Right vyy5010",fontsize=10,color="white",style="solid",shape="box"];1385 -> 2698[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2698 -> 1446[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1386[label="Nothing <= vyy501",fontsize=16,color="burlywood",shape="box"];2699[label="vyy501/Nothing",fontsize=10,color="white",style="solid",shape="box"];1386 -> 2699[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2699 -> 1447[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2700[label="vyy501/Just vyy5010",fontsize=10,color="white",style="solid",shape="box"];1386 -> 2700[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2700 -> 1448[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1387[label="Just vyy4810 <= vyy501",fontsize=16,color="burlywood",shape="box"];2701[label="vyy501/Nothing",fontsize=10,color="white",style="solid",shape="box"];1387 -> 2701[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2701 -> 1449[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2702[label="vyy501/Just vyy5010",fontsize=10,color="white",style="solid",shape="box"];1387 -> 2702[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2702 -> 1450[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1388[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1388 -> 1451[label="",style="solid", color="black", weight=3]; 26.21/10.58 1389[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1389 -> 1452[label="",style="solid", color="black", weight=3]; 26.21/10.58 1390[label="compare vyy481 vyy501 /= GT",fontsize=16,color="black",shape="box"];1390 -> 1453[label="",style="solid", color="black", weight=3]; 26.21/10.58 1391[label="(vyy4810,vyy4811) <= vyy501",fontsize=16,color="burlywood",shape="box"];2703[label="vyy501/(vyy5010,vyy5011)",fontsize=10,color="white",style="solid",shape="box"];1391 -> 2703[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2703 -> 1454[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1392[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1392 -> 1455[label="",style="solid", color="black", weight=3]; 26.21/10.58 1393[label="LT",fontsize=16,color="green",shape="box"];1394[label="compare vyy480 vyy500",fontsize=16,color="burlywood",shape="triangle"];2704[label="vyy480/Integer vyy4800",fontsize=10,color="white",style="solid",shape="box"];1394 -> 2704[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2704 -> 1456[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1395[label="LT",fontsize=16,color="green",shape="box"];1396[label="compare vyy480 vyy500",fontsize=16,color="burlywood",shape="triangle"];2705[label="vyy480/vyy4800 : vyy4801",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2705[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2705 -> 1457[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2706[label="vyy480/[]",fontsize=10,color="white",style="solid",shape="box"];1396 -> 2706[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2706 -> 1458[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1397[label="LT",fontsize=16,color="green",shape="box"];1398[label="compare vyy480 vyy500",fontsize=16,color="burlywood",shape="triangle"];2707[label="vyy480/()",fontsize=10,color="white",style="solid",shape="box"];1398 -> 2707[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2707 -> 1459[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1399[label="LT",fontsize=16,color="green",shape="box"];1400[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1400 -> 1460[label="",style="solid", color="black", weight=3]; 26.21/10.58 1401[label="LT",fontsize=16,color="green",shape="box"];1402[label="compare vyy480 vyy500",fontsize=16,color="burlywood",shape="triangle"];2708[label="vyy480/vyy4800 :% vyy4801",fontsize=10,color="white",style="solid",shape="box"];1402 -> 2708[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2708 -> 1461[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1403[label="LT",fontsize=16,color="green",shape="box"];1404[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1404 -> 1462[label="",style="solid", color="black", weight=3]; 26.21/10.58 1405[label="LT",fontsize=16,color="green",shape="box"];1406[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1406 -> 1463[label="",style="solid", color="black", weight=3]; 26.21/10.58 1407[label="LT",fontsize=16,color="green",shape="box"];1408[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1408 -> 1464[label="",style="solid", color="black", weight=3]; 26.21/10.58 1409[label="LT",fontsize=16,color="green",shape="box"];1410[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1410 -> 1465[label="",style="solid", color="black", weight=3]; 26.21/10.58 1411[label="LT",fontsize=16,color="green",shape="box"];1412[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1412 -> 1466[label="",style="solid", color="black", weight=3]; 26.21/10.58 1413[label="LT",fontsize=16,color="green",shape="box"];1414[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1414 -> 1467[label="",style="solid", color="black", weight=3]; 26.21/10.58 1415[label="LT",fontsize=16,color="green",shape="box"];1416[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1416 -> 1468[label="",style="solid", color="black", weight=3]; 26.21/10.58 1417[label="LT",fontsize=16,color="green",shape="box"];1418[label="compare vyy480 vyy500",fontsize=16,color="black",shape="triangle"];1418 -> 1469[label="",style="solid", color="black", weight=3]; 26.21/10.58 1419[label="LT",fontsize=16,color="green",shape="box"];1420[label="compare1 (vyy92,vyy93) (vyy94,vyy95) False",fontsize=16,color="black",shape="box"];1420 -> 1470[label="",style="solid", color="black", weight=3]; 26.21/10.58 1421[label="compare1 (vyy92,vyy93) (vyy94,vyy95) True",fontsize=16,color="black",shape="box"];1421 -> 1471[label="",style="solid", color="black", weight=3]; 26.21/10.58 1422[label="True",fontsize=16,color="green",shape="box"];1092 -> 1214[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1092[label="primPlusNat (primMulNat vyy600000 (Succ vyy50100)) (Succ vyy50100)",fontsize=16,color="magenta"];1092 -> 1215[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1093[label="Zero",fontsize=16,color="green",shape="box"];1094[label="Zero",fontsize=16,color="green",shape="box"];1095[label="Zero",fontsize=16,color="green",shape="box"];1424[label="(vyy4810,vyy4811,vyy4812) <= (vyy5010,vyy5011,vyy5012)",fontsize=16,color="black",shape="box"];1424 -> 1474[label="",style="solid", color="black", weight=3]; 26.21/10.58 1425 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1425[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1425 -> 1476[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1426 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1426[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1426 -> 1477[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1427 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1427[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1427 -> 1478[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1428 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1428[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1428 -> 1479[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1429 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1429[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1429 -> 1480[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1430[label="LT <= LT",fontsize=16,color="black",shape="box"];1430 -> 1484[label="",style="solid", color="black", weight=3]; 26.21/10.58 1431[label="LT <= EQ",fontsize=16,color="black",shape="box"];1431 -> 1485[label="",style="solid", color="black", weight=3]; 26.21/10.58 1432[label="LT <= GT",fontsize=16,color="black",shape="box"];1432 -> 1486[label="",style="solid", color="black", weight=3]; 26.21/10.58 1433[label="EQ <= LT",fontsize=16,color="black",shape="box"];1433 -> 1487[label="",style="solid", color="black", weight=3]; 26.21/10.58 1434[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1434 -> 1488[label="",style="solid", color="black", weight=3]; 26.21/10.58 1435[label="EQ <= GT",fontsize=16,color="black",shape="box"];1435 -> 1489[label="",style="solid", color="black", weight=3]; 26.21/10.58 1436[label="GT <= LT",fontsize=16,color="black",shape="box"];1436 -> 1490[label="",style="solid", color="black", weight=3]; 26.21/10.58 1437[label="GT <= EQ",fontsize=16,color="black",shape="box"];1437 -> 1491[label="",style="solid", color="black", weight=3]; 26.21/10.58 1438[label="GT <= GT",fontsize=16,color="black",shape="box"];1438 -> 1492[label="",style="solid", color="black", weight=3]; 26.21/10.58 1439[label="False <= False",fontsize=16,color="black",shape="box"];1439 -> 1493[label="",style="solid", color="black", weight=3]; 26.21/10.58 1440[label="False <= True",fontsize=16,color="black",shape="box"];1440 -> 1494[label="",style="solid", color="black", weight=3]; 26.21/10.58 1441[label="True <= False",fontsize=16,color="black",shape="box"];1441 -> 1495[label="",style="solid", color="black", weight=3]; 26.21/10.58 1442[label="True <= True",fontsize=16,color="black",shape="box"];1442 -> 1496[label="",style="solid", color="black", weight=3]; 26.21/10.58 1443[label="Left vyy4810 <= Left vyy5010",fontsize=16,color="black",shape="box"];1443 -> 1497[label="",style="solid", color="black", weight=3]; 26.21/10.58 1444[label="Left vyy4810 <= Right vyy5010",fontsize=16,color="black",shape="box"];1444 -> 1498[label="",style="solid", color="black", weight=3]; 26.21/10.58 1445[label="Right vyy4810 <= Left vyy5010",fontsize=16,color="black",shape="box"];1445 -> 1499[label="",style="solid", color="black", weight=3]; 26.21/10.58 1446[label="Right vyy4810 <= Right vyy5010",fontsize=16,color="black",shape="box"];1446 -> 1500[label="",style="solid", color="black", weight=3]; 26.21/10.58 1447[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1447 -> 1501[label="",style="solid", color="black", weight=3]; 26.21/10.58 1448[label="Nothing <= Just vyy5010",fontsize=16,color="black",shape="box"];1448 -> 1502[label="",style="solid", color="black", weight=3]; 26.21/10.58 1449[label="Just vyy4810 <= Nothing",fontsize=16,color="black",shape="box"];1449 -> 1503[label="",style="solid", color="black", weight=3]; 26.21/10.58 1450[label="Just vyy4810 <= Just vyy5010",fontsize=16,color="black",shape="box"];1450 -> 1504[label="",style="solid", color="black", weight=3]; 26.21/10.58 1451 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1451[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1451 -> 1481[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1452 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1452[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1452 -> 1482[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1453 -> 1475[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1453[label="not (compare vyy481 vyy501 == GT)",fontsize=16,color="magenta"];1453 -> 1483[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1454[label="(vyy4810,vyy4811) <= (vyy5010,vyy5011)",fontsize=16,color="black",shape="box"];1454 -> 1505[label="",style="solid", color="black", weight=3]; 26.21/10.58 1455[label="compare3 vyy480 vyy500",fontsize=16,color="black",shape="box"];1455 -> 1506[label="",style="solid", color="black", weight=3]; 26.21/10.58 1456[label="compare (Integer vyy4800) vyy500",fontsize=16,color="burlywood",shape="box"];2709[label="vyy500/Integer vyy5000",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2709[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2709 -> 1507[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1457[label="compare (vyy4800 : vyy4801) vyy500",fontsize=16,color="burlywood",shape="box"];2710[label="vyy500/vyy5000 : vyy5001",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2710[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2710 -> 1508[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2711[label="vyy500/[]",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2711[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2711 -> 1509[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1458[label="compare [] vyy500",fontsize=16,color="burlywood",shape="box"];2712[label="vyy500/vyy5000 : vyy5001",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2712[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2712 -> 1510[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2713[label="vyy500/[]",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2713[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2713 -> 1511[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1459[label="compare () vyy500",fontsize=16,color="burlywood",shape="box"];2714[label="vyy500/()",fontsize=10,color="white",style="solid",shape="box"];1459 -> 2714[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2714 -> 1512[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1460[label="primCmpChar vyy480 vyy500",fontsize=16,color="burlywood",shape="box"];2715[label="vyy480/Char vyy4800",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2715[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2715 -> 1513[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1461[label="compare (vyy4800 :% vyy4801) vyy500",fontsize=16,color="burlywood",shape="box"];2716[label="vyy500/vyy5000 :% vyy5001",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2716[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2716 -> 1514[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1462[label="compare3 vyy480 vyy500",fontsize=16,color="black",shape="box"];1462 -> 1515[label="",style="solid", color="black", weight=3]; 26.21/10.58 1463[label="compare3 vyy480 vyy500",fontsize=16,color="black",shape="box"];1463 -> 1516[label="",style="solid", color="black", weight=3]; 26.21/10.58 1464[label="compare3 vyy480 vyy500",fontsize=16,color="black",shape="box"];1464 -> 1517[label="",style="solid", color="black", weight=3]; 26.21/10.58 1465[label="compare3 vyy480 vyy500",fontsize=16,color="black",shape="box"];1465 -> 1518[label="",style="solid", color="black", weight=3]; 26.21/10.58 1466[label="primCmpDouble vyy480 vyy500",fontsize=16,color="burlywood",shape="box"];2717[label="vyy480/Double vyy4800 vyy4801",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2717[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2717 -> 1519[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1467[label="primCmpFloat vyy480 vyy500",fontsize=16,color="burlywood",shape="box"];2718[label="vyy480/Float vyy4800 vyy4801",fontsize=10,color="white",style="solid",shape="box"];1467 -> 2718[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2718 -> 1520[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1468[label="primCmpInt vyy480 vyy500",fontsize=16,color="burlywood",shape="triangle"];2719[label="vyy480/Pos vyy4800",fontsize=10,color="white",style="solid",shape="box"];1468 -> 2719[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2719 -> 1521[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2720[label="vyy480/Neg vyy4800",fontsize=10,color="white",style="solid",shape="box"];1468 -> 2720[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2720 -> 1522[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1469[label="compare3 vyy480 vyy500",fontsize=16,color="black",shape="box"];1469 -> 1523[label="",style="solid", color="black", weight=3]; 26.21/10.58 1470[label="compare0 (vyy92,vyy93) (vyy94,vyy95) otherwise",fontsize=16,color="black",shape="box"];1470 -> 1524[label="",style="solid", color="black", weight=3]; 26.21/10.58 1471[label="LT",fontsize=16,color="green",shape="box"];1215 -> 901[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1215[label="primMulNat vyy600000 (Succ vyy50100)",fontsize=16,color="magenta"];1215 -> 1246[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1215 -> 1247[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1214[label="primPlusNat vyy83 (Succ vyy50100)",fontsize=16,color="burlywood",shape="triangle"];2721[label="vyy83/Succ vyy830",fontsize=10,color="white",style="solid",shape="box"];1214 -> 2721[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2721 -> 1248[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2722[label="vyy83/Zero",fontsize=10,color="white",style="solid",shape="box"];1214 -> 2722[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2722 -> 1249[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1474 -> 1622[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1474[label="vyy4810 < vyy5010 || vyy4810 == vyy5010 && (vyy4811 < vyy5011 || vyy4811 == vyy5011 && vyy4812 <= vyy5012)",fontsize=16,color="magenta"];1474 -> 1623[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1474 -> 1624[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1476 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1476[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1476 -> 1530[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1476 -> 1531[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1475[label="not vyy98",fontsize=16,color="burlywood",shape="triangle"];2723[label="vyy98/False",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2723[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2723 -> 1532[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2724[label="vyy98/True",fontsize=10,color="white",style="solid",shape="box"];1475 -> 2724[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2724 -> 1533[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1477 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1477[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1477 -> 1534[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1477 -> 1535[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1478 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1478[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1478 -> 1536[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1478 -> 1537[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1479 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1479[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1479 -> 1538[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1479 -> 1539[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1480 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1480[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1480 -> 1540[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1480 -> 1541[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1484[label="True",fontsize=16,color="green",shape="box"];1485[label="True",fontsize=16,color="green",shape="box"];1486[label="True",fontsize=16,color="green",shape="box"];1487[label="False",fontsize=16,color="green",shape="box"];1488[label="True",fontsize=16,color="green",shape="box"];1489[label="True",fontsize=16,color="green",shape="box"];1490[label="False",fontsize=16,color="green",shape="box"];1491[label="False",fontsize=16,color="green",shape="box"];1492[label="True",fontsize=16,color="green",shape="box"];1493[label="True",fontsize=16,color="green",shape="box"];1494[label="True",fontsize=16,color="green",shape="box"];1495[label="False",fontsize=16,color="green",shape="box"];1496[label="True",fontsize=16,color="green",shape="box"];1497[label="vyy4810 <= vyy5010",fontsize=16,color="blue",shape="box"];2725[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2725[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2725 -> 1542[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2726[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2726[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2726 -> 1543[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2727[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2727[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2727 -> 1544[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2728[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2728[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2728 -> 1545[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2729[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2729[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2729 -> 1546[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2730[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2730[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2730 -> 1547[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2731[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2731[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2731 -> 1548[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2732[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2732[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2732 -> 1549[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2733[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2733[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2733 -> 1550[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2734[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2734[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2734 -> 1551[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2735[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2735[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2735 -> 1552[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2736[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2736[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2736 -> 1553[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2737[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2737[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2737 -> 1554[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2738[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1497 -> 2738[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2738 -> 1555[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1498[label="True",fontsize=16,color="green",shape="box"];1499[label="False",fontsize=16,color="green",shape="box"];1500[label="vyy4810 <= vyy5010",fontsize=16,color="blue",shape="box"];2739[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2739[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2739 -> 1556[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2740[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2740[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2740 -> 1557[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2741[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2741[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2741 -> 1558[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2742[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2742[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2742 -> 1559[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2743[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2743[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2743 -> 1560[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2744[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2744[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2744 -> 1561[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2745[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2745[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2745 -> 1562[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2746[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2746[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2746 -> 1563[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2747[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2747[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2747 -> 1564[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2748[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2748[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2748 -> 1565[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2749[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2749[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2749 -> 1566[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2750[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2750[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2750 -> 1567[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2751[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2751[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2751 -> 1568[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2752[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1500 -> 2752[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2752 -> 1569[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1501[label="True",fontsize=16,color="green",shape="box"];1502[label="True",fontsize=16,color="green",shape="box"];1503[label="False",fontsize=16,color="green",shape="box"];1504[label="vyy4810 <= vyy5010",fontsize=16,color="blue",shape="box"];2753[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2753[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2753 -> 1570[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2754[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2754[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2754 -> 1571[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2755[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2755[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2755 -> 1572[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2756[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2756[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2756 -> 1573[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2757[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2757[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2757 -> 1574[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2758[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2758[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2758 -> 1575[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2759[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2759[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2759 -> 1576[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2760[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2760[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2760 -> 1577[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2761[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2761[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2761 -> 1578[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2762[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2762[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2762 -> 1579[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2763[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2763[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2763 -> 1580[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2764[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2764[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2764 -> 1581[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2765[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2765[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2765 -> 1582[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2766[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1504 -> 2766[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2766 -> 1583[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1481 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1481[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1481 -> 1584[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1481 -> 1585[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1482 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1482[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1482 -> 1586[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1482 -> 1587[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1483 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1483[label="compare vyy481 vyy501 == GT",fontsize=16,color="magenta"];1483 -> 1588[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1483 -> 1589[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1505 -> 1622[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1505[label="vyy4810 < vyy5010 || vyy4810 == vyy5010 && vyy4811 <= vyy5011",fontsize=16,color="magenta"];1505 -> 1625[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1505 -> 1626[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1506 -> 1590[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1506[label="compare2 vyy480 vyy500 (vyy480 == vyy500)",fontsize=16,color="magenta"];1506 -> 1591[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1507[label="compare (Integer vyy4800) (Integer vyy5000)",fontsize=16,color="black",shape="box"];1507 -> 1592[label="",style="solid", color="black", weight=3]; 26.21/10.58 1508[label="compare (vyy4800 : vyy4801) (vyy5000 : vyy5001)",fontsize=16,color="black",shape="box"];1508 -> 1593[label="",style="solid", color="black", weight=3]; 26.21/10.58 1509[label="compare (vyy4800 : vyy4801) []",fontsize=16,color="black",shape="box"];1509 -> 1594[label="",style="solid", color="black", weight=3]; 26.21/10.58 1510[label="compare [] (vyy5000 : vyy5001)",fontsize=16,color="black",shape="box"];1510 -> 1595[label="",style="solid", color="black", weight=3]; 26.21/10.58 1511[label="compare [] []",fontsize=16,color="black",shape="box"];1511 -> 1596[label="",style="solid", color="black", weight=3]; 26.21/10.58 1512[label="compare () ()",fontsize=16,color="black",shape="box"];1512 -> 1597[label="",style="solid", color="black", weight=3]; 26.21/10.58 1513[label="primCmpChar (Char vyy4800) vyy500",fontsize=16,color="burlywood",shape="box"];2767[label="vyy500/Char vyy5000",fontsize=10,color="white",style="solid",shape="box"];1513 -> 2767[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2767 -> 1598[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1514[label="compare (vyy4800 :% vyy4801) (vyy5000 :% vyy5001)",fontsize=16,color="black",shape="box"];1514 -> 1599[label="",style="solid", color="black", weight=3]; 26.21/10.58 1515 -> 1600[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1515[label="compare2 vyy480 vyy500 (vyy480 == vyy500)",fontsize=16,color="magenta"];1515 -> 1601[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1516 -> 1602[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1516[label="compare2 vyy480 vyy500 (vyy480 == vyy500)",fontsize=16,color="magenta"];1516 -> 1603[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1517 -> 1604[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1517[label="compare2 vyy480 vyy500 (vyy480 == vyy500)",fontsize=16,color="magenta"];1517 -> 1605[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1518 -> 1606[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1518[label="compare2 vyy480 vyy500 (vyy480 == vyy500)",fontsize=16,color="magenta"];1518 -> 1607[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1519[label="primCmpDouble (Double vyy4800 vyy4801) vyy500",fontsize=16,color="burlywood",shape="box"];2768[label="vyy4801/Pos vyy48010",fontsize=10,color="white",style="solid",shape="box"];1519 -> 2768[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2768 -> 1608[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2769[label="vyy4801/Neg vyy48010",fontsize=10,color="white",style="solid",shape="box"];1519 -> 2769[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2769 -> 1609[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1520[label="primCmpFloat (Float vyy4800 vyy4801) vyy500",fontsize=16,color="burlywood",shape="box"];2770[label="vyy4801/Pos vyy48010",fontsize=10,color="white",style="solid",shape="box"];1520 -> 2770[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2770 -> 1610[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2771[label="vyy4801/Neg vyy48010",fontsize=10,color="white",style="solid",shape="box"];1520 -> 2771[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2771 -> 1611[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1521[label="primCmpInt (Pos vyy4800) vyy500",fontsize=16,color="burlywood",shape="box"];2772[label="vyy4800/Succ vyy48000",fontsize=10,color="white",style="solid",shape="box"];1521 -> 2772[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2772 -> 1612[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2773[label="vyy4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1521 -> 2773[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2773 -> 1613[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1522[label="primCmpInt (Neg vyy4800) vyy500",fontsize=16,color="burlywood",shape="box"];2774[label="vyy4800/Succ vyy48000",fontsize=10,color="white",style="solid",shape="box"];1522 -> 2774[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2774 -> 1614[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2775[label="vyy4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1522 -> 2775[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2775 -> 1615[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1523 -> 1187[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1523[label="compare2 vyy480 vyy500 (vyy480 == vyy500)",fontsize=16,color="magenta"];1523 -> 1616[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1523 -> 1617[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1523 -> 1618[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1524[label="compare0 (vyy92,vyy93) (vyy94,vyy95) True",fontsize=16,color="black",shape="box"];1524 -> 1619[label="",style="solid", color="black", weight=3]; 26.21/10.58 1246[label="vyy600000",fontsize=16,color="green",shape="box"];1247[label="Succ vyy50100",fontsize=16,color="green",shape="box"];1248[label="primPlusNat (Succ vyy830) (Succ vyy50100)",fontsize=16,color="black",shape="box"];1248 -> 1251[label="",style="solid", color="black", weight=3]; 26.21/10.58 1249[label="primPlusNat Zero (Succ vyy50100)",fontsize=16,color="black",shape="box"];1249 -> 1252[label="",style="solid", color="black", weight=3]; 26.21/10.58 1623[label="vyy4810 < vyy5010",fontsize=16,color="blue",shape="box"];2776[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2776[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2776 -> 1631[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2777[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2777[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2777 -> 1632[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2778[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2778[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2778 -> 1633[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2779[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2779[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2779 -> 1634[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2780[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2780[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2780 -> 1635[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2781[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2781[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2781 -> 1636[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2782[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2782[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2782 -> 1637[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2783[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2783[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2783 -> 1638[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2784[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2784[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2784 -> 1639[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2785[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2785[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2785 -> 1640[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2786[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2786[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2786 -> 1641[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2787[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2787[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2787 -> 1642[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2788[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2788[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2788 -> 1643[label="",style="solid", color="blue", weight=3]; 26.21/10.58 2789[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1623 -> 2789[label="",style="solid", color="blue", weight=9]; 26.21/10.58 2789 -> 1644[label="",style="solid", color="blue", weight=3]; 26.21/10.58 1624 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1624[label="vyy4810 == vyy5010 && (vyy4811 < vyy5011 || vyy4811 == vyy5011 && vyy4812 <= vyy5012)",fontsize=16,color="magenta"];1624 -> 1645[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1624 -> 1646[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1622[label="vyy110 || vyy111",fontsize=16,color="burlywood",shape="triangle"];2790[label="vyy110/False",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2790[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2790 -> 1647[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 2791[label="vyy110/True",fontsize=10,color="white",style="solid",shape="box"];1622 -> 2791[label="",style="solid", color="burlywood", weight=9]; 26.21/10.58 2791 -> 1648[label="",style="solid", color="burlywood", weight=3]; 26.21/10.58 1530 -> 1394[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1530[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1530 -> 1649[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1530 -> 1650[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1531[label="GT",fontsize=16,color="green",shape="box"];1532[label="not False",fontsize=16,color="black",shape="box"];1532 -> 1651[label="",style="solid", color="black", weight=3]; 26.21/10.58 1533[label="not True",fontsize=16,color="black",shape="box"];1533 -> 1652[label="",style="solid", color="black", weight=3]; 26.21/10.58 1534 -> 1396[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1534[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1534 -> 1653[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1534 -> 1654[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1535[label="GT",fontsize=16,color="green",shape="box"];1536 -> 1398[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1536[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1536 -> 1655[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1536 -> 1656[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1537[label="GT",fontsize=16,color="green",shape="box"];1538 -> 1400[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1538[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1538 -> 1657[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1538 -> 1658[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1539[label="GT",fontsize=16,color="green",shape="box"];1540 -> 1402[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1540[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1540 -> 1659[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1540 -> 1660[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1541[label="GT",fontsize=16,color="green",shape="box"];1542 -> 1311[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1542[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1542 -> 1661[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1542 -> 1662[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1543 -> 1312[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1543[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1543 -> 1663[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1543 -> 1664[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1544 -> 1313[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1544[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1544 -> 1665[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1544 -> 1666[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1545 -> 1314[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1545[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1545 -> 1667[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1545 -> 1668[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1546 -> 1315[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1546[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1546 -> 1669[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1546 -> 1670[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1547 -> 1316[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1547[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1547 -> 1671[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1547 -> 1672[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1548 -> 1317[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1548[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1548 -> 1673[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1548 -> 1674[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1549 -> 1318[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1549[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1549 -> 1675[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1549 -> 1676[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1550 -> 1319[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1550[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1550 -> 1677[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1550 -> 1678[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1551 -> 1320[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1551[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1551 -> 1679[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1551 -> 1680[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1552 -> 1321[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1552[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1552 -> 1681[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1552 -> 1682[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1553 -> 1322[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1553[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1553 -> 1683[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1553 -> 1684[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1554 -> 1323[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1554[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1554 -> 1685[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1554 -> 1686[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1555 -> 1324[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1555[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1555 -> 1687[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1555 -> 1688[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1556 -> 1311[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1556[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1556 -> 1689[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1556 -> 1690[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1557 -> 1312[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1557[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1557 -> 1691[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1557 -> 1692[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1558 -> 1313[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1558[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1558 -> 1693[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1558 -> 1694[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1559 -> 1314[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1559[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1559 -> 1695[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1559 -> 1696[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1560 -> 1315[label="",style="dashed", color="red", weight=0]; 26.21/10.58 1560[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1560 -> 1697[label="",style="dashed", color="magenta", weight=3]; 26.21/10.58 1560 -> 1698[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1561 -> 1316[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1561[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1561 -> 1699[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1561 -> 1700[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1562 -> 1317[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1562[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1562 -> 1701[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1562 -> 1702[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1563 -> 1318[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1563[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1563 -> 1703[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1563 -> 1704[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1564 -> 1319[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1564[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1564 -> 1705[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1564 -> 1706[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1565 -> 1320[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1565[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1565 -> 1707[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1565 -> 1708[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1566 -> 1321[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1566[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1566 -> 1709[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1566 -> 1710[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1567 -> 1322[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1567[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1567 -> 1711[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1567 -> 1712[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1568 -> 1323[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1568[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1568 -> 1713[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1568 -> 1714[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1569 -> 1324[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1569[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1569 -> 1715[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1569 -> 1716[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1570 -> 1311[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1570[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1570 -> 1717[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1570 -> 1718[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1571 -> 1312[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1571[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1571 -> 1719[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1571 -> 1720[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1572 -> 1313[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1572[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1572 -> 1721[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1572 -> 1722[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1573 -> 1314[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1573[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1573 -> 1723[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1573 -> 1724[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1574 -> 1315[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1574[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1574 -> 1725[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1574 -> 1726[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1575 -> 1316[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1575[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1575 -> 1727[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1575 -> 1728[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1576 -> 1317[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1576[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1576 -> 1729[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1576 -> 1730[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1577 -> 1318[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1577[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1577 -> 1731[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1577 -> 1732[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1578 -> 1319[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1578[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1578 -> 1733[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1578 -> 1734[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1579 -> 1320[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1579[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1579 -> 1735[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1579 -> 1736[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1580 -> 1321[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1580[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1580 -> 1737[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1580 -> 1738[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1581 -> 1322[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1581[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1581 -> 1739[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1581 -> 1740[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1582 -> 1323[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1582[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1582 -> 1741[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1582 -> 1742[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1583 -> 1324[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1583[label="vyy4810 <= vyy5010",fontsize=16,color="magenta"];1583 -> 1743[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1583 -> 1744[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1584 -> 1412[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1584[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1584 -> 1745[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1584 -> 1746[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1585[label="GT",fontsize=16,color="green",shape="box"];1586 -> 1414[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1586[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1586 -> 1747[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1586 -> 1748[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1587[label="GT",fontsize=16,color="green",shape="box"];1588 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1588[label="compare vyy481 vyy501",fontsize=16,color="magenta"];1588 -> 1749[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1588 -> 1750[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1589[label="GT",fontsize=16,color="green",shape="box"];1625[label="vyy4810 < vyy5010",fontsize=16,color="blue",shape="box"];2792[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2792[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2792 -> 1751[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2793[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2793[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2793 -> 1752[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2794[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2794[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2794 -> 1753[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2795[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2795[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2795 -> 1754[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2796[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2796[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2796 -> 1755[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2797[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2797[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2797 -> 1756[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2798[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2798[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2798 -> 1757[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2799[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2799[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2799 -> 1758[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2800[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2800[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2800 -> 1759[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2801[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2801[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2801 -> 1760[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2802[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2802[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2802 -> 1761[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2803[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2803[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2803 -> 1762[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2804[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2804[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2804 -> 1763[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2805[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1625 -> 2805[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2805 -> 1764[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1626 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1626[label="vyy4810 == vyy5010 && vyy4811 <= vyy5011",fontsize=16,color="magenta"];1626 -> 1765[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1626 -> 1766[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1591 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1591[label="vyy480 == vyy500",fontsize=16,color="magenta"];1591 -> 1767[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1591 -> 1768[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1590[label="compare2 vyy480 vyy500 vyy102",fontsize=16,color="burlywood",shape="triangle"];2806[label="vyy102/False",fontsize=10,color="white",style="solid",shape="box"];1590 -> 2806[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2806 -> 1769[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2807[label="vyy102/True",fontsize=10,color="white",style="solid",shape="box"];1590 -> 2807[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2807 -> 1770[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1592 -> 1468[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1592[label="primCmpInt vyy4800 vyy5000",fontsize=16,color="magenta"];1592 -> 1771[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1592 -> 1772[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1593 -> 1773[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1593[label="primCompAux vyy4800 vyy5000 (compare vyy4801 vyy5001)",fontsize=16,color="magenta"];1593 -> 1774[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1594[label="GT",fontsize=16,color="green",shape="box"];1595[label="LT",fontsize=16,color="green",shape="box"];1596[label="EQ",fontsize=16,color="green",shape="box"];1597[label="EQ",fontsize=16,color="green",shape="box"];1598[label="primCmpChar (Char vyy4800) (Char vyy5000)",fontsize=16,color="black",shape="box"];1598 -> 1775[label="",style="solid", color="black", weight=3]; 26.21/10.59 1599[label="compare (vyy4800 * vyy5001) (vyy5000 * vyy4801)",fontsize=16,color="blue",shape="box"];2808[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1599 -> 2808[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2808 -> 1776[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2809[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1599 -> 2809[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2809 -> 1777[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1601 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1601[label="vyy480 == vyy500",fontsize=16,color="magenta"];1601 -> 1778[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1601 -> 1779[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1600[label="compare2 vyy480 vyy500 vyy103",fontsize=16,color="burlywood",shape="triangle"];2810[label="vyy103/False",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2810[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2810 -> 1780[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2811[label="vyy103/True",fontsize=10,color="white",style="solid",shape="box"];1600 -> 2811[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2811 -> 1781[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1603 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1603[label="vyy480 == vyy500",fontsize=16,color="magenta"];1603 -> 1782[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1603 -> 1783[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1602[label="compare2 vyy480 vyy500 vyy104",fontsize=16,color="burlywood",shape="triangle"];2812[label="vyy104/False",fontsize=10,color="white",style="solid",shape="box"];1602 -> 2812[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2812 -> 1784[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2813[label="vyy104/True",fontsize=10,color="white",style="solid",shape="box"];1602 -> 2813[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2813 -> 1785[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1605 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1605[label="vyy480 == vyy500",fontsize=16,color="magenta"];1605 -> 1786[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1605 -> 1787[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1604[label="compare2 vyy480 vyy500 vyy105",fontsize=16,color="burlywood",shape="triangle"];2814[label="vyy105/False",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2814[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2814 -> 1788[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2815[label="vyy105/True",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2815[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2815 -> 1789[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1607 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1607[label="vyy480 == vyy500",fontsize=16,color="magenta"];1607 -> 1790[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1607 -> 1791[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1606[label="compare2 vyy480 vyy500 vyy106",fontsize=16,color="burlywood",shape="triangle"];2816[label="vyy106/False",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2816[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2816 -> 1792[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2817[label="vyy106/True",fontsize=10,color="white",style="solid",shape="box"];1606 -> 2817[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2817 -> 1793[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1608[label="primCmpDouble (Double vyy4800 (Pos vyy48010)) vyy500",fontsize=16,color="burlywood",shape="box"];2818[label="vyy500/Double vyy5000 vyy5001",fontsize=10,color="white",style="solid",shape="box"];1608 -> 2818[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2818 -> 1794[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1609[label="primCmpDouble (Double vyy4800 (Neg vyy48010)) vyy500",fontsize=16,color="burlywood",shape="box"];2819[label="vyy500/Double vyy5000 vyy5001",fontsize=10,color="white",style="solid",shape="box"];1609 -> 2819[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2819 -> 1795[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1610[label="primCmpFloat (Float vyy4800 (Pos vyy48010)) vyy500",fontsize=16,color="burlywood",shape="box"];2820[label="vyy500/Float vyy5000 vyy5001",fontsize=10,color="white",style="solid",shape="box"];1610 -> 2820[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2820 -> 1796[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1611[label="primCmpFloat (Float vyy4800 (Neg vyy48010)) vyy500",fontsize=16,color="burlywood",shape="box"];2821[label="vyy500/Float vyy5000 vyy5001",fontsize=10,color="white",style="solid",shape="box"];1611 -> 2821[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2821 -> 1797[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1612[label="primCmpInt (Pos (Succ vyy48000)) vyy500",fontsize=16,color="burlywood",shape="box"];2822[label="vyy500/Pos vyy5000",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2822[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2822 -> 1798[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2823[label="vyy500/Neg vyy5000",fontsize=10,color="white",style="solid",shape="box"];1612 -> 2823[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2823 -> 1799[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1613[label="primCmpInt (Pos Zero) vyy500",fontsize=16,color="burlywood",shape="box"];2824[label="vyy500/Pos vyy5000",fontsize=10,color="white",style="solid",shape="box"];1613 -> 2824[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2824 -> 1800[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2825[label="vyy500/Neg vyy5000",fontsize=10,color="white",style="solid",shape="box"];1613 -> 2825[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2825 -> 1801[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1614[label="primCmpInt (Neg (Succ vyy48000)) vyy500",fontsize=16,color="burlywood",shape="box"];2826[label="vyy500/Pos vyy5000",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2826[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2826 -> 1802[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2827[label="vyy500/Neg vyy5000",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2827[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2827 -> 1803[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1615[label="primCmpInt (Neg Zero) vyy500",fontsize=16,color="burlywood",shape="box"];2828[label="vyy500/Pos vyy5000",fontsize=10,color="white",style="solid",shape="box"];1615 -> 2828[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2828 -> 1804[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2829[label="vyy500/Neg vyy5000",fontsize=10,color="white",style="solid",shape="box"];1615 -> 2829[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2829 -> 1805[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1616 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1616[label="vyy480 == vyy500",fontsize=16,color="magenta"];1616 -> 1806[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1616 -> 1807[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1617[label="vyy480",fontsize=16,color="green",shape="box"];1618[label="vyy500",fontsize=16,color="green",shape="box"];1619[label="GT",fontsize=16,color="green",shape="box"];1251[label="Succ (Succ (primPlusNat vyy830 vyy50100))",fontsize=16,color="green",shape="box"];1251 -> 1254[label="",style="dashed", color="green", weight=3]; 26.21/10.59 1252[label="Succ vyy50100",fontsize=16,color="green",shape="box"];1631 -> 1277[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1631[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1631 -> 1808[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1631 -> 1809[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1632 -> 1278[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1632[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1632 -> 1810[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1632 -> 1811[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1633 -> 1279[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1633[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1633 -> 1812[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1633 -> 1813[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1634 -> 1280[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1634[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1634 -> 1814[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1634 -> 1815[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1635 -> 1281[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1635[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1635 -> 1816[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1635 -> 1817[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1636 -> 1282[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1636[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1636 -> 1818[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1636 -> 1819[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1637 -> 1283[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1637[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1637 -> 1820[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1637 -> 1821[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1638 -> 1284[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1638[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1638 -> 1822[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1638 -> 1823[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1639 -> 1285[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1639[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1639 -> 1824[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1639 -> 1825[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1640 -> 1286[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1640[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1640 -> 1826[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1640 -> 1827[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1641 -> 1287[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1641[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1641 -> 1828[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1641 -> 1829[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1642 -> 1288[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1642[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1642 -> 1830[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1642 -> 1831[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1643 -> 1289[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1643[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1643 -> 1832[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1643 -> 1833[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1644 -> 1290[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1644[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1644 -> 1834[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1644 -> 1835[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1645[label="vyy4810 == vyy5010",fontsize=16,color="blue",shape="box"];2830[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2830[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2830 -> 1836[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2831[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2831[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2831 -> 1837[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2832[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2832[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2832 -> 1838[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2833[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2833[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2833 -> 1839[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2834[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2834[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2834 -> 1840[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2835[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2835[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2835 -> 1841[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2836[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2836[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2836 -> 1842[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2837[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2837[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2837 -> 1843[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2838[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2838[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2838 -> 1844[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2839[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2839[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2839 -> 1845[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2840[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2840[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2840 -> 1846[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2841[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2841[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2841 -> 1847[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2842[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2842[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2842 -> 1848[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2843[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1645 -> 2843[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2843 -> 1849[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1646 -> 1622[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1646[label="vyy4811 < vyy5011 || vyy4811 == vyy5011 && vyy4812 <= vyy5012",fontsize=16,color="magenta"];1646 -> 1850[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1646 -> 1851[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1647[label="False || vyy111",fontsize=16,color="black",shape="box"];1647 -> 1852[label="",style="solid", color="black", weight=3]; 26.21/10.59 1648[label="True || vyy111",fontsize=16,color="black",shape="box"];1648 -> 1853[label="",style="solid", color="black", weight=3]; 26.21/10.59 1649[label="vyy501",fontsize=16,color="green",shape="box"];1650[label="vyy481",fontsize=16,color="green",shape="box"];1651[label="True",fontsize=16,color="green",shape="box"];1652[label="False",fontsize=16,color="green",shape="box"];1653[label="vyy501",fontsize=16,color="green",shape="box"];1654[label="vyy481",fontsize=16,color="green",shape="box"];1655[label="vyy501",fontsize=16,color="green",shape="box"];1656[label="vyy481",fontsize=16,color="green",shape="box"];1657[label="vyy501",fontsize=16,color="green",shape="box"];1658[label="vyy481",fontsize=16,color="green",shape="box"];1659[label="vyy501",fontsize=16,color="green",shape="box"];1660[label="vyy481",fontsize=16,color="green",shape="box"];1661[label="vyy4810",fontsize=16,color="green",shape="box"];1662[label="vyy5010",fontsize=16,color="green",shape="box"];1663[label="vyy4810",fontsize=16,color="green",shape="box"];1664[label="vyy5010",fontsize=16,color="green",shape="box"];1665[label="vyy4810",fontsize=16,color="green",shape="box"];1666[label="vyy5010",fontsize=16,color="green",shape="box"];1667[label="vyy4810",fontsize=16,color="green",shape="box"];1668[label="vyy5010",fontsize=16,color="green",shape="box"];1669[label="vyy4810",fontsize=16,color="green",shape="box"];1670[label="vyy5010",fontsize=16,color="green",shape="box"];1671[label="vyy4810",fontsize=16,color="green",shape="box"];1672[label="vyy5010",fontsize=16,color="green",shape="box"];1673[label="vyy4810",fontsize=16,color="green",shape="box"];1674[label="vyy5010",fontsize=16,color="green",shape="box"];1675[label="vyy4810",fontsize=16,color="green",shape="box"];1676[label="vyy5010",fontsize=16,color="green",shape="box"];1677[label="vyy4810",fontsize=16,color="green",shape="box"];1678[label="vyy5010",fontsize=16,color="green",shape="box"];1679[label="vyy4810",fontsize=16,color="green",shape="box"];1680[label="vyy5010",fontsize=16,color="green",shape="box"];1681[label="vyy4810",fontsize=16,color="green",shape="box"];1682[label="vyy5010",fontsize=16,color="green",shape="box"];1683[label="vyy4810",fontsize=16,color="green",shape="box"];1684[label="vyy5010",fontsize=16,color="green",shape="box"];1685[label="vyy4810",fontsize=16,color="green",shape="box"];1686[label="vyy5010",fontsize=16,color="green",shape="box"];1687[label="vyy4810",fontsize=16,color="green",shape="box"];1688[label="vyy5010",fontsize=16,color="green",shape="box"];1689[label="vyy4810",fontsize=16,color="green",shape="box"];1690[label="vyy5010",fontsize=16,color="green",shape="box"];1691[label="vyy4810",fontsize=16,color="green",shape="box"];1692[label="vyy5010",fontsize=16,color="green",shape="box"];1693[label="vyy4810",fontsize=16,color="green",shape="box"];1694[label="vyy5010",fontsize=16,color="green",shape="box"];1695[label="vyy4810",fontsize=16,color="green",shape="box"];1696[label="vyy5010",fontsize=16,color="green",shape="box"];1697[label="vyy4810",fontsize=16,color="green",shape="box"];1698[label="vyy5010",fontsize=16,color="green",shape="box"];1699[label="vyy4810",fontsize=16,color="green",shape="box"];1700[label="vyy5010",fontsize=16,color="green",shape="box"];1701[label="vyy4810",fontsize=16,color="green",shape="box"];1702[label="vyy5010",fontsize=16,color="green",shape="box"];1703[label="vyy4810",fontsize=16,color="green",shape="box"];1704[label="vyy5010",fontsize=16,color="green",shape="box"];1705[label="vyy4810",fontsize=16,color="green",shape="box"];1706[label="vyy5010",fontsize=16,color="green",shape="box"];1707[label="vyy4810",fontsize=16,color="green",shape="box"];1708[label="vyy5010",fontsize=16,color="green",shape="box"];1709[label="vyy4810",fontsize=16,color="green",shape="box"];1710[label="vyy5010",fontsize=16,color="green",shape="box"];1711[label="vyy4810",fontsize=16,color="green",shape="box"];1712[label="vyy5010",fontsize=16,color="green",shape="box"];1713[label="vyy4810",fontsize=16,color="green",shape="box"];1714[label="vyy5010",fontsize=16,color="green",shape="box"];1715[label="vyy4810",fontsize=16,color="green",shape="box"];1716[label="vyy5010",fontsize=16,color="green",shape="box"];1717[label="vyy4810",fontsize=16,color="green",shape="box"];1718[label="vyy5010",fontsize=16,color="green",shape="box"];1719[label="vyy4810",fontsize=16,color="green",shape="box"];1720[label="vyy5010",fontsize=16,color="green",shape="box"];1721[label="vyy4810",fontsize=16,color="green",shape="box"];1722[label="vyy5010",fontsize=16,color="green",shape="box"];1723[label="vyy4810",fontsize=16,color="green",shape="box"];1724[label="vyy5010",fontsize=16,color="green",shape="box"];1725[label="vyy4810",fontsize=16,color="green",shape="box"];1726[label="vyy5010",fontsize=16,color="green",shape="box"];1727[label="vyy4810",fontsize=16,color="green",shape="box"];1728[label="vyy5010",fontsize=16,color="green",shape="box"];1729[label="vyy4810",fontsize=16,color="green",shape="box"];1730[label="vyy5010",fontsize=16,color="green",shape="box"];1731[label="vyy4810",fontsize=16,color="green",shape="box"];1732[label="vyy5010",fontsize=16,color="green",shape="box"];1733[label="vyy4810",fontsize=16,color="green",shape="box"];1734[label="vyy5010",fontsize=16,color="green",shape="box"];1735[label="vyy4810",fontsize=16,color="green",shape="box"];1736[label="vyy5010",fontsize=16,color="green",shape="box"];1737[label="vyy4810",fontsize=16,color="green",shape="box"];1738[label="vyy5010",fontsize=16,color="green",shape="box"];1739[label="vyy4810",fontsize=16,color="green",shape="box"];1740[label="vyy5010",fontsize=16,color="green",shape="box"];1741[label="vyy4810",fontsize=16,color="green",shape="box"];1742[label="vyy5010",fontsize=16,color="green",shape="box"];1743[label="vyy4810",fontsize=16,color="green",shape="box"];1744[label="vyy5010",fontsize=16,color="green",shape="box"];1745[label="vyy501",fontsize=16,color="green",shape="box"];1746[label="vyy481",fontsize=16,color="green",shape="box"];1747[label="vyy501",fontsize=16,color="green",shape="box"];1748[label="vyy481",fontsize=16,color="green",shape="box"];1749[label="vyy501",fontsize=16,color="green",shape="box"];1750[label="vyy481",fontsize=16,color="green",shape="box"];1751 -> 1277[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1751[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1751 -> 1854[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1751 -> 1855[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1752 -> 1278[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1752[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1752 -> 1856[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1752 -> 1857[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1753 -> 1279[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1753[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1753 -> 1858[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1753 -> 1859[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1754 -> 1280[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1754[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1754 -> 1860[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1754 -> 1861[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1755 -> 1281[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1755[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1755 -> 1862[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1755 -> 1863[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1756 -> 1282[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1756[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1756 -> 1864[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1756 -> 1865[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1757 -> 1283[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1757[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1757 -> 1866[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1757 -> 1867[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1758 -> 1284[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1758[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1758 -> 1868[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1758 -> 1869[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1759 -> 1285[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1759[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1759 -> 1870[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1759 -> 1871[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1760 -> 1286[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1760[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1760 -> 1872[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1760 -> 1873[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1761 -> 1287[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1761[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1761 -> 1874[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1761 -> 1875[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1762 -> 1288[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1762[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1762 -> 1876[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1762 -> 1877[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1763 -> 1289[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1763[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1763 -> 1878[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1763 -> 1879[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1764 -> 1290[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1764[label="vyy4810 < vyy5010",fontsize=16,color="magenta"];1764 -> 1880[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1764 -> 1881[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1765[label="vyy4810 == vyy5010",fontsize=16,color="blue",shape="box"];2844[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2844[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2844 -> 1882[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2845[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2845[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2845 -> 1883[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2846[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2846[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2846 -> 1884[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2847[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2847[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2847 -> 1885[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2848[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2848[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2848 -> 1886[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2849[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2849[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2849 -> 1887[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2850[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2850[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2850 -> 1888[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2851[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2851[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2851 -> 1889[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2852[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2852[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2852 -> 1890[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2853[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2853[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2853 -> 1891[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2854[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2854[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2854 -> 1892[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2855[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2855[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2855 -> 1893[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2856[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2856[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2856 -> 1894[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2857[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2857[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2857 -> 1895[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1766[label="vyy4811 <= vyy5011",fontsize=16,color="blue",shape="box"];2858[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2858[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2858 -> 1896[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2859[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2859[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2859 -> 1897[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2860[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2860[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2860 -> 1898[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2861[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2861[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2861 -> 1899[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2862[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2862[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2862 -> 1900[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2863[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2863[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2863 -> 1901[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2864[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2864[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2864 -> 1902[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2865[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2865[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2865 -> 1903[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2866[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2866[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2866 -> 1904[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2867[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2867[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2867 -> 1905[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2868[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2868[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2868 -> 1906[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2869[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2869[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2869 -> 1907[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2870[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2870[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2870 -> 1908[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2871[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1766 -> 2871[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2871 -> 1909[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1767[label="vyy480",fontsize=16,color="green",shape="box"];1768[label="vyy500",fontsize=16,color="green",shape="box"];1769[label="compare2 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];1769 -> 1910[label="",style="solid", color="black", weight=3]; 26.21/10.59 1770[label="compare2 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];1770 -> 1911[label="",style="solid", color="black", weight=3]; 26.21/10.59 1771[label="vyy5000",fontsize=16,color="green",shape="box"];1772[label="vyy4800",fontsize=16,color="green",shape="box"];1774 -> 1396[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1774[label="compare vyy4801 vyy5001",fontsize=16,color="magenta"];1774 -> 1912[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1774 -> 1913[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1773[label="primCompAux vyy4800 vyy5000 vyy112",fontsize=16,color="black",shape="triangle"];1773 -> 1914[label="",style="solid", color="black", weight=3]; 26.21/10.59 1775[label="primCmpNat vyy4800 vyy5000",fontsize=16,color="burlywood",shape="triangle"];2872[label="vyy4800/Succ vyy48000",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2872[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2872 -> 1915[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2873[label="vyy4800/Zero",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2873[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2873 -> 1916[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1776 -> 1394[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1776[label="compare (vyy4800 * vyy5001) (vyy5000 * vyy4801)",fontsize=16,color="magenta"];1776 -> 1917[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1776 -> 1918[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1777 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1777[label="compare (vyy4800 * vyy5001) (vyy5000 * vyy4801)",fontsize=16,color="magenta"];1777 -> 1919[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1777 -> 1920[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1778[label="vyy480",fontsize=16,color="green",shape="box"];1779[label="vyy500",fontsize=16,color="green",shape="box"];1780[label="compare2 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];1780 -> 1921[label="",style="solid", color="black", weight=3]; 26.21/10.59 1781[label="compare2 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];1781 -> 1922[label="",style="solid", color="black", weight=3]; 26.21/10.59 1782[label="vyy480",fontsize=16,color="green",shape="box"];1783[label="vyy500",fontsize=16,color="green",shape="box"];1784[label="compare2 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];1784 -> 1923[label="",style="solid", color="black", weight=3]; 26.21/10.59 1785[label="compare2 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];1785 -> 1924[label="",style="solid", color="black", weight=3]; 26.21/10.59 1786[label="vyy480",fontsize=16,color="green",shape="box"];1787[label="vyy500",fontsize=16,color="green",shape="box"];1788[label="compare2 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];1788 -> 1925[label="",style="solid", color="black", weight=3]; 26.21/10.59 1789[label="compare2 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];1789 -> 1926[label="",style="solid", color="black", weight=3]; 26.21/10.59 1790[label="vyy480",fontsize=16,color="green",shape="box"];1791[label="vyy500",fontsize=16,color="green",shape="box"];1792[label="compare2 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];1792 -> 1927[label="",style="solid", color="black", weight=3]; 26.21/10.59 1793[label="compare2 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];1793 -> 1928[label="",style="solid", color="black", weight=3]; 26.21/10.59 1794[label="primCmpDouble (Double vyy4800 (Pos vyy48010)) (Double vyy5000 vyy5001)",fontsize=16,color="burlywood",shape="box"];2874[label="vyy5001/Pos vyy50010",fontsize=10,color="white",style="solid",shape="box"];1794 -> 2874[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2874 -> 1929[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2875[label="vyy5001/Neg vyy50010",fontsize=10,color="white",style="solid",shape="box"];1794 -> 2875[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2875 -> 1930[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1795[label="primCmpDouble (Double vyy4800 (Neg vyy48010)) (Double vyy5000 vyy5001)",fontsize=16,color="burlywood",shape="box"];2876[label="vyy5001/Pos vyy50010",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2876[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2876 -> 1931[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2877[label="vyy5001/Neg vyy50010",fontsize=10,color="white",style="solid",shape="box"];1795 -> 2877[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2877 -> 1932[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1796[label="primCmpFloat (Float vyy4800 (Pos vyy48010)) (Float vyy5000 vyy5001)",fontsize=16,color="burlywood",shape="box"];2878[label="vyy5001/Pos vyy50010",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2878[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2878 -> 1933[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2879[label="vyy5001/Neg vyy50010",fontsize=10,color="white",style="solid",shape="box"];1796 -> 2879[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2879 -> 1934[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1797[label="primCmpFloat (Float vyy4800 (Neg vyy48010)) (Float vyy5000 vyy5001)",fontsize=16,color="burlywood",shape="box"];2880[label="vyy5001/Pos vyy50010",fontsize=10,color="white",style="solid",shape="box"];1797 -> 2880[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2880 -> 1935[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2881[label="vyy5001/Neg vyy50010",fontsize=10,color="white",style="solid",shape="box"];1797 -> 2881[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2881 -> 1936[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1798[label="primCmpInt (Pos (Succ vyy48000)) (Pos vyy5000)",fontsize=16,color="black",shape="box"];1798 -> 1937[label="",style="solid", color="black", weight=3]; 26.21/10.59 1799[label="primCmpInt (Pos (Succ vyy48000)) (Neg vyy5000)",fontsize=16,color="black",shape="box"];1799 -> 1938[label="",style="solid", color="black", weight=3]; 26.21/10.59 1800[label="primCmpInt (Pos Zero) (Pos vyy5000)",fontsize=16,color="burlywood",shape="box"];2882[label="vyy5000/Succ vyy50000",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2882[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2882 -> 1939[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2883[label="vyy5000/Zero",fontsize=10,color="white",style="solid",shape="box"];1800 -> 2883[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2883 -> 1940[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1801[label="primCmpInt (Pos Zero) (Neg vyy5000)",fontsize=16,color="burlywood",shape="box"];2884[label="vyy5000/Succ vyy50000",fontsize=10,color="white",style="solid",shape="box"];1801 -> 2884[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2884 -> 1941[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2885[label="vyy5000/Zero",fontsize=10,color="white",style="solid",shape="box"];1801 -> 2885[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2885 -> 1942[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1802[label="primCmpInt (Neg (Succ vyy48000)) (Pos vyy5000)",fontsize=16,color="black",shape="box"];1802 -> 1943[label="",style="solid", color="black", weight=3]; 26.21/10.59 1803[label="primCmpInt (Neg (Succ vyy48000)) (Neg vyy5000)",fontsize=16,color="black",shape="box"];1803 -> 1944[label="",style="solid", color="black", weight=3]; 26.21/10.59 1804[label="primCmpInt (Neg Zero) (Pos vyy5000)",fontsize=16,color="burlywood",shape="box"];2886[label="vyy5000/Succ vyy50000",fontsize=10,color="white",style="solid",shape="box"];1804 -> 2886[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2886 -> 1945[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2887[label="vyy5000/Zero",fontsize=10,color="white",style="solid",shape="box"];1804 -> 2887[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2887 -> 1946[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1805[label="primCmpInt (Neg Zero) (Neg vyy5000)",fontsize=16,color="burlywood",shape="box"];2888[label="vyy5000/Succ vyy50000",fontsize=10,color="white",style="solid",shape="box"];1805 -> 2888[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2888 -> 1947[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2889[label="vyy5000/Zero",fontsize=10,color="white",style="solid",shape="box"];1805 -> 2889[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2889 -> 1948[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1806[label="vyy480",fontsize=16,color="green",shape="box"];1807[label="vyy500",fontsize=16,color="green",shape="box"];1254[label="primPlusNat vyy830 vyy50100",fontsize=16,color="burlywood",shape="triangle"];2890[label="vyy830/Succ vyy8300",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2890[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2890 -> 1256[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2891[label="vyy830/Zero",fontsize=10,color="white",style="solid",shape="box"];1254 -> 2891[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2891 -> 1257[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1808[label="vyy5010",fontsize=16,color="green",shape="box"];1809[label="vyy4810",fontsize=16,color="green",shape="box"];1810[label="vyy5010",fontsize=16,color="green",shape="box"];1811[label="vyy4810",fontsize=16,color="green",shape="box"];1812[label="vyy5010",fontsize=16,color="green",shape="box"];1813[label="vyy4810",fontsize=16,color="green",shape="box"];1814[label="vyy5010",fontsize=16,color="green",shape="box"];1815[label="vyy4810",fontsize=16,color="green",shape="box"];1816[label="vyy5010",fontsize=16,color="green",shape="box"];1817[label="vyy4810",fontsize=16,color="green",shape="box"];1818[label="vyy5010",fontsize=16,color="green",shape="box"];1819[label="vyy4810",fontsize=16,color="green",shape="box"];1820[label="vyy5010",fontsize=16,color="green",shape="box"];1821[label="vyy4810",fontsize=16,color="green",shape="box"];1822[label="vyy5010",fontsize=16,color="green",shape="box"];1823[label="vyy4810",fontsize=16,color="green",shape="box"];1824[label="vyy5010",fontsize=16,color="green",shape="box"];1825[label="vyy4810",fontsize=16,color="green",shape="box"];1826[label="vyy5010",fontsize=16,color="green",shape="box"];1827[label="vyy4810",fontsize=16,color="green",shape="box"];1828[label="vyy5010",fontsize=16,color="green",shape="box"];1829[label="vyy4810",fontsize=16,color="green",shape="box"];1830[label="vyy5010",fontsize=16,color="green",shape="box"];1831[label="vyy4810",fontsize=16,color="green",shape="box"];1832[label="vyy5010",fontsize=16,color="green",shape="box"];1833[label="vyy4810",fontsize=16,color="green",shape="box"];1834[label="vyy5010",fontsize=16,color="green",shape="box"];1835[label="vyy4810",fontsize=16,color="green",shape="box"];1836 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1836[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1836 -> 1949[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1836 -> 1950[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1837 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1837[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1837 -> 1951[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1837 -> 1952[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1838 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1838[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1838 -> 1953[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1838 -> 1954[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1839 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1839[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1839 -> 1955[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1839 -> 1956[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1840 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1840[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1840 -> 1957[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1840 -> 1958[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1841 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1841[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1841 -> 1959[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1841 -> 1960[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1842 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1842[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1842 -> 1961[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1842 -> 1962[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1843 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1843[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1843 -> 1963[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1843 -> 1964[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1844 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1844[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1844 -> 1965[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1844 -> 1966[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1845 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1845[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1845 -> 1967[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1845 -> 1968[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1846 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1846[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1846 -> 1969[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1846 -> 1970[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1847 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1847[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1847 -> 1971[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1847 -> 1972[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1848 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1848[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1848 -> 1973[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1848 -> 1974[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1849 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1849[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1849 -> 1975[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1849 -> 1976[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1850[label="vyy4811 < vyy5011",fontsize=16,color="blue",shape="box"];2892[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2892[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2892 -> 1977[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2893[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2893[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2893 -> 1978[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2894[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2894[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2894 -> 1979[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2895[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2895[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2895 -> 1980[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2896[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2896[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2896 -> 1981[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2897[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2897[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2897 -> 1982[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2898[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2898[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2898 -> 1983[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2899[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2899[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2899 -> 1984[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2900[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2900[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2900 -> 1985[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2901[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2901[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2901 -> 1986[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2902[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2902[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2902 -> 1987[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2903[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2903[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2903 -> 1988[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2904[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2904[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2904 -> 1989[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2905[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1850 -> 2905[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2905 -> 1990[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1851 -> 359[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1851[label="vyy4811 == vyy5011 && vyy4812 <= vyy5012",fontsize=16,color="magenta"];1851 -> 1991[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1851 -> 1992[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1852[label="vyy111",fontsize=16,color="green",shape="box"];1853[label="True",fontsize=16,color="green",shape="box"];1854[label="vyy5010",fontsize=16,color="green",shape="box"];1855[label="vyy4810",fontsize=16,color="green",shape="box"];1856[label="vyy5010",fontsize=16,color="green",shape="box"];1857[label="vyy4810",fontsize=16,color="green",shape="box"];1858[label="vyy5010",fontsize=16,color="green",shape="box"];1859[label="vyy4810",fontsize=16,color="green",shape="box"];1860[label="vyy5010",fontsize=16,color="green",shape="box"];1861[label="vyy4810",fontsize=16,color="green",shape="box"];1862[label="vyy5010",fontsize=16,color="green",shape="box"];1863[label="vyy4810",fontsize=16,color="green",shape="box"];1864[label="vyy5010",fontsize=16,color="green",shape="box"];1865[label="vyy4810",fontsize=16,color="green",shape="box"];1866[label="vyy5010",fontsize=16,color="green",shape="box"];1867[label="vyy4810",fontsize=16,color="green",shape="box"];1868[label="vyy5010",fontsize=16,color="green",shape="box"];1869[label="vyy4810",fontsize=16,color="green",shape="box"];1870[label="vyy5010",fontsize=16,color="green",shape="box"];1871[label="vyy4810",fontsize=16,color="green",shape="box"];1872[label="vyy5010",fontsize=16,color="green",shape="box"];1873[label="vyy4810",fontsize=16,color="green",shape="box"];1874[label="vyy5010",fontsize=16,color="green",shape="box"];1875[label="vyy4810",fontsize=16,color="green",shape="box"];1876[label="vyy5010",fontsize=16,color="green",shape="box"];1877[label="vyy4810",fontsize=16,color="green",shape="box"];1878[label="vyy5010",fontsize=16,color="green",shape="box"];1879[label="vyy4810",fontsize=16,color="green",shape="box"];1880[label="vyy5010",fontsize=16,color="green",shape="box"];1881[label="vyy4810",fontsize=16,color="green",shape="box"];1882 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1882[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1882 -> 1993[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1882 -> 1994[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1883 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1883[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1883 -> 1995[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1883 -> 1996[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1884 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1884[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1884 -> 1997[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1884 -> 1998[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1885 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1885[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1885 -> 1999[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1885 -> 2000[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1886 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1886[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1886 -> 2001[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1886 -> 2002[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1887 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1887[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1887 -> 2003[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1887 -> 2004[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1888 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1888[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1888 -> 2005[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1888 -> 2006[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1889 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1889[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1889 -> 2007[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1889 -> 2008[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1890 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1890[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1890 -> 2009[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1890 -> 2010[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1891 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1891[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1891 -> 2011[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1891 -> 2012[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1892 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1892[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1892 -> 2013[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1892 -> 2014[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1893 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1893[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1893 -> 2015[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1893 -> 2016[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1894 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1894[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1894 -> 2017[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1894 -> 2018[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1895 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1895[label="vyy4810 == vyy5010",fontsize=16,color="magenta"];1895 -> 2019[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1895 -> 2020[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1896 -> 1311[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1896[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1896 -> 2021[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1896 -> 2022[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1897 -> 1312[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1897[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1897 -> 2023[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1897 -> 2024[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1898 -> 1313[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1898[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1898 -> 2025[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1898 -> 2026[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1899 -> 1314[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1899[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1899 -> 2027[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1899 -> 2028[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1900 -> 1315[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1900[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1900 -> 2029[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1900 -> 2030[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1901 -> 1316[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1901[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1901 -> 2031[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1901 -> 2032[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1902 -> 1317[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1902[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1902 -> 2033[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1902 -> 2034[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1903 -> 1318[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1903[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1903 -> 2035[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1903 -> 2036[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1904 -> 1319[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1904[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1904 -> 2037[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1904 -> 2038[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1905 -> 1320[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1905[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1905 -> 2039[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1905 -> 2040[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1906 -> 1321[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1906[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1906 -> 2041[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1906 -> 2042[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1907 -> 1322[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1907[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1907 -> 2043[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1907 -> 2044[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1908 -> 1323[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1908[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1908 -> 2045[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1908 -> 2046[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1909 -> 1324[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1909[label="vyy4811 <= vyy5011",fontsize=16,color="magenta"];1909 -> 2047[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1909 -> 2048[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1910 -> 2049[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1910[label="compare1 vyy480 vyy500 (vyy480 <= vyy500)",fontsize=16,color="magenta"];1910 -> 2050[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1911[label="EQ",fontsize=16,color="green",shape="box"];1912[label="vyy5001",fontsize=16,color="green",shape="box"];1913[label="vyy4801",fontsize=16,color="green",shape="box"];1914 -> 2051[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1914[label="primCompAux0 vyy112 (compare vyy4800 vyy5000)",fontsize=16,color="magenta"];1914 -> 2052[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1914 -> 2053[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1915[label="primCmpNat (Succ vyy48000) vyy5000",fontsize=16,color="burlywood",shape="box"];2906[label="vyy5000/Succ vyy50000",fontsize=10,color="white",style="solid",shape="box"];1915 -> 2906[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2906 -> 2054[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2907[label="vyy5000/Zero",fontsize=10,color="white",style="solid",shape="box"];1915 -> 2907[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2907 -> 2055[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1916[label="primCmpNat Zero vyy5000",fontsize=16,color="burlywood",shape="box"];2908[label="vyy5000/Succ vyy50000",fontsize=10,color="white",style="solid",shape="box"];1916 -> 2908[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2908 -> 2056[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2909[label="vyy5000/Zero",fontsize=10,color="white",style="solid",shape="box"];1916 -> 2909[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2909 -> 2057[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1917[label="vyy5000 * vyy4801",fontsize=16,color="burlywood",shape="triangle"];2910[label="vyy5000/Integer vyy50000",fontsize=10,color="white",style="solid",shape="box"];1917 -> 2910[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2910 -> 2058[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1918 -> 1917[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1918[label="vyy4800 * vyy5001",fontsize=16,color="magenta"];1918 -> 2059[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1918 -> 2060[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1919 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1919[label="vyy5000 * vyy4801",fontsize=16,color="magenta"];1919 -> 2061[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1919 -> 2062[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1920 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1920[label="vyy4800 * vyy5001",fontsize=16,color="magenta"];1920 -> 2063[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1920 -> 2064[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1921 -> 2065[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1921[label="compare1 vyy480 vyy500 (vyy480 <= vyy500)",fontsize=16,color="magenta"];1921 -> 2066[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1922[label="EQ",fontsize=16,color="green",shape="box"];1923 -> 2067[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1923[label="compare1 vyy480 vyy500 (vyy480 <= vyy500)",fontsize=16,color="magenta"];1923 -> 2068[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1924[label="EQ",fontsize=16,color="green",shape="box"];1925 -> 2069[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1925[label="compare1 vyy480 vyy500 (vyy480 <= vyy500)",fontsize=16,color="magenta"];1925 -> 2070[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1926[label="EQ",fontsize=16,color="green",shape="box"];1927 -> 2071[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1927[label="compare1 vyy480 vyy500 (vyy480 <= vyy500)",fontsize=16,color="magenta"];1927 -> 2072[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1928[label="EQ",fontsize=16,color="green",shape="box"];1929[label="primCmpDouble (Double vyy4800 (Pos vyy48010)) (Double vyy5000 (Pos vyy50010))",fontsize=16,color="black",shape="box"];1929 -> 2073[label="",style="solid", color="black", weight=3]; 26.21/10.59 1930[label="primCmpDouble (Double vyy4800 (Pos vyy48010)) (Double vyy5000 (Neg vyy50010))",fontsize=16,color="black",shape="box"];1930 -> 2074[label="",style="solid", color="black", weight=3]; 26.21/10.59 1931[label="primCmpDouble (Double vyy4800 (Neg vyy48010)) (Double vyy5000 (Pos vyy50010))",fontsize=16,color="black",shape="box"];1931 -> 2075[label="",style="solid", color="black", weight=3]; 26.21/10.59 1932[label="primCmpDouble (Double vyy4800 (Neg vyy48010)) (Double vyy5000 (Neg vyy50010))",fontsize=16,color="black",shape="box"];1932 -> 2076[label="",style="solid", color="black", weight=3]; 26.21/10.59 1933[label="primCmpFloat (Float vyy4800 (Pos vyy48010)) (Float vyy5000 (Pos vyy50010))",fontsize=16,color="black",shape="box"];1933 -> 2077[label="",style="solid", color="black", weight=3]; 26.21/10.59 1934[label="primCmpFloat (Float vyy4800 (Pos vyy48010)) (Float vyy5000 (Neg vyy50010))",fontsize=16,color="black",shape="box"];1934 -> 2078[label="",style="solid", color="black", weight=3]; 26.21/10.59 1935[label="primCmpFloat (Float vyy4800 (Neg vyy48010)) (Float vyy5000 (Pos vyy50010))",fontsize=16,color="black",shape="box"];1935 -> 2079[label="",style="solid", color="black", weight=3]; 26.21/10.59 1936[label="primCmpFloat (Float vyy4800 (Neg vyy48010)) (Float vyy5000 (Neg vyy50010))",fontsize=16,color="black",shape="box"];1936 -> 2080[label="",style="solid", color="black", weight=3]; 26.21/10.59 1937 -> 1775[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1937[label="primCmpNat (Succ vyy48000) vyy5000",fontsize=16,color="magenta"];1937 -> 2081[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1937 -> 2082[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1938[label="GT",fontsize=16,color="green",shape="box"];1939[label="primCmpInt (Pos Zero) (Pos (Succ vyy50000))",fontsize=16,color="black",shape="box"];1939 -> 2083[label="",style="solid", color="black", weight=3]; 26.21/10.59 1940[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1940 -> 2084[label="",style="solid", color="black", weight=3]; 26.21/10.59 1941[label="primCmpInt (Pos Zero) (Neg (Succ vyy50000))",fontsize=16,color="black",shape="box"];1941 -> 2085[label="",style="solid", color="black", weight=3]; 26.21/10.59 1942[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1942 -> 2086[label="",style="solid", color="black", weight=3]; 26.21/10.59 1943[label="LT",fontsize=16,color="green",shape="box"];1944 -> 1775[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1944[label="primCmpNat vyy5000 (Succ vyy48000)",fontsize=16,color="magenta"];1944 -> 2087[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1944 -> 2088[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1945[label="primCmpInt (Neg Zero) (Pos (Succ vyy50000))",fontsize=16,color="black",shape="box"];1945 -> 2089[label="",style="solid", color="black", weight=3]; 26.21/10.59 1946[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1946 -> 2090[label="",style="solid", color="black", weight=3]; 26.21/10.59 1947[label="primCmpInt (Neg Zero) (Neg (Succ vyy50000))",fontsize=16,color="black",shape="box"];1947 -> 2091[label="",style="solid", color="black", weight=3]; 26.21/10.59 1948[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1948 -> 2092[label="",style="solid", color="black", weight=3]; 26.21/10.59 1256[label="primPlusNat (Succ vyy8300) vyy50100",fontsize=16,color="burlywood",shape="box"];2911[label="vyy50100/Succ vyy501000",fontsize=10,color="white",style="solid",shape="box"];1256 -> 2911[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2911 -> 1293[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2912[label="vyy50100/Zero",fontsize=10,color="white",style="solid",shape="box"];1256 -> 2912[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2912 -> 1294[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1257[label="primPlusNat Zero vyy50100",fontsize=16,color="burlywood",shape="box"];2913[label="vyy50100/Succ vyy501000",fontsize=10,color="white",style="solid",shape="box"];1257 -> 2913[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2913 -> 1295[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2914[label="vyy50100/Zero",fontsize=10,color="white",style="solid",shape="box"];1257 -> 2914[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2914 -> 1296[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 1949[label="vyy4810",fontsize=16,color="green",shape="box"];1950[label="vyy5010",fontsize=16,color="green",shape="box"];1951[label="vyy4810",fontsize=16,color="green",shape="box"];1952[label="vyy5010",fontsize=16,color="green",shape="box"];1953[label="vyy4810",fontsize=16,color="green",shape="box"];1954[label="vyy5010",fontsize=16,color="green",shape="box"];1955[label="vyy4810",fontsize=16,color="green",shape="box"];1956[label="vyy5010",fontsize=16,color="green",shape="box"];1957[label="vyy4810",fontsize=16,color="green",shape="box"];1958[label="vyy5010",fontsize=16,color="green",shape="box"];1959[label="vyy4810",fontsize=16,color="green",shape="box"];1960[label="vyy5010",fontsize=16,color="green",shape="box"];1961[label="vyy4810",fontsize=16,color="green",shape="box"];1962[label="vyy5010",fontsize=16,color="green",shape="box"];1963[label="vyy4810",fontsize=16,color="green",shape="box"];1964[label="vyy5010",fontsize=16,color="green",shape="box"];1965[label="vyy4810",fontsize=16,color="green",shape="box"];1966[label="vyy5010",fontsize=16,color="green",shape="box"];1967[label="vyy4810",fontsize=16,color="green",shape="box"];1968[label="vyy5010",fontsize=16,color="green",shape="box"];1969[label="vyy4810",fontsize=16,color="green",shape="box"];1970[label="vyy5010",fontsize=16,color="green",shape="box"];1971[label="vyy4810",fontsize=16,color="green",shape="box"];1972[label="vyy5010",fontsize=16,color="green",shape="box"];1973[label="vyy4810",fontsize=16,color="green",shape="box"];1974[label="vyy5010",fontsize=16,color="green",shape="box"];1975[label="vyy4810",fontsize=16,color="green",shape="box"];1976[label="vyy5010",fontsize=16,color="green",shape="box"];1977 -> 1277[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1977[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1977 -> 2093[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1977 -> 2094[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1978 -> 1278[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1978[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1978 -> 2095[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1978 -> 2096[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1979 -> 1279[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1979[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1979 -> 2097[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1979 -> 2098[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1980 -> 1280[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1980[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1980 -> 2099[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1980 -> 2100[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1981 -> 1281[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1981[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1981 -> 2101[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1981 -> 2102[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1982 -> 1282[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1982[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1982 -> 2103[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1982 -> 2104[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1983 -> 1283[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1983[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1983 -> 2105[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1983 -> 2106[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1984 -> 1284[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1984[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1984 -> 2107[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1984 -> 2108[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1985 -> 1285[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1985[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1985 -> 2109[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1985 -> 2110[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1986 -> 1286[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1986[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1986 -> 2111[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1986 -> 2112[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1987 -> 1287[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1987[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1987 -> 2113[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1987 -> 2114[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1988 -> 1288[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1988[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1988 -> 2115[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1988 -> 2116[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1989 -> 1289[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1989[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1989 -> 2117[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1989 -> 2118[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1990 -> 1290[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1990[label="vyy4811 < vyy5011",fontsize=16,color="magenta"];1990 -> 2119[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1990 -> 2120[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1991[label="vyy4811 == vyy5011",fontsize=16,color="blue",shape="box"];2915[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2915[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2915 -> 2121[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2916[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2916[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2916 -> 2122[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2917[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2917[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2917 -> 2123[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2918[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2918[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2918 -> 2124[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2919[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2919[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2919 -> 2125[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2920[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2920[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2920 -> 2126[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2921[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2921[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2921 -> 2127[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2922[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2922[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2922 -> 2128[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2923[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2923[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2923 -> 2129[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2924[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2924[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2924 -> 2130[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2925[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2925[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2925 -> 2131[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2926[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2926[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2926 -> 2132[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2927[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2927[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2927 -> 2133[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2928[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1991 -> 2928[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2928 -> 2134[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1992[label="vyy4812 <= vyy5012",fontsize=16,color="blue",shape="box"];2929[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2929[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2929 -> 2135[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2930[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2930[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2930 -> 2136[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2931[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2931[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2931 -> 2137[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2932[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2932[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2932 -> 2138[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2933[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2933[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2933 -> 2139[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2934[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2934[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2934 -> 2140[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2935[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2935[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2935 -> 2141[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2936[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2936[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2936 -> 2142[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2937[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2937[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2937 -> 2143[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2938[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2938[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2938 -> 2144[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2939[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2939[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2939 -> 2145[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2940[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2940[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2940 -> 2146[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2941[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2941[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2941 -> 2147[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2942[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1992 -> 2942[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2942 -> 2148[label="",style="solid", color="blue", weight=3]; 26.21/10.59 1993[label="vyy4810",fontsize=16,color="green",shape="box"];1994[label="vyy5010",fontsize=16,color="green",shape="box"];1995[label="vyy4810",fontsize=16,color="green",shape="box"];1996[label="vyy5010",fontsize=16,color="green",shape="box"];1997[label="vyy4810",fontsize=16,color="green",shape="box"];1998[label="vyy5010",fontsize=16,color="green",shape="box"];1999[label="vyy4810",fontsize=16,color="green",shape="box"];2000[label="vyy5010",fontsize=16,color="green",shape="box"];2001[label="vyy4810",fontsize=16,color="green",shape="box"];2002[label="vyy5010",fontsize=16,color="green",shape="box"];2003[label="vyy4810",fontsize=16,color="green",shape="box"];2004[label="vyy5010",fontsize=16,color="green",shape="box"];2005[label="vyy4810",fontsize=16,color="green",shape="box"];2006[label="vyy5010",fontsize=16,color="green",shape="box"];2007[label="vyy4810",fontsize=16,color="green",shape="box"];2008[label="vyy5010",fontsize=16,color="green",shape="box"];2009[label="vyy4810",fontsize=16,color="green",shape="box"];2010[label="vyy5010",fontsize=16,color="green",shape="box"];2011[label="vyy4810",fontsize=16,color="green",shape="box"];2012[label="vyy5010",fontsize=16,color="green",shape="box"];2013[label="vyy4810",fontsize=16,color="green",shape="box"];2014[label="vyy5010",fontsize=16,color="green",shape="box"];2015[label="vyy4810",fontsize=16,color="green",shape="box"];2016[label="vyy5010",fontsize=16,color="green",shape="box"];2017[label="vyy4810",fontsize=16,color="green",shape="box"];2018[label="vyy5010",fontsize=16,color="green",shape="box"];2019[label="vyy4810",fontsize=16,color="green",shape="box"];2020[label="vyy5010",fontsize=16,color="green",shape="box"];2021[label="vyy4811",fontsize=16,color="green",shape="box"];2022[label="vyy5011",fontsize=16,color="green",shape="box"];2023[label="vyy4811",fontsize=16,color="green",shape="box"];2024[label="vyy5011",fontsize=16,color="green",shape="box"];2025[label="vyy4811",fontsize=16,color="green",shape="box"];2026[label="vyy5011",fontsize=16,color="green",shape="box"];2027[label="vyy4811",fontsize=16,color="green",shape="box"];2028[label="vyy5011",fontsize=16,color="green",shape="box"];2029[label="vyy4811",fontsize=16,color="green",shape="box"];2030[label="vyy5011",fontsize=16,color="green",shape="box"];2031[label="vyy4811",fontsize=16,color="green",shape="box"];2032[label="vyy5011",fontsize=16,color="green",shape="box"];2033[label="vyy4811",fontsize=16,color="green",shape="box"];2034[label="vyy5011",fontsize=16,color="green",shape="box"];2035[label="vyy4811",fontsize=16,color="green",shape="box"];2036[label="vyy5011",fontsize=16,color="green",shape="box"];2037[label="vyy4811",fontsize=16,color="green",shape="box"];2038[label="vyy5011",fontsize=16,color="green",shape="box"];2039[label="vyy4811",fontsize=16,color="green",shape="box"];2040[label="vyy5011",fontsize=16,color="green",shape="box"];2041[label="vyy4811",fontsize=16,color="green",shape="box"];2042[label="vyy5011",fontsize=16,color="green",shape="box"];2043[label="vyy4811",fontsize=16,color="green",shape="box"];2044[label="vyy5011",fontsize=16,color="green",shape="box"];2045[label="vyy4811",fontsize=16,color="green",shape="box"];2046[label="vyy5011",fontsize=16,color="green",shape="box"];2047[label="vyy4811",fontsize=16,color="green",shape="box"];2048[label="vyy5011",fontsize=16,color="green",shape="box"];2050 -> 1311[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2050[label="vyy480 <= vyy500",fontsize=16,color="magenta"];2050 -> 2149[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2050 -> 2150[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2049[label="compare1 vyy480 vyy500 vyy113",fontsize=16,color="burlywood",shape="triangle"];2943[label="vyy113/False",fontsize=10,color="white",style="solid",shape="box"];2049 -> 2943[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2943 -> 2151[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2944[label="vyy113/True",fontsize=10,color="white",style="solid",shape="box"];2049 -> 2944[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2944 -> 2152[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2052[label="vyy112",fontsize=16,color="green",shape="box"];2053[label="compare vyy4800 vyy5000",fontsize=16,color="blue",shape="box"];2945[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2945[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2945 -> 2153[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2946[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2946[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2946 -> 2154[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2947[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2947[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2947 -> 2155[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2948[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2948[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2948 -> 2156[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2949[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2949[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2949 -> 2157[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2950[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2950[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2950 -> 2158[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2951[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2951[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2951 -> 2159[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2952[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2952[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2952 -> 2160[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2953[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2953[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2953 -> 2161[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2954[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2954[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2954 -> 2162[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2955[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2955[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2955 -> 2163[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2956[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2956[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2956 -> 2164[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2957[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2957[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2957 -> 2165[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2958[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];2053 -> 2958[label="",style="solid", color="blue", weight=9]; 26.21/10.59 2958 -> 2166[label="",style="solid", color="blue", weight=3]; 26.21/10.59 2051[label="primCompAux0 vyy117 vyy118",fontsize=16,color="burlywood",shape="triangle"];2959[label="vyy118/LT",fontsize=10,color="white",style="solid",shape="box"];2051 -> 2959[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2959 -> 2167[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2960[label="vyy118/EQ",fontsize=10,color="white",style="solid",shape="box"];2051 -> 2960[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2960 -> 2168[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2961[label="vyy118/GT",fontsize=10,color="white",style="solid",shape="box"];2051 -> 2961[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2961 -> 2169[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2054[label="primCmpNat (Succ vyy48000) (Succ vyy50000)",fontsize=16,color="black",shape="box"];2054 -> 2170[label="",style="solid", color="black", weight=3]; 26.21/10.59 2055[label="primCmpNat (Succ vyy48000) Zero",fontsize=16,color="black",shape="box"];2055 -> 2171[label="",style="solid", color="black", weight=3]; 26.21/10.59 2056[label="primCmpNat Zero (Succ vyy50000)",fontsize=16,color="black",shape="box"];2056 -> 2172[label="",style="solid", color="black", weight=3]; 26.21/10.59 2057[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];2057 -> 2173[label="",style="solid", color="black", weight=3]; 26.21/10.59 2058[label="Integer vyy50000 * vyy4801",fontsize=16,color="burlywood",shape="box"];2962[label="vyy4801/Integer vyy48010",fontsize=10,color="white",style="solid",shape="box"];2058 -> 2962[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2962 -> 2174[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2059[label="vyy5001",fontsize=16,color="green",shape="box"];2060[label="vyy4800",fontsize=16,color="green",shape="box"];2061[label="vyy5000",fontsize=16,color="green",shape="box"];2062[label="vyy4801",fontsize=16,color="green",shape="box"];2063[label="vyy4800",fontsize=16,color="green",shape="box"];2064[label="vyy5001",fontsize=16,color="green",shape="box"];2066 -> 1317[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2066[label="vyy480 <= vyy500",fontsize=16,color="magenta"];2066 -> 2175[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2066 -> 2176[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2065[label="compare1 vyy480 vyy500 vyy119",fontsize=16,color="burlywood",shape="triangle"];2963[label="vyy119/False",fontsize=10,color="white",style="solid",shape="box"];2065 -> 2963[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2963 -> 2177[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2964[label="vyy119/True",fontsize=10,color="white",style="solid",shape="box"];2065 -> 2964[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2964 -> 2178[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2068 -> 1318[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2068[label="vyy480 <= vyy500",fontsize=16,color="magenta"];2068 -> 2179[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2068 -> 2180[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2067[label="compare1 vyy480 vyy500 vyy120",fontsize=16,color="burlywood",shape="triangle"];2965[label="vyy120/False",fontsize=10,color="white",style="solid",shape="box"];2067 -> 2965[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2965 -> 2181[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2966[label="vyy120/True",fontsize=10,color="white",style="solid",shape="box"];2067 -> 2966[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2966 -> 2182[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2070 -> 1319[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2070[label="vyy480 <= vyy500",fontsize=16,color="magenta"];2070 -> 2183[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2070 -> 2184[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2069[label="compare1 vyy480 vyy500 vyy121",fontsize=16,color="burlywood",shape="triangle"];2967[label="vyy121/False",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2967[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2967 -> 2185[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2968[label="vyy121/True",fontsize=10,color="white",style="solid",shape="box"];2069 -> 2968[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2968 -> 2186[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2072 -> 1320[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2072[label="vyy480 <= vyy500",fontsize=16,color="magenta"];2072 -> 2187[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2072 -> 2188[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2071[label="compare1 vyy480 vyy500 vyy122",fontsize=16,color="burlywood",shape="triangle"];2969[label="vyy122/False",fontsize=10,color="white",style="solid",shape="box"];2071 -> 2969[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2969 -> 2189[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2970[label="vyy122/True",fontsize=10,color="white",style="solid",shape="box"];2071 -> 2970[label="",style="solid", color="burlywood", weight=9]; 26.21/10.59 2970 -> 2190[label="",style="solid", color="burlywood", weight=3]; 26.21/10.59 2073 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2073[label="compare (vyy4800 * Pos vyy50010) (Pos vyy48010 * vyy5000)",fontsize=16,color="magenta"];2073 -> 2191[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2073 -> 2192[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2074 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2074[label="compare (vyy4800 * Pos vyy50010) (Neg vyy48010 * vyy5000)",fontsize=16,color="magenta"];2074 -> 2193[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2074 -> 2194[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2075 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2075[label="compare (vyy4800 * Neg vyy50010) (Pos vyy48010 * vyy5000)",fontsize=16,color="magenta"];2075 -> 2195[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2075 -> 2196[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2076 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2076[label="compare (vyy4800 * Neg vyy50010) (Neg vyy48010 * vyy5000)",fontsize=16,color="magenta"];2076 -> 2197[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2076 -> 2198[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2077 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2077[label="compare (vyy4800 * Pos vyy50010) (Pos vyy48010 * vyy5000)",fontsize=16,color="magenta"];2077 -> 2199[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2077 -> 2200[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2078 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2078[label="compare (vyy4800 * Pos vyy50010) (Neg vyy48010 * vyy5000)",fontsize=16,color="magenta"];2078 -> 2201[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2078 -> 2202[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2079 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2079[label="compare (vyy4800 * Neg vyy50010) (Pos vyy48010 * vyy5000)",fontsize=16,color="magenta"];2079 -> 2203[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2079 -> 2204[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2080 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2080[label="compare (vyy4800 * Neg vyy50010) (Neg vyy48010 * vyy5000)",fontsize=16,color="magenta"];2080 -> 2205[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2080 -> 2206[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2081[label="vyy5000",fontsize=16,color="green",shape="box"];2082[label="Succ vyy48000",fontsize=16,color="green",shape="box"];2083 -> 1775[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2083[label="primCmpNat Zero (Succ vyy50000)",fontsize=16,color="magenta"];2083 -> 2207[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2083 -> 2208[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2084[label="EQ",fontsize=16,color="green",shape="box"];2085[label="GT",fontsize=16,color="green",shape="box"];2086[label="EQ",fontsize=16,color="green",shape="box"];2087[label="Succ vyy48000",fontsize=16,color="green",shape="box"];2088[label="vyy5000",fontsize=16,color="green",shape="box"];2089[label="LT",fontsize=16,color="green",shape="box"];2090[label="EQ",fontsize=16,color="green",shape="box"];2091 -> 1775[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2091[label="primCmpNat (Succ vyy50000) Zero",fontsize=16,color="magenta"];2091 -> 2209[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2091 -> 2210[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2092[label="EQ",fontsize=16,color="green",shape="box"];1293[label="primPlusNat (Succ vyy8300) (Succ vyy501000)",fontsize=16,color="black",shape="box"];1293 -> 1341[label="",style="solid", color="black", weight=3]; 26.21/10.59 1294[label="primPlusNat (Succ vyy8300) Zero",fontsize=16,color="black",shape="box"];1294 -> 1342[label="",style="solid", color="black", weight=3]; 26.21/10.59 1295[label="primPlusNat Zero (Succ vyy501000)",fontsize=16,color="black",shape="box"];1295 -> 1343[label="",style="solid", color="black", weight=3]; 26.21/10.59 1296[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1296 -> 1344[label="",style="solid", color="black", weight=3]; 26.21/10.59 2093[label="vyy5011",fontsize=16,color="green",shape="box"];2094[label="vyy4811",fontsize=16,color="green",shape="box"];2095[label="vyy5011",fontsize=16,color="green",shape="box"];2096[label="vyy4811",fontsize=16,color="green",shape="box"];2097[label="vyy5011",fontsize=16,color="green",shape="box"];2098[label="vyy4811",fontsize=16,color="green",shape="box"];2099[label="vyy5011",fontsize=16,color="green",shape="box"];2100[label="vyy4811",fontsize=16,color="green",shape="box"];2101[label="vyy5011",fontsize=16,color="green",shape="box"];2102[label="vyy4811",fontsize=16,color="green",shape="box"];2103[label="vyy5011",fontsize=16,color="green",shape="box"];2104[label="vyy4811",fontsize=16,color="green",shape="box"];2105[label="vyy5011",fontsize=16,color="green",shape="box"];2106[label="vyy4811",fontsize=16,color="green",shape="box"];2107[label="vyy5011",fontsize=16,color="green",shape="box"];2108[label="vyy4811",fontsize=16,color="green",shape="box"];2109[label="vyy5011",fontsize=16,color="green",shape="box"];2110[label="vyy4811",fontsize=16,color="green",shape="box"];2111[label="vyy5011",fontsize=16,color="green",shape="box"];2112[label="vyy4811",fontsize=16,color="green",shape="box"];2113[label="vyy5011",fontsize=16,color="green",shape="box"];2114[label="vyy4811",fontsize=16,color="green",shape="box"];2115[label="vyy5011",fontsize=16,color="green",shape="box"];2116[label="vyy4811",fontsize=16,color="green",shape="box"];2117[label="vyy5011",fontsize=16,color="green",shape="box"];2118[label="vyy4811",fontsize=16,color="green",shape="box"];2119[label="vyy5011",fontsize=16,color="green",shape="box"];2120[label="vyy4811",fontsize=16,color="green",shape="box"];2121 -> 139[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2121[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2121 -> 2211[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2121 -> 2212[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2122 -> 137[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2122[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2122 -> 2213[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2122 -> 2214[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2123 -> 129[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2123[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2123 -> 2215[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2123 -> 2216[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2124 -> 135[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2124[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2124 -> 2217[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2124 -> 2218[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2125 -> 136[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2125[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2125 -> 2219[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2125 -> 2220[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2126 -> 141[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2126[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2126 -> 2221[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2126 -> 2222[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2127 -> 128[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2127[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2127 -> 2223[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2127 -> 2224[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2128 -> 138[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2128[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2128 -> 2225[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2128 -> 2226[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2129 -> 131[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2129[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2129 -> 2227[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2129 -> 2228[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2130 -> 134[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2130[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2130 -> 2229[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2130 -> 2230[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2131 -> 132[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2131[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2131 -> 2231[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2131 -> 2232[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2132 -> 130[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2132[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2132 -> 2233[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2132 -> 2234[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2133 -> 133[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2133[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2133 -> 2235[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2133 -> 2236[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2134 -> 140[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2134[label="vyy4811 == vyy5011",fontsize=16,color="magenta"];2134 -> 2237[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2134 -> 2238[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2135 -> 1311[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2135[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2135 -> 2239[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2135 -> 2240[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2136 -> 1312[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2136[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2136 -> 2241[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2136 -> 2242[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2137 -> 1313[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2137[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2137 -> 2243[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2137 -> 2244[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2138 -> 1314[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2138[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2138 -> 2245[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2138 -> 2246[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2139 -> 1315[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2139[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2139 -> 2247[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2139 -> 2248[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2140 -> 1316[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2140[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2140 -> 2249[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2140 -> 2250[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2141 -> 1317[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2141[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2141 -> 2251[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2141 -> 2252[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2142 -> 1318[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2142[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2142 -> 2253[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2142 -> 2254[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2143 -> 1319[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2143[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2143 -> 2255[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2143 -> 2256[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2144 -> 1320[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2144[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2144 -> 2257[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2144 -> 2258[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2145 -> 1321[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2145[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2145 -> 2259[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2145 -> 2260[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2146 -> 1322[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2146[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2146 -> 2261[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2146 -> 2262[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2147 -> 1323[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2147[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2147 -> 2263[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2147 -> 2264[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2148 -> 1324[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2148[label="vyy4812 <= vyy5012",fontsize=16,color="magenta"];2148 -> 2265[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2148 -> 2266[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2149[label="vyy480",fontsize=16,color="green",shape="box"];2150[label="vyy500",fontsize=16,color="green",shape="box"];2151[label="compare1 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];2151 -> 2267[label="",style="solid", color="black", weight=3]; 26.21/10.59 2152[label="compare1 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2152 -> 2268[label="",style="solid", color="black", weight=3]; 26.21/10.59 2153 -> 1392[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2153[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2153 -> 2269[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2153 -> 2270[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2154 -> 1394[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2154[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2154 -> 2271[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2154 -> 2272[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2155 -> 1396[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2155[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2155 -> 2273[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2155 -> 2274[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2156 -> 1398[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2156[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2156 -> 2275[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2156 -> 2276[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2157 -> 1400[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2157[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2157 -> 2277[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2157 -> 2278[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2158 -> 1402[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2158[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2158 -> 2279[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2158 -> 2280[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2159 -> 1404[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2159[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2159 -> 2281[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2159 -> 2282[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2160 -> 1406[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2160[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2160 -> 2283[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2160 -> 2284[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2161 -> 1408[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2161[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2161 -> 2285[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2161 -> 2286[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2162 -> 1410[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2162[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2162 -> 2287[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2162 -> 2288[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2163 -> 1412[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2163[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2163 -> 2289[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2163 -> 2290[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2164 -> 1414[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2164[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2164 -> 2291[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2164 -> 2292[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2165 -> 1416[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2165[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2165 -> 2293[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2165 -> 2294[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2166 -> 1418[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2166[label="compare vyy4800 vyy5000",fontsize=16,color="magenta"];2166 -> 2295[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2166 -> 2296[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2167[label="primCompAux0 vyy117 LT",fontsize=16,color="black",shape="box"];2167 -> 2297[label="",style="solid", color="black", weight=3]; 26.21/10.59 2168[label="primCompAux0 vyy117 EQ",fontsize=16,color="black",shape="box"];2168 -> 2298[label="",style="solid", color="black", weight=3]; 26.21/10.59 2169[label="primCompAux0 vyy117 GT",fontsize=16,color="black",shape="box"];2169 -> 2299[label="",style="solid", color="black", weight=3]; 26.21/10.59 2170 -> 1775[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2170[label="primCmpNat vyy48000 vyy50000",fontsize=16,color="magenta"];2170 -> 2300[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2170 -> 2301[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2171[label="GT",fontsize=16,color="green",shape="box"];2172[label="LT",fontsize=16,color="green",shape="box"];2173[label="EQ",fontsize=16,color="green",shape="box"];2174[label="Integer vyy50000 * Integer vyy48010",fontsize=16,color="black",shape="box"];2174 -> 2302[label="",style="solid", color="black", weight=3]; 26.21/10.59 2175[label="vyy480",fontsize=16,color="green",shape="box"];2176[label="vyy500",fontsize=16,color="green",shape="box"];2177[label="compare1 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];2177 -> 2303[label="",style="solid", color="black", weight=3]; 26.21/10.59 2178[label="compare1 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2178 -> 2304[label="",style="solid", color="black", weight=3]; 26.21/10.59 2179[label="vyy480",fontsize=16,color="green",shape="box"];2180[label="vyy500",fontsize=16,color="green",shape="box"];2181[label="compare1 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];2181 -> 2305[label="",style="solid", color="black", weight=3]; 26.21/10.59 2182[label="compare1 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2182 -> 2306[label="",style="solid", color="black", weight=3]; 26.21/10.59 2183[label="vyy480",fontsize=16,color="green",shape="box"];2184[label="vyy500",fontsize=16,color="green",shape="box"];2185[label="compare1 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];2185 -> 2307[label="",style="solid", color="black", weight=3]; 26.21/10.59 2186[label="compare1 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2186 -> 2308[label="",style="solid", color="black", weight=3]; 26.21/10.59 2187[label="vyy480",fontsize=16,color="green",shape="box"];2188[label="vyy500",fontsize=16,color="green",shape="box"];2189[label="compare1 vyy480 vyy500 False",fontsize=16,color="black",shape="box"];2189 -> 2309[label="",style="solid", color="black", weight=3]; 26.21/10.59 2190[label="compare1 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2190 -> 2310[label="",style="solid", color="black", weight=3]; 26.21/10.59 2191 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2191[label="Pos vyy48010 * vyy5000",fontsize=16,color="magenta"];2191 -> 2311[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2191 -> 2312[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2192 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2192[label="vyy4800 * Pos vyy50010",fontsize=16,color="magenta"];2192 -> 2313[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2192 -> 2314[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2193 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2193[label="Neg vyy48010 * vyy5000",fontsize=16,color="magenta"];2193 -> 2315[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2193 -> 2316[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2194 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2194[label="vyy4800 * Pos vyy50010",fontsize=16,color="magenta"];2194 -> 2317[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2194 -> 2318[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2195 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2195[label="Pos vyy48010 * vyy5000",fontsize=16,color="magenta"];2195 -> 2319[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2195 -> 2320[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2196 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2196[label="vyy4800 * Neg vyy50010",fontsize=16,color="magenta"];2196 -> 2321[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2196 -> 2322[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2197 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2197[label="Neg vyy48010 * vyy5000",fontsize=16,color="magenta"];2197 -> 2323[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2197 -> 2324[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2198 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2198[label="vyy4800 * Neg vyy50010",fontsize=16,color="magenta"];2198 -> 2325[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2198 -> 2326[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2199 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2199[label="Pos vyy48010 * vyy5000",fontsize=16,color="magenta"];2199 -> 2327[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2199 -> 2328[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2200 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2200[label="vyy4800 * Pos vyy50010",fontsize=16,color="magenta"];2200 -> 2329[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2200 -> 2330[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2201 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2201[label="Neg vyy48010 * vyy5000",fontsize=16,color="magenta"];2201 -> 2331[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2201 -> 2332[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2202 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2202[label="vyy4800 * Pos vyy50010",fontsize=16,color="magenta"];2202 -> 2333[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2202 -> 2334[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2203 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2203[label="Pos vyy48010 * vyy5000",fontsize=16,color="magenta"];2203 -> 2335[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2203 -> 2336[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2204 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2204[label="vyy4800 * Neg vyy50010",fontsize=16,color="magenta"];2204 -> 2337[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2204 -> 2338[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2205 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2205[label="Neg vyy48010 * vyy5000",fontsize=16,color="magenta"];2205 -> 2339[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2205 -> 2340[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2206 -> 390[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2206[label="vyy4800 * Neg vyy50010",fontsize=16,color="magenta"];2206 -> 2341[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2206 -> 2342[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2207[label="Succ vyy50000",fontsize=16,color="green",shape="box"];2208[label="Zero",fontsize=16,color="green",shape="box"];2209[label="Zero",fontsize=16,color="green",shape="box"];2210[label="Succ vyy50000",fontsize=16,color="green",shape="box"];1341[label="Succ (Succ (primPlusNat vyy8300 vyy501000))",fontsize=16,color="green",shape="box"];1341 -> 1423[label="",style="dashed", color="green", weight=3]; 26.21/10.59 1342[label="Succ vyy8300",fontsize=16,color="green",shape="box"];1343[label="Succ vyy501000",fontsize=16,color="green",shape="box"];1344[label="Zero",fontsize=16,color="green",shape="box"];2211[label="vyy4811",fontsize=16,color="green",shape="box"];2212[label="vyy5011",fontsize=16,color="green",shape="box"];2213[label="vyy4811",fontsize=16,color="green",shape="box"];2214[label="vyy5011",fontsize=16,color="green",shape="box"];2215[label="vyy4811",fontsize=16,color="green",shape="box"];2216[label="vyy5011",fontsize=16,color="green",shape="box"];2217[label="vyy4811",fontsize=16,color="green",shape="box"];2218[label="vyy5011",fontsize=16,color="green",shape="box"];2219[label="vyy4811",fontsize=16,color="green",shape="box"];2220[label="vyy5011",fontsize=16,color="green",shape="box"];2221[label="vyy4811",fontsize=16,color="green",shape="box"];2222[label="vyy5011",fontsize=16,color="green",shape="box"];2223[label="vyy4811",fontsize=16,color="green",shape="box"];2224[label="vyy5011",fontsize=16,color="green",shape="box"];2225[label="vyy4811",fontsize=16,color="green",shape="box"];2226[label="vyy5011",fontsize=16,color="green",shape="box"];2227[label="vyy4811",fontsize=16,color="green",shape="box"];2228[label="vyy5011",fontsize=16,color="green",shape="box"];2229[label="vyy4811",fontsize=16,color="green",shape="box"];2230[label="vyy5011",fontsize=16,color="green",shape="box"];2231[label="vyy4811",fontsize=16,color="green",shape="box"];2232[label="vyy5011",fontsize=16,color="green",shape="box"];2233[label="vyy4811",fontsize=16,color="green",shape="box"];2234[label="vyy5011",fontsize=16,color="green",shape="box"];2235[label="vyy4811",fontsize=16,color="green",shape="box"];2236[label="vyy5011",fontsize=16,color="green",shape="box"];2237[label="vyy4811",fontsize=16,color="green",shape="box"];2238[label="vyy5011",fontsize=16,color="green",shape="box"];2239[label="vyy4812",fontsize=16,color="green",shape="box"];2240[label="vyy5012",fontsize=16,color="green",shape="box"];2241[label="vyy4812",fontsize=16,color="green",shape="box"];2242[label="vyy5012",fontsize=16,color="green",shape="box"];2243[label="vyy4812",fontsize=16,color="green",shape="box"];2244[label="vyy5012",fontsize=16,color="green",shape="box"];2245[label="vyy4812",fontsize=16,color="green",shape="box"];2246[label="vyy5012",fontsize=16,color="green",shape="box"];2247[label="vyy4812",fontsize=16,color="green",shape="box"];2248[label="vyy5012",fontsize=16,color="green",shape="box"];2249[label="vyy4812",fontsize=16,color="green",shape="box"];2250[label="vyy5012",fontsize=16,color="green",shape="box"];2251[label="vyy4812",fontsize=16,color="green",shape="box"];2252[label="vyy5012",fontsize=16,color="green",shape="box"];2253[label="vyy4812",fontsize=16,color="green",shape="box"];2254[label="vyy5012",fontsize=16,color="green",shape="box"];2255[label="vyy4812",fontsize=16,color="green",shape="box"];2256[label="vyy5012",fontsize=16,color="green",shape="box"];2257[label="vyy4812",fontsize=16,color="green",shape="box"];2258[label="vyy5012",fontsize=16,color="green",shape="box"];2259[label="vyy4812",fontsize=16,color="green",shape="box"];2260[label="vyy5012",fontsize=16,color="green",shape="box"];2261[label="vyy4812",fontsize=16,color="green",shape="box"];2262[label="vyy5012",fontsize=16,color="green",shape="box"];2263[label="vyy4812",fontsize=16,color="green",shape="box"];2264[label="vyy5012",fontsize=16,color="green",shape="box"];2265[label="vyy4812",fontsize=16,color="green",shape="box"];2266[label="vyy5012",fontsize=16,color="green",shape="box"];2267[label="compare0 vyy480 vyy500 otherwise",fontsize=16,color="black",shape="box"];2267 -> 2343[label="",style="solid", color="black", weight=3]; 26.21/10.59 2268[label="LT",fontsize=16,color="green",shape="box"];2269[label="vyy5000",fontsize=16,color="green",shape="box"];2270[label="vyy4800",fontsize=16,color="green",shape="box"];2271[label="vyy5000",fontsize=16,color="green",shape="box"];2272[label="vyy4800",fontsize=16,color="green",shape="box"];2273[label="vyy5000",fontsize=16,color="green",shape="box"];2274[label="vyy4800",fontsize=16,color="green",shape="box"];2275[label="vyy5000",fontsize=16,color="green",shape="box"];2276[label="vyy4800",fontsize=16,color="green",shape="box"];2277[label="vyy5000",fontsize=16,color="green",shape="box"];2278[label="vyy4800",fontsize=16,color="green",shape="box"];2279[label="vyy5000",fontsize=16,color="green",shape="box"];2280[label="vyy4800",fontsize=16,color="green",shape="box"];2281[label="vyy5000",fontsize=16,color="green",shape="box"];2282[label="vyy4800",fontsize=16,color="green",shape="box"];2283[label="vyy5000",fontsize=16,color="green",shape="box"];2284[label="vyy4800",fontsize=16,color="green",shape="box"];2285[label="vyy5000",fontsize=16,color="green",shape="box"];2286[label="vyy4800",fontsize=16,color="green",shape="box"];2287[label="vyy5000",fontsize=16,color="green",shape="box"];2288[label="vyy4800",fontsize=16,color="green",shape="box"];2289[label="vyy5000",fontsize=16,color="green",shape="box"];2290[label="vyy4800",fontsize=16,color="green",shape="box"];2291[label="vyy5000",fontsize=16,color="green",shape="box"];2292[label="vyy4800",fontsize=16,color="green",shape="box"];2293[label="vyy5000",fontsize=16,color="green",shape="box"];2294[label="vyy4800",fontsize=16,color="green",shape="box"];2295[label="vyy5000",fontsize=16,color="green",shape="box"];2296[label="vyy4800",fontsize=16,color="green",shape="box"];2297[label="LT",fontsize=16,color="green",shape="box"];2298[label="vyy117",fontsize=16,color="green",shape="box"];2299[label="GT",fontsize=16,color="green",shape="box"];2300[label="vyy50000",fontsize=16,color="green",shape="box"];2301[label="vyy48000",fontsize=16,color="green",shape="box"];2302[label="Integer (primMulInt vyy50000 vyy48010)",fontsize=16,color="green",shape="box"];2302 -> 2344[label="",style="dashed", color="green", weight=3]; 26.21/10.59 2303[label="compare0 vyy480 vyy500 otherwise",fontsize=16,color="black",shape="box"];2303 -> 2345[label="",style="solid", color="black", weight=3]; 26.21/10.59 2304[label="LT",fontsize=16,color="green",shape="box"];2305[label="compare0 vyy480 vyy500 otherwise",fontsize=16,color="black",shape="box"];2305 -> 2346[label="",style="solid", color="black", weight=3]; 26.21/10.59 2306[label="LT",fontsize=16,color="green",shape="box"];2307[label="compare0 vyy480 vyy500 otherwise",fontsize=16,color="black",shape="box"];2307 -> 2347[label="",style="solid", color="black", weight=3]; 26.21/10.59 2308[label="LT",fontsize=16,color="green",shape="box"];2309[label="compare0 vyy480 vyy500 otherwise",fontsize=16,color="black",shape="box"];2309 -> 2348[label="",style="solid", color="black", weight=3]; 26.21/10.59 2310[label="LT",fontsize=16,color="green",shape="box"];2311[label="Pos vyy48010",fontsize=16,color="green",shape="box"];2312[label="vyy5000",fontsize=16,color="green",shape="box"];2313[label="vyy4800",fontsize=16,color="green",shape="box"];2314[label="Pos vyy50010",fontsize=16,color="green",shape="box"];2315[label="Neg vyy48010",fontsize=16,color="green",shape="box"];2316[label="vyy5000",fontsize=16,color="green",shape="box"];2317[label="vyy4800",fontsize=16,color="green",shape="box"];2318[label="Pos vyy50010",fontsize=16,color="green",shape="box"];2319[label="Pos vyy48010",fontsize=16,color="green",shape="box"];2320[label="vyy5000",fontsize=16,color="green",shape="box"];2321[label="vyy4800",fontsize=16,color="green",shape="box"];2322[label="Neg vyy50010",fontsize=16,color="green",shape="box"];2323[label="Neg vyy48010",fontsize=16,color="green",shape="box"];2324[label="vyy5000",fontsize=16,color="green",shape="box"];2325[label="vyy4800",fontsize=16,color="green",shape="box"];2326[label="Neg vyy50010",fontsize=16,color="green",shape="box"];2327[label="Pos vyy48010",fontsize=16,color="green",shape="box"];2328[label="vyy5000",fontsize=16,color="green",shape="box"];2329[label="vyy4800",fontsize=16,color="green",shape="box"];2330[label="Pos vyy50010",fontsize=16,color="green",shape="box"];2331[label="Neg vyy48010",fontsize=16,color="green",shape="box"];2332[label="vyy5000",fontsize=16,color="green",shape="box"];2333[label="vyy4800",fontsize=16,color="green",shape="box"];2334[label="Pos vyy50010",fontsize=16,color="green",shape="box"];2335[label="Pos vyy48010",fontsize=16,color="green",shape="box"];2336[label="vyy5000",fontsize=16,color="green",shape="box"];2337[label="vyy4800",fontsize=16,color="green",shape="box"];2338[label="Neg vyy50010",fontsize=16,color="green",shape="box"];2339[label="Neg vyy48010",fontsize=16,color="green",shape="box"];2340[label="vyy5000",fontsize=16,color="green",shape="box"];2341[label="vyy4800",fontsize=16,color="green",shape="box"];2342[label="Neg vyy50010",fontsize=16,color="green",shape="box"];1423 -> 1254[label="",style="dashed", color="red", weight=0]; 26.21/10.59 1423[label="primPlusNat vyy8300 vyy501000",fontsize=16,color="magenta"];1423 -> 1472[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 1423 -> 1473[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2343[label="compare0 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2343 -> 2349[label="",style="solid", color="black", weight=3]; 26.21/10.59 2344 -> 602[label="",style="dashed", color="red", weight=0]; 26.21/10.59 2344[label="primMulInt vyy50000 vyy48010",fontsize=16,color="magenta"];2344 -> 2350[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2344 -> 2351[label="",style="dashed", color="magenta", weight=3]; 26.21/10.59 2345[label="compare0 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2345 -> 2352[label="",style="solid", color="black", weight=3]; 26.21/10.59 2346[label="compare0 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2346 -> 2353[label="",style="solid", color="black", weight=3]; 26.21/10.59 2347[label="compare0 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2347 -> 2354[label="",style="solid", color="black", weight=3]; 26.21/10.59 2348[label="compare0 vyy480 vyy500 True",fontsize=16,color="black",shape="box"];2348 -> 2355[label="",style="solid", color="black", weight=3]; 26.21/10.59 1472[label="vyy8300",fontsize=16,color="green",shape="box"];1473[label="vyy501000",fontsize=16,color="green",shape="box"];2349[label="GT",fontsize=16,color="green",shape="box"];2350[label="vyy50000",fontsize=16,color="green",shape="box"];2351[label="vyy48010",fontsize=16,color="green",shape="box"];2352[label="GT",fontsize=16,color="green",shape="box"];2353[label="GT",fontsize=16,color="green",shape="box"];2354[label="GT",fontsize=16,color="green",shape="box"];2355[label="GT",fontsize=16,color="green",shape="box"];} 26.21/10.59 26.21/10.59 ---------------------------------------- 26.21/10.59 26.21/10.59 (16) 26.21/10.59 Complex Obligation (AND) 26.21/10.59 26.21/10.59 ---------------------------------------- 26.21/10.59 26.21/10.59 (17) 26.21/10.59 Obligation: 26.21/10.59 Q DP problem: 26.21/10.59 The TRS P consists of the following rules: 26.21/10.59 26.21/10.59 new_primCmpNat(Succ(vyy48000), Succ(vyy50000)) -> new_primCmpNat(vyy48000, vyy50000) 26.21/10.59 26.21/10.59 R is empty. 26.21/10.59 Q is empty. 26.21/10.59 We have to consider all minimal (P,Q,R)-chains. 26.21/10.59 ---------------------------------------- 26.21/10.59 26.21/10.59 (18) QDPSizeChangeProof (EQUIVALENT) 26.21/10.59 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.21/10.59 26.21/10.59 From the DPs we obtained the following set of size-change graphs: 26.21/10.59 *new_primCmpNat(Succ(vyy48000), Succ(vyy50000)) -> new_primCmpNat(vyy48000, vyy50000) 26.21/10.59 The graph contains the following edges 1 > 1, 2 > 2 26.21/10.59 26.21/10.59 26.21/10.59 ---------------------------------------- 26.21/10.59 26.21/10.59 (19) 26.21/10.59 YES 26.21/10.59 26.21/10.59 ---------------------------------------- 26.21/10.59 26.21/10.59 (20) 26.21/10.59 Obligation: 26.21/10.59 Q DP problem: 26.21/10.59 The TRS P consists of the following rules: 26.21/10.59 26.21/10.59 new_lt0(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_primCompAux(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, fb), fb) 26.21/10.59 new_primCompAux(vyy4800, vyy5000, vyy112, app(ty_Maybe, gb)) -> new_compare4(vyy4800, vyy5000, gb) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(ty_[], cg)), bd)) -> new_lt0(vyy4811, vyy5011, cg) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(app(ty_Either, bed), bee)) -> new_ltEs1(vyy4811, vyy5011, bed, bee) 26.21/10.59 new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(app(app(ty_@3, bbd), bbe), bbf))) -> new_ltEs(vyy4810, vyy5010, bbd, bbe, bbf) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(ty_[], cg), bd) -> new_lt0(vyy4811, vyy5011, cg) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(app(ty_Either, da), db), bd) -> new_lt1(vyy4811, vyy5011, da, db) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(app(ty_@2, bde), bdf)), bch)) -> new_lt3(vyy4810, vyy5010, bde, bdf) 26.21/10.59 new_lt0(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_compare1(vyy4801, vyy5001, fb) 26.21/10.59 new_lt3(vyy480, vyy500, bfb, bfc) -> new_compare22(vyy480, vyy500, new_esEs7(vyy480, vyy500, bfb, bfc), bfb, bfc) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(ty_Maybe, bef))) -> new_ltEs2(vyy4811, vyy5011, bef) 26.21/10.59 new_ltEs1(Left(vyy4810), Left(vyy5010), app(ty_Maybe, hf), hb) -> new_ltEs2(vyy4810, vyy5010, hf) 26.21/10.59 new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(ty_[], bae))) -> new_ltEs0(vyy4810, vyy5010, bae) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bch)) -> new_lt(vyy4810, vyy5010, bce, bcf, bcg) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(app(ty_@2, dd), de), bd) -> new_lt3(vyy4811, vyy5011, dd, de) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(ty_[], bec)) -> new_ltEs0(vyy4811, vyy5011, bec) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(ty_Maybe, ed))) -> new_ltEs2(vyy4812, vyy5012, ed) 26.21/10.59 new_ltEs1(Left(vyy4810), Left(vyy5010), app(ty_[], hc), hb) -> new_ltEs0(vyy4810, vyy5010, hc) 26.21/10.59 new_ltEs0(vyy481, vyy501, bbc) -> new_compare1(vyy481, vyy501, bbc) 26.21/10.59 new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(app(ty_@2, bfb), bfc), bfe) -> new_compare22(vyy480, vyy500, new_esEs7(vyy480, vyy500, bfb, bfc), bfb, bfc) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(app(ty_@2, beg), beh)) -> new_ltEs3(vyy4811, vyy5011, beg, beh) 26.21/10.59 new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(ty_[], hc)), hb)) -> new_ltEs0(vyy4810, vyy5010, hc) 26.21/10.59 new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(app(ty_Either, baf), bag)) -> new_ltEs1(vyy4810, vyy5010, baf, bag) 26.21/10.59 new_ltEs1(Left(vyy4810), Left(vyy5010), app(app(ty_@2, hg), hh), hb) -> new_ltEs3(vyy4810, vyy5010, hg, hh) 26.21/10.59 new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(app(ty_Either, ge), gf), bfe) -> new_compare20(vyy480, vyy500, new_esEs5(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.59 new_compare(vyy480, vyy500, eg, eh, fa) -> new_compare2(vyy480, vyy500, new_esEs4(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(app(ty_@2, bde), bdf), bch) -> new_lt3(vyy4810, vyy5010, bde, bdf) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(ty_Maybe, bef)) -> new_ltEs2(vyy4811, vyy5011, bef) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(app(ty_@2, beg), beh))) -> new_ltEs3(vyy4811, vyy5011, beg, beh) 26.21/10.59 new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(ty_[], bae)) -> new_ltEs0(vyy4810, vyy5010, bae) 26.21/10.59 new_compare22(@2(:(vyy4800, vyy4801), vyy481), @2(:(vyy5000, vyy5001), vyy501), False, app(ty_[], fb), bfe) -> new_compare1(vyy4801, vyy5001, fb) 26.21/10.59 new_compare4(vyy480, vyy500, bfa) -> new_compare21(vyy480, vyy500, new_esEs6(vyy480, vyy500, bfa), bfa) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(ty_Maybe, bh)), bc), bd)) -> new_lt2(vyy4810, vyy5010, bh) 26.21/10.59 new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(ty_Maybe, bah)) -> new_ltEs2(vyy4810, vyy5010, bah) 26.21/10.59 new_compare1(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_compare1(vyy4801, vyy5001, fb) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(app(ty_Either, bed), bee))) -> new_ltEs1(vyy4811, vyy5011, bed, bee) 26.21/10.59 new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(app(ty_@2, bba), bbb))) -> new_ltEs3(vyy4810, vyy5010, bba, bbb) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(ty_[], bda)), bch)) -> new_lt0(vyy4810, vyy5010, bda) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(ty_Maybe, bdd)), bch)) -> new_lt2(vyy4810, vyy5010, bdd) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs(vyy4811, vyy5011, bdh, bea, beb) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(ty_[], be)), bc), bd)) -> new_lt0(vyy4810, vyy5010, be) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyy4812, vyy5012, df, dg, dh) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(app(ty_@2, ee), ef))) -> new_ltEs3(vyy4812, vyy5012, ee, ef) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(ty_Maybe, ed)) -> new_ltEs2(vyy4812, vyy5012, ed) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(app(app(ty_@3, df), dg), dh))) -> new_ltEs(vyy4812, vyy5012, df, dg, dh) 26.21/10.59 new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs(vyy4810, vyy5010, bab, bac, bad) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(app(ty_Either, bdb), bdc)), bch)) -> new_lt1(vyy4810, vyy5010, bdb, bdc) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(app(ty_Either, da), db)), bd)) -> new_lt1(vyy4811, vyy5011, da, db) 26.21/10.59 new_ltEs2(Just(vyy4810), Just(vyy5010), app(ty_Maybe, bcb)) -> new_ltEs2(vyy4810, vyy5010, bcb) 26.21/10.59 new_ltEs2(Just(vyy4810), Just(vyy5010), app(ty_[], bbg)) -> new_ltEs0(vyy4810, vyy5010, bbg) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(ty_Maybe, dc), bd) -> new_lt2(vyy4811, vyy5011, dc) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(ty_[], ea)) -> new_ltEs0(vyy4812, vyy5012, ea) 26.21/10.59 new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(ty_Maybe, bcb))) -> new_ltEs2(vyy4810, vyy5010, bcb) 26.21/10.59 new_ltEs2(Just(vyy4810), Just(vyy5010), app(app(ty_@2, bcc), bcd)) -> new_ltEs3(vyy4810, vyy5010, bcc, bcd) 26.21/10.59 new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(app(ty_Either, hd), he)), hb)) -> new_ltEs1(vyy4810, vyy5010, hd, he) 26.21/10.59 new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(ty_Maybe, bah))) -> new_ltEs2(vyy4810, vyy5010, bah) 26.21/10.59 new_lt1(vyy480, vyy500, ge, gf) -> new_compare20(vyy480, vyy500, new_esEs5(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.59 new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, bfd, app(ty_[], bbc)) -> new_compare1(vyy481, vyy501, bbc) 26.21/10.59 new_lt2(vyy480, vyy500, bfa) -> new_compare21(vyy480, vyy500, new_esEs6(vyy480, vyy500, bfa), bfa) 26.21/10.59 new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(app(app(ty_@3, gg), gh), ha)), hb)) -> new_ltEs(vyy4810, vyy5010, gg, gh, ha) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(app(ty_Either, bf), bg)), bc), bd)) -> new_lt1(vyy4810, vyy5010, bf, bg) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_lt(vyy4810, vyy5010, h, ba, bb) 26.21/10.59 new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(app(ty_@2, bcc), bcd))) -> new_ltEs3(vyy4810, vyy5010, bcc, bcd) 26.21/10.59 new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(ty_Maybe, hf)), hb)) -> new_ltEs2(vyy4810, vyy5010, hf) 26.21/10.59 new_primCompAux(vyy4800, vyy5000, vyy112, app(app(app(ty_@3, fc), fd), ff)) -> new_compare(vyy4800, vyy5000, fc, fd, ff) 26.21/10.59 new_ltEs1(Left(vyy4810), Left(vyy5010), app(app(app(ty_@3, gg), gh), ha), hb) -> new_ltEs(vyy4810, vyy5010, gg, gh, ha) 26.21/10.59 new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs(vyy4810, vyy5010, bab, bac, bad) 26.21/10.59 new_ltEs2(Just(vyy4810), Just(vyy5010), app(app(ty_Either, bbh), bca)) -> new_ltEs1(vyy4810, vyy5010, bbh, bca) 26.21/10.59 new_compare20(vyy480, vyy500, False, ge, gf) -> new_ltEs1(vyy480, vyy500, ge, gf) 26.21/10.59 new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(app(ty_Either, bbh), bca))) -> new_ltEs1(vyy4810, vyy5010, bbh, bca) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(ty_[], be), bc, bd) -> new_lt0(vyy4810, vyy5010, be) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(app(app(ty_@3, cd), ce), cf)), bd)) -> new_lt(vyy4811, vyy5011, cd, ce, cf) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(app(app(ty_@3, bdh), bea), beb))) -> new_ltEs(vyy4811, vyy5011, bdh, bea, beb) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(app(ty_@2, ee), ef)) -> new_ltEs3(vyy4812, vyy5012, ee, ef) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(app(ty_Either, bf), bg), bc, bd) -> new_lt1(vyy4810, vyy5010, bf, bg) 26.21/10.59 new_compare1(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_primCompAux(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, fb), fb) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(app(app(ty_@3, bce), bcf), bcg), bch) -> new_lt(vyy4810, vyy5010, bce, bcf, bcg) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(ty_Maybe, dc)), bd)) -> new_lt2(vyy4811, vyy5011, dc) 26.21/10.59 new_compare2(vyy480, vyy500, False, eg, eh, fa) -> new_ltEs(vyy480, vyy500, eg, eh, fa) 26.21/10.59 new_primCompAux(vyy4800, vyy5000, vyy112, app(ty_[], fg)) -> new_compare1(vyy4800, vyy5000, fg) 26.21/10.59 new_compare3(vyy480, vyy500, ge, gf) -> new_compare20(vyy480, vyy500, new_esEs5(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(ty_Maybe, bh), bc, bd) -> new_lt2(vyy4810, vyy5010, bh) 26.21/10.59 new_lt(vyy480, vyy500, eg, eh, fa) -> new_compare2(vyy480, vyy500, new_esEs4(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(ty_[], ea))) -> new_ltEs0(vyy4812, vyy5012, ea) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(ty_[], bda), bch) -> new_lt0(vyy4810, vyy5010, bda) 26.21/10.59 new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(app(ty_@2, hg), hh)), hb)) -> new_ltEs3(vyy4810, vyy5010, hg, hh) 26.21/10.59 new_primCompAux(vyy4800, vyy5000, vyy112, app(app(ty_@2, gc), gd)) -> new_compare5(vyy4800, vyy5000, gc, gd) 26.21/10.59 new_ltEs1(Left(vyy4810), Left(vyy5010), app(app(ty_Either, hd), he), hb) -> new_ltEs1(vyy4810, vyy5010, hd, he) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(app(ty_@2, ca), cb)), bc), bd)) -> new_lt3(vyy4810, vyy5010, ca, cb) 26.21/10.59 new_compare5(vyy480, vyy500, bfb, bfc) -> new_compare22(vyy480, vyy500, new_esEs7(vyy480, vyy500, bfb, bfc), bfb, bfc) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyy4811, vyy5011, cd, ce, cf) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(ty_Maybe, bdd), bch) -> new_lt2(vyy4810, vyy5010, bdd) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(app(ty_Either, eb), ec)) -> new_ltEs1(vyy4812, vyy5012, eb, ec) 26.21/10.59 new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(app(ty_Either, baf), bag))) -> new_ltEs1(vyy4810, vyy5010, baf, bag) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(app(ty_@2, dd), de)), bd)) -> new_lt3(vyy4811, vyy5011, dd, de) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(app(app(ty_@3, h), ba), bb)), bc), bd)) -> new_lt(vyy4810, vyy5010, h, ba, bb) 26.21/10.59 new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(app(ty_Either, eb), ec))) -> new_ltEs1(vyy4812, vyy5012, eb, ec) 26.21/10.59 new_ltEs2(Just(vyy4810), Just(vyy5010), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs(vyy4810, vyy5010, bbd, bbe, bbf) 26.21/10.59 new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(ty_[], bec))) -> new_ltEs0(vyy4811, vyy5011, bec) 26.21/10.59 new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(ty_Maybe, bfa), bfe) -> new_compare21(vyy480, vyy500, new_esEs6(vyy480, vyy500, bfa), bfa) 26.21/10.59 new_primCompAux(vyy4800, vyy5000, vyy112, app(app(ty_Either, fh), ga)) -> new_compare3(vyy4800, vyy5000, fh, ga) 26.21/10.59 new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(ty_[], bbg))) -> new_ltEs0(vyy4810, vyy5010, bbg) 26.21/10.59 new_compare22(@2(:(vyy4800, vyy4801), vyy481), @2(:(vyy5000, vyy5001), vyy501), False, app(ty_[], fb), bfe) -> new_primCompAux(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, fb), fb) 26.21/10.59 new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(app(app(ty_@3, eg), eh), fa), bfe) -> new_compare2(vyy480, vyy500, new_esEs4(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.59 new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(app(ty_@2, bba), bbb)) -> new_ltEs3(vyy4810, vyy5010, bba, bbb) 26.21/10.59 new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(app(ty_@2, ca), cb), bc, bd) -> new_lt3(vyy4810, vyy5010, ca, cb) 26.21/10.59 new_compare21(vyy480, vyy500, False, bfa) -> new_ltEs2(vyy480, vyy500, bfa) 26.21/10.59 new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(app(ty_Either, bdb), bdc), bch) -> new_lt1(vyy4810, vyy5010, bdb, bdc) 26.21/10.59 26.21/10.59 The TRS R consists of the following rules: 26.21/10.59 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, app(ty_[], bae)) -> new_ltEs4(vyy4810, vyy5010, bae) 26.21/10.59 new_primCmpInt(Neg(Succ(vyy48000)), Pos(vyy5000)) -> LT 26.21/10.59 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.21/10.59 new_esEs23(vyy6000, vyy500, app(ty_Maybe, ccf)) -> new_esEs6(vyy6000, vyy500, ccf) 26.21/10.59 new_pePe(True, vyy111) -> True 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), ty_Ordering, chd) -> new_esEs8(vyy6000, vyy500) 26.21/10.59 new_lt20(vyy4810, vyy5010, app(ty_Ratio, dde)) -> new_lt10(vyy4810, vyy5010, dde) 26.21/10.59 new_esEs29(vyy4811, vyy5011, ty_Int) -> new_esEs12(vyy4811, vyy5011) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, daa), dab), dac), chd) -> new_esEs4(vyy6000, vyy500, daa, dab, dac) 26.21/10.59 new_lt5(vyy480, vyy500, ty_Int) -> new_lt17(vyy480, vyy500) 26.21/10.59 new_ltEs12(LT, LT) -> True 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), ty_Double, chd) -> new_esEs20(vyy6000, vyy500) 26.21/10.59 new_ltEs7(vyy481, vyy501, ty_Char) -> new_ltEs11(vyy481, vyy501) 26.21/10.59 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.21/10.59 new_esEs27(vyy6000, vyy500, app(app(ty_Either, dcd), dce)) -> new_esEs5(vyy6000, vyy500, dcd, dce) 26.21/10.59 new_primCmpInt(Pos(Zero), Neg(Succ(vyy50000))) -> GT 26.21/10.59 new_lt19(vyy4810, vyy5010, ty_Float) -> new_lt16(vyy4810, vyy5010) 26.21/10.59 new_compare17(vyy480, vyy500, eg, eh, fa) -> new_compare27(vyy480, vyy500, new_esEs4(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.59 new_esEs17(vyy6002, vyy502, app(ty_Maybe, cbb)) -> new_esEs6(vyy6002, vyy502, cbb) 26.21/10.59 new_esEs24(vyy6001, vyy501, ty_Ordering) -> new_esEs8(vyy6001, vyy501) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_Int) -> new_ltEs17(vyy4810, vyy5010) 26.21/10.59 new_primCmpInt(Neg(Succ(vyy48000)), Neg(vyy5000)) -> new_primCmpNat0(vyy5000, Succ(vyy48000)) 26.21/10.59 new_compare0(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_primCompAux1(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, fb), fb) 26.21/10.59 new_compare7(:%(vyy4800, vyy4801), :%(vyy5000, vyy5001), ty_Integer) -> new_compare6(new_sr0(vyy4800, vyy5001), new_sr0(vyy5000, vyy4801)) 26.21/10.59 new_esEs29(vyy4811, vyy5011, ty_@0) -> new_esEs21(vyy4811, vyy5011) 26.21/10.59 new_esEs26(vyy4810, vyy5010, app(app(ty_@2, bde), bdf)) -> new_esEs7(vyy4810, vyy5010, bde, bdf) 26.21/10.59 new_compare12(vyy92, vyy93, vyy94, vyy95, True, cfa, cfb) -> LT 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), app(app(ty_Either, cfe), cff)) -> new_esEs5(vyy6000, vyy500, cfe, cff) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_Double) -> new_ltEs15(vyy4810, vyy5010) 26.21/10.59 new_ltEs15(vyy481, vyy501) -> new_not(new_esEs8(new_compare16(vyy481, vyy501), GT)) 26.21/10.59 new_esEs28(vyy4810, vyy5010, app(app(app(ty_@3, h), ba), bb)) -> new_esEs4(vyy4810, vyy5010, h, ba, bb) 26.21/10.59 new_lt7(vyy480, vyy500, fb) -> new_esEs8(new_compare0(vyy480, vyy500, fb), LT) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), app(ty_[], bbg)) -> new_ltEs4(vyy4810, vyy5010, bbg) 26.21/10.59 new_esEs25(vyy480, vyy500, ty_Char) -> new_esEs22(vyy480, vyy500) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, ty_Char) -> new_ltEs11(vyy4811, vyy5011) 26.21/10.59 new_esEs11(vyy6001, vyy501, ty_Integer) -> new_esEs13(vyy6001, vyy501) 26.21/10.59 new_primCompAux0(vyy117, GT) -> GT 26.21/10.59 new_esEs23(vyy6000, vyy500, app(app(ty_Either, ccd), cce)) -> new_esEs5(vyy6000, vyy500, ccd, cce) 26.21/10.59 new_ltEs14(Nothing, Just(vyy5010), ceh) -> True 26.21/10.59 new_esEs17(vyy6002, vyy502, app(app(ty_Either, cah), cba)) -> new_esEs5(vyy6002, vyy502, cah, cba) 26.21/10.59 new_ltEs7(vyy481, vyy501, app(ty_[], bbc)) -> new_ltEs4(vyy481, vyy501, bbc) 26.21/10.59 new_esEs8(GT, GT) -> True 26.21/10.59 new_primEqInt(Pos(Succ(vyy60000)), Pos(Zero)) -> False 26.21/10.59 new_primEqInt(Pos(Zero), Pos(Succ(vyy5000))) -> False 26.21/10.59 new_ltEs18(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, bch) -> new_pePe(new_lt19(vyy4810, vyy5010, bdg), new_asAs(new_esEs26(vyy4810, vyy5010, bdg), new_ltEs19(vyy4811, vyy5011, bch))) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_@0) -> new_ltEs10(vyy4810, vyy5010) 26.21/10.59 new_lt17(vyy480, vyy500) -> new_esEs8(new_compare14(vyy480, vyy500), LT) 26.21/10.59 new_compare26(Float(vyy4800, Neg(vyy48010)), Float(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.59 new_compare210(vyy480, vyy500, True, ge, gf) -> EQ 26.21/10.59 new_compare29(vyy4800, vyy5000, ty_@0) -> new_compare11(vyy4800, vyy5000) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_Ordering) -> new_lt11(vyy4811, vyy5011) 26.21/10.59 new_esEs8(EQ, EQ) -> True 26.21/10.59 new_ltEs20(vyy4812, vyy5012, ty_Char) -> new_ltEs11(vyy4812, vyy5012) 26.21/10.59 new_ltEs7(vyy481, vyy501, ty_@0) -> new_ltEs10(vyy481, vyy501) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), app(ty_Maybe, chh), chd) -> new_esEs6(vyy6000, vyy500, chh) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_Integer) -> new_lt4(vyy4811, vyy5011) 26.21/10.59 new_primEqNat0(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat0(vyy60000, vyy5000) 26.21/10.59 new_esEs29(vyy4811, vyy5011, app(ty_Ratio, ddf)) -> new_esEs9(vyy4811, vyy5011, ddf) 26.21/10.59 new_ltEs17(vyy481, vyy501) -> new_not(new_esEs8(new_compare14(vyy481, vyy501), GT)) 26.21/10.59 new_esEs17(vyy6002, vyy502, ty_Float) -> new_esEs19(vyy6002, vyy502) 26.21/10.59 new_primCompAux0(vyy117, LT) -> LT 26.21/10.59 new_esEs18([], [], dcb) -> True 26.21/10.59 new_esEs23(vyy6000, vyy500, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.59 new_ltEs10(vyy481, vyy501) -> new_not(new_esEs8(new_compare11(vyy481, vyy501), GT)) 26.21/10.59 new_esEs28(vyy4810, vyy5010, app(ty_[], be)) -> new_esEs18(vyy4810, vyy5010, be) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, app(app(ty_@2, ee), ef)) -> new_ltEs18(vyy4812, vyy5012, ee, ef) 26.21/10.59 new_compare29(vyy4800, vyy5000, app(ty_Ratio, cgf)) -> new_compare7(vyy4800, vyy5000, cgf) 26.21/10.59 new_not(True) -> False 26.21/10.59 new_esEs25(vyy480, vyy500, ty_Bool) -> new_esEs14(vyy480, vyy500) 26.21/10.59 new_lt5(vyy480, vyy500, app(ty_Maybe, bfa)) -> new_lt14(vyy480, vyy500, bfa) 26.21/10.59 new_esEs27(vyy6000, vyy500, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.59 new_lt20(vyy4810, vyy5010, ty_Float) -> new_lt16(vyy4810, vyy5010) 26.21/10.59 new_ltEs12(LT, GT) -> True 26.21/10.59 new_esEs15(vyy6000, vyy500, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.59 new_primCmpNat0(Zero, Zero) -> EQ 26.21/10.59 new_ltEs16(vyy481, vyy501) -> new_not(new_esEs8(new_compare26(vyy481, vyy501), GT)) 26.21/10.59 new_esEs25(vyy480, vyy500, ty_Integer) -> new_esEs13(vyy480, vyy500) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), ty_Bool, chd) -> new_esEs14(vyy6000, vyy500) 26.21/10.59 new_ltEs7(vyy481, vyy501, app(ty_Maybe, ceh)) -> new_ltEs14(vyy481, vyy501, ceh) 26.21/10.59 new_esEs25(vyy480, vyy500, ty_Int) -> new_esEs12(vyy480, vyy500) 26.21/10.59 new_esEs28(vyy4810, vyy5010, ty_Float) -> new_esEs19(vyy4810, vyy5010) 26.21/10.59 new_lt10(vyy480, vyy500, ceg) -> new_esEs8(new_compare7(vyy480, vyy500, ceg), LT) 26.21/10.59 new_lt6(vyy480, vyy500, eg, eh, fa) -> new_esEs8(new_compare17(vyy480, vyy500, eg, eh, fa), LT) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), app(app(ty_@2, dad), dae), chd) -> new_esEs7(vyy6000, vyy500, dad, dae) 26.21/10.59 new_primEqNat0(Succ(vyy60000), Zero) -> False 26.21/10.59 new_primEqNat0(Zero, Succ(vyy5000)) -> False 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Bool) -> new_ltEs5(vyy4810, vyy5010) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_@0) -> new_ltEs10(vyy4810, vyy5010) 26.21/10.59 new_ltEs11(vyy481, vyy501) -> new_not(new_esEs8(new_compare15(vyy481, vyy501), GT)) 26.21/10.59 new_esEs16(vyy6001, vyy501, app(app(ty_@2, cad), cae)) -> new_esEs7(vyy6001, vyy501, cad, cae) 26.21/10.59 new_compare26(Float(vyy4800, Pos(vyy48010)), Float(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_Float) -> new_lt16(vyy4811, vyy5011) 26.21/10.59 new_esEs14(False, True) -> False 26.21/10.59 new_esEs14(True, False) -> False 26.21/10.59 new_compare28(vyy480, vyy500, True, bfa) -> EQ 26.21/10.59 new_compare110(vyy480, vyy500, True) -> LT 26.21/10.59 new_compare29(vyy4800, vyy5000, app(app(ty_@2, gc), gd)) -> new_compare9(vyy4800, vyy5000, gc, gd) 26.21/10.59 new_esEs24(vyy6001, vyy501, app(app(app(ty_@3, cea), ceb), cec)) -> new_esEs4(vyy6001, vyy501, cea, ceb, cec) 26.21/10.59 new_compare6(Integer(vyy4800), Integer(vyy5000)) -> new_primCmpInt(vyy4800, vyy5000) 26.21/10.59 new_esEs23(vyy6000, vyy500, app(app(app(ty_@3, ccg), cch), cda)) -> new_esEs4(vyy6000, vyy500, ccg, cch, cda) 26.21/10.59 new_primCmpInt(Pos(Succ(vyy48000)), Neg(vyy5000)) -> GT 26.21/10.59 new_lt20(vyy4810, vyy5010, ty_Char) -> new_lt9(vyy4810, vyy5010) 26.21/10.59 new_esEs17(vyy6002, vyy502, app(app(app(ty_@3, cbc), cbd), cbe)) -> new_esEs4(vyy6002, vyy502, cbc, cbd, cbe) 26.21/10.59 new_compare9(vyy480, vyy500, bfb, bfc) -> new_compare24(vyy480, vyy500, new_esEs7(vyy480, vyy500, bfb, bfc), bfb, bfc) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, ty_@0) -> new_ltEs10(vyy4812, vyy5012) 26.21/10.59 new_lt5(vyy480, vyy500, app(app(ty_Either, ge), gf)) -> new_lt13(vyy480, vyy500, ge, gf) 26.21/10.59 new_ltEs5(False, True) -> True 26.21/10.59 new_esEs24(vyy6001, vyy501, ty_Bool) -> new_esEs14(vyy6001, vyy501) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Char) -> new_ltEs11(vyy4810, vyy5010) 26.21/10.59 new_ltEs7(vyy481, vyy501, app(app(ty_@2, bdg), bch)) -> new_ltEs18(vyy481, vyy501, bdg, bch) 26.21/10.59 new_primPlusNat1(Succ(vyy8300), Succ(vyy501000)) -> Succ(Succ(new_primPlusNat1(vyy8300, vyy501000))) 26.21/10.59 new_lt5(vyy480, vyy500, app(app(ty_@2, bfb), bfc)) -> new_lt18(vyy480, vyy500, bfb, bfc) 26.21/10.59 new_primCmpNat0(Zero, Succ(vyy50000)) -> LT 26.21/10.59 new_compare18(vyy480, vyy500) -> new_compare25(vyy480, vyy500, new_esEs8(vyy480, vyy500)) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, ty_@0) -> new_ltEs10(vyy4811, vyy5011) 26.21/10.59 new_ltEs7(vyy481, vyy501, app(app(ty_Either, baa), hb)) -> new_ltEs13(vyy481, vyy501, baa, hb) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), ty_Int, chd) -> new_esEs12(vyy6000, vyy500) 26.21/10.59 new_esEs29(vyy4811, vyy5011, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs4(vyy4811, vyy5011, cd, ce, cf) 26.21/10.59 new_esEs29(vyy4811, vyy5011, ty_Bool) -> new_esEs14(vyy4811, vyy5011) 26.21/10.59 new_esEs24(vyy6001, vyy501, ty_Int) -> new_esEs12(vyy6001, vyy501) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_Int) -> new_lt17(vyy4811, vyy5011) 26.21/10.59 new_primCmpNat0(Succ(vyy48000), Zero) -> GT 26.21/10.59 new_esEs27(vyy6000, vyy500, app(app(ty_@2, ddb), ddc)) -> new_esEs7(vyy6000, vyy500, ddb, ddc) 26.21/10.59 new_pePe(False, vyy111) -> vyy111 26.21/10.59 new_esEs15(vyy6000, vyy500, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.59 new_compare7(:%(vyy4800, vyy4801), :%(vyy5000, vyy5001), ty_Int) -> new_compare14(new_sr(vyy4800, vyy5001), new_sr(vyy5000, vyy4801)) 26.21/10.59 new_lt5(vyy480, vyy500, ty_Ordering) -> new_lt11(vyy480, vyy500) 26.21/10.59 new_ltEs12(GT, GT) -> True 26.21/10.59 new_ltEs13(Left(vyy4810), Right(vyy5010), baa, hb) -> True 26.21/10.59 new_esEs27(vyy6000, vyy500, app(ty_[], dcc)) -> new_esEs18(vyy6000, vyy500, dcc) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs8(vyy4811, vyy5011, bdh, bea, beb) 26.21/10.59 new_lt20(vyy4810, vyy5010, ty_@0) -> new_lt8(vyy4810, vyy5010) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), app(ty_[], che), chd) -> new_esEs18(vyy6000, vyy500, che) 26.21/10.59 new_compare112(vyy480, vyy500, True, ge, gf) -> LT 26.21/10.59 new_ltEs12(GT, EQ) -> False 26.21/10.59 new_esEs26(vyy4810, vyy5010, ty_Bool) -> new_esEs14(vyy4810, vyy5010) 26.21/10.59 new_lt13(vyy480, vyy500, ge, gf) -> new_esEs8(new_compare19(vyy480, vyy500, ge, gf), LT) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), ty_Float, chd) -> new_esEs19(vyy6000, vyy500) 26.21/10.59 new_esEs29(vyy4811, vyy5011, ty_Integer) -> new_esEs13(vyy4811, vyy5011) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, app(ty_Maybe, bef)) -> new_ltEs14(vyy4811, vyy5011, bef) 26.21/10.59 new_esEs28(vyy4810, vyy5010, ty_Char) -> new_esEs22(vyy4810, vyy5010) 26.21/10.59 new_esEs29(vyy4811, vyy5011, app(ty_[], cg)) -> new_esEs18(vyy4811, vyy5011, cg) 26.21/10.59 new_lt5(vyy480, vyy500, ty_@0) -> new_lt8(vyy480, vyy500) 26.21/10.59 new_esEs8(LT, EQ) -> False 26.21/10.59 new_esEs8(EQ, LT) -> False 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), app(app(ty_Either, hd), he), hb) -> new_ltEs13(vyy4810, vyy5010, hd, he) 26.21/10.59 new_esEs28(vyy4810, vyy5010, app(ty_Ratio, dde)) -> new_esEs9(vyy4810, vyy5010, dde) 26.21/10.59 new_primEqInt(Pos(Zero), Neg(Succ(vyy5000))) -> False 26.21/10.59 new_primEqInt(Neg(Zero), Pos(Succ(vyy5000))) -> False 26.21/10.59 new_lt19(vyy4810, vyy5010, ty_Char) -> new_lt9(vyy4810, vyy5010) 26.21/10.59 new_ltEs13(Right(vyy4810), Left(vyy5010), baa, hb) -> False 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, cfh), cga), cgb)) -> new_esEs4(vyy6000, vyy500, cfh, cga, cgb) 26.21/10.59 new_esEs16(vyy6001, vyy501, ty_Integer) -> new_esEs13(vyy6001, vyy501) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, app(app(ty_@2, dbg), dbh)) -> new_esEs7(vyy6000, vyy500, dbg, dbh) 26.21/10.59 new_esEs11(vyy6001, vyy501, ty_Int) -> new_esEs12(vyy6001, vyy501) 26.21/10.59 new_esEs24(vyy6001, vyy501, app(app(ty_Either, cdf), cdg)) -> new_esEs5(vyy6001, vyy501, cdf, cdg) 26.21/10.59 new_esEs25(vyy480, vyy500, ty_Ordering) -> new_esEs8(vyy480, vyy500) 26.21/10.59 new_primEqInt(Neg(Succ(vyy60000)), Neg(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) 26.21/10.59 new_esEs23(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.59 new_primCmpInt(Neg(Zero), Pos(Succ(vyy50000))) -> LT 26.21/10.59 new_compare16(Double(vyy4800, Neg(vyy48010)), Double(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, app(app(ty_Either, eb), ec)) -> new_ltEs13(vyy4812, vyy5012, eb, ec) 26.21/10.59 new_primMulInt(Pos(vyy60000), Pos(vyy5010)) -> Pos(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, ty_Double) -> new_ltEs15(vyy4812, vyy5012) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.59 new_esEs28(vyy4810, vyy5010, ty_@0) -> new_esEs21(vyy4810, vyy5010) 26.21/10.59 new_esEs28(vyy4810, vyy5010, ty_Double) -> new_esEs20(vyy4810, vyy5010) 26.21/10.59 new_lt21(vyy4811, vyy5011, app(app(ty_Either, da), db)) -> new_lt13(vyy4811, vyy5011, da, db) 26.21/10.59 new_esEs28(vyy4810, vyy5010, ty_Bool) -> new_esEs14(vyy4810, vyy5010) 26.21/10.59 new_esEs16(vyy6001, vyy501, ty_Char) -> new_esEs22(vyy6001, vyy501) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_Char) -> new_ltEs11(vyy4810, vyy5010) 26.21/10.59 new_esEs24(vyy6001, vyy501, app(ty_Maybe, cdh)) -> new_esEs6(vyy6001, vyy501, cdh) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs4(vyy6000, vyy500, dbd, dbe, dbf) 26.21/10.59 new_ltEs9(vyy481, vyy501) -> new_not(new_esEs8(new_compare6(vyy481, vyy501), GT)) 26.21/10.59 new_compare11(@0, @0) -> EQ 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Int) -> new_ltEs17(vyy4810, vyy5010) 26.21/10.59 new_primMulNat0(Succ(vyy600000), Zero) -> Zero 26.21/10.59 new_primMulNat0(Zero, Succ(vyy50100)) -> Zero 26.21/10.59 new_primPlusNat0(Zero, vyy50100) -> Succ(vyy50100) 26.21/10.59 new_lt19(vyy4810, vyy5010, ty_@0) -> new_lt8(vyy4810, vyy5010) 26.21/10.59 new_esEs17(vyy6002, vyy502, ty_@0) -> new_esEs21(vyy6002, vyy502) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, app(app(ty_Either, bed), bee)) -> new_ltEs13(vyy4811, vyy5011, bed, bee) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_Float) -> new_ltEs16(vyy4810, vyy5010) 26.21/10.59 new_ltEs5(True, False) -> False 26.21/10.59 new_esEs15(vyy6000, vyy500, app(app(ty_@2, bhb), bhc)) -> new_esEs7(vyy6000, vyy500, bhb, bhc) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), app(app(ty_Either, chf), chg), chd) -> new_esEs5(vyy6000, vyy500, chf, chg) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, app(ty_Maybe, ed)) -> new_ltEs14(vyy4812, vyy5012, ed) 26.21/10.59 new_lt20(vyy4810, vyy5010, ty_Bool) -> new_lt12(vyy4810, vyy5010) 26.21/10.59 new_esEs15(vyy6000, vyy500, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.59 new_compare27(vyy480, vyy500, True, eg, eh, fa) -> EQ 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, app(ty_Maybe, dbc)) -> new_esEs6(vyy6000, vyy500, dbc) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs8(vyy4810, vyy5010, bbd, bbe, bbf) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_Ordering) -> new_ltEs12(vyy4810, vyy5010) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), app(ty_Maybe, bcb)) -> new_ltEs14(vyy4810, vyy5010, bcb) 26.21/10.59 new_lt18(vyy480, vyy500, bfb, bfc) -> new_esEs8(new_compare9(vyy480, vyy500, bfb, bfc), LT) 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Integer, hb) -> new_ltEs9(vyy4810, vyy5010) 26.21/10.59 new_esEs8(LT, LT) -> True 26.21/10.59 new_esEs16(vyy6001, vyy501, ty_Bool) -> new_esEs14(vyy6001, vyy501) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs8(vyy4810, vyy5010, bab, bac, bad) 26.21/10.59 new_compare27(vyy480, vyy500, False, eg, eh, fa) -> new_compare113(vyy480, vyy500, new_ltEs8(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_Bool) -> new_lt12(vyy4811, vyy5011) 26.21/10.59 new_esEs17(vyy6002, vyy502, app(ty_[], cag)) -> new_esEs18(vyy6002, vyy502, cag) 26.21/10.59 new_primPlusNat1(Succ(vyy8300), Zero) -> Succ(vyy8300) 26.21/10.59 new_primPlusNat1(Zero, Succ(vyy501000)) -> Succ(vyy501000) 26.21/10.59 new_ltEs7(vyy481, vyy501, app(ty_Ratio, bff)) -> new_ltEs6(vyy481, vyy501, bff) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Integer) -> new_ltEs9(vyy4810, vyy5010) 26.21/10.59 new_esEs25(vyy480, vyy500, ty_Float) -> new_esEs19(vyy480, vyy500) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, ty_Integer) -> new_ltEs9(vyy4812, vyy5012) 26.21/10.59 new_primCompAux1(vyy4800, vyy5000, vyy112, fb) -> new_primCompAux0(vyy112, new_compare29(vyy4800, vyy5000, fb)) 26.21/10.59 new_esEs26(vyy4810, vyy5010, ty_Integer) -> new_esEs13(vyy4810, vyy5010) 26.21/10.59 new_esEs29(vyy4811, vyy5011, ty_Double) -> new_esEs20(vyy4811, vyy5011) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, ty_Integer) -> new_ltEs9(vyy4811, vyy5011) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), app(app(ty_Either, bbh), bca)) -> new_ltEs13(vyy4810, vyy5010, bbh, bca) 26.21/10.59 new_esEs29(vyy4811, vyy5011, ty_Char) -> new_esEs22(vyy4811, vyy5011) 26.21/10.59 new_esEs17(vyy6002, vyy502, ty_Double) -> new_esEs20(vyy6002, vyy502) 26.21/10.59 new_lt20(vyy4810, vyy5010, ty_Ordering) -> new_lt11(vyy4810, vyy5010) 26.21/10.59 new_primMulInt(Neg(vyy60000), Neg(vyy5010)) -> Pos(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.59 new_primCmpInt(Pos(Zero), Pos(Succ(vyy50000))) -> new_primCmpNat0(Zero, Succ(vyy50000)) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, app(ty_Maybe, bah)) -> new_ltEs14(vyy4810, vyy5010, bah) 26.21/10.59 new_esEs17(vyy6002, vyy502, ty_Char) -> new_esEs22(vyy6002, vyy502) 26.21/10.59 new_esEs24(vyy6001, vyy501, ty_Float) -> new_esEs19(vyy6001, vyy501) 26.21/10.59 new_esEs14(True, True) -> True 26.21/10.59 new_esEs25(vyy480, vyy500, app(app(ty_@2, bfb), bfc)) -> new_esEs7(vyy480, vyy500, bfb, bfc) 26.21/10.59 new_lt5(vyy480, vyy500, ty_Bool) -> new_lt12(vyy480, vyy500) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), app(ty_Maybe, cfg)) -> new_esEs6(vyy6000, vyy500, cfg) 26.21/10.59 new_esEs27(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.59 new_esEs15(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.59 new_compare16(Double(vyy4800, Pos(vyy48010)), Double(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.59 new_esEs6(Nothing, Just(vyy500), cfc) -> False 26.21/10.59 new_esEs6(Just(vyy6000), Nothing, cfc) -> False 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_Bool) -> new_ltEs5(vyy4810, vyy5010) 26.21/10.59 new_esEs6(Nothing, Nothing, cfc) -> True 26.21/10.59 new_lt19(vyy4810, vyy5010, ty_Ordering) -> new_lt11(vyy4810, vyy5010) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.59 new_esEs10(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.59 new_esEs23(vyy6000, vyy500, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), app(ty_[], hc), hb) -> new_ltEs4(vyy4810, vyy5010, hc) 26.21/10.59 new_ltEs7(vyy481, vyy501, ty_Double) -> new_ltEs15(vyy481, vyy501) 26.21/10.59 new_lt16(vyy480, vyy500) -> new_esEs8(new_compare26(vyy480, vyy500), LT) 26.21/10.59 new_esEs27(vyy6000, vyy500, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.59 new_esEs27(vyy6000, vyy500, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.59 new_esEs7(@2(vyy6000, vyy6001), @2(vyy500, vyy501), cca, ccb) -> new_asAs(new_esEs23(vyy6000, vyy500, cca), new_esEs24(vyy6001, vyy501, ccb)) 26.21/10.59 new_compare25(vyy480, vyy500, False) -> new_compare13(vyy480, vyy500, new_ltEs12(vyy480, vyy500)) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_@0) -> new_lt8(vyy4811, vyy5011) 26.21/10.59 new_esEs15(vyy6000, vyy500, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.59 new_lt19(vyy4810, vyy5010, app(ty_Maybe, bdd)) -> new_lt14(vyy4810, vyy5010, bdd) 26.21/10.59 new_esEs26(vyy4810, vyy5010, app(app(app(ty_@3, bce), bcf), bcg)) -> new_esEs4(vyy4810, vyy5010, bce, bcf, bcg) 26.21/10.59 new_primMulInt(Pos(vyy60000), Neg(vyy5010)) -> Neg(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.59 new_primMulInt(Neg(vyy60000), Pos(vyy5010)) -> Neg(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.59 new_compare29(vyy4800, vyy5000, ty_Integer) -> new_compare6(vyy4800, vyy5000) 26.21/10.59 new_lt20(vyy4810, vyy5010, app(app(ty_Either, bf), bg)) -> new_lt13(vyy4810, vyy5010, bf, bg) 26.21/10.59 new_compare26(Float(vyy4800, Pos(vyy48010)), Float(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.59 new_compare26(Float(vyy4800, Neg(vyy48010)), Float(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.59 new_esEs16(vyy6001, vyy501, ty_Ordering) -> new_esEs8(vyy6001, vyy501) 26.21/10.59 new_compare29(vyy4800, vyy5000, ty_Bool) -> new_compare8(vyy4800, vyy5000) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, ty_Ordering) -> new_ltEs12(vyy4811, vyy5011) 26.21/10.59 new_sr0(Integer(vyy50000), Integer(vyy48010)) -> Integer(new_primMulInt(vyy50000, vyy48010)) 26.21/10.59 new_lt5(vyy480, vyy500, app(ty_Ratio, ceg)) -> new_lt10(vyy480, vyy500, ceg) 26.21/10.59 new_ltEs5(False, False) -> True 26.21/10.59 new_compare29(vyy4800, vyy5000, app(ty_Maybe, gb)) -> new_compare30(vyy4800, vyy5000, gb) 26.21/10.59 new_lt19(vyy4810, vyy5010, app(app(ty_@2, bde), bdf)) -> new_lt18(vyy4810, vyy5010, bde, bdf) 26.21/10.59 new_esEs26(vyy4810, vyy5010, app(ty_[], bda)) -> new_esEs18(vyy4810, vyy5010, bda) 26.21/10.59 new_compare24(@2(vyy480, vyy481), @2(vyy500, vyy501), False, bfd, bfe) -> new_compare10(vyy480, vyy481, vyy500, vyy501, new_lt5(vyy480, vyy500, bfd), new_asAs(new_esEs25(vyy480, vyy500, bfd), new_ltEs7(vyy481, vyy501, bfe)), bfd, bfe) 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Bool, hb) -> new_ltEs5(vyy4810, vyy5010) 26.21/10.59 new_ltEs4(vyy481, vyy501, bbc) -> new_not(new_esEs8(new_compare0(vyy481, vyy501, bbc), GT)) 26.21/10.59 new_lt20(vyy4810, vyy5010, app(ty_[], be)) -> new_lt7(vyy4810, vyy5010, be) 26.21/10.59 new_compare29(vyy4800, vyy5000, ty_Float) -> new_compare26(vyy4800, vyy5000) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, app(ty_Ratio, chc)) -> new_ltEs6(vyy4811, vyy5011, chc) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.59 new_esEs28(vyy4810, vyy5010, ty_Integer) -> new_esEs13(vyy4810, vyy5010) 26.21/10.59 new_compare29(vyy4800, vyy5000, ty_Ordering) -> new_compare18(vyy4800, vyy5000) 26.21/10.59 new_esEs22(Char(vyy6000), Char(vyy500)) -> new_primEqNat0(vyy6000, vyy500) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, app(ty_Ratio, dca)) -> new_esEs9(vyy6000, vyy500, dca) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.59 new_compare0([], :(vyy5000, vyy5001), fb) -> LT 26.21/10.59 new_asAs(True, vyy58) -> vyy58 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.59 new_compare113(vyy480, vyy500, True, eg, eh, fa) -> LT 26.21/10.59 new_esEs17(vyy6002, vyy502, ty_Integer) -> new_esEs13(vyy6002, vyy502) 26.21/10.59 new_lt19(vyy4810, vyy5010, ty_Bool) -> new_lt12(vyy4810, vyy5010) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), app(ty_Ratio, daf), chd) -> new_esEs9(vyy6000, vyy500, daf) 26.21/10.59 new_esEs23(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, app(app(ty_Either, baf), bag)) -> new_ltEs13(vyy4810, vyy5010, baf, bag) 26.21/10.59 new_lt19(vyy4810, vyy5010, app(ty_[], bda)) -> new_lt7(vyy4810, vyy5010, bda) 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, app(app(ty_@2, bba), bbb)) -> new_ltEs18(vyy4810, vyy5010, bba, bbb) 26.21/10.59 new_esEs16(vyy6001, vyy501, ty_Double) -> new_esEs20(vyy6001, vyy501) 26.21/10.59 new_esEs15(vyy6000, vyy500, app(ty_Maybe, bgf)) -> new_esEs6(vyy6000, vyy500, bgf) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, ty_Double) -> new_ltEs15(vyy4811, vyy5011) 26.21/10.59 new_esEs15(vyy6000, vyy500, app(app(ty_Either, bgd), bge)) -> new_esEs5(vyy6000, vyy500, bgd, bge) 26.21/10.59 new_lt20(vyy4810, vyy5010, ty_Int) -> new_lt17(vyy4810, vyy5010) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, ty_Float) -> new_ltEs16(vyy4812, vyy5012) 26.21/10.59 new_compare24(vyy48, vyy50, True, bfd, bfe) -> EQ 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Double, hb) -> new_ltEs15(vyy4810, vyy5010) 26.21/10.59 new_esEs24(vyy6001, vyy501, app(app(ty_@2, ced), cee)) -> new_esEs7(vyy6001, vyy501, ced, cee) 26.21/10.59 new_primCmpInt(Pos(Succ(vyy48000)), Pos(vyy5000)) -> new_primCmpNat0(Succ(vyy48000), vyy5000) 26.21/10.59 new_esEs16(vyy6001, vyy501, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs4(vyy6001, vyy501, caa, cab, cac) 26.21/10.59 new_compare12(vyy92, vyy93, vyy94, vyy95, False, cfa, cfb) -> GT 26.21/10.59 new_lt15(vyy480, vyy500) -> new_esEs8(new_compare16(vyy480, vyy500), LT) 26.21/10.59 new_compare110(vyy480, vyy500, False) -> GT 26.21/10.59 new_esEs29(vyy4811, vyy5011, app(app(ty_Either, da), db)) -> new_esEs5(vyy4811, vyy5011, da, db) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.59 new_compare0([], [], fb) -> EQ 26.21/10.59 new_sr(vyy6000, vyy501) -> new_primMulInt(vyy6000, vyy501) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), app(ty_Ratio, cge)) -> new_esEs9(vyy6000, vyy500, cge) 26.21/10.59 new_esEs16(vyy6001, vyy501, app(ty_[], bhe)) -> new_esEs18(vyy6001, vyy501, bhe) 26.21/10.59 new_compare29(vyy4800, vyy5000, app(app(ty_Either, fh), ga)) -> new_compare19(vyy4800, vyy5000, fh, ga) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.59 new_compare23(vyy480, vyy500, True) -> EQ 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_@0, hb) -> new_ltEs10(vyy4810, vyy5010) 26.21/10.59 new_primMulNat0(Zero, Zero) -> Zero 26.21/10.59 new_ltEs20(vyy4812, vyy5012, ty_Ordering) -> new_ltEs12(vyy4812, vyy5012) 26.21/10.59 new_compare15(Char(vyy4800), Char(vyy5000)) -> new_primCmpNat0(vyy4800, vyy5000) 26.21/10.59 new_lt20(vyy4810, vyy5010, app(app(ty_@2, ca), cb)) -> new_lt18(vyy4810, vyy5010, ca, cb) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Ordering) -> new_ltEs12(vyy4810, vyy5010) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.59 new_esEs27(vyy6000, vyy500, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.59 new_esEs26(vyy4810, vyy5010, ty_Double) -> new_esEs20(vyy4810, vyy5010) 26.21/10.59 new_esEs17(vyy6002, vyy502, ty_Int) -> new_esEs12(vyy6002, vyy502) 26.21/10.59 new_lt12(vyy480, vyy500) -> new_esEs8(new_compare8(vyy480, vyy500), LT) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), app(ty_Ratio, cgg)) -> new_ltEs6(vyy4810, vyy5010, cgg) 26.21/10.59 new_lt19(vyy4810, vyy5010, ty_Int) -> new_lt17(vyy4810, vyy5010) 26.21/10.59 new_esEs17(vyy6002, vyy502, app(ty_Ratio, cbh)) -> new_esEs9(vyy6002, vyy502, cbh) 26.21/10.59 new_compare29(vyy4800, vyy5000, app(ty_[], fg)) -> new_compare0(vyy4800, vyy5000, fg) 26.21/10.59 new_ltEs7(vyy481, vyy501, app(app(app(ty_@3, cc), bc), bd)) -> new_ltEs8(vyy481, vyy501, cc, bc, bd) 26.21/10.59 new_esEs23(vyy6000, vyy500, app(app(ty_@2, cdb), cdc)) -> new_esEs7(vyy6000, vyy500, cdb, cdc) 26.21/10.59 new_esEs26(vyy4810, vyy5010, ty_@0) -> new_esEs21(vyy4810, vyy5010) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, app(ty_Ratio, ddg)) -> new_ltEs6(vyy4812, vyy5012, ddg) 26.21/10.59 new_esEs26(vyy4810, vyy5010, ty_Float) -> new_esEs19(vyy4810, vyy5010) 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), app(ty_Ratio, cgh), hb) -> new_ltEs6(vyy4810, vyy5010, cgh) 26.21/10.59 new_ltEs7(vyy481, vyy501, ty_Float) -> new_ltEs16(vyy481, vyy501) 26.21/10.59 new_ltEs7(vyy481, vyy501, ty_Integer) -> new_ltEs9(vyy481, vyy501) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, app(app(ty_Either, dba), dbb)) -> new_esEs5(vyy6000, vyy500, dba, dbb) 26.21/10.59 new_lt8(vyy480, vyy500) -> new_esEs8(new_compare11(vyy480, vyy500), LT) 26.21/10.59 new_lt21(vyy4811, vyy5011, app(app(ty_@2, dd), de)) -> new_lt18(vyy4811, vyy5011, dd, de) 26.21/10.59 new_esEs21(@0, @0) -> True 26.21/10.59 new_esEs17(vyy6002, vyy502, ty_Bool) -> new_esEs14(vyy6002, vyy502) 26.21/10.59 new_compare29(vyy4800, vyy5000, ty_Int) -> new_compare14(vyy4800, vyy5000) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs8(vyy4812, vyy5012, df, dg, dh) 26.21/10.59 new_esEs26(vyy4810, vyy5010, app(ty_Maybe, bdd)) -> new_esEs6(vyy4810, vyy5010, bdd) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_Char) -> new_lt9(vyy4811, vyy5011) 26.21/10.59 new_lt21(vyy4811, vyy5011, app(ty_Maybe, dc)) -> new_lt14(vyy4811, vyy5011, dc) 26.21/10.59 new_compare10(vyy92, vyy93, vyy94, vyy95, True, vyy97, cfa, cfb) -> new_compare12(vyy92, vyy93, vyy94, vyy95, True, cfa, cfb) 26.21/10.59 new_esEs27(vyy6000, vyy500, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.59 new_ltEs12(GT, LT) -> False 26.21/10.59 new_esEs4(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), bfh, bga, bgb) -> new_asAs(new_esEs15(vyy6000, vyy500, bfh), new_asAs(new_esEs16(vyy6001, vyy501, bga), new_esEs17(vyy6002, vyy502, bgb))) 26.21/10.59 new_esEs23(vyy6000, vyy500, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.59 new_primCompAux0(vyy117, EQ) -> vyy117 26.21/10.59 new_ltEs19(vyy4811, vyy5011, ty_Int) -> new_ltEs17(vyy4811, vyy5011) 26.21/10.59 new_esEs27(vyy6000, vyy500, app(ty_Ratio, ddd)) -> new_esEs9(vyy6000, vyy500, ddd) 26.21/10.59 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Double) -> new_ltEs15(vyy4810, vyy5010) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), app(app(ty_@2, cgc), cgd)) -> new_esEs7(vyy6000, vyy500, cgc, cgd) 26.21/10.59 new_lt20(vyy4810, vyy5010, app(ty_Maybe, bh)) -> new_lt14(vyy4810, vyy5010, bh) 26.21/10.59 new_esEs16(vyy6001, vyy501, ty_@0) -> new_esEs21(vyy6001, vyy501) 26.21/10.59 new_primEqInt(Neg(Succ(vyy60000)), Neg(Zero)) -> False 26.21/10.59 new_primEqInt(Neg(Zero), Neg(Succ(vyy5000))) -> False 26.21/10.59 new_esEs25(vyy480, vyy500, app(ty_Maybe, bfa)) -> new_esEs6(vyy480, vyy500, bfa) 26.21/10.59 new_lt11(vyy480, vyy500) -> new_esEs8(new_compare18(vyy480, vyy500), LT) 26.21/10.59 new_lt19(vyy4810, vyy5010, app(app(ty_Either, bdb), bdc)) -> new_lt13(vyy4810, vyy5010, bdb, bdc) 26.21/10.59 new_primEqInt(Pos(Succ(vyy60000)), Pos(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) 26.21/10.59 new_compare210(vyy480, vyy500, False, ge, gf) -> new_compare112(vyy480, vyy500, new_ltEs13(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.59 new_esEs17(vyy6002, vyy502, app(app(ty_@2, cbf), cbg)) -> new_esEs7(vyy6002, vyy502, cbf, cbg) 26.21/10.59 new_esEs28(vyy4810, vyy5010, app(app(ty_@2, ca), cb)) -> new_esEs7(vyy4810, vyy5010, ca, cb) 26.21/10.59 new_esEs15(vyy6000, vyy500, app(ty_[], bgc)) -> new_esEs18(vyy6000, vyy500, bgc) 26.21/10.59 new_esEs25(vyy480, vyy500, app(app(ty_Either, ge), gf)) -> new_esEs5(vyy480, vyy500, ge, gf) 26.21/10.59 new_ltEs14(Just(vyy4810), Nothing, ceh) -> False 26.21/10.59 new_esEs26(vyy4810, vyy5010, ty_Char) -> new_esEs22(vyy4810, vyy5010) 26.21/10.59 new_ltEs14(Nothing, Nothing, ceh) -> True 26.21/10.59 new_primEqInt(Pos(Succ(vyy60000)), Neg(vyy500)) -> False 26.21/10.59 new_primEqInt(Neg(Succ(vyy60000)), Pos(vyy500)) -> False 26.21/10.59 new_esEs26(vyy4810, vyy5010, ty_Ordering) -> new_esEs8(vyy4810, vyy5010) 26.21/10.59 new_esEs14(False, False) -> True 26.21/10.59 new_compare29(vyy4800, vyy5000, ty_Char) -> new_compare15(vyy4800, vyy5000) 26.21/10.59 new_esEs16(vyy6001, vyy501, app(ty_Ratio, caf)) -> new_esEs9(vyy6001, vyy501, caf) 26.21/10.59 new_primCmpInt(Neg(Zero), Neg(Succ(vyy50000))) -> new_primCmpNat0(Succ(vyy50000), Zero) 26.21/10.59 new_compare14(vyy480, vyy500) -> new_primCmpInt(vyy480, vyy500) 26.21/10.59 new_lt5(vyy480, vyy500, ty_Float) -> new_lt16(vyy480, vyy500) 26.21/10.59 new_lt4(vyy480, vyy500) -> new_esEs8(new_compare6(vyy480, vyy500), LT) 26.21/10.59 new_esEs5(Left(vyy6000), Left(vyy500), ty_Integer, chd) -> new_esEs13(vyy6000, vyy500) 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Int, hb) -> new_ltEs17(vyy4810, vyy5010) 26.21/10.59 new_esEs19(Float(vyy6000, vyy6001), Float(vyy500, vyy501)) -> new_esEs12(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) 26.21/10.59 new_esEs24(vyy6001, vyy501, ty_Integer) -> new_esEs13(vyy6001, vyy501) 26.21/10.59 new_ltEs12(EQ, GT) -> True 26.21/10.59 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, app(ty_Ratio, cha)) -> new_ltEs6(vyy4810, vyy5010, cha) 26.21/10.59 new_lt5(vyy480, vyy500, ty_Char) -> new_lt9(vyy480, vyy500) 26.21/10.59 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.21/10.59 new_esEs27(vyy6000, vyy500, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.59 new_esEs16(vyy6001, vyy501, app(ty_Maybe, bhh)) -> new_esEs6(vyy6001, vyy501, bhh) 26.21/10.59 new_compare111(vyy480, vyy500, False, bfa) -> GT 26.21/10.59 new_esEs26(vyy4810, vyy5010, app(app(ty_Either, bdb), bdc)) -> new_esEs5(vyy4810, vyy5010, bdb, bdc) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, ty_Bool) -> new_ltEs5(vyy4811, vyy5011) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, app(ty_[], dah)) -> new_esEs18(vyy6000, vyy500, dah) 26.21/10.59 new_ltEs12(EQ, EQ) -> True 26.21/10.59 new_lt20(vyy4810, vyy5010, ty_Integer) -> new_lt4(vyy4810, vyy5010) 26.21/10.59 new_compare29(vyy4800, vyy5000, app(app(app(ty_@3, fc), fd), ff)) -> new_compare17(vyy4800, vyy5000, fc, fd, ff) 26.21/10.59 new_ltEs20(vyy4812, vyy5012, ty_Int) -> new_ltEs17(vyy4812, vyy5012) 26.21/10.59 new_esEs12(vyy600, vyy50) -> new_primEqInt(vyy600, vyy50) 26.21/10.59 new_compare112(vyy480, vyy500, False, ge, gf) -> GT 26.21/10.59 new_lt19(vyy4810, vyy5010, app(app(app(ty_@3, bce), bcf), bcg)) -> new_lt6(vyy4810, vyy5010, bce, bcf, bcg) 26.21/10.59 new_esEs27(vyy6000, vyy500, app(app(app(ty_@3, dcg), dch), dda)) -> new_esEs4(vyy6000, vyy500, dcg, dch, dda) 26.21/10.59 new_lt14(vyy480, vyy500, bfa) -> new_esEs8(new_compare30(vyy480, vyy500, bfa), LT) 26.21/10.59 new_esEs23(vyy6000, vyy500, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.59 new_not(False) -> True 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Char, hb) -> new_ltEs11(vyy4810, vyy5010) 26.21/10.59 new_ltEs6(vyy481, vyy501, bff) -> new_not(new_esEs8(new_compare7(vyy481, vyy501, bff), GT)) 26.21/10.59 new_esEs16(vyy6001, vyy501, ty_Float) -> new_esEs19(vyy6001, vyy501) 26.21/10.59 new_esEs15(vyy6000, vyy500, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.59 new_compare28(vyy480, vyy500, False, bfa) -> new_compare111(vyy480, vyy500, new_ltEs14(vyy480, vyy500, bfa), bfa) 26.21/10.59 new_esEs15(vyy6000, vyy500, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.59 new_compare0(:(vyy4800, vyy4801), [], fb) -> GT 26.21/10.59 new_lt5(vyy480, vyy500, ty_Integer) -> new_lt4(vyy480, vyy500) 26.21/10.59 new_esEs8(LT, GT) -> False 26.21/10.59 new_esEs8(GT, LT) -> False 26.21/10.59 new_lt9(vyy480, vyy500) -> new_esEs8(new_compare15(vyy480, vyy500), LT) 26.21/10.59 new_esEs5(Left(vyy6000), Right(vyy500), dag, chd) -> False 26.21/10.59 new_esEs5(Right(vyy6000), Left(vyy500), dag, chd) -> False 26.21/10.59 new_compare25(vyy480, vyy500, True) -> EQ 26.21/10.59 new_esEs18(:(vyy6000, vyy6001), :(vyy500, vyy501), dcb) -> new_asAs(new_esEs27(vyy6000, vyy500, dcb), new_esEs18(vyy6001, vyy501, dcb)) 26.21/10.59 new_compare13(vyy480, vyy500, True) -> LT 26.21/10.59 new_esEs29(vyy4811, vyy5011, app(app(ty_@2, dd), de)) -> new_esEs7(vyy4811, vyy5011, dd, de) 26.21/10.59 new_compare10(vyy92, vyy93, vyy94, vyy95, False, vyy97, cfa, cfb) -> new_compare12(vyy92, vyy93, vyy94, vyy95, vyy97, cfa, cfb) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), app(ty_[], cfd)) -> new_esEs18(vyy6000, vyy500, cfd) 26.21/10.59 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.59 new_esEs15(vyy6000, vyy500, app(ty_Ratio, bhd)) -> new_esEs9(vyy6000, vyy500, bhd) 26.21/10.59 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Ordering, hb) -> new_ltEs12(vyy4810, vyy5010) 26.21/10.59 new_primPlusNat0(Succ(vyy830), vyy50100) -> Succ(Succ(new_primPlusNat1(vyy830, vyy50100))) 26.21/10.59 new_esEs23(vyy6000, vyy500, app(ty_Ratio, cdd)) -> new_esEs9(vyy6000, vyy500, cdd) 26.21/10.59 new_esEs25(vyy480, vyy500, app(ty_[], fb)) -> new_esEs18(vyy480, vyy500, fb) 26.21/10.59 new_ltEs19(vyy4811, vyy5011, app(app(ty_@2, beg), beh)) -> new_ltEs18(vyy4811, vyy5011, beg, beh) 26.21/10.59 new_esEs29(vyy4811, vyy5011, app(ty_Maybe, dc)) -> new_esEs6(vyy4811, vyy5011, dc) 26.21/10.59 new_esEs6(Just(vyy6000), Just(vyy500), ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.59 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.21/10.59 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.21/10.59 new_esEs25(vyy480, vyy500, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs4(vyy480, vyy500, eg, eh, fa) 26.21/10.59 new_lt21(vyy4811, vyy5011, ty_Double) -> new_lt15(vyy4811, vyy5011) 26.21/10.59 new_primPlusNat1(Zero, Zero) -> Zero 26.21/10.59 new_esEs26(vyy4810, vyy5010, app(ty_Ratio, chb)) -> new_esEs9(vyy4810, vyy5010, chb) 26.21/10.60 new_ltEs5(True, True) -> True 26.21/10.60 new_lt21(vyy4811, vyy5011, app(ty_Ratio, ddf)) -> new_lt10(vyy4811, vyy5011, ddf) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Int) -> new_ltEs17(vyy481, vyy501) 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Double) -> new_esEs20(vyy480, vyy500) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_compare111(vyy480, vyy500, True, bfa) -> LT 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Int) -> new_esEs12(vyy4810, vyy5010) 26.21/10.60 new_esEs18(:(vyy6000, vyy6001), [], dcb) -> False 26.21/10.60 new_esEs18([], :(vyy500, vyy501), dcb) -> False 26.21/10.60 new_compare8(vyy480, vyy500) -> new_compare23(vyy480, vyy500, new_esEs14(vyy480, vyy500)) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Float, hb) -> new_ltEs16(vyy4810, vyy5010) 26.21/10.60 new_esEs25(vyy480, vyy500, app(ty_Ratio, ceg)) -> new_esEs9(vyy480, vyy500, ceg) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(app(app(ty_@3, gg), gh), ha), hb) -> new_ltEs8(vyy4810, vyy5010, gg, gh, ha) 26.21/10.60 new_esEs13(Integer(vyy6000), Integer(vyy500)) -> new_primEqInt(vyy6000, vyy500) 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(ty_Maybe, bh)) -> new_esEs6(vyy4810, vyy5010, bh) 26.21/10.60 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.21/10.60 new_primMulNat0(Succ(vyy600000), Succ(vyy50100)) -> new_primPlusNat0(new_primMulNat0(vyy600000, Succ(vyy50100)), vyy50100) 26.21/10.60 new_ltEs12(EQ, LT) -> False 26.21/10.60 new_compare30(vyy480, vyy500, bfa) -> new_compare28(vyy480, vyy500, new_esEs6(vyy480, vyy500, bfa), bfa) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Char, chd) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_esEs20(Double(vyy6000, vyy6001), Double(vyy500, vyy501)) -> new_esEs12(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) 26.21/10.60 new_lt5(vyy480, vyy500, app(app(app(ty_@3, eg), eh), fa)) -> new_lt6(vyy480, vyy500, eg, eh, fa) 26.21/10.60 new_primCmpNat0(Succ(vyy48000), Succ(vyy50000)) -> new_primCmpNat0(vyy48000, vyy50000) 26.21/10.60 new_lt5(vyy480, vyy500, app(ty_[], fb)) -> new_lt7(vyy480, vyy500, fb) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Ordering) -> new_ltEs12(vyy481, vyy501) 26.21/10.60 new_esEs23(vyy6000, vyy500, app(ty_[], ccc)) -> new_esEs18(vyy6000, vyy500, ccc) 26.21/10.60 new_lt21(vyy4811, vyy5011, app(app(app(ty_@3, cd), ce), cf)) -> new_lt6(vyy4811, vyy5011, cd, ce, cf) 26.21/10.60 new_compare19(vyy480, vyy500, ge, gf) -> new_compare210(vyy480, vyy500, new_esEs5(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Int) -> new_esEs12(vyy4810, vyy5010) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), baa, ty_Integer) -> new_ltEs9(vyy4810, vyy5010) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Bool) -> new_ltEs5(vyy481, vyy501) 26.21/10.60 new_esEs27(vyy6000, vyy500, app(ty_Maybe, dcf)) -> new_esEs6(vyy6000, vyy500, dcf) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(ty_Ratio, cef)) -> new_esEs9(vyy6001, vyy501, cef) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Ordering) -> new_esEs8(vyy4810, vyy5010) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Float) -> new_ltEs16(vyy4811, vyy5011) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Int) -> new_esEs12(vyy6001, vyy501) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(app(ty_@2, hg), hh), hb) -> new_ltEs18(vyy4810, vyy5010, hg, hh) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.60 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.21/10.60 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(ty_Maybe, hf), hb) -> new_ltEs14(vyy4810, vyy5010, hf) 26.21/10.60 new_ltEs12(LT, EQ) -> True 26.21/10.60 new_esEs25(vyy480, vyy500, ty_@0) -> new_esEs21(vyy480, vyy500) 26.21/10.60 new_lt20(vyy4810, vyy5010, app(app(app(ty_@3, h), ba), bb)) -> new_lt6(vyy4810, vyy5010, h, ba, bb) 26.21/10.60 new_esEs9(:%(vyy6000, vyy6001), :%(vyy500, vyy501), bfg) -> new_asAs(new_esEs10(vyy6000, vyy500, bfg), new_esEs11(vyy6001, vyy501, bfg)) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, app(ty_[], ea)) -> new_ltEs4(vyy4812, vyy5012, ea) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Float) -> new_esEs19(vyy4811, vyy5011) 26.21/10.60 new_lt5(vyy480, vyy500, ty_Double) -> new_lt15(vyy480, vyy500) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), dag, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_primEqNat0(Zero, Zero) -> True 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(app(ty_Either, bf), bg)) -> new_esEs5(vyy4810, vyy5010, bf, bg) 26.21/10.60 new_compare13(vyy480, vyy500, False) -> GT 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Double) -> new_lt15(vyy4810, vyy5010) 26.21/10.60 new_ltEs8(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, bd) -> new_pePe(new_lt20(vyy4810, vyy5010, cc), new_asAs(new_esEs28(vyy4810, vyy5010, cc), new_pePe(new_lt21(vyy4811, vyy5011, bc), new_asAs(new_esEs29(vyy4811, vyy5011, bc), new_ltEs20(vyy4812, vyy5012, bd))))) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Char) -> new_esEs22(vyy6001, vyy501) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Ordering) -> new_esEs8(vyy4811, vyy5011) 26.21/10.60 new_lt21(vyy4811, vyy5011, app(ty_[], cg)) -> new_lt7(vyy4811, vyy5011, cg) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Float) -> new_ltEs16(vyy4810, vyy5010) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_@0) -> new_esEs21(vyy6001, vyy501) 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Double) -> new_esEs20(vyy6001, vyy501) 26.21/10.60 new_compare16(Double(vyy4800, Pos(vyy48010)), Double(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.60 new_compare16(Double(vyy4800, Neg(vyy48010)), Double(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.60 new_compare113(vyy480, vyy500, False, eg, eh, fa) -> GT 26.21/10.60 new_ltEs19(vyy4811, vyy5011, app(ty_[], bec)) -> new_ltEs4(vyy4811, vyy5011, bec) 26.21/10.60 new_asAs(False, vyy58) -> False 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_@0, chd) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Bool) -> new_ltEs5(vyy4812, vyy5012) 26.21/10.60 new_lt19(vyy4810, vyy5010, app(ty_Ratio, chb)) -> new_lt10(vyy4810, vyy5010, chb) 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Integer) -> new_lt4(vyy4810, vyy5010) 26.21/10.60 new_esEs15(vyy6000, vyy500, app(app(app(ty_@3, bgg), bgh), bha)) -> new_esEs4(vyy6000, vyy500, bgg, bgh, bha) 26.21/10.60 new_esEs10(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_esEs8(EQ, GT) -> False 26.21/10.60 new_esEs8(GT, EQ) -> False 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Double) -> new_lt15(vyy4810, vyy5010) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), app(app(ty_@2, bcc), bcd)) -> new_ltEs18(vyy4810, vyy5010, bcc, bcd) 26.21/10.60 new_esEs16(vyy6001, vyy501, app(app(ty_Either, bhf), bhg)) -> new_esEs5(vyy6001, vyy501, bhf, bhg) 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Ordering) -> new_esEs8(vyy6002, vyy502) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(ty_[], cde)) -> new_esEs18(vyy6001, vyy501, cde) 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Double) -> new_compare16(vyy4800, vyy5000) 26.21/10.60 new_compare23(vyy480, vyy500, False) -> new_compare110(vyy480, vyy500, new_ltEs5(vyy480, vyy500)) 26.21/10.60 26.21/10.60 The set Q consists of the following terms: 26.21/10.60 26.21/10.60 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.21/10.60 new_esEs8(EQ, EQ) 26.21/10.60 new_lt19(x0, x1, ty_Integer) 26.21/10.60 new_esEs17(x0, x1, ty_Double) 26.21/10.60 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_lt20(x0, x1, ty_Int) 26.21/10.60 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_primCmpNat0(Succ(x0), Zero) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 26.21/10.60 new_esEs25(x0, x1, ty_Integer) 26.21/10.60 new_compare28(x0, x1, True, x2) 26.21/10.60 new_ltEs19(x0, x1, ty_Int) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Char) 26.21/10.60 new_esEs24(x0, x1, ty_Int) 26.21/10.60 new_esEs18(:(x0, x1), :(x2, x3), x4) 26.21/10.60 new_compare11(@0, @0) 26.21/10.60 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 26.21/10.60 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_lt20(x0, x1, ty_Char) 26.21/10.60 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_primPlusNat1(Zero, Zero) 26.21/10.60 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.21/10.60 new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs23(x0, x1, ty_Double) 26.21/10.60 new_esEs17(x0, x1, ty_Ordering) 26.21/10.60 new_esEs27(x0, x1, ty_Ordering) 26.21/10.60 new_lt21(x0, x1, ty_Char) 26.21/10.60 new_esEs24(x0, x1, ty_Char) 26.21/10.60 new_ltEs19(x0, x1, ty_Char) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 26.21/10.60 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_compare113(x0, x1, False, x2, x3, x4) 26.21/10.60 new_esEs25(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_primEqInt(Pos(Zero), Pos(Zero)) 26.21/10.60 new_lt7(x0, x1, x2) 26.21/10.60 new_ltEs20(x0, x1, ty_Integer) 26.21/10.60 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs16(x0, x1, ty_Double) 26.21/10.60 new_esEs17(x0, x1, ty_Int) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_@0) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 26.21/10.60 new_primMulNat0(Succ(x0), Succ(x1)) 26.21/10.60 new_ltEs5(False, True) 26.21/10.60 new_lt21(x0, x1, ty_Int) 26.21/10.60 new_ltEs5(True, False) 26.21/10.60 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs27(x0, x1, ty_Double) 26.21/10.60 new_lt19(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs14(True, True) 26.21/10.60 new_ltEs7(x0, x1, ty_Bool) 26.21/10.60 new_esEs28(x0, x1, ty_Float) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.21/10.60 new_primEqInt(Neg(Zero), Neg(Zero)) 26.21/10.60 new_compare112(x0, x1, True, x2, x3) 26.21/10.60 new_lt21(x0, x1, ty_@0) 26.21/10.60 new_lt20(x0, x1, ty_Ordering) 26.21/10.60 new_esEs10(x0, x1, ty_Integer) 26.21/10.60 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_compare12(x0, x1, x2, x3, False, x4, x5) 26.21/10.60 new_lt21(x0, x1, ty_Ordering) 26.21/10.60 new_compare26(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.21/10.60 new_compare26(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 26.21/10.60 new_esEs17(x0, x1, ty_Char) 26.21/10.60 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 26.21/10.60 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_ltEs7(x0, x1, ty_@0) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 26.21/10.60 new_ltEs7(x0, x1, ty_Float) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 26.21/10.60 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 26.21/10.60 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_lt9(x0, x1) 26.21/10.60 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs15(x0, x1, ty_Double) 26.21/10.60 new_esEs14(False, True) 26.21/10.60 new_esEs14(True, False) 26.21/10.60 new_ltEs20(x0, x1, ty_Bool) 26.21/10.60 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.21/10.60 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 26.21/10.60 new_esEs23(x0, x1, ty_Char) 26.21/10.60 new_compare30(x0, x1, x2) 26.21/10.60 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.21/10.60 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.21/10.60 new_ltEs12(GT, EQ) 26.21/10.60 new_ltEs12(EQ, GT) 26.21/10.60 new_esEs16(x0, x1, ty_Ordering) 26.21/10.60 new_lt15(x0, x1) 26.21/10.60 new_lt20(x0, x1, ty_Double) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.21/10.60 new_compare26(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.21/10.60 new_esEs25(x0, x1, ty_@0) 26.21/10.60 new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.21/10.60 new_sr(x0, x1) 26.21/10.60 new_esEs24(x0, x1, ty_Ordering) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 26.21/10.60 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs23(x0, x1, ty_Int) 26.21/10.60 new_esEs24(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_primEqInt(Pos(Zero), Neg(Zero)) 26.21/10.60 new_primEqInt(Neg(Zero), Pos(Zero)) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 26.21/10.60 new_ltEs16(x0, x1) 26.21/10.60 new_lt20(x0, x1, ty_Bool) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs24(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.21/10.60 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.21/10.60 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.21/10.60 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_compare113(x0, x1, True, x2, x3, x4) 26.21/10.60 new_esEs17(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.21/10.60 new_esEs25(x0, x1, ty_Float) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 26.21/10.60 new_ltEs4(x0, x1, x2) 26.21/10.60 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.21/10.60 new_ltEs19(x0, x1, ty_Ordering) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 26.21/10.60 new_ltEs10(x0, x1) 26.21/10.60 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs23(x0, x1, ty_@0) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.21/10.60 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 26.21/10.60 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.21/10.60 new_ltEs7(x0, x1, ty_Char) 26.21/10.60 new_esEs17(x0, x1, ty_Bool) 26.21/10.60 new_primPlusNat1(Succ(x0), Succ(x1)) 26.21/10.60 new_lt20(x0, x1, ty_Integer) 26.21/10.60 new_primMulInt(Pos(x0), Pos(x1)) 26.21/10.60 new_esEs27(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs28(x0, x1, app(ty_[], x2)) 26.21/10.60 new_compare110(x0, x1, True) 26.21/10.60 new_esEs15(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_ltEs20(x0, x1, ty_Char) 26.21/10.60 new_esEs26(x0, x1, app(ty_[], x2)) 26.21/10.60 new_ltEs7(x0, x1, app(ty_[], x2)) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Integer) 26.21/10.60 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_esEs27(x0, x1, ty_@0) 26.21/10.60 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.21/10.60 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.21/10.60 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.21/10.60 new_lt21(x0, x1, ty_Integer) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.21/10.60 new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_lt13(x0, x1, x2, x3) 26.21/10.60 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.21/10.60 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_ltEs20(x0, x1, ty_Int) 26.21/10.60 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.21/10.60 new_esEs17(x0, x1, app(ty_[], x2)) 26.21/10.60 new_compare25(x0, x1, True) 26.21/10.60 new_compare18(x0, x1) 26.21/10.60 new_lt18(x0, x1, x2, x3) 26.21/10.60 new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_lt5(x0, x1, app(ty_[], x2)) 26.21/10.60 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_esEs15(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_primCompAux0(x0, LT) 26.21/10.60 new_lt21(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_pePe(True, x0) 26.21/10.60 new_compare29(x0, x1, ty_Float) 26.21/10.60 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.21/10.60 new_esEs8(GT, GT) 26.21/10.60 new_esEs25(x0, x1, ty_Double) 26.21/10.60 new_ltEs12(EQ, LT) 26.21/10.60 new_ltEs12(LT, EQ) 26.21/10.60 new_compare27(x0, x1, False, x2, x3, x4) 26.21/10.60 new_esEs8(LT, EQ) 26.21/10.60 new_esEs8(EQ, LT) 26.21/10.60 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_ltEs12(GT, GT) 26.21/10.60 new_lt20(x0, x1, ty_@0) 26.21/10.60 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.21/10.60 new_esEs6(Nothing, Nothing, x0) 26.21/10.60 new_compare12(x0, x1, x2, x3, True, x4, x5) 26.21/10.60 new_compare26(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.21/10.60 new_esEs26(x0, x1, ty_Double) 26.21/10.60 new_primPlusNat0(Zero, x0) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.21/10.60 new_lt8(x0, x1) 26.21/10.60 new_compare17(x0, x1, x2, x3, x4) 26.21/10.60 new_esEs23(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 26.21/10.60 new_ltEs20(x0, x1, ty_Float) 26.21/10.60 new_esEs8(LT, LT) 26.21/10.60 new_esEs26(x0, x1, ty_@0) 26.21/10.60 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.21/10.60 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.21/10.60 new_esEs18([], :(x0, x1), x2) 26.21/10.60 new_lt10(x0, x1, x2) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.21/10.60 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Bool) 26.21/10.60 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_lt19(x0, x1, ty_@0) 26.21/10.60 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_compare0(:(x0, x1), :(x2, x3), x4) 26.21/10.60 new_esEs24(x0, x1, ty_Double) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.21/10.60 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.21/10.60 new_ltEs5(True, True) 26.21/10.60 new_ltEs6(x0, x1, x2) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Float) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 26.21/10.60 new_ltEs19(x0, x1, ty_Double) 26.21/10.60 new_compare9(x0, x1, x2, x3) 26.21/10.60 new_primMulNat0(Succ(x0), Zero) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_Double) 26.21/10.60 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 26.21/10.60 new_ltEs12(LT, LT) 26.21/10.60 new_primEqNat0(Succ(x0), Succ(x1)) 26.21/10.60 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.21/10.60 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_esEs19(Float(x0, x1), Float(x2, x3)) 26.21/10.60 new_primCmpNat0(Succ(x0), Succ(x1)) 26.21/10.60 new_esEs16(x0, x1, ty_@0) 26.21/10.60 new_ltEs20(x0, x1, app(ty_[], x2)) 26.21/10.60 new_lt5(x0, x1, ty_Double) 26.21/10.60 new_compare112(x0, x1, False, x2, x3) 26.21/10.60 new_esEs17(x0, x1, ty_Integer) 26.21/10.60 new_esEs17(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_lt19(x0, x1, ty_Double) 26.21/10.60 new_ltEs7(x0, x1, ty_Integer) 26.21/10.60 new_esEs24(x0, x1, ty_@0) 26.21/10.60 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_ltEs7(x0, x1, ty_Ordering) 26.21/10.60 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.21/10.60 new_ltEs19(x0, x1, ty_@0) 26.21/10.60 new_lt21(x0, x1, ty_Bool) 26.21/10.60 new_compare111(x0, x1, True, x2) 26.21/10.60 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_esEs29(x0, x1, ty_Double) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Int) 26.21/10.60 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_primMulNat0(Zero, Succ(x0)) 26.21/10.60 new_ltEs14(Nothing, Nothing, x0) 26.21/10.60 new_esEs25(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs17(x0, x1, ty_Float) 26.21/10.60 new_esEs28(x0, x1, ty_Char) 26.21/10.60 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_primCompAux1(x0, x1, x2, x3) 26.21/10.60 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs26(x0, x1, ty_Char) 26.21/10.60 new_compare23(x0, x1, False) 26.21/10.60 new_esEs23(x0, x1, ty_Float) 26.21/10.60 new_pePe(False, x0) 26.21/10.60 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.21/10.60 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.21/10.60 new_primMulNat0(Zero, Zero) 26.21/10.60 new_esEs28(x0, x1, ty_Int) 26.21/10.60 new_compare19(x0, x1, x2, x3) 26.21/10.60 new_compare25(x0, x1, False) 26.21/10.60 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 26.21/10.60 new_compare29(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs29(x0, x1, ty_@0) 26.21/10.60 new_primCompAux0(x0, EQ) 26.21/10.60 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.21/10.60 new_esEs15(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_sr0(Integer(x0), Integer(x1)) 26.21/10.60 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_compare29(x0, x1, ty_@0) 26.21/10.60 new_primCmpNat0(Zero, Succ(x0)) 26.21/10.60 new_ltEs15(x0, x1) 26.21/10.60 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_lt4(x0, x1) 26.21/10.60 new_esEs17(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_lt5(x0, x1, ty_@0) 26.21/10.60 new_lt20(x0, x1, ty_Float) 26.21/10.60 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs17(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_primEqNat0(Zero, Succ(x0)) 26.21/10.60 new_compare13(x0, x1, True) 26.21/10.60 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs15(x0, x1, ty_Bool) 26.21/10.60 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_ltEs19(x0, x1, app(ty_[], x2)) 26.21/10.60 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.21/10.60 new_esEs16(x0, x1, app(ty_[], x2)) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.21/10.60 new_primPlusNat1(Zero, Succ(x0)) 26.21/10.60 new_lt12(x0, x1) 26.21/10.60 new_lt5(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_esEs28(x0, x1, ty_@0) 26.21/10.60 new_ltEs20(x0, x1, ty_Ordering) 26.21/10.60 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_not(True) 26.21/10.60 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_esEs27(x0, x1, ty_Integer) 26.21/10.60 new_ltEs7(x0, x1, ty_Double) 26.21/10.60 new_lt5(x0, x1, ty_Ordering) 26.21/10.60 new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs26(x0, x1, ty_Ordering) 26.21/10.60 new_asAs(False, x0) 26.21/10.60 new_esEs15(x0, x1, ty_@0) 26.21/10.60 new_esEs8(EQ, GT) 26.21/10.60 new_esEs8(GT, EQ) 26.21/10.60 new_lt21(x0, x1, ty_Float) 26.21/10.60 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_compare13(x0, x1, False) 26.21/10.60 new_esEs10(x0, x1, ty_Int) 26.21/10.60 new_ltEs20(x0, x1, ty_Double) 26.21/10.60 new_compare29(x0, x1, ty_Int) 26.21/10.60 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 26.21/10.60 new_esEs29(x0, x1, ty_Ordering) 26.21/10.60 new_compare29(x0, x1, ty_Char) 26.21/10.60 new_lt19(x0, x1, ty_Ordering) 26.21/10.60 new_esEs16(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs24(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_ltEs5(False, False) 26.21/10.60 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_compare29(x0, x1, ty_Double) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 26.21/10.60 new_ltEs12(EQ, EQ) 26.21/10.60 new_ltEs7(x0, x1, ty_Int) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 26.21/10.60 new_lt6(x0, x1, x2, x3, x4) 26.21/10.60 new_esEs22(Char(x0), Char(x1)) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 26.21/10.60 new_esEs28(x0, x1, ty_Bool) 26.21/10.60 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_esEs15(x0, x1, ty_Float) 26.21/10.60 new_compare0([], [], x0) 26.21/10.60 new_esEs18(:(x0, x1), [], x2) 26.21/10.60 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs16(x0, x1, ty_Integer) 26.21/10.60 new_esEs26(x0, x1, ty_Integer) 26.21/10.60 new_esEs28(x0, x1, ty_Double) 26.21/10.60 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.21/10.60 new_compare210(x0, x1, True, x2, x3) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 26.21/10.60 new_esEs20(Double(x0, x1), Double(x2, x3)) 26.21/10.60 new_compare29(x0, x1, ty_Bool) 26.21/10.60 new_compare23(x0, x1, True) 26.21/10.60 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.21/10.60 new_esEs17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 26.21/10.60 new_esEs25(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs5(Left(x0), Right(x1), x2, x3) 26.21/10.60 new_esEs5(Right(x0), Left(x1), x2, x3) 26.21/10.60 new_esEs24(x0, x1, ty_Integer) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.21/10.60 new_esEs29(x0, x1, app(ty_[], x2)) 26.21/10.60 new_lt20(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs23(x0, x1, ty_Bool) 26.21/10.60 new_esEs13(Integer(x0), Integer(x1)) 26.21/10.60 new_esEs25(x0, x1, ty_Char) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.21/10.60 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.21/10.60 new_compare24(x0, x1, True, x2, x3) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.21/10.60 new_ltEs19(x0, x1, ty_Integer) 26.21/10.60 new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs15(x0, x1, ty_Char) 26.21/10.60 new_lt19(x0, x1, ty_Int) 26.21/10.60 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs15(x0, x1, ty_Int) 26.21/10.60 new_compare6(Integer(x0), Integer(x1)) 26.21/10.60 new_primMulInt(Pos(x0), Neg(x1)) 26.21/10.60 new_primMulInt(Neg(x0), Pos(x1)) 26.21/10.60 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.21/10.60 new_esEs25(x0, x1, ty_Int) 26.21/10.60 new_esEs17(x0, x1, ty_@0) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs8(LT, GT) 26.21/10.60 new_esEs8(GT, LT) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 26.21/10.60 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.21/10.60 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 26.21/10.60 new_esEs16(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_esEs16(x0, x1, ty_Char) 26.21/10.60 new_esEs12(x0, x1) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_Float) 26.21/10.60 new_ltEs14(Nothing, Just(x0), x1) 26.21/10.60 new_compare15(Char(x0), Char(x1)) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.21/10.60 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_ltEs19(x0, x1, ty_Bool) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 26.21/10.60 new_compare0([], :(x0, x1), x2) 26.21/10.60 new_lt19(x0, x1, ty_Float) 26.21/10.60 new_compare210(x0, x1, False, x2, x3) 26.21/10.60 new_lt16(x0, x1) 26.21/10.60 new_esEs29(x0, x1, ty_Float) 26.21/10.60 new_esEs16(x0, x1, ty_Bool) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_Ordering) 26.21/10.60 new_lt14(x0, x1, x2) 26.21/10.60 new_esEs27(x0, x1, ty_Bool) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.21/10.60 new_esEs29(x0, x1, ty_Integer) 26.21/10.60 new_compare29(x0, x1, ty_Ordering) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 26.21/10.60 new_compare29(x0, x1, ty_Integer) 26.21/10.60 new_lt5(x0, x1, ty_Float) 26.21/10.60 new_ltEs20(x0, x1, ty_@0) 26.21/10.60 new_primEqNat0(Succ(x0), Zero) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_Integer) 26.21/10.60 new_compare111(x0, x1, False, x2) 26.21/10.60 new_esEs27(x0, x1, ty_Char) 26.21/10.60 new_esEs28(x0, x1, ty_Integer) 26.21/10.60 new_compare8(x0, x1) 26.21/10.60 new_compare28(x0, x1, False, x2) 26.21/10.60 new_lt5(x0, x1, ty_Integer) 26.21/10.60 new_esEs24(x0, x1, ty_Bool) 26.21/10.60 new_esEs11(x0, x1, ty_Integer) 26.21/10.60 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_esEs26(x0, x1, ty_Bool) 26.21/10.60 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs6(Just(x0), Nothing, x1) 26.21/10.60 new_ltEs14(Just(x0), Nothing, x1) 26.21/10.60 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.21/10.60 new_esEs26(x0, x1, ty_Float) 26.21/10.60 new_primEqNat0(Zero, Zero) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_@0) 26.21/10.60 new_ltEs11(x0, x1) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 26.21/10.60 new_primCompAux0(x0, GT) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_Int) 26.21/10.60 new_not(False) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Double) 26.21/10.60 new_compare27(x0, x1, True, x2, x3, x4) 26.21/10.60 new_esEs29(x0, x1, ty_Int) 26.21/10.60 new_lt11(x0, x1) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.21/10.60 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 26.21/10.60 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 26.21/10.60 new_esEs25(x0, x1, ty_Bool) 26.21/10.60 new_ltEs12(LT, GT) 26.21/10.60 new_ltEs12(GT, LT) 26.21/10.60 new_compare29(x0, x1, app(ty_[], x2)) 26.21/10.60 new_lt21(x0, x1, ty_Double) 26.21/10.60 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_esEs18([], [], x0) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 26.21/10.60 new_esEs27(x0, x1, ty_Int) 26.21/10.60 new_lt5(x0, x1, ty_Int) 26.21/10.60 new_esEs14(False, False) 26.21/10.60 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.21/10.60 new_esEs25(x0, x1, ty_Ordering) 26.21/10.60 new_esEs28(x0, x1, ty_Ordering) 26.21/10.60 new_esEs16(x0, x1, ty_Int) 26.21/10.60 new_primPlusNat0(Succ(x0), x1) 26.21/10.60 new_esEs11(x0, x1, ty_Int) 26.21/10.60 new_compare24(@2(x0, x1), @2(x2, x3), False, x4, x5) 26.21/10.60 new_primPlusNat1(Succ(x0), Zero) 26.21/10.60 new_lt5(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs29(x0, x1, ty_Char) 26.21/10.60 new_lt17(x0, x1) 26.21/10.60 new_lt19(x0, x1, ty_Bool) 26.21/10.60 new_lt5(x0, x1, ty_Char) 26.21/10.60 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_Char) 26.21/10.60 new_esEs26(x0, x1, ty_Int) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.21/10.60 new_esEs15(x0, x1, ty_Ordering) 26.21/10.60 new_ltEs17(x0, x1) 26.21/10.60 new_primMulInt(Neg(x0), Neg(x1)) 26.21/10.60 new_esEs29(x0, x1, ty_Bool) 26.21/10.60 new_esEs24(x0, x1, ty_Float) 26.21/10.60 new_compare29(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.21/10.60 new_ltEs13(Left(x0), Right(x1), x2, x3) 26.21/10.60 new_ltEs13(Right(x0), Left(x1), x2, x3) 26.21/10.60 new_compare0(:(x0, x1), [], x2) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.21/10.60 new_esEs21(@0, @0) 26.21/10.60 new_esEs23(x0, x1, ty_Integer) 26.21/10.60 new_ltEs19(x0, x1, ty_Float) 26.21/10.60 new_esEs6(Nothing, Just(x0), x1) 26.21/10.60 new_compare110(x0, x1, False) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 26.21/10.60 new_lt19(x0, x1, ty_Char) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 26.21/10.60 new_compare14(x0, x1) 26.21/10.60 new_lt5(x0, x1, ty_Bool) 26.21/10.60 new_ltEs9(x0, x1) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.21/10.60 new_esEs27(x0, x1, ty_Float) 26.21/10.60 new_esEs16(x0, x1, ty_Float) 26.21/10.60 new_esEs15(x0, x1, ty_Integer) 26.21/10.60 new_primCmpNat0(Zero, Zero) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_Bool) 26.21/10.60 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 26.21/10.60 new_esEs23(x0, x1, ty_Ordering) 26.21/10.60 new_asAs(True, x0) 26.21/10.60 26.21/10.60 We have to consider all minimal (P,Q,R)-chains. 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (21) QDPSizeChangeProof (EQUIVALENT) 26.21/10.60 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.21/10.60 26.21/10.60 From the DPs we obtained the following set of size-change graphs: 26.21/10.60 *new_compare4(vyy480, vyy500, bfa) -> new_compare21(vyy480, vyy500, new_esEs6(vyy480, vyy500, bfa), bfa) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_lt0(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_primCompAux(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, fb), fb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_lt0(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_compare1(vyy4801, vyy5001, fb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(app(ty_@2, ee), ef)) -> new_ltEs3(vyy4812, vyy5012, ee, ef) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(app(app(ty_@3, df), dg), dh)) -> new_ltEs(vyy4812, vyy5012, df, dg, dh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_lt1(vyy480, vyy500, ge, gf) -> new_compare20(vyy480, vyy500, new_esEs5(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_lt3(vyy480, vyy500, bfb, bfc) -> new_compare22(vyy480, vyy500, new_esEs7(vyy480, vyy500, bfb, bfc), bfb, bfc) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare1(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_primCompAux(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, fb), fb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(:(vyy4800, vyy4801), vyy481), @2(:(vyy5000, vyy5001), vyy501), False, app(ty_[], fb), bfe) -> new_primCompAux(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, fb), fb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare1(:(vyy4800, vyy4801), :(vyy5000, vyy5001), fb) -> new_compare1(vyy4801, vyy5001, fb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(ty_[], bda), bch) -> new_lt0(vyy4810, vyy5010, bda) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(app(ty_@2, bfb), bfc), bfe) -> new_compare22(vyy480, vyy500, new_esEs7(vyy480, vyy500, bfb, bfc), bfb, bfc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare5(vyy480, vyy500, bfb, bfc) -> new_compare22(vyy480, vyy500, new_esEs7(vyy480, vyy500, bfb, bfc), bfb, bfc) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(app(ty_@2, bde), bdf), bch) -> new_lt3(vyy4810, vyy5010, bde, bdf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs2(Just(vyy4810), Just(vyy5010), app(app(ty_@2, bcc), bcd)) -> new_ltEs3(vyy4810, vyy5010, bcc, bcd) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(app(ty_@2, beg), beh)) -> new_ltEs3(vyy4811, vyy5011, beg, beh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs2(Just(vyy4810), Just(vyy5010), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs(vyy4810, vyy5010, bbd, bbe, bbf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(app(ty_Either, eb), ec)) -> new_ltEs1(vyy4812, vyy5012, eb, ec) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs2(Just(vyy4810), Just(vyy5010), app(app(ty_Either, bbh), bca)) -> new_ltEs1(vyy4810, vyy5010, bbh, bca) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs0(vyy481, vyy501, bbc) -> new_compare1(vyy481, vyy501, bbc) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_lt(vyy480, vyy500, eg, eh, fa) -> new_compare2(vyy480, vyy500, new_esEs4(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(ty_[], ea)) -> new_ltEs0(vyy4812, vyy5012, ea) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs2(Just(vyy4810), Just(vyy5010), app(ty_[], bbg)) -> new_ltEs0(vyy4810, vyy5010, bbg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs2(Just(vyy4810), Just(vyy5010), app(ty_Maybe, bcb)) -> new_ltEs2(vyy4810, vyy5010, bcb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(ty_[], bec)) -> new_ltEs0(vyy4811, vyy5011, bec) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(app(app(ty_@3, bdh), bea), beb)) -> new_ltEs(vyy4811, vyy5011, bdh, bea, beb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare2(vyy480, vyy500, False, eg, eh, fa) -> new_ltEs(vyy480, vyy500, eg, eh, fa) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(app(ty_Either, bed), bee)) -> new_ltEs1(vyy4811, vyy5011, bed, bee) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare20(vyy480, vyy500, False, ge, gf) -> new_ltEs1(vyy480, vyy500, ge, gf) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_primCompAux(vyy4800, vyy5000, vyy112, app(app(app(ty_@3, fc), fd), ff)) -> new_compare(vyy4800, vyy5000, fc, fd, ff) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_primCompAux(vyy4800, vyy5000, vyy112, app(ty_Maybe, gb)) -> new_compare4(vyy4800, vyy5000, gb) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare21(vyy480, vyy500, False, bfa) -> new_ltEs2(vyy480, vyy500, bfa) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_lt2(vyy480, vyy500, bfa) -> new_compare21(vyy480, vyy500, new_esEs6(vyy480, vyy500, bfa), bfa) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_primCompAux(vyy4800, vyy5000, vyy112, app(ty_[], fg)) -> new_compare1(vyy4800, vyy5000, fg) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, bc, app(ty_Maybe, ed)) -> new_ltEs2(vyy4812, vyy5012, ed) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bdg, app(ty_Maybe, bef)) -> new_ltEs2(vyy4811, vyy5011, bef) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(app(ty_Either, bdb), bdc), bch) -> new_lt1(vyy4810, vyy5010, bdb, bdc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(ty_Maybe, bdd), bch) -> new_lt2(vyy4810, vyy5010, bdd) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs3(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), app(app(app(ty_@3, bce), bcf), bcg), bch) -> new_lt(vyy4810, vyy5010, bce, bcf, bcg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare(vyy480, vyy500, eg, eh, fa) -> new_compare2(vyy480, vyy500, new_esEs4(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare3(vyy480, vyy500, ge, gf) -> new_compare20(vyy480, vyy500, new_esEs5(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(app(ty_Either, ge), gf), bfe) -> new_compare20(vyy480, vyy500, new_esEs5(vyy480, vyy500, ge, gf), ge, gf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(app(app(ty_@3, eg), eh), fa), bfe) -> new_compare2(vyy480, vyy500, new_esEs4(vyy480, vyy500, eg, eh, fa), eg, eh, fa) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4, 4 > 5, 4 > 6 26.21/10.60 26.21/10.60 26.21/10.60 *new_primCompAux(vyy4800, vyy5000, vyy112, app(app(ty_Either, fh), ga)) -> new_compare3(vyy4800, vyy5000, fh, ga) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_primCompAux(vyy4800, vyy5000, vyy112, app(app(ty_@2, gc), gd)) -> new_compare5(vyy4800, vyy5000, gc, gd) 26.21/10.60 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, app(ty_Maybe, bfa), bfe) -> new_compare21(vyy480, vyy500, new_esEs6(vyy480, vyy500, bfa), bfa) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(ty_[], cg), bd) -> new_lt0(vyy4811, vyy5011, cg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(ty_[], be), bc, bd) -> new_lt0(vyy4810, vyy5010, be) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(ty_[], cg)), bd)) -> new_lt0(vyy4811, vyy5011, cg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(ty_[], bda)), bch)) -> new_lt0(vyy4810, vyy5010, bda) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(ty_[], be)), bc), bd)) -> new_lt0(vyy4810, vyy5010, be) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Left(vyy4810), Left(vyy5010), app(app(ty_@2, hg), hh), hb) -> new_ltEs3(vyy4810, vyy5010, hg, hh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(app(ty_@2, bba), bbb)) -> new_ltEs3(vyy4810, vyy5010, bba, bbb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Left(vyy4810), Left(vyy5010), app(app(app(ty_@3, gg), gh), ha), hb) -> new_ltEs(vyy4810, vyy5010, gg, gh, ha) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs(vyy4810, vyy5010, bab, bac, bad) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(app(ty_Either, baf), bag)) -> new_ltEs1(vyy4810, vyy5010, baf, bag) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Left(vyy4810), Left(vyy5010), app(app(ty_Either, hd), he), hb) -> new_ltEs1(vyy4810, vyy5010, hd, he) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Left(vyy4810), Left(vyy5010), app(ty_[], hc), hb) -> new_ltEs0(vyy4810, vyy5010, hc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(ty_[], bae)) -> new_ltEs0(vyy4810, vyy5010, bae) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Left(vyy4810), Left(vyy5010), app(ty_Maybe, hf), hb) -> new_ltEs2(vyy4810, vyy5010, hf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs1(Right(vyy4810), Right(vyy5010), baa, app(ty_Maybe, bah)) -> new_ltEs2(vyy4810, vyy5010, bah) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(app(ty_@2, beg), beh))) -> new_ltEs3(vyy4811, vyy5011, beg, beh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(app(ty_@2, bba), bbb))) -> new_ltEs3(vyy4810, vyy5010, bba, bbb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(app(ty_@2, ee), ef))) -> new_ltEs3(vyy4812, vyy5012, ee, ef) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(app(ty_@2, bcc), bcd))) -> new_ltEs3(vyy4810, vyy5010, bcc, bcd) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(app(ty_@2, hg), hh)), hb)) -> new_ltEs3(vyy4810, vyy5010, hg, hh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(app(ty_@2, dd), de), bd) -> new_lt3(vyy4811, vyy5011, dd, de) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(app(ty_@2, ca), cb), bc, bd) -> new_lt3(vyy4810, vyy5010, ca, cb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(app(ty_Either, da), db), bd) -> new_lt1(vyy4811, vyy5011, da, db) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(app(ty_Either, bf), bg), bc, bd) -> new_lt1(vyy4810, vyy5010, bf, bg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(ty_Maybe, dc), bd) -> new_lt2(vyy4811, vyy5011, dc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(ty_Maybe, bh), bc, bd) -> new_lt2(vyy4810, vyy5010, bh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), app(app(app(ty_@3, h), ba), bb), bc, bd) -> new_lt(vyy4810, vyy5010, h, ba, bb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_ltEs(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), cc, app(app(app(ty_@3, cd), ce), cf), bd) -> new_lt(vyy4811, vyy5011, cd, ce, cf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(app(app(ty_@3, bbd), bbe), bbf))) -> new_ltEs(vyy4810, vyy5010, bbd, bbe, bbf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(app(app(ty_@3, df), dg), dh))) -> new_ltEs(vyy4812, vyy5012, df, dg, dh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(app(app(ty_@3, bab), bac), bad))) -> new_ltEs(vyy4810, vyy5010, bab, bac, bad) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(app(app(ty_@3, gg), gh), ha)), hb)) -> new_ltEs(vyy4810, vyy5010, gg, gh, ha) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(app(app(ty_@3, bdh), bea), beb))) -> new_ltEs(vyy4811, vyy5011, bdh, bea, beb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(app(ty_@2, bde), bdf)), bch)) -> new_lt3(vyy4810, vyy5010, bde, bdf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(app(ty_@2, ca), cb)), bc), bd)) -> new_lt3(vyy4810, vyy5010, ca, cb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(app(ty_@2, dd), de)), bd)) -> new_lt3(vyy4811, vyy5011, dd, de) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(app(ty_Either, bed), bee))) -> new_ltEs1(vyy4811, vyy5011, bed, bee) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(app(ty_Either, hd), he)), hb)) -> new_ltEs1(vyy4810, vyy5010, hd, he) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(app(ty_Either, bbh), bca))) -> new_ltEs1(vyy4810, vyy5010, bbh, bca) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(app(ty_Either, baf), bag))) -> new_ltEs1(vyy4810, vyy5010, baf, bag) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(app(ty_Either, eb), ec))) -> new_ltEs1(vyy4812, vyy5012, eb, ec) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(ty_[], bae))) -> new_ltEs0(vyy4810, vyy5010, bae) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(ty_[], hc)), hb)) -> new_ltEs0(vyy4810, vyy5010, hc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(ty_[], ea))) -> new_ltEs0(vyy4812, vyy5012, ea) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(ty_[], bec))) -> new_ltEs0(vyy4811, vyy5011, bec) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(ty_[], bbg))) -> new_ltEs0(vyy4810, vyy5010, bbg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(:(vyy4800, vyy4801), vyy481), @2(:(vyy5000, vyy5001), vyy501), False, app(ty_[], fb), bfe) -> new_compare1(vyy4801, vyy5001, fb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, vyy481), @2(vyy500, vyy501), False, bfd, app(ty_[], bbc)) -> new_compare1(vyy481, vyy501, bbc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, bdg), app(ty_Maybe, bef))) -> new_ltEs2(vyy4811, vyy5011, bef) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), bc), app(ty_Maybe, ed))) -> new_ltEs2(vyy4812, vyy5012, ed) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Just(vyy4810)), @2(vyy500, Just(vyy5010)), False, bfd, app(ty_Maybe, app(ty_Maybe, bcb))) -> new_ltEs2(vyy4810, vyy5010, bcb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Right(vyy4810)), @2(vyy500, Right(vyy5010)), False, bfd, app(app(ty_Either, baa), app(ty_Maybe, bah))) -> new_ltEs2(vyy4810, vyy5010, bah) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, Left(vyy4810)), @2(vyy500, Left(vyy5010)), False, bfd, app(app(ty_Either, app(ty_Maybe, hf)), hb)) -> new_ltEs2(vyy4810, vyy5010, hf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(app(ty_Either, bdb), bdc)), bch)) -> new_lt1(vyy4810, vyy5010, bdb, bdc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(app(ty_Either, da), db)), bd)) -> new_lt1(vyy4811, vyy5011, da, db) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(app(ty_Either, bf), bg)), bc), bd)) -> new_lt1(vyy4810, vyy5010, bf, bg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(ty_Maybe, bh)), bc), bd)) -> new_lt2(vyy4810, vyy5010, bh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(ty_Maybe, bdd)), bch)) -> new_lt2(vyy4810, vyy5010, bdd) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(ty_Maybe, dc)), bd)) -> new_lt2(vyy4811, vyy5011, dc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @2(vyy4810, vyy4811)), @2(vyy500, @2(vyy5010, vyy5011)), False, bfd, app(app(ty_@2, app(app(app(ty_@3, bce), bcf), bcg)), bch)) -> new_lt(vyy4810, vyy5010, bce, bcf, bcg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, cc), app(app(app(ty_@3, cd), ce), cf)), bd)) -> new_lt(vyy4811, vyy5011, cd, ce, cf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_compare22(@2(vyy480, @3(vyy4810, vyy4811, vyy4812)), @2(vyy500, @3(vyy5010, vyy5011, vyy5012)), False, bfd, app(app(app(ty_@3, app(app(app(ty_@3, h), ba), bb)), bc), bd)) -> new_lt(vyy4810, vyy5010, h, ba, bb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (22) 26.21/10.60 YES 26.21/10.60 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (23) 26.21/10.60 Obligation: 26.21/10.60 Q DP problem: 26.21/10.60 The TRS P consists of the following rules: 26.21/10.60 26.21/10.60 new_esEs0(Left(vyy6000), Left(vyy500), app(ty_Maybe, cf), cc) -> new_esEs1(vyy6000, vyy500, cf) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(vyy6000, vyy500, bca, bcb) 26.21/10.60 new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_Either, eh), fa)) -> new_esEs0(vyy6000, vyy500, eh, fa) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vyy6001, vyy501, bdc, bdd) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(app(ty_@2, bbe), bbf)) -> new_esEs3(vyy6002, vyy502, bbe, bbf) 26.21/10.60 new_esEs0(Right(vyy6000), Right(vyy500), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vyy6000, vyy500, dg, dh) 26.21/10.60 new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), ca) -> new_esEs(vyy6001, vyy501, ca) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_Maybe, gf), gb, gc) -> new_esEs1(vyy6000, vyy500, gf) 26.21/10.60 new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_@2, bg), bh)) -> new_esEs3(vyy6000, vyy500, bg, bh) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(ty_[], baf)) -> new_esEs(vyy6002, vyy502, baf) 26.21/10.60 new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_Maybe, bc)) -> new_esEs1(vyy6000, vyy500, bc) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(ty_Maybe, hh), gc) -> new_esEs1(vyy6001, vyy501, hh) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(ty_[], he), gc) -> new_esEs(vyy6001, vyy501, he) 26.21/10.60 new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_[], h)) -> new_esEs(vyy6000, vyy500, h) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_@2, hb), hc), gb, gc) -> new_esEs3(vyy6000, vyy500, hb, hc) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(app(ty_@2, bad), bae), gc) -> new_esEs3(vyy6001, vyy501, bad, bae) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(ty_Maybe, bba)) -> new_esEs1(vyy6002, vyy502, bba) 26.21/10.60 new_esEs0(Right(vyy6000), Right(vyy500), de, app(ty_[], df)) -> new_esEs(vyy6000, vyy500, df) 26.21/10.60 new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_@2, fg), fh)) -> new_esEs3(vyy6000, vyy500, fg, fh) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_[], ga), gb, gc) -> new_esEs(vyy6000, vyy500, ga) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_Maybe, bcc), bbh) -> new_esEs1(vyy6000, vyy500, bcc) 26.21/10.60 new_esEs0(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(vyy6000, vyy500, cg, da, db) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(vyy6001, vyy501, baa, bab, bac) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(vyy6001, vyy501, bea, beb) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(ty_Maybe, bde)) -> new_esEs1(vyy6001, vyy501, bde) 26.21/10.60 new_esEs0(Left(vyy6000), Left(vyy500), app(app(ty_@2, dc), dd), cc) -> new_esEs3(vyy6000, vyy500, dc, dd) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(vyy6000, vyy500, gg, gh, ha) 26.21/10.60 new_esEs0(Right(vyy6000), Right(vyy500), de, app(app(ty_@2, ee), ef)) -> new_esEs3(vyy6000, vyy500, ee, ef) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(app(ty_Either, hf), hg), gc) -> new_esEs0(vyy6001, vyy501, hf, hg) 26.21/10.60 new_esEs0(Left(vyy6000), Left(vyy500), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vyy6000, vyy500, cd, ce) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(app(ty_Either, bag), bah)) -> new_esEs0(vyy6002, vyy502, bag, bah) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_Either, gd), ge), gb, gc) -> new_esEs0(vyy6000, vyy500, gd, ge) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(vyy6000, vyy500, bcg, bch) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(ty_[], bdb)) -> new_esEs(vyy6001, vyy501, bdb) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(vyy6000, vyy500, bcd, bce, bcf) 26.21/10.60 new_esEs0(Right(vyy6000), Right(vyy500), de, app(ty_Maybe, ea)) -> new_esEs1(vyy6000, vyy500, ea) 26.21/10.60 new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_Either, ba), bb)) -> new_esEs0(vyy6000, vyy500, ba, bb) 26.21/10.60 new_esEs1(Just(vyy6000), Just(vyy500), app(ty_[], eg)) -> new_esEs(vyy6000, vyy500, eg) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_[], bbg), bbh) -> new_esEs(vyy6000, vyy500, bbg) 26.21/10.60 new_esEs0(Right(vyy6000), Right(vyy500), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(vyy6000, vyy500, eb, ec, ed) 26.21/10.60 new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(vyy6002, vyy502, bbb, bbc, bbd) 26.21/10.60 new_esEs1(Just(vyy6000), Just(vyy500), app(ty_Maybe, fb)) -> new_esEs1(vyy6000, vyy500, fb) 26.21/10.60 new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vyy6001, vyy501, bdf, bdg, bdh) 26.21/10.60 new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(vyy6000, vyy500, bd, be, bf) 26.21/10.60 new_esEs1(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(vyy6000, vyy500, fc, fd, ff) 26.21/10.60 new_esEs0(Left(vyy6000), Left(vyy500), app(ty_[], cb), cc) -> new_esEs(vyy6000, vyy500, cb) 26.21/10.60 26.21/10.60 R is empty. 26.21/10.60 Q is empty. 26.21/10.60 We have to consider all minimal (P,Q,R)-chains. 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (24) QDPSizeChangeProof (EQUIVALENT) 26.21/10.60 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.21/10.60 26.21/10.60 From the DPs we obtained the following set of size-change graphs: 26.21/10.60 *new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_Either, eh), fa)) -> new_esEs0(vyy6000, vyy500, eh, fa) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs1(Just(vyy6000), Just(vyy500), app(app(ty_@2, fg), fh)) -> new_esEs3(vyy6000, vyy500, fg, fh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs1(Just(vyy6000), Just(vyy500), app(ty_Maybe, fb)) -> new_esEs1(vyy6000, vyy500, fb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs1(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, fc), fd), ff)) -> new_esEs2(vyy6000, vyy500, fc, fd, ff) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs1(Just(vyy6000), Just(vyy500), app(ty_[], eg)) -> new_esEs(vyy6000, vyy500, eg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_Either, ba), bb)) -> new_esEs0(vyy6000, vyy500, ba, bb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(ty_@2, bg), bh)) -> new_esEs3(vyy6000, vyy500, bg, bh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_Maybe, bc)) -> new_esEs1(vyy6000, vyy500, bc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(app(app(ty_@3, bd), be), bf)) -> new_esEs2(vyy6000, vyy500, bd, be, bf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Right(vyy6000), Right(vyy500), de, app(app(ty_Either, dg), dh)) -> new_esEs0(vyy6000, vyy500, dg, dh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Left(vyy6000), Left(vyy500), app(app(ty_Either, cd), ce), cc) -> new_esEs0(vyy6000, vyy500, cd, ce) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_Either, bca), bcb), bbh) -> new_esEs0(vyy6000, vyy500, bca, bcb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(app(ty_Either, bdc), bdd)) -> new_esEs0(vyy6001, vyy501, bdc, bdd) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(app(ty_Either, hf), hg), gc) -> new_esEs0(vyy6001, vyy501, hf, hg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(app(ty_Either, bag), bah)) -> new_esEs0(vyy6002, vyy502, bag, bah) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_Either, gd), ge), gb, gc) -> new_esEs0(vyy6000, vyy500, gd, ge) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Left(vyy6000), Left(vyy500), app(app(ty_@2, dc), dd), cc) -> new_esEs3(vyy6000, vyy500, dc, dd) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Right(vyy6000), Right(vyy500), de, app(app(ty_@2, ee), ef)) -> new_esEs3(vyy6000, vyy500, ee, ef) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Left(vyy6000), Left(vyy500), app(ty_Maybe, cf), cc) -> new_esEs1(vyy6000, vyy500, cf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Right(vyy6000), Right(vyy500), de, app(ty_Maybe, ea)) -> new_esEs1(vyy6000, vyy500, ea) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, cg), da), db), cc) -> new_esEs2(vyy6000, vyy500, cg, da, db) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Right(vyy6000), Right(vyy500), de, app(app(app(ty_@3, eb), ec), ed)) -> new_esEs2(vyy6000, vyy500, eb, ec, ed) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Right(vyy6000), Right(vyy500), de, app(ty_[], df)) -> new_esEs(vyy6000, vyy500, df) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs0(Left(vyy6000), Left(vyy500), app(ty_[], cb), cc) -> new_esEs(vyy6000, vyy500, cb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(app(ty_@2, bea), beb)) -> new_esEs3(vyy6001, vyy501, bea, beb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(ty_@2, bcg), bch), bbh) -> new_esEs3(vyy6000, vyy500, bcg, bch) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(app(ty_@2, bbe), bbf)) -> new_esEs3(vyy6002, vyy502, bbe, bbf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(ty_@2, hb), hc), gb, gc) -> new_esEs3(vyy6000, vyy500, hb, hc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(app(ty_@2, bad), bae), gc) -> new_esEs3(vyy6001, vyy501, bad, bae) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_Maybe, bcc), bbh) -> new_esEs1(vyy6000, vyy500, bcc) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(ty_Maybe, bde)) -> new_esEs1(vyy6001, vyy501, bde) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_Maybe, gf), gb, gc) -> new_esEs1(vyy6000, vyy500, gf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(ty_Maybe, hh), gc) -> new_esEs1(vyy6001, vyy501, hh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(ty_Maybe, bba)) -> new_esEs1(vyy6002, vyy502, bba) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(app(app(ty_@3, bcd), bce), bcf), bbh) -> new_esEs2(vyy6000, vyy500, bcd, bce, bcf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs2(vyy6001, vyy501, bdf, bdg, bdh) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bda, app(ty_[], bdb)) -> new_esEs(vyy6001, vyy501, bdb) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs3(@2(vyy6000, vyy6001), @2(vyy500, vyy501), app(ty_[], bbg), bbh) -> new_esEs(vyy6000, vyy500, bbg) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(app(app(ty_@3, baa), bab), bac), gc) -> new_esEs2(vyy6001, vyy501, baa, bab, bac) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(app(app(ty_@3, gg), gh), ha), gb, gc) -> new_esEs2(vyy6000, vyy500, gg, gh, ha) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs2(vyy6002, vyy502, bbb, bbc, bbd) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), ca) -> new_esEs(vyy6001, vyy501, ca) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs(:(vyy6000, vyy6001), :(vyy500, vyy501), app(ty_[], h)) -> new_esEs(vyy6000, vyy500, h) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, gb, app(ty_[], baf)) -> new_esEs(vyy6002, vyy502, baf) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), hd, app(ty_[], he), gc) -> new_esEs(vyy6001, vyy501, he) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.21/10.60 26.21/10.60 26.21/10.60 *new_esEs2(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), app(ty_[], ga), gb, gc) -> new_esEs(vyy6000, vyy500, ga) 26.21/10.60 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.21/10.60 26.21/10.60 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (25) 26.21/10.60 YES 26.21/10.60 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (26) 26.21/10.60 Obligation: 26.21/10.60 Q DP problem: 26.21/10.60 The TRS P consists of the following rules: 26.21/10.60 26.21/10.60 new_primMulNat(Succ(vyy600000), Succ(vyy50100)) -> new_primMulNat(vyy600000, Succ(vyy50100)) 26.21/10.60 26.21/10.60 R is empty. 26.21/10.60 Q is empty. 26.21/10.60 We have to consider all minimal (P,Q,R)-chains. 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (27) QDPSizeChangeProof (EQUIVALENT) 26.21/10.60 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.21/10.60 26.21/10.60 From the DPs we obtained the following set of size-change graphs: 26.21/10.60 *new_primMulNat(Succ(vyy600000), Succ(vyy50100)) -> new_primMulNat(vyy600000, Succ(vyy50100)) 26.21/10.60 The graph contains the following edges 1 > 1, 2 >= 2 26.21/10.60 26.21/10.60 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (28) 26.21/10.60 YES 26.21/10.60 26.21/10.60 ---------------------------------------- 26.21/10.60 26.21/10.60 (29) 26.21/10.60 Obligation: 26.21/10.60 Q DP problem: 26.21/10.60 The TRS P consists of the following rules: 26.21/10.60 26.21/10.60 new_foldFM_GE1(vyy19, vyy21, vyy22, vyy23, vyy24, vyy25, vyy26, vyy27, vyy28, False, h, ba, bb, bc) -> new_foldFM_GE(vyy19, @2(vyy21, vyy22), vyy28, h, ba, bb, bc) 26.21/10.60 new_foldFM_GE1(vyy19, vyy21, vyy22, vyy23, vyy24, vyy25, vyy26, vyy27, vyy28, False, h, ba, bb, bc) -> new_foldFM_GE(vyy19, @2(vyy21, vyy22), vyy27, h, ba, bb, bc) 26.21/10.60 new_foldFM_GE(vyy3, @2(vyy50, vyy51), Branch(@2(vyy600, vyy601), vyy61, vyy62, vyy63, vyy64), bd, be, bf, bg) -> new_foldFM_GE1(vyy3, vyy50, vyy51, vyy600, vyy601, vyy61, vyy62, vyy63, vyy64, new_esEs30(vyy600, vyy601, vyy50, vyy51, new_esEs31(vyy600, vyy50, be), be, bf), bd, be, bf, bg) 26.21/10.60 new_foldFM_GE1(vyy19, vyy21, vyy22, vyy23, vyy24, vyy25, vyy26, vyy27, vyy28, True, h, ba, bb, bc) -> new_foldFM_GE(vyy19, @2(vyy21, vyy22), vyy28, h, ba, bb, bc) 26.21/10.60 26.21/10.60 The TRS R consists of the following rules: 26.21/10.60 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, app(ty_[], cca)) -> new_ltEs4(vyy4810, vyy5010, cca) 26.21/10.60 new_primCmpInt(Neg(Succ(vyy48000)), Pos(vyy5000)) -> LT 26.21/10.60 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.21/10.60 new_esEs23(vyy6000, vyy500, app(ty_Maybe, bbg)) -> new_esEs6(vyy6000, vyy500, bbg) 26.21/10.60 new_pePe(True, vyy111) -> True 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Ordering, bed) -> new_esEs8(vyy6000, vyy500) 26.21/10.60 new_lt20(vyy4810, vyy5010, app(ty_Ratio, ddb)) -> new_lt10(vyy4810, vyy5010, ddb) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Int) -> new_esEs12(vyy4811, vyy5011) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), app(app(app(ty_@3, chd), che), chf), bed) -> new_esEs4(vyy6000, vyy500, chd, che, chf) 26.21/10.60 new_lt5(vyy480, vyy500, ty_Int) -> new_lt17(vyy480, vyy500) 26.21/10.60 new_ltEs12(LT, LT) -> True 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Double, bed) -> new_esEs20(vyy6000, vyy500) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Char) -> new_ltEs11(vyy481, vyy501) 26.21/10.60 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.21/10.60 new_esEs27(vyy6000, vyy500, app(app(ty_Either, dbe), dbf)) -> new_esEs5(vyy6000, vyy500, dbe, dbf) 26.21/10.60 new_primCmpInt(Pos(Zero), Neg(Succ(vyy50000))) -> GT 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Float) -> new_lt16(vyy4810, vyy5010) 26.21/10.60 new_compare17(vyy480, vyy500, hb, hc, hd) -> new_compare27(vyy480, vyy500, new_esEs4(vyy480, vyy500, hb, hc, hd), hb, hc, hd) 26.21/10.60 new_esEs17(vyy6002, vyy502, app(ty_Maybe, ga)) -> new_esEs6(vyy6002, vyy502, ga) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Ordering) -> new_esEs8(vyy6001, vyy501) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_Int) -> new_ltEs17(vyy4810, vyy5010) 26.21/10.60 new_primCmpInt(Neg(Succ(vyy48000)), Neg(vyy5000)) -> new_primCmpNat0(vyy5000, Succ(vyy48000)) 26.21/10.60 new_compare0(:(vyy4800, vyy4801), :(vyy5000, vyy5001), he) -> new_primCompAux1(vyy4800, vyy5000, new_compare0(vyy4801, vyy5001, he), he) 26.21/10.60 new_compare7(:%(vyy4800, vyy4801), :%(vyy5000, vyy5001), ty_Integer) -> new_compare6(new_sr0(vyy4800, vyy5001), new_sr0(vyy5000, vyy4801)) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_@0) -> new_esEs21(vyy4811, vyy5011) 26.21/10.60 new_esEs26(vyy4810, vyy5010, app(app(ty_@2, cfd), cfe)) -> new_esEs7(vyy4810, vyy5010, cfd, cfe) 26.21/10.60 new_compare12(vyy92, vyy93, vyy94, vyy95, True, bdh, bea) -> LT 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), app(app(ty_Either, beg), beh)) -> new_esEs5(vyy6000, vyy500, beg, beh) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_Double) -> new_ltEs15(vyy4810, vyy5010) 26.21/10.60 new_ltEs15(vyy481, vyy501) -> new_not(new_esEs8(new_compare16(vyy481, vyy501), GT)) 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs4(vyy4810, vyy5010, dcf, dcg, dch) 26.21/10.60 new_lt7(vyy480, vyy500, he) -> new_esEs8(new_compare0(vyy480, vyy500, he), LT) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), app(ty_[], bhe)) -> new_ltEs4(vyy4810, vyy5010, bhe) 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Char) -> new_esEs22(vyy480, vyy500) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Char) -> new_ltEs11(vyy4811, vyy5011) 26.21/10.60 new_esEs11(vyy6001, vyy501, ty_Integer) -> new_esEs13(vyy6001, vyy501) 26.21/10.60 new_primCompAux0(vyy117, GT) -> GT 26.21/10.60 new_esEs23(vyy6000, vyy500, app(app(ty_Either, bbe), bbf)) -> new_esEs5(vyy6000, vyy500, bbe, bbf) 26.21/10.60 new_esEs31(vyy600, vyy50, ty_Integer) -> new_esEs13(vyy600, vyy50) 26.21/10.60 new_ltEs14(Nothing, Just(vyy5010), bag) -> True 26.21/10.60 new_esEs17(vyy6002, vyy502, app(app(ty_Either, fg), fh)) -> new_esEs5(vyy6002, vyy502, fg, fh) 26.21/10.60 new_ltEs7(vyy481, vyy501, app(ty_[], bh)) -> new_ltEs4(vyy481, vyy501, bh) 26.21/10.60 new_esEs8(GT, GT) -> True 26.21/10.60 new_primEqInt(Pos(Succ(vyy60000)), Pos(Zero)) -> False 26.21/10.60 new_primEqInt(Pos(Zero), Pos(Succ(vyy5000))) -> False 26.21/10.60 new_ltEs18(@2(vyy4810, vyy4811), @2(vyy5010, vyy5011), bah, bba) -> new_pePe(new_lt19(vyy4810, vyy5010, bah), new_asAs(new_esEs26(vyy4810, vyy5010, bah), new_ltEs19(vyy4811, vyy5011, bba))) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_@0) -> new_ltEs10(vyy4810, vyy5010) 26.21/10.60 new_lt17(vyy480, vyy500) -> new_esEs8(new_compare14(vyy480, vyy500), LT) 26.21/10.60 new_compare26(Float(vyy4800, Neg(vyy48010)), Float(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.60 new_compare210(vyy480, vyy500, True, hg, hh) -> EQ 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_@0) -> new_compare11(vyy4800, vyy5000) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_Ordering) -> new_lt11(vyy4811, vyy5011) 26.21/10.60 new_esEs8(EQ, EQ) -> True 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Char) -> new_ltEs11(vyy4812, vyy5012) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_@0) -> new_ltEs10(vyy481, vyy501) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), app(ty_Maybe, chc), bed) -> new_esEs6(vyy6000, vyy500, chc) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_Integer) -> new_lt4(vyy4811, vyy5011) 26.21/10.60 new_primEqNat0(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat0(vyy60000, vyy5000) 26.21/10.60 new_esEs29(vyy4811, vyy5011, app(ty_Ratio, ded)) -> new_esEs9(vyy4811, vyy5011, ded) 26.21/10.60 new_ltEs17(vyy481, vyy501) -> new_not(new_esEs8(new_compare14(vyy481, vyy501), GT)) 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Float) -> new_esEs19(vyy6002, vyy502) 26.21/10.60 new_primCompAux0(vyy117, LT) -> LT 26.21/10.60 new_esEs31(vyy600, vyy50, ty_Bool) -> new_esEs14(vyy600, vyy50) 26.21/10.60 new_esEs18([], [], beb) -> True 26.21/10.60 new_esEs31(vyy600, vyy50, ty_Char) -> new_esEs22(vyy600, vyy50) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.60 new_ltEs10(vyy481, vyy501) -> new_not(new_esEs8(new_compare11(vyy481, vyy501), GT)) 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(ty_[], dda)) -> new_esEs18(vyy4810, vyy5010, dda) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, app(app(ty_@2, dgb), dgc)) -> new_ltEs18(vyy4812, vyy5012, dgb, dgc) 26.21/10.60 new_compare29(vyy4800, vyy5000, app(ty_Ratio, bgd)) -> new_compare7(vyy4800, vyy5000, bgd) 26.21/10.60 new_not(True) -> False 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Bool) -> new_esEs14(vyy480, vyy500) 26.21/10.60 new_lt5(vyy480, vyy500, app(ty_Maybe, baa)) -> new_lt14(vyy480, vyy500, baa) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Float) -> new_lt16(vyy4810, vyy5010) 26.21/10.60 new_ltEs12(LT, GT) -> True 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_primCmpNat0(Zero, Zero) -> EQ 26.21/10.60 new_ltEs16(vyy481, vyy501) -> new_not(new_esEs8(new_compare26(vyy481, vyy501), GT)) 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Integer) -> new_esEs13(vyy480, vyy500) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Bool, bed) -> new_esEs14(vyy6000, vyy500) 26.21/10.60 new_ltEs7(vyy481, vyy501, app(ty_Maybe, bag)) -> new_ltEs14(vyy481, vyy501, bag) 26.21/10.60 new_esEs31(vyy600, vyy50, ty_Int) -> new_esEs12(vyy600, vyy50) 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Int) -> new_esEs12(vyy480, vyy500) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Float) -> new_esEs19(vyy4810, vyy5010) 26.21/10.60 new_lt10(vyy480, vyy500, hf) -> new_esEs8(new_compare7(vyy480, vyy500, hf), LT) 26.21/10.60 new_lt6(vyy480, vyy500, hb, hc, hd) -> new_esEs8(new_compare17(vyy480, vyy500, hb, hc, hd), LT) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), app(app(ty_@2, chg), chh), bed) -> new_esEs7(vyy6000, vyy500, chg, chh) 26.21/10.60 new_primEqNat0(Succ(vyy60000), Zero) -> False 26.21/10.60 new_primEqNat0(Zero, Succ(vyy5000)) -> False 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Bool) -> new_ltEs5(vyy4810, vyy5010) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_@0) -> new_ltEs10(vyy4810, vyy5010) 26.21/10.60 new_ltEs11(vyy481, vyy501) -> new_not(new_esEs8(new_compare15(vyy481, vyy501), GT)) 26.21/10.60 new_esEs16(vyy6001, vyy501, app(app(ty_@2, fb), fc)) -> new_esEs7(vyy6001, vyy501, fb, fc) 26.21/10.60 new_compare26(Float(vyy4800, Pos(vyy48010)), Float(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_Float) -> new_lt16(vyy4811, vyy5011) 26.21/10.60 new_esEs14(False, True) -> False 26.21/10.60 new_esEs14(True, False) -> False 26.21/10.60 new_compare28(vyy480, vyy500, True, baa) -> EQ 26.21/10.60 new_compare110(vyy480, vyy500, True) -> LT 26.21/10.60 new_compare29(vyy4800, vyy5000, app(app(ty_@2, bgh), bha)) -> new_compare9(vyy4800, vyy5000, bgh, bha) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs4(vyy6001, vyy501, bdb, bdc, bdd) 26.21/10.60 new_compare6(Integer(vyy4800), Integer(vyy5000)) -> new_primCmpInt(vyy4800, vyy5000) 26.21/10.60 new_esEs23(vyy6000, vyy500, app(app(app(ty_@3, bbh), bca), bcb)) -> new_esEs4(vyy6000, vyy500, bbh, bca, bcb) 26.21/10.60 new_primCmpInt(Pos(Succ(vyy48000)), Neg(vyy5000)) -> GT 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Char) -> new_lt9(vyy4810, vyy5010) 26.21/10.60 new_esEs17(vyy6002, vyy502, app(app(app(ty_@3, gb), gc), gd)) -> new_esEs4(vyy6002, vyy502, gb, gc, gd) 26.21/10.60 new_compare9(vyy480, vyy500, cc, cd) -> new_compare24(vyy480, vyy500, new_esEs7(vyy480, vyy500, cc, cd), cc, cd) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_@0) -> new_ltEs10(vyy4812, vyy5012) 26.21/10.60 new_lt5(vyy480, vyy500, app(app(ty_Either, hg), hh)) -> new_lt13(vyy480, vyy500, hg, hh) 26.21/10.60 new_ltEs5(False, True) -> True 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Bool) -> new_esEs14(vyy6001, vyy501) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Char) -> new_ltEs11(vyy4810, vyy5010) 26.21/10.60 new_ltEs7(vyy481, vyy501, app(app(ty_@2, bah), bba)) -> new_ltEs18(vyy481, vyy501, bah, bba) 26.21/10.60 new_primPlusNat1(Succ(vyy8300), Succ(vyy501000)) -> Succ(Succ(new_primPlusNat1(vyy8300, vyy501000))) 26.21/10.60 new_lt5(vyy480, vyy500, app(app(ty_@2, cc), cd)) -> new_lt18(vyy480, vyy500, cc, cd) 26.21/10.60 new_primCmpNat0(Zero, Succ(vyy50000)) -> LT 26.21/10.60 new_compare18(vyy480, vyy500) -> new_compare25(vyy480, vyy500, new_esEs8(vyy480, vyy500)) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_@0) -> new_ltEs10(vyy4811, vyy5011) 26.21/10.60 new_ltEs7(vyy481, vyy501, app(app(ty_Either, bae), baf)) -> new_ltEs13(vyy481, vyy501, bae, baf) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Int, bed) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_esEs29(vyy4811, vyy5011, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs4(vyy4811, vyy5011, ddh, dea, deb) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Bool) -> new_esEs14(vyy4811, vyy5011) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Int) -> new_esEs12(vyy6001, vyy501) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_Int) -> new_lt17(vyy4811, vyy5011) 26.21/10.60 new_primCmpNat0(Succ(vyy48000), Zero) -> GT 26.21/10.60 new_esEs27(vyy6000, vyy500, app(app(ty_@2, dcc), dcd)) -> new_esEs7(vyy6000, vyy500, dcc, dcd) 26.21/10.60 new_pePe(False, vyy111) -> vyy111 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.60 new_compare7(:%(vyy4800, vyy4801), :%(vyy5000, vyy5001), ty_Int) -> new_compare14(new_sr(vyy4800, vyy5001), new_sr(vyy5000, vyy4801)) 26.21/10.60 new_lt5(vyy480, vyy500, ty_Ordering) -> new_lt11(vyy480, vyy500) 26.21/10.60 new_ltEs12(GT, GT) -> True 26.21/10.60 new_ltEs13(Left(vyy4810), Right(vyy5010), bae, baf) -> True 26.21/10.60 new_esEs27(vyy6000, vyy500, app(ty_[], dbd)) -> new_esEs18(vyy6000, vyy500, dbd) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, app(app(app(ty_@3, cff), cfg), cfh)) -> new_ltEs8(vyy4811, vyy5011, cff, cfg, cfh) 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_@0) -> new_lt8(vyy4810, vyy5010) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), app(ty_[], cgh), bed) -> new_esEs18(vyy6000, vyy500, cgh) 26.21/10.60 new_compare112(vyy480, vyy500, True, hg, hh) -> LT 26.21/10.60 new_ltEs12(GT, EQ) -> False 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Bool) -> new_esEs14(vyy4810, vyy5010) 26.21/10.60 new_lt13(vyy480, vyy500, hg, hh) -> new_esEs8(new_compare19(vyy480, vyy500, hg, hh), LT) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Float, bed) -> new_esEs19(vyy6000, vyy500) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Integer) -> new_esEs13(vyy4811, vyy5011) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, app(ty_Maybe, cge)) -> new_ltEs14(vyy4811, vyy5011, cge) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Char) -> new_esEs22(vyy4810, vyy5010) 26.21/10.60 new_esEs29(vyy4811, vyy5011, app(ty_[], dec)) -> new_esEs18(vyy4811, vyy5011, dec) 26.21/10.60 new_lt5(vyy480, vyy500, ty_@0) -> new_lt8(vyy480, vyy500) 26.21/10.60 new_esEs8(LT, EQ) -> False 26.21/10.60 new_esEs8(EQ, LT) -> False 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(app(ty_Either, cba), cbb), baf) -> new_ltEs13(vyy4810, vyy5010, cba, cbb) 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(ty_Ratio, ddb)) -> new_esEs9(vyy4810, vyy5010, ddb) 26.21/10.60 new_esEs32(vyy38, vyy40, app(ty_Maybe, cde)) -> new_esEs6(vyy38, vyy40, cde) 26.21/10.60 new_primEqInt(Pos(Zero), Neg(Succ(vyy5000))) -> False 26.21/10.60 new_primEqInt(Neg(Zero), Pos(Succ(vyy5000))) -> False 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Char) -> new_lt9(vyy4810, vyy5010) 26.21/10.60 new_ltEs13(Right(vyy4810), Left(vyy5010), bae, baf) -> False 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), app(app(app(ty_@3, bfb), bfc), bfd)) -> new_esEs4(vyy6000, vyy500, bfb, bfc, bfd) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Integer) -> new_esEs13(vyy6001, vyy501) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, app(app(ty_@2, dba), dbb)) -> new_esEs7(vyy6000, vyy500, dba, dbb) 26.21/10.60 new_esEs11(vyy6001, vyy501, ty_Int) -> new_esEs12(vyy6001, vyy501) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(app(ty_Either, bcg), bch)) -> new_esEs5(vyy6001, vyy501, bcg, bch) 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Ordering) -> new_esEs8(vyy480, vyy500) 26.21/10.60 new_primEqInt(Neg(Succ(vyy60000)), Neg(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_primCmpInt(Neg(Zero), Pos(Succ(vyy50000))) -> LT 26.21/10.60 new_compare16(Double(vyy4800, Neg(vyy48010)), Double(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, app(app(ty_Either, dfg), dfh)) -> new_ltEs13(vyy4812, vyy5012, dfg, dfh) 26.21/10.60 new_primMulInt(Pos(vyy60000), Pos(vyy5010)) -> Pos(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Double) -> new_ltEs15(vyy4812, vyy5012) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_@0) -> new_esEs21(vyy4810, vyy5010) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Double) -> new_esEs20(vyy4810, vyy5010) 26.21/10.60 new_lt21(vyy4811, vyy5011, app(app(ty_Either, dee), def)) -> new_lt13(vyy4811, vyy5011, dee, def) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Bool) -> new_esEs14(vyy4810, vyy5010) 26.21/10.60 new_esEs32(vyy38, vyy40, app(app(ty_Either, cdc), cdd)) -> new_esEs5(vyy38, vyy40, cdc, cdd) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Char) -> new_esEs22(vyy6001, vyy501) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_Char) -> new_ltEs11(vyy4810, vyy5010) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(ty_Maybe, bda)) -> new_esEs6(vyy6001, vyy501, bda) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(vyy6000, vyy500, daf, dag, dah) 26.21/10.60 new_ltEs9(vyy481, vyy501) -> new_not(new_esEs8(new_compare6(vyy481, vyy501), GT)) 26.21/10.60 new_compare11(@0, @0) -> EQ 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Int) -> new_ltEs17(vyy4810, vyy5010) 26.21/10.60 new_primMulNat0(Succ(vyy600000), Zero) -> Zero 26.21/10.60 new_primMulNat0(Zero, Succ(vyy50100)) -> Zero 26.21/10.60 new_primPlusNat0(Zero, vyy50100) -> Succ(vyy50100) 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_@0) -> new_lt8(vyy4810, vyy5010) 26.21/10.60 new_esEs31(vyy600, vyy50, app(app(app(ty_@3, ce), cf), cg)) -> new_esEs4(vyy600, vyy50, ce, cf, cg) 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_@0) -> new_esEs21(vyy6002, vyy502) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, app(app(ty_Either, cgc), cgd)) -> new_ltEs13(vyy4811, vyy5011, cgc, cgd) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_Float) -> new_ltEs16(vyy4810, vyy5010) 26.21/10.60 new_ltEs5(True, False) -> False 26.21/10.60 new_esEs31(vyy600, vyy50, ty_Double) -> new_esEs20(vyy600, vyy50) 26.21/10.60 new_esEs32(vyy38, vyy40, app(ty_Ratio, cec)) -> new_esEs9(vyy38, vyy40, cec) 26.21/10.60 new_esEs15(vyy6000, vyy500, app(app(ty_@2, dh), ea)) -> new_esEs7(vyy6000, vyy500, dh, ea) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), app(app(ty_Either, cha), chb), bed) -> new_esEs5(vyy6000, vyy500, cha, chb) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, app(ty_Maybe, dga)) -> new_ltEs14(vyy4812, vyy5012, dga) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_Int) -> new_esEs12(vyy38, vyy40) 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Bool) -> new_lt12(vyy4810, vyy5010) 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.60 new_compare27(vyy480, vyy500, True, hb, hc, hd) -> EQ 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, app(ty_Maybe, dae)) -> new_esEs6(vyy6000, vyy500, dae) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), app(app(app(ty_@3, bhb), bhc), bhd)) -> new_ltEs8(vyy4810, vyy5010, bhb, bhc, bhd) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_Ordering) -> new_ltEs12(vyy4810, vyy5010) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), app(ty_Maybe, caa)) -> new_ltEs14(vyy4810, vyy5010, caa) 26.21/10.60 new_lt18(vyy480, vyy500, cc, cd) -> new_esEs8(new_compare9(vyy480, vyy500, cc, cd), LT) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Integer, baf) -> new_ltEs9(vyy4810, vyy5010) 26.21/10.60 new_esEs8(LT, LT) -> True 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Bool) -> new_esEs14(vyy6001, vyy501) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, app(app(app(ty_@3, cbf), cbg), cbh)) -> new_ltEs8(vyy4810, vyy5010, cbf, cbg, cbh) 26.21/10.60 new_esEs31(vyy600, vyy50, app(ty_[], beb)) -> new_esEs18(vyy600, vyy50, beb) 26.21/10.60 new_compare27(vyy480, vyy500, False, hb, hc, hd) -> new_compare113(vyy480, vyy500, new_ltEs8(vyy480, vyy500, hb, hc, hd), hb, hc, hd) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_Bool) -> new_lt12(vyy4811, vyy5011) 26.21/10.60 new_esEs17(vyy6002, vyy502, app(ty_[], ff)) -> new_esEs18(vyy6002, vyy502, ff) 26.21/10.60 new_primPlusNat1(Succ(vyy8300), Zero) -> Succ(vyy8300) 26.21/10.60 new_primPlusNat1(Zero, Succ(vyy501000)) -> Succ(vyy501000) 26.21/10.60 new_ltEs7(vyy481, vyy501, app(ty_Ratio, ca)) -> new_ltEs6(vyy481, vyy501, ca) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Integer) -> new_ltEs9(vyy4810, vyy5010) 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Float) -> new_esEs19(vyy480, vyy500) 26.21/10.60 new_esEs31(vyy600, vyy50, ty_@0) -> new_esEs21(vyy600, vyy50) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Integer) -> new_ltEs9(vyy4812, vyy5012) 26.21/10.60 new_primCompAux1(vyy4800, vyy5000, vyy112, he) -> new_primCompAux0(vyy112, new_compare29(vyy4800, vyy5000, he)) 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Integer) -> new_esEs13(vyy4810, vyy5010) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Double) -> new_esEs20(vyy4811, vyy5011) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Integer) -> new_ltEs9(vyy4811, vyy5011) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), app(app(ty_Either, bhg), bhh)) -> new_ltEs13(vyy4810, vyy5010, bhg, bhh) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Char) -> new_esEs22(vyy4811, vyy5011) 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Double) -> new_esEs20(vyy6002, vyy502) 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Ordering) -> new_lt11(vyy4810, vyy5010) 26.21/10.60 new_primMulInt(Neg(vyy60000), Neg(vyy5010)) -> Pos(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.60 new_primCmpInt(Pos(Zero), Pos(Succ(vyy50000))) -> new_primCmpNat0(Zero, Succ(vyy50000)) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, app(ty_Maybe, cce)) -> new_ltEs14(vyy4810, vyy5010, cce) 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Char) -> new_esEs22(vyy6002, vyy502) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Float) -> new_esEs19(vyy6001, vyy501) 26.21/10.60 new_esEs14(True, True) -> True 26.21/10.60 new_esEs25(vyy480, vyy500, app(app(ty_@2, cc), cd)) -> new_esEs7(vyy480, vyy500, cc, cd) 26.21/10.60 new_lt5(vyy480, vyy500, ty_Bool) -> new_lt12(vyy480, vyy500) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), app(ty_Maybe, bfa)) -> new_esEs6(vyy6000, vyy500, bfa) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_compare16(Double(vyy4800, Pos(vyy48010)), Double(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.60 new_esEs6(Nothing, Just(vyy500), bee) -> False 26.21/10.60 new_esEs6(Just(vyy6000), Nothing, bee) -> False 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_Bool) -> new_ltEs5(vyy4810, vyy5010) 26.21/10.60 new_esEs6(Nothing, Nothing, bee) -> True 26.21/10.60 new_esEs32(vyy38, vyy40, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs4(vyy38, vyy40, cdf, cdg, cdh) 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Ordering) -> new_lt11(vyy4810, vyy5010) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_esEs31(vyy600, vyy50, app(ty_Ratio, cb)) -> new_esEs9(vyy600, vyy50, cb) 26.21/10.60 new_esEs10(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(ty_[], cag), baf) -> new_ltEs4(vyy4810, vyy5010, cag) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Double) -> new_ltEs15(vyy481, vyy501) 26.21/10.60 new_lt16(vyy480, vyy500) -> new_esEs8(new_compare26(vyy480, vyy500), LT) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_esEs7(@2(vyy6000, vyy6001), @2(vyy500, vyy501), bbb, bbc) -> new_asAs(new_esEs23(vyy6000, vyy500, bbb), new_esEs24(vyy6001, vyy501, bbc)) 26.21/10.60 new_compare25(vyy480, vyy500, False) -> new_compare13(vyy480, vyy500, new_ltEs12(vyy480, vyy500)) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_@0) -> new_lt8(vyy4811, vyy5011) 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.60 new_lt19(vyy4810, vyy5010, app(ty_Maybe, cfc)) -> new_lt14(vyy4810, vyy5010, cfc) 26.21/10.60 new_esEs26(vyy4810, vyy5010, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs4(vyy4810, vyy5010, ced, cee, cef) 26.21/10.60 new_primMulInt(Pos(vyy60000), Neg(vyy5010)) -> Neg(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.60 new_primMulInt(Neg(vyy60000), Pos(vyy5010)) -> Neg(new_primMulNat0(vyy60000, vyy5010)) 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Integer) -> new_compare6(vyy4800, vyy5000) 26.21/10.60 new_lt20(vyy4810, vyy5010, app(app(ty_Either, ddc), ddd)) -> new_lt13(vyy4810, vyy5010, ddc, ddd) 26.21/10.60 new_compare26(Float(vyy4800, Pos(vyy48010)), Float(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.60 new_compare26(Float(vyy4800, Neg(vyy48010)), Float(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Ordering) -> new_esEs8(vyy6001, vyy501) 26.21/10.60 new_esEs31(vyy600, vyy50, app(ty_Maybe, bee)) -> new_esEs6(vyy600, vyy50, bee) 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Bool) -> new_compare8(vyy4800, vyy5000) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Ordering) -> new_ltEs12(vyy4811, vyy5011) 26.21/10.60 new_sr0(Integer(vyy50000), Integer(vyy48010)) -> Integer(new_primMulInt(vyy50000, vyy48010)) 26.21/10.60 new_lt5(vyy480, vyy500, app(ty_Ratio, hf)) -> new_lt10(vyy480, vyy500, hf) 26.21/10.60 new_ltEs5(False, False) -> True 26.21/10.60 new_compare29(vyy4800, vyy5000, app(ty_Maybe, bgg)) -> new_compare30(vyy4800, vyy5000, bgg) 26.21/10.60 new_lt19(vyy4810, vyy5010, app(app(ty_@2, cfd), cfe)) -> new_lt18(vyy4810, vyy5010, cfd, cfe) 26.21/10.60 new_esEs26(vyy4810, vyy5010, app(ty_[], ceg)) -> new_esEs18(vyy4810, vyy5010, ceg) 26.21/10.60 new_compare24(@2(vyy480, vyy481), @2(vyy500, vyy501), False, gh, ha) -> new_compare10(vyy480, vyy481, vyy500, vyy501, new_lt5(vyy480, vyy500, gh), new_asAs(new_esEs25(vyy480, vyy500, gh), new_ltEs7(vyy481, vyy501, ha)), gh, ha) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Bool, baf) -> new_ltEs5(vyy4810, vyy5010) 26.21/10.60 new_ltEs4(vyy481, vyy501, bh) -> new_not(new_esEs8(new_compare0(vyy481, vyy501, bh), GT)) 26.21/10.60 new_lt20(vyy4810, vyy5010, app(ty_[], dda)) -> new_lt7(vyy4810, vyy5010, dda) 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Float) -> new_compare26(vyy4800, vyy5000) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, app(ty_Ratio, cgb)) -> new_ltEs6(vyy4811, vyy5011, cgb) 26.21/10.60 new_esEs31(vyy600, vyy50, ty_Float) -> new_esEs19(vyy600, vyy50) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Integer) -> new_esEs13(vyy4810, vyy5010) 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Ordering) -> new_compare18(vyy4800, vyy5000) 26.21/10.60 new_esEs22(Char(vyy6000), Char(vyy500)) -> new_primEqNat0(vyy6000, vyy500) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, app(ty_Ratio, dbc)) -> new_esEs9(vyy6000, vyy500, dbc) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.60 new_compare0([], :(vyy5000, vyy5001), he) -> LT 26.21/10.60 new_asAs(True, vyy58) -> vyy58 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.60 new_compare113(vyy480, vyy500, True, hb, hc, hd) -> LT 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Integer) -> new_esEs13(vyy6002, vyy502) 26.21/10.60 new_esEs30(vyy37, vyy38, vyy39, vyy40, False, cch, cda) -> new_esEs8(new_compare24(@2(vyy37, vyy38), @2(vyy39, vyy40), False, cch, cda), LT) 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Bool) -> new_lt12(vyy4810, vyy5010) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), app(ty_Ratio, daa), bed) -> new_esEs9(vyy6000, vyy500, daa) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, app(app(ty_Either, ccc), ccd)) -> new_ltEs13(vyy4810, vyy5010, ccc, ccd) 26.21/10.60 new_lt19(vyy4810, vyy5010, app(ty_[], ceg)) -> new_lt7(vyy4810, vyy5010, ceg) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, app(app(ty_@2, ccf), ccg)) -> new_ltEs18(vyy4810, vyy5010, ccf, ccg) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Double) -> new_esEs20(vyy6001, vyy501) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_@0) -> new_esEs21(vyy38, vyy40) 26.21/10.60 new_esEs15(vyy6000, vyy500, app(ty_Maybe, dd)) -> new_esEs6(vyy6000, vyy500, dd) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Double) -> new_ltEs15(vyy4811, vyy5011) 26.21/10.60 new_esEs15(vyy6000, vyy500, app(app(ty_Either, db), dc)) -> new_esEs5(vyy6000, vyy500, db, dc) 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Int) -> new_lt17(vyy4810, vyy5010) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Float) -> new_ltEs16(vyy4812, vyy5012) 26.21/10.60 new_compare24(vyy48, vyy50, True, gh, ha) -> EQ 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Double, baf) -> new_ltEs15(vyy4810, vyy5010) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(app(ty_@2, bde), bdf)) -> new_esEs7(vyy6001, vyy501, bde, bdf) 26.21/10.60 new_primCmpInt(Pos(Succ(vyy48000)), Pos(vyy5000)) -> new_primCmpNat0(Succ(vyy48000), vyy5000) 26.21/10.60 new_esEs16(vyy6001, vyy501, app(app(app(ty_@3, eg), eh), fa)) -> new_esEs4(vyy6001, vyy501, eg, eh, fa) 26.21/10.60 new_compare12(vyy92, vyy93, vyy94, vyy95, False, bdh, bea) -> GT 26.21/10.60 new_lt15(vyy480, vyy500) -> new_esEs8(new_compare16(vyy480, vyy500), LT) 26.21/10.60 new_compare110(vyy480, vyy500, False) -> GT 26.21/10.60 new_esEs29(vyy4811, vyy5011, app(app(ty_Either, dee), def)) -> new_esEs5(vyy4811, vyy5011, dee, def) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.60 new_compare0([], [], he) -> EQ 26.21/10.60 new_sr(vyy6000, vyy501) -> new_primMulInt(vyy6000, vyy501) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), app(ty_Ratio, bfg)) -> new_esEs9(vyy6000, vyy500, bfg) 26.21/10.60 new_esEs16(vyy6001, vyy501, app(ty_[], ec)) -> new_esEs18(vyy6001, vyy501, ec) 26.21/10.60 new_compare29(vyy4800, vyy5000, app(app(ty_Either, bge), bgf)) -> new_compare19(vyy4800, vyy5000, bge, bgf) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_compare23(vyy480, vyy500, True) -> EQ 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_@0, baf) -> new_ltEs10(vyy4810, vyy5010) 26.21/10.60 new_primMulNat0(Zero, Zero) -> Zero 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Ordering) -> new_ltEs12(vyy4812, vyy5012) 26.21/10.60 new_compare15(Char(vyy4800), Char(vyy5000)) -> new_primCmpNat0(vyy4800, vyy5000) 26.21/10.60 new_lt20(vyy4810, vyy5010, app(app(ty_@2, ddf), ddg)) -> new_lt18(vyy4810, vyy5010, ddf, ddg) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Ordering) -> new_ltEs12(vyy4810, vyy5010) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Double) -> new_esEs20(vyy4810, vyy5010) 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Int) -> new_esEs12(vyy6002, vyy502) 26.21/10.60 new_lt12(vyy480, vyy500) -> new_esEs8(new_compare8(vyy480, vyy500), LT) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), app(ty_Ratio, bhf)) -> new_ltEs6(vyy4810, vyy5010, bhf) 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Int) -> new_lt17(vyy4810, vyy5010) 26.21/10.60 new_esEs17(vyy6002, vyy502, app(ty_Ratio, gg)) -> new_esEs9(vyy6002, vyy502, gg) 26.21/10.60 new_compare29(vyy4800, vyy5000, app(ty_[], bgc)) -> new_compare0(vyy4800, vyy5000, bgc) 26.21/10.60 new_ltEs7(vyy481, vyy501, app(app(app(ty_@3, bab), bac), bad)) -> new_ltEs8(vyy481, vyy501, bab, bac, bad) 26.21/10.60 new_esEs23(vyy6000, vyy500, app(app(ty_@2, bcc), bcd)) -> new_esEs7(vyy6000, vyy500, bcc, bcd) 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_@0) -> new_esEs21(vyy4810, vyy5010) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, app(ty_Ratio, dff)) -> new_ltEs6(vyy4812, vyy5012, dff) 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Float) -> new_esEs19(vyy4810, vyy5010) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(ty_Ratio, cah), baf) -> new_ltEs6(vyy4810, vyy5010, cah) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Float) -> new_ltEs16(vyy481, vyy501) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Integer) -> new_ltEs9(vyy481, vyy501) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, app(app(ty_Either, dac), dad)) -> new_esEs5(vyy6000, vyy500, dac, dad) 26.21/10.60 new_lt8(vyy480, vyy500) -> new_esEs8(new_compare11(vyy480, vyy500), LT) 26.21/10.60 new_lt21(vyy4811, vyy5011, app(app(ty_@2, deh), dfa)) -> new_lt18(vyy4811, vyy5011, deh, dfa) 26.21/10.60 new_esEs21(@0, @0) -> True 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Bool) -> new_esEs14(vyy6002, vyy502) 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Int) -> new_compare14(vyy4800, vyy5000) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_ltEs8(vyy4812, vyy5012, dfb, dfc, dfd) 26.21/10.60 new_esEs26(vyy4810, vyy5010, app(ty_Maybe, cfc)) -> new_esEs6(vyy4810, vyy5010, cfc) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_Char) -> new_lt9(vyy4811, vyy5011) 26.21/10.60 new_lt21(vyy4811, vyy5011, app(ty_Maybe, deg)) -> new_lt14(vyy4811, vyy5011, deg) 26.21/10.60 new_compare10(vyy92, vyy93, vyy94, vyy95, True, vyy97, bdh, bea) -> new_compare12(vyy92, vyy93, vyy94, vyy95, True, bdh, bea) 26.21/10.60 new_esEs32(vyy38, vyy40, app(ty_[], cdb)) -> new_esEs18(vyy38, vyy40, cdb) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.60 new_ltEs12(GT, LT) -> False 26.21/10.60 new_esEs4(@3(vyy6000, vyy6001, vyy6002), @3(vyy500, vyy501, vyy502), ce, cf, cg) -> new_asAs(new_esEs15(vyy6000, vyy500, ce), new_asAs(new_esEs16(vyy6001, vyy501, cf), new_esEs17(vyy6002, vyy502, cg))) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_Ordering) -> new_esEs8(vyy38, vyy40) 26.21/10.60 new_primCompAux0(vyy117, EQ) -> vyy117 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Int) -> new_ltEs17(vyy4811, vyy5011) 26.21/10.60 new_esEs27(vyy6000, vyy500, app(ty_Ratio, dce)) -> new_esEs9(vyy6000, vyy500, dce) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Double) -> new_ltEs15(vyy4810, vyy5010) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), app(app(ty_@2, bfe), bff)) -> new_esEs7(vyy6000, vyy500, bfe, bff) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_Double) -> new_esEs20(vyy38, vyy40) 26.21/10.60 new_lt20(vyy4810, vyy5010, app(ty_Maybe, dde)) -> new_lt14(vyy4810, vyy5010, dde) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_@0) -> new_esEs21(vyy6001, vyy501) 26.21/10.60 new_primEqInt(Neg(Succ(vyy60000)), Neg(Zero)) -> False 26.21/10.60 new_primEqInt(Neg(Zero), Neg(Succ(vyy5000))) -> False 26.21/10.60 new_esEs25(vyy480, vyy500, app(ty_Maybe, baa)) -> new_esEs6(vyy480, vyy500, baa) 26.21/10.60 new_lt11(vyy480, vyy500) -> new_esEs8(new_compare18(vyy480, vyy500), LT) 26.21/10.60 new_lt19(vyy4810, vyy5010, app(app(ty_Either, cfa), cfb)) -> new_lt13(vyy4810, vyy5010, cfa, cfb) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_Char) -> new_esEs22(vyy38, vyy40) 26.21/10.60 new_primEqInt(Pos(Succ(vyy60000)), Pos(Succ(vyy5000))) -> new_primEqNat0(vyy60000, vyy5000) 26.21/10.60 new_compare210(vyy480, vyy500, False, hg, hh) -> new_compare112(vyy480, vyy500, new_ltEs13(vyy480, vyy500, hg, hh), hg, hh) 26.21/10.60 new_esEs17(vyy6002, vyy502, app(app(ty_@2, ge), gf)) -> new_esEs7(vyy6002, vyy502, ge, gf) 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(app(ty_@2, ddf), ddg)) -> new_esEs7(vyy4810, vyy5010, ddf, ddg) 26.21/10.60 new_esEs15(vyy6000, vyy500, app(ty_[], da)) -> new_esEs18(vyy6000, vyy500, da) 26.21/10.60 new_esEs25(vyy480, vyy500, app(app(ty_Either, hg), hh)) -> new_esEs5(vyy480, vyy500, hg, hh) 26.21/10.60 new_ltEs14(Just(vyy4810), Nothing, bag) -> False 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Char) -> new_esEs22(vyy4810, vyy5010) 26.21/10.60 new_ltEs14(Nothing, Nothing, bag) -> True 26.21/10.60 new_primEqInt(Pos(Succ(vyy60000)), Neg(vyy500)) -> False 26.21/10.60 new_primEqInt(Neg(Succ(vyy60000)), Pos(vyy500)) -> False 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Ordering) -> new_esEs8(vyy4810, vyy5010) 26.21/10.60 new_esEs14(False, False) -> True 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Char) -> new_compare15(vyy4800, vyy5000) 26.21/10.60 new_esEs16(vyy6001, vyy501, app(ty_Ratio, fd)) -> new_esEs9(vyy6001, vyy501, fd) 26.21/10.60 new_primCmpInt(Neg(Zero), Neg(Succ(vyy50000))) -> new_primCmpNat0(Succ(vyy50000), Zero) 26.21/10.60 new_compare14(vyy480, vyy500) -> new_primCmpInt(vyy480, vyy500) 26.21/10.60 new_lt5(vyy480, vyy500, ty_Float) -> new_lt16(vyy480, vyy500) 26.21/10.60 new_esEs31(vyy600, vyy50, app(app(ty_Either, bec), bed)) -> new_esEs5(vyy600, vyy50, bec, bed) 26.21/10.60 new_lt4(vyy480, vyy500) -> new_esEs8(new_compare6(vyy480, vyy500), LT) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Integer, bed) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Int, baf) -> new_ltEs17(vyy4810, vyy5010) 26.21/10.60 new_esEs19(Float(vyy6000, vyy6001), Float(vyy500, vyy501)) -> new_esEs12(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Integer) -> new_esEs13(vyy6001, vyy501) 26.21/10.60 new_ltEs12(EQ, GT) -> True 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, app(ty_Ratio, ccb)) -> new_ltEs6(vyy4810, vyy5010, ccb) 26.21/10.60 new_lt5(vyy480, vyy500, ty_Char) -> new_lt9(vyy480, vyy500) 26.21/10.60 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_esEs16(vyy6001, vyy501, app(ty_Maybe, ef)) -> new_esEs6(vyy6001, vyy501, ef) 26.21/10.60 new_compare111(vyy480, vyy500, False, baa) -> GT 26.21/10.60 new_esEs26(vyy4810, vyy5010, app(app(ty_Either, cfa), cfb)) -> new_esEs5(vyy4810, vyy5010, cfa, cfb) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Bool) -> new_ltEs5(vyy4811, vyy5011) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, app(ty_[], dab)) -> new_esEs18(vyy6000, vyy500, dab) 26.21/10.60 new_ltEs12(EQ, EQ) -> True 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Integer) -> new_lt4(vyy4810, vyy5010) 26.21/10.60 new_compare29(vyy4800, vyy5000, app(app(app(ty_@3, bfh), bga), bgb)) -> new_compare17(vyy4800, vyy5000, bfh, bga, bgb) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Int) -> new_ltEs17(vyy4812, vyy5012) 26.21/10.60 new_esEs12(vyy600, vyy50) -> new_primEqInt(vyy600, vyy50) 26.21/10.60 new_esEs30(vyy37, vyy38, vyy39, vyy40, True, cch, cda) -> new_esEs8(new_compare24(@2(vyy37, vyy38), @2(vyy39, vyy40), new_esEs32(vyy38, vyy40, cda), cch, cda), LT) 26.21/10.60 new_compare112(vyy480, vyy500, False, hg, hh) -> GT 26.21/10.60 new_lt19(vyy4810, vyy5010, app(app(app(ty_@3, ced), cee), cef)) -> new_lt6(vyy4810, vyy5010, ced, cee, cef) 26.21/10.60 new_esEs27(vyy6000, vyy500, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(vyy6000, vyy500, dbh, dca, dcb) 26.21/10.60 new_lt14(vyy480, vyy500, baa) -> new_esEs8(new_compare30(vyy480, vyy500, baa), LT) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.60 new_not(False) -> True 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Char, baf) -> new_ltEs11(vyy4810, vyy5010) 26.21/10.60 new_ltEs6(vyy481, vyy501, ca) -> new_not(new_esEs8(new_compare7(vyy481, vyy501, ca), GT)) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Float) -> new_esEs19(vyy6001, vyy501) 26.21/10.60 new_esEs31(vyy600, vyy50, ty_Ordering) -> new_esEs8(vyy600, vyy50) 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Ordering) -> new_esEs8(vyy6000, vyy500) 26.21/10.60 new_compare28(vyy480, vyy500, False, baa) -> new_compare111(vyy480, vyy500, new_ltEs14(vyy480, vyy500, baa), baa) 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_compare0(:(vyy4800, vyy4801), [], he) -> GT 26.21/10.60 new_lt5(vyy480, vyy500, ty_Integer) -> new_lt4(vyy480, vyy500) 26.21/10.60 new_esEs8(LT, GT) -> False 26.21/10.60 new_esEs8(GT, LT) -> False 26.21/10.60 new_lt9(vyy480, vyy500) -> new_esEs8(new_compare15(vyy480, vyy500), LT) 26.21/10.60 new_esEs5(Left(vyy6000), Right(vyy500), bec, bed) -> False 26.21/10.60 new_esEs5(Right(vyy6000), Left(vyy500), bec, bed) -> False 26.21/10.60 new_compare25(vyy480, vyy500, True) -> EQ 26.21/10.60 new_esEs18(:(vyy6000, vyy6001), :(vyy500, vyy501), beb) -> new_asAs(new_esEs27(vyy6000, vyy500, beb), new_esEs18(vyy6001, vyy501, beb)) 26.21/10.60 new_compare13(vyy480, vyy500, True) -> LT 26.21/10.60 new_esEs29(vyy4811, vyy5011, app(app(ty_@2, deh), dfa)) -> new_esEs7(vyy4811, vyy5011, deh, dfa) 26.21/10.60 new_compare10(vyy92, vyy93, vyy94, vyy95, False, vyy97, bdh, bea) -> new_compare12(vyy92, vyy93, vyy94, vyy95, vyy97, bdh, bea) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), app(ty_[], bef)) -> new_esEs18(vyy6000, vyy500, bef) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_Bool) -> new_esEs14(vyy6000, vyy500) 26.21/10.60 new_esEs15(vyy6000, vyy500, app(ty_Ratio, eb)) -> new_esEs9(vyy6000, vyy500, eb) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Ordering, baf) -> new_ltEs12(vyy4810, vyy5010) 26.21/10.60 new_primPlusNat0(Succ(vyy830), vyy50100) -> Succ(Succ(new_primPlusNat1(vyy830, vyy50100))) 26.21/10.60 new_esEs23(vyy6000, vyy500, app(ty_Ratio, bce)) -> new_esEs9(vyy6000, vyy500, bce) 26.21/10.60 new_esEs25(vyy480, vyy500, app(ty_[], he)) -> new_esEs18(vyy480, vyy500, he) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, app(app(ty_@2, cgf), cgg)) -> new_ltEs18(vyy4811, vyy5011, cgf, cgg) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_Float) -> new_esEs19(vyy38, vyy40) 26.21/10.60 new_esEs29(vyy4811, vyy5011, app(ty_Maybe, deg)) -> new_esEs6(vyy4811, vyy5011, deg) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.21/10.60 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.21/10.60 new_esEs25(vyy480, vyy500, app(app(app(ty_@3, hb), hc), hd)) -> new_esEs4(vyy480, vyy500, hb, hc, hd) 26.21/10.60 new_lt21(vyy4811, vyy5011, ty_Double) -> new_lt15(vyy4811, vyy5011) 26.21/10.60 new_primPlusNat1(Zero, Zero) -> Zero 26.21/10.60 new_esEs26(vyy4810, vyy5010, app(ty_Ratio, ceh)) -> new_esEs9(vyy4810, vyy5010, ceh) 26.21/10.60 new_ltEs5(True, True) -> True 26.21/10.60 new_lt21(vyy4811, vyy5011, app(ty_Ratio, ded)) -> new_lt10(vyy4811, vyy5011, ded) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Int) -> new_ltEs17(vyy481, vyy501) 26.21/10.60 new_esEs25(vyy480, vyy500, ty_Double) -> new_esEs20(vyy480, vyy500) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_@0) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_compare111(vyy480, vyy500, True, baa) -> LT 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Int) -> new_esEs12(vyy4810, vyy5010) 26.21/10.60 new_esEs18(:(vyy6000, vyy6001), [], beb) -> False 26.21/10.60 new_esEs18([], :(vyy500, vyy501), beb) -> False 26.21/10.60 new_compare8(vyy480, vyy500) -> new_compare23(vyy480, vyy500, new_esEs14(vyy480, vyy500)) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), ty_Float, baf) -> new_ltEs16(vyy4810, vyy5010) 26.21/10.60 new_esEs25(vyy480, vyy500, app(ty_Ratio, hf)) -> new_esEs9(vyy480, vyy500, hf) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(app(app(ty_@3, cad), cae), caf), baf) -> new_ltEs8(vyy4810, vyy5010, cad, cae, caf) 26.21/10.60 new_esEs13(Integer(vyy6000), Integer(vyy500)) -> new_primEqInt(vyy6000, vyy500) 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(ty_Maybe, dde)) -> new_esEs6(vyy4810, vyy5010, dde) 26.21/10.60 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.21/10.60 new_primMulNat0(Succ(vyy600000), Succ(vyy50100)) -> new_primPlusNat0(new_primMulNat0(vyy600000, Succ(vyy50100)), vyy50100) 26.21/10.60 new_ltEs12(EQ, LT) -> False 26.21/10.60 new_compare30(vyy480, vyy500, baa) -> new_compare28(vyy480, vyy500, new_esEs6(vyy480, vyy500, baa), baa) 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_Char, bed) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_esEs20(Double(vyy6000, vyy6001), Double(vyy500, vyy501)) -> new_esEs12(new_sr(vyy6000, vyy501), new_sr(vyy6001, vyy500)) 26.21/10.60 new_lt5(vyy480, vyy500, app(app(app(ty_@3, hb), hc), hd)) -> new_lt6(vyy480, vyy500, hb, hc, hd) 26.21/10.60 new_primCmpNat0(Succ(vyy48000), Succ(vyy50000)) -> new_primCmpNat0(vyy48000, vyy50000) 26.21/10.60 new_lt5(vyy480, vyy500, app(ty_[], he)) -> new_lt7(vyy480, vyy500, he) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Ordering) -> new_ltEs12(vyy481, vyy501) 26.21/10.60 new_esEs23(vyy6000, vyy500, app(ty_[], bbd)) -> new_esEs18(vyy6000, vyy500, bbd) 26.21/10.60 new_lt21(vyy4811, vyy5011, app(app(app(ty_@3, ddh), dea), deb)) -> new_lt6(vyy4811, vyy5011, ddh, dea, deb) 26.21/10.60 new_compare19(vyy480, vyy500, hg, hh) -> new_compare210(vyy480, vyy500, new_esEs5(vyy480, vyy500, hg, hh), hg, hh) 26.21/10.60 new_esEs26(vyy4810, vyy5010, ty_Int) -> new_esEs12(vyy4810, vyy5010) 26.21/10.60 new_ltEs13(Right(vyy4810), Right(vyy5010), bae, ty_Integer) -> new_ltEs9(vyy4810, vyy5010) 26.21/10.60 new_ltEs7(vyy481, vyy501, ty_Bool) -> new_ltEs5(vyy481, vyy501) 26.21/10.60 new_esEs27(vyy6000, vyy500, app(ty_Maybe, dbg)) -> new_esEs6(vyy6000, vyy500, dbg) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(ty_Ratio, bdg)) -> new_esEs9(vyy6001, vyy501, bdg) 26.21/10.60 new_esEs28(vyy4810, vyy5010, ty_Ordering) -> new_esEs8(vyy4810, vyy5010) 26.21/10.60 new_esEs23(vyy6000, vyy500, ty_Char) -> new_esEs22(vyy6000, vyy500) 26.21/10.60 new_ltEs19(vyy4811, vyy5011, ty_Float) -> new_ltEs16(vyy4811, vyy5011) 26.21/10.60 new_esEs16(vyy6001, vyy501, ty_Int) -> new_esEs12(vyy6001, vyy501) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_Integer) -> new_esEs13(vyy38, vyy40) 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(app(ty_@2, cbd), cbe), baf) -> new_ltEs18(vyy4810, vyy5010, cbd, cbe) 26.21/10.60 new_esEs6(Just(vyy6000), Just(vyy500), ty_Double) -> new_esEs20(vyy6000, vyy500) 26.21/10.60 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.21/10.60 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.21/10.60 new_ltEs13(Left(vyy4810), Left(vyy5010), app(ty_Maybe, cbc), baf) -> new_ltEs14(vyy4810, vyy5010, cbc) 26.21/10.60 new_ltEs12(LT, EQ) -> True 26.21/10.60 new_esEs25(vyy480, vyy500, ty_@0) -> new_esEs21(vyy480, vyy500) 26.21/10.60 new_lt20(vyy4810, vyy5010, app(app(app(ty_@3, dcf), dcg), dch)) -> new_lt6(vyy4810, vyy5010, dcf, dcg, dch) 26.21/10.60 new_esEs9(:%(vyy6000, vyy6001), :%(vyy500, vyy501), cb) -> new_asAs(new_esEs10(vyy6000, vyy500, cb), new_esEs11(vyy6001, vyy501, cb)) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, app(ty_[], dfe)) -> new_ltEs4(vyy4812, vyy5012, dfe) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Float) -> new_esEs19(vyy4811, vyy5011) 26.21/10.60 new_lt5(vyy480, vyy500, ty_Double) -> new_lt15(vyy480, vyy500) 26.21/10.60 new_esEs5(Right(vyy6000), Right(vyy500), bec, ty_Float) -> new_esEs19(vyy6000, vyy500) 26.21/10.60 new_esEs27(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_primEqNat0(Zero, Zero) -> True 26.21/10.60 new_esEs28(vyy4810, vyy5010, app(app(ty_Either, ddc), ddd)) -> new_esEs5(vyy4810, vyy5010, ddc, ddd) 26.21/10.60 new_compare13(vyy480, vyy500, False) -> GT 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Double) -> new_lt15(vyy4810, vyy5010) 26.21/10.60 new_esEs32(vyy38, vyy40, app(app(ty_@2, cea), ceb)) -> new_esEs7(vyy38, vyy40, cea, ceb) 26.21/10.60 new_ltEs8(@3(vyy4810, vyy4811, vyy4812), @3(vyy5010, vyy5011, vyy5012), bab, bac, bad) -> new_pePe(new_lt20(vyy4810, vyy5010, bab), new_asAs(new_esEs28(vyy4810, vyy5010, bab), new_pePe(new_lt21(vyy4811, vyy5011, bac), new_asAs(new_esEs29(vyy4811, vyy5011, bac), new_ltEs20(vyy4812, vyy5012, bad))))) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Char) -> new_esEs22(vyy6001, vyy501) 26.21/10.60 new_esEs29(vyy4811, vyy5011, ty_Ordering) -> new_esEs8(vyy4811, vyy5011) 26.21/10.60 new_esEs31(vyy600, vyy50, app(app(ty_@2, bbb), bbc)) -> new_esEs7(vyy600, vyy50, bbb, bbc) 26.21/10.60 new_lt21(vyy4811, vyy5011, app(ty_[], dec)) -> new_lt7(vyy4811, vyy5011, dec) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), ty_Float) -> new_ltEs16(vyy4810, vyy5010) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_@0) -> new_esEs21(vyy6001, vyy501) 26.21/10.60 new_esEs15(vyy6000, vyy500, ty_Int) -> new_esEs12(vyy6000, vyy500) 26.21/10.60 new_esEs24(vyy6001, vyy501, ty_Double) -> new_esEs20(vyy6001, vyy501) 26.21/10.60 new_esEs32(vyy38, vyy40, ty_Bool) -> new_esEs14(vyy38, vyy40) 26.21/10.60 new_compare16(Double(vyy4800, Pos(vyy48010)), Double(vyy5000, Neg(vyy50010))) -> new_compare14(new_sr(vyy4800, Pos(vyy50010)), new_sr(Neg(vyy48010), vyy5000)) 26.21/10.60 new_compare16(Double(vyy4800, Neg(vyy48010)), Double(vyy5000, Pos(vyy50010))) -> new_compare14(new_sr(vyy4800, Neg(vyy50010)), new_sr(Pos(vyy48010), vyy5000)) 26.21/10.60 new_compare113(vyy480, vyy500, False, hb, hc, hd) -> GT 26.21/10.60 new_ltEs19(vyy4811, vyy5011, app(ty_[], cga)) -> new_ltEs4(vyy4811, vyy5011, cga) 26.21/10.60 new_asAs(False, vyy58) -> False 26.21/10.60 new_esEs5(Left(vyy6000), Left(vyy500), ty_@0, bed) -> new_esEs21(vyy6000, vyy500) 26.21/10.60 new_ltEs20(vyy4812, vyy5012, ty_Bool) -> new_ltEs5(vyy4812, vyy5012) 26.21/10.60 new_lt19(vyy4810, vyy5010, app(ty_Ratio, ceh)) -> new_lt10(vyy4810, vyy5010, ceh) 26.21/10.60 new_lt19(vyy4810, vyy5010, ty_Integer) -> new_lt4(vyy4810, vyy5010) 26.21/10.60 new_esEs15(vyy6000, vyy500, app(app(app(ty_@3, de), df), dg)) -> new_esEs4(vyy6000, vyy500, de, df, dg) 26.21/10.60 new_esEs10(vyy6000, vyy500, ty_Integer) -> new_esEs13(vyy6000, vyy500) 26.21/10.60 new_esEs8(EQ, GT) -> False 26.21/10.60 new_esEs8(GT, EQ) -> False 26.21/10.60 new_lt20(vyy4810, vyy5010, ty_Double) -> new_lt15(vyy4810, vyy5010) 26.21/10.60 new_ltEs14(Just(vyy4810), Just(vyy5010), app(app(ty_@2, cab), cac)) -> new_ltEs18(vyy4810, vyy5010, cab, cac) 26.21/10.60 new_esEs16(vyy6001, vyy501, app(app(ty_Either, ed), ee)) -> new_esEs5(vyy6001, vyy501, ed, ee) 26.21/10.60 new_esEs17(vyy6002, vyy502, ty_Ordering) -> new_esEs8(vyy6002, vyy502) 26.21/10.60 new_esEs24(vyy6001, vyy501, app(ty_[], bcf)) -> new_esEs18(vyy6001, vyy501, bcf) 26.21/10.60 new_compare29(vyy4800, vyy5000, ty_Double) -> new_compare16(vyy4800, vyy5000) 26.21/10.60 new_compare23(vyy480, vyy500, False) -> new_compare110(vyy480, vyy500, new_ltEs5(vyy480, vyy500)) 26.21/10.60 26.21/10.60 The set Q consists of the following terms: 26.21/10.60 26.21/10.60 new_compare29(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs8(EQ, EQ) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Ordering, x2) 26.21/10.60 new_lt19(x0, x1, ty_Integer) 26.21/10.60 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs17(x0, x1, ty_Double) 26.21/10.60 new_lt20(x0, x1, ty_Int) 26.21/10.60 new_primCmpNat0(Succ(x0), Zero) 26.21/10.60 new_ltEs13(Right(x0), Right(x1), x2, ty_Integer) 26.21/10.60 new_esEs25(x0, x1, ty_Integer) 26.21/10.60 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.21/10.60 new_ltEs19(x0, x1, ty_Int) 26.21/10.60 new_ltEs14(Just(x0), Just(x1), ty_Char) 26.21/10.60 new_esEs24(x0, x1, ty_Int) 26.21/10.60 new_compare11(@0, @0) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.21/10.60 new_lt20(x0, x1, ty_Char) 26.21/10.60 new_primPlusNat1(Zero, Zero) 26.21/10.60 new_esEs23(x0, x1, ty_Double) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), ty_Int, x2) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 26.21/10.60 new_lt7(x0, x1, x2) 26.21/10.60 new_esEs17(x0, x1, ty_Ordering) 26.21/10.60 new_esEs27(x0, x1, ty_Ordering) 26.21/10.60 new_lt21(x0, x1, ty_Char) 26.21/10.60 new_esEs24(x0, x1, ty_Char) 26.21/10.60 new_ltEs19(x0, x1, ty_Char) 26.21/10.60 new_lt20(x0, x1, app(ty_[], x2)) 26.21/10.60 new_primEqInt(Pos(Zero), Pos(Zero)) 26.21/10.60 new_esEs31(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_ltEs20(x0, x1, ty_Integer) 26.21/10.60 new_esEs16(x0, x1, ty_Double) 26.21/10.60 new_esEs17(x0, x1, ty_Int) 26.21/10.60 new_esEs6(Just(x0), Just(x1), ty_@0) 26.21/10.60 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_compare27(x0, x1, False, x2, x3, x4) 26.21/10.60 new_primMulNat0(Succ(x0), Succ(x1)) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.21/10.60 new_compare29(x0, x1, app(ty_Maybe, x2)) 26.21/10.60 new_ltEs5(False, True) 26.21/10.60 new_lt21(x0, x1, ty_Int) 26.21/10.60 new_ltEs5(True, False) 26.21/10.60 new_esEs27(x0, x1, ty_Double) 26.21/10.60 new_esEs14(True, True) 26.21/10.60 new_ltEs7(x0, x1, ty_Bool) 26.21/10.60 new_esEs28(x0, x1, ty_Float) 26.21/10.60 new_esEs31(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_esEs9(:%(x0, x1), :%(x2, x3), x4) 26.21/10.60 new_primEqInt(Neg(Zero), Neg(Zero)) 26.21/10.60 new_lt21(x0, x1, ty_@0) 26.21/10.60 new_lt20(x0, x1, ty_Ordering) 26.21/10.60 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_esEs10(x0, x1, ty_Integer) 26.21/10.60 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.60 new_esEs17(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_lt21(x0, x1, ty_Ordering) 26.21/10.60 new_compare24(x0, x1, True, x2, x3) 26.21/10.60 new_compare26(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.21/10.60 new_compare26(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.21/10.60 new_esEs17(x0, x1, ty_Char) 26.21/10.60 new_ltEs7(x0, x1, ty_@0) 26.21/10.60 new_ltEs7(x0, x1, ty_Float) 26.21/10.60 new_esEs16(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.60 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.21/10.60 new_esEs18([], [], x0) 26.21/10.60 new_lt9(x0, x1) 26.21/10.60 new_esEs15(x0, x1, ty_Double) 26.21/10.60 new_ltEs13(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.21/10.60 new_esEs27(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs14(False, True) 26.21/10.60 new_esEs14(True, False) 26.21/10.60 new_esEs25(x0, x1, app(ty_[], x2)) 26.21/10.60 new_lt5(x0, x1, app(ty_Ratio, x2)) 26.21/10.60 new_ltEs20(x0, x1, ty_Bool) 26.21/10.60 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.21/10.60 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.21/10.60 new_esEs23(x0, x1, ty_Char) 26.21/10.60 new_compare16(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.21/10.60 new_compare16(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.21/10.60 new_ltEs12(GT, EQ) 26.21/10.60 new_ltEs12(EQ, GT) 26.21/10.60 new_esEs16(x0, x1, ty_Ordering) 26.21/10.60 new_lt15(x0, x1) 26.21/10.60 new_lt20(x0, x1, ty_Double) 26.21/10.60 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.60 new_compare26(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.21/10.60 new_esEs25(x0, x1, ty_@0) 26.21/10.60 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 26.21/10.60 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.21/10.60 new_sr(x0, x1) 26.21/10.60 new_ltEs20(x0, x1, app(ty_[], x2)) 26.21/10.60 new_lt5(x0, x1, app(ty_[], x2)) 26.21/10.60 new_esEs24(x0, x1, ty_Ordering) 26.21/10.61 new_esEs23(x0, x1, ty_Int) 26.21/10.61 new_primEqInt(Pos(Zero), Neg(Zero)) 26.21/10.61 new_primEqInt(Neg(Zero), Pos(Zero)) 26.21/10.61 new_ltEs16(x0, x1) 26.21/10.61 new_lt20(x0, x1, ty_Bool) 26.21/10.61 new_compare27(x0, x1, True, x2, x3, x4) 26.21/10.61 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.21/10.61 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, ty_Bool) 26.21/10.61 new_esEs23(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs25(x0, x1, ty_Float) 26.21/10.61 new_lt10(x0, x1, x2) 26.21/10.61 new_esEs16(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), ty_Ordering) 26.21/10.61 new_compare16(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.21/10.61 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_lt14(x0, x1, x2) 26.21/10.61 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_ltEs19(x0, x1, ty_Ordering) 26.21/10.61 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_ltEs10(x0, x1) 26.21/10.61 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs23(x0, x1, ty_@0) 26.21/10.61 new_compare210(x0, x1, True, x2, x3) 26.21/10.61 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.21/10.61 new_ltEs7(x0, x1, ty_Char) 26.21/10.61 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, ty_Char) 26.21/10.61 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), ty_Bool, x2) 26.21/10.61 new_esEs16(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs17(x0, x1, ty_Bool) 26.21/10.61 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.21/10.61 new_primPlusNat1(Succ(x0), Succ(x1)) 26.21/10.61 new_lt20(x0, x1, ty_Integer) 26.21/10.61 new_primMulInt(Pos(x0), Pos(x1)) 26.21/10.61 new_esEs18(:(x0, x1), [], x2) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 26.21/10.61 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.21/10.61 new_compare110(x0, x1, True) 26.21/10.61 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs17(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_compare113(x0, x1, True, x2, x3, x4) 26.21/10.61 new_ltEs14(Nothing, Just(x0), x1) 26.21/10.61 new_ltEs20(x0, x1, ty_Char) 26.21/10.61 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), ty_Integer) 26.21/10.61 new_esEs27(x0, x1, ty_@0) 26.21/10.61 new_esEs31(x0, x1, ty_Ordering) 26.21/10.61 new_esEs6(Just(x0), Nothing, x1) 26.21/10.61 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 26.21/10.61 new_esEs32(x0, x1, ty_Ordering) 26.21/10.61 new_esEs23(x0, x1, app(ty_[], x2)) 26.21/10.61 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.21/10.61 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.21/10.61 new_esEs17(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_lt21(x0, x1, ty_Integer) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.21/10.61 new_esEs32(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_compare111(x0, x1, True, x2) 26.21/10.61 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.21/10.61 new_esEs17(x0, x1, app(ty_[], x2)) 26.21/10.61 new_compare12(x0, x1, x2, x3, True, x4, x5) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.21/10.61 new_ltEs20(x0, x1, ty_Int) 26.21/10.61 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), ty_Integer, x2) 26.21/10.61 new_lt21(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_compare25(x0, x1, True) 26.21/10.61 new_compare18(x0, x1) 26.21/10.61 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.21/10.61 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.21/10.61 new_esEs6(Nothing, Just(x0), x1) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, ty_Int) 26.21/10.61 new_esEs32(x0, x1, ty_Double) 26.21/10.61 new_primCompAux0(x0, LT) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.21/10.61 new_esEs31(x0, x1, ty_Float) 26.21/10.61 new_lt19(x0, x1, app(ty_[], x2)) 26.21/10.61 new_esEs31(x0, x1, app(ty_[], x2)) 26.21/10.61 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_pePe(True, x0) 26.21/10.61 new_compare29(x0, x1, ty_Float) 26.21/10.61 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs32(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.21/10.61 new_esEs8(GT, GT) 26.21/10.61 new_esEs25(x0, x1, ty_Double) 26.21/10.61 new_ltEs12(EQ, LT) 26.21/10.61 new_ltEs12(LT, EQ) 26.21/10.61 new_esEs8(LT, EQ) 26.21/10.61 new_esEs8(EQ, LT) 26.21/10.61 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs15(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_ltEs12(GT, GT) 26.21/10.61 new_lt20(x0, x1, ty_@0) 26.21/10.61 new_compare19(x0, x1, x2, x3) 26.21/10.61 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.21/10.61 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_compare26(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.21/10.61 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs31(x0, x1, ty_Char) 26.21/10.61 new_esEs26(x0, x1, ty_Double) 26.21/10.61 new_primPlusNat0(Zero, x0) 26.21/10.61 new_lt8(x0, x1) 26.21/10.61 new_compare29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_ltEs20(x0, x1, ty_Float) 26.21/10.61 new_esEs8(LT, LT) 26.21/10.61 new_esEs26(x0, x1, ty_@0) 26.21/10.61 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.21/10.61 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.21/10.61 new_esEs30(x0, x1, x2, x3, False, x4, x5) 26.21/10.61 new_compare16(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), ty_Bool) 26.21/10.61 new_esEs31(x0, x1, ty_Int) 26.21/10.61 new_lt19(x0, x1, ty_@0) 26.21/10.61 new_esEs24(x0, x1, ty_Double) 26.21/10.61 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_compare0([], :(x0, x1), x2) 26.21/10.61 new_ltEs13(Left(x0), Right(x1), x2, x3) 26.21/10.61 new_ltEs13(Right(x0), Left(x1), x2, x3) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, ty_Float) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 26.21/10.61 new_lt6(x0, x1, x2, x3, x4) 26.21/10.61 new_ltEs5(True, True) 26.21/10.61 new_compare0(:(x0, x1), [], x2) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), ty_Float) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 26.21/10.61 new_ltEs19(x0, x1, ty_Double) 26.21/10.61 new_primMulNat0(Succ(x0), Zero) 26.21/10.61 new_esEs24(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs6(Just(x0), Just(x1), ty_Double) 26.21/10.61 new_compare7(:%(x0, x1), :%(x2, x3), ty_Int) 26.21/10.61 new_ltEs12(LT, LT) 26.21/10.61 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs15(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_primEqNat0(Succ(x0), Succ(x1)) 26.21/10.61 new_esEs15(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.21/10.61 new_esEs17(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs19(Float(x0, x1), Float(x2, x3)) 26.21/10.61 new_primCmpNat0(Succ(x0), Succ(x1)) 26.21/10.61 new_compare29(x0, x1, app(ty_[], x2)) 26.21/10.61 new_esEs16(x0, x1, ty_@0) 26.21/10.61 new_esEs32(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_ltEs7(x0, x1, app(ty_[], x2)) 26.21/10.61 new_lt5(x0, x1, ty_Double) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), app(ty_[], x2), x3) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 26.21/10.61 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_lt19(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_esEs31(x0, x1, ty_Bool) 26.21/10.61 new_ltEs14(Just(x0), Nothing, x1) 26.21/10.61 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_esEs17(x0, x1, ty_Integer) 26.21/10.61 new_lt19(x0, x1, ty_Double) 26.21/10.61 new_ltEs7(x0, x1, ty_Integer) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), ty_Char, x2) 26.21/10.61 new_esEs24(x0, x1, ty_@0) 26.21/10.61 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_ltEs7(x0, x1, ty_Ordering) 26.21/10.61 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.21/10.61 new_ltEs19(x0, x1, ty_@0) 26.21/10.61 new_lt21(x0, x1, ty_Bool) 26.21/10.61 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs24(x0, x1, app(ty_[], x2)) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.21/10.61 new_esEs29(x0, x1, ty_Double) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 26.21/10.61 new_esEs32(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), ty_Int) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 26.21/10.61 new_primMulNat0(Zero, Succ(x0)) 26.21/10.61 new_esEs31(x0, x1, ty_@0) 26.21/10.61 new_esEs17(x0, x1, ty_Float) 26.21/10.61 new_esEs28(x0, x1, ty_Char) 26.21/10.61 new_esEs15(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs24(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_lt13(x0, x1, x2, x3) 26.21/10.61 new_esEs26(x0, x1, ty_Char) 26.21/10.61 new_esEs26(x0, x1, app(ty_[], x2)) 26.21/10.61 new_compare23(x0, x1, False) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.21/10.61 new_compare210(x0, x1, False, x2, x3) 26.21/10.61 new_esEs23(x0, x1, ty_Float) 26.21/10.61 new_compare113(x0, x1, False, x2, x3, x4) 26.21/10.61 new_compare0([], [], x0) 26.21/10.61 new_pePe(False, x0) 26.21/10.61 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.21/10.61 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.21/10.61 new_primMulNat0(Zero, Zero) 26.21/10.61 new_esEs28(x0, x1, ty_Int) 26.21/10.61 new_compare25(x0, x1, False) 26.21/10.61 new_esEs23(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_compare7(:%(x0, x1), :%(x2, x3), ty_Integer) 26.21/10.61 new_esEs15(x0, x1, app(ty_[], x2)) 26.21/10.61 new_esEs32(x0, x1, ty_@0) 26.21/10.61 new_esEs29(x0, x1, ty_@0) 26.21/10.61 new_primCompAux0(x0, EQ) 26.21/10.61 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.21/10.61 new_esEs17(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs25(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.21/10.61 new_sr0(Integer(x0), Integer(x1)) 26.21/10.61 new_compare29(x0, x1, ty_@0) 26.21/10.61 new_primCmpNat0(Zero, Succ(x0)) 26.21/10.61 new_ltEs15(x0, x1) 26.21/10.61 new_esEs29(x0, x1, app(ty_[], x2)) 26.21/10.61 new_esEs32(x0, x1, app(ty_[], x2)) 26.21/10.61 new_lt4(x0, x1) 26.21/10.61 new_lt5(x0, x1, ty_@0) 26.21/10.61 new_lt20(x0, x1, ty_Float) 26.21/10.61 new_esEs18([], :(x0, x1), x2) 26.21/10.61 new_esEs32(x0, x1, ty_Bool) 26.21/10.61 new_primEqNat0(Zero, Succ(x0)) 26.21/10.61 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_ltEs14(Nothing, Nothing, x0) 26.21/10.61 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_ltEs19(x0, x1, app(ty_[], x2)) 26.21/10.61 new_compare13(x0, x1, True) 26.21/10.61 new_esEs16(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), ty_Float, x2) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.21/10.61 new_esEs31(x0, x1, ty_Integer) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 26.21/10.61 new_esEs15(x0, x1, ty_Bool) 26.21/10.61 new_esEs28(x0, x1, app(ty_[], x2)) 26.21/10.61 new_esEs32(x0, x1, ty_Char) 26.21/10.61 new_compare28(x0, x1, True, x2) 26.21/10.61 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.21/10.61 new_compare10(x0, x1, x2, x3, False, x4, x5, x6) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.21/10.61 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_compare29(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_primPlusNat1(Zero, Succ(x0)) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.21/10.61 new_lt12(x0, x1) 26.21/10.61 new_esEs28(x0, x1, ty_@0) 26.21/10.61 new_ltEs20(x0, x1, ty_Ordering) 26.21/10.61 new_not(True) 26.21/10.61 new_esEs27(x0, x1, ty_Integer) 26.21/10.61 new_esEs32(x0, x1, ty_Integer) 26.21/10.61 new_ltEs7(x0, x1, ty_Double) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 26.21/10.61 new_lt5(x0, x1, ty_Ordering) 26.21/10.61 new_esEs26(x0, x1, ty_Ordering) 26.21/10.61 new_asAs(False, x0) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.21/10.61 new_esEs15(x0, x1, ty_@0) 26.21/10.61 new_esEs8(EQ, GT) 26.21/10.61 new_esEs8(GT, EQ) 26.21/10.61 new_lt21(x0, x1, ty_Float) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_compare13(x0, x1, False) 26.21/10.61 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs10(x0, x1, ty_Int) 26.21/10.61 new_esEs16(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_ltEs20(x0, x1, ty_Double) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, ty_Double) 26.21/10.61 new_compare29(x0, x1, ty_Int) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), app(ty_[], x2)) 26.21/10.61 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_compare112(x0, x1, True, x2, x3) 26.21/10.61 new_compare29(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs29(x0, x1, ty_Ordering) 26.21/10.61 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.21/10.61 new_compare29(x0, x1, ty_Char) 26.21/10.61 new_lt19(x0, x1, ty_Ordering) 26.21/10.61 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_compare12(x0, x1, x2, x3, False, x4, x5) 26.21/10.61 new_ltEs5(False, False) 26.21/10.61 new_compare29(x0, x1, ty_Double) 26.21/10.61 new_compare30(x0, x1, x2) 26.21/10.61 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 26.21/10.61 new_ltEs12(EQ, EQ) 26.21/10.61 new_ltEs7(x0, x1, ty_Int) 26.21/10.61 new_esEs22(Char(x0), Char(x1)) 26.21/10.61 new_compare28(x0, x1, False, x2) 26.21/10.61 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 26.21/10.61 new_esEs28(x0, x1, ty_Bool) 26.21/10.61 new_esEs15(x0, x1, ty_Float) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.21/10.61 new_compare10(x0, x1, x2, x3, True, x4, x5, x6) 26.21/10.61 new_esEs16(x0, x1, ty_Integer) 26.21/10.61 new_esEs26(x0, x1, ty_Integer) 26.21/10.61 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_esEs16(x0, x1, app(ty_[], x2)) 26.21/10.61 new_esEs28(x0, x1, ty_Double) 26.21/10.61 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.21/10.61 new_esEs20(Double(x0, x1), Double(x2, x3)) 26.21/10.61 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_compare29(x0, x1, ty_Bool) 26.21/10.61 new_compare23(x0, x1, True) 26.21/10.61 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.21/10.61 new_esEs32(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs24(x0, x1, ty_Integer) 26.21/10.61 new_esEs23(x0, x1, ty_Bool) 26.21/10.61 new_esEs13(Integer(x0), Integer(x1)) 26.21/10.61 new_esEs25(x0, x1, ty_Char) 26.21/10.61 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_ltEs19(x0, x1, ty_Integer) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.21/10.61 new_esEs15(x0, x1, ty_Char) 26.21/10.61 new_lt19(x0, x1, ty_Int) 26.21/10.61 new_esEs15(x0, x1, ty_Int) 26.21/10.61 new_compare6(Integer(x0), Integer(x1)) 26.21/10.61 new_primMulInt(Pos(x0), Neg(x1)) 26.21/10.61 new_primMulInt(Neg(x0), Pos(x1)) 26.21/10.61 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.21/10.61 new_esEs25(x0, x1, ty_Int) 26.21/10.61 new_esEs15(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_esEs17(x0, x1, ty_@0) 26.21/10.61 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_ltEs8(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), ty_@0, x2) 26.21/10.61 new_esEs8(LT, GT) 26.21/10.61 new_esEs8(GT, LT) 26.21/10.61 new_compare24(@2(x0, x1), @2(x2, x3), False, x4, x5) 26.21/10.61 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.21/10.61 new_lt18(x0, x1, x2, x3) 26.21/10.61 new_esEs16(x0, x1, ty_Char) 26.21/10.61 new_esEs12(x0, x1) 26.21/10.61 new_esEs6(Just(x0), Just(x1), ty_Float) 26.21/10.61 new_compare15(Char(x0), Char(x1)) 26.21/10.61 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_ltEs19(x0, x1, ty_Bool) 26.21/10.61 new_lt19(x0, x1, ty_Float) 26.21/10.61 new_esEs18(:(x0, x1), :(x2, x3), x4) 26.21/10.61 new_lt16(x0, x1) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.21/10.61 new_compare112(x0, x1, False, x2, x3) 26.21/10.61 new_esEs29(x0, x1, ty_Float) 26.21/10.61 new_esEs16(x0, x1, ty_Bool) 26.21/10.61 new_esEs25(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs6(Just(x0), Just(x1), ty_Ordering) 26.21/10.61 new_compare17(x0, x1, x2, x3, x4) 26.21/10.61 new_esEs27(x0, x1, ty_Bool) 26.21/10.61 new_compare0(:(x0, x1), :(x2, x3), x4) 26.21/10.61 new_esEs5(Left(x0), Right(x1), x2, x3) 26.21/10.61 new_esEs5(Right(x0), Left(x1), x2, x3) 26.21/10.61 new_esEs29(x0, x1, ty_Integer) 26.21/10.61 new_compare29(x0, x1, ty_Ordering) 26.21/10.61 new_compare29(x0, x1, ty_Integer) 26.21/10.61 new_lt5(x0, x1, ty_Float) 26.21/10.61 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 26.21/10.61 new_ltEs20(x0, x1, ty_@0) 26.21/10.61 new_primEqNat0(Succ(x0), Zero) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.21/10.61 new_esEs6(Just(x0), Just(x1), ty_Integer) 26.21/10.61 new_esEs27(x0, x1, ty_Char) 26.21/10.61 new_esEs28(x0, x1, ty_Integer) 26.21/10.61 new_compare8(x0, x1) 26.21/10.61 new_lt5(x0, x1, ty_Integer) 26.21/10.61 new_esEs24(x0, x1, ty_Bool) 26.21/10.61 new_ltEs6(x0, x1, x2) 26.21/10.61 new_esEs11(x0, x1, ty_Integer) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, ty_Ordering) 26.21/10.61 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs26(x0, x1, ty_Bool) 26.21/10.61 new_lt21(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.21/10.61 new_esEs26(x0, x1, ty_Float) 26.21/10.61 new_esEs30(x0, x1, x2, x3, True, x4, x5) 26.21/10.61 new_primEqNat0(Zero, Zero) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), ty_@0) 26.21/10.61 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_ltEs13(Right(x0), Right(x1), x2, ty_@0) 26.21/10.61 new_ltEs11(x0, x1) 26.21/10.61 new_ltEs4(x0, x1, x2) 26.21/10.61 new_primCompAux0(x0, GT) 26.21/10.61 new_esEs6(Just(x0), Just(x1), ty_Int) 26.21/10.61 new_not(False) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), ty_Double) 26.21/10.61 new_esEs29(x0, x1, ty_Int) 26.21/10.61 new_lt11(x0, x1) 26.21/10.61 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.21/10.61 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_esEs25(x0, x1, ty_Bool) 26.21/10.61 new_ltEs12(LT, GT) 26.21/10.61 new_ltEs12(GT, LT) 26.21/10.61 new_lt21(x0, x1, ty_Double) 26.21/10.61 new_esEs32(x0, x1, ty_Int) 26.21/10.61 new_esEs27(x0, x1, ty_Int) 26.21/10.61 new_lt5(x0, x1, ty_Int) 26.21/10.61 new_esEs14(False, False) 26.21/10.61 new_esEs25(x0, x1, ty_Ordering) 26.21/10.61 new_esEs28(x0, x1, ty_Ordering) 26.21/10.61 new_esEs16(x0, x1, ty_Int) 26.21/10.61 new_lt5(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_primPlusNat0(Succ(x0), x1) 26.21/10.61 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_esEs11(x0, x1, ty_Int) 26.21/10.61 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 26.21/10.61 new_primPlusNat1(Succ(x0), Zero) 26.21/10.61 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.21/10.61 new_esEs29(x0, x1, ty_Char) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 26.21/10.61 new_lt17(x0, x1) 26.21/10.61 new_lt19(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 new_lt19(x0, x1, ty_Bool) 26.21/10.61 new_lt5(x0, x1, ty_Char) 26.21/10.61 new_esEs6(Just(x0), Just(x1), ty_Char) 26.21/10.61 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.21/10.61 new_compare111(x0, x1, False, x2) 26.21/10.61 new_esEs26(x0, x1, ty_Int) 26.21/10.61 new_esEs15(x0, x1, ty_Ordering) 26.21/10.61 new_ltEs17(x0, x1) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 26.21/10.61 new_primMulInt(Neg(x0), Neg(x1)) 26.21/10.61 new_esEs29(x0, x1, ty_Bool) 26.21/10.61 new_esEs24(x0, x1, ty_Float) 26.21/10.61 new_esEs21(@0, @0) 26.21/10.61 new_esEs23(x0, x1, ty_Integer) 26.21/10.61 new_ltEs19(x0, x1, ty_Float) 26.21/10.61 new_ltEs14(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.21/10.61 new_compare110(x0, x1, False) 26.21/10.61 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.21/10.61 new_lt19(x0, x1, ty_Char) 26.21/10.61 new_ltEs13(Left(x0), Left(x1), ty_Double, x2) 26.21/10.61 new_compare14(x0, x1) 26.21/10.61 new_lt21(x0, x1, app(ty_[], x2)) 26.21/10.61 new_lt5(x0, x1, ty_Bool) 26.21/10.61 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.21/10.61 new_ltEs9(x0, x1) 26.21/10.61 new_esEs27(x0, x1, ty_Float) 26.21/10.61 new_esEs32(x0, x1, ty_Float) 26.21/10.61 new_compare9(x0, x1, x2, x3) 26.21/10.61 new_esEs31(x0, x1, ty_Double) 26.21/10.61 new_esEs16(x0, x1, ty_Float) 26.21/10.61 new_esEs15(x0, x1, ty_Integer) 26.21/10.61 new_primCompAux1(x0, x1, x2, x3) 26.21/10.61 new_primCmpNat0(Zero, Zero) 26.21/10.61 new_esEs6(Nothing, Nothing, x0) 26.21/10.61 new_esEs6(Just(x0), Just(x1), ty_Bool) 26.21/10.61 new_esEs23(x0, x1, ty_Ordering) 26.21/10.61 new_asAs(True, x0) 26.21/10.61 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.21/10.61 26.21/10.61 We have to consider all minimal (P,Q,R)-chains. 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (30) QDPSizeChangeProof (EQUIVALENT) 26.21/10.61 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.21/10.61 26.21/10.61 From the DPs we obtained the following set of size-change graphs: 26.21/10.61 *new_foldFM_GE(vyy3, @2(vyy50, vyy51), Branch(@2(vyy600, vyy601), vyy61, vyy62, vyy63, vyy64), bd, be, bf, bg) -> new_foldFM_GE1(vyy3, vyy50, vyy51, vyy600, vyy601, vyy61, vyy62, vyy63, vyy64, new_esEs30(vyy600, vyy601, vyy50, vyy51, new_esEs31(vyy600, vyy50, be), be, bf), bd, be, bf, bg) 26.21/10.61 The graph contains the following edges 1 >= 1, 2 > 2, 2 > 3, 3 > 4, 3 > 5, 3 > 6, 3 > 7, 3 > 8, 3 > 9, 4 >= 11, 5 >= 12, 6 >= 13, 7 >= 14 26.21/10.61 26.21/10.61 26.21/10.61 *new_foldFM_GE1(vyy19, vyy21, vyy22, vyy23, vyy24, vyy25, vyy26, vyy27, vyy28, False, h, ba, bb, bc) -> new_foldFM_GE(vyy19, @2(vyy21, vyy22), vyy28, h, ba, bb, bc) 26.21/10.61 The graph contains the following edges 1 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6, 14 >= 7 26.21/10.61 26.21/10.61 26.21/10.61 *new_foldFM_GE1(vyy19, vyy21, vyy22, vyy23, vyy24, vyy25, vyy26, vyy27, vyy28, False, h, ba, bb, bc) -> new_foldFM_GE(vyy19, @2(vyy21, vyy22), vyy27, h, ba, bb, bc) 26.21/10.61 The graph contains the following edges 1 >= 1, 8 >= 3, 11 >= 4, 12 >= 5, 13 >= 6, 14 >= 7 26.21/10.61 26.21/10.61 26.21/10.61 *new_foldFM_GE1(vyy19, vyy21, vyy22, vyy23, vyy24, vyy25, vyy26, vyy27, vyy28, True, h, ba, bb, bc) -> new_foldFM_GE(vyy19, @2(vyy21, vyy22), vyy28, h, ba, bb, bc) 26.21/10.61 The graph contains the following edges 1 >= 1, 9 >= 3, 11 >= 4, 12 >= 5, 13 >= 6, 14 >= 7 26.21/10.61 26.21/10.61 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (31) 26.21/10.61 YES 26.21/10.61 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (32) 26.21/10.61 Obligation: 26.21/10.61 Q DP problem: 26.21/10.61 The TRS P consists of the following rules: 26.21/10.61 26.21/10.61 new_primPlusNat(Succ(vyy8300), Succ(vyy501000)) -> new_primPlusNat(vyy8300, vyy501000) 26.21/10.61 26.21/10.61 R is empty. 26.21/10.61 Q is empty. 26.21/10.61 We have to consider all minimal (P,Q,R)-chains. 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (33) QDPSizeChangeProof (EQUIVALENT) 26.21/10.61 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.21/10.61 26.21/10.61 From the DPs we obtained the following set of size-change graphs: 26.21/10.61 *new_primPlusNat(Succ(vyy8300), Succ(vyy501000)) -> new_primPlusNat(vyy8300, vyy501000) 26.21/10.61 The graph contains the following edges 1 > 1, 2 > 2 26.21/10.61 26.21/10.61 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (34) 26.21/10.61 YES 26.21/10.61 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (35) 26.21/10.61 Obligation: 26.21/10.61 Q DP problem: 26.21/10.61 The TRS P consists of the following rules: 26.21/10.61 26.21/10.61 new_primEqNat(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat(vyy60000, vyy5000) 26.21/10.61 26.21/10.61 R is empty. 26.21/10.61 Q is empty. 26.21/10.61 We have to consider all minimal (P,Q,R)-chains. 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (36) QDPSizeChangeProof (EQUIVALENT) 26.21/10.61 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.21/10.61 26.21/10.61 From the DPs we obtained the following set of size-change graphs: 26.21/10.61 *new_primEqNat(Succ(vyy60000), Succ(vyy5000)) -> new_primEqNat(vyy60000, vyy5000) 26.21/10.61 The graph contains the following edges 1 > 1, 2 > 2 26.21/10.61 26.21/10.61 26.21/10.61 ---------------------------------------- 26.21/10.61 26.21/10.61 (37) 26.21/10.61 YES 26.33/10.65 EOF