19.38/7.98 YES 22.49/8.80 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 22.49/8.80 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 22.49/8.80 22.49/8.80 22.49/8.80 H-Termination with start terms of the given HASKELL could be proven: 22.49/8.80 22.49/8.80 (0) HASKELL 22.49/8.80 (1) CR [EQUIVALENT, 0 ms] 22.49/8.80 (2) HASKELL 22.49/8.80 (3) IFR [EQUIVALENT, 0 ms] 22.49/8.80 (4) HASKELL 22.49/8.80 (5) BR [EQUIVALENT, 3 ms] 22.49/8.80 (6) HASKELL 22.49/8.80 (7) COR [EQUIVALENT, 0 ms] 22.49/8.80 (8) HASKELL 22.49/8.80 (9) LetRed [EQUIVALENT, 0 ms] 22.49/8.80 (10) HASKELL 22.49/8.80 (11) NumRed [SOUND, 0 ms] 22.49/8.80 (12) HASKELL 22.49/8.80 (13) Narrow [SOUND, 0 ms] 22.49/8.80 (14) AND 22.49/8.80 (15) QDP 22.49/8.80 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.49/8.80 (17) YES 22.49/8.80 (18) QDP 22.49/8.80 (19) QDPSizeChangeProof [EQUIVALENT, 14 ms] 22.49/8.80 (20) YES 22.49/8.80 (21) QDP 22.49/8.80 (22) DependencyGraphProof [EQUIVALENT, 0 ms] 22.49/8.80 (23) AND 22.49/8.80 (24) QDP 22.49/8.80 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.49/8.80 (26) YES 22.49/8.80 (27) QDP 22.49/8.80 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.49/8.80 (29) YES 22.49/8.80 (30) QDP 22.49/8.80 (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.49/8.80 (32) YES 22.49/8.80 (33) QDP 22.49/8.80 (34) QDPSizeChangeProof [EQUIVALENT, 28 ms] 22.49/8.80 (35) YES 22.49/8.80 (36) QDP 22.49/8.80 (37) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.49/8.80 (38) YES 22.49/8.80 (39) QDP 22.49/8.80 (40) QDPSizeChangeProof [EQUIVALENT, 0 ms] 22.49/8.80 (41) YES 22.49/8.80 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (0) 22.49/8.80 Obligation: 22.49/8.80 mainModule Main 22.49/8.80 module Maybe where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 module List where { 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 insert :: Ord a => a -> [a] -> [a]; 22.49/8.80 insert e ls = insertBy compare e ls; 22.49/8.80 22.49/8.80 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 22.49/8.80 insertBy _ x [] = x : []; 22.49/8.80 insertBy cmp x ys@(y : ys') = case cmp x y of { 22.49/8.80 GT-> y : insertBy cmp x ys'; 22.49/8.80 _-> x : ys; 22.49/8.80 } ; 22.49/8.80 22.49/8.80 } 22.49/8.80 module Main where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (1) CR (EQUIVALENT) 22.49/8.80 Case Reductions: 22.49/8.80 The following Case expression 22.49/8.80 "case compare x y of { 22.49/8.80 EQ -> o; 22.49/8.80 LT -> LT; 22.49/8.80 GT -> GT} 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "primCompAux0 o EQ = o; 22.49/8.80 primCompAux0 o LT = LT; 22.49/8.80 primCompAux0 o GT = GT; 22.49/8.80 " 22.49/8.80 The following Case expression 22.49/8.80 "case cmp x y of { 22.49/8.80 GT -> y : insertBy cmp x ys'; 22.49/8.80 _ -> x : ys} 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 22.49/8.80 insertBy0 y cmp x ys' ys _ = x : ys; 22.49/8.80 " 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (2) 22.49/8.80 Obligation: 22.49/8.80 mainModule Main 22.49/8.80 module Maybe where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 module List where { 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 insert :: Ord a => a -> [a] -> [a]; 22.49/8.80 insert e ls = insertBy compare e ls; 22.49/8.80 22.49/8.80 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 22.49/8.80 insertBy _ x [] = x : []; 22.49/8.80 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 22.49/8.80 22.49/8.80 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 22.49/8.80 insertBy0 y cmp x ys' ys _ = x : ys; 22.49/8.80 22.49/8.80 } 22.49/8.80 module Main where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (3) IFR (EQUIVALENT) 22.49/8.80 If Reductions: 22.49/8.80 The following If expression 22.49/8.80 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 22.49/8.80 is transformed to 22.49/8.80 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 22.49/8.80 primDivNatS0 x y False = Zero; 22.49/8.80 " 22.49/8.80 The following If expression 22.49/8.80 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 22.49/8.80 is transformed to 22.49/8.80 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 22.49/8.80 primModNatS0 x y False = Succ x; 22.49/8.80 " 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (4) 22.49/8.80 Obligation: 22.49/8.80 mainModule Main 22.49/8.80 module Maybe where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 module List where { 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 insert :: Ord a => a -> [a] -> [a]; 22.49/8.80 insert e ls = insertBy compare e ls; 22.49/8.80 22.49/8.80 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 22.49/8.80 insertBy _ x [] = x : []; 22.49/8.80 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 22.49/8.80 22.49/8.80 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 22.49/8.80 insertBy0 y cmp x ys' ys _ = x : ys; 22.49/8.80 22.49/8.80 } 22.49/8.80 module Main where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (5) BR (EQUIVALENT) 22.49/8.80 Replaced joker patterns by fresh variables and removed binding patterns. 22.49/8.80 22.49/8.80 Binding Reductions: 22.49/8.80 The bind variable of the following binding Pattern 22.49/8.80 "ys@(vuu : vuv)" 22.49/8.80 is replaced by the following term 22.49/8.80 "vuu : vuv" 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (6) 22.49/8.80 Obligation: 22.49/8.80 mainModule Main 22.49/8.80 module Maybe where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 module List where { 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 insert :: Ord a => a -> [a] -> [a]; 22.49/8.80 insert e ls = insertBy compare e ls; 22.49/8.80 22.49/8.80 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 22.49/8.80 insertBy zz x [] = x : []; 22.49/8.80 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 22.49/8.80 22.49/8.80 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 22.49/8.80 insertBy0 y cmp x ys' ys zy = x : ys; 22.49/8.80 22.49/8.80 } 22.49/8.80 module Main where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (7) COR (EQUIVALENT) 22.49/8.80 Cond Reductions: 22.49/8.80 The following Function with conditions 22.49/8.80 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "compare x y = compare3 x y; 22.49/8.80 " 22.49/8.80 "compare1 x y True = LT; 22.49/8.80 compare1 x y False = compare0 x y otherwise; 22.49/8.80 " 22.49/8.80 "compare0 x y True = GT; 22.49/8.80 " 22.49/8.80 "compare2 x y True = EQ; 22.49/8.80 compare2 x y False = compare1 x y (x <= y); 22.49/8.80 " 22.49/8.80 "compare3 x y = compare2 x y (x == y); 22.49/8.80 " 22.49/8.80 The following Function with conditions 22.49/8.80 "absReal x|x >= 0x|otherwise`negate` x; 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "absReal x = absReal2 x; 22.49/8.80 " 22.49/8.80 "absReal0 x True = `negate` x; 22.49/8.80 " 22.49/8.80 "absReal1 x True = x; 22.49/8.80 absReal1 x False = absReal0 x otherwise; 22.49/8.80 " 22.49/8.80 "absReal2 x = absReal1 x (x >= 0); 22.49/8.80 " 22.49/8.80 The following Function with conditions 22.49/8.80 "gcd' x 0 = x; 22.49/8.80 gcd' x y = gcd' y (x `rem` y); 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "gcd' x vuw = gcd'2 x vuw; 22.49/8.80 gcd' x y = gcd'0 x y; 22.49/8.80 " 22.49/8.80 "gcd'0 x y = gcd' y (x `rem` y); 22.49/8.80 " 22.49/8.80 "gcd'1 True x vuw = x; 22.49/8.80 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 22.49/8.80 " 22.49/8.80 "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 22.49/8.80 gcd'2 vvu vvv = gcd'0 vvu vvv; 22.49/8.80 " 22.49/8.80 The following Function with conditions 22.49/8.80 "gcd 0 0 = error []; 22.49/8.80 gcd x y = gcd' (abs x) (abs y) where { 22.49/8.80 gcd' x 0 = x; 22.49/8.80 gcd' x y = gcd' y (x `rem` y); 22.49/8.80 } 22.49/8.80 ; 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "gcd vvw vvx = gcd3 vvw vvx; 22.49/8.80 gcd x y = gcd0 x y; 22.49/8.80 " 22.49/8.80 "gcd0 x y = gcd' (abs x) (abs y) where { 22.49/8.80 gcd' x vuw = gcd'2 x vuw; 22.49/8.80 gcd' x y = gcd'0 x y; 22.49/8.80 ; 22.49/8.80 gcd'0 x y = gcd' y (x `rem` y); 22.49/8.80 ; 22.49/8.80 gcd'1 True x vuw = x; 22.49/8.80 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 22.49/8.80 ; 22.49/8.80 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 22.49/8.80 gcd'2 vvu vvv = gcd'0 vvu vvv; 22.49/8.80 } 22.49/8.80 ; 22.49/8.80 " 22.49/8.80 "gcd1 True vvw vvx = error []; 22.49/8.80 gcd1 vvy vvz vwu = gcd0 vvz vwu; 22.49/8.80 " 22.49/8.80 "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; 22.49/8.80 gcd2 vwv vww vwx = gcd0 vww vwx; 22.49/8.80 " 22.49/8.80 "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; 22.49/8.80 gcd3 vwy vwz = gcd0 vwy vwz; 22.49/8.80 " 22.49/8.80 The following Function with conditions 22.49/8.80 "undefined |Falseundefined; 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "undefined = undefined1; 22.49/8.80 " 22.49/8.80 "undefined0 True = undefined; 22.49/8.80 " 22.49/8.80 "undefined1 = undefined0 False; 22.49/8.80 " 22.49/8.80 The following Function with conditions 22.49/8.80 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 22.49/8.80 d = gcd x y; 22.49/8.80 } 22.49/8.80 ; 22.49/8.80 " 22.49/8.80 is transformed to 22.49/8.80 "reduce x y = reduce2 x y; 22.49/8.80 " 22.49/8.80 "reduce2 x y = reduce1 x y (y == 0) where { 22.49/8.80 d = gcd x y; 22.49/8.80 ; 22.49/8.80 reduce0 x y True = x `quot` d :% (y `quot` d); 22.49/8.80 ; 22.49/8.80 reduce1 x y True = error []; 22.49/8.80 reduce1 x y False = reduce0 x y otherwise; 22.49/8.80 } 22.49/8.80 ; 22.49/8.80 " 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (8) 22.49/8.80 Obligation: 22.49/8.80 mainModule Main 22.49/8.80 module Maybe where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 module List where { 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 insert :: Ord a => a -> [a] -> [a]; 22.49/8.80 insert e ls = insertBy compare e ls; 22.49/8.80 22.49/8.80 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 22.49/8.80 insertBy zz x [] = x : []; 22.49/8.80 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 22.49/8.80 22.49/8.80 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 22.49/8.80 insertBy0 y cmp x ys' ys zy = x : ys; 22.49/8.80 22.49/8.80 } 22.49/8.80 module Main where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (9) LetRed (EQUIVALENT) 22.49/8.80 Let/Where Reductions: 22.49/8.80 The bindings of the following Let/Where expression 22.49/8.80 "gcd' (abs x) (abs y) where { 22.49/8.80 gcd' x vuw = gcd'2 x vuw; 22.49/8.80 gcd' x y = gcd'0 x y; 22.49/8.80 ; 22.49/8.80 gcd'0 x y = gcd' y (x `rem` y); 22.49/8.80 ; 22.49/8.80 gcd'1 True x vuw = x; 22.49/8.80 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 22.49/8.80 ; 22.49/8.80 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 22.49/8.80 gcd'2 vvu vvv = gcd'0 vvu vvv; 22.49/8.80 } 22.49/8.80 " 22.49/8.80 are unpacked to the following functions on top level 22.49/8.80 "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; 22.49/8.80 gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; 22.49/8.80 " 22.49/8.80 "gcd0Gcd'1 True x vuw = x; 22.49/8.80 gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; 22.49/8.80 " 22.49/8.80 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 22.49/8.80 " 22.49/8.80 "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; 22.49/8.80 gcd0Gcd' x y = gcd0Gcd'0 x y; 22.49/8.80 " 22.49/8.80 The bindings of the following Let/Where expression 22.49/8.80 "reduce1 x y (y == 0) where { 22.49/8.80 d = gcd x y; 22.49/8.80 ; 22.49/8.80 reduce0 x y True = x `quot` d :% (y `quot` d); 22.49/8.80 ; 22.49/8.80 reduce1 x y True = error []; 22.49/8.80 reduce1 x y False = reduce0 x y otherwise; 22.49/8.80 } 22.49/8.80 " 22.49/8.80 are unpacked to the following functions on top level 22.49/8.80 "reduce2Reduce1 vxu vxv x y True = error []; 22.49/8.80 reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; 22.49/8.80 " 22.49/8.80 "reduce2D vxu vxv = gcd vxu vxv; 22.49/8.80 " 22.49/8.80 "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); 22.49/8.80 " 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (10) 22.49/8.80 Obligation: 22.49/8.80 mainModule Main 22.49/8.80 module Maybe where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 module List where { 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 insert :: Ord a => a -> [a] -> [a]; 22.49/8.80 insert e ls = insertBy compare e ls; 22.49/8.80 22.49/8.80 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 22.49/8.80 insertBy zz x [] = x : []; 22.49/8.80 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 22.49/8.80 22.49/8.80 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 22.49/8.80 insertBy0 y cmp x ys' ys zy = x : ys; 22.49/8.80 22.49/8.80 } 22.49/8.80 module Main where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (11) NumRed (SOUND) 22.49/8.80 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (12) 22.49/8.80 Obligation: 22.49/8.80 mainModule Main 22.49/8.80 module Maybe where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 module List where { 22.49/8.80 import qualified Main; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 insert :: Ord a => a -> [a] -> [a]; 22.49/8.80 insert e ls = insertBy compare e ls; 22.49/8.80 22.49/8.80 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 22.49/8.80 insertBy zz x [] = x : []; 22.49/8.80 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 22.49/8.80 22.49/8.80 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 22.49/8.80 insertBy0 y cmp x ys' ys zy = x : ys; 22.49/8.80 22.49/8.80 } 22.49/8.80 module Main where { 22.49/8.80 import qualified List; 22.49/8.80 import qualified Maybe; 22.49/8.80 import qualified Prelude; 22.49/8.80 } 22.49/8.80 22.49/8.80 ---------------------------------------- 22.49/8.80 22.49/8.80 (13) Narrow (SOUND) 22.49/8.80 Haskell To QDPs 22.49/8.80 22.49/8.80 digraph dp_graph { 22.49/8.80 node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 22.49/8.80 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 22.49/8.80 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 22.49/8.80 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];1837[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 1837[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1837 -> 6[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1838[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 1838[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1838 -> 7[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 22.49/8.80 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 22.49/8.80 8[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare vxw3 vxw40)",fontsize=16,color="black",shape="box"];8 -> 10[label="",style="solid", color="black", weight=3]; 22.49/8.80 9[label="vxw3 : []",fontsize=16,color="green",shape="box"];10[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare3 vxw3 vxw40)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 22.49/8.80 11[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare2 vxw3 vxw40 (vxw3 == vxw40))",fontsize=16,color="burlywood",shape="box"];1839[label="vxw3/Left vxw30",fontsize=10,color="white",style="solid",shape="box"];11 -> 1839[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1839 -> 12[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1840[label="vxw3/Right vxw30",fontsize=10,color="white",style="solid",shape="box"];11 -> 1840[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1840 -> 13[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 12[label="List.insertBy0 vxw40 compare (Left vxw30) vxw41 (vxw40 : vxw41) (compare2 (Left vxw30) vxw40 (Left vxw30 == vxw40))",fontsize=16,color="burlywood",shape="box"];1841[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];12 -> 1841[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1841 -> 14[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1842[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];12 -> 1842[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1842 -> 15[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 13[label="List.insertBy0 vxw40 compare (Right vxw30) vxw41 (vxw40 : vxw41) (compare2 (Right vxw30) vxw40 (Right vxw30 == vxw40))",fontsize=16,color="burlywood",shape="box"];1843[label="vxw40/Left vxw400",fontsize=10,color="white",style="solid",shape="box"];13 -> 1843[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1843 -> 16[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1844[label="vxw40/Right vxw400",fontsize=10,color="white",style="solid",shape="box"];13 -> 1844[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1844 -> 17[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 14[label="List.insertBy0 (Left vxw400) compare (Left vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Left vxw30) (Left vxw400) (Left vxw30 == Left vxw400))",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 22.49/8.80 15[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Left vxw30) (Right vxw400) (Left vxw30 == Right vxw400))",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 22.49/8.80 16[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Right vxw30) (Left vxw400) (Right vxw30 == Left vxw400))",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 22.49/8.80 17[label="List.insertBy0 (Right vxw400) compare (Right vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Right vxw30) (Right vxw400) (Right vxw30 == Right vxw400))",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 22.49/8.80 18 -> 22[label="",style="dashed", color="red", weight=0]; 22.49/8.80 18[label="List.insertBy0 (Left vxw400) compare (Left vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Left vxw30) (Left vxw400) (vxw30 == vxw400))",fontsize=16,color="magenta"];18 -> 23[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 18 -> 24[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 18 -> 25[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 18 -> 26[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 19[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Left vxw30) (Right vxw400) False)",fontsize=16,color="black",shape="box"];19 -> 27[label="",style="solid", color="black", weight=3]; 22.49/8.80 20[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare2 (Right vxw30) (Left vxw400) False)",fontsize=16,color="black",shape="box"];20 -> 28[label="",style="solid", color="black", weight=3]; 22.49/8.80 21 -> 29[label="",style="dashed", color="red", weight=0]; 22.49/8.80 21[label="List.insertBy0 (Right vxw400) compare (Right vxw30) vxw41 (Right vxw400 : vxw41) (compare2 (Right vxw30) (Right vxw400) (vxw30 == vxw400))",fontsize=16,color="magenta"];21 -> 30[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 21 -> 31[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 21 -> 32[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 21 -> 33[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 23[label="vxw41",fontsize=16,color="green",shape="box"];24[label="vxw400",fontsize=16,color="green",shape="box"];25[label="vxw30",fontsize=16,color="green",shape="box"];26[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];1845[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1845[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1845 -> 34[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1846[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1846[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1846 -> 35[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1847[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1847[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1847 -> 36[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1848[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1848[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1848 -> 37[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1849[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1849[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1849 -> 38[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1850[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1850[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1850 -> 39[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1851[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1851[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1851 -> 40[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1852[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1852[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1852 -> 41[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1853[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1853[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1853 -> 42[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1854[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1854[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1854 -> 43[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1855[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1855[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1855 -> 44[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1856[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1856[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1856 -> 45[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1857[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1857[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1857 -> 46[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1858[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];26 -> 1858[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1858 -> 47[label="",style="solid", color="blue", weight=3]; 22.49/8.80 22[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare2 (Left vxw11) (Left vxw10) vxw13)",fontsize=16,color="burlywood",shape="triangle"];1859[label="vxw13/False",fontsize=10,color="white",style="solid",shape="box"];22 -> 1859[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1859 -> 48[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1860[label="vxw13/True",fontsize=10,color="white",style="solid",shape="box"];22 -> 1860[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1860 -> 49[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 27[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare1 (Left vxw30) (Right vxw400) (Left vxw30 <= Right vxw400))",fontsize=16,color="black",shape="box"];27 -> 50[label="",style="solid", color="black", weight=3]; 22.49/8.80 28[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare1 (Right vxw30) (Left vxw400) (Right vxw30 <= Left vxw400))",fontsize=16,color="black",shape="box"];28 -> 51[label="",style="solid", color="black", weight=3]; 22.49/8.80 30[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];1861[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1861[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1861 -> 52[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1862[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1862[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1862 -> 53[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1863[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1863[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1863 -> 54[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1864[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1864[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1864 -> 55[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1865[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1865[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1865 -> 56[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1866[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1866[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1866 -> 57[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1867[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1867[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1867 -> 58[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1868[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1868[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1868 -> 59[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1869[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1869[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1869 -> 60[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1870[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1870[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1870 -> 61[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1871[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1871[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1871 -> 62[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1872[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1872[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1872 -> 63[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1873[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1873[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1873 -> 64[label="",style="solid", color="blue", weight=3]; 22.49/8.80 1874[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];30 -> 1874[label="",style="solid", color="blue", weight=9]; 22.49/8.80 1874 -> 65[label="",style="solid", color="blue", weight=3]; 22.49/8.80 31[label="vxw41",fontsize=16,color="green",shape="box"];32[label="vxw30",fontsize=16,color="green",shape="box"];33[label="vxw400",fontsize=16,color="green",shape="box"];29[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare2 (Right vxw20) (Right vxw19) vxw22)",fontsize=16,color="burlywood",shape="triangle"];1875[label="vxw22/False",fontsize=10,color="white",style="solid",shape="box"];29 -> 1875[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1875 -> 66[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1876[label="vxw22/True",fontsize=10,color="white",style="solid",shape="box"];29 -> 1876[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1876 -> 67[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 34[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1877[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];34 -> 1877[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1877 -> 68[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 35[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];35 -> 69[label="",style="solid", color="black", weight=3]; 22.49/8.80 36[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1878[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];36 -> 1878[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1878 -> 70[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 37[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1879[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];37 -> 1879[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1879 -> 71[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1880[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];37 -> 1880[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1880 -> 72[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 38[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1881[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];38 -> 1881[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1881 -> 73[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 39[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1882[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];39 -> 1882[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1882 -> 74[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 40[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];40 -> 75[label="",style="solid", color="black", weight=3]; 22.49/8.80 41[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1883[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];41 -> 1883[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1883 -> 76[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1884[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];41 -> 1884[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1884 -> 77[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1885[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];41 -> 1885[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1885 -> 78[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 42[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1886[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];42 -> 1886[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1886 -> 79[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1887[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];42 -> 1887[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1887 -> 80[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 43[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1888[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];43 -> 1888[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1888 -> 81[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1889[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];43 -> 1889[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1889 -> 82[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 44[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];44 -> 83[label="",style="solid", color="black", weight=3]; 22.49/8.80 45[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];45 -> 84[label="",style="solid", color="black", weight=3]; 22.49/8.80 46[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1890[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];46 -> 1890[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1890 -> 85[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1891[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];46 -> 1891[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1891 -> 86[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 47[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1892[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];47 -> 1892[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1892 -> 87[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 48[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare2 (Left vxw11) (Left vxw10) False)",fontsize=16,color="black",shape="box"];48 -> 88[label="",style="solid", color="black", weight=3]; 22.49/8.80 49[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare2 (Left vxw11) (Left vxw10) True)",fontsize=16,color="black",shape="box"];49 -> 89[label="",style="solid", color="black", weight=3]; 22.49/8.80 50[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) (compare1 (Left vxw30) (Right vxw400) True)",fontsize=16,color="black",shape="box"];50 -> 90[label="",style="solid", color="black", weight=3]; 22.49/8.80 51[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare1 (Right vxw30) (Left vxw400) False)",fontsize=16,color="black",shape="box"];51 -> 91[label="",style="solid", color="black", weight=3]; 22.49/8.80 52 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.80 52[label="vxw30 == vxw400",fontsize=16,color="magenta"];52 -> 92[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 52 -> 93[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 53 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.80 53[label="vxw30 == vxw400",fontsize=16,color="magenta"];53 -> 94[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 53 -> 95[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 54 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.80 54[label="vxw30 == vxw400",fontsize=16,color="magenta"];54 -> 96[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 54 -> 97[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 55 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.80 55[label="vxw30 == vxw400",fontsize=16,color="magenta"];55 -> 98[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 55 -> 99[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 56 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.80 56[label="vxw30 == vxw400",fontsize=16,color="magenta"];56 -> 100[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 56 -> 101[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 57 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.80 57[label="vxw30 == vxw400",fontsize=16,color="magenta"];57 -> 102[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 57 -> 103[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 58 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.80 58[label="vxw30 == vxw400",fontsize=16,color="magenta"];58 -> 104[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 58 -> 105[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 59 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.80 59[label="vxw30 == vxw400",fontsize=16,color="magenta"];59 -> 106[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 59 -> 107[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 60 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.80 60[label="vxw30 == vxw400",fontsize=16,color="magenta"];60 -> 108[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 60 -> 109[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 61 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.80 61[label="vxw30 == vxw400",fontsize=16,color="magenta"];61 -> 110[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 61 -> 111[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 62 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.80 62[label="vxw30 == vxw400",fontsize=16,color="magenta"];62 -> 112[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 62 -> 113[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 63 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.80 63[label="vxw30 == vxw400",fontsize=16,color="magenta"];63 -> 114[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 63 -> 115[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 64 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.80 64[label="vxw30 == vxw400",fontsize=16,color="magenta"];64 -> 116[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 64 -> 117[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 65 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.80 65[label="vxw30 == vxw400",fontsize=16,color="magenta"];65 -> 118[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 65 -> 119[label="",style="dashed", color="magenta", weight=3]; 22.49/8.80 66[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare2 (Right vxw20) (Right vxw19) False)",fontsize=16,color="black",shape="box"];66 -> 120[label="",style="solid", color="black", weight=3]; 22.49/8.80 67[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare2 (Right vxw20) (Right vxw19) True)",fontsize=16,color="black",shape="box"];67 -> 121[label="",style="solid", color="black", weight=3]; 22.49/8.80 68[label="(vxw300,vxw301) == vxw400",fontsize=16,color="burlywood",shape="box"];1893[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];68 -> 1893[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1893 -> 122[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 69[label="primEqInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];1894[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];69 -> 1894[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1894 -> 123[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1895[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];69 -> 1895[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1895 -> 124[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 70[label="vxw300 :% vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1896[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];70 -> 1896[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1896 -> 125[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 71[label="Left vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1897[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];71 -> 1897[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1897 -> 126[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1898[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];71 -> 1898[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1898 -> 127[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 72[label="Right vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1899[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];72 -> 1899[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1899 -> 128[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1900[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];72 -> 1900[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1900 -> 129[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 73[label="Integer vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1901[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];73 -> 1901[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1901 -> 130[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 74[label="() == vxw400",fontsize=16,color="burlywood",shape="box"];1902[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];74 -> 1902[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1902 -> 131[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 75[label="primEqDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1903[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];75 -> 1903[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1903 -> 132[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 76[label="LT == vxw400",fontsize=16,color="burlywood",shape="box"];1904[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];76 -> 1904[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1904 -> 133[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1905[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];76 -> 1905[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1905 -> 134[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1906[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];76 -> 1906[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1906 -> 135[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 77[label="EQ == vxw400",fontsize=16,color="burlywood",shape="box"];1907[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];77 -> 1907[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1907 -> 136[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1908[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];77 -> 1908[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1908 -> 137[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1909[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];77 -> 1909[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1909 -> 138[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 78[label="GT == vxw400",fontsize=16,color="burlywood",shape="box"];1910[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];78 -> 1910[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1910 -> 139[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1911[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];78 -> 1911[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1911 -> 140[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1912[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];78 -> 1912[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1912 -> 141[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 79[label="Nothing == vxw400",fontsize=16,color="burlywood",shape="box"];1913[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];79 -> 1913[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1913 -> 142[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1914[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];79 -> 1914[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1914 -> 143[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 80[label="Just vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1915[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];80 -> 1915[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1915 -> 144[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1916[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];80 -> 1916[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1916 -> 145[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 81[label="vxw300 : vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1917[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];81 -> 1917[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1917 -> 146[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1918[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];81 -> 1918[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1918 -> 147[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 82[label="[] == vxw400",fontsize=16,color="burlywood",shape="box"];1919[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];82 -> 1919[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1919 -> 148[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 1920[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];82 -> 1920[label="",style="solid", color="burlywood", weight=9]; 22.49/8.80 1920 -> 149[label="",style="solid", color="burlywood", weight=3]; 22.49/8.80 83[label="primEqFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1921[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];83 -> 1921[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1921 -> 150[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 84[label="primEqChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1922[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];84 -> 1922[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1922 -> 151[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 85[label="False == vxw400",fontsize=16,color="burlywood",shape="box"];1923[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];85 -> 1923[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1923 -> 152[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1924[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];85 -> 1924[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1924 -> 153[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 86[label="True == vxw400",fontsize=16,color="burlywood",shape="box"];1925[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];86 -> 1925[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1925 -> 154[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1926[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];86 -> 1926[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1926 -> 155[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 87[label="(vxw300,vxw301,vxw302) == vxw400",fontsize=16,color="burlywood",shape="box"];1927[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];87 -> 1927[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1927 -> 156[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 88 -> 200[label="",style="dashed", color="red", weight=0]; 22.49/8.81 88[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) (compare1 (Left vxw11) (Left vxw10) (Left vxw11 <= Left vxw10))",fontsize=16,color="magenta"];88 -> 201[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 88 -> 202[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 88 -> 203[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 88 -> 204[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 89[label="List.insertBy0 (Left vxw10) compare (Left vxw11) vxw12 (Left vxw10 : vxw12) EQ",fontsize=16,color="black",shape="box"];89 -> 158[label="",style="solid", color="black", weight=3]; 22.49/8.81 90[label="List.insertBy0 (Right vxw400) compare (Left vxw30) vxw41 (Right vxw400 : vxw41) LT",fontsize=16,color="black",shape="box"];90 -> 159[label="",style="solid", color="black", weight=3]; 22.49/8.81 91[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare0 (Right vxw30) (Left vxw400) otherwise)",fontsize=16,color="black",shape="box"];91 -> 160[label="",style="solid", color="black", weight=3]; 22.49/8.81 92[label="vxw400",fontsize=16,color="green",shape="box"];93[label="vxw30",fontsize=16,color="green",shape="box"];94[label="vxw400",fontsize=16,color="green",shape="box"];95[label="vxw30",fontsize=16,color="green",shape="box"];96[label="vxw400",fontsize=16,color="green",shape="box"];97[label="vxw30",fontsize=16,color="green",shape="box"];98[label="vxw400",fontsize=16,color="green",shape="box"];99[label="vxw30",fontsize=16,color="green",shape="box"];100[label="vxw400",fontsize=16,color="green",shape="box"];101[label="vxw30",fontsize=16,color="green",shape="box"];102[label="vxw400",fontsize=16,color="green",shape="box"];103[label="vxw30",fontsize=16,color="green",shape="box"];104[label="vxw400",fontsize=16,color="green",shape="box"];105[label="vxw30",fontsize=16,color="green",shape="box"];106[label="vxw400",fontsize=16,color="green",shape="box"];107[label="vxw30",fontsize=16,color="green",shape="box"];108[label="vxw400",fontsize=16,color="green",shape="box"];109[label="vxw30",fontsize=16,color="green",shape="box"];110[label="vxw400",fontsize=16,color="green",shape="box"];111[label="vxw30",fontsize=16,color="green",shape="box"];112[label="vxw400",fontsize=16,color="green",shape="box"];113[label="vxw30",fontsize=16,color="green",shape="box"];114[label="vxw400",fontsize=16,color="green",shape="box"];115[label="vxw30",fontsize=16,color="green",shape="box"];116[label="vxw400",fontsize=16,color="green",shape="box"];117[label="vxw30",fontsize=16,color="green",shape="box"];118[label="vxw400",fontsize=16,color="green",shape="box"];119[label="vxw30",fontsize=16,color="green",shape="box"];120 -> 213[label="",style="dashed", color="red", weight=0]; 22.49/8.81 120[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) (compare1 (Right vxw20) (Right vxw19) (Right vxw20 <= Right vxw19))",fontsize=16,color="magenta"];120 -> 214[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 120 -> 215[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 120 -> 216[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 120 -> 217[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 121[label="List.insertBy0 (Right vxw19) compare (Right vxw20) vxw21 (Right vxw19 : vxw21) EQ",fontsize=16,color="black",shape="box"];121 -> 162[label="",style="solid", color="black", weight=3]; 22.49/8.81 122[label="(vxw300,vxw301) == (vxw4000,vxw4001)",fontsize=16,color="black",shape="box"];122 -> 163[label="",style="solid", color="black", weight=3]; 22.49/8.81 123[label="primEqInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1928[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];123 -> 1928[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1928 -> 164[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1929[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];123 -> 1929[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1929 -> 165[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 124[label="primEqInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1930[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];124 -> 1930[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1930 -> 166[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1931[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];124 -> 1931[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1931 -> 167[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 125[label="vxw300 :% vxw301 == vxw4000 :% vxw4001",fontsize=16,color="black",shape="box"];125 -> 168[label="",style="solid", color="black", weight=3]; 22.49/8.81 126[label="Left vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];126 -> 169[label="",style="solid", color="black", weight=3]; 22.49/8.81 127[label="Left vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];127 -> 170[label="",style="solid", color="black", weight=3]; 22.49/8.81 128[label="Right vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];128 -> 171[label="",style="solid", color="black", weight=3]; 22.49/8.81 129[label="Right vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];129 -> 172[label="",style="solid", color="black", weight=3]; 22.49/8.81 130[label="Integer vxw300 == Integer vxw4000",fontsize=16,color="black",shape="box"];130 -> 173[label="",style="solid", color="black", weight=3]; 22.49/8.81 131[label="() == ()",fontsize=16,color="black",shape="box"];131 -> 174[label="",style="solid", color="black", weight=3]; 22.49/8.81 132[label="primEqDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1932[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];132 -> 1932[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1932 -> 175[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 133[label="LT == LT",fontsize=16,color="black",shape="box"];133 -> 176[label="",style="solid", color="black", weight=3]; 22.49/8.81 134[label="LT == EQ",fontsize=16,color="black",shape="box"];134 -> 177[label="",style="solid", color="black", weight=3]; 22.49/8.81 135[label="LT == GT",fontsize=16,color="black",shape="box"];135 -> 178[label="",style="solid", color="black", weight=3]; 22.49/8.81 136[label="EQ == LT",fontsize=16,color="black",shape="box"];136 -> 179[label="",style="solid", color="black", weight=3]; 22.49/8.81 137[label="EQ == EQ",fontsize=16,color="black",shape="box"];137 -> 180[label="",style="solid", color="black", weight=3]; 22.49/8.81 138[label="EQ == GT",fontsize=16,color="black",shape="box"];138 -> 181[label="",style="solid", color="black", weight=3]; 22.49/8.81 139[label="GT == LT",fontsize=16,color="black",shape="box"];139 -> 182[label="",style="solid", color="black", weight=3]; 22.49/8.81 140[label="GT == EQ",fontsize=16,color="black",shape="box"];140 -> 183[label="",style="solid", color="black", weight=3]; 22.49/8.81 141[label="GT == GT",fontsize=16,color="black",shape="box"];141 -> 184[label="",style="solid", color="black", weight=3]; 22.49/8.81 142[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];142 -> 185[label="",style="solid", color="black", weight=3]; 22.49/8.81 143[label="Nothing == Just vxw4000",fontsize=16,color="black",shape="box"];143 -> 186[label="",style="solid", color="black", weight=3]; 22.49/8.81 144[label="Just vxw300 == Nothing",fontsize=16,color="black",shape="box"];144 -> 187[label="",style="solid", color="black", weight=3]; 22.49/8.81 145[label="Just vxw300 == Just vxw4000",fontsize=16,color="black",shape="box"];145 -> 188[label="",style="solid", color="black", weight=3]; 22.49/8.81 146[label="vxw300 : vxw301 == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];146 -> 189[label="",style="solid", color="black", weight=3]; 22.49/8.81 147[label="vxw300 : vxw301 == []",fontsize=16,color="black",shape="box"];147 -> 190[label="",style="solid", color="black", weight=3]; 22.49/8.81 148[label="[] == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];148 -> 191[label="",style="solid", color="black", weight=3]; 22.49/8.81 149[label="[] == []",fontsize=16,color="black",shape="box"];149 -> 192[label="",style="solid", color="black", weight=3]; 22.49/8.81 150[label="primEqFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1933[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];150 -> 1933[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1933 -> 193[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 151[label="primEqChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1934[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];151 -> 1934[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1934 -> 194[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 152[label="False == False",fontsize=16,color="black",shape="box"];152 -> 195[label="",style="solid", color="black", weight=3]; 22.49/8.81 153[label="False == True",fontsize=16,color="black",shape="box"];153 -> 196[label="",style="solid", color="black", weight=3]; 22.49/8.81 154[label="True == False",fontsize=16,color="black",shape="box"];154 -> 197[label="",style="solid", color="black", weight=3]; 22.49/8.81 155[label="True == True",fontsize=16,color="black",shape="box"];155 -> 198[label="",style="solid", color="black", weight=3]; 22.49/8.81 156[label="(vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002)",fontsize=16,color="black",shape="box"];156 -> 199[label="",style="solid", color="black", weight=3]; 22.49/8.81 201[label="Left vxw11 <= Left vxw10",fontsize=16,color="black",shape="box"];201 -> 209[label="",style="solid", color="black", weight=3]; 22.49/8.81 202[label="vxw12",fontsize=16,color="green",shape="box"];203[label="vxw11",fontsize=16,color="green",shape="box"];204[label="vxw10",fontsize=16,color="green",shape="box"];200[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare1 (Left vxw29) (Left vxw28) vxw31)",fontsize=16,color="burlywood",shape="triangle"];1935[label="vxw31/False",fontsize=10,color="white",style="solid",shape="box"];200 -> 1935[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1935 -> 210[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1936[label="vxw31/True",fontsize=10,color="white",style="solid",shape="box"];200 -> 1936[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1936 -> 211[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 158[label="Left vxw11 : Left vxw10 : vxw12",fontsize=16,color="green",shape="box"];159[label="Left vxw30 : Right vxw400 : vxw41",fontsize=16,color="green",shape="box"];160[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) (compare0 (Right vxw30) (Left vxw400) True)",fontsize=16,color="black",shape="box"];160 -> 212[label="",style="solid", color="black", weight=3]; 22.49/8.81 214[label="vxw20",fontsize=16,color="green",shape="box"];215[label="vxw19",fontsize=16,color="green",shape="box"];216[label="Right vxw20 <= Right vxw19",fontsize=16,color="black",shape="box"];216 -> 222[label="",style="solid", color="black", weight=3]; 22.49/8.81 217[label="vxw21",fontsize=16,color="green",shape="box"];213[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare1 (Right vxw38) (Right vxw37) vxw40)",fontsize=16,color="burlywood",shape="triangle"];1937[label="vxw40/False",fontsize=10,color="white",style="solid",shape="box"];213 -> 1937[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1937 -> 223[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1938[label="vxw40/True",fontsize=10,color="white",style="solid",shape="box"];213 -> 1938[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1938 -> 224[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 162[label="Right vxw20 : Right vxw19 : vxw21",fontsize=16,color="green",shape="box"];163 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.81 163[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];163 -> 349[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 163 -> 350[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 164[label="primEqInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1939[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];164 -> 1939[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1939 -> 235[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1940[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];164 -> 1940[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1940 -> 236[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 165[label="primEqInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1941[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];165 -> 1941[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1941 -> 237[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1942[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];165 -> 1942[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1942 -> 238[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 166[label="primEqInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1943[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];166 -> 1943[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1943 -> 239[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1944[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];166 -> 1944[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1944 -> 240[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 167[label="primEqInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1945[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];167 -> 1945[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1945 -> 241[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 1946[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];167 -> 1946[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 1946 -> 242[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 168 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.81 168[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];168 -> 351[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 168 -> 352[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 169[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1947[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1947[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1947 -> 243[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1948[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1948[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1948 -> 244[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1949[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1949[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1949 -> 245[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1950[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1950[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1950 -> 246[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1951[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1951[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1951 -> 247[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1952[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1952[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1952 -> 248[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1953[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1953[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1953 -> 249[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1954[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1954[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1954 -> 250[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1955[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1955[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1955 -> 251[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1956[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1956[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1956 -> 252[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1957[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1957[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1957 -> 253[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1958[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1958[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1958 -> 254[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1959[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1959[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1959 -> 255[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1960[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];169 -> 1960[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1960 -> 256[label="",style="solid", color="blue", weight=3]; 22.49/8.81 170[label="False",fontsize=16,color="green",shape="box"];171[label="False",fontsize=16,color="green",shape="box"];172[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1961[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1961[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1961 -> 257[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1962[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1962[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1962 -> 258[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1963[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1963[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1963 -> 259[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1964[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1964[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1964 -> 260[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1965[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1965[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1965 -> 261[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1966[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1966[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1966 -> 262[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1967[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1967[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1967 -> 263[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1968[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1968[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1968 -> 264[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1969[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1969[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1969 -> 265[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1970[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1970[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1970 -> 266[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1971[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1971[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1971 -> 267[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1972[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1972[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1972 -> 268[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1973[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1973[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1973 -> 269[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1974[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];172 -> 1974[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1974 -> 270[label="",style="solid", color="blue", weight=3]; 22.49/8.81 173 -> 69[label="",style="dashed", color="red", weight=0]; 22.49/8.81 173[label="primEqInt vxw300 vxw4000",fontsize=16,color="magenta"];173 -> 271[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 173 -> 272[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 174[label="True",fontsize=16,color="green",shape="box"];175[label="primEqDouble (Double vxw300 vxw301) (Double vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];175 -> 273[label="",style="solid", color="black", weight=3]; 22.49/8.81 176[label="True",fontsize=16,color="green",shape="box"];177[label="False",fontsize=16,color="green",shape="box"];178[label="False",fontsize=16,color="green",shape="box"];179[label="False",fontsize=16,color="green",shape="box"];180[label="True",fontsize=16,color="green",shape="box"];181[label="False",fontsize=16,color="green",shape="box"];182[label="False",fontsize=16,color="green",shape="box"];183[label="False",fontsize=16,color="green",shape="box"];184[label="True",fontsize=16,color="green",shape="box"];185[label="True",fontsize=16,color="green",shape="box"];186[label="False",fontsize=16,color="green",shape="box"];187[label="False",fontsize=16,color="green",shape="box"];188[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1975[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1975[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1975 -> 274[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1976[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1976[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1976 -> 275[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1977[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1977[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1977 -> 276[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1978[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1978[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1978 -> 277[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1979[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1979[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1979 -> 278[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1980[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1980[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1980 -> 279[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1981[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1981[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1981 -> 280[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1982[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1982[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1982 -> 281[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1983[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1983[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1983 -> 282[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1984[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1984[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1984 -> 283[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1985[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1985[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1985 -> 284[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1986[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1986[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1986 -> 285[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1987[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1987[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1987 -> 286[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1988[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];188 -> 1988[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1988 -> 287[label="",style="solid", color="blue", weight=3]; 22.49/8.81 189 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.81 189[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];189 -> 353[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 189 -> 354[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 190[label="False",fontsize=16,color="green",shape="box"];191[label="False",fontsize=16,color="green",shape="box"];192[label="True",fontsize=16,color="green",shape="box"];193[label="primEqFloat (Float vxw300 vxw301) (Float vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];193 -> 288[label="",style="solid", color="black", weight=3]; 22.49/8.81 194[label="primEqChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];194 -> 289[label="",style="solid", color="black", weight=3]; 22.49/8.81 195[label="True",fontsize=16,color="green",shape="box"];196[label="False",fontsize=16,color="green",shape="box"];197[label="False",fontsize=16,color="green",shape="box"];198[label="True",fontsize=16,color="green",shape="box"];199 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.81 199[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];199 -> 355[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 199 -> 356[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 209[label="vxw11 <= vxw10",fontsize=16,color="blue",shape="box"];1989[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1989[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1989 -> 301[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1990[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1990[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1990 -> 302[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1991[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1991[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1991 -> 303[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1992[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1992[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1992 -> 304[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1993[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1993[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1993 -> 305[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1994[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1994[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1994 -> 306[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1995[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1995[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1995 -> 307[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1996[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1996[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1996 -> 308[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1997[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1997[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1997 -> 309[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1998[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1998[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1998 -> 310[label="",style="solid", color="blue", weight=3]; 22.49/8.81 1999[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 1999[label="",style="solid", color="blue", weight=9]; 22.49/8.81 1999 -> 311[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2000[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 2000[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2000 -> 312[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2001[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 2001[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2001 -> 313[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2002[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];209 -> 2002[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2002 -> 314[label="",style="solid", color="blue", weight=3]; 22.49/8.81 210[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare1 (Left vxw29) (Left vxw28) False)",fontsize=16,color="black",shape="box"];210 -> 315[label="",style="solid", color="black", weight=3]; 22.49/8.81 211[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare1 (Left vxw29) (Left vxw28) True)",fontsize=16,color="black",shape="box"];211 -> 316[label="",style="solid", color="black", weight=3]; 22.49/8.81 212[label="List.insertBy0 (Left vxw400) compare (Right vxw30) vxw41 (Left vxw400 : vxw41) GT",fontsize=16,color="black",shape="box"];212 -> 317[label="",style="solid", color="black", weight=3]; 22.49/8.81 222[label="vxw20 <= vxw19",fontsize=16,color="blue",shape="box"];2003[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2003[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2003 -> 318[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2004[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2004[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2004 -> 319[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2005[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2005[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2005 -> 320[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2006[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2006[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2006 -> 321[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2007[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2007[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2007 -> 322[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2008[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2008[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2008 -> 323[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2009[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2009[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2009 -> 324[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2010[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2010[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2010 -> 325[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2011[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2011[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2011 -> 326[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2012[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2012[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2012 -> 327[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2013[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2013[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2013 -> 328[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2014[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2014[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2014 -> 329[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2015[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2015[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2015 -> 330[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2016[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];222 -> 2016[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2016 -> 331[label="",style="solid", color="blue", weight=3]; 22.49/8.81 223[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare1 (Right vxw38) (Right vxw37) False)",fontsize=16,color="black",shape="box"];223 -> 332[label="",style="solid", color="black", weight=3]; 22.49/8.81 224[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare1 (Right vxw38) (Right vxw37) True)",fontsize=16,color="black",shape="box"];224 -> 333[label="",style="solid", color="black", weight=3]; 22.49/8.81 349[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2017[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2017[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2017 -> 361[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2018[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2018[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2018 -> 362[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2019[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2019[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2019 -> 363[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2020[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2020[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2020 -> 364[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2021[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2021[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2021 -> 365[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2022[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2022[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2022 -> 366[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2023[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2023[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2023 -> 367[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2024[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2024[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2024 -> 368[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2025[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2025[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2025 -> 369[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2026[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2026[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2026 -> 370[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2027[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2027[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2027 -> 371[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2028[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2028[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2028 -> 372[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2029[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2029[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2029 -> 373[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2030[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 2030[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2030 -> 374[label="",style="solid", color="blue", weight=3]; 22.49/8.81 350[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2031[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2031[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2031 -> 375[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2032[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2032[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2032 -> 376[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2033[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2033[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2033 -> 377[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2034[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2034[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2034 -> 378[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2035[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2035[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2035 -> 379[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2036[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2036[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2036 -> 380[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2037[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2037[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2037 -> 381[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2038[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2038[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2038 -> 382[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2039[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2039[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2039 -> 383[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2040[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2040[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2040 -> 384[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2041[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2041[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2041 -> 385[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2042[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2042[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2042 -> 386[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2043[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2043[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2043 -> 387[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2044[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 2044[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2044 -> 388[label="",style="solid", color="blue", weight=3]; 22.49/8.81 348[label="vxw52 && vxw53",fontsize=16,color="burlywood",shape="triangle"];2045[label="vxw52/False",fontsize=10,color="white",style="solid",shape="box"];348 -> 2045[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2045 -> 389[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2046[label="vxw52/True",fontsize=10,color="white",style="solid",shape="box"];348 -> 2046[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2046 -> 390[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 235[label="primEqInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2047[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];235 -> 2047[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2047 -> 391[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2048[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];235 -> 2048[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2048 -> 392[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 236[label="primEqInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];236 -> 393[label="",style="solid", color="black", weight=3]; 22.49/8.81 237[label="primEqInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2049[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];237 -> 2049[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2049 -> 394[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2050[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];237 -> 2050[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2050 -> 395[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 238[label="primEqInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2051[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];238 -> 2051[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2051 -> 396[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2052[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];238 -> 2052[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2052 -> 397[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 239[label="primEqInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];239 -> 398[label="",style="solid", color="black", weight=3]; 22.49/8.81 240[label="primEqInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2053[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];240 -> 2053[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2053 -> 399[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2054[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];240 -> 2054[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2054 -> 400[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 241[label="primEqInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2055[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];241 -> 2055[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2055 -> 401[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2056[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];241 -> 2056[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2056 -> 402[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 242[label="primEqInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2057[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];242 -> 2057[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2057 -> 403[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2058[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];242 -> 2058[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2058 -> 404[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 351[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2059[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];351 -> 2059[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2059 -> 405[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2060[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];351 -> 2060[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2060 -> 406[label="",style="solid", color="blue", weight=3]; 22.49/8.81 352[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2061[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];352 -> 2061[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2061 -> 407[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2062[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];352 -> 2062[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2062 -> 408[label="",style="solid", color="blue", weight=3]; 22.49/8.81 243 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 243[label="vxw300 == vxw4000",fontsize=16,color="magenta"];243 -> 409[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 243 -> 410[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 244 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 244[label="vxw300 == vxw4000",fontsize=16,color="magenta"];244 -> 411[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 244 -> 412[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 245 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 245[label="vxw300 == vxw4000",fontsize=16,color="magenta"];245 -> 413[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 245 -> 414[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 246 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 246[label="vxw300 == vxw4000",fontsize=16,color="magenta"];246 -> 415[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 246 -> 416[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 247 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 247[label="vxw300 == vxw4000",fontsize=16,color="magenta"];247 -> 417[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 247 -> 418[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 248 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 248[label="vxw300 == vxw4000",fontsize=16,color="magenta"];248 -> 419[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 248 -> 420[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 249 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 249[label="vxw300 == vxw4000",fontsize=16,color="magenta"];249 -> 421[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 249 -> 422[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 250 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 250[label="vxw300 == vxw4000",fontsize=16,color="magenta"];250 -> 423[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 250 -> 424[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 251 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 251[label="vxw300 == vxw4000",fontsize=16,color="magenta"];251 -> 425[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 251 -> 426[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 252 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 252[label="vxw300 == vxw4000",fontsize=16,color="magenta"];252 -> 427[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 252 -> 428[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 253 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 253[label="vxw300 == vxw4000",fontsize=16,color="magenta"];253 -> 429[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 253 -> 430[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 254 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 254[label="vxw300 == vxw4000",fontsize=16,color="magenta"];254 -> 431[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 254 -> 432[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 255 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 255[label="vxw300 == vxw4000",fontsize=16,color="magenta"];255 -> 433[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 255 -> 434[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 256 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 256[label="vxw300 == vxw4000",fontsize=16,color="magenta"];256 -> 435[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 256 -> 436[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 257 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 257[label="vxw300 == vxw4000",fontsize=16,color="magenta"];257 -> 437[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 257 -> 438[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 258 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 258[label="vxw300 == vxw4000",fontsize=16,color="magenta"];258 -> 439[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 258 -> 440[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 259 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 259[label="vxw300 == vxw4000",fontsize=16,color="magenta"];259 -> 441[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 259 -> 442[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 260 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 260[label="vxw300 == vxw4000",fontsize=16,color="magenta"];260 -> 443[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 260 -> 444[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 261 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 261[label="vxw300 == vxw4000",fontsize=16,color="magenta"];261 -> 445[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 261 -> 446[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 262 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 262[label="vxw300 == vxw4000",fontsize=16,color="magenta"];262 -> 447[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 262 -> 448[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 263 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 263[label="vxw300 == vxw4000",fontsize=16,color="magenta"];263 -> 449[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 263 -> 450[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 264 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 264[label="vxw300 == vxw4000",fontsize=16,color="magenta"];264 -> 451[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 264 -> 452[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 265 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 265[label="vxw300 == vxw4000",fontsize=16,color="magenta"];265 -> 453[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 265 -> 454[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 266 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 266[label="vxw300 == vxw4000",fontsize=16,color="magenta"];266 -> 455[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 266 -> 456[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 267 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 267[label="vxw300 == vxw4000",fontsize=16,color="magenta"];267 -> 457[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 267 -> 458[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 268 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 268[label="vxw300 == vxw4000",fontsize=16,color="magenta"];268 -> 459[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 268 -> 460[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 269 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 269[label="vxw300 == vxw4000",fontsize=16,color="magenta"];269 -> 461[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 269 -> 462[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 270 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 270[label="vxw300 == vxw4000",fontsize=16,color="magenta"];270 -> 463[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 270 -> 464[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 271[label="vxw4000",fontsize=16,color="green",shape="box"];272[label="vxw300",fontsize=16,color="green",shape="box"];273 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 273[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];273 -> 465[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 273 -> 466[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 274 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 274[label="vxw300 == vxw4000",fontsize=16,color="magenta"];274 -> 467[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 274 -> 468[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 275 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 275[label="vxw300 == vxw4000",fontsize=16,color="magenta"];275 -> 469[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 275 -> 470[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 276 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 276[label="vxw300 == vxw4000",fontsize=16,color="magenta"];276 -> 471[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 276 -> 472[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 277 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 277[label="vxw300 == vxw4000",fontsize=16,color="magenta"];277 -> 473[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 277 -> 474[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 278 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 278[label="vxw300 == vxw4000",fontsize=16,color="magenta"];278 -> 475[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 278 -> 476[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 279 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 279[label="vxw300 == vxw4000",fontsize=16,color="magenta"];279 -> 477[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 279 -> 478[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 280 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 280[label="vxw300 == vxw4000",fontsize=16,color="magenta"];280 -> 479[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 280 -> 480[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 281 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 281[label="vxw300 == vxw4000",fontsize=16,color="magenta"];281 -> 481[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 281 -> 482[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 282 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 282[label="vxw300 == vxw4000",fontsize=16,color="magenta"];282 -> 483[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 282 -> 484[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 283 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 283[label="vxw300 == vxw4000",fontsize=16,color="magenta"];283 -> 485[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 283 -> 486[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 284 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 284[label="vxw300 == vxw4000",fontsize=16,color="magenta"];284 -> 487[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 284 -> 488[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 285 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 285[label="vxw300 == vxw4000",fontsize=16,color="magenta"];285 -> 489[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 285 -> 490[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 286 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 286[label="vxw300 == vxw4000",fontsize=16,color="magenta"];286 -> 491[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 286 -> 492[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 287 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 287[label="vxw300 == vxw4000",fontsize=16,color="magenta"];287 -> 493[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 287 -> 494[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 353 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 353[label="vxw301 == vxw4001",fontsize=16,color="magenta"];353 -> 495[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 353 -> 496[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 354[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2063[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2063[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2063 -> 497[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2064[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2064[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2064 -> 498[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2065[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2065[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2065 -> 499[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2066[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2066[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2066 -> 500[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2067[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2067[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2067 -> 501[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2068[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2068[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2068 -> 502[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2069[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2069[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2069 -> 503[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2070[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2070[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2070 -> 504[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2071[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2071[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2071 -> 505[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2072[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2072[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2072 -> 506[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2073[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2073[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2073 -> 507[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2074[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2074[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2074 -> 508[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2075[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2075[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2075 -> 509[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2076[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];354 -> 2076[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2076 -> 510[label="",style="solid", color="blue", weight=3]; 22.49/8.81 288 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 288[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];288 -> 511[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 288 -> 512[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 289[label="primEqNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2077[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];289 -> 2077[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2077 -> 513[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2078[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];289 -> 2078[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2078 -> 514[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 355 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.81 355[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];355 -> 515[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 355 -> 516[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 356[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2079[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2079[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2079 -> 517[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2080[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2080[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2080 -> 518[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2081[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2081[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2081 -> 519[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2082[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2082[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2082 -> 520[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2083[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2083[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2083 -> 521[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2084[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2084[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2084 -> 522[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2085[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2085[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2085 -> 523[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2086[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2086[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2086 -> 524[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2087[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2087[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2087 -> 525[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2088[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2088[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2088 -> 526[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2089[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2089[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2089 -> 527[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2090[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2090[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2090 -> 528[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2091[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2091[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2091 -> 529[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2092[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];356 -> 2092[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2092 -> 530[label="",style="solid", color="blue", weight=3]; 22.49/8.81 301[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];301 -> 531[label="",style="solid", color="black", weight=3]; 22.49/8.81 302[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2093[label="vxw11/(vxw110,vxw111,vxw112)",fontsize=10,color="white",style="solid",shape="box"];302 -> 2093[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2093 -> 532[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 303[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2094[label="vxw11/Left vxw110",fontsize=10,color="white",style="solid",shape="box"];303 -> 2094[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2094 -> 533[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2095[label="vxw11/Right vxw110",fontsize=10,color="white",style="solid",shape="box"];303 -> 2095[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2095 -> 534[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 304[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];304 -> 535[label="",style="solid", color="black", weight=3]; 22.49/8.81 305[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2096[label="vxw11/False",fontsize=10,color="white",style="solid",shape="box"];305 -> 2096[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2096 -> 536[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2097[label="vxw11/True",fontsize=10,color="white",style="solid",shape="box"];305 -> 2097[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2097 -> 537[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 306[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];306 -> 538[label="",style="solid", color="black", weight=3]; 22.49/8.81 307[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];307 -> 539[label="",style="solid", color="black", weight=3]; 22.49/8.81 308[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];308 -> 540[label="",style="solid", color="black", weight=3]; 22.49/8.81 309[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];309 -> 541[label="",style="solid", color="black", weight=3]; 22.49/8.81 310[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];310 -> 542[label="",style="solid", color="black", weight=3]; 22.49/8.81 311[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2098[label="vxw11/LT",fontsize=10,color="white",style="solid",shape="box"];311 -> 2098[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2098 -> 543[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2099[label="vxw11/EQ",fontsize=10,color="white",style="solid",shape="box"];311 -> 2099[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2099 -> 544[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2100[label="vxw11/GT",fontsize=10,color="white",style="solid",shape="box"];311 -> 2100[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2100 -> 545[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 312[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2101[label="vxw11/Nothing",fontsize=10,color="white",style="solid",shape="box"];312 -> 2101[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2101 -> 546[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2102[label="vxw11/Just vxw110",fontsize=10,color="white",style="solid",shape="box"];312 -> 2102[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2102 -> 547[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 313[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];313 -> 548[label="",style="solid", color="black", weight=3]; 22.49/8.81 314[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];2103[label="vxw11/(vxw110,vxw111)",fontsize=10,color="white",style="solid",shape="box"];314 -> 2103[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2103 -> 549[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 315[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare0 (Left vxw29) (Left vxw28) otherwise)",fontsize=16,color="black",shape="box"];315 -> 550[label="",style="solid", color="black", weight=3]; 22.49/8.81 316[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) LT",fontsize=16,color="black",shape="box"];316 -> 551[label="",style="solid", color="black", weight=3]; 22.49/8.81 317[label="Left vxw400 : List.insertBy compare (Right vxw30) vxw41",fontsize=16,color="green",shape="box"];317 -> 552[label="",style="dashed", color="green", weight=3]; 22.49/8.81 318 -> 301[label="",style="dashed", color="red", weight=0]; 22.49/8.81 318[label="vxw20 <= vxw19",fontsize=16,color="magenta"];318 -> 553[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 318 -> 554[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 319 -> 302[label="",style="dashed", color="red", weight=0]; 22.49/8.81 319[label="vxw20 <= vxw19",fontsize=16,color="magenta"];319 -> 555[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 319 -> 556[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 320 -> 303[label="",style="dashed", color="red", weight=0]; 22.49/8.81 320[label="vxw20 <= vxw19",fontsize=16,color="magenta"];320 -> 557[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 320 -> 558[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 321 -> 304[label="",style="dashed", color="red", weight=0]; 22.49/8.81 321[label="vxw20 <= vxw19",fontsize=16,color="magenta"];321 -> 559[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 321 -> 560[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 322 -> 305[label="",style="dashed", color="red", weight=0]; 22.49/8.81 322[label="vxw20 <= vxw19",fontsize=16,color="magenta"];322 -> 561[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 322 -> 562[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 323 -> 306[label="",style="dashed", color="red", weight=0]; 22.49/8.81 323[label="vxw20 <= vxw19",fontsize=16,color="magenta"];323 -> 563[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 323 -> 564[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 324 -> 307[label="",style="dashed", color="red", weight=0]; 22.49/8.81 324[label="vxw20 <= vxw19",fontsize=16,color="magenta"];324 -> 565[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 324 -> 566[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 325 -> 308[label="",style="dashed", color="red", weight=0]; 22.49/8.81 325[label="vxw20 <= vxw19",fontsize=16,color="magenta"];325 -> 567[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 325 -> 568[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 326 -> 309[label="",style="dashed", color="red", weight=0]; 22.49/8.81 326[label="vxw20 <= vxw19",fontsize=16,color="magenta"];326 -> 569[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 326 -> 570[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 327 -> 310[label="",style="dashed", color="red", weight=0]; 22.49/8.81 327[label="vxw20 <= vxw19",fontsize=16,color="magenta"];327 -> 571[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 327 -> 572[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 328 -> 311[label="",style="dashed", color="red", weight=0]; 22.49/8.81 328[label="vxw20 <= vxw19",fontsize=16,color="magenta"];328 -> 573[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 328 -> 574[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 329 -> 312[label="",style="dashed", color="red", weight=0]; 22.49/8.81 329[label="vxw20 <= vxw19",fontsize=16,color="magenta"];329 -> 575[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 329 -> 576[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 330 -> 313[label="",style="dashed", color="red", weight=0]; 22.49/8.81 330[label="vxw20 <= vxw19",fontsize=16,color="magenta"];330 -> 577[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 330 -> 578[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 331 -> 314[label="",style="dashed", color="red", weight=0]; 22.49/8.81 331[label="vxw20 <= vxw19",fontsize=16,color="magenta"];331 -> 579[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 331 -> 580[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 332[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare0 (Right vxw38) (Right vxw37) otherwise)",fontsize=16,color="black",shape="box"];332 -> 581[label="",style="solid", color="black", weight=3]; 22.49/8.81 333[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) LT",fontsize=16,color="black",shape="box"];333 -> 582[label="",style="solid", color="black", weight=3]; 22.49/8.81 361 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 361[label="vxw301 == vxw4001",fontsize=16,color="magenta"];361 -> 583[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 361 -> 584[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 362 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 362[label="vxw301 == vxw4001",fontsize=16,color="magenta"];362 -> 585[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 362 -> 586[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 363 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 363[label="vxw301 == vxw4001",fontsize=16,color="magenta"];363 -> 587[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 363 -> 588[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 364 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 364[label="vxw301 == vxw4001",fontsize=16,color="magenta"];364 -> 589[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 364 -> 590[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 365 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 365[label="vxw301 == vxw4001",fontsize=16,color="magenta"];365 -> 591[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 365 -> 592[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 366 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 366[label="vxw301 == vxw4001",fontsize=16,color="magenta"];366 -> 593[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 366 -> 594[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 367 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 367[label="vxw301 == vxw4001",fontsize=16,color="magenta"];367 -> 595[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 367 -> 596[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 368 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 368[label="vxw301 == vxw4001",fontsize=16,color="magenta"];368 -> 597[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 368 -> 598[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 369 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 369[label="vxw301 == vxw4001",fontsize=16,color="magenta"];369 -> 599[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 369 -> 600[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 370 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 370[label="vxw301 == vxw4001",fontsize=16,color="magenta"];370 -> 601[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 370 -> 602[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 371 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 371[label="vxw301 == vxw4001",fontsize=16,color="magenta"];371 -> 603[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 371 -> 604[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 372 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 372[label="vxw301 == vxw4001",fontsize=16,color="magenta"];372 -> 605[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 372 -> 606[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 373 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 373[label="vxw301 == vxw4001",fontsize=16,color="magenta"];373 -> 607[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 373 -> 608[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 374 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 374[label="vxw301 == vxw4001",fontsize=16,color="magenta"];374 -> 609[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 374 -> 610[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 375 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 375[label="vxw300 == vxw4000",fontsize=16,color="magenta"];375 -> 611[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 375 -> 612[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 376 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 376[label="vxw300 == vxw4000",fontsize=16,color="magenta"];376 -> 613[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 376 -> 614[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 377 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 377[label="vxw300 == vxw4000",fontsize=16,color="magenta"];377 -> 615[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 377 -> 616[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 378 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 378[label="vxw300 == vxw4000",fontsize=16,color="magenta"];378 -> 617[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 378 -> 618[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 379 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 379[label="vxw300 == vxw4000",fontsize=16,color="magenta"];379 -> 619[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 379 -> 620[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 380 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 380[label="vxw300 == vxw4000",fontsize=16,color="magenta"];380 -> 621[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 380 -> 622[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 381 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 381[label="vxw300 == vxw4000",fontsize=16,color="magenta"];381 -> 623[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 381 -> 624[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 382 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 382[label="vxw300 == vxw4000",fontsize=16,color="magenta"];382 -> 625[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 382 -> 626[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 383 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 383[label="vxw300 == vxw4000",fontsize=16,color="magenta"];383 -> 627[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 383 -> 628[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 384 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 384[label="vxw300 == vxw4000",fontsize=16,color="magenta"];384 -> 629[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 384 -> 630[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 385 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 385[label="vxw300 == vxw4000",fontsize=16,color="magenta"];385 -> 631[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 385 -> 632[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 386 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 386[label="vxw300 == vxw4000",fontsize=16,color="magenta"];386 -> 633[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 386 -> 634[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 387 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 387[label="vxw300 == vxw4000",fontsize=16,color="magenta"];387 -> 635[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 387 -> 636[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 388 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 388[label="vxw300 == vxw4000",fontsize=16,color="magenta"];388 -> 637[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 388 -> 638[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 389[label="False && vxw53",fontsize=16,color="black",shape="box"];389 -> 639[label="",style="solid", color="black", weight=3]; 22.49/8.81 390[label="True && vxw53",fontsize=16,color="black",shape="box"];390 -> 640[label="",style="solid", color="black", weight=3]; 22.49/8.81 391[label="primEqInt (Pos (Succ vxw3000)) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];391 -> 641[label="",style="solid", color="black", weight=3]; 22.49/8.81 392[label="primEqInt (Pos (Succ vxw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];392 -> 642[label="",style="solid", color="black", weight=3]; 22.49/8.81 393[label="False",fontsize=16,color="green",shape="box"];394[label="primEqInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];394 -> 643[label="",style="solid", color="black", weight=3]; 22.49/8.81 395[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];395 -> 644[label="",style="solid", color="black", weight=3]; 22.49/8.81 396[label="primEqInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];396 -> 645[label="",style="solid", color="black", weight=3]; 22.49/8.81 397[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];397 -> 646[label="",style="solid", color="black", weight=3]; 22.49/8.81 398[label="False",fontsize=16,color="green",shape="box"];399[label="primEqInt (Neg (Succ vxw3000)) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];399 -> 647[label="",style="solid", color="black", weight=3]; 22.49/8.81 400[label="primEqInt (Neg (Succ vxw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];400 -> 648[label="",style="solid", color="black", weight=3]; 22.49/8.81 401[label="primEqInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];401 -> 649[label="",style="solid", color="black", weight=3]; 22.49/8.81 402[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];402 -> 650[label="",style="solid", color="black", weight=3]; 22.49/8.81 403[label="primEqInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];403 -> 651[label="",style="solid", color="black", weight=3]; 22.49/8.81 404[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];404 -> 652[label="",style="solid", color="black", weight=3]; 22.49/8.81 405 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 405[label="vxw301 == vxw4001",fontsize=16,color="magenta"];405 -> 653[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 405 -> 654[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 406 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 406[label="vxw301 == vxw4001",fontsize=16,color="magenta"];406 -> 655[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 406 -> 656[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 407 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 407[label="vxw300 == vxw4000",fontsize=16,color="magenta"];407 -> 657[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 407 -> 658[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 408 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 408[label="vxw300 == vxw4000",fontsize=16,color="magenta"];408 -> 659[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 408 -> 660[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 409[label="vxw4000",fontsize=16,color="green",shape="box"];410[label="vxw300",fontsize=16,color="green",shape="box"];411[label="vxw4000",fontsize=16,color="green",shape="box"];412[label="vxw300",fontsize=16,color="green",shape="box"];413[label="vxw4000",fontsize=16,color="green",shape="box"];414[label="vxw300",fontsize=16,color="green",shape="box"];415[label="vxw4000",fontsize=16,color="green",shape="box"];416[label="vxw300",fontsize=16,color="green",shape="box"];417[label="vxw4000",fontsize=16,color="green",shape="box"];418[label="vxw300",fontsize=16,color="green",shape="box"];419[label="vxw4000",fontsize=16,color="green",shape="box"];420[label="vxw300",fontsize=16,color="green",shape="box"];421[label="vxw4000",fontsize=16,color="green",shape="box"];422[label="vxw300",fontsize=16,color="green",shape="box"];423[label="vxw4000",fontsize=16,color="green",shape="box"];424[label="vxw300",fontsize=16,color="green",shape="box"];425[label="vxw4000",fontsize=16,color="green",shape="box"];426[label="vxw300",fontsize=16,color="green",shape="box"];427[label="vxw4000",fontsize=16,color="green",shape="box"];428[label="vxw300",fontsize=16,color="green",shape="box"];429[label="vxw4000",fontsize=16,color="green",shape="box"];430[label="vxw300",fontsize=16,color="green",shape="box"];431[label="vxw4000",fontsize=16,color="green",shape="box"];432[label="vxw300",fontsize=16,color="green",shape="box"];433[label="vxw4000",fontsize=16,color="green",shape="box"];434[label="vxw300",fontsize=16,color="green",shape="box"];435[label="vxw4000",fontsize=16,color="green",shape="box"];436[label="vxw300",fontsize=16,color="green",shape="box"];437[label="vxw4000",fontsize=16,color="green",shape="box"];438[label="vxw300",fontsize=16,color="green",shape="box"];439[label="vxw4000",fontsize=16,color="green",shape="box"];440[label="vxw300",fontsize=16,color="green",shape="box"];441[label="vxw4000",fontsize=16,color="green",shape="box"];442[label="vxw300",fontsize=16,color="green",shape="box"];443[label="vxw4000",fontsize=16,color="green",shape="box"];444[label="vxw300",fontsize=16,color="green",shape="box"];445[label="vxw4000",fontsize=16,color="green",shape="box"];446[label="vxw300",fontsize=16,color="green",shape="box"];447[label="vxw4000",fontsize=16,color="green",shape="box"];448[label="vxw300",fontsize=16,color="green",shape="box"];449[label="vxw4000",fontsize=16,color="green",shape="box"];450[label="vxw300",fontsize=16,color="green",shape="box"];451[label="vxw4000",fontsize=16,color="green",shape="box"];452[label="vxw300",fontsize=16,color="green",shape="box"];453[label="vxw4000",fontsize=16,color="green",shape="box"];454[label="vxw300",fontsize=16,color="green",shape="box"];455[label="vxw4000",fontsize=16,color="green",shape="box"];456[label="vxw300",fontsize=16,color="green",shape="box"];457[label="vxw4000",fontsize=16,color="green",shape="box"];458[label="vxw300",fontsize=16,color="green",shape="box"];459[label="vxw4000",fontsize=16,color="green",shape="box"];460[label="vxw300",fontsize=16,color="green",shape="box"];461[label="vxw4000",fontsize=16,color="green",shape="box"];462[label="vxw300",fontsize=16,color="green",shape="box"];463[label="vxw4000",fontsize=16,color="green",shape="box"];464[label="vxw300",fontsize=16,color="green",shape="box"];465[label="vxw301 * vxw4000",fontsize=16,color="black",shape="triangle"];465 -> 661[label="",style="solid", color="black", weight=3]; 22.49/8.81 466 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.81 466[label="vxw300 * vxw4001",fontsize=16,color="magenta"];466 -> 662[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 466 -> 663[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 467[label="vxw4000",fontsize=16,color="green",shape="box"];468[label="vxw300",fontsize=16,color="green",shape="box"];469[label="vxw4000",fontsize=16,color="green",shape="box"];470[label="vxw300",fontsize=16,color="green",shape="box"];471[label="vxw4000",fontsize=16,color="green",shape="box"];472[label="vxw300",fontsize=16,color="green",shape="box"];473[label="vxw4000",fontsize=16,color="green",shape="box"];474[label="vxw300",fontsize=16,color="green",shape="box"];475[label="vxw4000",fontsize=16,color="green",shape="box"];476[label="vxw300",fontsize=16,color="green",shape="box"];477[label="vxw4000",fontsize=16,color="green",shape="box"];478[label="vxw300",fontsize=16,color="green",shape="box"];479[label="vxw4000",fontsize=16,color="green",shape="box"];480[label="vxw300",fontsize=16,color="green",shape="box"];481[label="vxw4000",fontsize=16,color="green",shape="box"];482[label="vxw300",fontsize=16,color="green",shape="box"];483[label="vxw4000",fontsize=16,color="green",shape="box"];484[label="vxw300",fontsize=16,color="green",shape="box"];485[label="vxw4000",fontsize=16,color="green",shape="box"];486[label="vxw300",fontsize=16,color="green",shape="box"];487[label="vxw4000",fontsize=16,color="green",shape="box"];488[label="vxw300",fontsize=16,color="green",shape="box"];489[label="vxw4000",fontsize=16,color="green",shape="box"];490[label="vxw300",fontsize=16,color="green",shape="box"];491[label="vxw4000",fontsize=16,color="green",shape="box"];492[label="vxw300",fontsize=16,color="green",shape="box"];493[label="vxw4000",fontsize=16,color="green",shape="box"];494[label="vxw300",fontsize=16,color="green",shape="box"];495[label="vxw4001",fontsize=16,color="green",shape="box"];496[label="vxw301",fontsize=16,color="green",shape="box"];497 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 497[label="vxw300 == vxw4000",fontsize=16,color="magenta"];497 -> 664[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 497 -> 665[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 498 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 498[label="vxw300 == vxw4000",fontsize=16,color="magenta"];498 -> 666[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 498 -> 667[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 499 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 499[label="vxw300 == vxw4000",fontsize=16,color="magenta"];499 -> 668[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 499 -> 669[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 500 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 500[label="vxw300 == vxw4000",fontsize=16,color="magenta"];500 -> 670[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 500 -> 671[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 501 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 501[label="vxw300 == vxw4000",fontsize=16,color="magenta"];501 -> 672[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 501 -> 673[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 502 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 502[label="vxw300 == vxw4000",fontsize=16,color="magenta"];502 -> 674[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 502 -> 675[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 503 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 503[label="vxw300 == vxw4000",fontsize=16,color="magenta"];503 -> 676[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 503 -> 677[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 504 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 504[label="vxw300 == vxw4000",fontsize=16,color="magenta"];504 -> 678[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 504 -> 679[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 505 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 505[label="vxw300 == vxw4000",fontsize=16,color="magenta"];505 -> 680[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 505 -> 681[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 506 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 506[label="vxw300 == vxw4000",fontsize=16,color="magenta"];506 -> 682[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 506 -> 683[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 507 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 507[label="vxw300 == vxw4000",fontsize=16,color="magenta"];507 -> 684[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 507 -> 685[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 508 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 508[label="vxw300 == vxw4000",fontsize=16,color="magenta"];508 -> 686[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 508 -> 687[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 509 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 509[label="vxw300 == vxw4000",fontsize=16,color="magenta"];509 -> 688[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 509 -> 689[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 510 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 510[label="vxw300 == vxw4000",fontsize=16,color="magenta"];510 -> 690[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 510 -> 691[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 511 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.81 511[label="vxw301 * vxw4000",fontsize=16,color="magenta"];511 -> 692[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 511 -> 693[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 512 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.81 512[label="vxw300 * vxw4001",fontsize=16,color="magenta"];512 -> 694[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 512 -> 695[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 513[label="primEqNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];2104[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];513 -> 2104[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2104 -> 696[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2105[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];513 -> 2105[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2105 -> 697[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 514[label="primEqNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];2106[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];514 -> 2106[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2106 -> 698[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2107[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];514 -> 2107[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2107 -> 699[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 515[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];2108[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2108[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2108 -> 700[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2109[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2109[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2109 -> 701[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2110[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2110[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2110 -> 702[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2111[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2111[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2111 -> 703[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2112[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2112[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2112 -> 704[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2113[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2113[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2113 -> 705[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2114[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2114[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2114 -> 706[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2115[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2115[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2115 -> 707[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2116[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2116[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2116 -> 708[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2117[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2117[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2117 -> 709[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2118[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2118[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2118 -> 710[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2119[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2119[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2119 -> 711[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2120[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2120[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2120 -> 712[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2121[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];515 -> 2121[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2121 -> 713[label="",style="solid", color="blue", weight=3]; 22.49/8.81 516[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2122[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2122[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2122 -> 714[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2123[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2123[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2123 -> 715[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2124[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2124[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2124 -> 716[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2125[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2125[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2125 -> 717[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2126[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2126[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2126 -> 718[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2127[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2127[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2127 -> 719[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2128[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2128[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2128 -> 720[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2129[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2129[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2129 -> 721[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2130[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2130[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2130 -> 722[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2131[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2131[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2131 -> 723[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2132[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2132[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2132 -> 724[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2133[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2133[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2133 -> 725[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2134[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2134[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2134 -> 726[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2135[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];516 -> 2135[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2135 -> 727[label="",style="solid", color="blue", weight=3]; 22.49/8.81 517 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 517[label="vxw300 == vxw4000",fontsize=16,color="magenta"];517 -> 728[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 517 -> 729[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 518 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 518[label="vxw300 == vxw4000",fontsize=16,color="magenta"];518 -> 730[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 518 -> 731[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 519 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 519[label="vxw300 == vxw4000",fontsize=16,color="magenta"];519 -> 732[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 519 -> 733[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 520 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 520[label="vxw300 == vxw4000",fontsize=16,color="magenta"];520 -> 734[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 520 -> 735[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 521 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 521[label="vxw300 == vxw4000",fontsize=16,color="magenta"];521 -> 736[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 521 -> 737[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 522 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 522[label="vxw300 == vxw4000",fontsize=16,color="magenta"];522 -> 738[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 522 -> 739[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 523 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 523[label="vxw300 == vxw4000",fontsize=16,color="magenta"];523 -> 740[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 523 -> 741[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 524 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 524[label="vxw300 == vxw4000",fontsize=16,color="magenta"];524 -> 742[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 524 -> 743[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 525 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 525[label="vxw300 == vxw4000",fontsize=16,color="magenta"];525 -> 744[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 525 -> 745[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 526 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 526[label="vxw300 == vxw4000",fontsize=16,color="magenta"];526 -> 746[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 526 -> 747[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 527 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 527[label="vxw300 == vxw4000",fontsize=16,color="magenta"];527 -> 748[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 527 -> 749[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 528 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 528[label="vxw300 == vxw4000",fontsize=16,color="magenta"];528 -> 750[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 528 -> 751[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 529 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 529[label="vxw300 == vxw4000",fontsize=16,color="magenta"];529 -> 752[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 529 -> 753[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 530 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 530[label="vxw300 == vxw4000",fontsize=16,color="magenta"];530 -> 754[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 530 -> 755[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 531[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];531 -> 756[label="",style="solid", color="black", weight=3]; 22.49/8.81 532[label="(vxw110,vxw111,vxw112) <= vxw10",fontsize=16,color="burlywood",shape="box"];2136[label="vxw10/(vxw100,vxw101,vxw102)",fontsize=10,color="white",style="solid",shape="box"];532 -> 2136[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2136 -> 757[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 533[label="Left vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];2137[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];533 -> 2137[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2137 -> 758[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2138[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];533 -> 2138[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2138 -> 759[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 534[label="Right vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];2139[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];534 -> 2139[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2139 -> 760[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2140[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];534 -> 2140[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2140 -> 761[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 535[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];535 -> 762[label="",style="solid", color="black", weight=3]; 22.49/8.81 536[label="False <= vxw10",fontsize=16,color="burlywood",shape="box"];2141[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];536 -> 2141[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2141 -> 763[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2142[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];536 -> 2142[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2142 -> 764[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 537[label="True <= vxw10",fontsize=16,color="burlywood",shape="box"];2143[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];537 -> 2143[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2143 -> 765[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2144[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];537 -> 2144[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2144 -> 766[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 538[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];538 -> 767[label="",style="solid", color="black", weight=3]; 22.49/8.81 539[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];539 -> 768[label="",style="solid", color="black", weight=3]; 22.49/8.81 540[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];540 -> 769[label="",style="solid", color="black", weight=3]; 22.49/8.81 541[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];541 -> 770[label="",style="solid", color="black", weight=3]; 22.49/8.81 542[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];542 -> 771[label="",style="solid", color="black", weight=3]; 22.49/8.81 543[label="LT <= vxw10",fontsize=16,color="burlywood",shape="box"];2145[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];543 -> 2145[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2145 -> 772[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2146[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];543 -> 2146[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2146 -> 773[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2147[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];543 -> 2147[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2147 -> 774[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 544[label="EQ <= vxw10",fontsize=16,color="burlywood",shape="box"];2148[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];544 -> 2148[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2148 -> 775[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2149[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];544 -> 2149[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2149 -> 776[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2150[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];544 -> 2150[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2150 -> 777[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 545[label="GT <= vxw10",fontsize=16,color="burlywood",shape="box"];2151[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];545 -> 2151[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2151 -> 778[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2152[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];545 -> 2152[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2152 -> 779[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2153[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];545 -> 2153[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2153 -> 780[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 546[label="Nothing <= vxw10",fontsize=16,color="burlywood",shape="box"];2154[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];546 -> 2154[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2154 -> 781[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2155[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];546 -> 2155[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2155 -> 782[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 547[label="Just vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];2156[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];547 -> 2156[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2156 -> 783[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2157[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];547 -> 2157[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2157 -> 784[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 548[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];548 -> 785[label="",style="solid", color="black", weight=3]; 22.49/8.81 549[label="(vxw110,vxw111) <= vxw10",fontsize=16,color="burlywood",shape="box"];2158[label="vxw10/(vxw100,vxw101)",fontsize=10,color="white",style="solid",shape="box"];549 -> 2158[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2158 -> 786[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 550[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) (compare0 (Left vxw29) (Left vxw28) True)",fontsize=16,color="black",shape="box"];550 -> 787[label="",style="solid", color="black", weight=3]; 22.49/8.81 551[label="Left vxw29 : Left vxw28 : vxw30",fontsize=16,color="green",shape="box"];552 -> 5[label="",style="dashed", color="red", weight=0]; 22.49/8.81 552[label="List.insertBy compare (Right vxw30) vxw41",fontsize=16,color="magenta"];552 -> 788[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 552 -> 789[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 553[label="vxw20",fontsize=16,color="green",shape="box"];554[label="vxw19",fontsize=16,color="green",shape="box"];555[label="vxw20",fontsize=16,color="green",shape="box"];556[label="vxw19",fontsize=16,color="green",shape="box"];557[label="vxw20",fontsize=16,color="green",shape="box"];558[label="vxw19",fontsize=16,color="green",shape="box"];559[label="vxw20",fontsize=16,color="green",shape="box"];560[label="vxw19",fontsize=16,color="green",shape="box"];561[label="vxw20",fontsize=16,color="green",shape="box"];562[label="vxw19",fontsize=16,color="green",shape="box"];563[label="vxw20",fontsize=16,color="green",shape="box"];564[label="vxw19",fontsize=16,color="green",shape="box"];565[label="vxw20",fontsize=16,color="green",shape="box"];566[label="vxw19",fontsize=16,color="green",shape="box"];567[label="vxw20",fontsize=16,color="green",shape="box"];568[label="vxw19",fontsize=16,color="green",shape="box"];569[label="vxw20",fontsize=16,color="green",shape="box"];570[label="vxw19",fontsize=16,color="green",shape="box"];571[label="vxw20",fontsize=16,color="green",shape="box"];572[label="vxw19",fontsize=16,color="green",shape="box"];573[label="vxw20",fontsize=16,color="green",shape="box"];574[label="vxw19",fontsize=16,color="green",shape="box"];575[label="vxw20",fontsize=16,color="green",shape="box"];576[label="vxw19",fontsize=16,color="green",shape="box"];577[label="vxw20",fontsize=16,color="green",shape="box"];578[label="vxw19",fontsize=16,color="green",shape="box"];579[label="vxw20",fontsize=16,color="green",shape="box"];580[label="vxw19",fontsize=16,color="green",shape="box"];581[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) (compare0 (Right vxw38) (Right vxw37) True)",fontsize=16,color="black",shape="box"];581 -> 790[label="",style="solid", color="black", weight=3]; 22.49/8.81 582[label="Right vxw38 : Right vxw37 : vxw39",fontsize=16,color="green",shape="box"];583[label="vxw4001",fontsize=16,color="green",shape="box"];584[label="vxw301",fontsize=16,color="green",shape="box"];585[label="vxw4001",fontsize=16,color="green",shape="box"];586[label="vxw301",fontsize=16,color="green",shape="box"];587[label="vxw4001",fontsize=16,color="green",shape="box"];588[label="vxw301",fontsize=16,color="green",shape="box"];589[label="vxw4001",fontsize=16,color="green",shape="box"];590[label="vxw301",fontsize=16,color="green",shape="box"];591[label="vxw4001",fontsize=16,color="green",shape="box"];592[label="vxw301",fontsize=16,color="green",shape="box"];593[label="vxw4001",fontsize=16,color="green",shape="box"];594[label="vxw301",fontsize=16,color="green",shape="box"];595[label="vxw4001",fontsize=16,color="green",shape="box"];596[label="vxw301",fontsize=16,color="green",shape="box"];597[label="vxw4001",fontsize=16,color="green",shape="box"];598[label="vxw301",fontsize=16,color="green",shape="box"];599[label="vxw4001",fontsize=16,color="green",shape="box"];600[label="vxw301",fontsize=16,color="green",shape="box"];601[label="vxw4001",fontsize=16,color="green",shape="box"];602[label="vxw301",fontsize=16,color="green",shape="box"];603[label="vxw4001",fontsize=16,color="green",shape="box"];604[label="vxw301",fontsize=16,color="green",shape="box"];605[label="vxw4001",fontsize=16,color="green",shape="box"];606[label="vxw301",fontsize=16,color="green",shape="box"];607[label="vxw4001",fontsize=16,color="green",shape="box"];608[label="vxw301",fontsize=16,color="green",shape="box"];609[label="vxw4001",fontsize=16,color="green",shape="box"];610[label="vxw301",fontsize=16,color="green",shape="box"];611[label="vxw4000",fontsize=16,color="green",shape="box"];612[label="vxw300",fontsize=16,color="green",shape="box"];613[label="vxw4000",fontsize=16,color="green",shape="box"];614[label="vxw300",fontsize=16,color="green",shape="box"];615[label="vxw4000",fontsize=16,color="green",shape="box"];616[label="vxw300",fontsize=16,color="green",shape="box"];617[label="vxw4000",fontsize=16,color="green",shape="box"];618[label="vxw300",fontsize=16,color="green",shape="box"];619[label="vxw4000",fontsize=16,color="green",shape="box"];620[label="vxw300",fontsize=16,color="green",shape="box"];621[label="vxw4000",fontsize=16,color="green",shape="box"];622[label="vxw300",fontsize=16,color="green",shape="box"];623[label="vxw4000",fontsize=16,color="green",shape="box"];624[label="vxw300",fontsize=16,color="green",shape="box"];625[label="vxw4000",fontsize=16,color="green",shape="box"];626[label="vxw300",fontsize=16,color="green",shape="box"];627[label="vxw4000",fontsize=16,color="green",shape="box"];628[label="vxw300",fontsize=16,color="green",shape="box"];629[label="vxw4000",fontsize=16,color="green",shape="box"];630[label="vxw300",fontsize=16,color="green",shape="box"];631[label="vxw4000",fontsize=16,color="green",shape="box"];632[label="vxw300",fontsize=16,color="green",shape="box"];633[label="vxw4000",fontsize=16,color="green",shape="box"];634[label="vxw300",fontsize=16,color="green",shape="box"];635[label="vxw4000",fontsize=16,color="green",shape="box"];636[label="vxw300",fontsize=16,color="green",shape="box"];637[label="vxw4000",fontsize=16,color="green",shape="box"];638[label="vxw300",fontsize=16,color="green",shape="box"];639[label="False",fontsize=16,color="green",shape="box"];640[label="vxw53",fontsize=16,color="green",shape="box"];641 -> 289[label="",style="dashed", color="red", weight=0]; 22.49/8.81 641[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];641 -> 791[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 641 -> 792[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 642[label="False",fontsize=16,color="green",shape="box"];643[label="False",fontsize=16,color="green",shape="box"];644[label="True",fontsize=16,color="green",shape="box"];645[label="False",fontsize=16,color="green",shape="box"];646[label="True",fontsize=16,color="green",shape="box"];647 -> 289[label="",style="dashed", color="red", weight=0]; 22.49/8.81 647[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];647 -> 793[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 647 -> 794[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 648[label="False",fontsize=16,color="green",shape="box"];649[label="False",fontsize=16,color="green",shape="box"];650[label="True",fontsize=16,color="green",shape="box"];651[label="False",fontsize=16,color="green",shape="box"];652[label="True",fontsize=16,color="green",shape="box"];653[label="vxw4001",fontsize=16,color="green",shape="box"];654[label="vxw301",fontsize=16,color="green",shape="box"];655[label="vxw4001",fontsize=16,color="green",shape="box"];656[label="vxw301",fontsize=16,color="green",shape="box"];657[label="vxw4000",fontsize=16,color="green",shape="box"];658[label="vxw300",fontsize=16,color="green",shape="box"];659[label="vxw4000",fontsize=16,color="green",shape="box"];660[label="vxw300",fontsize=16,color="green",shape="box"];661[label="primMulInt vxw301 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2159[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];661 -> 2159[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2159 -> 795[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2160[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];661 -> 2160[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2160 -> 796[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 662[label="vxw300",fontsize=16,color="green",shape="box"];663[label="vxw4001",fontsize=16,color="green",shape="box"];664[label="vxw4000",fontsize=16,color="green",shape="box"];665[label="vxw300",fontsize=16,color="green",shape="box"];666[label="vxw4000",fontsize=16,color="green",shape="box"];667[label="vxw300",fontsize=16,color="green",shape="box"];668[label="vxw4000",fontsize=16,color="green",shape="box"];669[label="vxw300",fontsize=16,color="green",shape="box"];670[label="vxw4000",fontsize=16,color="green",shape="box"];671[label="vxw300",fontsize=16,color="green",shape="box"];672[label="vxw4000",fontsize=16,color="green",shape="box"];673[label="vxw300",fontsize=16,color="green",shape="box"];674[label="vxw4000",fontsize=16,color="green",shape="box"];675[label="vxw300",fontsize=16,color="green",shape="box"];676[label="vxw4000",fontsize=16,color="green",shape="box"];677[label="vxw300",fontsize=16,color="green",shape="box"];678[label="vxw4000",fontsize=16,color="green",shape="box"];679[label="vxw300",fontsize=16,color="green",shape="box"];680[label="vxw4000",fontsize=16,color="green",shape="box"];681[label="vxw300",fontsize=16,color="green",shape="box"];682[label="vxw4000",fontsize=16,color="green",shape="box"];683[label="vxw300",fontsize=16,color="green",shape="box"];684[label="vxw4000",fontsize=16,color="green",shape="box"];685[label="vxw300",fontsize=16,color="green",shape="box"];686[label="vxw4000",fontsize=16,color="green",shape="box"];687[label="vxw300",fontsize=16,color="green",shape="box"];688[label="vxw4000",fontsize=16,color="green",shape="box"];689[label="vxw300",fontsize=16,color="green",shape="box"];690[label="vxw4000",fontsize=16,color="green",shape="box"];691[label="vxw300",fontsize=16,color="green",shape="box"];692[label="vxw301",fontsize=16,color="green",shape="box"];693[label="vxw4000",fontsize=16,color="green",shape="box"];694[label="vxw300",fontsize=16,color="green",shape="box"];695[label="vxw4001",fontsize=16,color="green",shape="box"];696[label="primEqNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];696 -> 797[label="",style="solid", color="black", weight=3]; 22.49/8.81 697[label="primEqNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];697 -> 798[label="",style="solid", color="black", weight=3]; 22.49/8.81 698[label="primEqNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];698 -> 799[label="",style="solid", color="black", weight=3]; 22.49/8.81 699[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];699 -> 800[label="",style="solid", color="black", weight=3]; 22.49/8.81 700 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 700[label="vxw302 == vxw4002",fontsize=16,color="magenta"];700 -> 801[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 700 -> 802[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 701 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 701[label="vxw302 == vxw4002",fontsize=16,color="magenta"];701 -> 803[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 701 -> 804[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 702 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 702[label="vxw302 == vxw4002",fontsize=16,color="magenta"];702 -> 805[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 702 -> 806[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 703 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 703[label="vxw302 == vxw4002",fontsize=16,color="magenta"];703 -> 807[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 703 -> 808[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 704 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 704[label="vxw302 == vxw4002",fontsize=16,color="magenta"];704 -> 809[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 704 -> 810[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 705 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 705[label="vxw302 == vxw4002",fontsize=16,color="magenta"];705 -> 811[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 705 -> 812[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 706 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 706[label="vxw302 == vxw4002",fontsize=16,color="magenta"];706 -> 813[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 706 -> 814[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 707 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 707[label="vxw302 == vxw4002",fontsize=16,color="magenta"];707 -> 815[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 707 -> 816[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 708 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 708[label="vxw302 == vxw4002",fontsize=16,color="magenta"];708 -> 817[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 708 -> 818[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 709 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 709[label="vxw302 == vxw4002",fontsize=16,color="magenta"];709 -> 819[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 709 -> 820[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 710 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 710[label="vxw302 == vxw4002",fontsize=16,color="magenta"];710 -> 821[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 710 -> 822[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 711 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 711[label="vxw302 == vxw4002",fontsize=16,color="magenta"];711 -> 823[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 711 -> 824[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 712 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 712[label="vxw302 == vxw4002",fontsize=16,color="magenta"];712 -> 825[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 712 -> 826[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 713 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 713[label="vxw302 == vxw4002",fontsize=16,color="magenta"];713 -> 827[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 713 -> 828[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 714 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.81 714[label="vxw301 == vxw4001",fontsize=16,color="magenta"];714 -> 829[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 714 -> 830[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 715 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.81 715[label="vxw301 == vxw4001",fontsize=16,color="magenta"];715 -> 831[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 715 -> 832[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 716 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.81 716[label="vxw301 == vxw4001",fontsize=16,color="magenta"];716 -> 833[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 716 -> 834[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 717 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.81 717[label="vxw301 == vxw4001",fontsize=16,color="magenta"];717 -> 835[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 717 -> 836[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 718 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.81 718[label="vxw301 == vxw4001",fontsize=16,color="magenta"];718 -> 837[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 718 -> 838[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 719 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.81 719[label="vxw301 == vxw4001",fontsize=16,color="magenta"];719 -> 839[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 719 -> 840[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 720 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.81 720[label="vxw301 == vxw4001",fontsize=16,color="magenta"];720 -> 841[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 720 -> 842[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 721 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 721[label="vxw301 == vxw4001",fontsize=16,color="magenta"];721 -> 843[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 721 -> 844[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 722 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.81 722[label="vxw301 == vxw4001",fontsize=16,color="magenta"];722 -> 845[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 722 -> 846[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 723 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.81 723[label="vxw301 == vxw4001",fontsize=16,color="magenta"];723 -> 847[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 723 -> 848[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 724 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.81 724[label="vxw301 == vxw4001",fontsize=16,color="magenta"];724 -> 849[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 724 -> 850[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 725 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.81 725[label="vxw301 == vxw4001",fontsize=16,color="magenta"];725 -> 851[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 725 -> 852[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 726 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.81 726[label="vxw301 == vxw4001",fontsize=16,color="magenta"];726 -> 853[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 726 -> 854[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 727 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.81 727[label="vxw301 == vxw4001",fontsize=16,color="magenta"];727 -> 855[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 727 -> 856[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 728[label="vxw4000",fontsize=16,color="green",shape="box"];729[label="vxw300",fontsize=16,color="green",shape="box"];730[label="vxw4000",fontsize=16,color="green",shape="box"];731[label="vxw300",fontsize=16,color="green",shape="box"];732[label="vxw4000",fontsize=16,color="green",shape="box"];733[label="vxw300",fontsize=16,color="green",shape="box"];734[label="vxw4000",fontsize=16,color="green",shape="box"];735[label="vxw300",fontsize=16,color="green",shape="box"];736[label="vxw4000",fontsize=16,color="green",shape="box"];737[label="vxw300",fontsize=16,color="green",shape="box"];738[label="vxw4000",fontsize=16,color="green",shape="box"];739[label="vxw300",fontsize=16,color="green",shape="box"];740[label="vxw4000",fontsize=16,color="green",shape="box"];741[label="vxw300",fontsize=16,color="green",shape="box"];742[label="vxw4000",fontsize=16,color="green",shape="box"];743[label="vxw300",fontsize=16,color="green",shape="box"];744[label="vxw4000",fontsize=16,color="green",shape="box"];745[label="vxw300",fontsize=16,color="green",shape="box"];746[label="vxw4000",fontsize=16,color="green",shape="box"];747[label="vxw300",fontsize=16,color="green",shape="box"];748[label="vxw4000",fontsize=16,color="green",shape="box"];749[label="vxw300",fontsize=16,color="green",shape="box"];750[label="vxw4000",fontsize=16,color="green",shape="box"];751[label="vxw300",fontsize=16,color="green",shape="box"];752[label="vxw4000",fontsize=16,color="green",shape="box"];753[label="vxw300",fontsize=16,color="green",shape="box"];754[label="vxw4000",fontsize=16,color="green",shape="box"];755[label="vxw300",fontsize=16,color="green",shape="box"];756 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 756[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];756 -> 858[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 757[label="(vxw110,vxw111,vxw112) <= (vxw100,vxw101,vxw102)",fontsize=16,color="black",shape="box"];757 -> 866[label="",style="solid", color="black", weight=3]; 22.49/8.81 758[label="Left vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];758 -> 867[label="",style="solid", color="black", weight=3]; 22.49/8.81 759[label="Left vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];759 -> 868[label="",style="solid", color="black", weight=3]; 22.49/8.81 760[label="Right vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];760 -> 869[label="",style="solid", color="black", weight=3]; 22.49/8.81 761[label="Right vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];761 -> 870[label="",style="solid", color="black", weight=3]; 22.49/8.81 762 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 762[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];762 -> 859[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 763[label="False <= False",fontsize=16,color="black",shape="box"];763 -> 871[label="",style="solid", color="black", weight=3]; 22.49/8.81 764[label="False <= True",fontsize=16,color="black",shape="box"];764 -> 872[label="",style="solid", color="black", weight=3]; 22.49/8.81 765[label="True <= False",fontsize=16,color="black",shape="box"];765 -> 873[label="",style="solid", color="black", weight=3]; 22.49/8.81 766[label="True <= True",fontsize=16,color="black",shape="box"];766 -> 874[label="",style="solid", color="black", weight=3]; 22.49/8.81 767 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 767[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];767 -> 860[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 768 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 768[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];768 -> 861[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 769 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 769[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];769 -> 862[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 770 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 770[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];770 -> 863[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 771 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 771[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];771 -> 864[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 772[label="LT <= LT",fontsize=16,color="black",shape="box"];772 -> 875[label="",style="solid", color="black", weight=3]; 22.49/8.81 773[label="LT <= EQ",fontsize=16,color="black",shape="box"];773 -> 876[label="",style="solid", color="black", weight=3]; 22.49/8.81 774[label="LT <= GT",fontsize=16,color="black",shape="box"];774 -> 877[label="",style="solid", color="black", weight=3]; 22.49/8.81 775[label="EQ <= LT",fontsize=16,color="black",shape="box"];775 -> 878[label="",style="solid", color="black", weight=3]; 22.49/8.81 776[label="EQ <= EQ",fontsize=16,color="black",shape="box"];776 -> 879[label="",style="solid", color="black", weight=3]; 22.49/8.81 777[label="EQ <= GT",fontsize=16,color="black",shape="box"];777 -> 880[label="",style="solid", color="black", weight=3]; 22.49/8.81 778[label="GT <= LT",fontsize=16,color="black",shape="box"];778 -> 881[label="",style="solid", color="black", weight=3]; 22.49/8.81 779[label="GT <= EQ",fontsize=16,color="black",shape="box"];779 -> 882[label="",style="solid", color="black", weight=3]; 22.49/8.81 780[label="GT <= GT",fontsize=16,color="black",shape="box"];780 -> 883[label="",style="solid", color="black", weight=3]; 22.49/8.81 781[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];781 -> 884[label="",style="solid", color="black", weight=3]; 22.49/8.81 782[label="Nothing <= Just vxw100",fontsize=16,color="black",shape="box"];782 -> 885[label="",style="solid", color="black", weight=3]; 22.49/8.81 783[label="Just vxw110 <= Nothing",fontsize=16,color="black",shape="box"];783 -> 886[label="",style="solid", color="black", weight=3]; 22.49/8.81 784[label="Just vxw110 <= Just vxw100",fontsize=16,color="black",shape="box"];784 -> 887[label="",style="solid", color="black", weight=3]; 22.49/8.81 785 -> 857[label="",style="dashed", color="red", weight=0]; 22.49/8.81 785[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];785 -> 865[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 786[label="(vxw110,vxw111) <= (vxw100,vxw101)",fontsize=16,color="black",shape="box"];786 -> 888[label="",style="solid", color="black", weight=3]; 22.49/8.81 787[label="List.insertBy0 (Left vxw28) compare (Left vxw29) vxw30 (Left vxw28 : vxw30) GT",fontsize=16,color="black",shape="box"];787 -> 889[label="",style="solid", color="black", weight=3]; 22.49/8.81 788[label="Right vxw30",fontsize=16,color="green",shape="box"];789[label="vxw41",fontsize=16,color="green",shape="box"];790[label="List.insertBy0 (Right vxw37) compare (Right vxw38) vxw39 (Right vxw37 : vxw39) GT",fontsize=16,color="black",shape="box"];790 -> 890[label="",style="solid", color="black", weight=3]; 22.49/8.81 791[label="vxw40000",fontsize=16,color="green",shape="box"];792[label="vxw3000",fontsize=16,color="green",shape="box"];793[label="vxw40000",fontsize=16,color="green",shape="box"];794[label="vxw3000",fontsize=16,color="green",shape="box"];795[label="primMulInt (Pos vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2161[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];795 -> 2161[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2161 -> 891[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2162[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];795 -> 2162[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2162 -> 892[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 796[label="primMulInt (Neg vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2163[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];796 -> 2163[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2163 -> 893[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2164[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];796 -> 2164[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2164 -> 894[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 797 -> 289[label="",style="dashed", color="red", weight=0]; 22.49/8.81 797[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];797 -> 895[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 797 -> 896[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 798[label="False",fontsize=16,color="green",shape="box"];799[label="False",fontsize=16,color="green",shape="box"];800[label="True",fontsize=16,color="green",shape="box"];801[label="vxw4002",fontsize=16,color="green",shape="box"];802[label="vxw302",fontsize=16,color="green",shape="box"];803[label="vxw4002",fontsize=16,color="green",shape="box"];804[label="vxw302",fontsize=16,color="green",shape="box"];805[label="vxw4002",fontsize=16,color="green",shape="box"];806[label="vxw302",fontsize=16,color="green",shape="box"];807[label="vxw4002",fontsize=16,color="green",shape="box"];808[label="vxw302",fontsize=16,color="green",shape="box"];809[label="vxw4002",fontsize=16,color="green",shape="box"];810[label="vxw302",fontsize=16,color="green",shape="box"];811[label="vxw4002",fontsize=16,color="green",shape="box"];812[label="vxw302",fontsize=16,color="green",shape="box"];813[label="vxw4002",fontsize=16,color="green",shape="box"];814[label="vxw302",fontsize=16,color="green",shape="box"];815[label="vxw4002",fontsize=16,color="green",shape="box"];816[label="vxw302",fontsize=16,color="green",shape="box"];817[label="vxw4002",fontsize=16,color="green",shape="box"];818[label="vxw302",fontsize=16,color="green",shape="box"];819[label="vxw4002",fontsize=16,color="green",shape="box"];820[label="vxw302",fontsize=16,color="green",shape="box"];821[label="vxw4002",fontsize=16,color="green",shape="box"];822[label="vxw302",fontsize=16,color="green",shape="box"];823[label="vxw4002",fontsize=16,color="green",shape="box"];824[label="vxw302",fontsize=16,color="green",shape="box"];825[label="vxw4002",fontsize=16,color="green",shape="box"];826[label="vxw302",fontsize=16,color="green",shape="box"];827[label="vxw4002",fontsize=16,color="green",shape="box"];828[label="vxw302",fontsize=16,color="green",shape="box"];829[label="vxw4001",fontsize=16,color="green",shape="box"];830[label="vxw301",fontsize=16,color="green",shape="box"];831[label="vxw4001",fontsize=16,color="green",shape="box"];832[label="vxw301",fontsize=16,color="green",shape="box"];833[label="vxw4001",fontsize=16,color="green",shape="box"];834[label="vxw301",fontsize=16,color="green",shape="box"];835[label="vxw4001",fontsize=16,color="green",shape="box"];836[label="vxw301",fontsize=16,color="green",shape="box"];837[label="vxw4001",fontsize=16,color="green",shape="box"];838[label="vxw301",fontsize=16,color="green",shape="box"];839[label="vxw4001",fontsize=16,color="green",shape="box"];840[label="vxw301",fontsize=16,color="green",shape="box"];841[label="vxw4001",fontsize=16,color="green",shape="box"];842[label="vxw301",fontsize=16,color="green",shape="box"];843[label="vxw4001",fontsize=16,color="green",shape="box"];844[label="vxw301",fontsize=16,color="green",shape="box"];845[label="vxw4001",fontsize=16,color="green",shape="box"];846[label="vxw301",fontsize=16,color="green",shape="box"];847[label="vxw4001",fontsize=16,color="green",shape="box"];848[label="vxw301",fontsize=16,color="green",shape="box"];849[label="vxw4001",fontsize=16,color="green",shape="box"];850[label="vxw301",fontsize=16,color="green",shape="box"];851[label="vxw4001",fontsize=16,color="green",shape="box"];852[label="vxw301",fontsize=16,color="green",shape="box"];853[label="vxw4001",fontsize=16,color="green",shape="box"];854[label="vxw301",fontsize=16,color="green",shape="box"];855[label="vxw4001",fontsize=16,color="green",shape="box"];856[label="vxw301",fontsize=16,color="green",shape="box"];858 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 858[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];858 -> 897[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 858 -> 898[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 857[label="not vxw54",fontsize=16,color="burlywood",shape="triangle"];2165[label="vxw54/False",fontsize=10,color="white",style="solid",shape="box"];857 -> 2165[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2165 -> 899[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2166[label="vxw54/True",fontsize=10,color="white",style="solid",shape="box"];857 -> 2166[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2166 -> 900[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 866 -> 973[label="",style="dashed", color="red", weight=0]; 22.49/8.81 866[label="vxw110 < vxw100 || vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];866 -> 974[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 866 -> 975[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 867[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2167[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2167[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2167 -> 920[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2168[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2168[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2168 -> 921[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2169[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2169[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2169 -> 922[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2170[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2170[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2170 -> 923[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2171[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2171[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2171 -> 924[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2172[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2172[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2172 -> 925[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2173[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2173[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2173 -> 926[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2174[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2174[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2174 -> 927[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2175[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2175[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2175 -> 928[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2176[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2176[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2176 -> 929[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2177[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2177[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2177 -> 930[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2178[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2178[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2178 -> 931[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2179[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2179[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2179 -> 932[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2180[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];867 -> 2180[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2180 -> 933[label="",style="solid", color="blue", weight=3]; 22.49/8.81 868[label="True",fontsize=16,color="green",shape="box"];869[label="False",fontsize=16,color="green",shape="box"];870[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2181[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2181[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2181 -> 934[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2182[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2182[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2182 -> 935[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2183[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2183[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2183 -> 936[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2184[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2184[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2184 -> 937[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2185[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2185[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2185 -> 938[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2186[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2186[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2186 -> 939[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2187[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2187[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2187 -> 940[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2188[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2188[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2188 -> 941[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2189[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2189[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2189 -> 942[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2190[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2190[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2190 -> 943[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2191[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2191[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2191 -> 944[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2192[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2192[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2192 -> 945[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2193[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2193[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2193 -> 946[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2194[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];870 -> 2194[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2194 -> 947[label="",style="solid", color="blue", weight=3]; 22.49/8.81 859 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 859[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];859 -> 901[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 859 -> 902[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 871[label="True",fontsize=16,color="green",shape="box"];872[label="True",fontsize=16,color="green",shape="box"];873[label="False",fontsize=16,color="green",shape="box"];874[label="True",fontsize=16,color="green",shape="box"];860 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 860[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];860 -> 903[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 860 -> 904[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 861 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 861[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];861 -> 905[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 861 -> 906[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 862 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 862[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];862 -> 907[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 862 -> 908[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 863 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 863[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];863 -> 909[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 863 -> 910[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 864 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 864[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];864 -> 911[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 864 -> 912[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 875[label="True",fontsize=16,color="green",shape="box"];876[label="True",fontsize=16,color="green",shape="box"];877[label="True",fontsize=16,color="green",shape="box"];878[label="False",fontsize=16,color="green",shape="box"];879[label="True",fontsize=16,color="green",shape="box"];880[label="True",fontsize=16,color="green",shape="box"];881[label="False",fontsize=16,color="green",shape="box"];882[label="False",fontsize=16,color="green",shape="box"];883[label="True",fontsize=16,color="green",shape="box"];884[label="True",fontsize=16,color="green",shape="box"];885[label="True",fontsize=16,color="green",shape="box"];886[label="False",fontsize=16,color="green",shape="box"];887[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2195[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2195[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2195 -> 948[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2196[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2196[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2196 -> 949[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2197[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2197[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2197 -> 950[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2198[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2198[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2198 -> 951[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2199[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2199[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2199 -> 952[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2200[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2200[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2200 -> 953[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2201[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2201[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2201 -> 954[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2202[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2202[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2202 -> 955[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2203[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2203[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2203 -> 956[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2204[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2204[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2204 -> 957[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2205[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2205[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2205 -> 958[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2206[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2206[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2206 -> 959[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2207[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2207[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2207 -> 960[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2208[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];887 -> 2208[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2208 -> 961[label="",style="solid", color="blue", weight=3]; 22.49/8.81 865 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.81 865[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];865 -> 913[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 865 -> 914[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 888 -> 973[label="",style="dashed", color="red", weight=0]; 22.49/8.81 888[label="vxw110 < vxw100 || vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];888 -> 976[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 888 -> 977[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 889[label="Left vxw28 : List.insertBy compare (Left vxw29) vxw30",fontsize=16,color="green",shape="box"];889 -> 962[label="",style="dashed", color="green", weight=3]; 22.49/8.81 890[label="Right vxw37 : List.insertBy compare (Right vxw38) vxw39",fontsize=16,color="green",shape="box"];890 -> 963[label="",style="dashed", color="green", weight=3]; 22.49/8.81 891[label="primMulInt (Pos vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];891 -> 964[label="",style="solid", color="black", weight=3]; 22.49/8.81 892[label="primMulInt (Pos vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];892 -> 965[label="",style="solid", color="black", weight=3]; 22.49/8.81 893[label="primMulInt (Neg vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];893 -> 966[label="",style="solid", color="black", weight=3]; 22.49/8.81 894[label="primMulInt (Neg vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];894 -> 967[label="",style="solid", color="black", weight=3]; 22.49/8.81 895[label="vxw40000",fontsize=16,color="green",shape="box"];896[label="vxw3000",fontsize=16,color="green",shape="box"];897[label="GT",fontsize=16,color="green",shape="box"];898[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];898 -> 968[label="",style="solid", color="black", weight=3]; 22.49/8.81 899[label="not False",fontsize=16,color="black",shape="box"];899 -> 969[label="",style="solid", color="black", weight=3]; 22.49/8.81 900[label="not True",fontsize=16,color="black",shape="box"];900 -> 970[label="",style="solid", color="black", weight=3]; 22.49/8.81 974 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.81 974[label="vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];974 -> 982[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 974 -> 983[label="",style="dashed", color="magenta", weight=3]; 22.49/8.81 975[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2209[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2209[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2209 -> 984[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2210[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2210[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2210 -> 985[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2211[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2211[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2211 -> 986[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2212[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2212[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2212 -> 987[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2213[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2213[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2213 -> 988[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2214[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2214[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2214 -> 989[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2215[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2215[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2215 -> 990[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2216[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2216[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2216 -> 991[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2217[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2217[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2217 -> 992[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2218[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2218[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2218 -> 993[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2219[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2219[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2219 -> 994[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2220[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2220[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2220 -> 995[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2221[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2221[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2221 -> 996[label="",style="solid", color="blue", weight=3]; 22.49/8.81 2222[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];975 -> 2222[label="",style="solid", color="blue", weight=9]; 22.49/8.81 2222 -> 997[label="",style="solid", color="blue", weight=3]; 22.49/8.81 973[label="vxw60 || vxw61",fontsize=16,color="burlywood",shape="triangle"];2223[label="vxw60/False",fontsize=10,color="white",style="solid",shape="box"];973 -> 2223[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2223 -> 998[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 2224[label="vxw60/True",fontsize=10,color="white",style="solid",shape="box"];973 -> 2224[label="",style="solid", color="burlywood", weight=9]; 22.49/8.81 2224 -> 999[label="",style="solid", color="burlywood", weight=3]; 22.49/8.81 920 -> 301[label="",style="dashed", color="red", weight=0]; 22.49/8.81 920[label="vxw110 <= vxw100",fontsize=16,color="magenta"];920 -> 1000[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 920 -> 1001[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 921 -> 302[label="",style="dashed", color="red", weight=0]; 22.49/8.82 921[label="vxw110 <= vxw100",fontsize=16,color="magenta"];921 -> 1002[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 921 -> 1003[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 922 -> 303[label="",style="dashed", color="red", weight=0]; 22.49/8.82 922[label="vxw110 <= vxw100",fontsize=16,color="magenta"];922 -> 1004[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 922 -> 1005[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 923 -> 304[label="",style="dashed", color="red", weight=0]; 22.49/8.82 923[label="vxw110 <= vxw100",fontsize=16,color="magenta"];923 -> 1006[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 923 -> 1007[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 924 -> 305[label="",style="dashed", color="red", weight=0]; 22.49/8.82 924[label="vxw110 <= vxw100",fontsize=16,color="magenta"];924 -> 1008[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 924 -> 1009[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 925 -> 306[label="",style="dashed", color="red", weight=0]; 22.49/8.82 925[label="vxw110 <= vxw100",fontsize=16,color="magenta"];925 -> 1010[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 925 -> 1011[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 926 -> 307[label="",style="dashed", color="red", weight=0]; 22.49/8.82 926[label="vxw110 <= vxw100",fontsize=16,color="magenta"];926 -> 1012[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 926 -> 1013[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 927 -> 308[label="",style="dashed", color="red", weight=0]; 22.49/8.82 927[label="vxw110 <= vxw100",fontsize=16,color="magenta"];927 -> 1014[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 927 -> 1015[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 928 -> 309[label="",style="dashed", color="red", weight=0]; 22.49/8.82 928[label="vxw110 <= vxw100",fontsize=16,color="magenta"];928 -> 1016[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 928 -> 1017[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 929 -> 310[label="",style="dashed", color="red", weight=0]; 22.49/8.82 929[label="vxw110 <= vxw100",fontsize=16,color="magenta"];929 -> 1018[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 929 -> 1019[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 930 -> 311[label="",style="dashed", color="red", weight=0]; 22.49/8.82 930[label="vxw110 <= vxw100",fontsize=16,color="magenta"];930 -> 1020[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 930 -> 1021[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 931 -> 312[label="",style="dashed", color="red", weight=0]; 22.49/8.82 931[label="vxw110 <= vxw100",fontsize=16,color="magenta"];931 -> 1022[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 931 -> 1023[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 932 -> 313[label="",style="dashed", color="red", weight=0]; 22.49/8.82 932[label="vxw110 <= vxw100",fontsize=16,color="magenta"];932 -> 1024[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 932 -> 1025[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 933 -> 314[label="",style="dashed", color="red", weight=0]; 22.49/8.82 933[label="vxw110 <= vxw100",fontsize=16,color="magenta"];933 -> 1026[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 933 -> 1027[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 934 -> 301[label="",style="dashed", color="red", weight=0]; 22.49/8.82 934[label="vxw110 <= vxw100",fontsize=16,color="magenta"];934 -> 1028[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 934 -> 1029[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 935 -> 302[label="",style="dashed", color="red", weight=0]; 22.49/8.82 935[label="vxw110 <= vxw100",fontsize=16,color="magenta"];935 -> 1030[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 935 -> 1031[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 936 -> 303[label="",style="dashed", color="red", weight=0]; 22.49/8.82 936[label="vxw110 <= vxw100",fontsize=16,color="magenta"];936 -> 1032[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 936 -> 1033[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 937 -> 304[label="",style="dashed", color="red", weight=0]; 22.49/8.82 937[label="vxw110 <= vxw100",fontsize=16,color="magenta"];937 -> 1034[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 937 -> 1035[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 938 -> 305[label="",style="dashed", color="red", weight=0]; 22.49/8.82 938[label="vxw110 <= vxw100",fontsize=16,color="magenta"];938 -> 1036[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 938 -> 1037[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 939 -> 306[label="",style="dashed", color="red", weight=0]; 22.49/8.82 939[label="vxw110 <= vxw100",fontsize=16,color="magenta"];939 -> 1038[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 939 -> 1039[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 940 -> 307[label="",style="dashed", color="red", weight=0]; 22.49/8.82 940[label="vxw110 <= vxw100",fontsize=16,color="magenta"];940 -> 1040[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 940 -> 1041[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 941 -> 308[label="",style="dashed", color="red", weight=0]; 22.49/8.82 941[label="vxw110 <= vxw100",fontsize=16,color="magenta"];941 -> 1042[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 941 -> 1043[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 942 -> 309[label="",style="dashed", color="red", weight=0]; 22.49/8.82 942[label="vxw110 <= vxw100",fontsize=16,color="magenta"];942 -> 1044[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 942 -> 1045[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 943 -> 310[label="",style="dashed", color="red", weight=0]; 22.49/8.82 943[label="vxw110 <= vxw100",fontsize=16,color="magenta"];943 -> 1046[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 943 -> 1047[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 944 -> 311[label="",style="dashed", color="red", weight=0]; 22.49/8.82 944[label="vxw110 <= vxw100",fontsize=16,color="magenta"];944 -> 1048[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 944 -> 1049[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 945 -> 312[label="",style="dashed", color="red", weight=0]; 22.49/8.82 945[label="vxw110 <= vxw100",fontsize=16,color="magenta"];945 -> 1050[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 945 -> 1051[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 946 -> 313[label="",style="dashed", color="red", weight=0]; 22.49/8.82 946[label="vxw110 <= vxw100",fontsize=16,color="magenta"];946 -> 1052[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 946 -> 1053[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 947 -> 314[label="",style="dashed", color="red", weight=0]; 22.49/8.82 947[label="vxw110 <= vxw100",fontsize=16,color="magenta"];947 -> 1054[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 947 -> 1055[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 901[label="GT",fontsize=16,color="green",shape="box"];902[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2225[label="vxw11/()",fontsize=10,color="white",style="solid",shape="box"];902 -> 2225[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2225 -> 1056[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 903[label="GT",fontsize=16,color="green",shape="box"];904[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2226[label="vxw11/vxw110 : vxw111",fontsize=10,color="white",style="solid",shape="box"];904 -> 2226[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2226 -> 1057[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2227[label="vxw11/[]",fontsize=10,color="white",style="solid",shape="box"];904 -> 2227[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2227 -> 1058[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 905[label="GT",fontsize=16,color="green",shape="box"];906[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2228[label="vxw11/Integer vxw110",fontsize=10,color="white",style="solid",shape="box"];906 -> 2228[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2228 -> 1059[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 907[label="GT",fontsize=16,color="green",shape="box"];908[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2229[label="vxw11/vxw110 :% vxw111",fontsize=10,color="white",style="solid",shape="box"];908 -> 2229[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2229 -> 1060[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 909[label="GT",fontsize=16,color="green",shape="box"];910[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];910 -> 1061[label="",style="solid", color="black", weight=3]; 22.49/8.82 911[label="GT",fontsize=16,color="green",shape="box"];912[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];912 -> 1062[label="",style="solid", color="black", weight=3]; 22.49/8.82 948 -> 301[label="",style="dashed", color="red", weight=0]; 22.49/8.82 948[label="vxw110 <= vxw100",fontsize=16,color="magenta"];948 -> 1063[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 948 -> 1064[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 949 -> 302[label="",style="dashed", color="red", weight=0]; 22.49/8.82 949[label="vxw110 <= vxw100",fontsize=16,color="magenta"];949 -> 1065[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 949 -> 1066[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 950 -> 303[label="",style="dashed", color="red", weight=0]; 22.49/8.82 950[label="vxw110 <= vxw100",fontsize=16,color="magenta"];950 -> 1067[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 950 -> 1068[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 951 -> 304[label="",style="dashed", color="red", weight=0]; 22.49/8.82 951[label="vxw110 <= vxw100",fontsize=16,color="magenta"];951 -> 1069[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 951 -> 1070[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 952 -> 305[label="",style="dashed", color="red", weight=0]; 22.49/8.82 952[label="vxw110 <= vxw100",fontsize=16,color="magenta"];952 -> 1071[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 952 -> 1072[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 953 -> 306[label="",style="dashed", color="red", weight=0]; 22.49/8.82 953[label="vxw110 <= vxw100",fontsize=16,color="magenta"];953 -> 1073[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 953 -> 1074[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 954 -> 307[label="",style="dashed", color="red", weight=0]; 22.49/8.82 954[label="vxw110 <= vxw100",fontsize=16,color="magenta"];954 -> 1075[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 954 -> 1076[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 955 -> 308[label="",style="dashed", color="red", weight=0]; 22.49/8.82 955[label="vxw110 <= vxw100",fontsize=16,color="magenta"];955 -> 1077[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 955 -> 1078[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 956 -> 309[label="",style="dashed", color="red", weight=0]; 22.49/8.82 956[label="vxw110 <= vxw100",fontsize=16,color="magenta"];956 -> 1079[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 956 -> 1080[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 957 -> 310[label="",style="dashed", color="red", weight=0]; 22.49/8.82 957[label="vxw110 <= vxw100",fontsize=16,color="magenta"];957 -> 1081[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 957 -> 1082[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 958 -> 311[label="",style="dashed", color="red", weight=0]; 22.49/8.82 958[label="vxw110 <= vxw100",fontsize=16,color="magenta"];958 -> 1083[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 958 -> 1084[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 959 -> 312[label="",style="dashed", color="red", weight=0]; 22.49/8.82 959[label="vxw110 <= vxw100",fontsize=16,color="magenta"];959 -> 1085[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 959 -> 1086[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 960 -> 313[label="",style="dashed", color="red", weight=0]; 22.49/8.82 960[label="vxw110 <= vxw100",fontsize=16,color="magenta"];960 -> 1087[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 960 -> 1088[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 961 -> 314[label="",style="dashed", color="red", weight=0]; 22.49/8.82 961[label="vxw110 <= vxw100",fontsize=16,color="magenta"];961 -> 1089[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 961 -> 1090[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 913[label="GT",fontsize=16,color="green",shape="box"];914[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];914 -> 1091[label="",style="solid", color="black", weight=3]; 22.49/8.82 976 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.82 976[label="vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];976 -> 1092[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 976 -> 1093[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 977[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2230[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2230[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2230 -> 1094[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2231[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2231[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2231 -> 1095[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2232[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2232[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2232 -> 1096[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2233[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2233[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2233 -> 1097[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2234[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2234[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2234 -> 1098[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2235[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2235[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2235 -> 1099[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2236[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2236[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2236 -> 1100[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2237[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2237[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2237 -> 1101[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2238[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2238[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2238 -> 1102[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2239[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2239[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2239 -> 1103[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2240[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2240[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2240 -> 1104[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2241[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2241[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2241 -> 1105[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2242[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2242[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2242 -> 1106[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2243[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];977 -> 2243[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2243 -> 1107[label="",style="solid", color="blue", weight=3]; 22.49/8.82 962 -> 5[label="",style="dashed", color="red", weight=0]; 22.49/8.82 962[label="List.insertBy compare (Left vxw29) vxw30",fontsize=16,color="magenta"];962 -> 1108[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 962 -> 1109[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 963 -> 5[label="",style="dashed", color="red", weight=0]; 22.49/8.82 963[label="List.insertBy compare (Right vxw38) vxw39",fontsize=16,color="magenta"];963 -> 1110[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 963 -> 1111[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 964[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];964 -> 1112[label="",style="dashed", color="green", weight=3]; 22.49/8.82 965[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];965 -> 1113[label="",style="dashed", color="green", weight=3]; 22.49/8.82 966[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];966 -> 1114[label="",style="dashed", color="green", weight=3]; 22.49/8.82 967[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];967 -> 1115[label="",style="dashed", color="green", weight=3]; 22.49/8.82 968[label="primCmpChar vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2244[label="vxw11/Char vxw110",fontsize=10,color="white",style="solid",shape="box"];968 -> 2244[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2244 -> 1116[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 969[label="True",fontsize=16,color="green",shape="box"];970[label="False",fontsize=16,color="green",shape="box"];982 -> 973[label="",style="dashed", color="red", weight=0]; 22.49/8.82 982[label="vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];982 -> 1117[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 982 -> 1118[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 983[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2245[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2245[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2245 -> 1119[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2246[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2246[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2246 -> 1120[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2247[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2247[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2247 -> 1121[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2248[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2248[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2248 -> 1122[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2249[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2249[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2249 -> 1123[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2250[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2250[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2250 -> 1124[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2251[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2251[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2251 -> 1125[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2252[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2252[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2252 -> 1126[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2253[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2253[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2253 -> 1127[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2254[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2254[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2254 -> 1128[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2255[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2255[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2255 -> 1129[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2256[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2256[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2256 -> 1130[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2257[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2257[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2257 -> 1131[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2258[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];983 -> 2258[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2258 -> 1132[label="",style="solid", color="blue", weight=3]; 22.49/8.82 984[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];984 -> 1133[label="",style="solid", color="black", weight=3]; 22.49/8.82 985[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];985 -> 1134[label="",style="solid", color="black", weight=3]; 22.49/8.82 986[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];986 -> 1135[label="",style="solid", color="black", weight=3]; 22.49/8.82 987[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];987 -> 1136[label="",style="solid", color="black", weight=3]; 22.49/8.82 988[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];988 -> 1137[label="",style="solid", color="black", weight=3]; 22.49/8.82 989[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];989 -> 1138[label="",style="solid", color="black", weight=3]; 22.49/8.82 990[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];990 -> 1139[label="",style="solid", color="black", weight=3]; 22.49/8.82 991[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];991 -> 1140[label="",style="solid", color="black", weight=3]; 22.49/8.82 992[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];992 -> 1141[label="",style="solid", color="black", weight=3]; 22.49/8.82 993[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];993 -> 1142[label="",style="solid", color="black", weight=3]; 22.49/8.82 994[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];994 -> 1143[label="",style="solid", color="black", weight=3]; 22.49/8.82 995[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];995 -> 1144[label="",style="solid", color="black", weight=3]; 22.49/8.82 996[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];996 -> 1145[label="",style="solid", color="black", weight=3]; 22.49/8.82 997[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];997 -> 1146[label="",style="solid", color="black", weight=3]; 22.49/8.82 998[label="False || vxw61",fontsize=16,color="black",shape="box"];998 -> 1147[label="",style="solid", color="black", weight=3]; 22.49/8.82 999[label="True || vxw61",fontsize=16,color="black",shape="box"];999 -> 1148[label="",style="solid", color="black", weight=3]; 22.49/8.82 1000[label="vxw110",fontsize=16,color="green",shape="box"];1001[label="vxw100",fontsize=16,color="green",shape="box"];1002[label="vxw110",fontsize=16,color="green",shape="box"];1003[label="vxw100",fontsize=16,color="green",shape="box"];1004[label="vxw110",fontsize=16,color="green",shape="box"];1005[label="vxw100",fontsize=16,color="green",shape="box"];1006[label="vxw110",fontsize=16,color="green",shape="box"];1007[label="vxw100",fontsize=16,color="green",shape="box"];1008[label="vxw110",fontsize=16,color="green",shape="box"];1009[label="vxw100",fontsize=16,color="green",shape="box"];1010[label="vxw110",fontsize=16,color="green",shape="box"];1011[label="vxw100",fontsize=16,color="green",shape="box"];1012[label="vxw110",fontsize=16,color="green",shape="box"];1013[label="vxw100",fontsize=16,color="green",shape="box"];1014[label="vxw110",fontsize=16,color="green",shape="box"];1015[label="vxw100",fontsize=16,color="green",shape="box"];1016[label="vxw110",fontsize=16,color="green",shape="box"];1017[label="vxw100",fontsize=16,color="green",shape="box"];1018[label="vxw110",fontsize=16,color="green",shape="box"];1019[label="vxw100",fontsize=16,color="green",shape="box"];1020[label="vxw110",fontsize=16,color="green",shape="box"];1021[label="vxw100",fontsize=16,color="green",shape="box"];1022[label="vxw110",fontsize=16,color="green",shape="box"];1023[label="vxw100",fontsize=16,color="green",shape="box"];1024[label="vxw110",fontsize=16,color="green",shape="box"];1025[label="vxw100",fontsize=16,color="green",shape="box"];1026[label="vxw110",fontsize=16,color="green",shape="box"];1027[label="vxw100",fontsize=16,color="green",shape="box"];1028[label="vxw110",fontsize=16,color="green",shape="box"];1029[label="vxw100",fontsize=16,color="green",shape="box"];1030[label="vxw110",fontsize=16,color="green",shape="box"];1031[label="vxw100",fontsize=16,color="green",shape="box"];1032[label="vxw110",fontsize=16,color="green",shape="box"];1033[label="vxw100",fontsize=16,color="green",shape="box"];1034[label="vxw110",fontsize=16,color="green",shape="box"];1035[label="vxw100",fontsize=16,color="green",shape="box"];1036[label="vxw110",fontsize=16,color="green",shape="box"];1037[label="vxw100",fontsize=16,color="green",shape="box"];1038[label="vxw110",fontsize=16,color="green",shape="box"];1039[label="vxw100",fontsize=16,color="green",shape="box"];1040[label="vxw110",fontsize=16,color="green",shape="box"];1041[label="vxw100",fontsize=16,color="green",shape="box"];1042[label="vxw110",fontsize=16,color="green",shape="box"];1043[label="vxw100",fontsize=16,color="green",shape="box"];1044[label="vxw110",fontsize=16,color="green",shape="box"];1045[label="vxw100",fontsize=16,color="green",shape="box"];1046[label="vxw110",fontsize=16,color="green",shape="box"];1047[label="vxw100",fontsize=16,color="green",shape="box"];1048[label="vxw110",fontsize=16,color="green",shape="box"];1049[label="vxw100",fontsize=16,color="green",shape="box"];1050[label="vxw110",fontsize=16,color="green",shape="box"];1051[label="vxw100",fontsize=16,color="green",shape="box"];1052[label="vxw110",fontsize=16,color="green",shape="box"];1053[label="vxw100",fontsize=16,color="green",shape="box"];1054[label="vxw110",fontsize=16,color="green",shape="box"];1055[label="vxw100",fontsize=16,color="green",shape="box"];1056[label="compare () vxw10",fontsize=16,color="burlywood",shape="box"];2259[label="vxw10/()",fontsize=10,color="white",style="solid",shape="box"];1056 -> 2259[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2259 -> 1149[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1057[label="compare (vxw110 : vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2260[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];1057 -> 2260[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2260 -> 1150[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2261[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];1057 -> 2261[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2261 -> 1151[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1058[label="compare [] vxw10",fontsize=16,color="burlywood",shape="box"];2262[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];1058 -> 2262[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2262 -> 1152[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2263[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];1058 -> 2263[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2263 -> 1153[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1059[label="compare (Integer vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2264[label="vxw10/Integer vxw100",fontsize=10,color="white",style="solid",shape="box"];1059 -> 2264[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2264 -> 1154[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1060[label="compare (vxw110 :% vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2265[label="vxw10/vxw100 :% vxw101",fontsize=10,color="white",style="solid",shape="box"];1060 -> 2265[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2265 -> 1155[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1061[label="primCmpFloat vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2266[label="vxw11/Float vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];1061 -> 2266[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2266 -> 1156[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1062[label="primCmpInt vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2267[label="vxw11/Pos vxw110",fontsize=10,color="white",style="solid",shape="box"];1062 -> 2267[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2267 -> 1157[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2268[label="vxw11/Neg vxw110",fontsize=10,color="white",style="solid",shape="box"];1062 -> 2268[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2268 -> 1158[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1063[label="vxw110",fontsize=16,color="green",shape="box"];1064[label="vxw100",fontsize=16,color="green",shape="box"];1065[label="vxw110",fontsize=16,color="green",shape="box"];1066[label="vxw100",fontsize=16,color="green",shape="box"];1067[label="vxw110",fontsize=16,color="green",shape="box"];1068[label="vxw100",fontsize=16,color="green",shape="box"];1069[label="vxw110",fontsize=16,color="green",shape="box"];1070[label="vxw100",fontsize=16,color="green",shape="box"];1071[label="vxw110",fontsize=16,color="green",shape="box"];1072[label="vxw100",fontsize=16,color="green",shape="box"];1073[label="vxw110",fontsize=16,color="green",shape="box"];1074[label="vxw100",fontsize=16,color="green",shape="box"];1075[label="vxw110",fontsize=16,color="green",shape="box"];1076[label="vxw100",fontsize=16,color="green",shape="box"];1077[label="vxw110",fontsize=16,color="green",shape="box"];1078[label="vxw100",fontsize=16,color="green",shape="box"];1079[label="vxw110",fontsize=16,color="green",shape="box"];1080[label="vxw100",fontsize=16,color="green",shape="box"];1081[label="vxw110",fontsize=16,color="green",shape="box"];1082[label="vxw100",fontsize=16,color="green",shape="box"];1083[label="vxw110",fontsize=16,color="green",shape="box"];1084[label="vxw100",fontsize=16,color="green",shape="box"];1085[label="vxw110",fontsize=16,color="green",shape="box"];1086[label="vxw100",fontsize=16,color="green",shape="box"];1087[label="vxw110",fontsize=16,color="green",shape="box"];1088[label="vxw100",fontsize=16,color="green",shape="box"];1089[label="vxw110",fontsize=16,color="green",shape="box"];1090[label="vxw100",fontsize=16,color="green",shape="box"];1091[label="primCmpDouble vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2269[label="vxw11/Double vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];1091 -> 2269[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2269 -> 1159[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1092[label="vxw111 <= vxw101",fontsize=16,color="blue",shape="box"];2270[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2270[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2270 -> 1160[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2271[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2271[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2271 -> 1161[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2272[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2272[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2272 -> 1162[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2273[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2273[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2273 -> 1163[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2274[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2274[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2274 -> 1164[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2275[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2275[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2275 -> 1165[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2276[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2276[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2276 -> 1166[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2277[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2277[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2277 -> 1167[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2278[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2278[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2278 -> 1168[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2279[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2279[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2279 -> 1169[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2280[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2280[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2280 -> 1170[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2281[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2281[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2281 -> 1171[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2282[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2282[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2282 -> 1172[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2283[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1092 -> 2283[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2283 -> 1173[label="",style="solid", color="blue", weight=3]; 22.49/8.82 1093[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2284[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2284[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2284 -> 1174[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2285[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2285[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2285 -> 1175[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2286[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2286[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2286 -> 1176[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2287[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2287[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2287 -> 1177[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2288[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2288[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2288 -> 1178[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2289[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2289[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2289 -> 1179[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2290[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2290[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2290 -> 1180[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2291[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2291[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2291 -> 1181[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2292[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2292[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2292 -> 1182[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2293[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2293[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2293 -> 1183[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2294[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2294[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2294 -> 1184[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2295[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2295[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2295 -> 1185[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2296[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2296[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2296 -> 1186[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2297[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1093 -> 2297[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2297 -> 1187[label="",style="solid", color="blue", weight=3]; 22.49/8.82 1094 -> 984[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1094[label="vxw110 < vxw100",fontsize=16,color="magenta"];1094 -> 1188[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1094 -> 1189[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1095 -> 985[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1095[label="vxw110 < vxw100",fontsize=16,color="magenta"];1095 -> 1190[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1095 -> 1191[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1096 -> 986[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1096[label="vxw110 < vxw100",fontsize=16,color="magenta"];1096 -> 1192[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1096 -> 1193[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1097 -> 987[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1097[label="vxw110 < vxw100",fontsize=16,color="magenta"];1097 -> 1194[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1097 -> 1195[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1098 -> 988[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1098[label="vxw110 < vxw100",fontsize=16,color="magenta"];1098 -> 1196[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1098 -> 1197[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1099 -> 989[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1099[label="vxw110 < vxw100",fontsize=16,color="magenta"];1099 -> 1198[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1099 -> 1199[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1100 -> 990[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1100[label="vxw110 < vxw100",fontsize=16,color="magenta"];1100 -> 1200[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1100 -> 1201[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1101 -> 991[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1101[label="vxw110 < vxw100",fontsize=16,color="magenta"];1101 -> 1202[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1101 -> 1203[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1102 -> 992[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1102[label="vxw110 < vxw100",fontsize=16,color="magenta"];1102 -> 1204[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1102 -> 1205[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1103 -> 993[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1103[label="vxw110 < vxw100",fontsize=16,color="magenta"];1103 -> 1206[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1103 -> 1207[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1104 -> 994[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1104[label="vxw110 < vxw100",fontsize=16,color="magenta"];1104 -> 1208[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1104 -> 1209[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1105 -> 995[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1105[label="vxw110 < vxw100",fontsize=16,color="magenta"];1105 -> 1210[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1105 -> 1211[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1106 -> 996[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1106[label="vxw110 < vxw100",fontsize=16,color="magenta"];1106 -> 1212[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1106 -> 1213[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1107 -> 997[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1107[label="vxw110 < vxw100",fontsize=16,color="magenta"];1107 -> 1214[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1107 -> 1215[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1108[label="Left vxw29",fontsize=16,color="green",shape="box"];1109[label="vxw30",fontsize=16,color="green",shape="box"];1110[label="Right vxw38",fontsize=16,color="green",shape="box"];1111[label="vxw39",fontsize=16,color="green",shape="box"];1112[label="primMulNat vxw3010 vxw40000",fontsize=16,color="burlywood",shape="triangle"];2298[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];1112 -> 2298[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2298 -> 1216[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2299[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1112 -> 2299[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2299 -> 1217[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1113 -> 1112[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1113[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1113 -> 1218[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1114 -> 1112[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1114[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1114 -> 1219[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1115 -> 1112[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1115[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1115 -> 1220[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1115 -> 1221[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1116[label="primCmpChar (Char vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2300[label="vxw10/Char vxw100",fontsize=10,color="white",style="solid",shape="box"];1116 -> 2300[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2300 -> 1222[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1117 -> 348[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1117[label="vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];1117 -> 1223[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1117 -> 1224[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1118[label="vxw111 < vxw101",fontsize=16,color="blue",shape="box"];2301[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2301[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2301 -> 1225[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2302[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2302[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2302 -> 1226[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2303[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2303[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2303 -> 1227[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2304[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2304[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2304 -> 1228[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2305[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2305[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2305 -> 1229[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2306[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2306[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2306 -> 1230[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2307[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2307[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2307 -> 1231[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2308[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2308[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2308 -> 1232[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2309[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2309[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2309 -> 1233[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2310[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2310[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2310 -> 1234[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2311[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2311[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2311 -> 1235[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2312[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2312[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2312 -> 1236[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2313[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2313[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2313 -> 1237[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2314[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1118 -> 2314[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2314 -> 1238[label="",style="solid", color="blue", weight=3]; 22.49/8.82 1119 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1119[label="vxw110 == vxw100",fontsize=16,color="magenta"];1119 -> 1239[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1119 -> 1240[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1120 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1120[label="vxw110 == vxw100",fontsize=16,color="magenta"];1120 -> 1241[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1120 -> 1242[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1121 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1121[label="vxw110 == vxw100",fontsize=16,color="magenta"];1121 -> 1243[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1121 -> 1244[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1122 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1122[label="vxw110 == vxw100",fontsize=16,color="magenta"];1122 -> 1245[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1122 -> 1246[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1123 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1123[label="vxw110 == vxw100",fontsize=16,color="magenta"];1123 -> 1247[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1123 -> 1248[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1124 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1124[label="vxw110 == vxw100",fontsize=16,color="magenta"];1124 -> 1249[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1124 -> 1250[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1125 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1125[label="vxw110 == vxw100",fontsize=16,color="magenta"];1125 -> 1251[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1125 -> 1252[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1126 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1126[label="vxw110 == vxw100",fontsize=16,color="magenta"];1126 -> 1253[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1126 -> 1254[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1127 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1127[label="vxw110 == vxw100",fontsize=16,color="magenta"];1127 -> 1255[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1127 -> 1256[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1128 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1128[label="vxw110 == vxw100",fontsize=16,color="magenta"];1128 -> 1257[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1128 -> 1258[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1129 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1129[label="vxw110 == vxw100",fontsize=16,color="magenta"];1129 -> 1259[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1129 -> 1260[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1130 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1130[label="vxw110 == vxw100",fontsize=16,color="magenta"];1130 -> 1261[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1130 -> 1262[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1131 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1131[label="vxw110 == vxw100",fontsize=16,color="magenta"];1131 -> 1263[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1131 -> 1264[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1132 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1132[label="vxw110 == vxw100",fontsize=16,color="magenta"];1132 -> 1265[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1132 -> 1266[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1133 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1133[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1133 -> 1267[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1133 -> 1268[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1134 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1134[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1134 -> 1269[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1134 -> 1270[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1135 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1135[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1135 -> 1271[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1135 -> 1272[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1136 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1136[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1136 -> 1273[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1136 -> 1274[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1137 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1137[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1137 -> 1275[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1137 -> 1276[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1138 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1138[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1138 -> 1277[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1138 -> 1278[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1139 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1139[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1139 -> 1279[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1139 -> 1280[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1140 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1140[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1140 -> 1281[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1140 -> 1282[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1141 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1141[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1141 -> 1283[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1141 -> 1284[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1142 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1142[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1142 -> 1285[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1142 -> 1286[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1143 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1143[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1143 -> 1287[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1143 -> 1288[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1144 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1144[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1144 -> 1289[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1144 -> 1290[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1145 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1145[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1145 -> 1291[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1145 -> 1292[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1146 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1146[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1146 -> 1293[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1146 -> 1294[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1147[label="vxw61",fontsize=16,color="green",shape="box"];1148[label="True",fontsize=16,color="green",shape="box"];1149[label="compare () ()",fontsize=16,color="black",shape="box"];1149 -> 1295[label="",style="solid", color="black", weight=3]; 22.49/8.82 1150[label="compare (vxw110 : vxw111) (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1150 -> 1296[label="",style="solid", color="black", weight=3]; 22.49/8.82 1151[label="compare (vxw110 : vxw111) []",fontsize=16,color="black",shape="box"];1151 -> 1297[label="",style="solid", color="black", weight=3]; 22.49/8.82 1152[label="compare [] (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1152 -> 1298[label="",style="solid", color="black", weight=3]; 22.49/8.82 1153[label="compare [] []",fontsize=16,color="black",shape="box"];1153 -> 1299[label="",style="solid", color="black", weight=3]; 22.49/8.82 1154[label="compare (Integer vxw110) (Integer vxw100)",fontsize=16,color="black",shape="box"];1154 -> 1300[label="",style="solid", color="black", weight=3]; 22.49/8.82 1155[label="compare (vxw110 :% vxw111) (vxw100 :% vxw101)",fontsize=16,color="black",shape="box"];1155 -> 1301[label="",style="solid", color="black", weight=3]; 22.49/8.82 1156[label="primCmpFloat (Float vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2315[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2315[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2315 -> 1302[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2316[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2316[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2316 -> 1303[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1157[label="primCmpInt (Pos vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2317[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2317[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2317 -> 1304[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2318[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1157 -> 2318[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2318 -> 1305[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1158[label="primCmpInt (Neg vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2319[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2319[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2319 -> 1306[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2320[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1158 -> 2320[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2320 -> 1307[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1159[label="primCmpDouble (Double vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2321[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];1159 -> 2321[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2321 -> 1308[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2322[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];1159 -> 2322[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2322 -> 1309[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1160 -> 301[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1160[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1160 -> 1310[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1160 -> 1311[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1161 -> 302[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1161[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1161 -> 1312[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1161 -> 1313[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1162 -> 303[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1162[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1162 -> 1314[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1162 -> 1315[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1163 -> 304[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1163[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1163 -> 1316[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1163 -> 1317[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1164 -> 305[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1164[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1164 -> 1318[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1164 -> 1319[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1165 -> 306[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1165[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1165 -> 1320[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1165 -> 1321[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1166 -> 307[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1166[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1166 -> 1322[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1166 -> 1323[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1167 -> 308[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1167[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1167 -> 1324[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1167 -> 1325[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1168 -> 309[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1168[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1168 -> 1326[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1168 -> 1327[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1169 -> 310[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1169[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1169 -> 1328[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1169 -> 1329[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1170 -> 311[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1170[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1170 -> 1330[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1170 -> 1331[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1171 -> 312[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1171[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1171 -> 1332[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1171 -> 1333[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1172 -> 313[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1172[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1172 -> 1334[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1172 -> 1335[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1173 -> 314[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1173[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1173 -> 1336[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1173 -> 1337[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1174 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1174[label="vxw110 == vxw100",fontsize=16,color="magenta"];1174 -> 1338[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1174 -> 1339[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1175 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1175[label="vxw110 == vxw100",fontsize=16,color="magenta"];1175 -> 1340[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1175 -> 1341[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1176 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1176[label="vxw110 == vxw100",fontsize=16,color="magenta"];1176 -> 1342[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1176 -> 1343[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1177 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1177[label="vxw110 == vxw100",fontsize=16,color="magenta"];1177 -> 1344[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1177 -> 1345[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1178 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1178[label="vxw110 == vxw100",fontsize=16,color="magenta"];1178 -> 1346[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1178 -> 1347[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1179 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1179[label="vxw110 == vxw100",fontsize=16,color="magenta"];1179 -> 1348[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1179 -> 1349[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1180 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1180[label="vxw110 == vxw100",fontsize=16,color="magenta"];1180 -> 1350[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1180 -> 1351[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1181 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1181[label="vxw110 == vxw100",fontsize=16,color="magenta"];1181 -> 1352[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1181 -> 1353[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1182 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1182[label="vxw110 == vxw100",fontsize=16,color="magenta"];1182 -> 1354[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1182 -> 1355[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1183 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1183[label="vxw110 == vxw100",fontsize=16,color="magenta"];1183 -> 1356[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1183 -> 1357[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1184 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1184[label="vxw110 == vxw100",fontsize=16,color="magenta"];1184 -> 1358[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1184 -> 1359[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1185 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1185[label="vxw110 == vxw100",fontsize=16,color="magenta"];1185 -> 1360[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1185 -> 1361[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1186 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1186[label="vxw110 == vxw100",fontsize=16,color="magenta"];1186 -> 1362[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1186 -> 1363[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1187 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1187[label="vxw110 == vxw100",fontsize=16,color="magenta"];1187 -> 1364[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1187 -> 1365[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1188[label="vxw100",fontsize=16,color="green",shape="box"];1189[label="vxw110",fontsize=16,color="green",shape="box"];1190[label="vxw100",fontsize=16,color="green",shape="box"];1191[label="vxw110",fontsize=16,color="green",shape="box"];1192[label="vxw100",fontsize=16,color="green",shape="box"];1193[label="vxw110",fontsize=16,color="green",shape="box"];1194[label="vxw100",fontsize=16,color="green",shape="box"];1195[label="vxw110",fontsize=16,color="green",shape="box"];1196[label="vxw100",fontsize=16,color="green",shape="box"];1197[label="vxw110",fontsize=16,color="green",shape="box"];1198[label="vxw100",fontsize=16,color="green",shape="box"];1199[label="vxw110",fontsize=16,color="green",shape="box"];1200[label="vxw100",fontsize=16,color="green",shape="box"];1201[label="vxw110",fontsize=16,color="green",shape="box"];1202[label="vxw100",fontsize=16,color="green",shape="box"];1203[label="vxw110",fontsize=16,color="green",shape="box"];1204[label="vxw100",fontsize=16,color="green",shape="box"];1205[label="vxw110",fontsize=16,color="green",shape="box"];1206[label="vxw100",fontsize=16,color="green",shape="box"];1207[label="vxw110",fontsize=16,color="green",shape="box"];1208[label="vxw100",fontsize=16,color="green",shape="box"];1209[label="vxw110",fontsize=16,color="green",shape="box"];1210[label="vxw100",fontsize=16,color="green",shape="box"];1211[label="vxw110",fontsize=16,color="green",shape="box"];1212[label="vxw100",fontsize=16,color="green",shape="box"];1213[label="vxw110",fontsize=16,color="green",shape="box"];1214[label="vxw100",fontsize=16,color="green",shape="box"];1215[label="vxw110",fontsize=16,color="green",shape="box"];1216[label="primMulNat (Succ vxw30100) vxw40000",fontsize=16,color="burlywood",shape="box"];2323[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1216 -> 2323[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2323 -> 1366[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2324[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1216 -> 2324[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2324 -> 1367[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1217[label="primMulNat Zero vxw40000",fontsize=16,color="burlywood",shape="box"];2325[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1217 -> 2325[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2325 -> 1368[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2326[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1217 -> 2326[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2326 -> 1369[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1218[label="vxw40000",fontsize=16,color="green",shape="box"];1219[label="vxw3010",fontsize=16,color="green",shape="box"];1220[label="vxw3010",fontsize=16,color="green",shape="box"];1221[label="vxw40000",fontsize=16,color="green",shape="box"];1222[label="primCmpChar (Char vxw110) (Char vxw100)",fontsize=16,color="black",shape="box"];1222 -> 1370[label="",style="solid", color="black", weight=3]; 22.49/8.82 1223[label="vxw112 <= vxw102",fontsize=16,color="blue",shape="box"];2327[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2327[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2327 -> 1371[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2328[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2328[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2328 -> 1372[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2329[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2329[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2329 -> 1373[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2330[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2330[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2330 -> 1374[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2331[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2331[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2331 -> 1375[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2332[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2332[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2332 -> 1376[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2333[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2333[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2333 -> 1377[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2334[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2334[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2334 -> 1378[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2335[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2335[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2335 -> 1379[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2336[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2336[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2336 -> 1380[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2337[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2337[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2337 -> 1381[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2338[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2338[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2338 -> 1382[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2339[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2339[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2339 -> 1383[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2340[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1223 -> 2340[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2340 -> 1384[label="",style="solid", color="blue", weight=3]; 22.49/8.82 1224[label="vxw111 == vxw101",fontsize=16,color="blue",shape="box"];2341[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2341[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2341 -> 1385[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2342[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2342[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2342 -> 1386[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2343[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2343[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2343 -> 1387[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2344[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2344[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2344 -> 1388[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2345[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2345[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2345 -> 1389[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2346[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2346[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2346 -> 1390[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2347[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2347[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2347 -> 1391[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2348[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2348[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2348 -> 1392[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2349[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2349[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2349 -> 1393[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2350[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2350[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2350 -> 1394[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2351[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2351[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2351 -> 1395[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2352[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2352[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2352 -> 1396[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2353[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2353[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2353 -> 1397[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2354[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1224 -> 2354[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2354 -> 1398[label="",style="solid", color="blue", weight=3]; 22.49/8.82 1225 -> 984[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1225[label="vxw111 < vxw101",fontsize=16,color="magenta"];1225 -> 1399[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1225 -> 1400[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1226 -> 985[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1226[label="vxw111 < vxw101",fontsize=16,color="magenta"];1226 -> 1401[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1226 -> 1402[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1227 -> 986[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1227[label="vxw111 < vxw101",fontsize=16,color="magenta"];1227 -> 1403[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1227 -> 1404[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1228 -> 987[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1228[label="vxw111 < vxw101",fontsize=16,color="magenta"];1228 -> 1405[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1228 -> 1406[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1229 -> 988[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1229[label="vxw111 < vxw101",fontsize=16,color="magenta"];1229 -> 1407[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1229 -> 1408[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1230 -> 989[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1230[label="vxw111 < vxw101",fontsize=16,color="magenta"];1230 -> 1409[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1230 -> 1410[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1231 -> 990[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1231[label="vxw111 < vxw101",fontsize=16,color="magenta"];1231 -> 1411[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1231 -> 1412[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1232 -> 991[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1232[label="vxw111 < vxw101",fontsize=16,color="magenta"];1232 -> 1413[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1232 -> 1414[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1233 -> 992[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1233[label="vxw111 < vxw101",fontsize=16,color="magenta"];1233 -> 1415[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1233 -> 1416[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1234 -> 993[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1234[label="vxw111 < vxw101",fontsize=16,color="magenta"];1234 -> 1417[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1234 -> 1418[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1235 -> 994[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1235[label="vxw111 < vxw101",fontsize=16,color="magenta"];1235 -> 1419[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1235 -> 1420[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1236 -> 995[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1236[label="vxw111 < vxw101",fontsize=16,color="magenta"];1236 -> 1421[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1236 -> 1422[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1237 -> 996[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1237[label="vxw111 < vxw101",fontsize=16,color="magenta"];1237 -> 1423[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1237 -> 1424[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1238 -> 997[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1238[label="vxw111 < vxw101",fontsize=16,color="magenta"];1238 -> 1425[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1238 -> 1426[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1239[label="vxw100",fontsize=16,color="green",shape="box"];1240[label="vxw110",fontsize=16,color="green",shape="box"];1241[label="vxw100",fontsize=16,color="green",shape="box"];1242[label="vxw110",fontsize=16,color="green",shape="box"];1243[label="vxw100",fontsize=16,color="green",shape="box"];1244[label="vxw110",fontsize=16,color="green",shape="box"];1245[label="vxw100",fontsize=16,color="green",shape="box"];1246[label="vxw110",fontsize=16,color="green",shape="box"];1247[label="vxw100",fontsize=16,color="green",shape="box"];1248[label="vxw110",fontsize=16,color="green",shape="box"];1249[label="vxw100",fontsize=16,color="green",shape="box"];1250[label="vxw110",fontsize=16,color="green",shape="box"];1251[label="vxw100",fontsize=16,color="green",shape="box"];1252[label="vxw110",fontsize=16,color="green",shape="box"];1253[label="vxw100",fontsize=16,color="green",shape="box"];1254[label="vxw110",fontsize=16,color="green",shape="box"];1255[label="vxw100",fontsize=16,color="green",shape="box"];1256[label="vxw110",fontsize=16,color="green",shape="box"];1257[label="vxw100",fontsize=16,color="green",shape="box"];1258[label="vxw110",fontsize=16,color="green",shape="box"];1259[label="vxw100",fontsize=16,color="green",shape="box"];1260[label="vxw110",fontsize=16,color="green",shape="box"];1261[label="vxw100",fontsize=16,color="green",shape="box"];1262[label="vxw110",fontsize=16,color="green",shape="box"];1263[label="vxw100",fontsize=16,color="green",shape="box"];1264[label="vxw110",fontsize=16,color="green",shape="box"];1265[label="vxw100",fontsize=16,color="green",shape="box"];1266[label="vxw110",fontsize=16,color="green",shape="box"];1267[label="LT",fontsize=16,color="green",shape="box"];1268 -> 898[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1268[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1268 -> 1427[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1268 -> 1428[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1269[label="LT",fontsize=16,color="green",shape="box"];1270[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1270 -> 1429[label="",style="solid", color="black", weight=3]; 22.49/8.82 1271[label="LT",fontsize=16,color="green",shape="box"];1272[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1272 -> 1430[label="",style="solid", color="black", weight=3]; 22.49/8.82 1273[label="LT",fontsize=16,color="green",shape="box"];1274 -> 902[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1274[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1274 -> 1431[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1274 -> 1432[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1275[label="LT",fontsize=16,color="green",shape="box"];1276[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1276 -> 1433[label="",style="solid", color="black", weight=3]; 22.49/8.82 1277[label="LT",fontsize=16,color="green",shape="box"];1278 -> 904[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1278[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1278 -> 1434[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1278 -> 1435[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1279[label="LT",fontsize=16,color="green",shape="box"];1280 -> 906[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1280[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1280 -> 1436[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1280 -> 1437[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1281[label="LT",fontsize=16,color="green",shape="box"];1282 -> 908[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1282[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1282 -> 1438[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1282 -> 1439[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1283[label="LT",fontsize=16,color="green",shape="box"];1284 -> 910[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1284[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1284 -> 1440[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1284 -> 1441[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1285[label="LT",fontsize=16,color="green",shape="box"];1286 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1286[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1286 -> 1442[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1286 -> 1443[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1287[label="LT",fontsize=16,color="green",shape="box"];1288[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1288 -> 1444[label="",style="solid", color="black", weight=3]; 22.49/8.82 1289[label="LT",fontsize=16,color="green",shape="box"];1290[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1290 -> 1445[label="",style="solid", color="black", weight=3]; 22.49/8.82 1291[label="LT",fontsize=16,color="green",shape="box"];1292 -> 914[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1292[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1292 -> 1446[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1292 -> 1447[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1293[label="LT",fontsize=16,color="green",shape="box"];1294[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1294 -> 1448[label="",style="solid", color="black", weight=3]; 22.49/8.82 1295[label="EQ",fontsize=16,color="green",shape="box"];1296 -> 1449[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1296[label="primCompAux vxw110 vxw100 (compare vxw111 vxw101)",fontsize=16,color="magenta"];1296 -> 1450[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1297[label="GT",fontsize=16,color="green",shape="box"];1298[label="LT",fontsize=16,color="green",shape="box"];1299[label="EQ",fontsize=16,color="green",shape="box"];1300 -> 1062[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1300[label="primCmpInt vxw110 vxw100",fontsize=16,color="magenta"];1300 -> 1451[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1300 -> 1452[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1301[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="blue",shape="box"];2355[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2355[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2355 -> 1453[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2356[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2356[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2356 -> 1454[label="",style="solid", color="blue", weight=3]; 22.49/8.82 1302[label="primCmpFloat (Float vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2357[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1302 -> 2357[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2357 -> 1455[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1303[label="primCmpFloat (Float vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2358[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2358[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2358 -> 1456[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1304[label="primCmpInt (Pos (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2359[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2359[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2359 -> 1457[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2360[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1304 -> 2360[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2360 -> 1458[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1305[label="primCmpInt (Pos Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2361[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2361[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2361 -> 1459[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2362[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1305 -> 2362[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2362 -> 1460[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1306[label="primCmpInt (Neg (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2363[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2363[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2363 -> 1461[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2364[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2364[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2364 -> 1462[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1307[label="primCmpInt (Neg Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2365[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2365[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2365 -> 1463[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2366[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1307 -> 2366[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2366 -> 1464[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1308[label="primCmpDouble (Double vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2367[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1308 -> 2367[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2367 -> 1465[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1309[label="primCmpDouble (Double vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2368[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1309 -> 2368[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2368 -> 1466[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1310[label="vxw111",fontsize=16,color="green",shape="box"];1311[label="vxw101",fontsize=16,color="green",shape="box"];1312[label="vxw111",fontsize=16,color="green",shape="box"];1313[label="vxw101",fontsize=16,color="green",shape="box"];1314[label="vxw111",fontsize=16,color="green",shape="box"];1315[label="vxw101",fontsize=16,color="green",shape="box"];1316[label="vxw111",fontsize=16,color="green",shape="box"];1317[label="vxw101",fontsize=16,color="green",shape="box"];1318[label="vxw111",fontsize=16,color="green",shape="box"];1319[label="vxw101",fontsize=16,color="green",shape="box"];1320[label="vxw111",fontsize=16,color="green",shape="box"];1321[label="vxw101",fontsize=16,color="green",shape="box"];1322[label="vxw111",fontsize=16,color="green",shape="box"];1323[label="vxw101",fontsize=16,color="green",shape="box"];1324[label="vxw111",fontsize=16,color="green",shape="box"];1325[label="vxw101",fontsize=16,color="green",shape="box"];1326[label="vxw111",fontsize=16,color="green",shape="box"];1327[label="vxw101",fontsize=16,color="green",shape="box"];1328[label="vxw111",fontsize=16,color="green",shape="box"];1329[label="vxw101",fontsize=16,color="green",shape="box"];1330[label="vxw111",fontsize=16,color="green",shape="box"];1331[label="vxw101",fontsize=16,color="green",shape="box"];1332[label="vxw111",fontsize=16,color="green",shape="box"];1333[label="vxw101",fontsize=16,color="green",shape="box"];1334[label="vxw111",fontsize=16,color="green",shape="box"];1335[label="vxw101",fontsize=16,color="green",shape="box"];1336[label="vxw111",fontsize=16,color="green",shape="box"];1337[label="vxw101",fontsize=16,color="green",shape="box"];1338[label="vxw100",fontsize=16,color="green",shape="box"];1339[label="vxw110",fontsize=16,color="green",shape="box"];1340[label="vxw100",fontsize=16,color="green",shape="box"];1341[label="vxw110",fontsize=16,color="green",shape="box"];1342[label="vxw100",fontsize=16,color="green",shape="box"];1343[label="vxw110",fontsize=16,color="green",shape="box"];1344[label="vxw100",fontsize=16,color="green",shape="box"];1345[label="vxw110",fontsize=16,color="green",shape="box"];1346[label="vxw100",fontsize=16,color="green",shape="box"];1347[label="vxw110",fontsize=16,color="green",shape="box"];1348[label="vxw100",fontsize=16,color="green",shape="box"];1349[label="vxw110",fontsize=16,color="green",shape="box"];1350[label="vxw100",fontsize=16,color="green",shape="box"];1351[label="vxw110",fontsize=16,color="green",shape="box"];1352[label="vxw100",fontsize=16,color="green",shape="box"];1353[label="vxw110",fontsize=16,color="green",shape="box"];1354[label="vxw100",fontsize=16,color="green",shape="box"];1355[label="vxw110",fontsize=16,color="green",shape="box"];1356[label="vxw100",fontsize=16,color="green",shape="box"];1357[label="vxw110",fontsize=16,color="green",shape="box"];1358[label="vxw100",fontsize=16,color="green",shape="box"];1359[label="vxw110",fontsize=16,color="green",shape="box"];1360[label="vxw100",fontsize=16,color="green",shape="box"];1361[label="vxw110",fontsize=16,color="green",shape="box"];1362[label="vxw100",fontsize=16,color="green",shape="box"];1363[label="vxw110",fontsize=16,color="green",shape="box"];1364[label="vxw100",fontsize=16,color="green",shape="box"];1365[label="vxw110",fontsize=16,color="green",shape="box"];1366[label="primMulNat (Succ vxw30100) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1366 -> 1467[label="",style="solid", color="black", weight=3]; 22.49/8.82 1367[label="primMulNat (Succ vxw30100) Zero",fontsize=16,color="black",shape="box"];1367 -> 1468[label="",style="solid", color="black", weight=3]; 22.49/8.82 1368[label="primMulNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1368 -> 1469[label="",style="solid", color="black", weight=3]; 22.49/8.82 1369[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1369 -> 1470[label="",style="solid", color="black", weight=3]; 22.49/8.82 1370[label="primCmpNat vxw110 vxw100",fontsize=16,color="burlywood",shape="triangle"];2369[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2369[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2369 -> 1471[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2370[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2370[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2370 -> 1472[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1371 -> 301[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1371[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1371 -> 1473[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1371 -> 1474[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1372 -> 302[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1372[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1372 -> 1475[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1372 -> 1476[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1373 -> 303[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1373[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1373 -> 1477[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1373 -> 1478[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1374 -> 304[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1374[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1374 -> 1479[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1374 -> 1480[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1375 -> 305[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1375[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1375 -> 1481[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1375 -> 1482[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1376 -> 306[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1376[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1376 -> 1483[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1376 -> 1484[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1377 -> 307[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1377[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1377 -> 1485[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1377 -> 1486[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1378 -> 308[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1378[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1378 -> 1487[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1378 -> 1488[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1379 -> 309[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1379[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1379 -> 1489[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1379 -> 1490[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1380 -> 310[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1380[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1380 -> 1491[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1380 -> 1492[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1381 -> 311[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1381[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1381 -> 1493[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1381 -> 1494[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1382 -> 312[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1382[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1382 -> 1495[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1382 -> 1496[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1383 -> 313[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1383[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1383 -> 1497[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1383 -> 1498[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1384 -> 314[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1384[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1384 -> 1499[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1384 -> 1500[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1385 -> 45[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1385[label="vxw111 == vxw101",fontsize=16,color="magenta"];1385 -> 1501[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1385 -> 1502[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1386 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1386[label="vxw111 == vxw101",fontsize=16,color="magenta"];1386 -> 1503[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1386 -> 1504[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1387 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1387[label="vxw111 == vxw101",fontsize=16,color="magenta"];1387 -> 1505[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1387 -> 1506[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1388 -> 39[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1388[label="vxw111 == vxw101",fontsize=16,color="magenta"];1388 -> 1507[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1388 -> 1508[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1389 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1389[label="vxw111 == vxw101",fontsize=16,color="magenta"];1389 -> 1509[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1389 -> 1510[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1390 -> 43[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1390[label="vxw111 == vxw101",fontsize=16,color="magenta"];1390 -> 1511[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1390 -> 1512[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1391 -> 38[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1391[label="vxw111 == vxw101",fontsize=16,color="magenta"];1391 -> 1513[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1391 -> 1514[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1392 -> 36[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1392[label="vxw111 == vxw101",fontsize=16,color="magenta"];1392 -> 1515[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1392 -> 1516[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1393 -> 44[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1393[label="vxw111 == vxw101",fontsize=16,color="magenta"];1393 -> 1517[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1393 -> 1518[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1394 -> 35[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1394[label="vxw111 == vxw101",fontsize=16,color="magenta"];1394 -> 1519[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1394 -> 1520[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1395 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1395[label="vxw111 == vxw101",fontsize=16,color="magenta"];1395 -> 1521[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1395 -> 1522[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1396 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1396[label="vxw111 == vxw101",fontsize=16,color="magenta"];1396 -> 1523[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1396 -> 1524[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1397 -> 40[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1397[label="vxw111 == vxw101",fontsize=16,color="magenta"];1397 -> 1525[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1397 -> 1526[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1398 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1398[label="vxw111 == vxw101",fontsize=16,color="magenta"];1398 -> 1527[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1398 -> 1528[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1399[label="vxw101",fontsize=16,color="green",shape="box"];1400[label="vxw111",fontsize=16,color="green",shape="box"];1401[label="vxw101",fontsize=16,color="green",shape="box"];1402[label="vxw111",fontsize=16,color="green",shape="box"];1403[label="vxw101",fontsize=16,color="green",shape="box"];1404[label="vxw111",fontsize=16,color="green",shape="box"];1405[label="vxw101",fontsize=16,color="green",shape="box"];1406[label="vxw111",fontsize=16,color="green",shape="box"];1407[label="vxw101",fontsize=16,color="green",shape="box"];1408[label="vxw111",fontsize=16,color="green",shape="box"];1409[label="vxw101",fontsize=16,color="green",shape="box"];1410[label="vxw111",fontsize=16,color="green",shape="box"];1411[label="vxw101",fontsize=16,color="green",shape="box"];1412[label="vxw111",fontsize=16,color="green",shape="box"];1413[label="vxw101",fontsize=16,color="green",shape="box"];1414[label="vxw111",fontsize=16,color="green",shape="box"];1415[label="vxw101",fontsize=16,color="green",shape="box"];1416[label="vxw111",fontsize=16,color="green",shape="box"];1417[label="vxw101",fontsize=16,color="green",shape="box"];1418[label="vxw111",fontsize=16,color="green",shape="box"];1419[label="vxw101",fontsize=16,color="green",shape="box"];1420[label="vxw111",fontsize=16,color="green",shape="box"];1421[label="vxw101",fontsize=16,color="green",shape="box"];1422[label="vxw111",fontsize=16,color="green",shape="box"];1423[label="vxw101",fontsize=16,color="green",shape="box"];1424[label="vxw111",fontsize=16,color="green",shape="box"];1425[label="vxw101",fontsize=16,color="green",shape="box"];1426[label="vxw111",fontsize=16,color="green",shape="box"];1427[label="vxw110",fontsize=16,color="green",shape="box"];1428[label="vxw100",fontsize=16,color="green",shape="box"];1429[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1429 -> 1529[label="",style="solid", color="black", weight=3]; 22.49/8.82 1430[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1430 -> 1530[label="",style="solid", color="black", weight=3]; 22.49/8.82 1431[label="vxw110",fontsize=16,color="green",shape="box"];1432[label="vxw100",fontsize=16,color="green",shape="box"];1433[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1433 -> 1531[label="",style="solid", color="black", weight=3]; 22.49/8.82 1434[label="vxw110",fontsize=16,color="green",shape="box"];1435[label="vxw100",fontsize=16,color="green",shape="box"];1436[label="vxw110",fontsize=16,color="green",shape="box"];1437[label="vxw100",fontsize=16,color="green",shape="box"];1438[label="vxw110",fontsize=16,color="green",shape="box"];1439[label="vxw100",fontsize=16,color="green",shape="box"];1440[label="vxw110",fontsize=16,color="green",shape="box"];1441[label="vxw100",fontsize=16,color="green",shape="box"];1442[label="vxw110",fontsize=16,color="green",shape="box"];1443[label="vxw100",fontsize=16,color="green",shape="box"];1444[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1444 -> 1532[label="",style="solid", color="black", weight=3]; 22.49/8.82 1445[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1445 -> 1533[label="",style="solid", color="black", weight=3]; 22.49/8.82 1446[label="vxw110",fontsize=16,color="green",shape="box"];1447[label="vxw100",fontsize=16,color="green",shape="box"];1448[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1448 -> 1534[label="",style="solid", color="black", weight=3]; 22.49/8.82 1450 -> 904[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1450[label="compare vxw111 vxw101",fontsize=16,color="magenta"];1450 -> 1535[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1450 -> 1536[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1449[label="primCompAux vxw110 vxw100 vxw62",fontsize=16,color="black",shape="triangle"];1449 -> 1537[label="",style="solid", color="black", weight=3]; 22.49/8.82 1451[label="vxw110",fontsize=16,color="green",shape="box"];1452[label="vxw100",fontsize=16,color="green",shape="box"];1453 -> 906[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1453[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1453 -> 1538[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1453 -> 1539[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1454 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1454[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1454 -> 1540[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1454 -> 1541[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1455[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2371[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2371[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2371 -> 1542[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2372[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1455 -> 2372[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2372 -> 1543[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1456[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2373[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2373[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2373 -> 1544[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2374[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2374[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2374 -> 1545[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1457[label="primCmpInt (Pos (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1457 -> 1546[label="",style="solid", color="black", weight=3]; 22.49/8.82 1458[label="primCmpInt (Pos (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1458 -> 1547[label="",style="solid", color="black", weight=3]; 22.49/8.82 1459[label="primCmpInt (Pos Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2375[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1459 -> 2375[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2375 -> 1548[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2376[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1459 -> 2376[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2376 -> 1549[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1460[label="primCmpInt (Pos Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2377[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2377[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2377 -> 1550[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2378[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2378[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2378 -> 1551[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1461[label="primCmpInt (Neg (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1461 -> 1552[label="",style="solid", color="black", weight=3]; 22.49/8.82 1462[label="primCmpInt (Neg (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1462 -> 1553[label="",style="solid", color="black", weight=3]; 22.49/8.82 1463[label="primCmpInt (Neg Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2379[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1463 -> 2379[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2379 -> 1554[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2380[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1463 -> 2380[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2380 -> 1555[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1464[label="primCmpInt (Neg Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2381[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2381[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2381 -> 1556[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2382[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1464 -> 2382[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2382 -> 1557[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1465[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2383[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1465 -> 2383[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2383 -> 1558[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2384[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1465 -> 2384[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2384 -> 1559[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1466[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2385[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2385[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2385 -> 1560[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2386[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1466 -> 2386[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2386 -> 1561[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1467 -> 1562[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1467[label="primPlusNat (primMulNat vxw30100 (Succ vxw400000)) (Succ vxw400000)",fontsize=16,color="magenta"];1467 -> 1563[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1468[label="Zero",fontsize=16,color="green",shape="box"];1469[label="Zero",fontsize=16,color="green",shape="box"];1470[label="Zero",fontsize=16,color="green",shape="box"];1471[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="burlywood",shape="box"];2387[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2387[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2387 -> 1564[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2388[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2388[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2388 -> 1565[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1472[label="primCmpNat Zero vxw100",fontsize=16,color="burlywood",shape="box"];2389[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2389[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2389 -> 1566[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2390[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2390[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2390 -> 1567[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1473[label="vxw112",fontsize=16,color="green",shape="box"];1474[label="vxw102",fontsize=16,color="green",shape="box"];1475[label="vxw112",fontsize=16,color="green",shape="box"];1476[label="vxw102",fontsize=16,color="green",shape="box"];1477[label="vxw112",fontsize=16,color="green",shape="box"];1478[label="vxw102",fontsize=16,color="green",shape="box"];1479[label="vxw112",fontsize=16,color="green",shape="box"];1480[label="vxw102",fontsize=16,color="green",shape="box"];1481[label="vxw112",fontsize=16,color="green",shape="box"];1482[label="vxw102",fontsize=16,color="green",shape="box"];1483[label="vxw112",fontsize=16,color="green",shape="box"];1484[label="vxw102",fontsize=16,color="green",shape="box"];1485[label="vxw112",fontsize=16,color="green",shape="box"];1486[label="vxw102",fontsize=16,color="green",shape="box"];1487[label="vxw112",fontsize=16,color="green",shape="box"];1488[label="vxw102",fontsize=16,color="green",shape="box"];1489[label="vxw112",fontsize=16,color="green",shape="box"];1490[label="vxw102",fontsize=16,color="green",shape="box"];1491[label="vxw112",fontsize=16,color="green",shape="box"];1492[label="vxw102",fontsize=16,color="green",shape="box"];1493[label="vxw112",fontsize=16,color="green",shape="box"];1494[label="vxw102",fontsize=16,color="green",shape="box"];1495[label="vxw112",fontsize=16,color="green",shape="box"];1496[label="vxw102",fontsize=16,color="green",shape="box"];1497[label="vxw112",fontsize=16,color="green",shape="box"];1498[label="vxw102",fontsize=16,color="green",shape="box"];1499[label="vxw112",fontsize=16,color="green",shape="box"];1500[label="vxw102",fontsize=16,color="green",shape="box"];1501[label="vxw101",fontsize=16,color="green",shape="box"];1502[label="vxw111",fontsize=16,color="green",shape="box"];1503[label="vxw101",fontsize=16,color="green",shape="box"];1504[label="vxw111",fontsize=16,color="green",shape="box"];1505[label="vxw101",fontsize=16,color="green",shape="box"];1506[label="vxw111",fontsize=16,color="green",shape="box"];1507[label="vxw101",fontsize=16,color="green",shape="box"];1508[label="vxw111",fontsize=16,color="green",shape="box"];1509[label="vxw101",fontsize=16,color="green",shape="box"];1510[label="vxw111",fontsize=16,color="green",shape="box"];1511[label="vxw101",fontsize=16,color="green",shape="box"];1512[label="vxw111",fontsize=16,color="green",shape="box"];1513[label="vxw101",fontsize=16,color="green",shape="box"];1514[label="vxw111",fontsize=16,color="green",shape="box"];1515[label="vxw101",fontsize=16,color="green",shape="box"];1516[label="vxw111",fontsize=16,color="green",shape="box"];1517[label="vxw101",fontsize=16,color="green",shape="box"];1518[label="vxw111",fontsize=16,color="green",shape="box"];1519[label="vxw101",fontsize=16,color="green",shape="box"];1520[label="vxw111",fontsize=16,color="green",shape="box"];1521[label="vxw101",fontsize=16,color="green",shape="box"];1522[label="vxw111",fontsize=16,color="green",shape="box"];1523[label="vxw101",fontsize=16,color="green",shape="box"];1524[label="vxw111",fontsize=16,color="green",shape="box"];1525[label="vxw101",fontsize=16,color="green",shape="box"];1526[label="vxw111",fontsize=16,color="green",shape="box"];1527[label="vxw101",fontsize=16,color="green",shape="box"];1528[label="vxw111",fontsize=16,color="green",shape="box"];1529 -> 1568[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1529[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1529 -> 1569[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1530 -> 1570[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1530[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1530 -> 1571[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1531 -> 1572[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1531[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1531 -> 1573[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1532 -> 1574[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1532[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1532 -> 1575[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1533 -> 1576[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1533[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1533 -> 1577[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1534 -> 1578[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1534[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1534 -> 1579[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1535[label="vxw111",fontsize=16,color="green",shape="box"];1536[label="vxw101",fontsize=16,color="green",shape="box"];1537 -> 1580[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1537[label="primCompAux0 vxw62 (compare vxw110 vxw100)",fontsize=16,color="magenta"];1537 -> 1581[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1537 -> 1582[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1538[label="vxw110 * vxw101",fontsize=16,color="burlywood",shape="triangle"];2391[label="vxw110/Integer vxw1100",fontsize=10,color="white",style="solid",shape="box"];1538 -> 2391[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2391 -> 1583[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1539 -> 1538[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1539[label="vxw100 * vxw111",fontsize=16,color="magenta"];1539 -> 1584[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1539 -> 1585[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1540 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1540[label="vxw110 * vxw101",fontsize=16,color="magenta"];1540 -> 1586[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1540 -> 1587[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1541 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1541[label="vxw100 * vxw111",fontsize=16,color="magenta"];1541 -> 1588[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1541 -> 1589[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1542[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1542 -> 1590[label="",style="solid", color="black", weight=3]; 22.49/8.82 1543[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1543 -> 1591[label="",style="solid", color="black", weight=3]; 22.49/8.82 1544[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1544 -> 1592[label="",style="solid", color="black", weight=3]; 22.49/8.82 1545[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1545 -> 1593[label="",style="solid", color="black", weight=3]; 22.49/8.82 1546 -> 1370[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1546[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="magenta"];1546 -> 1594[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1546 -> 1595[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1547[label="GT",fontsize=16,color="green",shape="box"];1548[label="primCmpInt (Pos Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1548 -> 1596[label="",style="solid", color="black", weight=3]; 22.49/8.82 1549[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1549 -> 1597[label="",style="solid", color="black", weight=3]; 22.49/8.82 1550[label="primCmpInt (Pos Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1550 -> 1598[label="",style="solid", color="black", weight=3]; 22.49/8.82 1551[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1551 -> 1599[label="",style="solid", color="black", weight=3]; 22.49/8.82 1552[label="LT",fontsize=16,color="green",shape="box"];1553 -> 1370[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1553[label="primCmpNat vxw100 (Succ vxw1100)",fontsize=16,color="magenta"];1553 -> 1600[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1553 -> 1601[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1554[label="primCmpInt (Neg Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1554 -> 1602[label="",style="solid", color="black", weight=3]; 22.49/8.82 1555[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1555 -> 1603[label="",style="solid", color="black", weight=3]; 22.49/8.82 1556[label="primCmpInt (Neg Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1556 -> 1604[label="",style="solid", color="black", weight=3]; 22.49/8.82 1557[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1557 -> 1605[label="",style="solid", color="black", weight=3]; 22.49/8.82 1558[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1558 -> 1606[label="",style="solid", color="black", weight=3]; 22.49/8.82 1559[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1559 -> 1607[label="",style="solid", color="black", weight=3]; 22.49/8.82 1560[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1560 -> 1608[label="",style="solid", color="black", weight=3]; 22.49/8.82 1561[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1561 -> 1609[label="",style="solid", color="black", weight=3]; 22.49/8.82 1563 -> 1112[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1563[label="primMulNat vxw30100 (Succ vxw400000)",fontsize=16,color="magenta"];1563 -> 1610[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1563 -> 1611[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1562[label="primPlusNat vxw63 (Succ vxw400000)",fontsize=16,color="burlywood",shape="triangle"];2392[label="vxw63/Succ vxw630",fontsize=10,color="white",style="solid",shape="box"];1562 -> 2392[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2392 -> 1612[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2393[label="vxw63/Zero",fontsize=10,color="white",style="solid",shape="box"];1562 -> 2393[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2393 -> 1613[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1564[label="primCmpNat (Succ vxw1100) (Succ vxw1000)",fontsize=16,color="black",shape="box"];1564 -> 1614[label="",style="solid", color="black", weight=3]; 22.49/8.82 1565[label="primCmpNat (Succ vxw1100) Zero",fontsize=16,color="black",shape="box"];1565 -> 1615[label="",style="solid", color="black", weight=3]; 22.49/8.82 1566[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="black",shape="box"];1566 -> 1616[label="",style="solid", color="black", weight=3]; 22.49/8.82 1567[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1567 -> 1617[label="",style="solid", color="black", weight=3]; 22.49/8.82 1569 -> 47[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1569[label="vxw110 == vxw100",fontsize=16,color="magenta"];1569 -> 1618[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1569 -> 1619[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1568[label="compare2 vxw110 vxw100 vxw64",fontsize=16,color="burlywood",shape="triangle"];2394[label="vxw64/False",fontsize=10,color="white",style="solid",shape="box"];1568 -> 2394[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2394 -> 1620[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2395[label="vxw64/True",fontsize=10,color="white",style="solid",shape="box"];1568 -> 2395[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2395 -> 1621[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1571 -> 37[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1571[label="vxw110 == vxw100",fontsize=16,color="magenta"];1571 -> 1622[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1571 -> 1623[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1570[label="compare2 vxw110 vxw100 vxw65",fontsize=16,color="burlywood",shape="triangle"];2396[label="vxw65/False",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2396[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2396 -> 1624[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2397[label="vxw65/True",fontsize=10,color="white",style="solid",shape="box"];1570 -> 2397[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2397 -> 1625[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1573 -> 46[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1573[label="vxw110 == vxw100",fontsize=16,color="magenta"];1573 -> 1626[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1573 -> 1627[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1572[label="compare2 vxw110 vxw100 vxw66",fontsize=16,color="burlywood",shape="triangle"];2398[label="vxw66/False",fontsize=10,color="white",style="solid",shape="box"];1572 -> 2398[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2398 -> 1628[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2399[label="vxw66/True",fontsize=10,color="white",style="solid",shape="box"];1572 -> 2399[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2399 -> 1629[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1575 -> 41[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1575[label="vxw110 == vxw100",fontsize=16,color="magenta"];1575 -> 1630[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1575 -> 1631[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1574[label="compare2 vxw110 vxw100 vxw67",fontsize=16,color="burlywood",shape="triangle"];2400[label="vxw67/False",fontsize=10,color="white",style="solid",shape="box"];1574 -> 2400[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2400 -> 1632[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2401[label="vxw67/True",fontsize=10,color="white",style="solid",shape="box"];1574 -> 2401[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2401 -> 1633[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1577 -> 42[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1577[label="vxw110 == vxw100",fontsize=16,color="magenta"];1577 -> 1634[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1577 -> 1635[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1576[label="compare2 vxw110 vxw100 vxw68",fontsize=16,color="burlywood",shape="triangle"];2402[label="vxw68/False",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2402[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2402 -> 1636[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2403[label="vxw68/True",fontsize=10,color="white",style="solid",shape="box"];1576 -> 2403[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2403 -> 1637[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1579 -> 34[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1579[label="vxw110 == vxw100",fontsize=16,color="magenta"];1579 -> 1638[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1579 -> 1639[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1578[label="compare2 vxw110 vxw100 vxw69",fontsize=16,color="burlywood",shape="triangle"];2404[label="vxw69/False",fontsize=10,color="white",style="solid",shape="box"];1578 -> 2404[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2404 -> 1640[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2405[label="vxw69/True",fontsize=10,color="white",style="solid",shape="box"];1578 -> 2405[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2405 -> 1641[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1581[label="compare vxw110 vxw100",fontsize=16,color="blue",shape="box"];2406[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2406[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2406 -> 1642[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2407[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2407[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2407 -> 1643[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2408[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2408[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2408 -> 1644[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2409[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2409[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2409 -> 1645[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2410[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2410[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2410 -> 1646[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2411[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2411[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2411 -> 1647[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2412[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2412[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2412 -> 1648[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2413[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2413[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2413 -> 1649[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2414[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2414[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2414 -> 1650[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2415[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2415[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2415 -> 1651[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2416[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2416[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2416 -> 1652[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2417[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2417[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2417 -> 1653[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2418[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2418[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2418 -> 1654[label="",style="solid", color="blue", weight=3]; 22.49/8.82 2419[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1581 -> 2419[label="",style="solid", color="blue", weight=9]; 22.49/8.82 2419 -> 1655[label="",style="solid", color="blue", weight=3]; 22.49/8.82 1582[label="vxw62",fontsize=16,color="green",shape="box"];1580[label="primCompAux0 vxw73 vxw74",fontsize=16,color="burlywood",shape="triangle"];2420[label="vxw74/LT",fontsize=10,color="white",style="solid",shape="box"];1580 -> 2420[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2420 -> 1656[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2421[label="vxw74/EQ",fontsize=10,color="white",style="solid",shape="box"];1580 -> 2421[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2421 -> 1657[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2422[label="vxw74/GT",fontsize=10,color="white",style="solid",shape="box"];1580 -> 2422[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2422 -> 1658[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1583[label="Integer vxw1100 * vxw101",fontsize=16,color="burlywood",shape="box"];2423[label="vxw101/Integer vxw1010",fontsize=10,color="white",style="solid",shape="box"];1583 -> 2423[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2423 -> 1659[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1584[label="vxw111",fontsize=16,color="green",shape="box"];1585[label="vxw100",fontsize=16,color="green",shape="box"];1586[label="vxw110",fontsize=16,color="green",shape="box"];1587[label="vxw101",fontsize=16,color="green",shape="box"];1588[label="vxw100",fontsize=16,color="green",shape="box"];1589[label="vxw111",fontsize=16,color="green",shape="box"];1590 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1590[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1590 -> 1660[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1590 -> 1661[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1591 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1591[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1591 -> 1662[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1591 -> 1663[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1592 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1592[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1592 -> 1664[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1592 -> 1665[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1593 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1593[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1593 -> 1666[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1593 -> 1667[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1594[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1595[label="vxw100",fontsize=16,color="green",shape="box"];1596 -> 1370[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1596[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="magenta"];1596 -> 1668[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1596 -> 1669[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1597[label="EQ",fontsize=16,color="green",shape="box"];1598[label="GT",fontsize=16,color="green",shape="box"];1599[label="EQ",fontsize=16,color="green",shape="box"];1600[label="vxw100",fontsize=16,color="green",shape="box"];1601[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1602[label="LT",fontsize=16,color="green",shape="box"];1603[label="EQ",fontsize=16,color="green",shape="box"];1604 -> 1370[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1604[label="primCmpNat (Succ vxw1000) Zero",fontsize=16,color="magenta"];1604 -> 1670[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1604 -> 1671[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1605[label="EQ",fontsize=16,color="green",shape="box"];1606 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1606[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1606 -> 1672[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1606 -> 1673[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1607 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1607[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1607 -> 1674[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1607 -> 1675[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1608 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1608[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1608 -> 1676[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1608 -> 1677[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1609 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1609[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1609 -> 1678[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1609 -> 1679[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1610[label="vxw30100",fontsize=16,color="green",shape="box"];1611[label="Succ vxw400000",fontsize=16,color="green",shape="box"];1612[label="primPlusNat (Succ vxw630) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1612 -> 1680[label="",style="solid", color="black", weight=3]; 22.49/8.82 1613[label="primPlusNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1613 -> 1681[label="",style="solid", color="black", weight=3]; 22.49/8.82 1614 -> 1370[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1614[label="primCmpNat vxw1100 vxw1000",fontsize=16,color="magenta"];1614 -> 1682[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1614 -> 1683[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1615[label="GT",fontsize=16,color="green",shape="box"];1616[label="LT",fontsize=16,color="green",shape="box"];1617[label="EQ",fontsize=16,color="green",shape="box"];1618[label="vxw100",fontsize=16,color="green",shape="box"];1619[label="vxw110",fontsize=16,color="green",shape="box"];1620[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1620 -> 1684[label="",style="solid", color="black", weight=3]; 22.49/8.82 1621[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1621 -> 1685[label="",style="solid", color="black", weight=3]; 22.49/8.82 1622[label="vxw100",fontsize=16,color="green",shape="box"];1623[label="vxw110",fontsize=16,color="green",shape="box"];1624[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1624 -> 1686[label="",style="solid", color="black", weight=3]; 22.49/8.82 1625[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1625 -> 1687[label="",style="solid", color="black", weight=3]; 22.49/8.82 1626[label="vxw100",fontsize=16,color="green",shape="box"];1627[label="vxw110",fontsize=16,color="green",shape="box"];1628[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1628 -> 1688[label="",style="solid", color="black", weight=3]; 22.49/8.82 1629[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1629 -> 1689[label="",style="solid", color="black", weight=3]; 22.49/8.82 1630[label="vxw100",fontsize=16,color="green",shape="box"];1631[label="vxw110",fontsize=16,color="green",shape="box"];1632[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1632 -> 1690[label="",style="solid", color="black", weight=3]; 22.49/8.82 1633[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1633 -> 1691[label="",style="solid", color="black", weight=3]; 22.49/8.82 1634[label="vxw100",fontsize=16,color="green",shape="box"];1635[label="vxw110",fontsize=16,color="green",shape="box"];1636[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1636 -> 1692[label="",style="solid", color="black", weight=3]; 22.49/8.82 1637[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1637 -> 1693[label="",style="solid", color="black", weight=3]; 22.49/8.82 1638[label="vxw100",fontsize=16,color="green",shape="box"];1639[label="vxw110",fontsize=16,color="green",shape="box"];1640[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1640 -> 1694[label="",style="solid", color="black", weight=3]; 22.49/8.82 1641[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1641 -> 1695[label="",style="solid", color="black", weight=3]; 22.49/8.82 1642 -> 898[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1642[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1642 -> 1696[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1642 -> 1697[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1643 -> 1270[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1643[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1643 -> 1698[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1643 -> 1699[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1644 -> 1272[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1644[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1644 -> 1700[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1644 -> 1701[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1645 -> 902[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1645[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1645 -> 1702[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1645 -> 1703[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1646 -> 1276[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1646[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1646 -> 1704[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1646 -> 1705[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1647 -> 904[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1647[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1647 -> 1706[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1647 -> 1707[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1648 -> 906[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1648[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1648 -> 1708[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1648 -> 1709[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1649 -> 908[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1649[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1649 -> 1710[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1649 -> 1711[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1650 -> 910[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1650[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1650 -> 1712[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1650 -> 1713[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1651 -> 912[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1651[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1651 -> 1714[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1651 -> 1715[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1652 -> 1288[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1652[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1652 -> 1716[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1652 -> 1717[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1653 -> 1290[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1653[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1653 -> 1718[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1653 -> 1719[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1654 -> 914[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1654[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1654 -> 1720[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1654 -> 1721[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1655 -> 1294[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1655[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1655 -> 1722[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1655 -> 1723[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1656[label="primCompAux0 vxw73 LT",fontsize=16,color="black",shape="box"];1656 -> 1724[label="",style="solid", color="black", weight=3]; 22.49/8.82 1657[label="primCompAux0 vxw73 EQ",fontsize=16,color="black",shape="box"];1657 -> 1725[label="",style="solid", color="black", weight=3]; 22.49/8.82 1658[label="primCompAux0 vxw73 GT",fontsize=16,color="black",shape="box"];1658 -> 1726[label="",style="solid", color="black", weight=3]; 22.49/8.82 1659[label="Integer vxw1100 * Integer vxw1010",fontsize=16,color="black",shape="box"];1659 -> 1727[label="",style="solid", color="black", weight=3]; 22.49/8.82 1660 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1660[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1660 -> 1728[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1660 -> 1729[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1661 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1661[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1661 -> 1730[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1661 -> 1731[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1662 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1662[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1662 -> 1732[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1662 -> 1733[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1663 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1663[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1663 -> 1734[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1663 -> 1735[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1664 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1664[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1664 -> 1736[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1664 -> 1737[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1665 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1665[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1665 -> 1738[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1665 -> 1739[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1666 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1666[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1666 -> 1740[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1666 -> 1741[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1667 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1667[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1667 -> 1742[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1667 -> 1743[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1668[label="Zero",fontsize=16,color="green",shape="box"];1669[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1670[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1671[label="Zero",fontsize=16,color="green",shape="box"];1672 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1672[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1672 -> 1744[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1672 -> 1745[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1673 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1673[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1673 -> 1746[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1673 -> 1747[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1674 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1674[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1674 -> 1748[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1674 -> 1749[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1675 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1675[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1675 -> 1750[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1675 -> 1751[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1676 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1676[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1676 -> 1752[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1676 -> 1753[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1677 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1677[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1677 -> 1754[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1677 -> 1755[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1678 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1678[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1678 -> 1756[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1678 -> 1757[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1679 -> 465[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1679[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1679 -> 1758[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1679 -> 1759[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1680[label="Succ (Succ (primPlusNat vxw630 vxw400000))",fontsize=16,color="green",shape="box"];1680 -> 1760[label="",style="dashed", color="green", weight=3]; 22.49/8.82 1681[label="Succ vxw400000",fontsize=16,color="green",shape="box"];1682[label="vxw1100",fontsize=16,color="green",shape="box"];1683[label="vxw1000",fontsize=16,color="green",shape="box"];1684 -> 1761[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1684[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1684 -> 1762[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1685[label="EQ",fontsize=16,color="green",shape="box"];1686 -> 1763[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1686[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1686 -> 1764[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1687[label="EQ",fontsize=16,color="green",shape="box"];1688 -> 1765[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1688[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1688 -> 1766[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1689[label="EQ",fontsize=16,color="green",shape="box"];1690 -> 1767[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1690[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1690 -> 1768[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1691[label="EQ",fontsize=16,color="green",shape="box"];1692 -> 1769[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1692[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1692 -> 1770[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1693[label="EQ",fontsize=16,color="green",shape="box"];1694 -> 1771[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1694[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1694 -> 1772[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1695[label="EQ",fontsize=16,color="green",shape="box"];1696[label="vxw110",fontsize=16,color="green",shape="box"];1697[label="vxw100",fontsize=16,color="green",shape="box"];1698[label="vxw100",fontsize=16,color="green",shape="box"];1699[label="vxw110",fontsize=16,color="green",shape="box"];1700[label="vxw100",fontsize=16,color="green",shape="box"];1701[label="vxw110",fontsize=16,color="green",shape="box"];1702[label="vxw110",fontsize=16,color="green",shape="box"];1703[label="vxw100",fontsize=16,color="green",shape="box"];1704[label="vxw100",fontsize=16,color="green",shape="box"];1705[label="vxw110",fontsize=16,color="green",shape="box"];1706[label="vxw110",fontsize=16,color="green",shape="box"];1707[label="vxw100",fontsize=16,color="green",shape="box"];1708[label="vxw110",fontsize=16,color="green",shape="box"];1709[label="vxw100",fontsize=16,color="green",shape="box"];1710[label="vxw110",fontsize=16,color="green",shape="box"];1711[label="vxw100",fontsize=16,color="green",shape="box"];1712[label="vxw110",fontsize=16,color="green",shape="box"];1713[label="vxw100",fontsize=16,color="green",shape="box"];1714[label="vxw110",fontsize=16,color="green",shape="box"];1715[label="vxw100",fontsize=16,color="green",shape="box"];1716[label="vxw100",fontsize=16,color="green",shape="box"];1717[label="vxw110",fontsize=16,color="green",shape="box"];1718[label="vxw100",fontsize=16,color="green",shape="box"];1719[label="vxw110",fontsize=16,color="green",shape="box"];1720[label="vxw110",fontsize=16,color="green",shape="box"];1721[label="vxw100",fontsize=16,color="green",shape="box"];1722[label="vxw100",fontsize=16,color="green",shape="box"];1723[label="vxw110",fontsize=16,color="green",shape="box"];1724[label="LT",fontsize=16,color="green",shape="box"];1725[label="vxw73",fontsize=16,color="green",shape="box"];1726[label="GT",fontsize=16,color="green",shape="box"];1727[label="Integer (primMulInt vxw1100 vxw1010)",fontsize=16,color="green",shape="box"];1727 -> 1773[label="",style="dashed", color="green", weight=3]; 22.49/8.82 1728[label="vxw110",fontsize=16,color="green",shape="box"];1729[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1730[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1731[label="vxw100",fontsize=16,color="green",shape="box"];1732[label="vxw110",fontsize=16,color="green",shape="box"];1733[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1734[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1735[label="vxw100",fontsize=16,color="green",shape="box"];1736[label="vxw110",fontsize=16,color="green",shape="box"];1737[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1738[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1739[label="vxw100",fontsize=16,color="green",shape="box"];1740[label="vxw110",fontsize=16,color="green",shape="box"];1741[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1742[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1743[label="vxw100",fontsize=16,color="green",shape="box"];1744[label="vxw110",fontsize=16,color="green",shape="box"];1745[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1746[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1747[label="vxw100",fontsize=16,color="green",shape="box"];1748[label="vxw110",fontsize=16,color="green",shape="box"];1749[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1750[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1751[label="vxw100",fontsize=16,color="green",shape="box"];1752[label="vxw110",fontsize=16,color="green",shape="box"];1753[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1754[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1755[label="vxw100",fontsize=16,color="green",shape="box"];1756[label="vxw110",fontsize=16,color="green",shape="box"];1757[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1758[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1759[label="vxw100",fontsize=16,color="green",shape="box"];1760[label="primPlusNat vxw630 vxw400000",fontsize=16,color="burlywood",shape="triangle"];2424[label="vxw630/Succ vxw6300",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2424[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2424 -> 1774[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2425[label="vxw630/Zero",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2425[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2425 -> 1775[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1762 -> 302[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1762[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1762 -> 1776[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1762 -> 1777[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1761[label="compare1 vxw110 vxw100 vxw75",fontsize=16,color="burlywood",shape="triangle"];2426[label="vxw75/False",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2426[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2426 -> 1778[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2427[label="vxw75/True",fontsize=10,color="white",style="solid",shape="box"];1761 -> 2427[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2427 -> 1779[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1764 -> 303[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1764[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1764 -> 1780[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1764 -> 1781[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1763[label="compare1 vxw110 vxw100 vxw76",fontsize=16,color="burlywood",shape="triangle"];2428[label="vxw76/False",fontsize=10,color="white",style="solid",shape="box"];1763 -> 2428[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2428 -> 1782[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2429[label="vxw76/True",fontsize=10,color="white",style="solid",shape="box"];1763 -> 2429[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2429 -> 1783[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1766 -> 305[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1766[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1766 -> 1784[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1766 -> 1785[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1765[label="compare1 vxw110 vxw100 vxw77",fontsize=16,color="burlywood",shape="triangle"];2430[label="vxw77/False",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2430[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2430 -> 1786[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2431[label="vxw77/True",fontsize=10,color="white",style="solid",shape="box"];1765 -> 2431[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2431 -> 1787[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1768 -> 311[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1768[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1768 -> 1788[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1768 -> 1789[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1767[label="compare1 vxw110 vxw100 vxw78",fontsize=16,color="burlywood",shape="triangle"];2432[label="vxw78/False",fontsize=10,color="white",style="solid",shape="box"];1767 -> 2432[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2432 -> 1790[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2433[label="vxw78/True",fontsize=10,color="white",style="solid",shape="box"];1767 -> 2433[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2433 -> 1791[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1770 -> 312[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1770[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1770 -> 1792[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1770 -> 1793[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1769[label="compare1 vxw110 vxw100 vxw79",fontsize=16,color="burlywood",shape="triangle"];2434[label="vxw79/False",fontsize=10,color="white",style="solid",shape="box"];1769 -> 2434[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2434 -> 1794[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2435[label="vxw79/True",fontsize=10,color="white",style="solid",shape="box"];1769 -> 2435[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2435 -> 1795[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1772 -> 314[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1772[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1772 -> 1796[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1772 -> 1797[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1771[label="compare1 vxw110 vxw100 vxw80",fontsize=16,color="burlywood",shape="triangle"];2436[label="vxw80/False",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2436[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2436 -> 1798[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2437[label="vxw80/True",fontsize=10,color="white",style="solid",shape="box"];1771 -> 2437[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2437 -> 1799[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1773 -> 661[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1773[label="primMulInt vxw1100 vxw1010",fontsize=16,color="magenta"];1773 -> 1800[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1773 -> 1801[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1774[label="primPlusNat (Succ vxw6300) vxw400000",fontsize=16,color="burlywood",shape="box"];2438[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];1774 -> 2438[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2438 -> 1802[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2439[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1774 -> 2439[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2439 -> 1803[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1775[label="primPlusNat Zero vxw400000",fontsize=16,color="burlywood",shape="box"];2440[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2440[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2440 -> 1804[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 2441[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1775 -> 2441[label="",style="solid", color="burlywood", weight=9]; 22.49/8.82 2441 -> 1805[label="",style="solid", color="burlywood", weight=3]; 22.49/8.82 1776[label="vxw110",fontsize=16,color="green",shape="box"];1777[label="vxw100",fontsize=16,color="green",shape="box"];1778[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1778 -> 1806[label="",style="solid", color="black", weight=3]; 22.49/8.82 1779[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1779 -> 1807[label="",style="solid", color="black", weight=3]; 22.49/8.82 1780[label="vxw110",fontsize=16,color="green",shape="box"];1781[label="vxw100",fontsize=16,color="green",shape="box"];1782[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1782 -> 1808[label="",style="solid", color="black", weight=3]; 22.49/8.82 1783[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1783 -> 1809[label="",style="solid", color="black", weight=3]; 22.49/8.82 1784[label="vxw110",fontsize=16,color="green",shape="box"];1785[label="vxw100",fontsize=16,color="green",shape="box"];1786[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1786 -> 1810[label="",style="solid", color="black", weight=3]; 22.49/8.82 1787[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1787 -> 1811[label="",style="solid", color="black", weight=3]; 22.49/8.82 1788[label="vxw110",fontsize=16,color="green",shape="box"];1789[label="vxw100",fontsize=16,color="green",shape="box"];1790[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1790 -> 1812[label="",style="solid", color="black", weight=3]; 22.49/8.82 1791[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1791 -> 1813[label="",style="solid", color="black", weight=3]; 22.49/8.82 1792[label="vxw110",fontsize=16,color="green",shape="box"];1793[label="vxw100",fontsize=16,color="green",shape="box"];1794[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1794 -> 1814[label="",style="solid", color="black", weight=3]; 22.49/8.82 1795[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1795 -> 1815[label="",style="solid", color="black", weight=3]; 22.49/8.82 1796[label="vxw110",fontsize=16,color="green",shape="box"];1797[label="vxw100",fontsize=16,color="green",shape="box"];1798[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1798 -> 1816[label="",style="solid", color="black", weight=3]; 22.49/8.82 1799[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1799 -> 1817[label="",style="solid", color="black", weight=3]; 22.49/8.82 1800[label="vxw1100",fontsize=16,color="green",shape="box"];1801[label="vxw1010",fontsize=16,color="green",shape="box"];1802[label="primPlusNat (Succ vxw6300) (Succ vxw4000000)",fontsize=16,color="black",shape="box"];1802 -> 1818[label="",style="solid", color="black", weight=3]; 22.49/8.82 1803[label="primPlusNat (Succ vxw6300) Zero",fontsize=16,color="black",shape="box"];1803 -> 1819[label="",style="solid", color="black", weight=3]; 22.49/8.82 1804[label="primPlusNat Zero (Succ vxw4000000)",fontsize=16,color="black",shape="box"];1804 -> 1820[label="",style="solid", color="black", weight=3]; 22.49/8.82 1805[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1805 -> 1821[label="",style="solid", color="black", weight=3]; 22.49/8.82 1806[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1806 -> 1822[label="",style="solid", color="black", weight=3]; 22.49/8.82 1807[label="LT",fontsize=16,color="green",shape="box"];1808[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1808 -> 1823[label="",style="solid", color="black", weight=3]; 22.49/8.82 1809[label="LT",fontsize=16,color="green",shape="box"];1810[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1810 -> 1824[label="",style="solid", color="black", weight=3]; 22.49/8.82 1811[label="LT",fontsize=16,color="green",shape="box"];1812[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1812 -> 1825[label="",style="solid", color="black", weight=3]; 22.49/8.82 1813[label="LT",fontsize=16,color="green",shape="box"];1814[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1814 -> 1826[label="",style="solid", color="black", weight=3]; 22.49/8.82 1815[label="LT",fontsize=16,color="green",shape="box"];1816[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1816 -> 1827[label="",style="solid", color="black", weight=3]; 22.49/8.82 1817[label="LT",fontsize=16,color="green",shape="box"];1818[label="Succ (Succ (primPlusNat vxw6300 vxw4000000))",fontsize=16,color="green",shape="box"];1818 -> 1828[label="",style="dashed", color="green", weight=3]; 22.49/8.82 1819[label="Succ vxw6300",fontsize=16,color="green",shape="box"];1820[label="Succ vxw4000000",fontsize=16,color="green",shape="box"];1821[label="Zero",fontsize=16,color="green",shape="box"];1822[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1822 -> 1829[label="",style="solid", color="black", weight=3]; 22.49/8.82 1823[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1823 -> 1830[label="",style="solid", color="black", weight=3]; 22.49/8.82 1824[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1824 -> 1831[label="",style="solid", color="black", weight=3]; 22.49/8.82 1825[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1825 -> 1832[label="",style="solid", color="black", weight=3]; 22.49/8.82 1826[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1826 -> 1833[label="",style="solid", color="black", weight=3]; 22.49/8.82 1827[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1827 -> 1834[label="",style="solid", color="black", weight=3]; 22.49/8.82 1828 -> 1760[label="",style="dashed", color="red", weight=0]; 22.49/8.82 1828[label="primPlusNat vxw6300 vxw4000000",fontsize=16,color="magenta"];1828 -> 1835[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1828 -> 1836[label="",style="dashed", color="magenta", weight=3]; 22.49/8.82 1829[label="GT",fontsize=16,color="green",shape="box"];1830[label="GT",fontsize=16,color="green",shape="box"];1831[label="GT",fontsize=16,color="green",shape="box"];1832[label="GT",fontsize=16,color="green",shape="box"];1833[label="GT",fontsize=16,color="green",shape="box"];1834[label="GT",fontsize=16,color="green",shape="box"];1835[label="vxw4000000",fontsize=16,color="green",shape="box"];1836[label="vxw6300",fontsize=16,color="green",shape="box"];} 22.49/8.82 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (14) 22.49/8.82 Complex Obligation (AND) 22.49/8.82 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (15) 22.49/8.82 Obligation: 22.49/8.82 Q DP problem: 22.49/8.82 The TRS P consists of the following rules: 22.49/8.82 22.49/8.82 new_primCmpNat(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat(vxw1100, vxw1000) 22.49/8.82 22.49/8.82 R is empty. 22.49/8.82 Q is empty. 22.49/8.82 We have to consider all minimal (P,Q,R)-chains. 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (16) QDPSizeChangeProof (EQUIVALENT) 22.49/8.82 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. 22.49/8.82 22.49/8.82 From the DPs we obtained the following set of size-change graphs: 22.49/8.82 *new_primCmpNat(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat(vxw1100, vxw1000) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2 22.49/8.82 22.49/8.82 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (17) 22.49/8.82 YES 22.49/8.82 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (18) 22.49/8.82 Obligation: 22.49/8.82 Q DP problem: 22.49/8.82 The TRS P consists of the following rules: 22.49/8.82 22.49/8.82 new_esEs0(Left(vxw300), Left(vxw4000), app(ty_Maybe, ec), dh) -> new_esEs1(vxw300, vxw4000, ec) 22.49/8.82 new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_Either, ge), gf)) -> new_esEs0(vxw300, vxw4000, ge, gf) 22.49/8.82 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), hd) -> new_esEs2(vxw301, vxw4001, hd) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bde), bdf), bag, bcc) -> new_esEs0(vxw300, vxw4000, bde, bdf) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_Either, bcd), bce), bcc) -> new_esEs0(vxw301, vxw4001, bcd, bce) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_Either, bbb), bbc)) -> new_esEs0(vxw302, vxw4002, bbb, bbc) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bea), beb), bec), bag, bcc) -> new_esEs3(vxw300, vxw4000, bea, beb, bec) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, cc), cd), ce) -> new_esEs(vxw300, vxw4000, cc, cd) 22.49/8.82 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_Either, fc), fd)) -> new_esEs0(vxw300, vxw4000, fc, fd) 22.49/8.82 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, he), hf)) -> new_esEs(vxw300, vxw4000, he, hf) 22.49/8.82 new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_@2, df), dg), dh) -> new_esEs(vxw300, vxw4000, df, dg) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs3(vxw300, vxw4000, dc, dd, de) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bdh), bag, bcc) -> new_esEs2(vxw300, vxw4000, bdh) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(vxw302, vxw4002, bbf, bbg, bbh) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(app(ty_@2, bb), bc)) -> new_esEs(vxw301, vxw4001, bb, bc) 22.49/8.82 new_esEs0(Left(vxw300), Left(vxw4000), app(ty_[], ed), dh) -> new_esEs2(vxw300, vxw4000, ed) 22.49/8.82 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_@2, fa), fb)) -> new_esEs(vxw300, vxw4000, fa, fb) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, cf), cg), ce) -> new_esEs0(vxw300, vxw4000, cf, cg) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_@2, bah), bba)) -> new_esEs(vxw302, vxw4002, bah, bba) 22.49/8.82 new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_Either, ea), eb), dh) -> new_esEs0(vxw300, vxw4000, ea, eb) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_@2, bca), bcb), bcc) -> new_esEs(vxw301, vxw4001, bca, bcb) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(app(ty_Either, bd), be)) -> new_esEs0(vxw301, vxw4001, bd, be) 22.49/8.82 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, hg), hh)) -> new_esEs0(vxw300, vxw4000, hg, hh) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(vxw301, vxw4001, bh, ca, cb) 22.49/8.82 new_esEs0(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ee), ef), eg), dh) -> new_esEs3(vxw300, vxw4000, ee, ef, eg) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_[], bcg), bcc) -> new_esEs2(vxw301, vxw4001, bcg) 22.49/8.82 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs3(vxw300, vxw4000, fh, ga, gb) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcc) -> new_esEs3(vxw301, vxw4001, bch, bda, bdb) 22.49/8.82 new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_@2, gc), gd)) -> new_esEs(vxw300, vxw4000, gc, gd) 22.49/8.82 new_esEs1(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vxw300, vxw4000, ha, hb, hc) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_[], bbe)) -> new_esEs2(vxw302, vxw4002, bbe) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(ty_Maybe, bf)) -> new_esEs1(vxw301, vxw4001, bf) 22.49/8.82 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_Maybe, ff)) -> new_esEs1(vxw300, vxw4000, ff) 22.49/8.82 new_esEs1(Just(vxw300), Just(vxw4000), app(ty_[], gh)) -> new_esEs2(vxw300, vxw4000, gh) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bdc), bdd), bag, bcc) -> new_esEs(vxw300, vxw4000, bdc, bdd) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bdg), bag, bcc) -> new_esEs1(vxw300, vxw4000, bdg) 22.49/8.82 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bab)) -> new_esEs2(vxw300, vxw4000, bab) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, da), ce) -> new_esEs1(vxw300, vxw4000, da) 22.49/8.82 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_[], fg)) -> new_esEs2(vxw300, vxw4000, fg) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_Maybe, bcf), bcc) -> new_esEs1(vxw301, vxw4001, bcf) 22.49/8.82 new_esEs1(Just(vxw300), Just(vxw4000), app(ty_Maybe, gg)) -> new_esEs1(vxw300, vxw4000, gg) 22.49/8.82 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs3(vxw300, vxw4000, bac, bad, bae) 22.49/8.82 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_Maybe, bbd)) -> new_esEs1(vxw302, vxw4002, bbd) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(ty_[], bg)) -> new_esEs2(vxw301, vxw4001, bg) 22.49/8.82 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, baa)) -> new_esEs1(vxw300, vxw4000, baa) 22.49/8.82 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], db), ce) -> new_esEs2(vxw300, vxw4000, db) 22.49/8.82 22.49/8.82 R is empty. 22.49/8.82 Q is empty. 22.49/8.82 We have to consider all minimal (P,Q,R)-chains. 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (19) QDPSizeChangeProof (EQUIVALENT) 22.49/8.82 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. 22.49/8.82 22.49/8.82 From the DPs we obtained the following set of size-change graphs: 22.49/8.82 *new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_Either, ge), gf)) -> new_esEs0(vxw300, vxw4000, ge, gf) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs1(Just(vxw300), Just(vxw4000), app(ty_Maybe, gg)) -> new_esEs1(vxw300, vxw4000, gg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs1(Just(vxw300), Just(vxw4000), app(ty_[], gh)) -> new_esEs2(vxw300, vxw4000, gh) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, hg), hh)) -> new_esEs0(vxw300, vxw4000, hg, hh) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, baa)) -> new_esEs1(vxw300, vxw4000, baa) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs1(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vxw300, vxw4000, ha, hb, hc) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_@2, gc), gd)) -> new_esEs(vxw300, vxw4000, gc, gd) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bac), bad), bae)) -> new_esEs3(vxw300, vxw4000, bac, bad, bae) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, he), hf)) -> new_esEs(vxw300, vxw4000, he, hf) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_Either, fc), fd)) -> new_esEs0(vxw300, vxw4000, fc, fd) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_Either, ea), eb), dh) -> new_esEs0(vxw300, vxw4000, ea, eb) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bde), bdf), bag, bcc) -> new_esEs0(vxw300, vxw4000, bde, bdf) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_Either, bcd), bce), bcc) -> new_esEs0(vxw301, vxw4001, bcd, bce) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_Either, bbb), bbc)) -> new_esEs0(vxw302, vxw4002, bbb, bbc) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, cf), cg), ce) -> new_esEs0(vxw300, vxw4000, cf, cg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(app(ty_Either, bd), be)) -> new_esEs0(vxw301, vxw4001, bd, be) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Left(vxw300), Left(vxw4000), app(ty_Maybe, ec), dh) -> new_esEs1(vxw300, vxw4000, ec) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_Maybe, ff)) -> new_esEs1(vxw300, vxw4000, ff) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Left(vxw300), Left(vxw4000), app(ty_[], ed), dh) -> new_esEs2(vxw300, vxw4000, ed) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_[], fg)) -> new_esEs2(vxw300, vxw4000, fg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ee), ef), eg), dh) -> new_esEs3(vxw300, vxw4000, ee, ef, eg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs3(vxw300, vxw4000, fh, ga, gb) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_@2, df), dg), dh) -> new_esEs(vxw300, vxw4000, df, dg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_@2, fa), fb)) -> new_esEs(vxw300, vxw4000, fa, fb) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bdg), bag, bcc) -> new_esEs1(vxw300, vxw4000, bdg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_Maybe, bcf), bcc) -> new_esEs1(vxw301, vxw4001, bcf) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_Maybe, bbd)) -> new_esEs1(vxw302, vxw4002, bbd) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(ty_Maybe, bf)) -> new_esEs1(vxw301, vxw4001, bf) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, da), ce) -> new_esEs1(vxw300, vxw4000, da) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), hd) -> new_esEs2(vxw301, vxw4001, hd) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bab)) -> new_esEs2(vxw300, vxw4000, bab) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bdh), bag, bcc) -> new_esEs2(vxw300, vxw4000, bdh) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(ty_[], bcg), bcc) -> new_esEs2(vxw301, vxw4001, bcg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(ty_[], bbe)) -> new_esEs2(vxw302, vxw4002, bbe) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(ty_[], bg)) -> new_esEs2(vxw301, vxw4001, bg) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], db), ce) -> new_esEs2(vxw300, vxw4000, db) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bea), beb), bec), bag, bcc) -> new_esEs3(vxw300, vxw4000, bea, beb, bec) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs3(vxw302, vxw4002, bbf, bbg, bbh) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(app(ty_@3, bch), bda), bdb), bcc) -> new_esEs3(vxw301, vxw4001, bch, bda, bdb) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, dc), dd), de), ce) -> new_esEs3(vxw300, vxw4000, dc, dd, de) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(app(app(ty_@3, bh), ca), cb)) -> new_esEs3(vxw301, vxw4001, bh, ca, cb) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, bag, app(app(ty_@2, bah), bba)) -> new_esEs(vxw302, vxw4002, bah, bba) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), baf, app(app(ty_@2, bca), bcb), bcc) -> new_esEs(vxw301, vxw4001, bca, bcb) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, bdc), bdd), bag, bcc) -> new_esEs(vxw300, vxw4000, bdc, bdd) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, cc), cd), ce) -> new_esEs(vxw300, vxw4000, cc, cd) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.82 22.49/8.82 22.49/8.82 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), ba, app(app(ty_@2, bb), bc)) -> new_esEs(vxw301, vxw4001, bb, bc) 22.49/8.82 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.82 22.49/8.82 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (20) 22.49/8.82 YES 22.49/8.82 22.49/8.82 ---------------------------------------- 22.49/8.82 22.49/8.82 (21) 22.49/8.82 Obligation: 22.49/8.82 Q DP problem: 22.49/8.82 The TRS P consists of the following rules: 22.49/8.82 22.49/8.82 new_insertBy00(vxw28, vxw29, vxw30, False, bc, bd) -> new_insertBy(Left(vxw29), vxw30, bc, bd) 22.49/8.82 new_insertBy(Left(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, be), be, bf) 22.49/8.82 new_insertBy(Right(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy(Right(vxw30), vxw41, be, bf) 22.49/8.82 new_insertBy0(vxw10, vxw11, vxw12, False, ba, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, ba), ba, bb) 22.49/8.82 new_insertBy01(vxw19, vxw20, vxw21, False, bg, bh) -> new_insertBy02(vxw19, vxw20, vxw21, new_ltEs21(vxw20, vxw19, bh), bg, bh) 22.49/8.82 new_insertBy(Right(vxw30), :(Right(vxw400), vxw41), be, bf) -> new_insertBy01(vxw400, vxw30, vxw41, new_esEs30(vxw30, vxw400, bf), be, bf) 22.49/8.82 new_insertBy02(vxw37, vxw38, vxw39, False, ca, cb) -> new_insertBy(Right(vxw38), vxw39, ca, cb) 22.49/8.82 22.49/8.82 The TRS R consists of the following rules: 22.49/8.82 22.49/8.82 new_ltEs7(vxw111, vxw101, ty_Integer) -> new_ltEs4(vxw111, vxw101) 22.49/8.82 new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.82 new_esEs9(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.82 new_esEs27(vxw301, vxw4001, app(ty_Ratio, daa)) -> new_esEs13(vxw301, vxw4001, daa) 22.49/8.82 new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT 22.49/8.82 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.49/8.82 new_primPlusNat0(Zero, Zero) -> Zero 22.49/8.82 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_[], cfb), bfe) -> new_ltEs13(vxw110, vxw100, cfb) 22.49/8.82 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_Ratio, dfa)) -> new_esEs13(vxw300, vxw4000, dfa) 22.49/8.82 new_pePe(True, vxw61) -> True 22.49/8.82 new_esEs23(vxw111, vxw101, app(ty_Maybe, cea)) -> new_esEs6(vxw111, vxw101, cea) 22.49/8.82 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.82 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, che) -> new_esEs8(vxw300, vxw4000) 22.49/8.82 new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs18(vxw112, vxw102) 22.49/8.82 new_esEs30(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 22.49/8.82 new_lt19(vxw111, vxw101, ty_Int) -> new_lt14(vxw111, vxw101) 22.49/8.82 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.82 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.82 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_[], cgd)) -> new_ltEs13(vxw110, vxw100, cgd) 22.49/8.82 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_Maybe, cgf)) -> new_ltEs17(vxw110, vxw100, cgf) 22.49/8.82 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.82 new_lt5(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.82 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ded), dee), def), che) -> new_esEs4(vxw300, vxw4000, ded, dee, def) 22.49/8.82 new_esEs23(vxw111, vxw101, ty_Char) -> new_esEs17(vxw111, vxw101) 22.49/8.82 new_compare8(vxw110, vxw100, ty_Float) -> new_compare6(vxw110, vxw100) 22.49/8.82 new_esEs18(True, True) -> True 22.49/8.82 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, ddg), che) -> new_esEs13(vxw300, vxw4000, ddg) 22.49/8.82 new_esEs24(vxw110, vxw100, app(ty_[], ced)) -> new_esEs11(vxw110, vxw100, ced) 22.49/8.82 new_compare14(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs18(vxw110, vxw100)) 22.49/8.82 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.49/8.82 new_esEs27(vxw301, vxw4001, app(app(ty_Either, dab), dac)) -> new_esEs5(vxw301, vxw4001, dab, dac) 22.49/8.82 new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT 22.49/8.82 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.82 new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.82 new_compare8(vxw110, vxw100, ty_Bool) -> new_compare14(vxw110, vxw100) 22.49/8.82 new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) 22.49/8.82 new_ltEs7(vxw111, vxw101, ty_@0) -> new_ltEs11(vxw111, vxw101) 22.49/8.82 new_compare16(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) 22.49/8.82 new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs11(vxw112, vxw102) 22.49/8.82 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Maybe, cfd), bfe) -> new_ltEs17(vxw110, vxw100, cfd) 22.49/8.82 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 22.49/8.82 new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs4(vxw11, vxw10) 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_Either, dcf), dcg)) -> new_esEs5(vxw300, vxw4000, dcf, dcg) 22.49/8.82 new_compare8(vxw110, vxw100, ty_Double) -> new_compare19(vxw110, vxw100) 22.49/8.82 new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare16(vxw11, vxw10), GT)) 22.49/8.82 new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(vxw300, vxw4000, dbh, dca, dcb) 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.82 new_esEs12(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.82 new_esEs23(vxw111, vxw101, ty_Double) -> new_esEs9(vxw111, vxw101) 22.49/8.82 new_compare29(vxw110, vxw100, False) -> new_compare114(vxw110, vxw100, new_ltEs16(vxw110, vxw100)) 22.49/8.82 new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.82 new_esEs23(vxw111, vxw101, app(app(ty_Either, cde), cdf)) -> new_esEs5(vxw111, vxw101, cde, cdf) 22.49/8.82 new_lt20(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.82 new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs12(vxw11, vxw10) 22.49/8.82 new_compare26(vxw110, vxw100, True) -> EQ 22.49/8.82 new_esEs8(GT, GT) -> True 22.49/8.82 new_ltEs14(vxw11, vxw10, bff) -> new_not(new_esEs8(new_compare15(vxw11, vxw10, bff), GT)) 22.49/8.82 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 22.49/8.82 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.82 new_ltEs21(vxw20, vxw19, ty_Ordering) -> new_ltEs16(vxw20, vxw19) 22.49/8.82 new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs4(vxw112, vxw102) 22.49/8.82 new_lt5(vxw110, vxw100, app(ty_Ratio, bca)) -> new_lt13(vxw110, vxw100, bca) 22.49/8.82 new_ltEs19(vxw112, vxw102, app(app(ty_@2, cch), cda)) -> new_ltEs6(vxw112, vxw102, cch, cda) 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.82 new_lt17(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) 22.49/8.82 new_esEs28(vxw300, vxw4000, app(ty_[], dbg)) -> new_esEs11(vxw300, vxw4000, dbg) 22.49/8.82 new_esEs8(EQ, EQ) -> True 22.49/8.82 new_esEs23(vxw111, vxw101, ty_Bool) -> new_esEs18(vxw111, vxw101) 22.49/8.82 new_lt20(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.82 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, deb), che) -> new_esEs6(vxw300, vxw4000, deb) 22.49/8.82 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.82 new_lt5(vxw110, vxw100, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_lt7(vxw110, vxw100, bbc, bbd, bbe) 22.49/8.82 new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.82 new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.82 new_esEs22(vxw300, vxw4000, app(ty_Ratio, cah)) -> new_esEs13(vxw300, vxw4000, cah) 22.49/8.82 new_ltEs10(Left(vxw110), Left(vxw100), ty_Int, bfe) -> new_ltEs15(vxw110, vxw100) 22.49/8.82 new_compare18(vxw110, vxw100, bcg) -> new_compare25(vxw110, vxw100, new_esEs6(vxw110, vxw100, bcg), bcg) 22.49/8.82 new_compare17(vxw110, vxw100) -> new_compare29(vxw110, vxw100, new_esEs8(vxw110, vxw100)) 22.49/8.82 new_ltEs21(vxw20, vxw19, app(ty_[], fg)) -> new_ltEs13(vxw20, vxw19, fg) 22.49/8.82 new_esEs12(vxw300, vxw4000, app(app(ty_Either, gh), ha)) -> new_esEs5(vxw300, vxw4000, gh, ha) 22.49/8.82 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.82 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.82 new_not(True) -> False 22.49/8.82 new_lt5(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.82 new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.82 new_compare8(vxw110, vxw100, ty_Ordering) -> new_compare17(vxw110, vxw100) 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.82 new_primCompAux00(vxw73, LT) -> LT 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.82 new_primCmpNat0(Zero, Zero) -> EQ 22.49/8.82 new_ltEs7(vxw111, vxw101, ty_Ordering) -> new_ltEs16(vxw111, vxw101) 22.49/8.82 new_lt13(vxw110, vxw100, bec) -> new_esEs8(new_compare15(vxw110, vxw100, bec), LT) 22.49/8.82 new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.82 new_lt19(vxw111, vxw101, app(app(ty_Either, cde), cdf)) -> new_lt8(vxw111, vxw101, cde, cdf) 22.49/8.82 new_esEs23(vxw111, vxw101, app(ty_Ratio, cdh)) -> new_esEs13(vxw111, vxw101, cdh) 22.49/8.82 new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.82 new_ltEs16(GT, EQ) -> False 22.49/8.82 new_esEs20(vxw302, vxw4002, app(ty_[], bgh)) -> new_esEs11(vxw302, vxw4002, bgh) 22.49/8.82 new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.82 new_compare26(vxw110, vxw100, False) -> new_compare10(vxw110, vxw100, new_ltEs12(vxw110, vxw100)) 22.49/8.82 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Ratio, bdg)) -> new_ltEs14(vxw110, vxw100, bdg) 22.49/8.82 new_esEs19(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.82 new_ltEs17(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.82 new_compare9(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) 22.49/8.82 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, dde), ddf), che) -> new_esEs7(vxw300, vxw4000, dde, ddf) 22.49/8.82 new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs12(vxw112, vxw102) 22.49/8.82 new_primEqNat0(Succ(vxw3000), Zero) -> False 22.49/8.82 new_primEqNat0(Zero, Succ(vxw40000)) -> False 22.49/8.82 new_compare8(vxw110, vxw100, ty_@0) -> new_compare13(vxw110, vxw100) 22.49/8.82 new_ltEs21(vxw20, vxw19, ty_@0) -> new_ltEs11(vxw20, vxw19) 22.49/8.82 new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.82 new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs18(vxw11, vxw10) 22.49/8.82 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.82 new_lt19(vxw111, vxw101, ty_Float) -> new_lt4(vxw111, vxw101) 22.49/8.82 new_lt19(vxw111, vxw101, ty_Integer) -> new_lt12(vxw111, vxw101) 22.49/8.82 new_esEs22(vxw300, vxw4000, app(app(ty_@2, caf), cag)) -> new_esEs7(vxw300, vxw4000, caf, cag) 22.49/8.82 new_primCompAux00(vxw73, GT) -> GT 22.49/8.82 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Ratio, dce)) -> new_esEs13(vxw300, vxw4000, dce) 22.49/8.82 new_esEs23(vxw111, vxw101, ty_Int) -> new_esEs10(vxw111, vxw101) 22.49/8.82 new_ltEs10(Left(vxw110), Left(vxw100), ty_Float, bfe) -> new_ltEs5(vxw110, vxw100) 22.49/8.82 new_esEs20(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 22.49/8.82 new_ltEs7(vxw111, vxw101, app(ty_Ratio, bag)) -> new_ltEs14(vxw111, vxw101, bag) 22.49/8.82 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, che) -> new_esEs9(vxw300, vxw4000) 22.49/8.82 new_esEs30(vxw30, vxw400, ty_Double) -> new_esEs9(vxw30, vxw400) 22.49/8.82 new_ltEs7(vxw111, vxw101, app(app(ty_@2, bba), bbb)) -> new_ltEs6(vxw111, vxw101, bba, bbb) 22.49/8.82 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare16(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) 22.49/8.82 new_esEs24(vxw110, vxw100, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs4(vxw110, vxw100, bed, bee, bef) 22.49/8.82 new_esEs23(vxw111, vxw101, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vxw111, vxw101, cdb, cdc, cdd) 22.49/8.82 new_esEs30(vxw30, vxw400, app(app(app(ty_@3, dd), de), df)) -> new_esEs4(vxw30, vxw400, dd, de, df) 22.49/8.82 new_ltEs10(Left(vxw110), Left(vxw100), app(app(app(ty_@3, cee), cef), ceg), bfe) -> new_ltEs9(vxw110, vxw100, cee, cef, ceg) 22.49/8.82 new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT 22.49/8.82 new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.82 new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs11(vxw11, vxw10) 22.49/8.82 new_ltEs21(vxw20, vxw19, app(app(ty_@2, gb), gc)) -> new_ltEs6(vxw20, vxw19, gb, gc) 22.49/8.82 new_ltEs10(Right(vxw110), Left(vxw100), bfd, bfe) -> False 22.49/8.82 new_ltEs7(vxw111, vxw101, ty_Double) -> new_ltEs18(vxw111, vxw101) 22.49/8.82 new_ltEs16(LT, LT) -> True 22.49/8.82 new_compare110(vxw110, vxw100, True, bce, bcf) -> LT 22.49/8.82 new_lt20(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.82 new_esEs12(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.82 new_ltEs18(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) 22.49/8.82 new_lt20(vxw110, vxw100, app(app(ty_Either, beg), beh)) -> new_lt8(vxw110, vxw100, beg, beh) 22.49/8.82 new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.82 new_esEs12(vxw300, vxw4000, app(ty_Ratio, gg)) -> new_esEs13(vxw300, vxw4000, gg) 22.49/8.82 new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.82 new_compare27(vxw110, vxw100, False, bed, bee, bef) -> new_compare113(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bed, bee, bef), bed, bee, bef) 22.49/8.82 new_ltEs21(vxw20, vxw19, ty_Double) -> new_ltEs18(vxw20, vxw19) 22.49/8.82 new_lt5(vxw110, vxw100, app(app(ty_@2, bcc), bcd)) -> new_lt18(vxw110, vxw100, bcc, bcd) 22.49/8.82 new_ltEs17(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs9(vxw110, vxw100, bda, bdb, bdc) 22.49/8.82 new_lt5(vxw110, vxw100, app(app(ty_Either, bbf), bbg)) -> new_lt8(vxw110, vxw100, bbf, bbg) 22.49/8.82 new_primCmpNat0(Zero, Succ(vxw1000)) -> LT 22.49/8.82 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.82 new_esEs29(vxw30, vxw400, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vxw30, vxw400, bfg, bfh, bga) 22.49/8.82 new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.82 new_ltEs19(vxw112, vxw102, app(ty_[], cce)) -> new_ltEs13(vxw112, vxw102, cce) 22.49/8.82 new_sr(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) 22.49/8.82 new_esEs27(vxw301, vxw4001, app(app(ty_@2, chg), chh)) -> new_esEs7(vxw301, vxw4001, chg, chh) 22.49/8.82 new_primCmpNat0(Succ(vxw1100), Zero) -> GT 22.49/8.82 new_primCompAux0(vxw110, vxw100, vxw62, cc) -> new_primCompAux00(vxw62, new_compare8(vxw110, vxw100, cc)) 22.49/8.82 new_esEs19(vxw110, vxw100, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs4(vxw110, vxw100, bbc, bbd, bbe) 22.49/8.82 new_ltEs17(Nothing, Nothing, bch) -> True 22.49/8.82 new_pePe(False, vxw61) -> vxw61 22.49/8.82 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare7(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) 22.49/8.82 new_ltEs17(Nothing, Just(vxw100), bch) -> True 22.49/8.82 new_ltEs17(Just(vxw110), Nothing, bch) -> False 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_[], dda)) -> new_esEs11(vxw300, vxw4000, dda) 22.49/8.82 new_ltEs20(vxw11, vxw10, app(ty_Maybe, bch)) -> new_ltEs17(vxw11, vxw10, bch) 22.49/8.82 new_esEs25(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.82 new_lt5(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.82 new_lt19(vxw111, vxw101, ty_@0) -> new_lt9(vxw111, vxw101) 22.49/8.82 new_esEs12(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.82 new_esEs11(:(vxw300, vxw301), [], gd) -> False 22.49/8.82 new_esEs11([], :(vxw4000, vxw4001), gd) -> False 22.49/8.82 new_compare112(vxw110, vxw100, True, beg, beh) -> LT 22.49/8.82 new_esEs20(vxw302, vxw4002, ty_Int) -> new_esEs10(vxw302, vxw4002) 22.49/8.82 new_ltEs16(LT, GT) -> True 22.49/8.82 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_@2, cfe), cff), bfe) -> new_ltEs6(vxw110, vxw100, cfe, cff) 22.49/8.82 new_lt19(vxw111, vxw101, ty_Bool) -> new_lt10(vxw111, vxw101) 22.49/8.82 new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bfg, bfh, bga) -> new_asAs(new_esEs22(vxw300, vxw4000, bfg), new_asAs(new_esEs21(vxw301, vxw4001, bfh), new_esEs20(vxw302, vxw4002, bga))) 22.49/8.82 new_ltEs16(LT, EQ) -> True 22.49/8.82 new_ltEs16(EQ, LT) -> False 22.49/8.82 new_compare7(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) 22.49/8.82 new_lt20(vxw110, vxw100, app(ty_[], ced)) -> new_lt11(vxw110, vxw100, ced) 22.49/8.82 new_esEs8(LT, EQ) -> False 22.49/8.82 new_esEs8(EQ, LT) -> False 22.49/8.82 new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.82 new_esEs19(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.82 new_esEs22(vxw300, vxw4000, app(ty_Maybe, cbc)) -> new_esEs6(vxw300, vxw4000, cbc) 22.49/8.82 new_compare13(@0, @0) -> EQ 22.49/8.82 new_ltEs21(vxw20, vxw19, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs9(vxw20, vxw19, fa, fb, fc) 22.49/8.82 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.82 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.82 new_esEs12(vxw300, vxw4000, app(app(ty_@2, ge), gf)) -> new_esEs7(vxw300, vxw4000, ge, gf) 22.49/8.82 new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.82 new_lt8(vxw110, vxw100, beg, beh) -> new_esEs8(new_compare12(vxw110, vxw100, beg, beh), LT) 22.49/8.82 new_lt5(vxw110, vxw100, app(ty_[], bbh)) -> new_lt11(vxw110, vxw100, bbh) 22.49/8.82 new_esEs23(vxw111, vxw101, app(ty_[], cdg)) -> new_esEs11(vxw111, vxw101, cdg) 22.49/8.82 new_compare114(vxw110, vxw100, True) -> LT 22.49/8.82 new_ltEs16(GT, LT) -> False 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs4(vxw300, vxw4000, ddb, ddc, ddd) 22.49/8.82 new_esEs30(vxw30, vxw400, ty_Int) -> new_esEs10(vxw30, vxw400) 22.49/8.82 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(ty_@2, deg), deh)) -> new_esEs7(vxw300, vxw4000, deg, deh) 22.49/8.82 new_ltEs20(vxw11, vxw10, app(app(ty_@2, hg), hh)) -> new_ltEs6(vxw11, vxw10, hg, hh) 22.49/8.82 new_esEs20(vxw302, vxw4002, ty_Char) -> new_esEs17(vxw302, vxw4002) 22.49/8.82 new_ltEs7(vxw111, vxw101, ty_Float) -> new_ltEs5(vxw111, vxw101) 22.49/8.82 new_esEs24(vxw110, vxw100, app(app(ty_Either, beg), beh)) -> new_esEs5(vxw110, vxw100, beg, beh) 22.49/8.82 new_ltEs19(vxw112, vxw102, app(ty_Maybe, ccg)) -> new_ltEs17(vxw112, vxw102, ccg) 22.49/8.82 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.82 new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT 22.49/8.82 new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.82 new_esEs20(vxw302, vxw4002, ty_Float) -> new_esEs16(vxw302, vxw4002) 22.49/8.82 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(ty_Either, cgb), cgc)) -> new_ltEs10(vxw110, vxw100, cgb, cgc) 22.49/8.82 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.82 new_esEs6(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.82 new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), gd) -> new_asAs(new_esEs12(vxw300, vxw4000, gd), new_esEs11(vxw301, vxw4001, gd)) 22.49/8.83 new_compare8(vxw110, vxw100, app(app(app(ty_@3, dg), dh), ea)) -> new_compare11(vxw110, vxw100, dg, dh, ea) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Char, bfe) -> new_ltEs8(vxw110, vxw100) 22.49/8.83 new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare9(vxw11, vxw10), GT)) 22.49/8.83 new_esEs24(vxw110, vxw100, app(ty_Maybe, bcg)) -> new_esEs6(vxw110, vxw100, bcg) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs10(vxw30, vxw400) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs4(vxw300, vxw4000, dff, dfg, dfh) 22.49/8.83 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 22.49/8.83 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs14(vxw30, vxw400) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_primPlusNat1(Succ(vxw630), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw630, vxw400000))) 22.49/8.83 new_ltEs12(False, True) -> True 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, ddh), dea), che) -> new_esEs5(vxw300, vxw4000, ddh, dea) 22.49/8.83 new_primPlusNat0(Succ(vxw6300), Zero) -> Succ(vxw6300) 22.49/8.83 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 22.49/8.83 new_compare27(vxw110, vxw100, True, bed, bee, bef) -> EQ 22.49/8.83 new_lt19(vxw111, vxw101, app(ty_[], cdg)) -> new_lt11(vxw111, vxw101, cdg) 22.49/8.83 new_ltEs16(EQ, GT) -> True 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_Maybe, dfd)) -> new_esEs6(vxw300, vxw4000, dfd) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(app(ty_Either, bhg), bhh)) -> new_esEs5(vxw301, vxw4001, bhg, bhh) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs4(vxw301, vxw4001, cac, cad, cae) 22.49/8.83 new_ltEs16(EQ, EQ) -> True 22.49/8.83 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Float) -> new_esEs16(vxw111, vxw101) 22.49/8.83 new_esEs12(vxw300, vxw4000, app(ty_Maybe, hb)) -> new_esEs6(vxw300, vxw4000, hb) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.83 new_esEs8(LT, LT) -> True 22.49/8.83 new_esEs12(vxw300, vxw4000, app(ty_[], hc)) -> new_esEs11(vxw300, vxw4000, hc) 22.49/8.83 new_lt20(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs4(vxw302, vxw4002, bha, bhb, bhc) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs9(vxw112, vxw102, cbh, cca, ccb) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Maybe, bdh)) -> new_ltEs17(vxw110, vxw100, bdh) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_[], dfe)) -> new_esEs11(vxw300, vxw4000, dfe) 22.49/8.83 new_ltEs4(vxw11, vxw10) -> new_not(new_esEs8(new_compare7(vxw11, vxw10), GT)) 22.49/8.83 new_lt20(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs18(vxw30, vxw400) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs16(vxw11, vxw10) 22.49/8.83 new_ltEs12(True, True) -> True 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs5(vxw11, vxw10) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.83 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) 22.49/8.83 new_compare25(vxw110, vxw100, True, bcg) -> EQ 22.49/8.83 new_esEs21(vxw301, vxw4001, app(ty_Ratio, bhf)) -> new_esEs13(vxw301, vxw4001, bhf) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Bool, bfe) -> new_ltEs12(vxw110, vxw100) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs15(vxw30, vxw400) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Maybe, dch)) -> new_esEs6(vxw300, vxw4000, dch) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs16(vxw112, vxw102) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs17(vxw30, vxw400) 22.49/8.83 new_lt6(vxw110, vxw100) -> new_esEs8(new_compare9(vxw110, vxw100), LT) 22.49/8.83 new_esEs6(Nothing, Just(vxw4000), chf) -> False 22.49/8.83 new_esEs6(Just(vxw300), Nothing, chf) -> False 22.49/8.83 new_esEs30(vxw30, vxw400, ty_@0) -> new_esEs15(vxw30, vxw400) 22.49/8.83 new_compare8(vxw110, vxw100, app(app(ty_Either, eb), ec)) -> new_compare12(vxw110, vxw100, eb, ec) 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Bool) -> new_esEs18(vxw30, vxw400) 22.49/8.83 new_esEs6(Nothing, Nothing, chf) -> True 22.49/8.83 new_ltEs21(vxw20, vxw19, app(ty_Maybe, ga)) -> new_ltEs17(vxw20, vxw19, ga) 22.49/8.83 new_compare114(vxw110, vxw100, False) -> GT 22.49/8.83 new_esEs22(vxw300, vxw4000, app(app(ty_Either, cba), cbb)) -> new_esEs5(vxw300, vxw4000, cba, cbb) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(ty_Maybe, bah)) -> new_ltEs17(vxw111, vxw101, bah) 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Char) -> new_esEs17(vxw30, vxw400) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs5(vxw112, vxw102) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Int) -> new_compare16(vxw110, vxw100) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs15(vxw11, vxw10) 22.49/8.83 new_ltEs11(vxw11, vxw10) -> new_not(new_esEs8(new_compare13(vxw11, vxw10), GT)) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.83 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.83 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs9(vxw11, vxw10, bfa, bfb, bfc) 22.49/8.83 new_esEs19(vxw110, vxw100, app(app(ty_Either, bbf), bbg)) -> new_esEs5(vxw110, vxw100, bbf, bbg) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs9(vxw111, vxw101, baa, bab, bac) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_@2, bea), beb)) -> new_ltEs6(vxw110, vxw100, bea, beb) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_Either, ceh), cfa), bfe) -> new_ltEs10(vxw110, vxw100, ceh, cfa) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Int) -> new_ltEs15(vxw111, vxw101) 22.49/8.83 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Ratio, cfc), bfe) -> new_ltEs14(vxw110, vxw100, cfc) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Char) -> new_ltEs8(vxw111, vxw101) 22.49/8.83 new_lt19(vxw111, vxw101, app(app(ty_@2, ceb), cec)) -> new_lt18(vxw111, vxw101, ceb, cec) 22.49/8.83 new_lt10(vxw110, vxw100) -> new_esEs8(new_compare14(vxw110, vxw100), LT) 22.49/8.83 new_ltEs9(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), bfa, bfb, bfc) -> new_pePe(new_lt20(vxw110, vxw100, bfa), new_asAs(new_esEs24(vxw110, vxw100, bfa), new_pePe(new_lt19(vxw111, vxw101, bfb), new_asAs(new_esEs23(vxw111, vxw101, bfb), new_ltEs19(vxw112, vxw102, bfc))))) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs8(vxw11, vxw10) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(ty_Ratio, bgd)) -> new_esEs13(vxw302, vxw4002, bgd) 22.49/8.83 new_compare8(vxw110, vxw100, app(ty_[], ed)) -> new_compare0(vxw110, vxw100, ed) 22.49/8.83 new_ltEs10(Left(vxw110), Right(vxw100), bfd, bfe) -> True 22.49/8.83 new_esEs16(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.83 new_compare0([], :(vxw100, vxw101), cc) -> LT 22.49/8.83 new_asAs(True, vxw53) -> vxw53 22.49/8.83 new_compare113(vxw110, vxw100, True, bed, bee, bef) -> LT 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Integer) -> new_esEs14(vxw30, vxw400) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_@0) -> new_esEs15(vxw302, vxw4002) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(ty_Maybe, caa)) -> new_esEs6(vxw301, vxw4001, caa) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, che) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Double) -> new_lt17(vxw111, vxw101) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs15(vxw112, vxw102) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Integer) -> new_compare7(vxw110, vxw100) 22.49/8.83 new_esEs22(vxw300, vxw4000, app(ty_[], cbd)) -> new_esEs11(vxw300, vxw4000, cbd) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_@0, bfe) -> new_ltEs11(vxw110, vxw100) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.83 new_lt20(vxw110, vxw100, app(app(app(ty_@3, bed), bee), bef)) -> new_lt7(vxw110, vxw100, bed, bee, bef) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.83 new_lt5(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.83 new_esEs19(vxw110, vxw100, app(ty_Ratio, bca)) -> new_esEs13(vxw110, vxw100, bca) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(app(ty_Either, bfd), bfe)) -> new_ltEs10(vxw11, vxw10, bfd, bfe) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(ty_@2, cgg), cgh)) -> new_ltEs6(vxw110, vxw100, cgg, cgh) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Float) -> new_ltEs5(vxw20, vxw19) 22.49/8.83 new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs4(vxw300, vxw4000, cbe, cbf, cbg) 22.49/8.83 new_esEs18(False, False) -> True 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Bool) -> new_esEs18(vxw302, vxw4002) 22.49/8.83 new_compare24(vxw110, vxw100, True, bce, bcf) -> EQ 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.83 new_esEs24(vxw110, vxw100, app(app(ty_@2, bce), bcf)) -> new_esEs7(vxw110, vxw100, bce, bcf) 22.49/8.83 new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) 22.49/8.83 new_esEs30(vxw30, vxw400, app(app(ty_@2, cd), ce)) -> new_esEs7(vxw30, vxw400, cd, ce) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Double, bfe) -> new_ltEs18(vxw110, vxw100) 22.49/8.83 new_lt11(vxw110, vxw100, ced) -> new_esEs8(new_compare0(vxw110, vxw100, ced), LT) 22.49/8.83 new_esEs29(vxw30, vxw400, app(app(ty_Either, chd), che)) -> new_esEs5(vxw30, vxw400, chd, che) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Integer, bfe) -> new_ltEs4(vxw110, vxw100) 22.49/8.83 new_primCompAux00(vxw73, EQ) -> vxw73 22.49/8.83 new_compare0([], [], cc) -> EQ 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Float) -> new_esEs16(vxw30, vxw400) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Ordering) -> new_lt15(vxw111, vxw101) 22.49/8.83 new_ltEs16(GT, GT) -> True 22.49/8.83 new_esEs17(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, che) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_lt18(vxw110, vxw100, bce, bcf) -> new_esEs8(new_compare23(vxw110, vxw100, bce, bcf), LT) 22.49/8.83 new_primMulNat0(Zero, Zero) -> Zero 22.49/8.83 new_lt19(vxw111, vxw101, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt7(vxw111, vxw101, cdb, cdc, cdd) 22.49/8.83 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.83 new_lt20(vxw110, vxw100, app(app(ty_@2, bce), bcf)) -> new_lt18(vxw110, vxw100, bce, bcf) 22.49/8.83 new_compare10(vxw110, vxw100, False) -> GT 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.83 new_lt14(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) 22.49/8.83 new_ltEs12(True, False) -> False 22.49/8.83 new_lt15(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) 22.49/8.83 new_esEs23(vxw111, vxw101, app(app(ty_@2, ceb), cec)) -> new_esEs7(vxw111, vxw101, ceb, cec) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs8(vxw112, vxw102) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(app(ty_Either, bge), bgf)) -> new_esEs5(vxw302, vxw4002, bge, bgf) 22.49/8.83 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(ty_Either, dfb), dfc)) -> new_esEs5(vxw300, vxw4000, dfb, dfc) 22.49/8.83 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Integer) -> new_esEs14(vxw302, vxw4002) 22.49/8.83 new_esEs30(vxw30, vxw400, app(ty_Ratio, cf)) -> new_esEs13(vxw30, vxw400, cf) 22.49/8.83 new_lt20(vxw110, vxw100, app(ty_Ratio, bec)) -> new_lt13(vxw110, vxw100, bec) 22.49/8.83 new_esEs24(vxw110, vxw100, app(ty_Ratio, bec)) -> new_esEs13(vxw110, vxw100, bec) 22.49/8.83 new_esEs13(:%(vxw300, vxw301), :%(vxw4000, vxw4001), chc) -> new_asAs(new_esEs26(vxw300, vxw4000, chc), new_esEs25(vxw301, vxw4001, chc)) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_compare25(vxw110, vxw100, False, bcg) -> new_compare111(vxw110, vxw100, new_ltEs17(vxw110, vxw100, bcg), bcg) 22.49/8.83 new_ltEs5(vxw11, vxw10) -> new_not(new_esEs8(new_compare6(vxw11, vxw10), GT)) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(ty_[], dae)) -> new_esEs11(vxw301, vxw4001, dae) 22.49/8.83 new_esEs15(@0, @0) -> True 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_@2, dcc), dcd)) -> new_esEs7(vxw300, vxw4000, dcc, dcd) 22.49/8.83 new_ltEs12(False, False) -> True 22.49/8.83 new_compare11(vxw110, vxw100, bed, bee, bef) -> new_compare27(vxw110, vxw100, new_esEs4(vxw110, vxw100, bed, bee, bef), bed, bee, bef) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_Ratio, cge)) -> new_ltEs14(vxw110, vxw100, cge) 22.49/8.83 new_lt19(vxw111, vxw101, app(ty_Ratio, cdh)) -> new_lt13(vxw111, vxw101, cdh) 22.49/8.83 new_esEs29(vxw30, vxw400, app(ty_Ratio, chc)) -> new_esEs13(vxw30, vxw400, chc) 22.49/8.83 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.83 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vxw300, vxw4000, dba, dbb) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.83 new_ltEs21(vxw20, vxw19, app(ty_Ratio, fh)) -> new_ltEs14(vxw20, vxw19, fh) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(ty_Maybe, bgg)) -> new_esEs6(vxw302, vxw4002, bgg) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs9(vxw30, vxw400) 22.49/8.83 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 22.49/8.83 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 22.49/8.83 new_esEs19(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_esEs6(vxw110, vxw100, bcb) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Ordering, bfe) -> new_ltEs16(vxw110, vxw100) 22.49/8.83 new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) 22.49/8.83 new_lt7(vxw110, vxw100, bed, bee, bef) -> new_esEs8(new_compare11(vxw110, vxw100, bed, bee, bef), LT) 22.49/8.83 new_lt4(vxw110, vxw100) -> new_esEs8(new_compare6(vxw110, vxw100), LT) 22.49/8.83 new_esEs12(vxw300, vxw4000, app(app(app(ty_@3, hd), he), hf)) -> new_esEs4(vxw300, vxw4000, hd, he, hf) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.49/8.83 new_esEs21(vxw301, vxw4001, app(ty_[], cab)) -> new_esEs11(vxw301, vxw4001, cab) 22.49/8.83 new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.83 new_compare8(vxw110, vxw100, app(ty_Maybe, ef)) -> new_compare18(vxw110, vxw100, ef) 22.49/8.83 new_compare111(vxw110, vxw100, False, bcg) -> GT 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_Either, bdd), bde)) -> new_ltEs10(vxw110, vxw100, bdd, bde) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(ty_[], baf)) -> new_ltEs13(vxw111, vxw101, baf) 22.49/8.83 new_esEs30(vxw30, vxw400, app(ty_Maybe, db)) -> new_esEs6(vxw30, vxw400, db) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.83 new_lt19(vxw111, vxw101, app(ty_Maybe, cea)) -> new_lt16(vxw111, vxw101, cea) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Char) -> new_ltEs8(vxw20, vxw19) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Double) -> new_esEs9(vxw302, vxw4002) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.83 new_compare112(vxw110, vxw100, False, beg, beh) -> GT 22.49/8.83 new_esEs19(vxw110, vxw100, app(app(ty_@2, bcc), bcd)) -> new_esEs7(vxw110, vxw100, bcc, bcd) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Integer) -> new_ltEs4(vxw20, vxw19) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(ty_[], cc)) -> new_ltEs13(vxw11, vxw10, cc) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(vxw301, vxw4001, daf, dag, dah) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_@0) -> new_esEs15(vxw111, vxw101) 22.49/8.83 new_not(False) -> True 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs16(vxw30, vxw400) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(ty_Ratio, dbc)) -> new_esEs13(vxw300, vxw4000, dbc) 22.49/8.83 new_compare8(vxw110, vxw100, app(ty_Ratio, ee)) -> new_compare15(vxw110, vxw100, ee) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Bool) -> new_ltEs12(vxw20, vxw19) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_compare0(:(vxw110, vxw111), [], cc) -> GT 22.49/8.83 new_esEs8(LT, GT) -> False 22.49/8.83 new_esEs8(GT, LT) -> False 22.49/8.83 new_esEs18(False, True) -> False 22.49/8.83 new_esEs18(True, False) -> False 22.49/8.83 new_compare29(vxw110, vxw100, True) -> EQ 22.49/8.83 new_primPlusNat0(Succ(vxw6300), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6300, vxw4000000))) 22.49/8.83 new_esEs5(Left(vxw300), Right(vxw4000), chd, che) -> False 22.49/8.83 new_esEs5(Right(vxw300), Left(vxw4000), chd, che) -> False 22.49/8.83 new_compare12(vxw110, vxw100, beg, beh) -> new_compare28(vxw110, vxw100, new_esEs5(vxw110, vxw100, beg, beh), beg, beh) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Integer) -> new_esEs14(vxw111, vxw101) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(ty_Ratio, bff)) -> new_ltEs14(vxw11, vxw10, bff) 22.49/8.83 new_esEs29(vxw30, vxw400, app(app(ty_@2, cha), chb)) -> new_esEs7(vxw30, vxw400, cha, chb) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, che) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs30(vxw30, vxw400, app(app(ty_Either, cg), da)) -> new_esEs5(vxw30, vxw400, cg, da) 22.49/8.83 new_lt9(vxw110, vxw100) -> new_esEs8(new_compare13(vxw110, vxw100), LT) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(app(ty_Either, ccc), ccd)) -> new_ltEs10(vxw112, vxw102, ccc, ccd) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.83 new_esEs29(vxw30, vxw400, app(ty_Maybe, chf)) -> new_esEs6(vxw30, vxw400, chf) 22.49/8.83 new_esEs10(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(ty_Ratio, ccf)) -> new_ltEs14(vxw112, vxw102, ccf) 22.49/8.83 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.49/8.83 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.49/8.83 new_compare10(vxw110, vxw100, True) -> LT 22.49/8.83 new_lt20(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.83 new_compare0(:(vxw110, vxw111), :(vxw100, vxw101), cc) -> new_primCompAux0(vxw110, vxw100, new_compare0(vxw111, vxw101, cc), cc) 22.49/8.83 new_lt16(vxw110, vxw100, bcg) -> new_esEs8(new_compare18(vxw110, vxw100, bcg), LT) 22.49/8.83 new_compare111(vxw110, vxw100, True, bcg) -> LT 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs9(vxw110, vxw100, cfg, cfh, cga) 22.49/8.83 new_esEs19(vxw110, vxw100, app(ty_[], bbh)) -> new_esEs11(vxw110, vxw100, bbh) 22.49/8.83 new_esEs29(vxw30, vxw400, app(ty_[], gd)) -> new_esEs11(vxw30, vxw400, gd) 22.49/8.83 new_esEs25(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(ty_Maybe, dbf)) -> new_esEs6(vxw300, vxw4000, dbf) 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.49/8.83 new_lt5(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_lt16(vxw110, vxw100, bcb) 22.49/8.83 new_compare24(vxw110, vxw100, False, bce, bcf) -> new_compare110(vxw110, vxw100, new_ltEs6(vxw110, vxw100, bce, bcf), bce, bcf) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.83 new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) 22.49/8.83 new_ltEs6(@2(vxw110, vxw111), @2(vxw100, vxw101), hg, hh) -> new_pePe(new_lt5(vxw110, vxw100, hg), new_asAs(new_esEs19(vxw110, vxw100, hg), new_ltEs7(vxw111, vxw101, hh))) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vxw301, vxw4001, bhd, bhe) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Char) -> new_compare9(vxw110, vxw100) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.83 new_compare8(vxw110, vxw100, app(app(ty_@2, eg), eh)) -> new_compare23(vxw110, vxw100, eg, eh) 22.49/8.83 new_esEs7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cha, chb) -> new_asAs(new_esEs28(vxw300, vxw4000, cha), new_esEs27(vxw301, vxw4001, chb)) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Char) -> new_lt6(vxw111, vxw101) 22.49/8.83 new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(ty_Maybe, dad)) -> new_esEs6(vxw301, vxw4001, dad) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_[], bdf)) -> new_ltEs13(vxw110, vxw100, bdf) 22.49/8.83 new_lt20(vxw110, vxw100, app(ty_Maybe, bcg)) -> new_lt16(vxw110, vxw100, bcg) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Bool) -> new_ltEs12(vxw111, vxw101) 22.49/8.83 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.49/8.83 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.83 new_compare110(vxw110, vxw100, False, bce, bcf) -> GT 22.49/8.83 new_lt20(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.83 new_ltEs21(vxw20, vxw19, app(app(ty_Either, fd), ff)) -> new_ltEs10(vxw20, vxw19, fd, ff) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(app(ty_Either, dbd), dbe)) -> new_esEs5(vxw300, vxw4000, dbd, dbe) 22.49/8.83 new_primEqNat0(Zero, Zero) -> True 22.49/8.83 new_esEs11([], [], gd) -> True 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 22.49/8.83 new_compare23(vxw110, vxw100, bce, bcf) -> new_compare24(vxw110, vxw100, new_esEs7(vxw110, vxw100, bce, bcf), bce, bcf) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_esEs30(vxw30, vxw400, app(ty_[], dc)) -> new_esEs11(vxw30, vxw400, dc) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, che) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_compare113(vxw110, vxw100, False, bed, bee, bef) -> GT 22.49/8.83 new_asAs(False, vxw53) -> False 22.49/8.83 new_ltEs13(vxw11, vxw10, cc) -> new_not(new_esEs8(new_compare0(vxw11, vxw10, cc), GT)) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, che) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Int) -> new_ltEs15(vxw20, vxw19) 22.49/8.83 new_compare28(vxw110, vxw100, True, beg, beh) -> EQ 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_esEs14(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 22.49/8.83 new_esEs8(EQ, GT) -> False 22.49/8.83 new_esEs8(GT, EQ) -> False 22.49/8.83 new_ltEs7(vxw111, vxw101, app(app(ty_Either, bad), bae)) -> new_ltEs10(vxw111, vxw101, bad, bae) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.83 new_lt12(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) 22.49/8.83 new_compare28(vxw110, vxw100, False, beg, beh) -> new_compare112(vxw110, vxw100, new_ltEs10(vxw110, vxw100, beg, beh), beg, beh) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], dec), che) -> new_esEs11(vxw300, vxw4000, dec) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(app(ty_@2, bgb), bgc)) -> new_esEs7(vxw302, vxw4002, bgb, bgc) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, che) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 22.49/8.83 The set Q consists of the following terms: 22.49/8.83 22.49/8.83 new_esEs12(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_compare17(x0, x1) 22.49/8.83 new_esEs8(EQ, EQ) 22.49/8.83 new_lt13(x0, x1, x2) 22.49/8.83 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs18(x0, x1) 22.49/8.83 new_compare28(x0, x1, False, x2, x3) 22.49/8.83 new_ltEs20(x0, x1, ty_Double) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.83 new_compare26(x0, x1, True) 22.49/8.83 new_lt20(x0, x1, ty_Char) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs28(x0, x1, ty_Float) 22.49/8.83 new_esEs19(x0, x1, ty_Double) 22.49/8.83 new_compare13(@0, @0) 22.49/8.83 new_lt5(x0, x1, ty_Float) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Double) 22.49/8.83 new_ltEs20(x0, x1, ty_Ordering) 22.49/8.83 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs18(True, True) 22.49/8.83 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.83 new_ltEs7(x0, x1, ty_@0) 22.49/8.83 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primEqInt(Pos(Zero), Pos(Zero)) 22.49/8.83 new_esEs29(x0, x1, ty_Integer) 22.49/8.83 new_ltEs8(x0, x1) 22.49/8.83 new_ltEs7(x0, x1, ty_Char) 22.49/8.83 new_esEs30(x0, x1, ty_Int) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.49/8.83 new_lt19(x0, x1, ty_Double) 22.49/8.83 new_lt20(x0, x1, ty_Ordering) 22.49/8.83 new_esEs19(x0, x1, ty_Ordering) 22.49/8.83 new_primPlusNat0(Succ(x0), Zero) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.83 new_esEs28(x0, x1, app(ty_[], x2)) 22.49/8.83 new_primPlusNat0(Zero, Succ(x0)) 22.49/8.83 new_lt19(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Int) 22.49/8.83 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.83 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.83 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.83 new_esEs29(x0, x1, ty_Float) 22.49/8.83 new_ltEs7(x0, x1, ty_Int) 22.49/8.83 new_lt20(x0, x1, ty_Int) 22.49/8.83 new_esEs22(x0, x1, ty_Float) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.83 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_asAs(False, x0) 22.49/8.83 new_lt5(x0, x1, app(ty_[], x2)) 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Zero)) 22.49/8.83 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Char) 22.49/8.83 new_ltEs16(GT, EQ) 22.49/8.83 new_ltEs16(EQ, GT) 22.49/8.83 new_esEs19(x0, x1, ty_Int) 22.49/8.83 new_esEs30(x0, x1, ty_Char) 22.49/8.83 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs17(Nothing, Just(x0), x1) 22.49/8.83 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_lt19(x0, x1, ty_Int) 22.49/8.83 new_esEs30(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs21(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs27(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs30(x0, x1, ty_Bool) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.83 new_ltEs16(LT, LT) 22.49/8.83 new_lt20(x0, x1, ty_Double) 22.49/8.83 new_compare110(x0, x1, False, x2, x3) 22.49/8.83 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_lt20(x0, x1, ty_Bool) 22.49/8.83 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs21(x0, x1, ty_Double) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Int) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.83 new_ltEs7(x0, x1, ty_Integer) 22.49/8.83 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Char) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_@0) 22.49/8.83 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs30(x0, x1, ty_Integer) 22.49/8.83 new_primEqInt(Pos(Zero), Neg(Zero)) 22.49/8.83 new_primEqInt(Neg(Zero), Pos(Zero)) 22.49/8.83 new_compare24(x0, x1, True, x2, x3) 22.49/8.83 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_lt12(x0, x1) 22.49/8.83 new_esEs24(x0, x1, ty_Float) 22.49/8.83 new_compare12(x0, x1, x2, x3) 22.49/8.83 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs12(x0, x1, ty_Float) 22.49/8.83 new_ltEs7(x0, x1, ty_Bool) 22.49/8.83 new_compare25(x0, x1, True, x2) 22.49/8.83 new_primEqNat0(Succ(x0), Zero) 22.49/8.83 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs21(x0, x1, ty_Int) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.83 new_compare0([], :(x0, x1), x2) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.83 new_lt5(x0, x1, ty_@0) 22.49/8.83 new_esEs22(x0, x1, ty_Integer) 22.49/8.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.49/8.83 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_compare16(x0, x1) 22.49/8.83 new_esEs19(x0, x1, ty_@0) 22.49/8.83 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs28(x0, x1, ty_Bool) 22.49/8.83 new_ltEs20(x0, x1, ty_@0) 22.49/8.83 new_compare8(x0, x1, ty_Double) 22.49/8.83 new_lt20(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs15(@0, @0) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.49/8.83 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_compare8(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.83 new_primMulNat0(Succ(x0), Zero) 22.49/8.83 new_pePe(True, x0) 22.49/8.83 new_compare29(x0, x1, False) 22.49/8.83 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_lt10(x0, x1) 22.49/8.83 new_lt20(x0, x1, ty_Integer) 22.49/8.83 new_ltEs16(GT, GT) 22.49/8.83 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_lt11(x0, x1, x2) 22.49/8.83 new_esEs12(x0, x1, ty_@0) 22.49/8.83 new_esEs21(x0, x1, ty_Double) 22.49/8.83 new_compare18(x0, x1, x2) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.83 new_lt9(x0, x1) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.83 new_esEs18(False, True) 22.49/8.83 new_esEs18(True, False) 22.49/8.83 new_compare27(x0, x1, True, x2, x3, x4) 22.49/8.83 new_ltEs16(LT, EQ) 22.49/8.83 new_ltEs16(EQ, LT) 22.49/8.83 new_ltEs7(x0, x1, ty_Float) 22.49/8.83 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs14(x0, x1, x2) 22.49/8.83 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_lt19(x0, x1, ty_Char) 22.49/8.83 new_esEs20(x0, x1, ty_Int) 22.49/8.83 new_esEs28(x0, x1, ty_Integer) 22.49/8.83 new_compare10(x0, x1, False) 22.49/8.83 new_lt5(x0, x1, ty_Bool) 22.49/8.83 new_ltEs19(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs19(x0, x1, ty_Integer) 22.49/8.83 new_esEs20(x0, x1, ty_Float) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.83 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.83 new_esEs29(x0, x1, ty_@0) 22.49/8.83 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_ltEs19(x0, x1, ty_Float) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_@0) 22.49/8.83 new_esEs8(GT, GT) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.83 new_esEs30(x0, x1, ty_Double) 22.49/8.83 new_esEs8(LT, EQ) 22.49/8.83 new_esEs8(EQ, LT) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Double) 22.49/8.83 new_compare114(x0, x1, False) 22.49/8.83 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.49/8.83 new_compare110(x0, x1, True, x2, x3) 22.49/8.83 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_lt20(x0, x1, ty_@0) 22.49/8.83 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.49/8.83 new_esEs27(x0, x1, ty_Double) 22.49/8.83 new_esEs27(x0, x1, ty_@0) 22.49/8.83 new_esEs23(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs11([], [], x0) 22.49/8.83 new_esEs8(LT, LT) 22.49/8.83 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.49/8.83 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.83 new_lt5(x0, x1, ty_Integer) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.83 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs24(x0, x1, ty_Ordering) 22.49/8.83 new_esEs29(x0, x1, ty_Double) 22.49/8.83 new_compare7(Integer(x0), Integer(x1)) 22.49/8.83 new_compare112(x0, x1, False, x2, x3) 22.49/8.83 new_ltEs19(x0, x1, ty_Int) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Float) 22.49/8.83 new_esEs24(x0, x1, ty_Integer) 22.49/8.83 new_lt19(x0, x1, ty_Integer) 22.49/8.83 new_esEs30(x0, x1, ty_@0) 22.49/8.83 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs24(x0, x1, ty_Bool) 22.49/8.83 new_esEs28(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.49/8.83 new_primMulInt(Pos(x0), Neg(x1)) 22.49/8.83 new_primMulInt(Neg(x0), Pos(x1)) 22.49/8.83 new_ltEs19(x0, x1, ty_Char) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.83 new_lt19(x0, x1, ty_Bool) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.83 new_esEs25(x0, x1, ty_Integer) 22.49/8.83 new_esEs22(x0, x1, ty_Bool) 22.49/8.83 new_ltEs17(Nothing, Nothing, x0) 22.49/8.83 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs10(Right(x0), Left(x1), x2, x3) 22.49/8.83 new_ltEs10(Left(x0), Right(x1), x2, x3) 22.49/8.83 new_esEs21(x0, x1, ty_@0) 22.49/8.83 new_lt16(x0, x1, x2) 22.49/8.83 new_esEs20(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.49/8.83 new_lt19(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs22(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.83 new_primCompAux00(x0, GT) 22.49/8.83 new_compare111(x0, x1, True, x2) 22.49/8.83 new_ltEs17(Just(x0), Nothing, x1) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Double, x2) 22.49/8.83 new_lt4(x0, x1) 22.49/8.83 new_ltEs19(x0, x1, ty_Bool) 22.49/8.83 new_lt5(x0, x1, ty_Ordering) 22.49/8.83 new_esEs22(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs23(x0, x1, ty_Double) 22.49/8.83 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs27(x0, x1, ty_Char) 22.49/8.83 new_compare8(x0, x1, ty_@0) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.83 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_compare0(:(x0, x1), :(x2, x3), x4) 22.49/8.83 new_primEqNat0(Zero, Succ(x0)) 22.49/8.83 new_esEs28(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Char) 22.49/8.83 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.83 new_ltEs16(EQ, EQ) 22.49/8.83 new_esEs23(x0, x1, ty_Bool) 22.49/8.83 new_esEs11(:(x0, x1), [], x2) 22.49/8.83 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.49/8.83 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs20(x0, x1, ty_Float) 22.49/8.83 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Float) 22.49/8.83 new_compare113(x0, x1, False, x2, x3, x4) 22.49/8.83 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.49/8.83 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_@0, x2) 22.49/8.83 new_primMulNat0(Zero, Zero) 22.49/8.83 new_compare29(x0, x1, True) 22.49/8.83 new_pePe(False, x0) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.83 new_ltEs15(x0, x1) 22.49/8.83 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.83 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_compare8(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.83 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs22(x0, x1, ty_Int) 22.49/8.83 new_esEs19(x0, x1, ty_Float) 22.49/8.83 new_compare0([], [], x0) 22.49/8.83 new_esEs28(x0, x1, ty_Double) 22.49/8.83 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primMulInt(Pos(x0), Pos(x1)) 22.49/8.83 new_esEs23(x0, x1, ty_@0) 22.49/8.83 new_lt5(x0, x1, ty_Double) 22.49/8.83 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_compare24(x0, x1, False, x2, x3) 22.49/8.83 new_primCmpNat0(Zero, Succ(x0)) 22.49/8.83 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs6(Nothing, Just(x0), x1) 22.49/8.83 new_esEs22(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs19(x0, x1, ty_@0) 22.49/8.83 new_esEs20(x0, x1, ty_Integer) 22.49/8.83 new_esEs24(x0, x1, ty_@0) 22.49/8.83 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs24(x0, x1, ty_Char) 22.49/8.83 new_esEs25(x0, x1, ty_Int) 22.49/8.83 new_primMulNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 22.49/8.83 new_esEs21(x0, x1, ty_Char) 22.49/8.83 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs28(x0, x1, ty_Int) 22.49/8.83 new_esEs23(x0, x1, ty_Integer) 22.49/8.83 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_compare14(x0, x1) 22.49/8.83 new_esEs30(x0, x1, app(ty_[], x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Int) 22.49/8.83 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.49/8.83 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Double) 22.49/8.83 new_compare25(x0, x1, False, x2) 22.49/8.83 new_esEs20(x0, x1, ty_@0) 22.49/8.83 new_esEs12(x0, x1, ty_Double) 22.49/8.83 new_primMulInt(Neg(x0), Neg(x1)) 22.49/8.83 new_compare8(x0, x1, ty_Integer) 22.49/8.83 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.49/8.83 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.49/8.83 new_esEs9(Double(x0, x1), Double(x2, x3)) 22.49/8.83 new_esEs21(x0, x1, ty_Bool) 22.49/8.83 new_sr0(x0, x1) 22.49/8.83 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.49/8.83 new_primPlusNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.83 new_lt8(x0, x1, x2, x3) 22.49/8.83 new_primPlusNat0(Zero, Zero) 22.49/8.83 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.49/8.83 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.49/8.83 new_esEs12(x0, x1, ty_Int) 22.49/8.83 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs20(x0, x1, app(ty_[], x2)) 22.49/8.83 new_not(True) 22.49/8.83 new_lt17(x0, x1) 22.49/8.83 new_esEs29(x0, x1, ty_Ordering) 22.49/8.83 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs24(x0, x1, ty_Int) 22.49/8.83 new_ltEs12(True, True) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.83 new_ltEs21(x0, x1, ty_Bool) 22.49/8.83 new_esEs8(EQ, GT) 22.49/8.83 new_esEs8(GT, EQ) 22.49/8.83 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs5(x0, x1) 22.49/8.83 new_compare8(x0, x1, ty_Char) 22.49/8.83 new_esEs12(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.83 new_lt15(x0, x1) 22.49/8.83 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Bool) 22.49/8.83 new_ltEs20(x0, x1, ty_Integer) 22.49/8.83 new_ltEs13(x0, x1, x2) 22.49/8.83 new_ltEs21(x0, x1, ty_Float) 22.49/8.83 new_esEs20(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.49/8.83 new_lt5(x0, x1, ty_Char) 22.49/8.83 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 22.49/8.83 new_compare8(x0, x1, ty_Int) 22.49/8.83 new_ltEs12(False, True) 22.49/8.83 new_ltEs12(True, False) 22.49/8.83 new_esEs18(False, False) 22.49/8.83 new_lt19(x0, x1, ty_Float) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.83 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_primCmpNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs29(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.83 new_asAs(True, x0) 22.49/8.83 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.83 new_ltEs16(LT, GT) 22.49/8.83 new_ltEs16(GT, LT) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Float) 22.49/8.83 new_esEs21(x0, x1, ty_Ordering) 22.49/8.83 new_esEs27(x0, x1, ty_Ordering) 22.49/8.83 new_compare8(x0, x1, ty_Bool) 22.49/8.83 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.49/8.83 new_lt19(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs21(x0, x1, ty_Integer) 22.49/8.83 new_esEs11(:(x0, x1), :(x2, x3), x4) 22.49/8.83 new_lt5(x0, x1, ty_Int) 22.49/8.83 new_ltEs21(x0, x1, ty_@0) 22.49/8.83 new_ltEs11(x0, x1) 22.49/8.83 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs11([], :(x0, x1), x2) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.83 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs20(x0, x1, ty_Bool) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.49/8.83 new_compare8(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs26(x0, x1, ty_Int) 22.49/8.83 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs21(x0, x1, app(ty_[], x2)) 22.49/8.83 new_compare28(x0, x1, True, x2, x3) 22.49/8.83 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs20(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Integer) 22.49/8.83 new_compare26(x0, x1, False) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.83 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs23(x0, x1, ty_Float) 22.49/8.83 new_primCmpNat0(Succ(x0), Zero) 22.49/8.83 new_esEs5(Left(x0), Right(x1), x2, x3) 22.49/8.83 new_esEs5(Right(x0), Left(x1), x2, x3) 22.49/8.83 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.83 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.83 new_esEs20(x0, x1, ty_Double) 22.49/8.83 new_ltEs21(x0, x1, ty_Char) 22.49/8.83 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.83 new_esEs19(x0, x1, ty_Bool) 22.49/8.83 new_esEs27(x0, x1, ty_Integer) 22.49/8.83 new_esEs26(x0, x1, ty_Integer) 22.49/8.83 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.83 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs29(x0, x1, ty_Char) 22.49/8.83 new_esEs8(LT, GT) 22.49/8.83 new_esEs8(GT, LT) 22.49/8.83 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 22.49/8.83 new_ltEs20(x0, x1, ty_Bool) 22.49/8.83 new_esEs14(Integer(x0), Integer(x1)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.83 new_esEs23(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs7(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs12(x0, x1, ty_Bool) 22.49/8.83 new_sr(Integer(x0), Integer(x1)) 22.49/8.83 new_ltEs7(x0, x1, ty_Double) 22.49/8.83 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.83 new_esEs24(x0, x1, ty_Double) 22.49/8.83 new_esEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_primPlusNat1(Succ(x0), x1) 22.49/8.83 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs17(Char(x0), Char(x1)) 22.49/8.83 new_esEs29(x0, x1, ty_Int) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Float, x2) 22.49/8.83 new_lt14(x0, x1) 22.49/8.83 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_lt19(x0, x1, ty_@0) 22.49/8.83 new_esEs24(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs16(Float(x0, x1), Float(x2, x3)) 22.49/8.83 new_compare8(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_lt19(x0, x1, app(ty_[], x2)) 22.49/8.83 new_lt6(x0, x1) 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.83 new_esEs6(Nothing, Nothing, x0) 22.49/8.83 new_ltEs7(x0, x1, ty_Ordering) 22.49/8.83 new_esEs28(x0, x1, ty_@0) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.49/8.83 new_compare112(x0, x1, True, x2, x3) 22.49/8.83 new_esEs12(x0, x1, ty_Char) 22.49/8.83 new_compare113(x0, x1, True, x2, x3, x4) 22.49/8.83 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_compare111(x0, x1, False, x2) 22.49/8.83 new_compare11(x0, x1, x2, x3, x4) 22.49/8.83 new_compare8(x0, x1, ty_Float) 22.49/8.83 new_primEqNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_primEqNat0(Zero, Zero) 22.49/8.83 new_esEs10(x0, x1) 22.49/8.83 new_ltEs20(x0, x1, ty_Char) 22.49/8.83 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_@0) 22.49/8.83 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs21(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs19(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs27(x0, x1, ty_Float) 22.49/8.83 new_not(False) 22.49/8.83 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_primCompAux00(x0, LT) 22.49/8.83 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.49/8.83 new_ltEs4(x0, x1) 22.49/8.83 new_esEs12(x0, x1, ty_Integer) 22.49/8.83 new_esEs27(x0, x1, ty_Bool) 22.49/8.83 new_esEs30(x0, x1, ty_Float) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Int, x2) 22.49/8.83 new_esEs19(x0, x1, ty_Char) 22.49/8.83 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.49/8.83 new_lt7(x0, x1, x2, x3, x4) 22.49/8.83 new_ltEs12(False, False) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.49/8.83 new_esEs22(x0, x1, ty_@0) 22.49/8.83 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primCompAux00(x0, EQ) 22.49/8.83 new_lt20(x0, x1, ty_Float) 22.49/8.83 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.49/8.83 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs21(x0, x1, ty_Int) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.83 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_compare9(Char(x0), Char(x1)) 22.49/8.83 new_esEs12(x0, x1, ty_Ordering) 22.49/8.83 new_esEs19(x0, x1, ty_Integer) 22.49/8.83 new_esEs12(x0, x1, app(ty_[], x2)) 22.49/8.83 new_ltEs21(x0, x1, ty_Integer) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.83 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_primMulNat0(Zero, Succ(x0)) 22.49/8.83 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_compare114(x0, x1, True) 22.49/8.83 new_compare10(x0, x1, True) 22.49/8.83 new_esEs6(Just(x0), Nothing, x1) 22.49/8.83 new_ltEs19(x0, x1, ty_Double) 22.49/8.83 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.49/8.83 new_compare27(x0, x1, False, x2, x3, x4) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.49/8.83 new_esEs19(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs23(x0, x1, ty_Int) 22.49/8.83 new_ltEs20(x0, x1, ty_Int) 22.49/8.83 new_primCompAux0(x0, x1, x2, x3) 22.49/8.83 new_compare0(:(x0, x1), [], x2) 22.49/8.83 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_primPlusNat1(Zero, x0) 22.49/8.83 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.83 new_lt18(x0, x1, x2, x3) 22.49/8.83 new_esEs22(x0, x1, ty_Double) 22.49/8.83 new_esEs27(x0, x1, ty_Int) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs29(x0, x1, ty_Bool) 22.49/8.83 new_primCmpNat0(Zero, Zero) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.83 new_esEs23(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Char, x2) 22.49/8.83 new_compare23(x0, x1, x2, x3) 22.49/8.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.49/8.83 new_esEs21(x0, x1, ty_Float) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.83 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.83 22.49/8.83 We have to consider all minimal (P,Q,R)-chains. 22.49/8.83 ---------------------------------------- 22.49/8.83 22.49/8.83 (22) DependencyGraphProof (EQUIVALENT) 22.49/8.83 The approximation of the Dependency Graph [LPAR04,FROCOS05,EDGSTAR] contains 2 SCCs. 22.49/8.83 ---------------------------------------- 22.49/8.83 22.49/8.83 (23) 22.49/8.83 Complex Obligation (AND) 22.49/8.83 22.49/8.83 ---------------------------------------- 22.49/8.83 22.49/8.83 (24) 22.49/8.83 Obligation: 22.49/8.83 Q DP problem: 22.49/8.83 The TRS P consists of the following rules: 22.49/8.83 22.49/8.83 new_insertBy(Right(vxw30), :(Right(vxw400), vxw41), be, bf) -> new_insertBy01(vxw400, vxw30, vxw41, new_esEs30(vxw30, vxw400, bf), be, bf) 22.49/8.83 new_insertBy01(vxw19, vxw20, vxw21, False, bg, bh) -> new_insertBy02(vxw19, vxw20, vxw21, new_ltEs21(vxw20, vxw19, bh), bg, bh) 22.49/8.83 new_insertBy02(vxw37, vxw38, vxw39, False, ca, cb) -> new_insertBy(Right(vxw38), vxw39, ca, cb) 22.49/8.83 new_insertBy(Right(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy(Right(vxw30), vxw41, be, bf) 22.49/8.83 22.49/8.83 The TRS R consists of the following rules: 22.49/8.83 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Integer) -> new_ltEs4(vxw111, vxw101) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_esEs9(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(ty_Ratio, daa)) -> new_esEs13(vxw301, vxw4001, daa) 22.49/8.83 new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT 22.49/8.83 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.49/8.83 new_primPlusNat0(Zero, Zero) -> Zero 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_[], cfb), bfe) -> new_ltEs13(vxw110, vxw100, cfb) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_Ratio, dfa)) -> new_esEs13(vxw300, vxw4000, dfa) 22.49/8.83 new_pePe(True, vxw61) -> True 22.49/8.83 new_esEs23(vxw111, vxw101, app(ty_Maybe, cea)) -> new_esEs6(vxw111, vxw101, cea) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, che) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs18(vxw112, vxw102) 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Int) -> new_lt14(vxw111, vxw101) 22.49/8.83 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.83 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_[], cgd)) -> new_ltEs13(vxw110, vxw100, cgd) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_Maybe, cgf)) -> new_ltEs17(vxw110, vxw100, cgf) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ded), dee), def), che) -> new_esEs4(vxw300, vxw4000, ded, dee, def) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Char) -> new_esEs17(vxw111, vxw101) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Float) -> new_compare6(vxw110, vxw100) 22.49/8.83 new_esEs18(True, True) -> True 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, ddg), che) -> new_esEs13(vxw300, vxw4000, ddg) 22.49/8.83 new_esEs24(vxw110, vxw100, app(ty_[], ced)) -> new_esEs11(vxw110, vxw100, ced) 22.49/8.83 new_compare14(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs18(vxw110, vxw100)) 22.49/8.83 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.49/8.83 new_esEs27(vxw301, vxw4001, app(app(ty_Either, dab), dac)) -> new_esEs5(vxw301, vxw4001, dab, dac) 22.49/8.83 new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Bool) -> new_compare14(vxw110, vxw100) 22.49/8.83 new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_@0) -> new_ltEs11(vxw111, vxw101) 22.49/8.83 new_compare16(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs11(vxw112, vxw102) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Maybe, cfd), bfe) -> new_ltEs17(vxw110, vxw100, cfd) 22.49/8.83 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs4(vxw11, vxw10) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_Either, dcf), dcg)) -> new_esEs5(vxw300, vxw4000, dcf, dcg) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Double) -> new_compare19(vxw110, vxw100) 22.49/8.83 new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare16(vxw11, vxw10), GT)) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(vxw300, vxw4000, dbh, dca, dcb) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Double) -> new_esEs9(vxw111, vxw101) 22.49/8.83 new_compare29(vxw110, vxw100, False) -> new_compare114(vxw110, vxw100, new_ltEs16(vxw110, vxw100)) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.83 new_esEs23(vxw111, vxw101, app(app(ty_Either, cde), cdf)) -> new_esEs5(vxw111, vxw101, cde, cdf) 22.49/8.83 new_lt20(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs12(vxw11, vxw10) 22.49/8.83 new_compare26(vxw110, vxw100, True) -> EQ 22.49/8.83 new_esEs8(GT, GT) -> True 22.49/8.83 new_ltEs14(vxw11, vxw10, bff) -> new_not(new_esEs8(new_compare15(vxw11, vxw10, bff), GT)) 22.49/8.83 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 22.49/8.83 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Ordering) -> new_ltEs16(vxw20, vxw19) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs4(vxw112, vxw102) 22.49/8.83 new_lt5(vxw110, vxw100, app(ty_Ratio, bca)) -> new_lt13(vxw110, vxw100, bca) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(app(ty_@2, cch), cda)) -> new_ltEs6(vxw112, vxw102, cch, cda) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_lt17(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(ty_[], dbg)) -> new_esEs11(vxw300, vxw4000, dbg) 22.49/8.83 new_esEs8(EQ, EQ) -> True 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Bool) -> new_esEs18(vxw111, vxw101) 22.49/8.83 new_lt20(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, deb), che) -> new_esEs6(vxw300, vxw4000, deb) 22.49/8.83 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.83 new_lt5(vxw110, vxw100, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_lt7(vxw110, vxw100, bbc, bbd, bbe) 22.49/8.83 new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_esEs22(vxw300, vxw4000, app(ty_Ratio, cah)) -> new_esEs13(vxw300, vxw4000, cah) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Int, bfe) -> new_ltEs15(vxw110, vxw100) 22.49/8.83 new_compare18(vxw110, vxw100, bcg) -> new_compare25(vxw110, vxw100, new_esEs6(vxw110, vxw100, bcg), bcg) 22.49/8.83 new_compare17(vxw110, vxw100) -> new_compare29(vxw110, vxw100, new_esEs8(vxw110, vxw100)) 22.49/8.83 new_ltEs21(vxw20, vxw19, app(ty_[], fg)) -> new_ltEs13(vxw20, vxw19, fg) 22.49/8.83 new_esEs12(vxw300, vxw4000, app(app(ty_Either, gh), ha)) -> new_esEs5(vxw300, vxw4000, gh, ha) 22.49/8.83 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.83 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.83 new_not(True) -> False 22.49/8.83 new_lt5(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Ordering) -> new_compare17(vxw110, vxw100) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_primCompAux00(vxw73, LT) -> LT 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_primCmpNat0(Zero, Zero) -> EQ 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Ordering) -> new_ltEs16(vxw111, vxw101) 22.49/8.83 new_lt13(vxw110, vxw100, bec) -> new_esEs8(new_compare15(vxw110, vxw100, bec), LT) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_lt19(vxw111, vxw101, app(app(ty_Either, cde), cdf)) -> new_lt8(vxw111, vxw101, cde, cdf) 22.49/8.83 new_esEs23(vxw111, vxw101, app(ty_Ratio, cdh)) -> new_esEs13(vxw111, vxw101, cdh) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.83 new_ltEs16(GT, EQ) -> False 22.49/8.83 new_esEs20(vxw302, vxw4002, app(ty_[], bgh)) -> new_esEs11(vxw302, vxw4002, bgh) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.83 new_compare26(vxw110, vxw100, False) -> new_compare10(vxw110, vxw100, new_ltEs12(vxw110, vxw100)) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Ratio, bdg)) -> new_ltEs14(vxw110, vxw100, bdg) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.83 new_compare9(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, dde), ddf), che) -> new_esEs7(vxw300, vxw4000, dde, ddf) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs12(vxw112, vxw102) 22.49/8.83 new_primEqNat0(Succ(vxw3000), Zero) -> False 22.49/8.83 new_primEqNat0(Zero, Succ(vxw40000)) -> False 22.49/8.83 new_compare8(vxw110, vxw100, ty_@0) -> new_compare13(vxw110, vxw100) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_@0) -> new_ltEs11(vxw20, vxw19) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs18(vxw11, vxw10) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Float) -> new_lt4(vxw111, vxw101) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Integer) -> new_lt12(vxw111, vxw101) 22.49/8.83 new_esEs22(vxw300, vxw4000, app(app(ty_@2, caf), cag)) -> new_esEs7(vxw300, vxw4000, caf, cag) 22.49/8.83 new_primCompAux00(vxw73, GT) -> GT 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Ratio, dce)) -> new_esEs13(vxw300, vxw4000, dce) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Int) -> new_esEs10(vxw111, vxw101) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Float, bfe) -> new_ltEs5(vxw110, vxw100) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(ty_Ratio, bag)) -> new_ltEs14(vxw111, vxw101, bag) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, che) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Double) -> new_esEs9(vxw30, vxw400) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(app(ty_@2, bba), bbb)) -> new_ltEs6(vxw111, vxw101, bba, bbb) 22.49/8.83 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare16(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) 22.49/8.83 new_esEs24(vxw110, vxw100, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs4(vxw110, vxw100, bed, bee, bef) 22.49/8.83 new_esEs23(vxw111, vxw101, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vxw111, vxw101, cdb, cdc, cdd) 22.49/8.83 new_esEs30(vxw30, vxw400, app(app(app(ty_@3, dd), de), df)) -> new_esEs4(vxw30, vxw400, dd, de, df) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(app(app(ty_@3, cee), cef), ceg), bfe) -> new_ltEs9(vxw110, vxw100, cee, cef, ceg) 22.49/8.83 new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs11(vxw11, vxw10) 22.49/8.83 new_ltEs21(vxw20, vxw19, app(app(ty_@2, gb), gc)) -> new_ltEs6(vxw20, vxw19, gb, gc) 22.49/8.83 new_ltEs10(Right(vxw110), Left(vxw100), bfd, bfe) -> False 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Double) -> new_ltEs18(vxw111, vxw101) 22.49/8.83 new_ltEs16(LT, LT) -> True 22.49/8.83 new_compare110(vxw110, vxw100, True, bce, bcf) -> LT 22.49/8.83 new_lt20(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_ltEs18(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) 22.49/8.83 new_lt20(vxw110, vxw100, app(app(ty_Either, beg), beh)) -> new_lt8(vxw110, vxw100, beg, beh) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.83 new_esEs12(vxw300, vxw4000, app(ty_Ratio, gg)) -> new_esEs13(vxw300, vxw4000, gg) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.83 new_compare27(vxw110, vxw100, False, bed, bee, bef) -> new_compare113(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bed, bee, bef), bed, bee, bef) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Double) -> new_ltEs18(vxw20, vxw19) 22.49/8.83 new_lt5(vxw110, vxw100, app(app(ty_@2, bcc), bcd)) -> new_lt18(vxw110, vxw100, bcc, bcd) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs9(vxw110, vxw100, bda, bdb, bdc) 22.49/8.83 new_lt5(vxw110, vxw100, app(app(ty_Either, bbf), bbg)) -> new_lt8(vxw110, vxw100, bbf, bbg) 22.49/8.83 new_primCmpNat0(Zero, Succ(vxw1000)) -> LT 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_esEs29(vxw30, vxw400, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vxw30, vxw400, bfg, bfh, bga) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(ty_[], cce)) -> new_ltEs13(vxw112, vxw102, cce) 22.49/8.83 new_sr(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(app(ty_@2, chg), chh)) -> new_esEs7(vxw301, vxw4001, chg, chh) 22.49/8.83 new_primCmpNat0(Succ(vxw1100), Zero) -> GT 22.49/8.83 new_primCompAux0(vxw110, vxw100, vxw62, cc) -> new_primCompAux00(vxw62, new_compare8(vxw110, vxw100, cc)) 22.49/8.83 new_esEs19(vxw110, vxw100, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs4(vxw110, vxw100, bbc, bbd, bbe) 22.49/8.83 new_ltEs17(Nothing, Nothing, bch) -> True 22.49/8.83 new_pePe(False, vxw61) -> vxw61 22.49/8.83 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare7(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) 22.49/8.83 new_ltEs17(Nothing, Just(vxw100), bch) -> True 22.49/8.83 new_ltEs17(Just(vxw110), Nothing, bch) -> False 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_[], dda)) -> new_esEs11(vxw300, vxw4000, dda) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(ty_Maybe, bch)) -> new_ltEs17(vxw11, vxw10, bch) 22.49/8.83 new_esEs25(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.83 new_lt19(vxw111, vxw101, ty_@0) -> new_lt9(vxw111, vxw101) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_esEs11(:(vxw300, vxw301), [], gd) -> False 22.49/8.83 new_esEs11([], :(vxw4000, vxw4001), gd) -> False 22.49/8.83 new_compare112(vxw110, vxw100, True, beg, beh) -> LT 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Int) -> new_esEs10(vxw302, vxw4002) 22.49/8.83 new_ltEs16(LT, GT) -> True 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_@2, cfe), cff), bfe) -> new_ltEs6(vxw110, vxw100, cfe, cff) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Bool) -> new_lt10(vxw111, vxw101) 22.49/8.83 new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bfg, bfh, bga) -> new_asAs(new_esEs22(vxw300, vxw4000, bfg), new_asAs(new_esEs21(vxw301, vxw4001, bfh), new_esEs20(vxw302, vxw4002, bga))) 22.49/8.83 new_ltEs16(LT, EQ) -> True 22.49/8.83 new_ltEs16(EQ, LT) -> False 22.49/8.83 new_compare7(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) 22.49/8.83 new_lt20(vxw110, vxw100, app(ty_[], ced)) -> new_lt11(vxw110, vxw100, ced) 22.49/8.83 new_esEs8(LT, EQ) -> False 22.49/8.83 new_esEs8(EQ, LT) -> False 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.83 new_esEs22(vxw300, vxw4000, app(ty_Maybe, cbc)) -> new_esEs6(vxw300, vxw4000, cbc) 22.49/8.83 new_compare13(@0, @0) -> EQ 22.49/8.83 new_ltEs21(vxw20, vxw19, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs9(vxw20, vxw19, fa, fb, fc) 22.49/8.83 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.83 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.83 new_esEs12(vxw300, vxw4000, app(app(ty_@2, ge), gf)) -> new_esEs7(vxw300, vxw4000, ge, gf) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.83 new_lt8(vxw110, vxw100, beg, beh) -> new_esEs8(new_compare12(vxw110, vxw100, beg, beh), LT) 22.49/8.83 new_lt5(vxw110, vxw100, app(ty_[], bbh)) -> new_lt11(vxw110, vxw100, bbh) 22.49/8.83 new_esEs23(vxw111, vxw101, app(ty_[], cdg)) -> new_esEs11(vxw111, vxw101, cdg) 22.49/8.83 new_compare114(vxw110, vxw100, True) -> LT 22.49/8.83 new_ltEs16(GT, LT) -> False 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs4(vxw300, vxw4000, ddb, ddc, ddd) 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Int) -> new_esEs10(vxw30, vxw400) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(ty_@2, deg), deh)) -> new_esEs7(vxw300, vxw4000, deg, deh) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(app(ty_@2, hg), hh)) -> new_ltEs6(vxw11, vxw10, hg, hh) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Char) -> new_esEs17(vxw302, vxw4002) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Float) -> new_ltEs5(vxw111, vxw101) 22.49/8.83 new_esEs24(vxw110, vxw100, app(app(ty_Either, beg), beh)) -> new_esEs5(vxw110, vxw100, beg, beh) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(ty_Maybe, ccg)) -> new_ltEs17(vxw112, vxw102, ccg) 22.49/8.83 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.83 new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Float) -> new_esEs16(vxw302, vxw4002) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(ty_Either, cgb), cgc)) -> new_ltEs10(vxw110, vxw100, cgb, cgc) 22.49/8.83 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), gd) -> new_asAs(new_esEs12(vxw300, vxw4000, gd), new_esEs11(vxw301, vxw4001, gd)) 22.49/8.83 new_compare8(vxw110, vxw100, app(app(app(ty_@3, dg), dh), ea)) -> new_compare11(vxw110, vxw100, dg, dh, ea) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Char, bfe) -> new_ltEs8(vxw110, vxw100) 22.49/8.83 new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare9(vxw11, vxw10), GT)) 22.49/8.83 new_esEs24(vxw110, vxw100, app(ty_Maybe, bcg)) -> new_esEs6(vxw110, vxw100, bcg) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs10(vxw30, vxw400) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs4(vxw300, vxw4000, dff, dfg, dfh) 22.49/8.83 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 22.49/8.83 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs14(vxw30, vxw400) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_primPlusNat1(Succ(vxw630), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw630, vxw400000))) 22.49/8.83 new_ltEs12(False, True) -> True 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, ddh), dea), che) -> new_esEs5(vxw300, vxw4000, ddh, dea) 22.49/8.83 new_primPlusNat0(Succ(vxw6300), Zero) -> Succ(vxw6300) 22.49/8.83 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 22.49/8.83 new_compare27(vxw110, vxw100, True, bed, bee, bef) -> EQ 22.49/8.83 new_lt19(vxw111, vxw101, app(ty_[], cdg)) -> new_lt11(vxw111, vxw101, cdg) 22.49/8.83 new_ltEs16(EQ, GT) -> True 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_Maybe, dfd)) -> new_esEs6(vxw300, vxw4000, dfd) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(app(ty_Either, bhg), bhh)) -> new_esEs5(vxw301, vxw4001, bhg, bhh) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs4(vxw301, vxw4001, cac, cad, cae) 22.49/8.83 new_ltEs16(EQ, EQ) -> True 22.49/8.83 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Float) -> new_esEs16(vxw111, vxw101) 22.49/8.83 new_esEs12(vxw300, vxw4000, app(ty_Maybe, hb)) -> new_esEs6(vxw300, vxw4000, hb) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.83 new_esEs8(LT, LT) -> True 22.49/8.83 new_esEs12(vxw300, vxw4000, app(ty_[], hc)) -> new_esEs11(vxw300, vxw4000, hc) 22.49/8.83 new_lt20(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs4(vxw302, vxw4002, bha, bhb, bhc) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs9(vxw112, vxw102, cbh, cca, ccb) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Maybe, bdh)) -> new_ltEs17(vxw110, vxw100, bdh) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_[], dfe)) -> new_esEs11(vxw300, vxw4000, dfe) 22.49/8.83 new_ltEs4(vxw11, vxw10) -> new_not(new_esEs8(new_compare7(vxw11, vxw10), GT)) 22.49/8.83 new_lt20(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs18(vxw30, vxw400) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs16(vxw11, vxw10) 22.49/8.83 new_ltEs12(True, True) -> True 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs5(vxw11, vxw10) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.83 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) 22.49/8.83 new_compare25(vxw110, vxw100, True, bcg) -> EQ 22.49/8.83 new_esEs21(vxw301, vxw4001, app(ty_Ratio, bhf)) -> new_esEs13(vxw301, vxw4001, bhf) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Bool, bfe) -> new_ltEs12(vxw110, vxw100) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs15(vxw30, vxw400) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Maybe, dch)) -> new_esEs6(vxw300, vxw4000, dch) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs16(vxw112, vxw102) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs17(vxw30, vxw400) 22.49/8.83 new_lt6(vxw110, vxw100) -> new_esEs8(new_compare9(vxw110, vxw100), LT) 22.49/8.83 new_esEs6(Nothing, Just(vxw4000), chf) -> False 22.49/8.83 new_esEs6(Just(vxw300), Nothing, chf) -> False 22.49/8.83 new_esEs30(vxw30, vxw400, ty_@0) -> new_esEs15(vxw30, vxw400) 22.49/8.83 new_compare8(vxw110, vxw100, app(app(ty_Either, eb), ec)) -> new_compare12(vxw110, vxw100, eb, ec) 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Bool) -> new_esEs18(vxw30, vxw400) 22.49/8.83 new_esEs6(Nothing, Nothing, chf) -> True 22.49/8.83 new_ltEs21(vxw20, vxw19, app(ty_Maybe, ga)) -> new_ltEs17(vxw20, vxw19, ga) 22.49/8.83 new_compare114(vxw110, vxw100, False) -> GT 22.49/8.83 new_esEs22(vxw300, vxw4000, app(app(ty_Either, cba), cbb)) -> new_esEs5(vxw300, vxw4000, cba, cbb) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(ty_Maybe, bah)) -> new_ltEs17(vxw111, vxw101, bah) 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Char) -> new_esEs17(vxw30, vxw400) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs5(vxw112, vxw102) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Int) -> new_compare16(vxw110, vxw100) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs15(vxw11, vxw10) 22.49/8.83 new_ltEs11(vxw11, vxw10) -> new_not(new_esEs8(new_compare13(vxw11, vxw10), GT)) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.83 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.83 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs9(vxw11, vxw10, bfa, bfb, bfc) 22.49/8.83 new_esEs19(vxw110, vxw100, app(app(ty_Either, bbf), bbg)) -> new_esEs5(vxw110, vxw100, bbf, bbg) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs9(vxw111, vxw101, baa, bab, bac) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_@2, bea), beb)) -> new_ltEs6(vxw110, vxw100, bea, beb) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_Either, ceh), cfa), bfe) -> new_ltEs10(vxw110, vxw100, ceh, cfa) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Int) -> new_ltEs15(vxw111, vxw101) 22.49/8.83 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Ratio, cfc), bfe) -> new_ltEs14(vxw110, vxw100, cfc) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Char) -> new_ltEs8(vxw111, vxw101) 22.49/8.83 new_lt19(vxw111, vxw101, app(app(ty_@2, ceb), cec)) -> new_lt18(vxw111, vxw101, ceb, cec) 22.49/8.83 new_lt10(vxw110, vxw100) -> new_esEs8(new_compare14(vxw110, vxw100), LT) 22.49/8.83 new_ltEs9(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), bfa, bfb, bfc) -> new_pePe(new_lt20(vxw110, vxw100, bfa), new_asAs(new_esEs24(vxw110, vxw100, bfa), new_pePe(new_lt19(vxw111, vxw101, bfb), new_asAs(new_esEs23(vxw111, vxw101, bfb), new_ltEs19(vxw112, vxw102, bfc))))) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs8(vxw11, vxw10) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(ty_Ratio, bgd)) -> new_esEs13(vxw302, vxw4002, bgd) 22.49/8.83 new_compare8(vxw110, vxw100, app(ty_[], ed)) -> new_compare0(vxw110, vxw100, ed) 22.49/8.83 new_ltEs10(Left(vxw110), Right(vxw100), bfd, bfe) -> True 22.49/8.83 new_esEs16(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.83 new_compare0([], :(vxw100, vxw101), cc) -> LT 22.49/8.83 new_asAs(True, vxw53) -> vxw53 22.49/8.83 new_compare113(vxw110, vxw100, True, bed, bee, bef) -> LT 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Integer) -> new_esEs14(vxw30, vxw400) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_@0) -> new_esEs15(vxw302, vxw4002) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(ty_Maybe, caa)) -> new_esEs6(vxw301, vxw4001, caa) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, che) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Double) -> new_lt17(vxw111, vxw101) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs15(vxw112, vxw102) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Integer) -> new_compare7(vxw110, vxw100) 22.49/8.83 new_esEs22(vxw300, vxw4000, app(ty_[], cbd)) -> new_esEs11(vxw300, vxw4000, cbd) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_@0, bfe) -> new_ltEs11(vxw110, vxw100) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.83 new_lt20(vxw110, vxw100, app(app(app(ty_@3, bed), bee), bef)) -> new_lt7(vxw110, vxw100, bed, bee, bef) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.83 new_lt5(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.83 new_esEs19(vxw110, vxw100, app(ty_Ratio, bca)) -> new_esEs13(vxw110, vxw100, bca) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(app(ty_Either, bfd), bfe)) -> new_ltEs10(vxw11, vxw10, bfd, bfe) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(ty_@2, cgg), cgh)) -> new_ltEs6(vxw110, vxw100, cgg, cgh) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Float) -> new_ltEs5(vxw20, vxw19) 22.49/8.83 new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs4(vxw300, vxw4000, cbe, cbf, cbg) 22.49/8.83 new_esEs18(False, False) -> True 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Bool) -> new_esEs18(vxw302, vxw4002) 22.49/8.83 new_compare24(vxw110, vxw100, True, bce, bcf) -> EQ 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.83 new_esEs24(vxw110, vxw100, app(app(ty_@2, bce), bcf)) -> new_esEs7(vxw110, vxw100, bce, bcf) 22.49/8.83 new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) 22.49/8.83 new_esEs30(vxw30, vxw400, app(app(ty_@2, cd), ce)) -> new_esEs7(vxw30, vxw400, cd, ce) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Double, bfe) -> new_ltEs18(vxw110, vxw100) 22.49/8.83 new_lt11(vxw110, vxw100, ced) -> new_esEs8(new_compare0(vxw110, vxw100, ced), LT) 22.49/8.83 new_esEs29(vxw30, vxw400, app(app(ty_Either, chd), che)) -> new_esEs5(vxw30, vxw400, chd, che) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Integer, bfe) -> new_ltEs4(vxw110, vxw100) 22.49/8.83 new_primCompAux00(vxw73, EQ) -> vxw73 22.49/8.83 new_compare0([], [], cc) -> EQ 22.49/8.83 new_esEs30(vxw30, vxw400, ty_Float) -> new_esEs16(vxw30, vxw400) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Ordering) -> new_lt15(vxw111, vxw101) 22.49/8.83 new_ltEs16(GT, GT) -> True 22.49/8.83 new_esEs17(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, che) -> new_esEs16(vxw300, vxw4000) 22.49/8.83 new_lt18(vxw110, vxw100, bce, bcf) -> new_esEs8(new_compare23(vxw110, vxw100, bce, bcf), LT) 22.49/8.83 new_primMulNat0(Zero, Zero) -> Zero 22.49/8.83 new_lt19(vxw111, vxw101, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt7(vxw111, vxw101, cdb, cdc, cdd) 22.49/8.83 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.83 new_lt20(vxw110, vxw100, app(app(ty_@2, bce), bcf)) -> new_lt18(vxw110, vxw100, bce, bcf) 22.49/8.83 new_compare10(vxw110, vxw100, False) -> GT 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.83 new_lt14(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) 22.49/8.83 new_ltEs12(True, False) -> False 22.49/8.83 new_lt15(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) 22.49/8.83 new_esEs23(vxw111, vxw101, app(app(ty_@2, ceb), cec)) -> new_esEs7(vxw111, vxw101, ceb, cec) 22.49/8.83 new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs8(vxw112, vxw102) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(app(ty_Either, bge), bgf)) -> new_esEs5(vxw302, vxw4002, bge, bgf) 22.49/8.83 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(ty_Either, dfb), dfc)) -> new_esEs5(vxw300, vxw4000, dfb, dfc) 22.49/8.83 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Integer) -> new_esEs14(vxw302, vxw4002) 22.49/8.83 new_esEs30(vxw30, vxw400, app(ty_Ratio, cf)) -> new_esEs13(vxw30, vxw400, cf) 22.49/8.83 new_lt20(vxw110, vxw100, app(ty_Ratio, bec)) -> new_lt13(vxw110, vxw100, bec) 22.49/8.83 new_esEs24(vxw110, vxw100, app(ty_Ratio, bec)) -> new_esEs13(vxw110, vxw100, bec) 22.49/8.83 new_esEs13(:%(vxw300, vxw301), :%(vxw4000, vxw4001), chc) -> new_asAs(new_esEs26(vxw300, vxw4000, chc), new_esEs25(vxw301, vxw4001, chc)) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_compare25(vxw110, vxw100, False, bcg) -> new_compare111(vxw110, vxw100, new_ltEs17(vxw110, vxw100, bcg), bcg) 22.49/8.83 new_ltEs5(vxw11, vxw10) -> new_not(new_esEs8(new_compare6(vxw11, vxw10), GT)) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(ty_[], dae)) -> new_esEs11(vxw301, vxw4001, dae) 22.49/8.83 new_esEs15(@0, @0) -> True 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_@2, dcc), dcd)) -> new_esEs7(vxw300, vxw4000, dcc, dcd) 22.49/8.83 new_ltEs12(False, False) -> True 22.49/8.83 new_compare11(vxw110, vxw100, bed, bee, bef) -> new_compare27(vxw110, vxw100, new_esEs4(vxw110, vxw100, bed, bee, bef), bed, bee, bef) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_Ratio, cge)) -> new_ltEs14(vxw110, vxw100, cge) 22.49/8.83 new_lt19(vxw111, vxw101, app(ty_Ratio, cdh)) -> new_lt13(vxw111, vxw101, cdh) 22.49/8.83 new_esEs29(vxw30, vxw400, app(ty_Ratio, chc)) -> new_esEs13(vxw30, vxw400, chc) 22.49/8.83 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.83 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vxw300, vxw4000, dba, dbb) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.83 new_ltEs21(vxw20, vxw19, app(ty_Ratio, fh)) -> new_ltEs14(vxw20, vxw19, fh) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(ty_Maybe, bgg)) -> new_esEs6(vxw302, vxw4002, bgg) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs9(vxw30, vxw400) 22.49/8.83 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 22.49/8.83 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 22.49/8.83 new_esEs19(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_esEs6(vxw110, vxw100, bcb) 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), ty_Ordering, bfe) -> new_ltEs16(vxw110, vxw100) 22.49/8.83 new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) 22.49/8.83 new_lt7(vxw110, vxw100, bed, bee, bef) -> new_esEs8(new_compare11(vxw110, vxw100, bed, bee, bef), LT) 22.49/8.83 new_lt4(vxw110, vxw100) -> new_esEs8(new_compare6(vxw110, vxw100), LT) 22.49/8.83 new_esEs12(vxw300, vxw4000, app(app(app(ty_@3, hd), he), hf)) -> new_esEs4(vxw300, vxw4000, hd, he, hf) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.49/8.83 new_esEs21(vxw301, vxw4001, app(ty_[], cab)) -> new_esEs11(vxw301, vxw4001, cab) 22.49/8.83 new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.83 new_compare8(vxw110, vxw100, app(ty_Maybe, ef)) -> new_compare18(vxw110, vxw100, ef) 22.49/8.83 new_compare111(vxw110, vxw100, False, bcg) -> GT 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_Either, bdd), bde)) -> new_ltEs10(vxw110, vxw100, bdd, bde) 22.49/8.83 new_ltEs7(vxw111, vxw101, app(ty_[], baf)) -> new_ltEs13(vxw111, vxw101, baf) 22.49/8.83 new_esEs30(vxw30, vxw400, app(ty_Maybe, db)) -> new_esEs6(vxw30, vxw400, db) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.83 new_lt19(vxw111, vxw101, app(ty_Maybe, cea)) -> new_lt16(vxw111, vxw101, cea) 22.49/8.83 new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Char) -> new_ltEs8(vxw20, vxw19) 22.49/8.83 new_esEs20(vxw302, vxw4002, ty_Double) -> new_esEs9(vxw302, vxw4002) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.83 new_compare112(vxw110, vxw100, False, beg, beh) -> GT 22.49/8.83 new_esEs19(vxw110, vxw100, app(app(ty_@2, bcc), bcd)) -> new_esEs7(vxw110, vxw100, bcc, bcd) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Integer) -> new_ltEs4(vxw20, vxw19) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(ty_[], cc)) -> new_ltEs13(vxw11, vxw10, cc) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(vxw301, vxw4001, daf, dag, dah) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_@0) -> new_esEs15(vxw111, vxw101) 22.49/8.83 new_not(False) -> True 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs16(vxw30, vxw400) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(ty_Ratio, dbc)) -> new_esEs13(vxw300, vxw4000, dbc) 22.49/8.83 new_compare8(vxw110, vxw100, app(ty_Ratio, ee)) -> new_compare15(vxw110, vxw100, ee) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Bool) -> new_ltEs12(vxw20, vxw19) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_compare0(:(vxw110, vxw111), [], cc) -> GT 22.49/8.83 new_esEs8(LT, GT) -> False 22.49/8.83 new_esEs8(GT, LT) -> False 22.49/8.83 new_esEs18(False, True) -> False 22.49/8.83 new_esEs18(True, False) -> False 22.49/8.83 new_compare29(vxw110, vxw100, True) -> EQ 22.49/8.83 new_primPlusNat0(Succ(vxw6300), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6300, vxw4000000))) 22.49/8.83 new_esEs5(Left(vxw300), Right(vxw4000), chd, che) -> False 22.49/8.83 new_esEs5(Right(vxw300), Left(vxw4000), chd, che) -> False 22.49/8.83 new_compare12(vxw110, vxw100, beg, beh) -> new_compare28(vxw110, vxw100, new_esEs5(vxw110, vxw100, beg, beh), beg, beh) 22.49/8.83 new_esEs23(vxw111, vxw101, ty_Integer) -> new_esEs14(vxw111, vxw101) 22.49/8.83 new_lt5(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.83 new_ltEs20(vxw11, vxw10, app(ty_Ratio, bff)) -> new_ltEs14(vxw11, vxw10, bff) 22.49/8.83 new_esEs29(vxw30, vxw400, app(app(ty_@2, cha), chb)) -> new_esEs7(vxw30, vxw400, cha, chb) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, che) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs30(vxw30, vxw400, app(app(ty_Either, cg), da)) -> new_esEs5(vxw30, vxw400, cg, da) 22.49/8.83 new_lt9(vxw110, vxw100) -> new_esEs8(new_compare13(vxw110, vxw100), LT) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.83 new_esEs6(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(app(ty_Either, ccc), ccd)) -> new_ltEs10(vxw112, vxw102, ccc, ccd) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.83 new_esEs29(vxw30, vxw400, app(ty_Maybe, chf)) -> new_esEs6(vxw30, vxw400, chf) 22.49/8.83 new_esEs10(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 22.49/8.83 new_esEs19(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.83 new_ltEs19(vxw112, vxw102, app(ty_Ratio, ccf)) -> new_ltEs14(vxw112, vxw102, ccf) 22.49/8.83 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.49/8.83 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.49/8.83 new_compare10(vxw110, vxw100, True) -> LT 22.49/8.83 new_lt20(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.83 new_compare0(:(vxw110, vxw111), :(vxw100, vxw101), cc) -> new_primCompAux0(vxw110, vxw100, new_compare0(vxw111, vxw101, cc), cc) 22.49/8.83 new_lt16(vxw110, vxw100, bcg) -> new_esEs8(new_compare18(vxw110, vxw100, bcg), LT) 22.49/8.83 new_compare111(vxw110, vxw100, True, bcg) -> LT 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs9(vxw110, vxw100, cfg, cfh, cga) 22.49/8.83 new_esEs19(vxw110, vxw100, app(ty_[], bbh)) -> new_esEs11(vxw110, vxw100, bbh) 22.49/8.83 new_esEs29(vxw30, vxw400, app(ty_[], gd)) -> new_esEs11(vxw30, vxw400, gd) 22.49/8.83 new_esEs25(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(ty_Maybe, dbf)) -> new_esEs6(vxw300, vxw4000, dbf) 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.49/8.83 new_lt5(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_lt16(vxw110, vxw100, bcb) 22.49/8.83 new_compare24(vxw110, vxw100, False, bce, bcf) -> new_compare110(vxw110, vxw100, new_ltEs6(vxw110, vxw100, bce, bcf), bce, bcf) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.83 new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) 22.49/8.83 new_ltEs6(@2(vxw110, vxw111), @2(vxw100, vxw101), hg, hh) -> new_pePe(new_lt5(vxw110, vxw100, hg), new_asAs(new_esEs19(vxw110, vxw100, hg), new_ltEs7(vxw111, vxw101, hh))) 22.49/8.83 new_esEs21(vxw301, vxw4001, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vxw301, vxw4001, bhd, bhe) 22.49/8.83 new_compare8(vxw110, vxw100, ty_Char) -> new_compare9(vxw110, vxw100) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.83 new_compare8(vxw110, vxw100, app(app(ty_@2, eg), eh)) -> new_compare23(vxw110, vxw100, eg, eh) 22.49/8.83 new_esEs7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cha, chb) -> new_asAs(new_esEs28(vxw300, vxw4000, cha), new_esEs27(vxw301, vxw4001, chb)) 22.49/8.83 new_lt19(vxw111, vxw101, ty_Char) -> new_lt6(vxw111, vxw101) 22.49/8.83 new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(ty_Maybe, dad)) -> new_esEs6(vxw301, vxw4001, dad) 22.49/8.83 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_[], bdf)) -> new_ltEs13(vxw110, vxw100, bdf) 22.49/8.83 new_lt20(vxw110, vxw100, app(ty_Maybe, bcg)) -> new_lt16(vxw110, vxw100, bcg) 22.49/8.83 new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Bool) -> new_ltEs12(vxw111, vxw101) 22.49/8.83 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.49/8.83 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.83 new_compare110(vxw110, vxw100, False, bce, bcf) -> GT 22.49/8.83 new_lt20(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.83 new_ltEs21(vxw20, vxw19, app(app(ty_Either, fd), ff)) -> new_ltEs10(vxw20, vxw19, fd, ff) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.83 new_esEs28(vxw300, vxw4000, app(app(ty_Either, dbd), dbe)) -> new_esEs5(vxw300, vxw4000, dbd, dbe) 22.49/8.83 new_primEqNat0(Zero, Zero) -> True 22.49/8.83 new_esEs11([], [], gd) -> True 22.49/8.83 new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 22.49/8.83 new_compare23(vxw110, vxw100, bce, bcf) -> new_compare24(vxw110, vxw100, new_esEs7(vxw110, vxw100, bce, bcf), bce, bcf) 22.49/8.83 new_esEs12(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_esEs30(vxw30, vxw400, app(ty_[], dc)) -> new_esEs11(vxw30, vxw400, dc) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, che) -> new_esEs18(vxw300, vxw4000) 22.49/8.83 new_compare113(vxw110, vxw100, False, bed, bee, bef) -> GT 22.49/8.83 new_asAs(False, vxw53) -> False 22.49/8.83 new_ltEs13(vxw11, vxw10, cc) -> new_not(new_esEs8(new_compare0(vxw11, vxw10, cc), GT)) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, che) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_ltEs21(vxw20, vxw19, ty_Int) -> new_ltEs15(vxw20, vxw19) 22.49/8.83 new_compare28(vxw110, vxw100, True, beg, beh) -> EQ 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.83 new_esEs14(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 22.49/8.83 new_esEs8(EQ, GT) -> False 22.49/8.83 new_esEs8(GT, EQ) -> False 22.49/8.83 new_ltEs7(vxw111, vxw101, app(app(ty_Either, bad), bae)) -> new_ltEs10(vxw111, vxw101, bad, bae) 22.49/8.83 new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.83 new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.83 new_lt12(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) 22.49/8.83 new_compare28(vxw110, vxw100, False, beg, beh) -> new_compare112(vxw110, vxw100, new_ltEs10(vxw110, vxw100, beg, beh), beg, beh) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], dec), che) -> new_esEs11(vxw300, vxw4000, dec) 22.49/8.83 new_esEs20(vxw302, vxw4002, app(app(ty_@2, bgb), bgc)) -> new_esEs7(vxw302, vxw4002, bgb, bgc) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, che) -> new_esEs17(vxw300, vxw4000) 22.49/8.83 22.49/8.83 The set Q consists of the following terms: 22.49/8.83 22.49/8.83 new_esEs12(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_compare17(x0, x1) 22.49/8.83 new_esEs8(EQ, EQ) 22.49/8.83 new_lt13(x0, x1, x2) 22.49/8.83 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs18(x0, x1) 22.49/8.83 new_compare28(x0, x1, False, x2, x3) 22.49/8.83 new_ltEs20(x0, x1, ty_Double) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.83 new_compare26(x0, x1, True) 22.49/8.83 new_lt20(x0, x1, ty_Char) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs28(x0, x1, ty_Float) 22.49/8.83 new_esEs19(x0, x1, ty_Double) 22.49/8.83 new_compare13(@0, @0) 22.49/8.83 new_lt5(x0, x1, ty_Float) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Double) 22.49/8.83 new_ltEs20(x0, x1, ty_Ordering) 22.49/8.83 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs18(True, True) 22.49/8.83 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.83 new_ltEs7(x0, x1, ty_@0) 22.49/8.83 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primEqInt(Pos(Zero), Pos(Zero)) 22.49/8.83 new_esEs29(x0, x1, ty_Integer) 22.49/8.83 new_ltEs8(x0, x1) 22.49/8.83 new_ltEs7(x0, x1, ty_Char) 22.49/8.83 new_esEs30(x0, x1, ty_Int) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.49/8.83 new_lt19(x0, x1, ty_Double) 22.49/8.83 new_lt20(x0, x1, ty_Ordering) 22.49/8.83 new_esEs19(x0, x1, ty_Ordering) 22.49/8.83 new_primPlusNat0(Succ(x0), Zero) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.83 new_esEs28(x0, x1, app(ty_[], x2)) 22.49/8.83 new_primPlusNat0(Zero, Succ(x0)) 22.49/8.83 new_lt19(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Int) 22.49/8.83 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.83 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.83 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.83 new_esEs29(x0, x1, ty_Float) 22.49/8.83 new_ltEs7(x0, x1, ty_Int) 22.49/8.83 new_lt20(x0, x1, ty_Int) 22.49/8.83 new_esEs22(x0, x1, ty_Float) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.83 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_asAs(False, x0) 22.49/8.83 new_lt5(x0, x1, app(ty_[], x2)) 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Zero)) 22.49/8.83 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Char) 22.49/8.83 new_ltEs16(GT, EQ) 22.49/8.83 new_ltEs16(EQ, GT) 22.49/8.83 new_esEs19(x0, x1, ty_Int) 22.49/8.83 new_esEs30(x0, x1, ty_Char) 22.49/8.83 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs17(Nothing, Just(x0), x1) 22.49/8.83 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_lt19(x0, x1, ty_Int) 22.49/8.83 new_esEs30(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs21(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs27(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs30(x0, x1, ty_Bool) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.83 new_ltEs16(LT, LT) 22.49/8.83 new_lt20(x0, x1, ty_Double) 22.49/8.83 new_compare110(x0, x1, False, x2, x3) 22.49/8.83 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_lt20(x0, x1, ty_Bool) 22.49/8.83 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs21(x0, x1, ty_Double) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Int) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.83 new_ltEs7(x0, x1, ty_Integer) 22.49/8.83 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Char) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_@0) 22.49/8.83 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs30(x0, x1, ty_Integer) 22.49/8.83 new_primEqInt(Pos(Zero), Neg(Zero)) 22.49/8.83 new_primEqInt(Neg(Zero), Pos(Zero)) 22.49/8.83 new_compare24(x0, x1, True, x2, x3) 22.49/8.83 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_lt12(x0, x1) 22.49/8.83 new_esEs24(x0, x1, ty_Float) 22.49/8.83 new_compare12(x0, x1, x2, x3) 22.49/8.83 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs12(x0, x1, ty_Float) 22.49/8.83 new_ltEs7(x0, x1, ty_Bool) 22.49/8.83 new_compare25(x0, x1, True, x2) 22.49/8.83 new_primEqNat0(Succ(x0), Zero) 22.49/8.83 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs21(x0, x1, ty_Int) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.83 new_compare0([], :(x0, x1), x2) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.83 new_lt5(x0, x1, ty_@0) 22.49/8.83 new_esEs22(x0, x1, ty_Integer) 22.49/8.83 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.49/8.83 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_compare16(x0, x1) 22.49/8.83 new_esEs19(x0, x1, ty_@0) 22.49/8.83 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs28(x0, x1, ty_Bool) 22.49/8.83 new_ltEs20(x0, x1, ty_@0) 22.49/8.83 new_compare8(x0, x1, ty_Double) 22.49/8.83 new_lt20(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs15(@0, @0) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.49/8.83 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_compare8(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.83 new_primMulNat0(Succ(x0), Zero) 22.49/8.83 new_pePe(True, x0) 22.49/8.83 new_compare29(x0, x1, False) 22.49/8.83 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_lt10(x0, x1) 22.49/8.83 new_lt20(x0, x1, ty_Integer) 22.49/8.83 new_ltEs16(GT, GT) 22.49/8.83 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_lt11(x0, x1, x2) 22.49/8.83 new_esEs12(x0, x1, ty_@0) 22.49/8.83 new_esEs21(x0, x1, ty_Double) 22.49/8.83 new_compare18(x0, x1, x2) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.83 new_lt9(x0, x1) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.83 new_esEs18(False, True) 22.49/8.83 new_esEs18(True, False) 22.49/8.83 new_compare27(x0, x1, True, x2, x3, x4) 22.49/8.83 new_ltEs16(LT, EQ) 22.49/8.83 new_ltEs16(EQ, LT) 22.49/8.83 new_ltEs7(x0, x1, ty_Float) 22.49/8.83 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs14(x0, x1, x2) 22.49/8.83 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_lt19(x0, x1, ty_Char) 22.49/8.83 new_esEs20(x0, x1, ty_Int) 22.49/8.83 new_esEs28(x0, x1, ty_Integer) 22.49/8.83 new_compare10(x0, x1, False) 22.49/8.83 new_lt5(x0, x1, ty_Bool) 22.49/8.83 new_ltEs19(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs19(x0, x1, ty_Integer) 22.49/8.83 new_esEs20(x0, x1, ty_Float) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.83 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.83 new_esEs29(x0, x1, ty_@0) 22.49/8.83 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_ltEs19(x0, x1, ty_Float) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_@0) 22.49/8.83 new_esEs8(GT, GT) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.83 new_esEs30(x0, x1, ty_Double) 22.49/8.83 new_esEs8(LT, EQ) 22.49/8.83 new_esEs8(EQ, LT) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Double) 22.49/8.83 new_compare114(x0, x1, False) 22.49/8.83 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.49/8.83 new_compare110(x0, x1, True, x2, x3) 22.49/8.83 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_lt20(x0, x1, ty_@0) 22.49/8.83 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.49/8.83 new_esEs27(x0, x1, ty_Double) 22.49/8.83 new_esEs27(x0, x1, ty_@0) 22.49/8.83 new_esEs23(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs11([], [], x0) 22.49/8.83 new_esEs8(LT, LT) 22.49/8.83 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.49/8.83 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.83 new_lt5(x0, x1, ty_Integer) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.83 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs24(x0, x1, ty_Ordering) 22.49/8.83 new_esEs29(x0, x1, ty_Double) 22.49/8.83 new_compare7(Integer(x0), Integer(x1)) 22.49/8.83 new_compare112(x0, x1, False, x2, x3) 22.49/8.83 new_ltEs19(x0, x1, ty_Int) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Float) 22.49/8.83 new_esEs24(x0, x1, ty_Integer) 22.49/8.83 new_lt19(x0, x1, ty_Integer) 22.49/8.83 new_esEs30(x0, x1, ty_@0) 22.49/8.83 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs24(x0, x1, ty_Bool) 22.49/8.83 new_esEs28(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.49/8.83 new_primMulInt(Pos(x0), Neg(x1)) 22.49/8.83 new_primMulInt(Neg(x0), Pos(x1)) 22.49/8.83 new_ltEs19(x0, x1, ty_Char) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.83 new_lt19(x0, x1, ty_Bool) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.83 new_esEs25(x0, x1, ty_Integer) 22.49/8.83 new_esEs22(x0, x1, ty_Bool) 22.49/8.83 new_ltEs17(Nothing, Nothing, x0) 22.49/8.83 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs10(Right(x0), Left(x1), x2, x3) 22.49/8.83 new_ltEs10(Left(x0), Right(x1), x2, x3) 22.49/8.83 new_esEs21(x0, x1, ty_@0) 22.49/8.83 new_lt16(x0, x1, x2) 22.49/8.83 new_esEs20(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.49/8.83 new_lt19(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs22(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.83 new_primCompAux00(x0, GT) 22.49/8.83 new_compare111(x0, x1, True, x2) 22.49/8.83 new_ltEs17(Just(x0), Nothing, x1) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Double, x2) 22.49/8.83 new_lt4(x0, x1) 22.49/8.83 new_ltEs19(x0, x1, ty_Bool) 22.49/8.83 new_lt5(x0, x1, ty_Ordering) 22.49/8.83 new_esEs22(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs23(x0, x1, ty_Double) 22.49/8.83 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs27(x0, x1, ty_Char) 22.49/8.83 new_compare8(x0, x1, ty_@0) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.83 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_compare0(:(x0, x1), :(x2, x3), x4) 22.49/8.83 new_primEqNat0(Zero, Succ(x0)) 22.49/8.83 new_esEs28(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Char) 22.49/8.83 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.83 new_ltEs16(EQ, EQ) 22.49/8.83 new_esEs23(x0, x1, ty_Bool) 22.49/8.83 new_esEs11(:(x0, x1), [], x2) 22.49/8.83 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.49/8.83 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs20(x0, x1, ty_Float) 22.49/8.83 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, ty_Float) 22.49/8.83 new_compare113(x0, x1, False, x2, x3, x4) 22.49/8.83 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.49/8.83 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_@0, x2) 22.49/8.83 new_primMulNat0(Zero, Zero) 22.49/8.83 new_compare29(x0, x1, True) 22.49/8.83 new_pePe(False, x0) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.83 new_ltEs15(x0, x1) 22.49/8.83 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.83 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_compare8(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.83 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs22(x0, x1, ty_Int) 22.49/8.83 new_esEs19(x0, x1, ty_Float) 22.49/8.83 new_compare0([], [], x0) 22.49/8.83 new_esEs28(x0, x1, ty_Double) 22.49/8.83 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primMulInt(Pos(x0), Pos(x1)) 22.49/8.83 new_esEs23(x0, x1, ty_@0) 22.49/8.83 new_lt5(x0, x1, ty_Double) 22.49/8.83 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_compare24(x0, x1, False, x2, x3) 22.49/8.83 new_primCmpNat0(Zero, Succ(x0)) 22.49/8.83 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs6(Nothing, Just(x0), x1) 22.49/8.83 new_esEs22(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs19(x0, x1, ty_@0) 22.49/8.83 new_esEs20(x0, x1, ty_Integer) 22.49/8.83 new_esEs24(x0, x1, ty_@0) 22.49/8.83 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs24(x0, x1, ty_Char) 22.49/8.83 new_esEs25(x0, x1, ty_Int) 22.49/8.83 new_primMulNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 22.49/8.83 new_esEs21(x0, x1, ty_Char) 22.49/8.83 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs28(x0, x1, ty_Int) 22.49/8.83 new_esEs23(x0, x1, ty_Integer) 22.49/8.83 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_compare14(x0, x1) 22.49/8.83 new_esEs30(x0, x1, app(ty_[], x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Int) 22.49/8.83 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.49/8.83 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Double) 22.49/8.83 new_compare25(x0, x1, False, x2) 22.49/8.83 new_esEs20(x0, x1, ty_@0) 22.49/8.83 new_esEs12(x0, x1, ty_Double) 22.49/8.83 new_primMulInt(Neg(x0), Neg(x1)) 22.49/8.83 new_compare8(x0, x1, ty_Integer) 22.49/8.83 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.49/8.83 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.49/8.83 new_esEs9(Double(x0, x1), Double(x2, x3)) 22.49/8.83 new_esEs21(x0, x1, ty_Bool) 22.49/8.83 new_sr0(x0, x1) 22.49/8.83 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.49/8.83 new_primPlusNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.83 new_lt8(x0, x1, x2, x3) 22.49/8.83 new_primPlusNat0(Zero, Zero) 22.49/8.83 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.49/8.83 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.49/8.83 new_esEs12(x0, x1, ty_Int) 22.49/8.83 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs20(x0, x1, app(ty_[], x2)) 22.49/8.83 new_not(True) 22.49/8.83 new_lt17(x0, x1) 22.49/8.83 new_esEs29(x0, x1, ty_Ordering) 22.49/8.83 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs24(x0, x1, ty_Int) 22.49/8.83 new_ltEs12(True, True) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.83 new_ltEs21(x0, x1, ty_Bool) 22.49/8.83 new_esEs8(EQ, GT) 22.49/8.83 new_esEs8(GT, EQ) 22.49/8.83 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs5(x0, x1) 22.49/8.83 new_compare8(x0, x1, ty_Char) 22.49/8.83 new_esEs12(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.83 new_lt15(x0, x1) 22.49/8.83 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Bool) 22.49/8.83 new_ltEs20(x0, x1, ty_Integer) 22.49/8.83 new_ltEs13(x0, x1, x2) 22.49/8.83 new_ltEs21(x0, x1, ty_Float) 22.49/8.83 new_esEs20(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.49/8.83 new_lt5(x0, x1, ty_Char) 22.49/8.83 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 22.49/8.83 new_compare8(x0, x1, ty_Int) 22.49/8.83 new_ltEs12(False, True) 22.49/8.83 new_ltEs12(True, False) 22.49/8.83 new_esEs18(False, False) 22.49/8.83 new_lt19(x0, x1, ty_Float) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.83 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_primCmpNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs29(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.83 new_asAs(True, x0) 22.49/8.83 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.83 new_ltEs16(LT, GT) 22.49/8.83 new_ltEs16(GT, LT) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Float) 22.49/8.83 new_esEs21(x0, x1, ty_Ordering) 22.49/8.83 new_esEs27(x0, x1, ty_Ordering) 22.49/8.83 new_compare8(x0, x1, ty_Bool) 22.49/8.83 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.49/8.83 new_lt19(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs21(x0, x1, ty_Integer) 22.49/8.83 new_esEs11(:(x0, x1), :(x2, x3), x4) 22.49/8.83 new_lt5(x0, x1, ty_Int) 22.49/8.83 new_ltEs21(x0, x1, ty_@0) 22.49/8.83 new_ltEs11(x0, x1) 22.49/8.83 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs11([], :(x0, x1), x2) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.83 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs20(x0, x1, ty_Bool) 22.49/8.83 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.49/8.83 new_compare8(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs26(x0, x1, ty_Int) 22.49/8.83 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs21(x0, x1, app(ty_[], x2)) 22.49/8.83 new_compare28(x0, x1, True, x2, x3) 22.49/8.83 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs20(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_Integer) 22.49/8.83 new_compare26(x0, x1, False) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.83 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_esEs23(x0, x1, ty_Float) 22.49/8.83 new_primCmpNat0(Succ(x0), Zero) 22.49/8.83 new_esEs5(Left(x0), Right(x1), x2, x3) 22.49/8.83 new_esEs5(Right(x0), Left(x1), x2, x3) 22.49/8.83 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.83 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.83 new_esEs20(x0, x1, ty_Double) 22.49/8.83 new_ltEs21(x0, x1, ty_Char) 22.49/8.83 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.83 new_esEs19(x0, x1, ty_Bool) 22.49/8.83 new_esEs27(x0, x1, ty_Integer) 22.49/8.83 new_esEs26(x0, x1, ty_Integer) 22.49/8.83 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.83 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.83 new_esEs29(x0, x1, ty_Char) 22.49/8.83 new_esEs8(LT, GT) 22.49/8.83 new_esEs8(GT, LT) 22.49/8.83 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 22.49/8.83 new_ltEs20(x0, x1, ty_Bool) 22.49/8.83 new_esEs14(Integer(x0), Integer(x1)) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.83 new_esEs23(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs7(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs12(x0, x1, ty_Bool) 22.49/8.83 new_sr(Integer(x0), Integer(x1)) 22.49/8.83 new_ltEs7(x0, x1, ty_Double) 22.49/8.83 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.83 new_esEs24(x0, x1, ty_Double) 22.49/8.83 new_esEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_primPlusNat1(Succ(x0), x1) 22.49/8.83 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs17(Char(x0), Char(x1)) 22.49/8.83 new_esEs29(x0, x1, ty_Int) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Float, x2) 22.49/8.83 new_lt14(x0, x1) 22.49/8.83 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_lt19(x0, x1, ty_@0) 22.49/8.83 new_esEs24(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs16(Float(x0, x1), Float(x2, x3)) 22.49/8.83 new_compare8(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_lt19(x0, x1, app(ty_[], x2)) 22.49/8.83 new_lt6(x0, x1) 22.49/8.83 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.83 new_esEs6(Nothing, Nothing, x0) 22.49/8.83 new_ltEs7(x0, x1, ty_Ordering) 22.49/8.83 new_esEs28(x0, x1, ty_@0) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.49/8.83 new_compare112(x0, x1, True, x2, x3) 22.49/8.83 new_esEs12(x0, x1, ty_Char) 22.49/8.83 new_compare113(x0, x1, True, x2, x3, x4) 22.49/8.83 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_compare111(x0, x1, False, x2) 22.49/8.83 new_compare11(x0, x1, x2, x3, x4) 22.49/8.83 new_compare8(x0, x1, ty_Float) 22.49/8.83 new_primEqNat0(Succ(x0), Succ(x1)) 22.49/8.83 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_primEqNat0(Zero, Zero) 22.49/8.83 new_esEs10(x0, x1) 22.49/8.83 new_ltEs20(x0, x1, ty_Char) 22.49/8.83 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), ty_@0) 22.49/8.83 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_ltEs21(x0, x1, ty_Ordering) 22.49/8.83 new_ltEs19(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs27(x0, x1, ty_Float) 22.49/8.83 new_not(False) 22.49/8.83 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_primCompAux00(x0, LT) 22.49/8.83 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.49/8.83 new_ltEs4(x0, x1) 22.49/8.83 new_esEs12(x0, x1, ty_Integer) 22.49/8.83 new_esEs27(x0, x1, ty_Bool) 22.49/8.83 new_esEs30(x0, x1, ty_Float) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Int, x2) 22.49/8.83 new_esEs19(x0, x1, ty_Char) 22.49/8.83 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.49/8.83 new_lt7(x0, x1, x2, x3, x4) 22.49/8.83 new_ltEs12(False, False) 22.49/8.83 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.49/8.83 new_esEs22(x0, x1, ty_@0) 22.49/8.83 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_primCompAux00(x0, EQ) 22.49/8.83 new_lt20(x0, x1, ty_Float) 22.49/8.83 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.49/8.83 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs21(x0, x1, ty_Int) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.83 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.83 new_compare9(Char(x0), Char(x1)) 22.49/8.83 new_esEs12(x0, x1, ty_Ordering) 22.49/8.83 new_esEs19(x0, x1, ty_Integer) 22.49/8.83 new_esEs12(x0, x1, app(ty_[], x2)) 22.49/8.83 new_ltEs21(x0, x1, ty_Integer) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.83 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_primMulNat0(Zero, Succ(x0)) 22.49/8.83 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.83 new_compare114(x0, x1, True) 22.49/8.83 new_compare10(x0, x1, True) 22.49/8.83 new_esEs6(Just(x0), Nothing, x1) 22.49/8.83 new_ltEs19(x0, x1, ty_Double) 22.49/8.83 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.49/8.83 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.49/8.83 new_compare27(x0, x1, False, x2, x3, x4) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.49/8.83 new_esEs19(x0, x1, app(ty_[], x2)) 22.49/8.83 new_esEs23(x0, x1, ty_Int) 22.49/8.83 new_ltEs20(x0, x1, ty_Int) 22.49/8.83 new_primCompAux0(x0, x1, x2, x3) 22.49/8.83 new_compare0(:(x0, x1), [], x2) 22.49/8.83 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.49/8.83 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.83 new_primPlusNat1(Zero, x0) 22.49/8.83 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.83 new_lt18(x0, x1, x2, x3) 22.49/8.83 new_esEs22(x0, x1, ty_Double) 22.49/8.83 new_esEs27(x0, x1, ty_Int) 22.49/8.83 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.83 new_esEs29(x0, x1, ty_Bool) 22.49/8.83 new_primCmpNat0(Zero, Zero) 22.49/8.83 new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.83 new_esEs23(x0, x1, ty_Char) 22.49/8.83 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.83 new_ltEs10(Left(x0), Left(x1), ty_Char, x2) 22.49/8.83 new_compare23(x0, x1, x2, x3) 22.49/8.83 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.49/8.83 new_esEs21(x0, x1, ty_Float) 22.49/8.83 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.83 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.83 22.49/8.83 We have to consider all minimal (P,Q,R)-chains. 22.49/8.83 ---------------------------------------- 22.49/8.83 22.49/8.83 (25) QDPSizeChangeProof (EQUIVALENT) 22.49/8.83 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. 22.49/8.83 22.49/8.83 From the DPs we obtained the following set of size-change graphs: 22.49/8.83 *new_insertBy01(vxw19, vxw20, vxw21, False, bg, bh) -> new_insertBy02(vxw19, vxw20, vxw21, new_ltEs21(vxw20, vxw19, bh), bg, bh) 22.49/8.83 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 5 >= 5, 6 >= 6 22.49/8.83 22.49/8.83 22.49/8.83 *new_insertBy(Right(vxw30), :(Right(vxw400), vxw41), be, bf) -> new_insertBy01(vxw400, vxw30, vxw41, new_esEs30(vxw30, vxw400, bf), be, bf) 22.49/8.83 The graph contains the following edges 2 > 1, 1 > 2, 2 > 3, 3 >= 5, 4 >= 6 22.49/8.83 22.49/8.83 22.49/8.83 *new_insertBy02(vxw37, vxw38, vxw39, False, ca, cb) -> new_insertBy(Right(vxw38), vxw39, ca, cb) 22.49/8.83 The graph contains the following edges 3 >= 2, 5 >= 3, 6 >= 4 22.49/8.83 22.49/8.83 22.49/8.83 *new_insertBy(Right(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy(Right(vxw30), vxw41, be, bf) 22.49/8.83 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3, 4 >= 4 22.49/8.83 22.49/8.83 22.49/8.83 ---------------------------------------- 22.49/8.83 22.49/8.83 (26) 22.49/8.83 YES 22.49/8.83 22.49/8.83 ---------------------------------------- 22.49/8.83 22.49/8.83 (27) 22.49/8.83 Obligation: 22.49/8.83 Q DP problem: 22.49/8.83 The TRS P consists of the following rules: 22.49/8.83 22.49/8.83 new_insertBy(Left(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, be), be, bf) 22.49/8.83 new_insertBy0(vxw10, vxw11, vxw12, False, ba, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, ba), ba, bb) 22.49/8.83 new_insertBy00(vxw28, vxw29, vxw30, False, bc, bd) -> new_insertBy(Left(vxw29), vxw30, bc, bd) 22.49/8.83 22.49/8.83 The TRS R consists of the following rules: 22.49/8.83 22.49/8.83 new_ltEs7(vxw111, vxw101, ty_Integer) -> new_ltEs4(vxw111, vxw101) 22.49/8.83 new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.83 new_esEs9(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.83 new_esEs27(vxw301, vxw4001, app(ty_Ratio, daa)) -> new_esEs13(vxw301, vxw4001, daa) 22.49/8.83 new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT 22.49/8.83 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.49/8.83 new_primPlusNat0(Zero, Zero) -> Zero 22.49/8.83 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_[], cfb), bfe) -> new_ltEs13(vxw110, vxw100, cfb) 22.49/8.83 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_Ratio, dfa)) -> new_esEs13(vxw300, vxw4000, dfa) 22.49/8.83 new_pePe(True, vxw61) -> True 22.49/8.83 new_esEs23(vxw111, vxw101, app(ty_Maybe, cea)) -> new_esEs6(vxw111, vxw101, cea) 22.49/8.83 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.83 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, che) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs18(vxw112, vxw102) 22.49/8.84 new_esEs30(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Int) -> new_lt14(vxw111, vxw101) 22.49/8.84 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_[], cgd)) -> new_ltEs13(vxw110, vxw100, cgd) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_Maybe, cgf)) -> new_ltEs17(vxw110, vxw100, cgf) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ded), dee), def), che) -> new_esEs4(vxw300, vxw4000, ded, dee, def) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Char) -> new_esEs17(vxw111, vxw101) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Float) -> new_compare6(vxw110, vxw100) 22.49/8.84 new_esEs18(True, True) -> True 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, ddg), che) -> new_esEs13(vxw300, vxw4000, ddg) 22.49/8.84 new_esEs24(vxw110, vxw100, app(ty_[], ced)) -> new_esEs11(vxw110, vxw100, ced) 22.49/8.84 new_compare14(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs18(vxw110, vxw100)) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.49/8.84 new_esEs27(vxw301, vxw4001, app(app(ty_Either, dab), dac)) -> new_esEs5(vxw301, vxw4001, dab, dac) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Bool) -> new_compare14(vxw110, vxw100) 22.49/8.84 new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_@0) -> new_ltEs11(vxw111, vxw101) 22.49/8.84 new_compare16(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs11(vxw112, vxw102) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Maybe, cfd), bfe) -> new_ltEs17(vxw110, vxw100, cfd) 22.49/8.84 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs4(vxw11, vxw10) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_Either, dcf), dcg)) -> new_esEs5(vxw300, vxw4000, dcf, dcg) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Double) -> new_compare19(vxw110, vxw100) 22.49/8.84 new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare16(vxw11, vxw10), GT)) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(vxw300, vxw4000, dbh, dca, dcb) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Double) -> new_esEs9(vxw111, vxw101) 22.49/8.84 new_compare29(vxw110, vxw100, False) -> new_compare114(vxw110, vxw100, new_ltEs16(vxw110, vxw100)) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.84 new_esEs23(vxw111, vxw101, app(app(ty_Either, cde), cdf)) -> new_esEs5(vxw111, vxw101, cde, cdf) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs12(vxw11, vxw10) 22.49/8.84 new_compare26(vxw110, vxw100, True) -> EQ 22.49/8.84 new_esEs8(GT, GT) -> True 22.49/8.84 new_ltEs14(vxw11, vxw10, bff) -> new_not(new_esEs8(new_compare15(vxw11, vxw10, bff), GT)) 22.49/8.84 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 22.49/8.84 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_Ordering) -> new_ltEs16(vxw20, vxw19) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs4(vxw112, vxw102) 22.49/8.84 new_lt5(vxw110, vxw100, app(ty_Ratio, bca)) -> new_lt13(vxw110, vxw100, bca) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(app(ty_@2, cch), cda)) -> new_ltEs6(vxw112, vxw102, cch, cda) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_lt17(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(ty_[], dbg)) -> new_esEs11(vxw300, vxw4000, dbg) 22.49/8.84 new_esEs8(EQ, EQ) -> True 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Bool) -> new_esEs18(vxw111, vxw101) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, deb), che) -> new_esEs6(vxw300, vxw4000, deb) 22.49/8.84 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.84 new_lt5(vxw110, vxw100, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_lt7(vxw110, vxw100, bbc, bbd, bbe) 22.49/8.84 new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(ty_Ratio, cah)) -> new_esEs13(vxw300, vxw4000, cah) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Int, bfe) -> new_ltEs15(vxw110, vxw100) 22.49/8.84 new_compare18(vxw110, vxw100, bcg) -> new_compare25(vxw110, vxw100, new_esEs6(vxw110, vxw100, bcg), bcg) 22.49/8.84 new_compare17(vxw110, vxw100) -> new_compare29(vxw110, vxw100, new_esEs8(vxw110, vxw100)) 22.49/8.84 new_ltEs21(vxw20, vxw19, app(ty_[], fg)) -> new_ltEs13(vxw20, vxw19, fg) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(app(ty_Either, gh), ha)) -> new_esEs5(vxw300, vxw4000, gh, ha) 22.49/8.84 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_not(True) -> False 22.49/8.84 new_lt5(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Ordering) -> new_compare17(vxw110, vxw100) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_primCompAux00(vxw73, LT) -> LT 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_primCmpNat0(Zero, Zero) -> EQ 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Ordering) -> new_ltEs16(vxw111, vxw101) 22.49/8.84 new_lt13(vxw110, vxw100, bec) -> new_esEs8(new_compare15(vxw110, vxw100, bec), LT) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_lt19(vxw111, vxw101, app(app(ty_Either, cde), cdf)) -> new_lt8(vxw111, vxw101, cde, cdf) 22.49/8.84 new_esEs23(vxw111, vxw101, app(ty_Ratio, cdh)) -> new_esEs13(vxw111, vxw101, cdh) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.84 new_ltEs16(GT, EQ) -> False 22.49/8.84 new_esEs20(vxw302, vxw4002, app(ty_[], bgh)) -> new_esEs11(vxw302, vxw4002, bgh) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.84 new_compare26(vxw110, vxw100, False) -> new_compare10(vxw110, vxw100, new_ltEs12(vxw110, vxw100)) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Ratio, bdg)) -> new_ltEs14(vxw110, vxw100, bdg) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.84 new_compare9(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, dde), ddf), che) -> new_esEs7(vxw300, vxw4000, dde, ddf) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs12(vxw112, vxw102) 22.49/8.84 new_primEqNat0(Succ(vxw3000), Zero) -> False 22.49/8.84 new_primEqNat0(Zero, Succ(vxw40000)) -> False 22.49/8.84 new_compare8(vxw110, vxw100, ty_@0) -> new_compare13(vxw110, vxw100) 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_@0) -> new_ltEs11(vxw20, vxw19) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs18(vxw11, vxw10) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Float) -> new_lt4(vxw111, vxw101) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Integer) -> new_lt12(vxw111, vxw101) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(app(ty_@2, caf), cag)) -> new_esEs7(vxw300, vxw4000, caf, cag) 22.49/8.84 new_primCompAux00(vxw73, GT) -> GT 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Ratio, dce)) -> new_esEs13(vxw300, vxw4000, dce) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Int) -> new_esEs10(vxw111, vxw101) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Float, bfe) -> new_ltEs5(vxw110, vxw100) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(ty_Ratio, bag)) -> new_ltEs14(vxw111, vxw101, bag) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, che) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_esEs30(vxw30, vxw400, ty_Double) -> new_esEs9(vxw30, vxw400) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(app(ty_@2, bba), bbb)) -> new_ltEs6(vxw111, vxw101, bba, bbb) 22.49/8.84 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare16(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) 22.49/8.84 new_esEs24(vxw110, vxw100, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs4(vxw110, vxw100, bed, bee, bef) 22.49/8.84 new_esEs23(vxw111, vxw101, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_esEs4(vxw111, vxw101, cdb, cdc, cdd) 22.49/8.84 new_esEs30(vxw30, vxw400, app(app(app(ty_@3, dd), de), df)) -> new_esEs4(vxw30, vxw400, dd, de, df) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(app(app(ty_@3, cee), cef), ceg), bfe) -> new_ltEs9(vxw110, vxw100, cee, cef, ceg) 22.49/8.84 new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs11(vxw11, vxw10) 22.49/8.84 new_ltEs21(vxw20, vxw19, app(app(ty_@2, gb), gc)) -> new_ltEs6(vxw20, vxw19, gb, gc) 22.49/8.84 new_ltEs10(Right(vxw110), Left(vxw100), bfd, bfe) -> False 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Double) -> new_ltEs18(vxw111, vxw101) 22.49/8.84 new_ltEs16(LT, LT) -> True 22.49/8.84 new_compare110(vxw110, vxw100, True, bce, bcf) -> LT 22.49/8.84 new_lt20(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_ltEs18(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) 22.49/8.84 new_lt20(vxw110, vxw100, app(app(ty_Either, beg), beh)) -> new_lt8(vxw110, vxw100, beg, beh) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(ty_Ratio, gg)) -> new_esEs13(vxw300, vxw4000, gg) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.84 new_compare27(vxw110, vxw100, False, bed, bee, bef) -> new_compare113(vxw110, vxw100, new_ltEs9(vxw110, vxw100, bed, bee, bef), bed, bee, bef) 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_Double) -> new_ltEs18(vxw20, vxw19) 22.49/8.84 new_lt5(vxw110, vxw100, app(app(ty_@2, bcc), bcd)) -> new_lt18(vxw110, vxw100, bcc, bcd) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bda), bdb), bdc)) -> new_ltEs9(vxw110, vxw100, bda, bdb, bdc) 22.49/8.84 new_lt5(vxw110, vxw100, app(app(ty_Either, bbf), bbg)) -> new_lt8(vxw110, vxw100, bbf, bbg) 22.49/8.84 new_primCmpNat0(Zero, Succ(vxw1000)) -> LT 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs29(vxw30, vxw400, app(app(app(ty_@3, bfg), bfh), bga)) -> new_esEs4(vxw30, vxw400, bfg, bfh, bga) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(ty_[], cce)) -> new_ltEs13(vxw112, vxw102, cce) 22.49/8.84 new_sr(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(app(ty_@2, chg), chh)) -> new_esEs7(vxw301, vxw4001, chg, chh) 22.49/8.84 new_primCmpNat0(Succ(vxw1100), Zero) -> GT 22.49/8.84 new_primCompAux0(vxw110, vxw100, vxw62, cc) -> new_primCompAux00(vxw62, new_compare8(vxw110, vxw100, cc)) 22.49/8.84 new_esEs19(vxw110, vxw100, app(app(app(ty_@3, bbc), bbd), bbe)) -> new_esEs4(vxw110, vxw100, bbc, bbd, bbe) 22.49/8.84 new_ltEs17(Nothing, Nothing, bch) -> True 22.49/8.84 new_pePe(False, vxw61) -> vxw61 22.49/8.84 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare7(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) 22.49/8.84 new_ltEs17(Nothing, Just(vxw100), bch) -> True 22.49/8.84 new_ltEs17(Just(vxw110), Nothing, bch) -> False 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_[], dda)) -> new_esEs11(vxw300, vxw4000, dda) 22.49/8.84 new_ltEs20(vxw11, vxw10, app(ty_Maybe, bch)) -> new_ltEs17(vxw11, vxw10, bch) 22.49/8.84 new_esEs25(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.84 new_lt19(vxw111, vxw101, ty_@0) -> new_lt9(vxw111, vxw101) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs11(:(vxw300, vxw301), [], gd) -> False 22.49/8.84 new_esEs11([], :(vxw4000, vxw4001), gd) -> False 22.49/8.84 new_compare112(vxw110, vxw100, True, beg, beh) -> LT 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Int) -> new_esEs10(vxw302, vxw4002) 22.49/8.84 new_ltEs16(LT, GT) -> True 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_@2, cfe), cff), bfe) -> new_ltEs6(vxw110, vxw100, cfe, cff) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Bool) -> new_lt10(vxw111, vxw101) 22.49/8.84 new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bfg, bfh, bga) -> new_asAs(new_esEs22(vxw300, vxw4000, bfg), new_asAs(new_esEs21(vxw301, vxw4001, bfh), new_esEs20(vxw302, vxw4002, bga))) 22.49/8.84 new_ltEs16(LT, EQ) -> True 22.49/8.84 new_ltEs16(EQ, LT) -> False 22.49/8.84 new_compare7(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) 22.49/8.84 new_lt20(vxw110, vxw100, app(ty_[], ced)) -> new_lt11(vxw110, vxw100, ced) 22.49/8.84 new_esEs8(LT, EQ) -> False 22.49/8.84 new_esEs8(EQ, LT) -> False 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(ty_Maybe, cbc)) -> new_esEs6(vxw300, vxw4000, cbc) 22.49/8.84 new_compare13(@0, @0) -> EQ 22.49/8.84 new_ltEs21(vxw20, vxw19, app(app(app(ty_@3, fa), fb), fc)) -> new_ltEs9(vxw20, vxw19, fa, fb, fc) 22.49/8.84 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.84 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.84 new_esEs12(vxw300, vxw4000, app(app(ty_@2, ge), gf)) -> new_esEs7(vxw300, vxw4000, ge, gf) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.84 new_lt8(vxw110, vxw100, beg, beh) -> new_esEs8(new_compare12(vxw110, vxw100, beg, beh), LT) 22.49/8.84 new_lt5(vxw110, vxw100, app(ty_[], bbh)) -> new_lt11(vxw110, vxw100, bbh) 22.49/8.84 new_esEs23(vxw111, vxw101, app(ty_[], cdg)) -> new_esEs11(vxw111, vxw101, cdg) 22.49/8.84 new_compare114(vxw110, vxw100, True) -> LT 22.49/8.84 new_ltEs16(GT, LT) -> False 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs4(vxw300, vxw4000, ddb, ddc, ddd) 22.49/8.84 new_esEs30(vxw30, vxw400, ty_Int) -> new_esEs10(vxw30, vxw400) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(ty_@2, deg), deh)) -> new_esEs7(vxw300, vxw4000, deg, deh) 22.49/8.84 new_ltEs20(vxw11, vxw10, app(app(ty_@2, hg), hh)) -> new_ltEs6(vxw11, vxw10, hg, hh) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Char) -> new_esEs17(vxw302, vxw4002) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Float) -> new_ltEs5(vxw111, vxw101) 22.49/8.84 new_esEs24(vxw110, vxw100, app(app(ty_Either, beg), beh)) -> new_esEs5(vxw110, vxw100, beg, beh) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(ty_Maybe, ccg)) -> new_ltEs17(vxw112, vxw102, ccg) 22.49/8.84 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Float) -> new_esEs16(vxw302, vxw4002) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(ty_Either, cgb), cgc)) -> new_ltEs10(vxw110, vxw100, cgb, cgc) 22.49/8.84 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), gd) -> new_asAs(new_esEs12(vxw300, vxw4000, gd), new_esEs11(vxw301, vxw4001, gd)) 22.49/8.84 new_compare8(vxw110, vxw100, app(app(app(ty_@3, dg), dh), ea)) -> new_compare11(vxw110, vxw100, dg, dh, ea) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Char, bfe) -> new_ltEs8(vxw110, vxw100) 22.49/8.84 new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare9(vxw11, vxw10), GT)) 22.49/8.84 new_esEs24(vxw110, vxw100, app(ty_Maybe, bcg)) -> new_esEs6(vxw110, vxw100, bcg) 22.49/8.84 new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs10(vxw30, vxw400) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(app(ty_@3, dff), dfg), dfh)) -> new_esEs4(vxw300, vxw4000, dff, dfg, dfh) 22.49/8.84 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 22.49/8.84 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 22.49/8.84 new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs14(vxw30, vxw400) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_primPlusNat1(Succ(vxw630), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw630, vxw400000))) 22.49/8.84 new_ltEs12(False, True) -> True 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, ddh), dea), che) -> new_esEs5(vxw300, vxw4000, ddh, dea) 22.49/8.84 new_primPlusNat0(Succ(vxw6300), Zero) -> Succ(vxw6300) 22.49/8.84 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 22.49/8.84 new_compare27(vxw110, vxw100, True, bed, bee, bef) -> EQ 22.49/8.84 new_lt19(vxw111, vxw101, app(ty_[], cdg)) -> new_lt11(vxw111, vxw101, cdg) 22.49/8.84 new_ltEs16(EQ, GT) -> True 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_Maybe, dfd)) -> new_esEs6(vxw300, vxw4000, dfd) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(app(ty_Either, bhg), bhh)) -> new_esEs5(vxw301, vxw4001, bhg, bhh) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, cac), cad), cae)) -> new_esEs4(vxw301, vxw4001, cac, cad, cae) 22.49/8.84 new_ltEs16(EQ, EQ) -> True 22.49/8.84 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Float) -> new_esEs16(vxw111, vxw101) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(ty_Maybe, hb)) -> new_esEs6(vxw300, vxw4000, hb) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.84 new_esEs8(LT, LT) -> True 22.49/8.84 new_esEs12(vxw300, vxw4000, app(ty_[], hc)) -> new_esEs11(vxw300, vxw4000, hc) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(app(app(ty_@3, bha), bhb), bhc)) -> new_esEs4(vxw302, vxw4002, bha, bhb, bhc) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs9(vxw112, vxw102, cbh, cca, ccb) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Maybe, bdh)) -> new_ltEs17(vxw110, vxw100, bdh) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(ty_[], dfe)) -> new_esEs11(vxw300, vxw4000, dfe) 22.49/8.84 new_ltEs4(vxw11, vxw10) -> new_not(new_esEs8(new_compare7(vxw11, vxw10), GT)) 22.49/8.84 new_lt20(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.84 new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs18(vxw30, vxw400) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs16(vxw11, vxw10) 22.49/8.84 new_ltEs12(True, True) -> True 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs5(vxw11, vxw10) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.84 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) 22.49/8.84 new_compare25(vxw110, vxw100, True, bcg) -> EQ 22.49/8.84 new_esEs21(vxw301, vxw4001, app(ty_Ratio, bhf)) -> new_esEs13(vxw301, vxw4001, bhf) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Bool, bfe) -> new_ltEs12(vxw110, vxw100) 22.49/8.84 new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs15(vxw30, vxw400) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Maybe, dch)) -> new_esEs6(vxw300, vxw4000, dch) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs16(vxw112, vxw102) 22.49/8.84 new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs17(vxw30, vxw400) 22.49/8.84 new_lt6(vxw110, vxw100) -> new_esEs8(new_compare9(vxw110, vxw100), LT) 22.49/8.84 new_esEs6(Nothing, Just(vxw4000), chf) -> False 22.49/8.84 new_esEs6(Just(vxw300), Nothing, chf) -> False 22.49/8.84 new_esEs30(vxw30, vxw400, ty_@0) -> new_esEs15(vxw30, vxw400) 22.49/8.84 new_compare8(vxw110, vxw100, app(app(ty_Either, eb), ec)) -> new_compare12(vxw110, vxw100, eb, ec) 22.49/8.84 new_esEs30(vxw30, vxw400, ty_Bool) -> new_esEs18(vxw30, vxw400) 22.49/8.84 new_esEs6(Nothing, Nothing, chf) -> True 22.49/8.84 new_ltEs21(vxw20, vxw19, app(ty_Maybe, ga)) -> new_ltEs17(vxw20, vxw19, ga) 22.49/8.84 new_compare114(vxw110, vxw100, False) -> GT 22.49/8.84 new_esEs22(vxw300, vxw4000, app(app(ty_Either, cba), cbb)) -> new_esEs5(vxw300, vxw4000, cba, cbb) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(ty_Maybe, bah)) -> new_ltEs17(vxw111, vxw101, bah) 22.49/8.84 new_esEs30(vxw30, vxw400, ty_Char) -> new_esEs17(vxw30, vxw400) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs5(vxw112, vxw102) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Int) -> new_compare16(vxw110, vxw100) 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs15(vxw11, vxw10) 22.49/8.84 new_ltEs11(vxw11, vxw10) -> new_not(new_esEs8(new_compare13(vxw11, vxw10), GT)) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.84 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, bfa), bfb), bfc)) -> new_ltEs9(vxw11, vxw10, bfa, bfb, bfc) 22.49/8.84 new_esEs19(vxw110, vxw100, app(app(ty_Either, bbf), bbg)) -> new_esEs5(vxw110, vxw100, bbf, bbg) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(app(app(ty_@3, baa), bab), bac)) -> new_ltEs9(vxw111, vxw101, baa, bab, bac) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_@2, bea), beb)) -> new_ltEs6(vxw110, vxw100, bea, beb) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_Either, ceh), cfa), bfe) -> new_ltEs10(vxw110, vxw100, ceh, cfa) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Int) -> new_ltEs15(vxw111, vxw101) 22.49/8.84 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Ratio, cfc), bfe) -> new_ltEs14(vxw110, vxw100, cfc) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Char) -> new_ltEs8(vxw111, vxw101) 22.49/8.84 new_lt19(vxw111, vxw101, app(app(ty_@2, ceb), cec)) -> new_lt18(vxw111, vxw101, ceb, cec) 22.49/8.84 new_lt10(vxw110, vxw100) -> new_esEs8(new_compare14(vxw110, vxw100), LT) 22.49/8.84 new_ltEs9(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), bfa, bfb, bfc) -> new_pePe(new_lt20(vxw110, vxw100, bfa), new_asAs(new_esEs24(vxw110, vxw100, bfa), new_pePe(new_lt19(vxw111, vxw101, bfb), new_asAs(new_esEs23(vxw111, vxw101, bfb), new_ltEs19(vxw112, vxw102, bfc))))) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs8(vxw11, vxw10) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(ty_Ratio, bgd)) -> new_esEs13(vxw302, vxw4002, bgd) 22.49/8.84 new_compare8(vxw110, vxw100, app(ty_[], ed)) -> new_compare0(vxw110, vxw100, ed) 22.49/8.84 new_ltEs10(Left(vxw110), Right(vxw100), bfd, bfe) -> True 22.49/8.84 new_esEs16(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.84 new_compare0([], :(vxw100, vxw101), cc) -> LT 22.49/8.84 new_asAs(True, vxw53) -> vxw53 22.49/8.84 new_compare113(vxw110, vxw100, True, bed, bee, bef) -> LT 22.49/8.84 new_esEs30(vxw30, vxw400, ty_Integer) -> new_esEs14(vxw30, vxw400) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_@0) -> new_esEs15(vxw302, vxw4002) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(ty_Maybe, caa)) -> new_esEs6(vxw301, vxw4001, caa) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, che) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Double) -> new_lt17(vxw111, vxw101) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs15(vxw112, vxw102) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Integer) -> new_compare7(vxw110, vxw100) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(ty_[], cbd)) -> new_esEs11(vxw300, vxw4000, cbd) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_@0, bfe) -> new_ltEs11(vxw110, vxw100) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.84 new_lt20(vxw110, vxw100, app(app(app(ty_@3, bed), bee), bef)) -> new_lt7(vxw110, vxw100, bed, bee, bef) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.84 new_lt5(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.84 new_esEs19(vxw110, vxw100, app(ty_Ratio, bca)) -> new_esEs13(vxw110, vxw100, bca) 22.49/8.84 new_ltEs20(vxw11, vxw10, app(app(ty_Either, bfd), bfe)) -> new_ltEs10(vxw11, vxw10, bfd, bfe) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(ty_@2, cgg), cgh)) -> new_ltEs6(vxw110, vxw100, cgg, cgh) 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_Float) -> new_ltEs5(vxw20, vxw19) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, cbe), cbf), cbg)) -> new_esEs4(vxw300, vxw4000, cbe, cbf, cbg) 22.49/8.84 new_esEs18(False, False) -> True 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Bool) -> new_esEs18(vxw302, vxw4002) 22.49/8.84 new_compare24(vxw110, vxw100, True, bce, bcf) -> EQ 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.84 new_esEs24(vxw110, vxw100, app(app(ty_@2, bce), bcf)) -> new_esEs7(vxw110, vxw100, bce, bcf) 22.49/8.84 new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) 22.49/8.84 new_esEs30(vxw30, vxw400, app(app(ty_@2, cd), ce)) -> new_esEs7(vxw30, vxw400, cd, ce) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Double, bfe) -> new_ltEs18(vxw110, vxw100) 22.49/8.84 new_lt11(vxw110, vxw100, ced) -> new_esEs8(new_compare0(vxw110, vxw100, ced), LT) 22.49/8.84 new_esEs29(vxw30, vxw400, app(app(ty_Either, chd), che)) -> new_esEs5(vxw30, vxw400, chd, che) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Integer, bfe) -> new_ltEs4(vxw110, vxw100) 22.49/8.84 new_primCompAux00(vxw73, EQ) -> vxw73 22.49/8.84 new_compare0([], [], cc) -> EQ 22.49/8.84 new_esEs30(vxw30, vxw400, ty_Float) -> new_esEs16(vxw30, vxw400) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Ordering) -> new_lt15(vxw111, vxw101) 22.49/8.84 new_ltEs16(GT, GT) -> True 22.49/8.84 new_esEs17(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, che) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_lt18(vxw110, vxw100, bce, bcf) -> new_esEs8(new_compare23(vxw110, vxw100, bce, bcf), LT) 22.49/8.84 new_primMulNat0(Zero, Zero) -> Zero 22.49/8.84 new_lt19(vxw111, vxw101, app(app(app(ty_@3, cdb), cdc), cdd)) -> new_lt7(vxw111, vxw101, cdb, cdc, cdd) 22.49/8.84 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.84 new_lt20(vxw110, vxw100, app(app(ty_@2, bce), bcf)) -> new_lt18(vxw110, vxw100, bce, bcf) 22.49/8.84 new_compare10(vxw110, vxw100, False) -> GT 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.84 new_lt14(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) 22.49/8.84 new_ltEs12(True, False) -> False 22.49/8.84 new_lt15(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) 22.49/8.84 new_esEs23(vxw111, vxw101, app(app(ty_@2, ceb), cec)) -> new_esEs7(vxw111, vxw101, ceb, cec) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs8(vxw112, vxw102) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(app(ty_Either, bge), bgf)) -> new_esEs5(vxw302, vxw4002, bge, bgf) 22.49/8.84 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, app(app(ty_Either, dfb), dfc)) -> new_esEs5(vxw300, vxw4000, dfb, dfc) 22.49/8.84 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Integer) -> new_esEs14(vxw302, vxw4002) 22.49/8.84 new_esEs30(vxw30, vxw400, app(ty_Ratio, cf)) -> new_esEs13(vxw30, vxw400, cf) 22.49/8.84 new_lt20(vxw110, vxw100, app(ty_Ratio, bec)) -> new_lt13(vxw110, vxw100, bec) 22.49/8.84 new_esEs24(vxw110, vxw100, app(ty_Ratio, bec)) -> new_esEs13(vxw110, vxw100, bec) 22.49/8.84 new_esEs13(:%(vxw300, vxw301), :%(vxw4000, vxw4001), chc) -> new_asAs(new_esEs26(vxw300, vxw4000, chc), new_esEs25(vxw301, vxw4001, chc)) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), chd, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_compare25(vxw110, vxw100, False, bcg) -> new_compare111(vxw110, vxw100, new_ltEs17(vxw110, vxw100, bcg), bcg) 22.49/8.84 new_ltEs5(vxw11, vxw10) -> new_not(new_esEs8(new_compare6(vxw11, vxw10), GT)) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(ty_[], dae)) -> new_esEs11(vxw301, vxw4001, dae) 22.49/8.84 new_esEs15(@0, @0) -> True 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_@2, dcc), dcd)) -> new_esEs7(vxw300, vxw4000, dcc, dcd) 22.49/8.84 new_ltEs12(False, False) -> True 22.49/8.84 new_compare11(vxw110, vxw100, bed, bee, bef) -> new_compare27(vxw110, vxw100, new_esEs4(vxw110, vxw100, bed, bee, bef), bed, bee, bef) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(ty_Ratio, cge)) -> new_ltEs14(vxw110, vxw100, cge) 22.49/8.84 new_lt19(vxw111, vxw101, app(ty_Ratio, cdh)) -> new_lt13(vxw111, vxw101, cdh) 22.49/8.84 new_esEs29(vxw30, vxw400, app(ty_Ratio, chc)) -> new_esEs13(vxw30, vxw400, chc) 22.49/8.84 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 22.49/8.84 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.84 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(app(ty_@2, dba), dbb)) -> new_esEs7(vxw300, vxw4000, dba, dbb) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.84 new_ltEs21(vxw20, vxw19, app(ty_Ratio, fh)) -> new_ltEs14(vxw20, vxw19, fh) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(ty_Maybe, bgg)) -> new_esEs6(vxw302, vxw4002, bgg) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.84 new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs9(vxw30, vxw400) 22.49/8.84 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 22.49/8.84 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 22.49/8.84 new_esEs19(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_esEs6(vxw110, vxw100, bcb) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Ordering, bfe) -> new_ltEs16(vxw110, vxw100) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) 22.49/8.84 new_lt7(vxw110, vxw100, bed, bee, bef) -> new_esEs8(new_compare11(vxw110, vxw100, bed, bee, bef), LT) 22.49/8.84 new_lt4(vxw110, vxw100) -> new_esEs8(new_compare6(vxw110, vxw100), LT) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(app(app(ty_@3, hd), he), hf)) -> new_esEs4(vxw300, vxw4000, hd, he, hf) 22.49/8.84 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.49/8.84 new_esEs21(vxw301, vxw4001, app(ty_[], cab)) -> new_esEs11(vxw301, vxw4001, cab) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.84 new_compare8(vxw110, vxw100, app(ty_Maybe, ef)) -> new_compare18(vxw110, vxw100, ef) 22.49/8.84 new_compare111(vxw110, vxw100, False, bcg) -> GT 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_Either, bdd), bde)) -> new_ltEs10(vxw110, vxw100, bdd, bde) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(ty_[], baf)) -> new_ltEs13(vxw111, vxw101, baf) 22.49/8.84 new_esEs30(vxw30, vxw400, app(ty_Maybe, db)) -> new_esEs6(vxw30, vxw400, db) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.84 new_lt19(vxw111, vxw101, app(ty_Maybe, cea)) -> new_lt16(vxw111, vxw101, cea) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_Char) -> new_ltEs8(vxw20, vxw19) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Double) -> new_esEs9(vxw302, vxw4002) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.84 new_compare112(vxw110, vxw100, False, beg, beh) -> GT 22.49/8.84 new_esEs19(vxw110, vxw100, app(app(ty_@2, bcc), bcd)) -> new_esEs7(vxw110, vxw100, bcc, bcd) 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_Integer) -> new_ltEs4(vxw20, vxw19) 22.49/8.84 new_ltEs20(vxw11, vxw10, app(ty_[], cc)) -> new_ltEs13(vxw11, vxw10, cc) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(vxw301, vxw4001, daf, dag, dah) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_@0) -> new_esEs15(vxw111, vxw101) 22.49/8.84 new_not(False) -> True 22.49/8.84 new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs16(vxw30, vxw400) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(ty_Ratio, dbc)) -> new_esEs13(vxw300, vxw4000, dbc) 22.49/8.84 new_compare8(vxw110, vxw100, app(ty_Ratio, ee)) -> new_compare15(vxw110, vxw100, ee) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_Bool) -> new_ltEs12(vxw20, vxw19) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_compare0(:(vxw110, vxw111), [], cc) -> GT 22.49/8.84 new_esEs8(LT, GT) -> False 22.49/8.84 new_esEs8(GT, LT) -> False 22.49/8.84 new_esEs18(False, True) -> False 22.49/8.84 new_esEs18(True, False) -> False 22.49/8.84 new_compare29(vxw110, vxw100, True) -> EQ 22.49/8.84 new_primPlusNat0(Succ(vxw6300), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6300, vxw4000000))) 22.49/8.84 new_esEs5(Left(vxw300), Right(vxw4000), chd, che) -> False 22.49/8.84 new_esEs5(Right(vxw300), Left(vxw4000), chd, che) -> False 22.49/8.84 new_compare12(vxw110, vxw100, beg, beh) -> new_compare28(vxw110, vxw100, new_esEs5(vxw110, vxw100, beg, beh), beg, beh) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Integer) -> new_esEs14(vxw111, vxw101) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.84 new_ltEs20(vxw11, vxw10, app(ty_Ratio, bff)) -> new_ltEs14(vxw11, vxw10, bff) 22.49/8.84 new_esEs29(vxw30, vxw400, app(app(ty_@2, cha), chb)) -> new_esEs7(vxw30, vxw400, cha, chb) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, che) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_esEs30(vxw30, vxw400, app(app(ty_Either, cg), da)) -> new_esEs5(vxw30, vxw400, cg, da) 22.49/8.84 new_lt9(vxw110, vxw100) -> new_esEs8(new_compare13(vxw110, vxw100), LT) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(app(ty_Either, ccc), ccd)) -> new_ltEs10(vxw112, vxw102, ccc, ccd) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.84 new_esEs29(vxw30, vxw400, app(ty_Maybe, chf)) -> new_esEs6(vxw30, vxw400, chf) 22.49/8.84 new_esEs10(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(ty_Ratio, ccf)) -> new_ltEs14(vxw112, vxw102, ccf) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.49/8.84 new_compare10(vxw110, vxw100, True) -> LT 22.49/8.84 new_lt20(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.84 new_compare0(:(vxw110, vxw111), :(vxw100, vxw101), cc) -> new_primCompAux0(vxw110, vxw100, new_compare0(vxw111, vxw101, cc), cc) 22.49/8.84 new_lt16(vxw110, vxw100, bcg) -> new_esEs8(new_compare18(vxw110, vxw100, bcg), LT) 22.49/8.84 new_compare111(vxw110, vxw100, True, bcg) -> LT 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, app(app(app(ty_@3, cfg), cfh), cga)) -> new_ltEs9(vxw110, vxw100, cfg, cfh, cga) 22.49/8.84 new_esEs19(vxw110, vxw100, app(ty_[], bbh)) -> new_esEs11(vxw110, vxw100, bbh) 22.49/8.84 new_esEs29(vxw30, vxw400, app(ty_[], gd)) -> new_esEs11(vxw30, vxw400, gd) 22.49/8.84 new_esEs25(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(ty_Maybe, dbf)) -> new_esEs6(vxw300, vxw4000, dbf) 22.49/8.84 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.49/8.84 new_lt5(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_lt16(vxw110, vxw100, bcb) 22.49/8.84 new_compare24(vxw110, vxw100, False, bce, bcf) -> new_compare110(vxw110, vxw100, new_ltEs6(vxw110, vxw100, bce, bcf), bce, bcf) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.84 new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) 22.49/8.84 new_ltEs6(@2(vxw110, vxw111), @2(vxw100, vxw101), hg, hh) -> new_pePe(new_lt5(vxw110, vxw100, hg), new_asAs(new_esEs19(vxw110, vxw100, hg), new_ltEs7(vxw111, vxw101, hh))) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(app(ty_@2, bhd), bhe)) -> new_esEs7(vxw301, vxw4001, bhd, bhe) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Char) -> new_compare9(vxw110, vxw100) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.84 new_compare8(vxw110, vxw100, app(app(ty_@2, eg), eh)) -> new_compare23(vxw110, vxw100, eg, eh) 22.49/8.84 new_esEs7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cha, chb) -> new_asAs(new_esEs28(vxw300, vxw4000, cha), new_esEs27(vxw301, vxw4001, chb)) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Char) -> new_lt6(vxw111, vxw101) 22.49/8.84 new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(ty_Maybe, dad)) -> new_esEs6(vxw301, vxw4001, dad) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_[], bdf)) -> new_ltEs13(vxw110, vxw100, bdf) 22.49/8.84 new_lt20(vxw110, vxw100, app(ty_Maybe, bcg)) -> new_lt16(vxw110, vxw100, bcg) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Bool) -> new_ltEs12(vxw111, vxw101) 22.49/8.84 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.49/8.84 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), bfd, ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.84 new_compare110(vxw110, vxw100, False, bce, bcf) -> GT 22.49/8.84 new_lt20(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.84 new_ltEs21(vxw20, vxw19, app(app(ty_Either, fd), ff)) -> new_ltEs10(vxw20, vxw19, fd, ff) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(app(ty_Either, dbd), dbe)) -> new_esEs5(vxw300, vxw4000, dbd, dbe) 22.49/8.84 new_primEqNat0(Zero, Zero) -> True 22.49/8.84 new_esEs11([], [], gd) -> True 22.49/8.84 new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 22.49/8.84 new_compare23(vxw110, vxw100, bce, bcf) -> new_compare24(vxw110, vxw100, new_esEs7(vxw110, vxw100, bce, bcf), bce, bcf) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_esEs30(vxw30, vxw400, app(ty_[], dc)) -> new_esEs11(vxw30, vxw400, dc) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, che) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_compare113(vxw110, vxw100, False, bed, bee, bef) -> GT 22.49/8.84 new_asAs(False, vxw53) -> False 22.49/8.84 new_ltEs13(vxw11, vxw10, cc) -> new_not(new_esEs8(new_compare0(vxw11, vxw10, cc), GT)) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, che) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_ltEs21(vxw20, vxw19, ty_Int) -> new_ltEs15(vxw20, vxw19) 22.49/8.84 new_compare28(vxw110, vxw100, True, beg, beh) -> EQ 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_esEs14(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 22.49/8.84 new_esEs8(EQ, GT) -> False 22.49/8.84 new_esEs8(GT, EQ) -> False 22.49/8.84 new_ltEs7(vxw111, vxw101, app(app(ty_Either, bad), bae)) -> new_ltEs10(vxw111, vxw101, bad, bae) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.84 new_lt12(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) 22.49/8.84 new_compare28(vxw110, vxw100, False, beg, beh) -> new_compare112(vxw110, vxw100, new_ltEs10(vxw110, vxw100, beg, beh), beg, beh) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], dec), che) -> new_esEs11(vxw300, vxw4000, dec) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(app(ty_@2, bgb), bgc)) -> new_esEs7(vxw302, vxw4002, bgb, bgc) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, che) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 22.49/8.84 The set Q consists of the following terms: 22.49/8.84 22.49/8.84 new_esEs12(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs29(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_compare17(x0, x1) 22.49/8.84 new_esEs8(EQ, EQ) 22.49/8.84 new_lt13(x0, x1, x2) 22.49/8.84 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_ltEs18(x0, x1) 22.49/8.84 new_compare28(x0, x1, False, x2, x3) 22.49/8.84 new_ltEs20(x0, x1, ty_Double) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.84 new_compare26(x0, x1, True) 22.49/8.84 new_lt20(x0, x1, ty_Char) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs28(x0, x1, ty_Float) 22.49/8.84 new_esEs19(x0, x1, ty_Double) 22.49/8.84 new_compare13(@0, @0) 22.49/8.84 new_lt5(x0, x1, ty_Float) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Double) 22.49/8.84 new_ltEs20(x0, x1, ty_Ordering) 22.49/8.84 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_esEs18(True, True) 22.49/8.84 new_esEs30(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.84 new_ltEs7(x0, x1, ty_@0) 22.49/8.84 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_primEqInt(Pos(Zero), Pos(Zero)) 22.49/8.84 new_esEs29(x0, x1, ty_Integer) 22.49/8.84 new_ltEs8(x0, x1) 22.49/8.84 new_ltEs7(x0, x1, ty_Char) 22.49/8.84 new_esEs30(x0, x1, ty_Int) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.49/8.84 new_lt19(x0, x1, ty_Double) 22.49/8.84 new_lt20(x0, x1, ty_Ordering) 22.49/8.84 new_esEs19(x0, x1, ty_Ordering) 22.49/8.84 new_primPlusNat0(Succ(x0), Zero) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.84 new_esEs28(x0, x1, app(ty_[], x2)) 22.49/8.84 new_primPlusNat0(Zero, Succ(x0)) 22.49/8.84 new_lt19(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Int) 22.49/8.84 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.84 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.84 new_esEs29(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.84 new_esEs29(x0, x1, ty_Float) 22.49/8.84 new_ltEs7(x0, x1, ty_Int) 22.49/8.84 new_lt20(x0, x1, ty_Int) 22.49/8.84 new_esEs22(x0, x1, ty_Float) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.84 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_asAs(False, x0) 22.49/8.84 new_lt5(x0, x1, app(ty_[], x2)) 22.49/8.84 new_primEqInt(Neg(Zero), Neg(Zero)) 22.49/8.84 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Char) 22.49/8.84 new_ltEs16(GT, EQ) 22.49/8.84 new_ltEs16(EQ, GT) 22.49/8.84 new_esEs19(x0, x1, ty_Int) 22.49/8.84 new_esEs30(x0, x1, ty_Char) 22.49/8.84 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs17(Nothing, Just(x0), x1) 22.49/8.84 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_lt19(x0, x1, ty_Int) 22.49/8.84 new_esEs30(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs21(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs27(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs30(x0, x1, ty_Bool) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.84 new_ltEs16(LT, LT) 22.49/8.84 new_lt20(x0, x1, ty_Double) 22.49/8.84 new_compare110(x0, x1, False, x2, x3) 22.49/8.84 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_lt20(x0, x1, ty_Bool) 22.49/8.84 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs21(x0, x1, ty_Double) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Int) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.84 new_ltEs7(x0, x1, ty_Integer) 22.49/8.84 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Char) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_@0) 22.49/8.84 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs30(x0, x1, ty_Integer) 22.49/8.84 new_primEqInt(Pos(Zero), Neg(Zero)) 22.49/8.84 new_primEqInt(Neg(Zero), Pos(Zero)) 22.49/8.84 new_compare24(x0, x1, True, x2, x3) 22.49/8.84 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_lt12(x0, x1) 22.49/8.84 new_esEs24(x0, x1, ty_Float) 22.49/8.84 new_compare12(x0, x1, x2, x3) 22.49/8.84 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs12(x0, x1, ty_Float) 22.49/8.84 new_ltEs7(x0, x1, ty_Bool) 22.49/8.84 new_compare25(x0, x1, True, x2) 22.49/8.84 new_primEqNat0(Succ(x0), Zero) 22.49/8.84 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs21(x0, x1, ty_Int) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.84 new_compare0([], :(x0, x1), x2) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.84 new_lt5(x0, x1, ty_@0) 22.49/8.84 new_esEs22(x0, x1, ty_Integer) 22.49/8.84 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.49/8.84 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_compare16(x0, x1) 22.49/8.84 new_esEs19(x0, x1, ty_@0) 22.49/8.84 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs28(x0, x1, ty_Bool) 22.49/8.84 new_ltEs20(x0, x1, ty_@0) 22.49/8.84 new_compare8(x0, x1, ty_Double) 22.49/8.84 new_lt20(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs15(@0, @0) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.49/8.84 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_compare8(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.84 new_primMulNat0(Succ(x0), Zero) 22.49/8.84 new_pePe(True, x0) 22.49/8.84 new_compare29(x0, x1, False) 22.49/8.84 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_lt10(x0, x1) 22.49/8.84 new_lt20(x0, x1, ty_Integer) 22.49/8.84 new_ltEs16(GT, GT) 22.49/8.84 new_ltEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_lt11(x0, x1, x2) 22.49/8.84 new_esEs12(x0, x1, ty_@0) 22.49/8.84 new_esEs21(x0, x1, ty_Double) 22.49/8.84 new_compare18(x0, x1, x2) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.84 new_lt9(x0, x1) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.84 new_esEs18(False, True) 22.49/8.84 new_esEs18(True, False) 22.49/8.84 new_compare27(x0, x1, True, x2, x3, x4) 22.49/8.84 new_ltEs16(LT, EQ) 22.49/8.84 new_ltEs16(EQ, LT) 22.49/8.84 new_ltEs7(x0, x1, ty_Float) 22.49/8.84 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs14(x0, x1, x2) 22.49/8.84 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_lt19(x0, x1, ty_Char) 22.49/8.84 new_esEs20(x0, x1, ty_Int) 22.49/8.84 new_esEs28(x0, x1, ty_Integer) 22.49/8.84 new_compare10(x0, x1, False) 22.49/8.84 new_lt5(x0, x1, ty_Bool) 22.49/8.84 new_ltEs19(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs19(x0, x1, ty_Integer) 22.49/8.84 new_esEs20(x0, x1, ty_Float) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.84 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.84 new_esEs29(x0, x1, ty_@0) 22.49/8.84 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs19(x0, x1, ty_Float) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_@0) 22.49/8.84 new_esEs8(GT, GT) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.84 new_esEs30(x0, x1, ty_Double) 22.49/8.84 new_esEs8(LT, EQ) 22.49/8.84 new_esEs8(EQ, LT) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Double) 22.49/8.84 new_compare114(x0, x1, False) 22.49/8.84 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.49/8.84 new_compare110(x0, x1, True, x2, x3) 22.49/8.84 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_lt20(x0, x1, ty_@0) 22.49/8.84 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.49/8.84 new_esEs27(x0, x1, ty_Double) 22.49/8.84 new_esEs27(x0, x1, ty_@0) 22.49/8.84 new_esEs23(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs11([], [], x0) 22.49/8.84 new_esEs8(LT, LT) 22.49/8.84 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.84 new_lt5(x0, x1, ty_Integer) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.84 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs24(x0, x1, ty_Ordering) 22.49/8.84 new_esEs29(x0, x1, ty_Double) 22.49/8.84 new_compare7(Integer(x0), Integer(x1)) 22.49/8.84 new_compare112(x0, x1, False, x2, x3) 22.49/8.84 new_ltEs19(x0, x1, ty_Int) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Float) 22.49/8.84 new_esEs24(x0, x1, ty_Integer) 22.49/8.84 new_lt19(x0, x1, ty_Integer) 22.49/8.84 new_esEs30(x0, x1, ty_@0) 22.49/8.84 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs24(x0, x1, ty_Bool) 22.49/8.84 new_esEs28(x0, x1, ty_Char) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.49/8.84 new_primMulInt(Pos(x0), Neg(x1)) 22.49/8.84 new_primMulInt(Neg(x0), Pos(x1)) 22.49/8.84 new_ltEs19(x0, x1, ty_Char) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.84 new_lt19(x0, x1, ty_Bool) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.84 new_esEs25(x0, x1, ty_Integer) 22.49/8.84 new_esEs22(x0, x1, ty_Bool) 22.49/8.84 new_ltEs17(Nothing, Nothing, x0) 22.49/8.84 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs10(Right(x0), Left(x1), x2, x3) 22.49/8.84 new_ltEs10(Left(x0), Right(x1), x2, x3) 22.49/8.84 new_esEs21(x0, x1, ty_@0) 22.49/8.84 new_lt16(x0, x1, x2) 22.49/8.84 new_esEs20(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.49/8.84 new_lt19(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_esEs22(x0, x1, ty_Char) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.84 new_primCompAux00(x0, GT) 22.49/8.84 new_compare111(x0, x1, True, x2) 22.49/8.84 new_ltEs17(Just(x0), Nothing, x1) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Double, x2) 22.49/8.84 new_lt4(x0, x1) 22.49/8.84 new_ltEs19(x0, x1, ty_Bool) 22.49/8.84 new_lt5(x0, x1, ty_Ordering) 22.49/8.84 new_esEs22(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs23(x0, x1, ty_Double) 22.49/8.84 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs27(x0, x1, ty_Char) 22.49/8.84 new_compare8(x0, x1, ty_@0) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.84 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_compare0(:(x0, x1), :(x2, x3), x4) 22.49/8.84 new_primEqNat0(Zero, Succ(x0)) 22.49/8.84 new_esEs28(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Char) 22.49/8.84 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.84 new_ltEs16(EQ, EQ) 22.49/8.84 new_esEs23(x0, x1, ty_Bool) 22.49/8.84 new_esEs11(:(x0, x1), [], x2) 22.49/8.84 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.49/8.84 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_ltEs20(x0, x1, ty_Float) 22.49/8.84 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Float) 22.49/8.84 new_compare113(x0, x1, False, x2, x3, x4) 22.49/8.84 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.49/8.84 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_@0, x2) 22.49/8.84 new_primMulNat0(Zero, Zero) 22.49/8.84 new_compare29(x0, x1, True) 22.49/8.84 new_pePe(False, x0) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.84 new_ltEs15(x0, x1) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.84 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_compare8(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.84 new_esEs22(x0, x1, ty_Int) 22.49/8.84 new_esEs19(x0, x1, ty_Float) 22.49/8.84 new_compare0([], [], x0) 22.49/8.84 new_esEs28(x0, x1, ty_Double) 22.49/8.84 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_primMulInt(Pos(x0), Pos(x1)) 22.49/8.84 new_esEs23(x0, x1, ty_@0) 22.49/8.84 new_lt5(x0, x1, ty_Double) 22.49/8.84 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_compare24(x0, x1, False, x2, x3) 22.49/8.84 new_primCmpNat0(Zero, Succ(x0)) 22.49/8.84 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.84 new_esEs6(Nothing, Just(x0), x1) 22.49/8.84 new_esEs22(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs19(x0, x1, ty_@0) 22.49/8.84 new_esEs20(x0, x1, ty_Integer) 22.49/8.84 new_esEs24(x0, x1, ty_@0) 22.49/8.84 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs24(x0, x1, ty_Char) 22.49/8.84 new_esEs25(x0, x1, ty_Int) 22.49/8.84 new_primMulNat0(Succ(x0), Succ(x1)) 22.49/8.84 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 22.49/8.84 new_esEs21(x0, x1, ty_Char) 22.49/8.84 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs28(x0, x1, ty_Int) 22.49/8.84 new_esEs23(x0, x1, ty_Integer) 22.49/8.84 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_compare14(x0, x1) 22.49/8.84 new_esEs30(x0, x1, app(ty_[], x2)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Int) 22.49/8.84 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.49/8.84 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Double) 22.49/8.84 new_compare25(x0, x1, False, x2) 22.49/8.84 new_esEs20(x0, x1, ty_@0) 22.49/8.84 new_esEs12(x0, x1, ty_Double) 22.49/8.84 new_primMulInt(Neg(x0), Neg(x1)) 22.49/8.84 new_compare8(x0, x1, ty_Integer) 22.49/8.84 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.49/8.84 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.49/8.84 new_esEs9(Double(x0, x1), Double(x2, x3)) 22.49/8.84 new_esEs21(x0, x1, ty_Bool) 22.49/8.84 new_sr0(x0, x1) 22.49/8.84 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.49/8.84 new_primPlusNat0(Succ(x0), Succ(x1)) 22.49/8.84 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.84 new_lt8(x0, x1, x2, x3) 22.49/8.84 new_primPlusNat0(Zero, Zero) 22.49/8.84 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.49/8.84 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.49/8.84 new_esEs12(x0, x1, ty_Int) 22.49/8.84 new_ltEs21(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs20(x0, x1, app(ty_[], x2)) 22.49/8.84 new_not(True) 22.49/8.84 new_lt17(x0, x1) 22.49/8.84 new_esEs29(x0, x1, ty_Ordering) 22.49/8.84 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs24(x0, x1, ty_Int) 22.49/8.84 new_ltEs12(True, True) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.84 new_ltEs21(x0, x1, ty_Bool) 22.49/8.84 new_esEs8(EQ, GT) 22.49/8.84 new_esEs8(GT, EQ) 22.49/8.84 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs5(x0, x1) 22.49/8.84 new_compare8(x0, x1, ty_Char) 22.49/8.84 new_esEs12(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.84 new_lt15(x0, x1) 22.49/8.84 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Bool) 22.49/8.84 new_ltEs20(x0, x1, ty_Integer) 22.49/8.84 new_ltEs13(x0, x1, x2) 22.49/8.84 new_ltEs21(x0, x1, ty_Float) 22.49/8.84 new_esEs20(x0, x1, ty_Char) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.49/8.84 new_lt5(x0, x1, ty_Char) 22.49/8.84 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 22.49/8.84 new_compare8(x0, x1, ty_Int) 22.49/8.84 new_ltEs12(False, True) 22.49/8.84 new_ltEs12(True, False) 22.49/8.84 new_esEs18(False, False) 22.49/8.84 new_lt19(x0, x1, ty_Float) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.84 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_primCmpNat0(Succ(x0), Succ(x1)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs29(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.84 new_asAs(True, x0) 22.49/8.84 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.84 new_ltEs16(LT, GT) 22.49/8.84 new_ltEs16(GT, LT) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Float) 22.49/8.84 new_esEs21(x0, x1, ty_Ordering) 22.49/8.84 new_esEs27(x0, x1, ty_Ordering) 22.49/8.84 new_compare8(x0, x1, ty_Bool) 22.49/8.84 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.49/8.84 new_lt19(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs21(x0, x1, ty_Integer) 22.49/8.84 new_esEs11(:(x0, x1), :(x2, x3), x4) 22.49/8.84 new_lt5(x0, x1, ty_Int) 22.49/8.84 new_ltEs21(x0, x1, ty_@0) 22.49/8.84 new_ltEs11(x0, x1) 22.49/8.84 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_esEs11([], :(x0, x1), x2) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.84 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs20(x0, x1, ty_Bool) 22.49/8.84 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.49/8.84 new_compare8(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs26(x0, x1, ty_Int) 22.49/8.84 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs21(x0, x1, app(ty_[], x2)) 22.49/8.84 new_compare28(x0, x1, True, x2, x3) 22.49/8.84 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.84 new_esEs20(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Integer) 22.49/8.84 new_compare26(x0, x1, False) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.84 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs23(x0, x1, ty_Float) 22.49/8.84 new_primCmpNat0(Succ(x0), Zero) 22.49/8.84 new_esEs5(Left(x0), Right(x1), x2, x3) 22.49/8.84 new_esEs5(Right(x0), Left(x1), x2, x3) 22.49/8.84 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.84 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.84 new_esEs20(x0, x1, ty_Double) 22.49/8.84 new_ltEs21(x0, x1, ty_Char) 22.49/8.84 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.84 new_esEs19(x0, x1, ty_Bool) 22.49/8.84 new_esEs27(x0, x1, ty_Integer) 22.49/8.84 new_esEs26(x0, x1, ty_Integer) 22.49/8.84 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.84 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.84 new_esEs29(x0, x1, ty_Char) 22.49/8.84 new_esEs8(LT, GT) 22.49/8.84 new_esEs8(GT, LT) 22.49/8.84 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 22.49/8.84 new_ltEs20(x0, x1, ty_Bool) 22.49/8.84 new_esEs14(Integer(x0), Integer(x1)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.84 new_esEs23(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs7(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs12(x0, x1, ty_Bool) 22.49/8.84 new_sr(Integer(x0), Integer(x1)) 22.49/8.84 new_ltEs7(x0, x1, ty_Double) 22.49/8.84 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.84 new_esEs24(x0, x1, ty_Double) 22.49/8.84 new_esEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_primPlusNat1(Succ(x0), x1) 22.49/8.84 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs17(Char(x0), Char(x1)) 22.49/8.84 new_esEs29(x0, x1, ty_Int) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Float, x2) 22.49/8.84 new_lt14(x0, x1) 22.49/8.84 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_lt19(x0, x1, ty_@0) 22.49/8.84 new_esEs24(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs16(Float(x0, x1), Float(x2, x3)) 22.49/8.84 new_compare8(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_lt19(x0, x1, app(ty_[], x2)) 22.49/8.84 new_lt6(x0, x1) 22.49/8.84 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.84 new_esEs6(Nothing, Nothing, x0) 22.49/8.84 new_ltEs7(x0, x1, ty_Ordering) 22.49/8.84 new_esEs28(x0, x1, ty_@0) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.49/8.84 new_compare112(x0, x1, True, x2, x3) 22.49/8.84 new_esEs12(x0, x1, ty_Char) 22.49/8.84 new_compare113(x0, x1, True, x2, x3, x4) 22.49/8.84 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_compare111(x0, x1, False, x2) 22.49/8.84 new_compare11(x0, x1, x2, x3, x4) 22.49/8.84 new_compare8(x0, x1, ty_Float) 22.49/8.84 new_primEqNat0(Succ(x0), Succ(x1)) 22.49/8.84 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_primEqNat0(Zero, Zero) 22.49/8.84 new_esEs10(x0, x1) 22.49/8.84 new_ltEs20(x0, x1, ty_Char) 22.49/8.84 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_@0) 22.49/8.84 new_esEs30(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs21(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs19(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs27(x0, x1, ty_Float) 22.49/8.84 new_not(False) 22.49/8.84 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_primCompAux00(x0, LT) 22.49/8.84 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.49/8.84 new_ltEs4(x0, x1) 22.49/8.84 new_esEs12(x0, x1, ty_Integer) 22.49/8.84 new_esEs27(x0, x1, ty_Bool) 22.49/8.84 new_esEs30(x0, x1, ty_Float) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Int, x2) 22.49/8.84 new_esEs19(x0, x1, ty_Char) 22.49/8.84 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.49/8.84 new_lt7(x0, x1, x2, x3, x4) 22.49/8.84 new_ltEs12(False, False) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.49/8.84 new_esEs22(x0, x1, ty_@0) 22.49/8.84 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_primCompAux00(x0, EQ) 22.49/8.84 new_lt20(x0, x1, ty_Float) 22.49/8.84 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.49/8.84 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs21(x0, x1, ty_Int) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.84 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_compare9(Char(x0), Char(x1)) 22.49/8.84 new_esEs12(x0, x1, ty_Ordering) 22.49/8.84 new_esEs19(x0, x1, ty_Integer) 22.49/8.84 new_esEs12(x0, x1, app(ty_[], x2)) 22.49/8.84 new_ltEs21(x0, x1, ty_Integer) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.84 new_ltEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_primMulNat0(Zero, Succ(x0)) 22.49/8.84 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_compare114(x0, x1, True) 22.49/8.84 new_compare10(x0, x1, True) 22.49/8.84 new_esEs6(Just(x0), Nothing, x1) 22.49/8.84 new_ltEs19(x0, x1, ty_Double) 22.49/8.84 new_ltEs21(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.49/8.84 new_compare27(x0, x1, False, x2, x3, x4) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.49/8.84 new_esEs19(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs23(x0, x1, ty_Int) 22.49/8.84 new_ltEs20(x0, x1, ty_Int) 22.49/8.84 new_primCompAux0(x0, x1, x2, x3) 22.49/8.84 new_compare0(:(x0, x1), [], x2) 22.49/8.84 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_primPlusNat1(Zero, x0) 22.49/8.84 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.84 new_lt18(x0, x1, x2, x3) 22.49/8.84 new_esEs22(x0, x1, ty_Double) 22.49/8.84 new_esEs27(x0, x1, ty_Int) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs29(x0, x1, ty_Bool) 22.49/8.84 new_primCmpNat0(Zero, Zero) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.84 new_esEs23(x0, x1, ty_Char) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Char, x2) 22.49/8.84 new_compare23(x0, x1, x2, x3) 22.49/8.84 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.49/8.84 new_esEs21(x0, x1, ty_Float) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.84 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.84 22.49/8.84 We have to consider all minimal (P,Q,R)-chains. 22.49/8.84 ---------------------------------------- 22.49/8.84 22.49/8.84 (28) QDPSizeChangeProof (EQUIVALENT) 22.49/8.84 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. 22.49/8.84 22.49/8.84 From the DPs we obtained the following set of size-change graphs: 22.49/8.84 *new_insertBy0(vxw10, vxw11, vxw12, False, ba, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, ba), ba, bb) 22.49/8.84 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 5 >= 5, 6 >= 6 22.49/8.84 22.49/8.84 22.49/8.84 *new_insertBy00(vxw28, vxw29, vxw30, False, bc, bd) -> new_insertBy(Left(vxw29), vxw30, bc, bd) 22.49/8.84 The graph contains the following edges 3 >= 2, 5 >= 3, 6 >= 4 22.49/8.84 22.49/8.84 22.49/8.84 *new_insertBy(Left(vxw30), :(Left(vxw400), vxw41), be, bf) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, be), be, bf) 22.49/8.84 The graph contains the following edges 2 > 1, 1 > 2, 2 > 3, 3 >= 5, 4 >= 6 22.49/8.84 22.49/8.84 22.49/8.84 ---------------------------------------- 22.49/8.84 22.49/8.84 (29) 22.49/8.84 YES 22.49/8.84 22.49/8.84 ---------------------------------------- 22.49/8.84 22.49/8.84 (30) 22.49/8.84 Obligation: 22.49/8.84 Q DP problem: 22.49/8.84 The TRS P consists of the following rules: 22.49/8.84 22.49/8.84 new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) 22.49/8.84 22.49/8.84 R is empty. 22.49/8.84 Q is empty. 22.49/8.84 We have to consider all minimal (P,Q,R)-chains. 22.49/8.84 ---------------------------------------- 22.49/8.84 22.49/8.84 (31) QDPSizeChangeProof (EQUIVALENT) 22.49/8.84 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. 22.49/8.84 22.49/8.84 From the DPs we obtained the following set of size-change graphs: 22.49/8.84 *new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) 22.49/8.84 The graph contains the following edges 1 > 1, 2 >= 2 22.49/8.84 22.49/8.84 22.49/8.84 ---------------------------------------- 22.49/8.84 22.49/8.84 (32) 22.49/8.84 YES 22.49/8.84 22.49/8.84 ---------------------------------------- 22.49/8.84 22.49/8.84 (33) 22.49/8.84 Obligation: 22.49/8.84 Q DP problem: 22.49/8.84 The TRS P consists of the following rules: 22.49/8.84 22.49/8.84 new_primCompAux(vxw110, vxw100, vxw62, app(ty_Maybe, bad)) -> new_compare4(vxw110, vxw100, bad) 22.49/8.84 new_ltEs2(Just(vxw110), Just(vxw100), app(ty_[], bbd)) -> new_ltEs1(vxw110, vxw100, bbd) 22.49/8.84 new_ltEs0(Left(vxw110), Left(vxw100), app(ty_Maybe, fh), fc) -> new_ltEs2(vxw110, vxw100, fh) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.84 new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, bbf), bbg)) -> new_ltEs3(vxw110, vxw100, bbf, bbg) 22.49/8.84 new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_@2, ga), gb), fc) -> new_ltEs3(vxw110, vxw100, ga, gb) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(app(ty_Either, bcd), bce)) -> new_ltEs0(vxw111, vxw101, bcd, bce) 22.49/8.84 new_lt2(vxw110, vxw100, ee) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee), ee) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, eb), ec), bb, cg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.84 new_lt3(vxw110, vxw100, ef, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], ed), bb, cg) -> new_compare(vxw110, vxw100, ed) 22.49/8.84 new_ltEs0(Left(vxw110), Left(vxw100), app(ty_[], fg), fc) -> new_ltEs1(vxw110, vxw100, fg) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(ty_[], dc), cg) -> new_lt1(vxw111, vxw101, dc) 22.49/8.84 new_ltEs0(Right(vxw110), Right(vxw100), gc, app(app(ty_Either, gg), gh)) -> new_ltEs0(vxw110, vxw100, gg, gh) 22.49/8.84 new_compare1(vxw110, vxw100, dg, dh, ea) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, bdf), bdg), bde) -> new_lt0(vxw110, vxw100, bdf, bdg) 22.49/8.84 new_compare22(vxw110, vxw100, False, ef, eg) -> new_ltEs3(vxw110, vxw100, ef, eg) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, ee), bb, cg) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee), ee) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(app(ty_@2, de), df), cg) -> new_lt3(vxw111, vxw101, de, df) 22.49/8.84 new_ltEs0(Right(vxw110), Right(vxw100), gc, app(ty_Maybe, hb)) -> new_ltEs2(vxw110, vxw100, hb) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(app(ty_@2, bch), bda)) -> new_ltEs3(vxw111, vxw101, bch, bda) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(ty_[], bh)) -> new_ltEs1(vxw112, vxw102, bh) 22.49/8.84 new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_Either, fd), ff), fc) -> new_ltEs0(vxw110, vxw100, fd, ff) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(app(ty_@2, cb), cc)) -> new_ltEs3(vxw112, vxw102, cb, cc) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, ef), eg), bb, cg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, beb), bec), bde) -> new_lt3(vxw110, vxw100, beb, bec) 22.49/8.84 new_compare(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, he), he) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(ty_Maybe, bcg)) -> new_ltEs2(vxw111, vxw101, bcg) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(app(ty_Either, da), db), cg) -> new_lt0(vxw111, vxw101, da, db) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, bdb), bdc), bdd), bde) -> new_lt(vxw110, vxw100, bdb, bdc, bdd) 22.49/8.84 new_compare2(vxw110, vxw100, False, dg, dh, ea) -> new_ltEs(vxw110, vxw100, dg, dh, ea) 22.49/8.84 new_compare3(vxw110, vxw100, eb, ec) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(app(ty_Either, bf), bg)) -> new_ltEs0(vxw112, vxw102, bf, bg) 22.49/8.84 new_lt(vxw110, vxw100, dg, dh, ea) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.84 new_primCompAux(vxw110, vxw100, vxw62, app(app(ty_@2, bae), baf)) -> new_compare5(vxw110, vxw100, bae, baf) 22.49/8.84 new_compare5(vxw110, vxw100, ef, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.84 new_primCompAux(vxw110, vxw100, vxw62, app(ty_[], bac)) -> new_compare(vxw110, vxw100, bac) 22.49/8.84 new_ltEs0(Left(vxw110), Left(vxw100), app(app(app(ty_@3, eh), fa), fb), fc) -> new_ltEs(vxw110, vxw100, eh, fa, fb) 22.49/8.84 new_ltEs0(Right(vxw110), Right(vxw100), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs(vxw110, vxw100, gd, ge, gf) 22.49/8.84 new_compare4(vxw110, vxw100, ee) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee), ee) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], bdh), bde) -> new_lt1(vxw110, vxw100, bdh) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_lt(vxw111, vxw101, cd, ce, cf) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, bea), bde) -> new_lt2(vxw110, vxw100, bea) 22.49/8.84 new_ltEs2(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs(vxw110, vxw100, bag, bah, bba) 22.49/8.84 new_compare(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_compare(vxw111, vxw101, he) 22.49/8.84 new_ltEs0(Right(vxw110), Right(vxw100), gc, app(app(ty_@2, hc), hd)) -> new_ltEs3(vxw110, vxw100, hc, hd) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vxw111, vxw101, bca, bcb, bcc) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_ltEs(vxw112, vxw102, bc, bd, be) 22.49/8.84 new_ltEs1(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, he), he) 22.49/8.84 new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_Either, bbb), bbc)) -> new_ltEs0(vxw110, vxw100, bbb, bbc) 22.49/8.84 new_primCompAux(vxw110, vxw100, vxw62, app(app(ty_Either, baa), bab)) -> new_compare3(vxw110, vxw100, baa, bab) 22.49/8.84 new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(ty_[], bcf)) -> new_ltEs1(vxw111, vxw101, bcf) 22.49/8.84 new_ltEs0(Right(vxw110), Right(vxw100), gc, app(ty_[], ha)) -> new_ltEs1(vxw110, vxw100, ha) 22.49/8.84 new_ltEs1(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_compare(vxw111, vxw101, he) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(ty_Maybe, ca)) -> new_ltEs2(vxw112, vxw102, ca) 22.49/8.84 new_lt1(vxw110, vxw100, ed) -> new_compare(vxw110, vxw100, ed) 22.49/8.84 new_ltEs2(Just(vxw110), Just(vxw100), app(ty_Maybe, bbe)) -> new_ltEs2(vxw110, vxw100, bbe) 22.49/8.84 new_primCompAux(vxw110, vxw100, vxw62, app(app(app(ty_@3, hf), hg), hh)) -> new_compare1(vxw110, vxw100, hf, hg, hh) 22.49/8.84 new_compare20(vxw110, vxw100, False, eb, ec) -> new_ltEs0(vxw110, vxw100, eb, ec) 22.49/8.84 new_lt0(vxw110, vxw100, eb, ec) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.84 new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(ty_Maybe, dd), cg) -> new_lt2(vxw111, vxw101, dd) 22.49/8.84 new_compare21(vxw110, vxw100, False, ee) -> new_ltEs2(vxw110, vxw100, ee) 22.49/8.84 22.49/8.84 The TRS R consists of the following rules: 22.49/8.84 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Integer) -> new_ltEs4(vxw111, vxw101) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_esEs9(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(ty_Ratio, cdg)) -> new_esEs13(vxw301, vxw4001, cdg) 22.49/8.84 new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT 22.49/8.84 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 22.49/8.84 new_primPlusNat0(Zero, Zero) -> Zero 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_[], fg), fc) -> new_ltEs13(vxw110, vxw100, fg) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, app(ty_Ratio, dbc)) -> new_esEs13(vxw300, vxw4000, dbc) 22.49/8.84 new_pePe(True, vxw61) -> True 22.49/8.84 new_esEs23(vxw111, vxw101, app(ty_Maybe, dd)) -> new_esEs6(vxw111, vxw101, dd) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, chg) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Double) -> new_ltEs18(vxw112, vxw102) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Int) -> new_lt14(vxw111, vxw101) 22.49/8.84 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, app(ty_[], ha)) -> new_ltEs13(vxw110, vxw100, ha) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, app(ty_Maybe, hb)) -> new_ltEs17(vxw110, vxw100, hb) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, dae), daf), dag), chg) -> new_esEs4(vxw300, vxw4000, dae, daf, dag) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Char) -> new_esEs17(vxw111, vxw101) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Float) -> new_compare6(vxw110, vxw100) 22.49/8.84 new_esEs18(True, True) -> True 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, chh), chg) -> new_esEs13(vxw300, vxw4000, chh) 22.49/8.84 new_esEs24(vxw110, vxw100, app(ty_[], ed)) -> new_esEs11(vxw110, vxw100, ed) 22.49/8.84 new_compare14(vxw110, vxw100) -> new_compare26(vxw110, vxw100, new_esEs18(vxw110, vxw100)) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 22.49/8.84 new_esEs27(vxw301, vxw4001, app(app(ty_Either, cdh), cea)) -> new_esEs5(vxw301, vxw4001, cdh, cea) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Bool) -> new_compare14(vxw110, vxw100) 22.49/8.84 new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_@0) -> new_ltEs11(vxw111, vxw101) 22.49/8.84 new_compare16(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_@0) -> new_ltEs11(vxw112, vxw102) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Maybe, fh), fc) -> new_ltEs17(vxw110, vxw100, fh) 22.49/8.84 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_Either, cgf), cgg)) -> new_esEs5(vxw300, vxw4000, cgf, cgg) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Double) -> new_compare19(vxw110, vxw100) 22.49/8.84 new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare16(vxw11, vxw10), GT)) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(app(app(ty_@3, cff), cfg), cfh)) -> new_esEs4(vxw300, vxw4000, cff, cfg, cfh) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Double) -> new_esEs9(vxw111, vxw101) 22.49/8.84 new_compare29(vxw110, vxw100, False) -> new_compare114(vxw110, vxw100, new_ltEs16(vxw110, vxw100)) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.84 new_esEs23(vxw111, vxw101, app(app(ty_Either, da), db)) -> new_esEs5(vxw111, vxw101, da, db) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.84 new_compare26(vxw110, vxw100, True) -> EQ 22.49/8.84 new_esEs8(GT, GT) -> True 22.49/8.84 new_ltEs14(vxw11, vxw10, cga) -> new_not(new_esEs8(new_compare15(vxw11, vxw10, cga), GT)) 22.49/8.84 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 22.49/8.84 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Integer) -> new_ltEs4(vxw112, vxw102) 22.49/8.84 new_lt5(vxw110, vxw100, app(ty_Ratio, bga)) -> new_lt13(vxw110, vxw100, bga) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(app(ty_@2, cb), cc)) -> new_ltEs6(vxw112, vxw102, cb, cc) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_lt17(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(ty_[], cfe)) -> new_esEs11(vxw300, vxw4000, cfe) 22.49/8.84 new_esEs8(EQ, EQ) -> True 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Bool) -> new_esEs18(vxw111, vxw101) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, dac), chg) -> new_esEs6(vxw300, vxw4000, dac) 22.49/8.84 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.84 new_lt5(vxw110, vxw100, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_lt7(vxw110, vxw100, bdb, bdc, bdd) 22.49/8.84 new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(ty_Ratio, cbf)) -> new_esEs13(vxw300, vxw4000, cbf) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Int, fc) -> new_ltEs15(vxw110, vxw100) 22.49/8.84 new_compare18(vxw110, vxw100, ee) -> new_compare25(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee), ee) 22.49/8.84 new_compare17(vxw110, vxw100) -> new_compare29(vxw110, vxw100, new_esEs8(vxw110, vxw100)) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(app(ty_Either, bfa), bfb)) -> new_esEs5(vxw300, vxw4000, bfa, bfb) 22.49/8.84 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_not(True) -> False 22.49/8.84 new_lt5(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Ordering) -> new_compare17(vxw110, vxw100) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_primCompAux00(vxw73, LT) -> LT 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_primCmpNat0(Zero, Zero) -> EQ 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Ordering) -> new_ltEs16(vxw111, vxw101) 22.49/8.84 new_lt13(vxw110, vxw100, bgd) -> new_esEs8(new_compare15(vxw110, vxw100, bgd), LT) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_lt19(vxw111, vxw101, app(app(ty_Either, da), db)) -> new_lt8(vxw111, vxw101, da, db) 22.49/8.84 new_esEs23(vxw111, vxw101, app(ty_Ratio, ccg)) -> new_esEs13(vxw111, vxw101, ccg) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.84 new_ltEs16(GT, EQ) -> False 22.49/8.84 new_esEs20(vxw302, vxw4002, app(ty_[], bhf)) -> new_esEs11(vxw302, vxw4002, bhf) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.84 new_compare26(vxw110, vxw100, False) -> new_compare10(vxw110, vxw100, new_ltEs12(vxw110, vxw100)) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Ratio, bgc)) -> new_ltEs14(vxw110, vxw100, bgc) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.84 new_compare9(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, che), chf), chg) -> new_esEs7(vxw300, vxw4000, che, chf) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Bool) -> new_ltEs12(vxw112, vxw102) 22.49/8.84 new_primEqNat0(Succ(vxw3000), Zero) -> False 22.49/8.84 new_primEqNat0(Zero, Succ(vxw40000)) -> False 22.49/8.84 new_compare8(vxw110, vxw100, ty_@0) -> new_compare13(vxw110, vxw100) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Float) -> new_lt4(vxw111, vxw101) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Integer) -> new_lt12(vxw111, vxw101) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(app(ty_@2, cbd), cbe)) -> new_esEs7(vxw300, vxw4000, cbd, cbe) 22.49/8.84 new_primCompAux00(vxw73, GT) -> GT 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Ratio, cge)) -> new_esEs13(vxw300, vxw4000, cge) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Int) -> new_esEs10(vxw111, vxw101) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Float, fc) -> new_ltEs5(vxw110, vxw100) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(ty_Ratio, bfh)) -> new_ltEs14(vxw111, vxw101, bfh) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, chg) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(app(ty_@2, bch), bda)) -> new_ltEs6(vxw111, vxw101, bch, bda) 22.49/8.84 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare16(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) 22.49/8.84 new_esEs24(vxw110, vxw100, app(app(app(ty_@3, dg), dh), ea)) -> new_esEs4(vxw110, vxw100, dg, dh, ea) 22.49/8.84 new_esEs23(vxw111, vxw101, app(app(app(ty_@3, cd), ce), cf)) -> new_esEs4(vxw111, vxw101, cd, ce, cf) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(app(app(ty_@3, eh), fa), fb), fc) -> new_ltEs9(vxw110, vxw100, eh, fa, fb) 22.49/8.84 new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_ltEs10(Right(vxw110), Left(vxw100), gc, fc) -> False 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Double) -> new_ltEs18(vxw111, vxw101) 22.49/8.84 new_ltEs16(LT, LT) -> True 22.49/8.84 new_compare110(vxw110, vxw100, True, ef, eg) -> LT 22.49/8.84 new_lt20(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_ltEs18(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) 22.49/8.84 new_lt20(vxw110, vxw100, app(app(ty_Either, eb), ec)) -> new_lt8(vxw110, vxw100, eb, ec) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(ty_Ratio, beh)) -> new_esEs13(vxw300, vxw4000, beh) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 22.49/8.84 new_compare27(vxw110, vxw100, False, dg, dh, ea) -> new_compare113(vxw110, vxw100, new_ltEs9(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.84 new_lt5(vxw110, vxw100, app(app(ty_@2, beb), bec)) -> new_lt18(vxw110, vxw100, beb, bec) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs9(vxw110, vxw100, bag, bah, bba) 22.49/8.84 new_lt5(vxw110, vxw100, app(app(ty_Either, bdf), bdg)) -> new_lt8(vxw110, vxw100, bdf, bdg) 22.49/8.84 new_primCmpNat0(Zero, Succ(vxw1000)) -> LT 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(ty_[], bh)) -> new_ltEs13(vxw112, vxw102, bh) 22.49/8.84 new_sr(Integer(vxw1100), Integer(vxw1010)) -> Integer(new_primMulInt(vxw1100, vxw1010)) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(app(ty_@2, cde), cdf)) -> new_esEs7(vxw301, vxw4001, cde, cdf) 22.49/8.84 new_primCmpNat0(Succ(vxw1100), Zero) -> GT 22.49/8.84 new_primCompAux0(vxw110, vxw100, vxw62, he) -> new_primCompAux00(vxw62, new_compare8(vxw110, vxw100, he)) 22.49/8.84 new_esEs19(vxw110, vxw100, app(app(app(ty_@3, bdb), bdc), bdd)) -> new_esEs4(vxw110, vxw100, bdb, bdc, bdd) 22.49/8.84 new_ltEs17(Nothing, Nothing, bgb) -> True 22.49/8.84 new_pePe(False, vxw61) -> vxw61 22.49/8.84 new_compare15(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare7(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) 22.49/8.84 new_ltEs17(Nothing, Just(vxw100), bgb) -> True 22.49/8.84 new_ltEs17(Just(vxw110), Nothing, bgb) -> False 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_[], cha)) -> new_esEs11(vxw300, vxw4000, cha) 22.49/8.84 new_esEs25(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.84 new_lt19(vxw111, vxw101, ty_@0) -> new_lt9(vxw111, vxw101) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs11(:(vxw300, vxw301), [], bee) -> False 22.49/8.84 new_esEs11([], :(vxw4000, vxw4001), bee) -> False 22.49/8.84 new_compare112(vxw110, vxw100, True, eb, ec) -> LT 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Int) -> new_esEs10(vxw302, vxw4002) 22.49/8.84 new_ltEs16(LT, GT) -> True 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_@2, ga), gb), fc) -> new_ltEs6(vxw110, vxw100, ga, gb) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Bool) -> new_lt10(vxw111, vxw101) 22.49/8.84 new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bge, bgf, bgg) -> new_asAs(new_esEs22(vxw300, vxw4000, bge), new_asAs(new_esEs21(vxw301, vxw4001, bgf), new_esEs20(vxw302, vxw4002, bgg))) 22.49/8.84 new_ltEs16(LT, EQ) -> True 22.49/8.84 new_ltEs16(EQ, LT) -> False 22.49/8.84 new_compare7(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) 22.49/8.84 new_lt20(vxw110, vxw100, app(ty_[], ed)) -> new_lt11(vxw110, vxw100, ed) 22.49/8.84 new_esEs8(LT, EQ) -> False 22.49/8.84 new_esEs8(EQ, LT) -> False 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(ty_Maybe, cca)) -> new_esEs6(vxw300, vxw4000, cca) 22.49/8.84 new_compare13(@0, @0) -> EQ 22.49/8.84 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.84 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 22.49/8.84 new_esEs12(vxw300, vxw4000, app(app(ty_@2, bef), beg)) -> new_esEs7(vxw300, vxw4000, bef, beg) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.84 new_lt8(vxw110, vxw100, eb, ec) -> new_esEs8(new_compare12(vxw110, vxw100, eb, ec), LT) 22.49/8.84 new_lt5(vxw110, vxw100, app(ty_[], bdh)) -> new_lt11(vxw110, vxw100, bdh) 22.49/8.84 new_esEs23(vxw111, vxw101, app(ty_[], dc)) -> new_esEs11(vxw111, vxw101, dc) 22.49/8.84 new_compare114(vxw110, vxw100, True) -> LT 22.49/8.84 new_ltEs16(GT, LT) -> False 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, chb), chc), chd)) -> new_esEs4(vxw300, vxw4000, chb, chc, chd) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, app(app(ty_@2, dba), dbb)) -> new_esEs7(vxw300, vxw4000, dba, dbb) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Char) -> new_esEs17(vxw302, vxw4002) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Float) -> new_ltEs5(vxw111, vxw101) 22.49/8.84 new_esEs24(vxw110, vxw100, app(app(ty_Either, eb), ec)) -> new_esEs5(vxw110, vxw100, eb, ec) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(ty_Maybe, ca)) -> new_ltEs17(vxw112, vxw102, ca) 22.49/8.84 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Float) -> new_esEs16(vxw302, vxw4002) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, app(app(ty_Either, gg), gh)) -> new_ltEs10(vxw110, vxw100, gg, gh) 22.49/8.84 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs11(:(vxw300, vxw301), :(vxw4000, vxw4001), bee) -> new_asAs(new_esEs12(vxw300, vxw4000, bee), new_esEs11(vxw301, vxw4001, bee)) 22.49/8.84 new_compare8(vxw110, vxw100, app(app(app(ty_@3, hf), hg), hh)) -> new_compare11(vxw110, vxw100, hf, hg, hh) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Char, fc) -> new_ltEs8(vxw110, vxw100) 22.49/8.84 new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare9(vxw11, vxw10), GT)) 22.49/8.84 new_esEs24(vxw110, vxw100, app(ty_Maybe, ee)) -> new_esEs6(vxw110, vxw100, ee) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(vxw300, vxw4000, dbh, dca, dcb) 22.49/8.84 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 22.49/8.84 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_primPlusNat1(Succ(vxw630), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw630, vxw400000))) 22.49/8.84 new_ltEs12(False, True) -> True 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, daa), dab), chg) -> new_esEs5(vxw300, vxw4000, daa, dab) 22.49/8.84 new_primPlusNat0(Succ(vxw6300), Zero) -> Succ(vxw6300) 22.49/8.84 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 22.49/8.84 new_compare27(vxw110, vxw100, True, dg, dh, ea) -> EQ 22.49/8.84 new_lt19(vxw111, vxw101, app(ty_[], dc)) -> new_lt11(vxw111, vxw101, dc) 22.49/8.84 new_ltEs16(EQ, GT) -> True 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, app(ty_Maybe, dbf)) -> new_esEs6(vxw300, vxw4000, dbf) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(app(ty_Either, cae), caf)) -> new_esEs5(vxw301, vxw4001, cae, caf) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, cba), cbb), cbc)) -> new_esEs4(vxw301, vxw4001, cba, cbb, cbc) 22.49/8.84 new_ltEs16(EQ, EQ) -> True 22.49/8.84 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Float) -> new_esEs16(vxw111, vxw101) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(ty_Maybe, bfc)) -> new_esEs6(vxw300, vxw4000, bfc) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.84 new_esEs8(LT, LT) -> True 22.49/8.84 new_esEs12(vxw300, vxw4000, app(ty_[], bfd)) -> new_esEs11(vxw300, vxw4000, bfd) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(app(app(ty_@3, bhg), bhh), caa)) -> new_esEs4(vxw302, vxw4002, bhg, bhh, caa) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(app(app(ty_@3, bc), bd), be)) -> new_ltEs9(vxw112, vxw102, bc, bd, be) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_Maybe, bbe)) -> new_ltEs17(vxw110, vxw100, bbe) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, app(ty_[], dbg)) -> new_esEs11(vxw300, vxw4000, dbg) 22.49/8.84 new_ltEs4(vxw11, vxw10) -> new_not(new_esEs8(new_compare7(vxw11, vxw10), GT)) 22.49/8.84 new_lt20(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_ltEs12(True, True) -> True 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.84 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) 22.49/8.84 new_compare25(vxw110, vxw100, True, ee) -> EQ 22.49/8.84 new_esEs21(vxw301, vxw4001, app(ty_Ratio, cad)) -> new_esEs13(vxw301, vxw4001, cad) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_Bool) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Bool, fc) -> new_ltEs12(vxw110, vxw100) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Maybe, cgh)) -> new_esEs6(vxw300, vxw4000, cgh) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Ordering) -> new_ltEs16(vxw112, vxw102) 22.49/8.84 new_lt6(vxw110, vxw100) -> new_esEs8(new_compare9(vxw110, vxw100), LT) 22.49/8.84 new_esEs6(Nothing, Just(vxw4000), cgb) -> False 22.49/8.84 new_esEs6(Just(vxw300), Nothing, cgb) -> False 22.49/8.84 new_compare8(vxw110, vxw100, app(app(ty_Either, baa), bab)) -> new_compare12(vxw110, vxw100, baa, bab) 22.49/8.84 new_esEs6(Nothing, Nothing, cgb) -> True 22.49/8.84 new_compare114(vxw110, vxw100, False) -> GT 22.49/8.84 new_esEs22(vxw300, vxw4000, app(app(ty_Either, cbg), cbh)) -> new_esEs5(vxw300, vxw4000, cbg, cbh) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(ty_Maybe, bcg)) -> new_ltEs17(vxw111, vxw101, bcg) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Float) -> new_ltEs5(vxw112, vxw102) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Int) -> new_compare16(vxw110, vxw100) 22.49/8.84 new_ltEs11(vxw11, vxw10) -> new_not(new_esEs8(new_compare13(vxw11, vxw10), GT)) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.84 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 22.49/8.84 new_esEs19(vxw110, vxw100, app(app(ty_Either, bdf), bdg)) -> new_esEs5(vxw110, vxw100, bdf, bdg) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs9(vxw111, vxw101, bca, bcb, bcc) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_@2, bbf), bbg)) -> new_ltEs6(vxw110, vxw100, bbf, bbg) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(app(ty_Either, fd), ff), fc) -> new_ltEs10(vxw110, vxw100, fd, ff) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Int) -> new_ltEs15(vxw111, vxw101) 22.49/8.84 new_compare19(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), app(ty_Ratio, cch), fc) -> new_ltEs14(vxw110, vxw100, cch) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs16(vxw110, vxw100) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Char) -> new_ltEs8(vxw111, vxw101) 22.49/8.84 new_lt19(vxw111, vxw101, app(app(ty_@2, de), df)) -> new_lt18(vxw111, vxw101, de, df) 22.49/8.84 new_lt10(vxw110, vxw100) -> new_esEs8(new_compare14(vxw110, vxw100), LT) 22.49/8.84 new_ltEs9(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, cg) -> new_pePe(new_lt20(vxw110, vxw100, ba), new_asAs(new_esEs24(vxw110, vxw100, ba), new_pePe(new_lt19(vxw111, vxw101, bb), new_asAs(new_esEs23(vxw111, vxw101, bb), new_ltEs19(vxw112, vxw102, cg))))) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Float) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(ty_Ratio, bhb)) -> new_esEs13(vxw302, vxw4002, bhb) 22.49/8.84 new_compare8(vxw110, vxw100, app(ty_[], bac)) -> new_compare0(vxw110, vxw100, bac) 22.49/8.84 new_ltEs10(Left(vxw110), Right(vxw100), gc, fc) -> True 22.49/8.84 new_esEs16(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs10(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.84 new_compare0([], :(vxw100, vxw101), he) -> LT 22.49/8.84 new_asAs(True, vxw53) -> vxw53 22.49/8.84 new_compare113(vxw110, vxw100, True, dg, dh, ea) -> LT 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_@0) -> new_esEs15(vxw302, vxw4002) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(ty_Maybe, cag)) -> new_esEs6(vxw301, vxw4001, cag) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, chg) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Double) -> new_lt17(vxw111, vxw101) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Int) -> new_ltEs15(vxw112, vxw102) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Integer) -> new_compare7(vxw110, vxw100) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(ty_[], ccb)) -> new_esEs11(vxw300, vxw4000, ccb) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_@0, fc) -> new_ltEs11(vxw110, vxw100) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Integer) -> new_lt12(vxw110, vxw100) 22.49/8.84 new_lt20(vxw110, vxw100, app(app(app(ty_@3, dg), dh), ea)) -> new_lt7(vxw110, vxw100, dg, dh, ea) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.84 new_lt5(vxw110, vxw100, ty_@0) -> new_lt9(vxw110, vxw100) 22.49/8.84 new_esEs19(vxw110, vxw100, app(ty_Ratio, bga)) -> new_esEs13(vxw110, vxw100, bga) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, app(app(ty_@2, hc), hd)) -> new_ltEs6(vxw110, vxw100, hc, hd) 22.49/8.84 new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs4(vxw300, vxw4000, ccc, ccd, cce) 22.49/8.84 new_esEs18(False, False) -> True 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Bool) -> new_esEs18(vxw302, vxw4002) 22.49/8.84 new_compare24(vxw110, vxw100, True, ef, eg) -> EQ 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.84 new_esEs24(vxw110, vxw100, app(app(ty_@2, ef), eg)) -> new_esEs7(vxw110, vxw100, ef, eg) 22.49/8.84 new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Double, fc) -> new_ltEs18(vxw110, vxw100) 22.49/8.84 new_lt11(vxw110, vxw100, ed) -> new_esEs8(new_compare0(vxw110, vxw100, ed), LT) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Integer, fc) -> new_ltEs4(vxw110, vxw100) 22.49/8.84 new_primCompAux00(vxw73, EQ) -> vxw73 22.49/8.84 new_compare0([], [], he) -> EQ 22.49/8.84 new_lt19(vxw111, vxw101, ty_Ordering) -> new_lt15(vxw111, vxw101) 22.49/8.84 new_ltEs16(GT, GT) -> True 22.49/8.84 new_esEs17(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, chg) -> new_esEs16(vxw300, vxw4000) 22.49/8.84 new_lt18(vxw110, vxw100, ef, eg) -> new_esEs8(new_compare23(vxw110, vxw100, ef, eg), LT) 22.49/8.84 new_primMulNat0(Zero, Zero) -> Zero 22.49/8.84 new_lt19(vxw111, vxw101, app(app(app(ty_@3, cd), ce), cf)) -> new_lt7(vxw111, vxw101, cd, ce, cf) 22.49/8.84 new_compare6(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Int) -> new_lt14(vxw110, vxw100) 22.49/8.84 new_lt20(vxw110, vxw100, app(app(ty_@2, ef), eg)) -> new_lt18(vxw110, vxw100, ef, eg) 22.49/8.84 new_compare10(vxw110, vxw100, False) -> GT 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs11(vxw110, vxw100) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs18(vxw301, vxw4001) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 22.49/8.84 new_lt14(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) 22.49/8.84 new_ltEs12(True, False) -> False 22.49/8.84 new_lt15(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) 22.49/8.84 new_esEs23(vxw111, vxw101, app(app(ty_@2, de), df)) -> new_esEs7(vxw111, vxw101, de, df) 22.49/8.84 new_ltEs19(vxw112, vxw102, ty_Char) -> new_ltEs8(vxw112, vxw102) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(app(ty_Either, bhc), bhd)) -> new_esEs5(vxw302, vxw4002, bhc, bhd) 22.49/8.84 new_compare6(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare16(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs18(vxw110, vxw100) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, app(app(ty_Either, dbd), dbe)) -> new_esEs5(vxw300, vxw4000, dbd, dbe) 22.49/8.84 new_compare19(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare16(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Float) -> new_esEs16(vxw110, vxw100) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Integer) -> new_esEs14(vxw302, vxw4002) 22.49/8.84 new_lt20(vxw110, vxw100, app(ty_Ratio, bgd)) -> new_lt13(vxw110, vxw100, bgd) 22.49/8.84 new_esEs24(vxw110, vxw100, app(ty_Ratio, bgd)) -> new_esEs13(vxw110, vxw100, bgd) 22.49/8.84 new_esEs13(:%(vxw300, vxw301), :%(vxw4000, vxw4001), cdb) -> new_asAs(new_esEs26(vxw300, vxw4000, cdb), new_esEs25(vxw301, vxw4001, cdb)) 22.49/8.84 new_esEs5(Right(vxw300), Right(vxw4000), dah, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_compare25(vxw110, vxw100, False, ee) -> new_compare111(vxw110, vxw100, new_ltEs17(vxw110, vxw100, ee), ee) 22.49/8.84 new_ltEs5(vxw11, vxw10) -> new_not(new_esEs8(new_compare6(vxw11, vxw10), GT)) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(ty_[], cec)) -> new_esEs11(vxw301, vxw4001, cec) 22.49/8.84 new_esEs15(@0, @0) -> True 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_@2, cgc), cgd)) -> new_esEs7(vxw300, vxw4000, cgc, cgd) 22.49/8.84 new_ltEs12(False, False) -> True 22.49/8.84 new_compare11(vxw110, vxw100, dg, dh, ea) -> new_compare27(vxw110, vxw100, new_esEs4(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, app(ty_Ratio, cda)) -> new_ltEs14(vxw110, vxw100, cda) 22.49/8.84 new_lt19(vxw111, vxw101, app(ty_Ratio, ccg)) -> new_lt13(vxw111, vxw101, ccg) 22.49/8.84 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 22.49/8.84 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 22.49/8.84 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(app(ty_@2, ceg), ceh)) -> new_esEs7(vxw300, vxw4000, ceg, ceh) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Float) -> new_lt4(vxw110, vxw100) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(ty_Maybe, bhe)) -> new_esEs6(vxw302, vxw4002, bhe) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs17(vxw301, vxw4001) 22.49/8.84 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 22.49/8.84 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 22.49/8.84 new_esEs19(vxw110, vxw100, app(ty_Maybe, bea)) -> new_esEs6(vxw110, vxw100, bea) 22.49/8.84 new_ltEs10(Left(vxw110), Left(vxw100), ty_Ordering, fc) -> new_ltEs16(vxw110, vxw100) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) 22.49/8.84 new_lt7(vxw110, vxw100, dg, dh, ea) -> new_esEs8(new_compare11(vxw110, vxw100, dg, dh, ea), LT) 22.49/8.84 new_lt4(vxw110, vxw100) -> new_esEs8(new_compare6(vxw110, vxw100), LT) 22.49/8.84 new_esEs12(vxw300, vxw4000, app(app(app(ty_@3, bfe), bff), bfg)) -> new_esEs4(vxw300, vxw4000, bfe, bff, bfg) 22.49/8.84 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 22.49/8.84 new_esEs21(vxw301, vxw4001, app(ty_[], cah)) -> new_esEs11(vxw301, vxw4001, cah) 22.49/8.84 new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt15(vxw110, vxw100) 22.49/8.84 new_compare8(vxw110, vxw100, app(ty_Maybe, bad)) -> new_compare18(vxw110, vxw100, bad) 22.49/8.84 new_compare111(vxw110, vxw100, False, ee) -> GT 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(app(ty_Either, bbb), bbc)) -> new_ltEs10(vxw110, vxw100, bbb, bbc) 22.49/8.84 new_ltEs7(vxw111, vxw101, app(ty_[], bcf)) -> new_ltEs13(vxw111, vxw101, bcf) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.84 new_lt19(vxw111, vxw101, app(ty_Maybe, dd)) -> new_lt16(vxw111, vxw101, dd) 22.49/8.84 new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs16(vxw301, vxw4001) 22.49/8.84 new_esEs20(vxw302, vxw4002, ty_Double) -> new_esEs9(vxw302, vxw4002) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 22.49/8.84 new_compare112(vxw110, vxw100, False, eb, ec) -> GT 22.49/8.84 new_esEs19(vxw110, vxw100, app(app(ty_@2, beb), bec)) -> new_esEs7(vxw110, vxw100, beb, bec) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_Float) -> new_ltEs5(vxw110, vxw100) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, ced), cee), cef)) -> new_esEs4(vxw301, vxw4001, ced, cee, cef) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_@0) -> new_esEs15(vxw111, vxw101) 22.49/8.84 new_not(False) -> True 22.49/8.84 new_esEs28(vxw300, vxw4000, app(ty_Ratio, cfa)) -> new_esEs13(vxw300, vxw4000, cfa) 22.49/8.84 new_compare8(vxw110, vxw100, app(ty_Ratio, bed)) -> new_compare15(vxw110, vxw100, bed) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_compare0(:(vxw110, vxw111), [], he) -> GT 22.49/8.84 new_esEs8(LT, GT) -> False 22.49/8.84 new_esEs8(GT, LT) -> False 22.49/8.84 new_esEs18(False, True) -> False 22.49/8.84 new_esEs18(True, False) -> False 22.49/8.84 new_compare29(vxw110, vxw100, True) -> EQ 22.49/8.84 new_primPlusNat0(Succ(vxw6300), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw6300, vxw4000000))) 22.49/8.84 new_esEs5(Left(vxw300), Right(vxw4000), dah, chg) -> False 22.49/8.84 new_esEs5(Right(vxw300), Left(vxw4000), dah, chg) -> False 22.49/8.84 new_compare12(vxw110, vxw100, eb, ec) -> new_compare28(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.84 new_esEs23(vxw111, vxw101, ty_Integer) -> new_esEs14(vxw111, vxw101) 22.49/8.84 new_lt5(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, chg) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_lt9(vxw110, vxw100) -> new_esEs8(new_compare13(vxw110, vxw100), LT) 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs9(vxw300, vxw4000) 22.49/8.84 new_esEs6(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(app(ty_Either, bf), bg)) -> new_ltEs10(vxw112, vxw102, bf, bg) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Int) -> new_esEs10(vxw110, vxw100) 22.49/8.84 new_esEs10(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 22.49/8.84 new_esEs19(vxw110, vxw100, ty_Double) -> new_esEs9(vxw110, vxw100) 22.49/8.84 new_ltEs19(vxw112, vxw102, app(ty_Ratio, ccf)) -> new_ltEs14(vxw112, vxw102, ccf) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 22.49/8.84 new_compare10(vxw110, vxw100, True) -> LT 22.49/8.84 new_lt20(vxw110, vxw100, ty_Double) -> new_lt17(vxw110, vxw100) 22.49/8.84 new_compare0(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_primCompAux0(vxw110, vxw100, new_compare0(vxw111, vxw101, he), he) 22.49/8.84 new_lt16(vxw110, vxw100, ee) -> new_esEs8(new_compare18(vxw110, vxw100, ee), LT) 22.49/8.84 new_compare111(vxw110, vxw100, True, ee) -> LT 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs9(vxw110, vxw100, gd, ge, gf) 22.49/8.84 new_esEs19(vxw110, vxw100, app(ty_[], bdh)) -> new_esEs11(vxw110, vxw100, bdh) 22.49/8.84 new_esEs25(vxw301, vxw4001, ty_Int) -> new_esEs10(vxw301, vxw4001) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(ty_Maybe, cfd)) -> new_esEs6(vxw300, vxw4000, cfd) 22.49/8.84 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 22.49/8.84 new_lt5(vxw110, vxw100, app(ty_Maybe, bea)) -> new_lt16(vxw110, vxw100, bea) 22.49/8.84 new_compare24(vxw110, vxw100, False, ef, eg) -> new_compare110(vxw110, vxw100, new_ltEs6(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 22.49/8.84 new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) 22.49/8.84 new_ltEs6(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, bde) -> new_pePe(new_lt5(vxw110, vxw100, bbh), new_asAs(new_esEs19(vxw110, vxw100, bbh), new_ltEs7(vxw111, vxw101, bde))) 22.49/8.84 new_esEs21(vxw301, vxw4001, app(app(ty_@2, cab), cac)) -> new_esEs7(vxw301, vxw4001, cab, cac) 22.49/8.84 new_compare8(vxw110, vxw100, ty_Char) -> new_compare9(vxw110, vxw100) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_Char) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs4(vxw110, vxw100) 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_Bool) -> new_ltEs12(vxw110, vxw100) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs15(vxw110, vxw100) 22.49/8.84 new_compare8(vxw110, vxw100, app(app(ty_@2, bae), baf)) -> new_compare23(vxw110, vxw100, bae, baf) 22.49/8.84 new_esEs7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cdc, cdd) -> new_asAs(new_esEs28(vxw300, vxw4000, cdc), new_esEs27(vxw301, vxw4001, cdd)) 22.49/8.84 new_lt19(vxw111, vxw101, ty_Char) -> new_lt6(vxw111, vxw101) 22.49/8.84 new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs10(vxw300, vxw4000) 22.49/8.84 new_esEs27(vxw301, vxw4001, app(ty_Maybe, ceb)) -> new_esEs6(vxw301, vxw4001, ceb) 22.49/8.84 new_ltEs17(Just(vxw110), Just(vxw100), app(ty_[], bbd)) -> new_ltEs13(vxw110, vxw100, bbd) 22.49/8.84 new_lt20(vxw110, vxw100, app(ty_Maybe, ee)) -> new_lt16(vxw110, vxw100, ee) 22.49/8.84 new_esEs28(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 22.49/8.84 new_ltEs7(vxw111, vxw101, ty_Bool) -> new_ltEs12(vxw111, vxw101) 22.49/8.84 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 22.49/8.84 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 22.49/8.84 new_ltEs10(Right(vxw110), Right(vxw100), gc, ty_Char) -> new_ltEs8(vxw110, vxw100) 22.49/8.84 new_compare110(vxw110, vxw100, False, ef, eg) -> GT 22.49/8.84 new_lt20(vxw110, vxw100, ty_Char) -> new_lt6(vxw110, vxw100) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Bool) -> new_esEs18(vxw110, vxw100) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 22.49/8.84 new_esEs28(vxw300, vxw4000, app(app(ty_Either, cfb), cfc)) -> new_esEs5(vxw300, vxw4000, cfb, cfc) 22.49/8.84 new_primEqNat0(Zero, Zero) -> True 22.49/8.84 new_esEs11([], [], bee) -> True 22.49/8.84 new_compare23(vxw110, vxw100, ef, eg) -> new_compare24(vxw110, vxw100, new_esEs7(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.84 new_esEs12(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, chg) -> new_esEs18(vxw300, vxw4000) 22.49/8.84 new_compare113(vxw110, vxw100, False, dg, dh, ea) -> GT 22.49/8.84 new_asAs(False, vxw53) -> False 22.49/8.84 new_ltEs13(vxw11, vxw10, he) -> new_not(new_esEs8(new_compare0(vxw11, vxw10, he), GT)) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, chg) -> new_esEs15(vxw300, vxw4000) 22.49/8.84 new_compare28(vxw110, vxw100, True, eb, ec) -> EQ 22.49/8.84 new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 22.49/8.84 new_esEs14(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 22.49/8.84 new_esEs8(EQ, GT) -> False 22.49/8.84 new_esEs8(GT, EQ) -> False 22.49/8.84 new_ltEs7(vxw111, vxw101, app(app(ty_Either, bcd), bce)) -> new_ltEs10(vxw111, vxw101, bcd, bce) 22.49/8.84 new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs9(vxw301, vxw4001) 22.49/8.84 new_esEs24(vxw110, vxw100, ty_Char) -> new_esEs17(vxw110, vxw100) 22.49/8.84 new_lt12(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) 22.49/8.84 new_compare28(vxw110, vxw100, False, eb, ec) -> new_compare112(vxw110, vxw100, new_ltEs10(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], dad), chg) -> new_esEs11(vxw300, vxw4000, dad) 22.49/8.84 new_esEs20(vxw302, vxw4002, app(app(ty_@2, bgh), bha)) -> new_esEs7(vxw302, vxw4002, bgh, bha) 22.49/8.84 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, chg) -> new_esEs17(vxw300, vxw4000) 22.49/8.84 22.49/8.84 The set Q consists of the following terms: 22.49/8.84 22.49/8.84 new_compare17(x0, x1) 22.49/8.84 new_esEs8(EQ, EQ) 22.49/8.84 new_esEs12(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs24(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_lt16(x0, x1, x2) 22.49/8.84 new_ltEs18(x0, x1) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Int, x2) 22.49/8.84 new_compare26(x0, x1, True) 22.49/8.84 new_lt20(x0, x1, ty_Char) 22.49/8.84 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs24(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 22.49/8.84 new_lt19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs28(x0, x1, ty_Float) 22.49/8.84 new_esEs19(x0, x1, ty_Double) 22.49/8.84 new_compare13(@0, @0) 22.49/8.84 new_lt5(x0, x1, ty_Float) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.84 new_lt20(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.84 new_lt19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.84 new_lt19(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_compare0(:(x0, x1), [], x2) 22.49/8.84 new_esEs18(True, True) 22.49/8.84 new_compare27(x0, x1, False, x2, x3, x4) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.84 new_compare8(x0, x1, app(ty_[], x2)) 22.49/8.84 new_lt5(x0, x1, app(ty_[], x2)) 22.49/8.84 new_ltEs7(x0, x1, ty_@0) 22.49/8.84 new_compare8(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_primEqInt(Pos(Zero), Pos(Zero)) 22.49/8.84 new_ltEs8(x0, x1) 22.49/8.84 new_ltEs7(x0, x1, ty_Char) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.84 new_lt19(x0, x1, ty_Double) 22.49/8.84 new_lt20(x0, x1, ty_Ordering) 22.49/8.84 new_esEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs19(x0, x1, ty_Ordering) 22.49/8.84 new_primPlusNat0(Succ(x0), Zero) 22.49/8.84 new_compare111(x0, x1, True, x2) 22.49/8.84 new_primPlusNat0(Zero, Succ(x0)) 22.49/8.84 new_lt19(x0, x1, ty_Ordering) 22.49/8.84 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.84 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.84 new_esEs5(Left(x0), Right(x1), x2, x3) 22.49/8.84 new_esEs5(Right(x0), Left(x1), x2, x3) 22.49/8.84 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.84 new_ltEs7(x0, x1, ty_Int) 22.49/8.84 new_lt20(x0, x1, ty_Int) 22.49/8.84 new_esEs22(x0, x1, ty_Float) 22.49/8.84 new_asAs(False, x0) 22.49/8.84 new_primEqInt(Neg(Zero), Neg(Zero)) 22.49/8.84 new_compare28(x0, x1, False, x2, x3) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Char) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.84 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs12(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs16(GT, EQ) 22.49/8.84 new_ltEs16(EQ, GT) 22.49/8.84 new_esEs19(x0, x1, ty_Int) 22.49/8.84 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_lt19(x0, x1, ty_Int) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 22.49/8.84 new_compare8(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs16(LT, LT) 22.49/8.84 new_lt20(x0, x1, ty_Double) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 22.49/8.84 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_lt20(x0, x1, ty_Bool) 22.49/8.84 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Int) 22.49/8.84 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs7(x0, x1, ty_Integer) 22.49/8.84 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs6(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_@0, x2) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_@0) 22.49/8.84 new_esEs23(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_compare110(x0, x1, False, x2, x3) 22.49/8.84 new_primEqInt(Pos(Zero), Neg(Zero)) 22.49/8.84 new_primEqInt(Neg(Zero), Pos(Zero)) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 22.49/8.84 new_esEs23(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Double, x2) 22.49/8.84 new_esEs22(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_lt12(x0, x1) 22.49/8.84 new_esEs24(x0, x1, ty_Float) 22.49/8.84 new_compare0([], :(x0, x1), x2) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs12(x0, x1, ty_Float) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.84 new_ltEs7(x0, x1, ty_Bool) 22.49/8.84 new_esEs22(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.84 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_primEqNat0(Succ(x0), Zero) 22.49/8.84 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Char, x2) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 22.49/8.84 new_lt5(x0, x1, ty_@0) 22.49/8.84 new_esEs22(x0, x1, ty_Integer) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 22.49/8.84 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 22.49/8.84 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 22.49/8.84 new_compare16(x0, x1) 22.49/8.84 new_esEs19(x0, x1, ty_@0) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Float) 22.49/8.84 new_esEs28(x0, x1, ty_Bool) 22.49/8.84 new_compare8(x0, x1, ty_Double) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.84 new_compare113(x0, x1, True, x2, x3, x4) 22.49/8.84 new_esEs15(@0, @0) 22.49/8.84 new_esEs21(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_compare8(x0, x1, ty_Ordering) 22.49/8.84 new_primMulNat0(Succ(x0), Zero) 22.49/8.84 new_pePe(True, x0) 22.49/8.84 new_compare29(x0, x1, False) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.84 new_lt10(x0, x1) 22.49/8.84 new_lt20(x0, x1, ty_Integer) 22.49/8.84 new_lt11(x0, x1, x2) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 22.49/8.84 new_ltEs16(GT, GT) 22.49/8.84 new_esEs28(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.84 new_esEs12(x0, x1, ty_@0) 22.49/8.84 new_esEs21(x0, x1, ty_Double) 22.49/8.84 new_compare27(x0, x1, True, x2, x3, x4) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.84 new_lt9(x0, x1) 22.49/8.84 new_esEs13(:%(x0, x1), :%(x2, x3), x4) 22.49/8.84 new_esEs18(False, True) 22.49/8.84 new_esEs18(True, False) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Int) 22.49/8.84 new_ltEs16(LT, EQ) 22.49/8.84 new_ltEs16(EQ, LT) 22.49/8.84 new_ltEs7(x0, x1, ty_Float) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.84 new_lt19(x0, x1, ty_Char) 22.49/8.84 new_esEs20(x0, x1, ty_Int) 22.49/8.84 new_esEs28(x0, x1, ty_Integer) 22.49/8.84 new_compare10(x0, x1, False) 22.49/8.84 new_compare18(x0, x1, x2) 22.49/8.84 new_lt5(x0, x1, ty_Bool) 22.49/8.84 new_ltEs19(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs19(x0, x1, ty_Integer) 22.49/8.84 new_esEs20(x0, x1, ty_Float) 22.49/8.84 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Char) 22.49/8.84 new_ltEs19(x0, x1, ty_Float) 22.49/8.84 new_compare23(x0, x1, x2, x3) 22.49/8.84 new_lt18(x0, x1, x2, x3) 22.49/8.84 new_esEs8(GT, GT) 22.49/8.84 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_esEs8(LT, EQ) 22.49/8.84 new_esEs8(EQ, LT) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 22.49/8.84 new_esEs6(Just(x0), Just(x1), ty_Double) 22.49/8.84 new_compare114(x0, x1, False) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Zero)) 22.49/8.84 new_compare25(x0, x1, True, x2) 22.49/8.84 new_lt20(x0, x1, ty_@0) 22.49/8.84 new_ltEs19(x0, x1, app(ty_[], x2)) 22.49/8.84 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 22.49/8.84 new_esEs27(x0, x1, ty_Double) 22.49/8.84 new_esEs27(x0, x1, ty_@0) 22.49/8.84 new_esEs27(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_esEs8(LT, LT) 22.49/8.84 new_compare24(x0, x1, True, x2, x3) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Zero)) 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Zero)) 22.49/8.84 new_esEs21(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_lt5(x0, x1, ty_Integer) 22.49/8.84 new_esEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_esEs24(x0, x1, ty_Ordering) 22.49/8.84 new_compare7(Integer(x0), Integer(x1)) 22.49/8.84 new_esEs24(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.84 new_ltEs19(x0, x1, ty_Int) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Float) 22.49/8.84 new_esEs24(x0, x1, ty_Integer) 22.49/8.84 new_lt19(x0, x1, ty_Integer) 22.49/8.84 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_esEs28(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs24(x0, x1, ty_Bool) 22.49/8.84 new_esEs28(x0, x1, ty_Char) 22.49/8.84 new_primMulInt(Pos(x0), Neg(x1)) 22.49/8.84 new_primMulInt(Neg(x0), Pos(x1)) 22.49/8.84 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.84 new_ltEs19(x0, x1, ty_Char) 22.49/8.84 new_lt8(x0, x1, x2, x3) 22.49/8.84 new_lt19(x0, x1, ty_Bool) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Integer) 22.49/8.84 new_esEs25(x0, x1, ty_Integer) 22.49/8.84 new_compare12(x0, x1, x2, x3) 22.49/8.84 new_esEs22(x0, x1, ty_Bool) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 22.49/8.84 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.84 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_ltEs9(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 22.49/8.84 new_esEs21(x0, x1, ty_@0) 22.49/8.84 new_esEs22(x0, x1, ty_Char) 22.49/8.84 new_esEs23(x0, x1, app(ty_[], x2)) 22.49/8.84 new_primCompAux00(x0, GT) 22.49/8.84 new_primCompAux0(x0, x1, x2, x3) 22.49/8.84 new_lt4(x0, x1) 22.49/8.84 new_ltEs19(x0, x1, ty_Bool) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.84 new_lt5(x0, x1, ty_Ordering) 22.49/8.84 new_esEs23(x0, x1, ty_Double) 22.49/8.84 new_esEs27(x0, x1, ty_Char) 22.49/8.84 new_compare8(x0, x1, ty_@0) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(ty_Ratio, x2)) 22.49/8.84 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 22.49/8.84 new_primEqNat0(Zero, Succ(x0)) 22.49/8.84 new_esEs28(x0, x1, ty_Ordering) 22.49/8.84 new_lt19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Char) 22.49/8.84 new_ltEs16(EQ, EQ) 22.49/8.84 new_esEs23(x0, x1, ty_Bool) 22.49/8.84 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 22.49/8.84 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 22.49/8.84 new_compare0([], [], x0) 22.49/8.84 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_Bool) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, ty_@0) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 22.49/8.84 new_primMulNat0(Zero, Zero) 22.49/8.84 new_compare29(x0, x1, True) 22.49/8.84 new_pePe(False, x0) 22.49/8.84 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_ltEs15(x0, x1) 22.49/8.84 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.84 new_esEs12(x0, x1, app(ty_[], x2)) 22.49/8.84 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.84 new_ltEs17(Just(x0), Nothing, x1) 22.49/8.84 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.84 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.84 new_esEs22(x0, x1, ty_Int) 22.49/8.84 new_lt5(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs19(x0, x1, ty_Float) 22.49/8.84 new_esEs28(x0, x1, ty_Double) 22.49/8.84 new_primMulInt(Pos(x0), Pos(x1)) 22.49/8.84 new_esEs23(x0, x1, ty_@0) 22.49/8.84 new_compare113(x0, x1, False, x2, x3, x4) 22.49/8.84 new_lt5(x0, x1, ty_Double) 22.49/8.84 new_ltEs10(Left(x0), Left(x1), ty_Float, x2) 22.49/8.84 new_primCmpNat0(Zero, Succ(x0)) 22.49/8.84 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.84 new_esEs22(x0, x1, ty_Ordering) 22.49/8.84 new_ltEs19(x0, x1, ty_@0) 22.49/8.84 new_esEs20(x0, x1, ty_Integer) 22.49/8.84 new_esEs24(x0, x1, ty_@0) 22.49/8.84 new_lt20(x0, x1, app(ty_Ratio, x2)) 22.49/8.84 new_esEs24(x0, x1, ty_Char) 22.49/8.84 new_esEs25(x0, x1, ty_Int) 22.49/8.84 new_ltEs17(Nothing, Just(x0), x1) 22.49/8.84 new_primMulNat0(Succ(x0), Succ(x1)) 22.49/8.84 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Ordering) 22.49/8.84 new_ltEs10(Right(x0), Right(x1), x2, app(ty_[], x3)) 22.49/8.84 new_esEs11([], :(x0, x1), x2) 22.49/8.84 new_esEs21(x0, x1, ty_Char) 22.49/8.84 new_esEs28(x0, x1, ty_Int) 22.49/8.84 new_esEs23(x0, x1, ty_Integer) 22.49/8.84 new_compare14(x0, x1) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Int) 22.49/8.84 new_esEs11(:(x0, x1), :(x2, x3), x4) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), app(ty_[], x2)) 22.49/8.84 new_lt20(x0, x1, app(ty_Maybe, x2)) 22.49/8.84 new_ltEs17(Just(x0), Just(x1), ty_Double) 22.49/8.84 new_esEs20(x0, x1, ty_@0) 22.49/8.84 new_esEs12(x0, x1, ty_Double) 22.49/8.84 new_lt19(x0, x1, app(ty_[], x2)) 22.49/8.84 new_primMulInt(Neg(x0), Neg(x1)) 22.49/8.84 new_compare8(x0, x1, ty_Integer) 22.49/8.84 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.84 new_compare19(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 22.49/8.84 new_compare19(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 22.49/8.84 new_esEs9(Double(x0, x1), Double(x2, x3)) 22.49/8.84 new_esEs21(x0, x1, ty_Bool) 22.49/8.84 new_sr0(x0, x1) 22.49/8.84 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 22.49/8.85 new_compare8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.85 new_primPlusNat0(Succ(x0), Succ(x1)) 22.49/8.85 new_compare15(:%(x0, x1), :%(x2, x3), ty_Int) 22.49/8.85 new_ltEs10(Right(x0), Left(x1), x2, x3) 22.49/8.85 new_ltEs10(Left(x0), Right(x1), x2, x3) 22.49/8.85 new_primPlusNat0(Zero, Zero) 22.49/8.85 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.85 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 22.49/8.85 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 22.49/8.85 new_compare8(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_esEs12(x0, x1, ty_Int) 22.49/8.85 new_not(True) 22.49/8.85 new_lt17(x0, x1) 22.49/8.85 new_compare8(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_esEs24(x0, x1, ty_Int) 22.49/8.85 new_ltEs12(True, True) 22.49/8.85 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.85 new_esEs8(EQ, GT) 22.49/8.85 new_esEs8(GT, EQ) 22.49/8.85 new_ltEs5(x0, x1) 22.49/8.85 new_compare8(x0, x1, ty_Char) 22.49/8.85 new_lt15(x0, x1) 22.49/8.85 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 22.49/8.85 new_ltEs13(x0, x1, x2) 22.49/8.85 new_esEs12(x0, x1, app(ty_Ratio, x2)) 22.49/8.85 new_ltEs17(Just(x0), Just(x1), ty_Bool) 22.49/8.85 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.85 new_esEs23(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_esEs12(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_esEs20(x0, x1, ty_Char) 22.49/8.85 new_lt5(x0, x1, ty_Char) 22.49/8.85 new_compare15(:%(x0, x1), :%(x2, x3), ty_Integer) 22.49/8.85 new_compare8(x0, x1, ty_Int) 22.49/8.85 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 22.49/8.85 new_ltEs12(False, True) 22.49/8.85 new_ltEs12(True, False) 22.49/8.85 new_esEs18(False, False) 22.49/8.85 new_esEs20(x0, x1, app(ty_Ratio, x2)) 22.49/8.85 new_lt19(x0, x1, ty_Float) 22.49/8.85 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.85 new_ltEs10(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 22.49/8.85 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_esEs11([], [], x0) 22.49/8.85 new_esEs11(:(x0, x1), [], x2) 22.49/8.85 new_esEs19(x0, x1, app(ty_[], x2)) 22.49/8.85 new_primCmpNat0(Succ(x0), Succ(x1)) 22.49/8.85 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.85 new_asAs(True, x0) 22.49/8.85 new_compare112(x0, x1, False, x2, x3) 22.49/8.85 new_ltEs16(LT, GT) 22.49/8.85 new_ltEs16(GT, LT) 22.49/8.85 new_esEs6(Just(x0), Just(x1), ty_Float) 22.49/8.85 new_esEs21(x0, x1, ty_Ordering) 22.49/8.85 new_esEs20(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_esEs27(x0, x1, ty_Ordering) 22.49/8.85 new_compare8(x0, x1, ty_Bool) 22.49/8.85 new_compare19(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 22.49/8.85 new_esEs21(x0, x1, ty_Integer) 22.49/8.85 new_lt5(x0, x1, ty_Int) 22.49/8.85 new_ltEs11(x0, x1) 22.49/8.85 new_lt13(x0, x1, x2) 22.49/8.85 new_esEs20(x0, x1, ty_Bool) 22.49/8.85 new_lt7(x0, x1, x2, x3, x4) 22.49/8.85 new_primCmpInt(Pos(Zero), Pos(Zero)) 22.49/8.85 new_esEs26(x0, x1, ty_Int) 22.49/8.85 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 22.49/8.85 new_esEs20(x0, x1, ty_Ordering) 22.49/8.85 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 22.49/8.85 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.85 new_ltEs17(Just(x0), Just(x1), ty_Integer) 22.49/8.85 new_esEs20(x0, x1, app(ty_[], x2)) 22.49/8.85 new_compare26(x0, x1, False) 22.49/8.85 new_compare11(x0, x1, x2, x3, x4) 22.49/8.85 new_esEs23(x0, x1, ty_Float) 22.49/8.85 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 22.49/8.85 new_ltEs10(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 22.49/8.85 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 22.49/8.85 new_primCmpNat0(Succ(x0), Zero) 22.49/8.85 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 22.49/8.85 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 22.49/8.85 new_compare28(x0, x1, True, x2, x3) 22.49/8.85 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_esEs20(x0, x1, ty_Double) 22.49/8.85 new_lt19(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_esEs19(x0, x1, ty_Bool) 22.49/8.85 new_esEs27(x0, x1, ty_Integer) 22.49/8.85 new_esEs26(x0, x1, ty_Integer) 22.49/8.85 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 22.49/8.85 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 22.49/8.85 new_compare111(x0, x1, False, x2) 22.49/8.85 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_esEs8(LT, GT) 22.49/8.85 new_esEs8(GT, LT) 22.49/8.85 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_esEs14(Integer(x0), Integer(x1)) 22.49/8.85 new_esEs23(x0, x1, ty_Ordering) 22.49/8.85 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_esEs12(x0, x1, ty_Bool) 22.49/8.85 new_compare110(x0, x1, True, x2, x3) 22.49/8.85 new_esEs23(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_sr(Integer(x0), Integer(x1)) 22.49/8.85 new_ltEs7(x0, x1, ty_Double) 22.49/8.85 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 22.49/8.85 new_esEs27(x0, x1, app(ty_[], x2)) 22.49/8.85 new_esEs24(x0, x1, ty_Double) 22.49/8.85 new_primPlusNat1(Succ(x0), x1) 22.49/8.85 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 22.49/8.85 new_esEs17(Char(x0), Char(x1)) 22.49/8.85 new_lt14(x0, x1) 22.49/8.85 new_lt19(x0, x1, ty_@0) 22.49/8.85 new_esEs28(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_esEs16(Float(x0, x1), Float(x2, x3)) 22.49/8.85 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 22.49/8.85 new_lt6(x0, x1) 22.49/8.85 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 22.49/8.85 new_ltEs7(x0, x1, ty_Ordering) 22.49/8.85 new_esEs28(x0, x1, ty_@0) 22.49/8.85 new_esEs12(x0, x1, ty_Char) 22.49/8.85 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 22.49/8.85 new_ltEs10(Right(x0), Right(x1), x2, ty_Double) 22.49/8.85 new_esEs22(x0, x1, app(ty_[], x2)) 22.49/8.85 new_compare8(x0, x1, ty_Float) 22.49/8.85 new_esEs12(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.85 new_lt5(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_ltEs10(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 22.49/8.85 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.85 new_primEqNat0(Succ(x0), Succ(x1)) 22.49/8.85 new_primEqNat0(Zero, Zero) 22.49/8.85 new_esEs10(x0, x1) 22.49/8.85 new_ltEs17(Just(x0), Just(x1), ty_@0) 22.49/8.85 new_compare24(x0, x1, False, x2, x3) 22.49/8.85 new_esEs27(x0, x1, ty_Float) 22.49/8.85 new_not(False) 22.49/8.85 new_primCompAux00(x0, LT) 22.49/8.85 new_compare19(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 22.49/8.85 new_ltEs4(x0, x1) 22.49/8.85 new_ltEs7(x0, x1, app(ty_[], x2)) 22.49/8.85 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 22.49/8.85 new_esEs12(x0, x1, ty_Integer) 22.49/8.85 new_esEs27(x0, x1, ty_Bool) 22.49/8.85 new_esEs19(x0, x1, ty_Char) 22.49/8.85 new_esEs6(Just(x0), Just(x1), ty_Bool) 22.49/8.85 new_ltEs12(False, False) 22.49/8.85 new_esEs22(x0, x1, ty_@0) 22.49/8.85 new_primCompAux00(x0, EQ) 22.49/8.85 new_lt20(x0, x1, ty_Float) 22.49/8.85 new_ltEs10(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 22.49/8.85 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 22.49/8.85 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 22.49/8.85 new_esEs6(Just(x0), Just(x1), ty_Ordering) 22.49/8.85 new_esEs21(x0, x1, ty_Int) 22.49/8.85 new_esEs23(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.85 new_ltEs17(Nothing, Nothing, x0) 22.49/8.85 new_compare112(x0, x1, True, x2, x3) 22.49/8.85 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 22.49/8.85 new_compare9(Char(x0), Char(x1)) 22.49/8.85 new_esEs21(x0, x1, app(ty_Maybe, x2)) 22.49/8.85 new_esEs12(x0, x1, ty_Ordering) 22.49/8.85 new_esEs6(Nothing, Nothing, x0) 22.49/8.85 new_compare25(x0, x1, False, x2) 22.49/8.85 new_esEs19(x0, x1, ty_Integer) 22.49/8.85 new_ltEs14(x0, x1, x2) 22.49/8.85 new_primMulNat0(Zero, Succ(x0)) 22.49/8.85 new_esEs6(Nothing, Just(x0), x1) 22.49/8.85 new_compare114(x0, x1, True) 22.49/8.85 new_compare10(x0, x1, True) 22.49/8.85 new_ltEs19(x0, x1, ty_Double) 22.49/8.85 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 22.49/8.85 new_esEs6(Just(x0), Just(x1), ty_Integer) 22.49/8.85 new_esEs23(x0, x1, ty_Int) 22.49/8.85 new_esEs6(Just(x0), Nothing, x1) 22.49/8.85 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 22.49/8.85 new_primPlusNat1(Zero, x0) 22.49/8.85 new_esEs27(x0, x1, app(ty_Ratio, x2)) 22.49/8.85 new_esEs22(x0, x1, ty_Double) 22.49/8.85 new_compare0(:(x0, x1), :(x2, x3), x4) 22.49/8.85 new_esEs27(x0, x1, ty_Int) 22.49/8.85 new_primCmpNat0(Zero, Zero) 22.49/8.85 new_esEs23(x0, x1, ty_Char) 22.49/8.85 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 22.49/8.85 new_esEs21(x0, x1, ty_Float) 22.49/8.85 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 22.49/8.85 22.49/8.85 We have to consider all minimal (P,Q,R)-chains. 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (34) QDPSizeChangeProof (EQUIVALENT) 22.49/8.85 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. 22.49/8.85 22.49/8.85 From the DPs we obtained the following set of size-change graphs: 22.49/8.85 *new_compare4(vxw110, vxw100, ee) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee), ee) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs1(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, he), he) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, he), he) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs1(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_compare(vxw111, vxw101, he) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs2(Just(vxw110), Just(vxw100), app(ty_Maybe, bbe)) -> new_ltEs2(vxw110, vxw100, bbe) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_Either, bbb), bbc)) -> new_ltEs0(vxw110, vxw100, bbb, bbc) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bag), bah), bba)) -> new_ltEs(vxw110, vxw100, bag, bah, bba) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare2(vxw110, vxw100, False, dg, dh, ea) -> new_ltEs(vxw110, vxw100, dg, dh, ea) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(ty_Maybe, bcg)) -> new_ltEs2(vxw111, vxw101, bcg) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(app(ty_Either, bcd), bce)) -> new_ltEs0(vxw111, vxw101, bcd, bce) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(app(app(ty_@3, bca), bcb), bcc)) -> new_ltEs(vxw111, vxw101, bca, bcb, bcc) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, bbf), bbg)) -> new_ltEs3(vxw110, vxw100, bbf, bbg) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs2(Just(vxw110), Just(vxw100), app(ty_[], bbd)) -> new_ltEs1(vxw110, vxw100, bbd) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(app(app(ty_@3, bc), bd), be)) -> new_ltEs(vxw112, vxw102, bc, bd, be) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(app(ty_@2, bch), bda)) -> new_ltEs3(vxw111, vxw101, bch, bda) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare21(vxw110, vxw100, False, ee) -> new_ltEs2(vxw110, vxw100, ee) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(ty_Maybe, ca)) -> new_ltEs2(vxw112, vxw102, ca) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, bea), bde) -> new_lt2(vxw110, vxw100, bea) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(ty_Maybe, dd), cg) -> new_lt2(vxw111, vxw101, dd) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare20(vxw110, vxw100, False, eb, ec) -> new_ltEs0(vxw110, vxw100, eb, ec) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(app(ty_Either, bf), bg)) -> new_ltEs0(vxw112, vxw102, bf, bg) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, beb), bec), bde) -> new_lt3(vxw110, vxw100, beb, bec) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare22(vxw110, vxw100, False, ef, eg) -> new_ltEs3(vxw110, vxw100, ef, eg) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(app(ty_@2, cb), cc)) -> new_ltEs3(vxw112, vxw102, cb, cc) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(app(ty_@2, de), df), cg) -> new_lt3(vxw111, vxw101, de, df) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare(:(vxw110, vxw111), :(vxw100, vxw101), he) -> new_compare(vxw111, vxw101, he) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_lt1(vxw110, vxw100, ed) -> new_compare(vxw110, vxw100, ed) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_primCompAux(vxw110, vxw100, vxw62, app(app(app(ty_@3, hf), hg), hh)) -> new_compare1(vxw110, vxw100, hf, hg, hh) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_lt0(vxw110, vxw100, eb, ec) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_lt3(vxw110, vxw100, ef, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_primCompAux(vxw110, vxw100, vxw62, app(ty_[], bac)) -> new_compare(vxw110, vxw100, bac) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], ed), bb, cg) -> new_compare(vxw110, vxw100, ed) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_lt(vxw110, vxw100, dg, dh, ea) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, ef), eg), bb, cg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare5(vxw110, vxw100, ef, eg) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, ef, eg), ef, eg) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, dg), dh), ea), bb, cg) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare1(vxw110, vxw100, dg, dh, ea) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, dg, dh, ea), dg, dh, ea) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 22.49/8.85 22.49/8.85 22.49/8.85 *new_primCompAux(vxw110, vxw100, vxw62, app(app(ty_Either, baa), bab)) -> new_compare3(vxw110, vxw100, baa, bab) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, bdb), bdc), bdd), bde) -> new_lt(vxw110, vxw100, bdb, bdc, bdd) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(app(app(ty_@3, cd), ce), cf), cg) -> new_lt(vxw111, vxw101, cd, ce, cf) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_primCompAux(vxw110, vxw100, vxw62, app(app(ty_@2, bae), baf)) -> new_compare5(vxw110, vxw100, bae, baf) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_primCompAux(vxw110, vxw100, vxw62, app(ty_Maybe, bad)) -> new_compare4(vxw110, vxw100, bad) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_lt2(vxw110, vxw100, ee) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee), ee) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_compare3(vxw110, vxw100, eb, ec) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.85 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), bbh, app(ty_[], bcf)) -> new_ltEs1(vxw111, vxw101, bcf) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, bb, app(ty_[], bh)) -> new_ltEs1(vxw112, vxw102, bh) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], bdh), bde) -> new_lt1(vxw110, vxw100, bdh) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs3(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, bdf), bdg), bde) -> new_lt0(vxw110, vxw100, bdf, bdg) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(ty_[], dc), cg) -> new_lt1(vxw111, vxw101, dc) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, eb), ec), bb, cg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, eb, ec), eb, ec) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), ba, app(app(ty_Either, da), db), cg) -> new_lt0(vxw111, vxw101, da, db) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, ee), bb, cg) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, ee), ee) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Left(vxw110), Left(vxw100), app(ty_Maybe, fh), fc) -> new_ltEs2(vxw110, vxw100, fh) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Right(vxw110), Right(vxw100), gc, app(ty_Maybe, hb)) -> new_ltEs2(vxw110, vxw100, hb) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Right(vxw110), Right(vxw100), gc, app(app(ty_Either, gg), gh)) -> new_ltEs0(vxw110, vxw100, gg, gh) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_Either, fd), ff), fc) -> new_ltEs0(vxw110, vxw100, fd, ff) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Left(vxw110), Left(vxw100), app(app(app(ty_@3, eh), fa), fb), fc) -> new_ltEs(vxw110, vxw100, eh, fa, fb) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Right(vxw110), Right(vxw100), gc, app(app(app(ty_@3, gd), ge), gf)) -> new_ltEs(vxw110, vxw100, gd, ge, gf) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_@2, ga), gb), fc) -> new_ltEs3(vxw110, vxw100, ga, gb) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Right(vxw110), Right(vxw100), gc, app(app(ty_@2, hc), hd)) -> new_ltEs3(vxw110, vxw100, hc, hd) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Left(vxw110), Left(vxw100), app(ty_[], fg), fc) -> new_ltEs1(vxw110, vxw100, fg) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 22.49/8.85 22.49/8.85 22.49/8.85 *new_ltEs0(Right(vxw110), Right(vxw100), gc, app(ty_[], ha)) -> new_ltEs1(vxw110, vxw100, ha) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 22.49/8.85 22.49/8.85 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (35) 22.49/8.85 YES 22.49/8.85 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (36) 22.49/8.85 Obligation: 22.49/8.85 Q DP problem: 22.49/8.85 The TRS P consists of the following rules: 22.49/8.85 22.49/8.85 new_primPlusNat(Succ(vxw6300), Succ(vxw4000000)) -> new_primPlusNat(vxw6300, vxw4000000) 22.49/8.85 22.49/8.85 R is empty. 22.49/8.85 Q is empty. 22.49/8.85 We have to consider all minimal (P,Q,R)-chains. 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (37) QDPSizeChangeProof (EQUIVALENT) 22.49/8.85 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. 22.49/8.85 22.49/8.85 From the DPs we obtained the following set of size-change graphs: 22.49/8.85 *new_primPlusNat(Succ(vxw6300), Succ(vxw4000000)) -> new_primPlusNat(vxw6300, vxw4000000) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2 22.49/8.85 22.49/8.85 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (38) 22.49/8.85 YES 22.49/8.85 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (39) 22.49/8.85 Obligation: 22.49/8.85 Q DP problem: 22.49/8.85 The TRS P consists of the following rules: 22.49/8.85 22.49/8.85 new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 22.49/8.85 22.49/8.85 R is empty. 22.49/8.85 Q is empty. 22.49/8.85 We have to consider all minimal (P,Q,R)-chains. 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (40) QDPSizeChangeProof (EQUIVALENT) 22.49/8.85 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. 22.49/8.85 22.49/8.85 From the DPs we obtained the following set of size-change graphs: 22.49/8.85 *new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 22.49/8.85 The graph contains the following edges 1 > 1, 2 > 2 22.49/8.85 22.49/8.85 22.49/8.85 ---------------------------------------- 22.49/8.85 22.49/8.85 (41) 22.49/8.85 YES 22.70/8.89 EOF