20.84/9.61 YES 23.51/10.31 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 23.51/10.31 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 23.51/10.31 23.51/10.31 23.51/10.31 H-Termination with start terms of the given HASKELL could be proven: 23.51/10.31 23.51/10.31 (0) HASKELL 23.51/10.31 (1) CR [EQUIVALENT, 0 ms] 23.51/10.31 (2) HASKELL 23.51/10.31 (3) IFR [EQUIVALENT, 0 ms] 23.51/10.31 (4) HASKELL 23.51/10.31 (5) BR [EQUIVALENT, 0 ms] 23.51/10.31 (6) HASKELL 23.51/10.31 (7) COR [EQUIVALENT, 0 ms] 23.51/10.31 (8) HASKELL 23.51/10.31 (9) LetRed [EQUIVALENT, 0 ms] 23.51/10.31 (10) HASKELL 23.51/10.31 (11) NumRed [SOUND, 0 ms] 23.51/10.31 (12) HASKELL 23.51/10.31 (13) Narrow [SOUND, 0 ms] 23.51/10.31 (14) AND 23.51/10.31 (15) QDP 23.51/10.31 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 23.51/10.31 (17) YES 23.51/10.31 (18) QDP 23.51/10.31 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 23.51/10.31 (20) YES 23.51/10.31 (21) QDP 23.51/10.31 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 23.51/10.31 (23) YES 23.51/10.31 (24) QDP 23.51/10.31 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 23.51/10.31 (26) YES 23.51/10.31 (27) QDP 23.51/10.31 (28) QDPSizeChangeProof [EQUIVALENT, 0 ms] 23.51/10.31 (29) YES 23.51/10.31 (30) QDP 23.51/10.31 (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] 23.51/10.31 (32) YES 23.51/10.31 (33) QDP 23.51/10.31 (34) QDPSizeChangeProof [EQUIVALENT, 0 ms] 23.51/10.31 (35) YES 23.51/10.31 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (0) 23.51/10.31 Obligation: 23.51/10.31 mainModule Main 23.51/10.31 module Maybe where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 module List where { 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 insert :: Ord a => a -> [a] -> [a]; 23.51/10.31 insert e ls = insertBy compare e ls; 23.51/10.31 23.51/10.31 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 23.51/10.31 insertBy _ x [] = x : []; 23.51/10.31 insertBy cmp x ys@(y : ys') = case cmp x y of { 23.51/10.31 GT-> y : insertBy cmp x ys'; 23.51/10.31 _-> x : ys; 23.51/10.31 } ; 23.51/10.31 23.51/10.31 } 23.51/10.31 module Main where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (1) CR (EQUIVALENT) 23.51/10.31 Case Reductions: 23.51/10.31 The following Case expression 23.51/10.31 "case compare x y of { 23.51/10.31 EQ -> o; 23.51/10.31 LT -> LT; 23.51/10.31 GT -> GT} 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "primCompAux0 o EQ = o; 23.51/10.31 primCompAux0 o LT = LT; 23.51/10.31 primCompAux0 o GT = GT; 23.51/10.31 " 23.51/10.31 The following Case expression 23.51/10.31 "case cmp x y of { 23.51/10.31 GT -> y : insertBy cmp x ys'; 23.51/10.31 _ -> x : ys} 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 23.51/10.31 insertBy0 y cmp x ys' ys _ = x : ys; 23.51/10.31 " 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (2) 23.51/10.31 Obligation: 23.51/10.31 mainModule Main 23.51/10.31 module Maybe where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 module List where { 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 insert :: Ord a => a -> [a] -> [a]; 23.51/10.31 insert e ls = insertBy compare e ls; 23.51/10.31 23.51/10.31 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 23.51/10.31 insertBy _ x [] = x : []; 23.51/10.31 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 23.51/10.31 23.51/10.31 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 23.51/10.31 insertBy0 y cmp x ys' ys _ = x : ys; 23.51/10.31 23.51/10.31 } 23.51/10.31 module Main where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (3) IFR (EQUIVALENT) 23.51/10.31 If Reductions: 23.51/10.31 The following If expression 23.51/10.31 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 23.51/10.31 is transformed to 23.51/10.31 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 23.51/10.31 primDivNatS0 x y False = Zero; 23.51/10.31 " 23.51/10.31 The following If expression 23.51/10.31 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 23.51/10.31 is transformed to 23.51/10.31 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 23.51/10.31 primModNatS0 x y False = Succ x; 23.51/10.31 " 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (4) 23.51/10.31 Obligation: 23.51/10.31 mainModule Main 23.51/10.31 module Maybe where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 module List where { 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 insert :: Ord a => a -> [a] -> [a]; 23.51/10.31 insert e ls = insertBy compare e ls; 23.51/10.31 23.51/10.31 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 23.51/10.31 insertBy _ x [] = x : []; 23.51/10.31 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 23.51/10.31 23.51/10.31 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 23.51/10.31 insertBy0 y cmp x ys' ys _ = x : ys; 23.51/10.31 23.51/10.31 } 23.51/10.31 module Main where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (5) BR (EQUIVALENT) 23.51/10.31 Replaced joker patterns by fresh variables and removed binding patterns. 23.51/10.31 23.51/10.31 Binding Reductions: 23.51/10.31 The bind variable of the following binding Pattern 23.51/10.31 "ys@(vuu : vuv)" 23.51/10.31 is replaced by the following term 23.51/10.31 "vuu : vuv" 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (6) 23.51/10.31 Obligation: 23.51/10.31 mainModule Main 23.51/10.31 module Maybe where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 module List where { 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 insert :: Ord a => a -> [a] -> [a]; 23.51/10.31 insert e ls = insertBy compare e ls; 23.51/10.31 23.51/10.31 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 23.51/10.31 insertBy zz x [] = x : []; 23.51/10.31 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 23.51/10.31 23.51/10.31 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 23.51/10.31 insertBy0 y cmp x ys' ys zy = x : ys; 23.51/10.31 23.51/10.31 } 23.51/10.31 module Main where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (7) COR (EQUIVALENT) 23.51/10.31 Cond Reductions: 23.51/10.31 The following Function with conditions 23.51/10.31 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "compare x y = compare3 x y; 23.51/10.31 " 23.51/10.31 "compare1 x y True = LT; 23.51/10.31 compare1 x y False = compare0 x y otherwise; 23.51/10.31 " 23.51/10.31 "compare0 x y True = GT; 23.51/10.31 " 23.51/10.31 "compare2 x y True = EQ; 23.51/10.31 compare2 x y False = compare1 x y (x <= y); 23.51/10.31 " 23.51/10.31 "compare3 x y = compare2 x y (x == y); 23.51/10.31 " 23.51/10.31 The following Function with conditions 23.51/10.31 "absReal x|x >= 0x|otherwise`negate` x; 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "absReal x = absReal2 x; 23.51/10.31 " 23.51/10.31 "absReal0 x True = `negate` x; 23.51/10.31 " 23.51/10.31 "absReal1 x True = x; 23.51/10.31 absReal1 x False = absReal0 x otherwise; 23.51/10.31 " 23.51/10.31 "absReal2 x = absReal1 x (x >= 0); 23.51/10.31 " 23.51/10.31 The following Function with conditions 23.51/10.31 "gcd' x 0 = x; 23.51/10.31 gcd' x y = gcd' y (x `rem` y); 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "gcd' x vuw = gcd'2 x vuw; 23.51/10.31 gcd' x y = gcd'0 x y; 23.51/10.31 " 23.51/10.31 "gcd'0 x y = gcd' y (x `rem` y); 23.51/10.31 " 23.51/10.31 "gcd'1 True x vuw = x; 23.51/10.31 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 23.51/10.31 " 23.51/10.31 "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 23.51/10.31 gcd'2 vvu vvv = gcd'0 vvu vvv; 23.51/10.31 " 23.51/10.31 The following Function with conditions 23.51/10.31 "gcd 0 0 = error []; 23.51/10.31 gcd x y = gcd' (abs x) (abs y) where { 23.51/10.31 gcd' x 0 = x; 23.51/10.31 gcd' x y = gcd' y (x `rem` y); 23.51/10.31 } 23.51/10.31 ; 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "gcd vvw vvx = gcd3 vvw vvx; 23.51/10.31 gcd x y = gcd0 x y; 23.51/10.31 " 23.51/10.31 "gcd0 x y = gcd' (abs x) (abs y) where { 23.51/10.31 gcd' x vuw = gcd'2 x vuw; 23.51/10.31 gcd' x y = gcd'0 x y; 23.51/10.31 ; 23.51/10.31 gcd'0 x y = gcd' y (x `rem` y); 23.51/10.31 ; 23.51/10.31 gcd'1 True x vuw = x; 23.51/10.31 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 23.51/10.31 ; 23.51/10.31 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 23.51/10.31 gcd'2 vvu vvv = gcd'0 vvu vvv; 23.51/10.31 } 23.51/10.31 ; 23.51/10.31 " 23.51/10.31 "gcd1 True vvw vvx = error []; 23.51/10.31 gcd1 vvy vvz vwu = gcd0 vvz vwu; 23.51/10.31 " 23.51/10.31 "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; 23.51/10.31 gcd2 vwv vww vwx = gcd0 vww vwx; 23.51/10.31 " 23.51/10.31 "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; 23.51/10.31 gcd3 vwy vwz = gcd0 vwy vwz; 23.51/10.31 " 23.51/10.31 The following Function with conditions 23.51/10.31 "undefined |Falseundefined; 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "undefined = undefined1; 23.51/10.31 " 23.51/10.31 "undefined0 True = undefined; 23.51/10.31 " 23.51/10.31 "undefined1 = undefined0 False; 23.51/10.31 " 23.51/10.31 The following Function with conditions 23.51/10.31 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 23.51/10.31 d = gcd x y; 23.51/10.31 } 23.51/10.31 ; 23.51/10.31 " 23.51/10.31 is transformed to 23.51/10.31 "reduce x y = reduce2 x y; 23.51/10.31 " 23.51/10.31 "reduce2 x y = reduce1 x y (y == 0) where { 23.51/10.31 d = gcd x y; 23.51/10.31 ; 23.51/10.31 reduce0 x y True = x `quot` d :% (y `quot` d); 23.51/10.31 ; 23.51/10.31 reduce1 x y True = error []; 23.51/10.31 reduce1 x y False = reduce0 x y otherwise; 23.51/10.31 } 23.51/10.31 ; 23.51/10.31 " 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (8) 23.51/10.31 Obligation: 23.51/10.31 mainModule Main 23.51/10.31 module Maybe where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 module List where { 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 insert :: Ord a => a -> [a] -> [a]; 23.51/10.31 insert e ls = insertBy compare e ls; 23.51/10.31 23.51/10.31 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 23.51/10.31 insertBy zz x [] = x : []; 23.51/10.31 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 23.51/10.31 23.51/10.31 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 23.51/10.31 insertBy0 y cmp x ys' ys zy = x : ys; 23.51/10.31 23.51/10.31 } 23.51/10.31 module Main where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (9) LetRed (EQUIVALENT) 23.51/10.31 Let/Where Reductions: 23.51/10.31 The bindings of the following Let/Where expression 23.51/10.31 "gcd' (abs x) (abs y) where { 23.51/10.31 gcd' x vuw = gcd'2 x vuw; 23.51/10.31 gcd' x y = gcd'0 x y; 23.51/10.31 ; 23.51/10.31 gcd'0 x y = gcd' y (x `rem` y); 23.51/10.31 ; 23.51/10.31 gcd'1 True x vuw = x; 23.51/10.31 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 23.51/10.31 ; 23.51/10.31 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 23.51/10.31 gcd'2 vvu vvv = gcd'0 vvu vvv; 23.51/10.31 } 23.51/10.31 " 23.51/10.31 are unpacked to the following functions on top level 23.51/10.31 "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; 23.51/10.31 gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; 23.51/10.31 " 23.51/10.31 "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; 23.51/10.31 gcd0Gcd' x y = gcd0Gcd'0 x y; 23.51/10.31 " 23.51/10.31 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 23.51/10.31 " 23.51/10.31 "gcd0Gcd'1 True x vuw = x; 23.51/10.31 gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; 23.51/10.31 " 23.51/10.31 The bindings of the following Let/Where expression 23.51/10.31 "reduce1 x y (y == 0) where { 23.51/10.31 d = gcd x y; 23.51/10.31 ; 23.51/10.31 reduce0 x y True = x `quot` d :% (y `quot` d); 23.51/10.31 ; 23.51/10.31 reduce1 x y True = error []; 23.51/10.31 reduce1 x y False = reduce0 x y otherwise; 23.51/10.31 } 23.51/10.31 " 23.51/10.31 are unpacked to the following functions on top level 23.51/10.31 "reduce2Reduce1 vxu vxv x y True = error []; 23.51/10.31 reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; 23.51/10.31 " 23.51/10.31 "reduce2D vxu vxv = gcd vxu vxv; 23.51/10.31 " 23.51/10.31 "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); 23.51/10.31 " 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (10) 23.51/10.31 Obligation: 23.51/10.31 mainModule Main 23.51/10.31 module Maybe where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 module List where { 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 insert :: Ord a => a -> [a] -> [a]; 23.51/10.31 insert e ls = insertBy compare e ls; 23.51/10.31 23.51/10.31 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 23.51/10.31 insertBy zz x [] = x : []; 23.51/10.31 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 23.51/10.31 23.51/10.31 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 23.51/10.31 insertBy0 y cmp x ys' ys zy = x : ys; 23.51/10.31 23.51/10.31 } 23.51/10.31 module Main where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (11) NumRed (SOUND) 23.51/10.31 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (12) 23.51/10.31 Obligation: 23.51/10.31 mainModule Main 23.51/10.31 module Maybe where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 module List where { 23.51/10.31 import qualified Main; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 insert :: Ord a => a -> [a] -> [a]; 23.51/10.31 insert e ls = insertBy compare e ls; 23.51/10.31 23.51/10.31 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 23.51/10.31 insertBy zz x [] = x : []; 23.51/10.31 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 23.51/10.31 23.51/10.31 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 23.51/10.31 insertBy0 y cmp x ys' ys zy = x : ys; 23.51/10.31 23.51/10.31 } 23.51/10.31 module Main where { 23.51/10.31 import qualified List; 23.51/10.31 import qualified Maybe; 23.51/10.31 import qualified Prelude; 23.51/10.31 } 23.51/10.31 23.51/10.31 ---------------------------------------- 23.51/10.31 23.51/10.31 (13) Narrow (SOUND) 23.51/10.31 Haskell To QDPs 23.51/10.31 23.51/10.31 digraph dp_graph { 23.51/10.31 node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 23.51/10.31 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 23.51/10.31 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 23.51/10.31 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];2193[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 2193[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2193 -> 6[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 2194[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 2194[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2194 -> 7[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 23.51/10.31 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 23.51/10.31 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]; 23.51/10.31 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]; 23.51/10.31 11[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare2 vxw3 vxw40 (vxw3 == vxw40))",fontsize=16,color="burlywood",shape="box"];2195[label="vxw3/(vxw30,vxw31)",fontsize=10,color="white",style="solid",shape="box"];11 -> 2195[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2195 -> 12[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 12[label="List.insertBy0 vxw40 compare (vxw30,vxw31) vxw41 (vxw40 : vxw41) (compare2 (vxw30,vxw31) vxw40 ((vxw30,vxw31) == vxw40))",fontsize=16,color="burlywood",shape="box"];2196[label="vxw40/(vxw400,vxw401)",fontsize=10,color="white",style="solid",shape="box"];12 -> 2196[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2196 -> 13[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 13[label="List.insertBy0 (vxw400,vxw401) compare (vxw30,vxw31) vxw41 ((vxw400,vxw401) : vxw41) (compare2 (vxw30,vxw31) (vxw400,vxw401) ((vxw30,vxw31) == (vxw400,vxw401)))",fontsize=16,color="black",shape="box"];13 -> 14[label="",style="solid", color="black", weight=3]; 23.51/10.31 14 -> 96[label="",style="dashed", color="red", weight=0]; 23.51/10.31 14[label="List.insertBy0 (vxw400,vxw401) compare (vxw30,vxw31) vxw41 ((vxw400,vxw401) : vxw41) (compare2 (vxw30,vxw31) (vxw400,vxw401) (vxw30 == vxw400 && vxw31 == vxw401))",fontsize=16,color="magenta"];14 -> 97[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 14 -> 98[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 14 -> 99[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 14 -> 100[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 14 -> 101[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 14 -> 102[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 97 -> 396[label="",style="dashed", color="red", weight=0]; 23.51/10.31 97[label="vxw30 == vxw400 && vxw31 == vxw401",fontsize=16,color="magenta"];97 -> 397[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 97 -> 398[label="",style="dashed", color="magenta", weight=3]; 23.51/10.31 98[label="vxw30",fontsize=16,color="green",shape="box"];99[label="vxw401",fontsize=16,color="green",shape="box"];100[label="vxw31",fontsize=16,color="green",shape="box"];101[label="vxw41",fontsize=16,color="green",shape="box"];102[label="vxw400",fontsize=16,color="green",shape="box"];96[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare2 (vxw27,vxw28) (vxw25,vxw26) vxw30)",fontsize=16,color="burlywood",shape="triangle"];2197[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];96 -> 2197[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2197 -> 125[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 2198[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];96 -> 2198[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2198 -> 126[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 397[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];2199[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2199[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2199 -> 401[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2200[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2200[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2200 -> 402[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2201[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2201[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2201 -> 403[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2202[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2202[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2202 -> 404[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2203[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2203[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2203 -> 405[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2204[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2204[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2204 -> 406[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2205[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2205[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2205 -> 407[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2206[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2206[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2206 -> 408[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2207[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2207[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2207 -> 409[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2208[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2208[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2208 -> 410[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2209[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2209[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2209 -> 411[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2210[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2210[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2210 -> 412[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2211[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2211[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2211 -> 413[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2212[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];397 -> 2212[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2212 -> 414[label="",style="solid", color="blue", weight=3]; 23.51/10.31 398[label="vxw31 == vxw401",fontsize=16,color="blue",shape="box"];2213[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2213[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2213 -> 415[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2214[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2214[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2214 -> 416[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2215[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2215[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2215 -> 417[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2216[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2216[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2216 -> 418[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2217[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2217[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2217 -> 419[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2218[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2218[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2218 -> 420[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2219[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2219[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2219 -> 421[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2220[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2220[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2220 -> 422[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2221[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2221[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2221 -> 423[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2222[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2222[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2222 -> 424[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2223[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2223[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2223 -> 425[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2224[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2224[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2224 -> 426[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2225[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2225[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2225 -> 427[label="",style="solid", color="blue", weight=3]; 23.51/10.31 2226[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];398 -> 2226[label="",style="solid", color="blue", weight=9]; 23.51/10.31 2226 -> 428[label="",style="solid", color="blue", weight=3]; 23.51/10.31 396[label="vxw55 && vxw56",fontsize=16,color="burlywood",shape="triangle"];2227[label="vxw55/False",fontsize=10,color="white",style="solid",shape="box"];396 -> 2227[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2227 -> 429[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 2228[label="vxw55/True",fontsize=10,color="white",style="solid",shape="box"];396 -> 2228[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2228 -> 430[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 125[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare2 (vxw27,vxw28) (vxw25,vxw26) False)",fontsize=16,color="black",shape="box"];125 -> 143[label="",style="solid", color="black", weight=3]; 23.51/10.31 126[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare2 (vxw27,vxw28) (vxw25,vxw26) True)",fontsize=16,color="black",shape="box"];126 -> 144[label="",style="solid", color="black", weight=3]; 23.51/10.31 401[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2229[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];401 -> 2229[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2229 -> 447[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 402[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];402 -> 448[label="",style="solid", color="black", weight=3]; 23.51/10.31 403[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2230[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];403 -> 2230[label="",style="solid", color="burlywood", weight=9]; 23.51/10.31 2230 -> 449[label="",style="solid", color="burlywood", weight=3]; 23.51/10.31 404[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2231[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];404 -> 2231[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2231 -> 450[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2232[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];404 -> 2232[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2232 -> 451[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 405[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2233[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];405 -> 2233[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2233 -> 452[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 406[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2234[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];406 -> 2234[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2234 -> 453[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 407[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];407 -> 454[label="",style="solid", color="black", weight=3]; 23.51/10.32 408[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2235[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];408 -> 2235[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2235 -> 455[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2236[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];408 -> 2236[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2236 -> 456[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2237[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];408 -> 2237[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2237 -> 457[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 409[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2238[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];409 -> 2238[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2238 -> 458[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2239[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];409 -> 2239[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2239 -> 459[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 410[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2240[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];410 -> 2240[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2240 -> 460[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2241[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];410 -> 2241[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2241 -> 461[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 411[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];411 -> 462[label="",style="solid", color="black", weight=3]; 23.51/10.32 412[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];412 -> 463[label="",style="solid", color="black", weight=3]; 23.51/10.32 413[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2242[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];413 -> 2242[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2242 -> 464[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2243[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];413 -> 2243[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2243 -> 465[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 414[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];2244[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];414 -> 2244[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2244 -> 466[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 415 -> 401[label="",style="dashed", color="red", weight=0]; 23.51/10.32 415[label="vxw31 == vxw401",fontsize=16,color="magenta"];415 -> 467[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 415 -> 468[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 416 -> 402[label="",style="dashed", color="red", weight=0]; 23.51/10.32 416[label="vxw31 == vxw401",fontsize=16,color="magenta"];416 -> 469[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 416 -> 470[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 417 -> 403[label="",style="dashed", color="red", weight=0]; 23.51/10.32 417[label="vxw31 == vxw401",fontsize=16,color="magenta"];417 -> 471[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 417 -> 472[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 418 -> 404[label="",style="dashed", color="red", weight=0]; 23.51/10.32 418[label="vxw31 == vxw401",fontsize=16,color="magenta"];418 -> 473[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 418 -> 474[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 419 -> 405[label="",style="dashed", color="red", weight=0]; 23.51/10.32 419[label="vxw31 == vxw401",fontsize=16,color="magenta"];419 -> 475[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 419 -> 476[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 420 -> 406[label="",style="dashed", color="red", weight=0]; 23.51/10.32 420[label="vxw31 == vxw401",fontsize=16,color="magenta"];420 -> 477[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 420 -> 478[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 421 -> 407[label="",style="dashed", color="red", weight=0]; 23.51/10.32 421[label="vxw31 == vxw401",fontsize=16,color="magenta"];421 -> 479[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 421 -> 480[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 422 -> 408[label="",style="dashed", color="red", weight=0]; 23.51/10.32 422[label="vxw31 == vxw401",fontsize=16,color="magenta"];422 -> 481[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 422 -> 482[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 423 -> 409[label="",style="dashed", color="red", weight=0]; 23.51/10.32 423[label="vxw31 == vxw401",fontsize=16,color="magenta"];423 -> 483[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 423 -> 484[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 424 -> 410[label="",style="dashed", color="red", weight=0]; 23.51/10.32 424[label="vxw31 == vxw401",fontsize=16,color="magenta"];424 -> 485[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 424 -> 486[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 425 -> 411[label="",style="dashed", color="red", weight=0]; 23.51/10.32 425[label="vxw31 == vxw401",fontsize=16,color="magenta"];425 -> 487[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 425 -> 488[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 426 -> 412[label="",style="dashed", color="red", weight=0]; 23.51/10.32 426[label="vxw31 == vxw401",fontsize=16,color="magenta"];426 -> 489[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 426 -> 490[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 427 -> 413[label="",style="dashed", color="red", weight=0]; 23.51/10.32 427[label="vxw31 == vxw401",fontsize=16,color="magenta"];427 -> 491[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 427 -> 492[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 428 -> 414[label="",style="dashed", color="red", weight=0]; 23.51/10.32 428[label="vxw31 == vxw401",fontsize=16,color="magenta"];428 -> 493[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 428 -> 494[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 429[label="False && vxw56",fontsize=16,color="black",shape="box"];429 -> 495[label="",style="solid", color="black", weight=3]; 23.51/10.32 430[label="True && vxw56",fontsize=16,color="black",shape="box"];430 -> 496[label="",style="solid", color="black", weight=3]; 23.51/10.32 143 -> 525[label="",style="dashed", color="red", weight=0]; 23.51/10.32 143[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) (compare1 (vxw27,vxw28) (vxw25,vxw26) ((vxw27,vxw28) <= (vxw25,vxw26)))",fontsize=16,color="magenta"];143 -> 526[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 143 -> 527[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 143 -> 528[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 143 -> 529[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 143 -> 530[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 143 -> 531[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 144[label="List.insertBy0 (vxw25,vxw26) compare (vxw27,vxw28) vxw29 ((vxw25,vxw26) : vxw29) EQ",fontsize=16,color="black",shape="box"];144 -> 168[label="",style="solid", color="black", weight=3]; 23.51/10.32 447[label="(vxw300,vxw301) == vxw400",fontsize=16,color="burlywood",shape="box"];2245[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];447 -> 2245[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2245 -> 541[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 448[label="primEqInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];2246[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];448 -> 2246[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2246 -> 542[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2247[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];448 -> 2247[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2247 -> 543[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 449[label="vxw300 :% vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];2248[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];449 -> 2248[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2248 -> 544[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 450[label="Left vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2249[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];450 -> 2249[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2249 -> 545[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2250[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];450 -> 2250[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2250 -> 546[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 451[label="Right vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2251[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];451 -> 2251[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2251 -> 547[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2252[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];451 -> 2252[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2252 -> 548[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 452[label="Integer vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2253[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];452 -> 2253[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2253 -> 549[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 453[label="() == vxw400",fontsize=16,color="burlywood",shape="box"];2254[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];453 -> 2254[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2254 -> 550[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 454[label="primEqDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2255[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];454 -> 2255[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2255 -> 551[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 455[label="LT == vxw400",fontsize=16,color="burlywood",shape="box"];2256[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];455 -> 2256[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2256 -> 552[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2257[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];455 -> 2257[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2257 -> 553[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2258[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];455 -> 2258[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2258 -> 554[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 456[label="EQ == vxw400",fontsize=16,color="burlywood",shape="box"];2259[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];456 -> 2259[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2259 -> 555[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2260[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];456 -> 2260[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2260 -> 556[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2261[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];456 -> 2261[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2261 -> 557[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 457[label="GT == vxw400",fontsize=16,color="burlywood",shape="box"];2262[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];457 -> 2262[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2262 -> 558[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2263[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];457 -> 2263[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2263 -> 559[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2264[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];457 -> 2264[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2264 -> 560[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 458[label="Nothing == vxw400",fontsize=16,color="burlywood",shape="box"];2265[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];458 -> 2265[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2265 -> 561[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2266[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];458 -> 2266[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2266 -> 562[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 459[label="Just vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];2267[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];459 -> 2267[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2267 -> 563[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2268[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];459 -> 2268[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2268 -> 564[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 460[label="vxw300 : vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];2269[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];460 -> 2269[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2269 -> 565[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2270[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];460 -> 2270[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2270 -> 566[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 461[label="[] == vxw400",fontsize=16,color="burlywood",shape="box"];2271[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];461 -> 2271[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2271 -> 567[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2272[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];461 -> 2272[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2272 -> 568[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 462[label="primEqFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2273[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];462 -> 2273[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2273 -> 569[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 463[label="primEqChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];2274[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];463 -> 2274[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2274 -> 570[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 464[label="False == vxw400",fontsize=16,color="burlywood",shape="box"];2275[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];464 -> 2275[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2275 -> 571[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2276[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];464 -> 2276[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2276 -> 572[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 465[label="True == vxw400",fontsize=16,color="burlywood",shape="box"];2277[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];465 -> 2277[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2277 -> 573[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2278[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];465 -> 2278[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2278 -> 574[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 466[label="(vxw300,vxw301,vxw302) == vxw400",fontsize=16,color="burlywood",shape="box"];2279[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];466 -> 2279[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2279 -> 575[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 467[label="vxw401",fontsize=16,color="green",shape="box"];468[label="vxw31",fontsize=16,color="green",shape="box"];469[label="vxw401",fontsize=16,color="green",shape="box"];470[label="vxw31",fontsize=16,color="green",shape="box"];471[label="vxw401",fontsize=16,color="green",shape="box"];472[label="vxw31",fontsize=16,color="green",shape="box"];473[label="vxw401",fontsize=16,color="green",shape="box"];474[label="vxw31",fontsize=16,color="green",shape="box"];475[label="vxw401",fontsize=16,color="green",shape="box"];476[label="vxw31",fontsize=16,color="green",shape="box"];477[label="vxw401",fontsize=16,color="green",shape="box"];478[label="vxw31",fontsize=16,color="green",shape="box"];479[label="vxw401",fontsize=16,color="green",shape="box"];480[label="vxw31",fontsize=16,color="green",shape="box"];481[label="vxw401",fontsize=16,color="green",shape="box"];482[label="vxw31",fontsize=16,color="green",shape="box"];483[label="vxw401",fontsize=16,color="green",shape="box"];484[label="vxw31",fontsize=16,color="green",shape="box"];485[label="vxw401",fontsize=16,color="green",shape="box"];486[label="vxw31",fontsize=16,color="green",shape="box"];487[label="vxw401",fontsize=16,color="green",shape="box"];488[label="vxw31",fontsize=16,color="green",shape="box"];489[label="vxw401",fontsize=16,color="green",shape="box"];490[label="vxw31",fontsize=16,color="green",shape="box"];491[label="vxw401",fontsize=16,color="green",shape="box"];492[label="vxw31",fontsize=16,color="green",shape="box"];493[label="vxw401",fontsize=16,color="green",shape="box"];494[label="vxw31",fontsize=16,color="green",shape="box"];495[label="False",fontsize=16,color="green",shape="box"];496[label="vxw56",fontsize=16,color="green",shape="box"];526[label="vxw25",fontsize=16,color="green",shape="box"];527[label="vxw27",fontsize=16,color="green",shape="box"];528[label="vxw29",fontsize=16,color="green",shape="box"];529[label="vxw26",fontsize=16,color="green",shape="box"];530[label="vxw28",fontsize=16,color="green",shape="box"];531[label="(vxw27,vxw28) <= (vxw25,vxw26)",fontsize=16,color="black",shape="box"];531 -> 576[label="",style="solid", color="black", weight=3]; 23.51/10.32 525[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare1 (vxw47,vxw48) (vxw45,vxw46) vxw57)",fontsize=16,color="burlywood",shape="triangle"];2280[label="vxw57/False",fontsize=10,color="white",style="solid",shape="box"];525 -> 2280[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2280 -> 577[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2281[label="vxw57/True",fontsize=10,color="white",style="solid",shape="box"];525 -> 2281[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2281 -> 578[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 168[label="(vxw27,vxw28) : (vxw25,vxw26) : vxw29",fontsize=16,color="green",shape="box"];541[label="(vxw300,vxw301) == (vxw4000,vxw4001)",fontsize=16,color="black",shape="box"];541 -> 579[label="",style="solid", color="black", weight=3]; 23.51/10.32 542[label="primEqInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2282[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];542 -> 2282[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2282 -> 580[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2283[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];542 -> 2283[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2283 -> 581[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 543[label="primEqInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2284[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];543 -> 2284[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2284 -> 582[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2285[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];543 -> 2285[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2285 -> 583[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 544[label="vxw300 :% vxw301 == vxw4000 :% vxw4001",fontsize=16,color="black",shape="box"];544 -> 584[label="",style="solid", color="black", weight=3]; 23.51/10.32 545[label="Left vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];545 -> 585[label="",style="solid", color="black", weight=3]; 23.51/10.32 546[label="Left vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];546 -> 586[label="",style="solid", color="black", weight=3]; 23.51/10.32 547[label="Right vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];547 -> 587[label="",style="solid", color="black", weight=3]; 23.51/10.32 548[label="Right vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];548 -> 588[label="",style="solid", color="black", weight=3]; 23.51/10.32 549[label="Integer vxw300 == Integer vxw4000",fontsize=16,color="black",shape="box"];549 -> 589[label="",style="solid", color="black", weight=3]; 23.51/10.32 550[label="() == ()",fontsize=16,color="black",shape="box"];550 -> 590[label="",style="solid", color="black", weight=3]; 23.51/10.32 551[label="primEqDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2286[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];551 -> 2286[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2286 -> 591[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 552[label="LT == LT",fontsize=16,color="black",shape="box"];552 -> 592[label="",style="solid", color="black", weight=3]; 23.51/10.32 553[label="LT == EQ",fontsize=16,color="black",shape="box"];553 -> 593[label="",style="solid", color="black", weight=3]; 23.51/10.32 554[label="LT == GT",fontsize=16,color="black",shape="box"];554 -> 594[label="",style="solid", color="black", weight=3]; 23.51/10.32 555[label="EQ == LT",fontsize=16,color="black",shape="box"];555 -> 595[label="",style="solid", color="black", weight=3]; 23.51/10.32 556[label="EQ == EQ",fontsize=16,color="black",shape="box"];556 -> 596[label="",style="solid", color="black", weight=3]; 23.51/10.32 557[label="EQ == GT",fontsize=16,color="black",shape="box"];557 -> 597[label="",style="solid", color="black", weight=3]; 23.51/10.32 558[label="GT == LT",fontsize=16,color="black",shape="box"];558 -> 598[label="",style="solid", color="black", weight=3]; 23.51/10.32 559[label="GT == EQ",fontsize=16,color="black",shape="box"];559 -> 599[label="",style="solid", color="black", weight=3]; 23.51/10.32 560[label="GT == GT",fontsize=16,color="black",shape="box"];560 -> 600[label="",style="solid", color="black", weight=3]; 23.51/10.32 561[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];561 -> 601[label="",style="solid", color="black", weight=3]; 23.51/10.32 562[label="Nothing == Just vxw4000",fontsize=16,color="black",shape="box"];562 -> 602[label="",style="solid", color="black", weight=3]; 23.51/10.32 563[label="Just vxw300 == Nothing",fontsize=16,color="black",shape="box"];563 -> 603[label="",style="solid", color="black", weight=3]; 23.51/10.32 564[label="Just vxw300 == Just vxw4000",fontsize=16,color="black",shape="box"];564 -> 604[label="",style="solid", color="black", weight=3]; 23.51/10.32 565[label="vxw300 : vxw301 == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];565 -> 605[label="",style="solid", color="black", weight=3]; 23.51/10.32 566[label="vxw300 : vxw301 == []",fontsize=16,color="black",shape="box"];566 -> 606[label="",style="solid", color="black", weight=3]; 23.51/10.32 567[label="[] == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];567 -> 607[label="",style="solid", color="black", weight=3]; 23.51/10.32 568[label="[] == []",fontsize=16,color="black",shape="box"];568 -> 608[label="",style="solid", color="black", weight=3]; 23.51/10.32 569[label="primEqFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];2287[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];569 -> 2287[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2287 -> 609[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 570[label="primEqChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];2288[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];570 -> 2288[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2288 -> 610[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 571[label="False == False",fontsize=16,color="black",shape="box"];571 -> 611[label="",style="solid", color="black", weight=3]; 23.51/10.32 572[label="False == True",fontsize=16,color="black",shape="box"];572 -> 612[label="",style="solid", color="black", weight=3]; 23.51/10.32 573[label="True == False",fontsize=16,color="black",shape="box"];573 -> 613[label="",style="solid", color="black", weight=3]; 23.51/10.32 574[label="True == True",fontsize=16,color="black",shape="box"];574 -> 614[label="",style="solid", color="black", weight=3]; 23.51/10.32 575[label="(vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002)",fontsize=16,color="black",shape="box"];575 -> 615[label="",style="solid", color="black", weight=3]; 23.51/10.32 576 -> 685[label="",style="dashed", color="red", weight=0]; 23.51/10.32 576[label="vxw27 < vxw25 || vxw27 == vxw25 && vxw28 <= vxw26",fontsize=16,color="magenta"];576 -> 686[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 576 -> 687[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 577[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare1 (vxw47,vxw48) (vxw45,vxw46) False)",fontsize=16,color="black",shape="box"];577 -> 618[label="",style="solid", color="black", weight=3]; 23.51/10.32 578[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare1 (vxw47,vxw48) (vxw45,vxw46) True)",fontsize=16,color="black",shape="box"];578 -> 619[label="",style="solid", color="black", weight=3]; 23.51/10.32 579 -> 396[label="",style="dashed", color="red", weight=0]; 23.51/10.32 579[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];579 -> 620[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 579 -> 621[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 580[label="primEqInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];2289[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];580 -> 2289[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2289 -> 622[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2290[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];580 -> 2290[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2290 -> 623[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 581[label="primEqInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];2291[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];581 -> 2291[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2291 -> 624[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2292[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];581 -> 2292[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2292 -> 625[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 582[label="primEqInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];2293[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];582 -> 2293[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2293 -> 626[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2294[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];582 -> 2294[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2294 -> 627[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 583[label="primEqInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];2295[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];583 -> 2295[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2295 -> 628[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 2296[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];583 -> 2296[label="",style="solid", color="burlywood", weight=9]; 23.51/10.32 2296 -> 629[label="",style="solid", color="burlywood", weight=3]; 23.51/10.32 584 -> 396[label="",style="dashed", color="red", weight=0]; 23.51/10.32 584[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];584 -> 630[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 584 -> 631[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 585[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2297[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2297[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2297 -> 632[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2298[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2298[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2298 -> 633[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2299[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2299[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2299 -> 634[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2300[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2300[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2300 -> 635[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2301[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2301[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2301 -> 636[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2302[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2302[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2302 -> 637[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2303[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2303[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2303 -> 638[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2304[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2304[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2304 -> 639[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2305[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2305[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2305 -> 640[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2306[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2306[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2306 -> 641[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2307[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2307[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2307 -> 642[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2308[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2308[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2308 -> 643[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2309[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2309[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2309 -> 644[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2310[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];585 -> 2310[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2310 -> 645[label="",style="solid", color="blue", weight=3]; 23.51/10.32 586[label="False",fontsize=16,color="green",shape="box"];587[label="False",fontsize=16,color="green",shape="box"];588[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2311[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2311[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2311 -> 646[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2312[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2312[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2312 -> 647[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2313[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2313[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2313 -> 648[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2314[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2314[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2314 -> 649[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2315[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2315[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2315 -> 650[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2316[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2316[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2316 -> 651[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2317[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2317[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2317 -> 652[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2318[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2318[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2318 -> 653[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2319[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2319[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2319 -> 654[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2320[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2320[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2320 -> 655[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2321[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2321[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2321 -> 656[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2322[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2322[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2322 -> 657[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2323[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2323[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2323 -> 658[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2324[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];588 -> 2324[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2324 -> 659[label="",style="solid", color="blue", weight=3]; 23.51/10.32 589 -> 448[label="",style="dashed", color="red", weight=0]; 23.51/10.32 589[label="primEqInt vxw300 vxw4000",fontsize=16,color="magenta"];589 -> 660[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 589 -> 661[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 590[label="True",fontsize=16,color="green",shape="box"];591[label="primEqDouble (Double vxw300 vxw301) (Double vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];591 -> 662[label="",style="solid", color="black", weight=3]; 23.51/10.32 592[label="True",fontsize=16,color="green",shape="box"];593[label="False",fontsize=16,color="green",shape="box"];594[label="False",fontsize=16,color="green",shape="box"];595[label="False",fontsize=16,color="green",shape="box"];596[label="True",fontsize=16,color="green",shape="box"];597[label="False",fontsize=16,color="green",shape="box"];598[label="False",fontsize=16,color="green",shape="box"];599[label="False",fontsize=16,color="green",shape="box"];600[label="True",fontsize=16,color="green",shape="box"];601[label="True",fontsize=16,color="green",shape="box"];602[label="False",fontsize=16,color="green",shape="box"];603[label="False",fontsize=16,color="green",shape="box"];604[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2325[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2325[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2325 -> 663[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2326[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2326[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2326 -> 664[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2327[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2327[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2327 -> 665[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2328[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2328[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2328 -> 666[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2329[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2329[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2329 -> 667[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2330[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2330[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2330 -> 668[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2331[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2331[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2331 -> 669[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2332[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2332[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2332 -> 670[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2333[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2333[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2333 -> 671[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2334[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2334[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2334 -> 672[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2335[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2335[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2335 -> 673[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2336[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2336[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2336 -> 674[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2337[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2337[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2337 -> 675[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2338[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];604 -> 2338[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2338 -> 676[label="",style="solid", color="blue", weight=3]; 23.51/10.32 605 -> 396[label="",style="dashed", color="red", weight=0]; 23.51/10.32 605[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];605 -> 677[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 605 -> 678[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 606[label="False",fontsize=16,color="green",shape="box"];607[label="False",fontsize=16,color="green",shape="box"];608[label="True",fontsize=16,color="green",shape="box"];609[label="primEqFloat (Float vxw300 vxw301) (Float vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];609 -> 679[label="",style="solid", color="black", weight=3]; 23.51/10.32 610[label="primEqChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];610 -> 680[label="",style="solid", color="black", weight=3]; 23.51/10.32 611[label="True",fontsize=16,color="green",shape="box"];612[label="False",fontsize=16,color="green",shape="box"];613[label="False",fontsize=16,color="green",shape="box"];614[label="True",fontsize=16,color="green",shape="box"];615 -> 396[label="",style="dashed", color="red", weight=0]; 23.51/10.32 615[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];615 -> 681[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 615 -> 682[label="",style="dashed", color="magenta", weight=3]; 23.51/10.32 686[label="vxw27 < vxw25",fontsize=16,color="blue",shape="box"];2339[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2339[label="",style="solid", color="blue", weight=9]; 23.51/10.32 2339 -> 690[label="",style="solid", color="blue", weight=3]; 23.51/10.32 2340[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2340[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2340 -> 691[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2341[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2341[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2341 -> 692[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2342[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2342[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2342 -> 693[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2343[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2343[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2343 -> 694[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2344[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2344[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2344 -> 695[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2345[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2345[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2345 -> 696[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2346[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2346[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2346 -> 697[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2347[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2347[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2347 -> 698[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2348[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2348[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2348 -> 699[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2349[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2349[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2349 -> 700[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2350[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2350[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2350 -> 701[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2351[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2351[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2351 -> 702[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2352[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];686 -> 2352[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2352 -> 703[label="",style="solid", color="blue", weight=3]; 23.57/10.32 687 -> 396[label="",style="dashed", color="red", weight=0]; 23.57/10.32 687[label="vxw27 == vxw25 && vxw28 <= vxw26",fontsize=16,color="magenta"];687 -> 704[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 687 -> 705[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 685[label="vxw62 || vxw63",fontsize=16,color="burlywood",shape="triangle"];2353[label="vxw62/False",fontsize=10,color="white",style="solid",shape="box"];685 -> 2353[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2353 -> 706[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2354[label="vxw62/True",fontsize=10,color="white",style="solid",shape="box"];685 -> 2354[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2354 -> 707[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 618[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare0 (vxw47,vxw48) (vxw45,vxw46) otherwise)",fontsize=16,color="black",shape="box"];618 -> 708[label="",style="solid", color="black", weight=3]; 23.57/10.32 619[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) LT",fontsize=16,color="black",shape="box"];619 -> 709[label="",style="solid", color="black", weight=3]; 23.57/10.32 620[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2355[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2355[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2355 -> 710[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2356[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2356[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2356 -> 711[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2357[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2357[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2357 -> 712[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2358[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2358[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2358 -> 713[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2359[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2359[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2359 -> 714[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2360[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2360[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2360 -> 715[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2361[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2361[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2361 -> 716[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2362[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2362[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2362 -> 717[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2363[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2363[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2363 -> 718[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2364[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2364[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2364 -> 719[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2365[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2365[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2365 -> 720[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2366[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2366[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2366 -> 721[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2367[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2367[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2367 -> 722[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2368[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];620 -> 2368[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2368 -> 723[label="",style="solid", color="blue", weight=3]; 23.57/10.32 621[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2369[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2369[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2369 -> 724[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2370[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2370[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2370 -> 725[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2371[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2371[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2371 -> 726[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2372[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2372[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2372 -> 727[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2373[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2373[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2373 -> 728[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2374[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2374[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2374 -> 729[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2375[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2375[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2375 -> 730[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2376[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2376[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2376 -> 731[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2377[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2377[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2377 -> 732[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2378[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2378[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2378 -> 733[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2379[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2379[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2379 -> 734[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2380[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2380[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2380 -> 735[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2381[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2381[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2381 -> 736[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2382[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];621 -> 2382[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2382 -> 737[label="",style="solid", color="blue", weight=3]; 23.57/10.32 622[label="primEqInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2383[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];622 -> 2383[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2383 -> 738[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2384[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];622 -> 2384[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2384 -> 739[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 623[label="primEqInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];623 -> 740[label="",style="solid", color="black", weight=3]; 23.57/10.32 624[label="primEqInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2385[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];624 -> 2385[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2385 -> 741[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2386[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];624 -> 2386[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2386 -> 742[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 625[label="primEqInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2387[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];625 -> 2387[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2387 -> 743[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2388[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];625 -> 2388[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2388 -> 744[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 626[label="primEqInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];626 -> 745[label="",style="solid", color="black", weight=3]; 23.57/10.32 627[label="primEqInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2389[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];627 -> 2389[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2389 -> 746[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2390[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];627 -> 2390[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2390 -> 747[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 628[label="primEqInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];2391[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];628 -> 2391[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2391 -> 748[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2392[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];628 -> 2392[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2392 -> 749[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 629[label="primEqInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];2393[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];629 -> 2393[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2393 -> 750[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2394[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];629 -> 2394[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2394 -> 751[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 630[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2395[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2395[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2395 -> 752[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2396[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];630 -> 2396[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2396 -> 753[label="",style="solid", color="blue", weight=3]; 23.57/10.32 631[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2397[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];631 -> 2397[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2397 -> 754[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2398[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];631 -> 2398[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2398 -> 755[label="",style="solid", color="blue", weight=3]; 23.57/10.32 632 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 632[label="vxw300 == vxw4000",fontsize=16,color="magenta"];632 -> 756[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 632 -> 757[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 633 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 633[label="vxw300 == vxw4000",fontsize=16,color="magenta"];633 -> 758[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 633 -> 759[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 634 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 634[label="vxw300 == vxw4000",fontsize=16,color="magenta"];634 -> 760[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 634 -> 761[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 635 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 635[label="vxw300 == vxw4000",fontsize=16,color="magenta"];635 -> 762[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 635 -> 763[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 636 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 636[label="vxw300 == vxw4000",fontsize=16,color="magenta"];636 -> 764[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 636 -> 765[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 637 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 637[label="vxw300 == vxw4000",fontsize=16,color="magenta"];637 -> 766[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 637 -> 767[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 638 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 638[label="vxw300 == vxw4000",fontsize=16,color="magenta"];638 -> 768[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 638 -> 769[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 639 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 639[label="vxw300 == vxw4000",fontsize=16,color="magenta"];639 -> 770[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 639 -> 771[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 640 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 640[label="vxw300 == vxw4000",fontsize=16,color="magenta"];640 -> 772[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 640 -> 773[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 641 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 641[label="vxw300 == vxw4000",fontsize=16,color="magenta"];641 -> 774[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 641 -> 775[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 642 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 642[label="vxw300 == vxw4000",fontsize=16,color="magenta"];642 -> 776[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 642 -> 777[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 643 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 643[label="vxw300 == vxw4000",fontsize=16,color="magenta"];643 -> 778[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 643 -> 779[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 644 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 644[label="vxw300 == vxw4000",fontsize=16,color="magenta"];644 -> 780[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 644 -> 781[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 645 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 645[label="vxw300 == vxw4000",fontsize=16,color="magenta"];645 -> 782[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 645 -> 783[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 646 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 646[label="vxw300 == vxw4000",fontsize=16,color="magenta"];646 -> 784[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 646 -> 785[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 647 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 647[label="vxw300 == vxw4000",fontsize=16,color="magenta"];647 -> 786[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 647 -> 787[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 648 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 648[label="vxw300 == vxw4000",fontsize=16,color="magenta"];648 -> 788[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 648 -> 789[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 649 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 649[label="vxw300 == vxw4000",fontsize=16,color="magenta"];649 -> 790[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 649 -> 791[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 650 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 650[label="vxw300 == vxw4000",fontsize=16,color="magenta"];650 -> 792[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 650 -> 793[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 651 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 651[label="vxw300 == vxw4000",fontsize=16,color="magenta"];651 -> 794[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 651 -> 795[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 652 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 652[label="vxw300 == vxw4000",fontsize=16,color="magenta"];652 -> 796[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 652 -> 797[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 653 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 653[label="vxw300 == vxw4000",fontsize=16,color="magenta"];653 -> 798[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 653 -> 799[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 654 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 654[label="vxw300 == vxw4000",fontsize=16,color="magenta"];654 -> 800[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 654 -> 801[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 655 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 655[label="vxw300 == vxw4000",fontsize=16,color="magenta"];655 -> 802[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 655 -> 803[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 656 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 656[label="vxw300 == vxw4000",fontsize=16,color="magenta"];656 -> 804[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 656 -> 805[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 657 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 657[label="vxw300 == vxw4000",fontsize=16,color="magenta"];657 -> 806[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 657 -> 807[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 658 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 658[label="vxw300 == vxw4000",fontsize=16,color="magenta"];658 -> 808[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 658 -> 809[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 659 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 659[label="vxw300 == vxw4000",fontsize=16,color="magenta"];659 -> 810[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 659 -> 811[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 660[label="vxw4000",fontsize=16,color="green",shape="box"];661[label="vxw300",fontsize=16,color="green",shape="box"];662 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 662[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];662 -> 812[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 662 -> 813[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 663 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 663[label="vxw300 == vxw4000",fontsize=16,color="magenta"];663 -> 814[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 663 -> 815[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 664 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 664[label="vxw300 == vxw4000",fontsize=16,color="magenta"];664 -> 816[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 664 -> 817[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 665 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 665[label="vxw300 == vxw4000",fontsize=16,color="magenta"];665 -> 818[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 665 -> 819[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 666 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 666[label="vxw300 == vxw4000",fontsize=16,color="magenta"];666 -> 820[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 666 -> 821[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 667 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 667[label="vxw300 == vxw4000",fontsize=16,color="magenta"];667 -> 822[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 667 -> 823[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 668 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 668[label="vxw300 == vxw4000",fontsize=16,color="magenta"];668 -> 824[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 668 -> 825[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 669 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 669[label="vxw300 == vxw4000",fontsize=16,color="magenta"];669 -> 826[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 669 -> 827[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 670 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 670[label="vxw300 == vxw4000",fontsize=16,color="magenta"];670 -> 828[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 670 -> 829[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 671 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 671[label="vxw300 == vxw4000",fontsize=16,color="magenta"];671 -> 830[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 671 -> 831[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 672 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 672[label="vxw300 == vxw4000",fontsize=16,color="magenta"];672 -> 832[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 672 -> 833[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 673 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 673[label="vxw300 == vxw4000",fontsize=16,color="magenta"];673 -> 834[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 673 -> 835[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 674 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 674[label="vxw300 == vxw4000",fontsize=16,color="magenta"];674 -> 836[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 674 -> 837[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 675 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 675[label="vxw300 == vxw4000",fontsize=16,color="magenta"];675 -> 838[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 675 -> 839[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 676 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 676[label="vxw300 == vxw4000",fontsize=16,color="magenta"];676 -> 840[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 676 -> 841[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 677[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2399[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2399[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2399 -> 842[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2400[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2400[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2400 -> 843[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2401[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2401[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2401 -> 844[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2402[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2402[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2402 -> 845[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2403[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2403[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2403 -> 846[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2404[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2404[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2404 -> 847[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2405[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2405[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2405 -> 848[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2406[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2406[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2406 -> 849[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2407[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2407[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2407 -> 850[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2408[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2408[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2408 -> 851[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2409[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2409[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2409 -> 852[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2410[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2410[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2410 -> 853[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2411[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2411[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2411 -> 854[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2412[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];677 -> 2412[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2412 -> 855[label="",style="solid", color="blue", weight=3]; 23.57/10.32 678 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 678[label="vxw301 == vxw4001",fontsize=16,color="magenta"];678 -> 856[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 678 -> 857[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 679 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 679[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];679 -> 858[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 679 -> 859[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 680[label="primEqNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2413[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];680 -> 2413[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2413 -> 860[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2414[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];680 -> 2414[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2414 -> 861[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 681[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];2415[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2415[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2415 -> 862[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2416[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2416[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2416 -> 863[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2417[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2417[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2417 -> 864[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2418[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2418[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2418 -> 865[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2419[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2419[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2419 -> 866[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2420[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2420[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2420 -> 867[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2421[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2421[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2421 -> 868[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2422[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2422[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2422 -> 869[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2423[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2423[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2423 -> 870[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2424[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2424[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2424 -> 871[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2425[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2425[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2425 -> 872[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2426[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2426[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2426 -> 873[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2427[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2427[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2427 -> 874[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2428[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];681 -> 2428[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2428 -> 875[label="",style="solid", color="blue", weight=3]; 23.57/10.32 682 -> 396[label="",style="dashed", color="red", weight=0]; 23.57/10.32 682[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];682 -> 876[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 682 -> 877[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 690[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];690 -> 878[label="",style="solid", color="black", weight=3]; 23.57/10.32 691[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];691 -> 879[label="",style="solid", color="black", weight=3]; 23.57/10.32 692[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];692 -> 880[label="",style="solid", color="black", weight=3]; 23.57/10.32 693[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];693 -> 881[label="",style="solid", color="black", weight=3]; 23.57/10.32 694[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];694 -> 882[label="",style="solid", color="black", weight=3]; 23.57/10.32 695[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];695 -> 883[label="",style="solid", color="black", weight=3]; 23.57/10.32 696[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];696 -> 884[label="",style="solid", color="black", weight=3]; 23.57/10.32 697[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];697 -> 885[label="",style="solid", color="black", weight=3]; 23.57/10.32 698[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];698 -> 886[label="",style="solid", color="black", weight=3]; 23.57/10.32 699[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];699 -> 887[label="",style="solid", color="black", weight=3]; 23.57/10.32 700[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];700 -> 888[label="",style="solid", color="black", weight=3]; 23.57/10.32 701[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];701 -> 889[label="",style="solid", color="black", weight=3]; 23.57/10.32 702[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];702 -> 890[label="",style="solid", color="black", weight=3]; 23.57/10.32 703[label="vxw27 < vxw25",fontsize=16,color="black",shape="triangle"];703 -> 891[label="",style="solid", color="black", weight=3]; 23.57/10.32 704[label="vxw27 == vxw25",fontsize=16,color="blue",shape="box"];2429[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2429[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2429 -> 892[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2430[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2430[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2430 -> 893[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2431[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2431[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2431 -> 894[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2432[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2432[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2432 -> 895[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2433[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2433[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2433 -> 896[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2434[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2434[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2434 -> 897[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2435[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2435[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2435 -> 898[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2436[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2436[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2436 -> 899[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2437[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2437[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2437 -> 900[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2438[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2438[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2438 -> 901[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2439[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2439[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2439 -> 902[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2440[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2440[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2440 -> 903[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2441[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2441[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2441 -> 904[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2442[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];704 -> 2442[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2442 -> 905[label="",style="solid", color="blue", weight=3]; 23.57/10.32 705[label="vxw28 <= vxw26",fontsize=16,color="blue",shape="box"];2443[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2443[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2443 -> 906[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2444[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2444[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2444 -> 907[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2445[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2445[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2445 -> 908[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2446[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2446[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2446 -> 909[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2447[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2447[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2447 -> 910[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2448[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2448[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2448 -> 911[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2449[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2449[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2449 -> 912[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2450[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2450[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2450 -> 913[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2451[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2451[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2451 -> 914[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2452[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2452[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2452 -> 915[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2453[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2453[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2453 -> 916[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2454[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2454[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2454 -> 917[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2455[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2455[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2455 -> 918[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2456[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];705 -> 2456[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2456 -> 919[label="",style="solid", color="blue", weight=3]; 23.57/10.32 706[label="False || vxw63",fontsize=16,color="black",shape="box"];706 -> 920[label="",style="solid", color="black", weight=3]; 23.57/10.32 707[label="True || vxw63",fontsize=16,color="black",shape="box"];707 -> 921[label="",style="solid", color="black", weight=3]; 23.57/10.32 708[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) (compare0 (vxw47,vxw48) (vxw45,vxw46) True)",fontsize=16,color="black",shape="box"];708 -> 922[label="",style="solid", color="black", weight=3]; 23.57/10.32 709[label="(vxw47,vxw48) : (vxw45,vxw46) : vxw49",fontsize=16,color="green",shape="box"];710 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 710[label="vxw300 == vxw4000",fontsize=16,color="magenta"];710 -> 923[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 710 -> 924[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 711 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 711[label="vxw300 == vxw4000",fontsize=16,color="magenta"];711 -> 925[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 711 -> 926[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 712 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 712[label="vxw300 == vxw4000",fontsize=16,color="magenta"];712 -> 927[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 712 -> 928[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 713 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 713[label="vxw300 == vxw4000",fontsize=16,color="magenta"];713 -> 929[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 713 -> 930[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 714 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 714[label="vxw300 == vxw4000",fontsize=16,color="magenta"];714 -> 931[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 714 -> 932[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 715 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 715[label="vxw300 == vxw4000",fontsize=16,color="magenta"];715 -> 933[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 715 -> 934[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 716 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 716[label="vxw300 == vxw4000",fontsize=16,color="magenta"];716 -> 935[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 716 -> 936[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 717 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 717[label="vxw300 == vxw4000",fontsize=16,color="magenta"];717 -> 937[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 717 -> 938[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 718 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 718[label="vxw300 == vxw4000",fontsize=16,color="magenta"];718 -> 939[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 718 -> 940[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 719 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 719[label="vxw300 == vxw4000",fontsize=16,color="magenta"];719 -> 941[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 719 -> 942[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 720 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 720[label="vxw300 == vxw4000",fontsize=16,color="magenta"];720 -> 943[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 720 -> 944[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 721 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 721[label="vxw300 == vxw4000",fontsize=16,color="magenta"];721 -> 945[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 721 -> 946[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 722 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 722[label="vxw300 == vxw4000",fontsize=16,color="magenta"];722 -> 947[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 722 -> 948[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 723 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 723[label="vxw300 == vxw4000",fontsize=16,color="magenta"];723 -> 949[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 723 -> 950[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 724 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 724[label="vxw301 == vxw4001",fontsize=16,color="magenta"];724 -> 951[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 724 -> 952[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 725 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 725[label="vxw301 == vxw4001",fontsize=16,color="magenta"];725 -> 953[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 725 -> 954[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 726 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 726[label="vxw301 == vxw4001",fontsize=16,color="magenta"];726 -> 955[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 726 -> 956[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 727 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 727[label="vxw301 == vxw4001",fontsize=16,color="magenta"];727 -> 957[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 727 -> 958[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 728 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 728[label="vxw301 == vxw4001",fontsize=16,color="magenta"];728 -> 959[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 728 -> 960[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 729 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 729[label="vxw301 == vxw4001",fontsize=16,color="magenta"];729 -> 961[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 729 -> 962[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 730 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 730[label="vxw301 == vxw4001",fontsize=16,color="magenta"];730 -> 963[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 730 -> 964[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 731 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 731[label="vxw301 == vxw4001",fontsize=16,color="magenta"];731 -> 965[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 731 -> 966[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 732 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 732[label="vxw301 == vxw4001",fontsize=16,color="magenta"];732 -> 967[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 732 -> 968[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 733 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 733[label="vxw301 == vxw4001",fontsize=16,color="magenta"];733 -> 969[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 733 -> 970[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 734 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 734[label="vxw301 == vxw4001",fontsize=16,color="magenta"];734 -> 971[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 734 -> 972[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 735 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 735[label="vxw301 == vxw4001",fontsize=16,color="magenta"];735 -> 973[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 735 -> 974[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 736 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 736[label="vxw301 == vxw4001",fontsize=16,color="magenta"];736 -> 975[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 736 -> 976[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 737 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 737[label="vxw301 == vxw4001",fontsize=16,color="magenta"];737 -> 977[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 737 -> 978[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 738[label="primEqInt (Pos (Succ vxw3000)) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];738 -> 979[label="",style="solid", color="black", weight=3]; 23.57/10.32 739[label="primEqInt (Pos (Succ vxw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];739 -> 980[label="",style="solid", color="black", weight=3]; 23.57/10.32 740[label="False",fontsize=16,color="green",shape="box"];741[label="primEqInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];741 -> 981[label="",style="solid", color="black", weight=3]; 23.57/10.32 742[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];742 -> 982[label="",style="solid", color="black", weight=3]; 23.57/10.32 743[label="primEqInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];743 -> 983[label="",style="solid", color="black", weight=3]; 23.57/10.32 744[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];744 -> 984[label="",style="solid", color="black", weight=3]; 23.57/10.32 745[label="False",fontsize=16,color="green",shape="box"];746[label="primEqInt (Neg (Succ vxw3000)) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];746 -> 985[label="",style="solid", color="black", weight=3]; 23.57/10.32 747[label="primEqInt (Neg (Succ vxw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];747 -> 986[label="",style="solid", color="black", weight=3]; 23.57/10.32 748[label="primEqInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];748 -> 987[label="",style="solid", color="black", weight=3]; 23.57/10.32 749[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];749 -> 988[label="",style="solid", color="black", weight=3]; 23.57/10.32 750[label="primEqInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];750 -> 989[label="",style="solid", color="black", weight=3]; 23.57/10.32 751[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];751 -> 990[label="",style="solid", color="black", weight=3]; 23.57/10.32 752 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 752[label="vxw300 == vxw4000",fontsize=16,color="magenta"];752 -> 991[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 752 -> 992[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 753 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 753[label="vxw300 == vxw4000",fontsize=16,color="magenta"];753 -> 993[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 753 -> 994[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 754 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 754[label="vxw301 == vxw4001",fontsize=16,color="magenta"];754 -> 995[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 754 -> 996[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 755 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 755[label="vxw301 == vxw4001",fontsize=16,color="magenta"];755 -> 997[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 755 -> 998[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 756[label="vxw4000",fontsize=16,color="green",shape="box"];757[label="vxw300",fontsize=16,color="green",shape="box"];758[label="vxw4000",fontsize=16,color="green",shape="box"];759[label="vxw300",fontsize=16,color="green",shape="box"];760[label="vxw4000",fontsize=16,color="green",shape="box"];761[label="vxw300",fontsize=16,color="green",shape="box"];762[label="vxw4000",fontsize=16,color="green",shape="box"];763[label="vxw300",fontsize=16,color="green",shape="box"];764[label="vxw4000",fontsize=16,color="green",shape="box"];765[label="vxw300",fontsize=16,color="green",shape="box"];766[label="vxw4000",fontsize=16,color="green",shape="box"];767[label="vxw300",fontsize=16,color="green",shape="box"];768[label="vxw4000",fontsize=16,color="green",shape="box"];769[label="vxw300",fontsize=16,color="green",shape="box"];770[label="vxw4000",fontsize=16,color="green",shape="box"];771[label="vxw300",fontsize=16,color="green",shape="box"];772[label="vxw4000",fontsize=16,color="green",shape="box"];773[label="vxw300",fontsize=16,color="green",shape="box"];774[label="vxw4000",fontsize=16,color="green",shape="box"];775[label="vxw300",fontsize=16,color="green",shape="box"];776[label="vxw4000",fontsize=16,color="green",shape="box"];777[label="vxw300",fontsize=16,color="green",shape="box"];778[label="vxw4000",fontsize=16,color="green",shape="box"];779[label="vxw300",fontsize=16,color="green",shape="box"];780[label="vxw4000",fontsize=16,color="green",shape="box"];781[label="vxw300",fontsize=16,color="green",shape="box"];782[label="vxw4000",fontsize=16,color="green",shape="box"];783[label="vxw300",fontsize=16,color="green",shape="box"];784[label="vxw4000",fontsize=16,color="green",shape="box"];785[label="vxw300",fontsize=16,color="green",shape="box"];786[label="vxw4000",fontsize=16,color="green",shape="box"];787[label="vxw300",fontsize=16,color="green",shape="box"];788[label="vxw4000",fontsize=16,color="green",shape="box"];789[label="vxw300",fontsize=16,color="green",shape="box"];790[label="vxw4000",fontsize=16,color="green",shape="box"];791[label="vxw300",fontsize=16,color="green",shape="box"];792[label="vxw4000",fontsize=16,color="green",shape="box"];793[label="vxw300",fontsize=16,color="green",shape="box"];794[label="vxw4000",fontsize=16,color="green",shape="box"];795[label="vxw300",fontsize=16,color="green",shape="box"];796[label="vxw4000",fontsize=16,color="green",shape="box"];797[label="vxw300",fontsize=16,color="green",shape="box"];798[label="vxw4000",fontsize=16,color="green",shape="box"];799[label="vxw300",fontsize=16,color="green",shape="box"];800[label="vxw4000",fontsize=16,color="green",shape="box"];801[label="vxw300",fontsize=16,color="green",shape="box"];802[label="vxw4000",fontsize=16,color="green",shape="box"];803[label="vxw300",fontsize=16,color="green",shape="box"];804[label="vxw4000",fontsize=16,color="green",shape="box"];805[label="vxw300",fontsize=16,color="green",shape="box"];806[label="vxw4000",fontsize=16,color="green",shape="box"];807[label="vxw300",fontsize=16,color="green",shape="box"];808[label="vxw4000",fontsize=16,color="green",shape="box"];809[label="vxw300",fontsize=16,color="green",shape="box"];810[label="vxw4000",fontsize=16,color="green",shape="box"];811[label="vxw300",fontsize=16,color="green",shape="box"];812[label="vxw301 * vxw4000",fontsize=16,color="black",shape="triangle"];812 -> 999[label="",style="solid", color="black", weight=3]; 23.57/10.32 813 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.32 813[label="vxw300 * vxw4001",fontsize=16,color="magenta"];813 -> 1000[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 813 -> 1001[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 814[label="vxw4000",fontsize=16,color="green",shape="box"];815[label="vxw300",fontsize=16,color="green",shape="box"];816[label="vxw4000",fontsize=16,color="green",shape="box"];817[label="vxw300",fontsize=16,color="green",shape="box"];818[label="vxw4000",fontsize=16,color="green",shape="box"];819[label="vxw300",fontsize=16,color="green",shape="box"];820[label="vxw4000",fontsize=16,color="green",shape="box"];821[label="vxw300",fontsize=16,color="green",shape="box"];822[label="vxw4000",fontsize=16,color="green",shape="box"];823[label="vxw300",fontsize=16,color="green",shape="box"];824[label="vxw4000",fontsize=16,color="green",shape="box"];825[label="vxw300",fontsize=16,color="green",shape="box"];826[label="vxw4000",fontsize=16,color="green",shape="box"];827[label="vxw300",fontsize=16,color="green",shape="box"];828[label="vxw4000",fontsize=16,color="green",shape="box"];829[label="vxw300",fontsize=16,color="green",shape="box"];830[label="vxw4000",fontsize=16,color="green",shape="box"];831[label="vxw300",fontsize=16,color="green",shape="box"];832[label="vxw4000",fontsize=16,color="green",shape="box"];833[label="vxw300",fontsize=16,color="green",shape="box"];834[label="vxw4000",fontsize=16,color="green",shape="box"];835[label="vxw300",fontsize=16,color="green",shape="box"];836[label="vxw4000",fontsize=16,color="green",shape="box"];837[label="vxw300",fontsize=16,color="green",shape="box"];838[label="vxw4000",fontsize=16,color="green",shape="box"];839[label="vxw300",fontsize=16,color="green",shape="box"];840[label="vxw4000",fontsize=16,color="green",shape="box"];841[label="vxw300",fontsize=16,color="green",shape="box"];842 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 842[label="vxw300 == vxw4000",fontsize=16,color="magenta"];842 -> 1002[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 842 -> 1003[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 843 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 843[label="vxw300 == vxw4000",fontsize=16,color="magenta"];843 -> 1004[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 843 -> 1005[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 844 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 844[label="vxw300 == vxw4000",fontsize=16,color="magenta"];844 -> 1006[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 844 -> 1007[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 845 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 845[label="vxw300 == vxw4000",fontsize=16,color="magenta"];845 -> 1008[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 845 -> 1009[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 846 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 846[label="vxw300 == vxw4000",fontsize=16,color="magenta"];846 -> 1010[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 846 -> 1011[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 847 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 847[label="vxw300 == vxw4000",fontsize=16,color="magenta"];847 -> 1012[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 847 -> 1013[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 848 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 848[label="vxw300 == vxw4000",fontsize=16,color="magenta"];848 -> 1014[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 848 -> 1015[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 849 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 849[label="vxw300 == vxw4000",fontsize=16,color="magenta"];849 -> 1016[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 849 -> 1017[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 850 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 850[label="vxw300 == vxw4000",fontsize=16,color="magenta"];850 -> 1018[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 850 -> 1019[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 851 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 851[label="vxw300 == vxw4000",fontsize=16,color="magenta"];851 -> 1020[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 851 -> 1021[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 852 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 852[label="vxw300 == vxw4000",fontsize=16,color="magenta"];852 -> 1022[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 852 -> 1023[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 853 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 853[label="vxw300 == vxw4000",fontsize=16,color="magenta"];853 -> 1024[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 853 -> 1025[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 854 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 854[label="vxw300 == vxw4000",fontsize=16,color="magenta"];854 -> 1026[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 854 -> 1027[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 855 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 855[label="vxw300 == vxw4000",fontsize=16,color="magenta"];855 -> 1028[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 855 -> 1029[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 856[label="vxw4001",fontsize=16,color="green",shape="box"];857[label="vxw301",fontsize=16,color="green",shape="box"];858 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.32 858[label="vxw301 * vxw4000",fontsize=16,color="magenta"];858 -> 1030[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 858 -> 1031[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 859 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.32 859[label="vxw300 * vxw4001",fontsize=16,color="magenta"];859 -> 1032[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 859 -> 1033[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 860[label="primEqNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];2457[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];860 -> 2457[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2457 -> 1034[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2458[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];860 -> 2458[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2458 -> 1035[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 861[label="primEqNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];2459[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];861 -> 2459[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2459 -> 1036[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2460[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];861 -> 2460[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2460 -> 1037[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 862 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 862[label="vxw300 == vxw4000",fontsize=16,color="magenta"];862 -> 1038[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 862 -> 1039[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 863 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 863[label="vxw300 == vxw4000",fontsize=16,color="magenta"];863 -> 1040[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 863 -> 1041[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 864 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 864[label="vxw300 == vxw4000",fontsize=16,color="magenta"];864 -> 1042[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 864 -> 1043[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 865 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 865[label="vxw300 == vxw4000",fontsize=16,color="magenta"];865 -> 1044[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 865 -> 1045[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 866 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 866[label="vxw300 == vxw4000",fontsize=16,color="magenta"];866 -> 1046[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 866 -> 1047[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 867 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 867[label="vxw300 == vxw4000",fontsize=16,color="magenta"];867 -> 1048[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 867 -> 1049[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 868 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 868[label="vxw300 == vxw4000",fontsize=16,color="magenta"];868 -> 1050[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 868 -> 1051[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 869 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 869[label="vxw300 == vxw4000",fontsize=16,color="magenta"];869 -> 1052[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 869 -> 1053[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 870 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 870[label="vxw300 == vxw4000",fontsize=16,color="magenta"];870 -> 1054[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 870 -> 1055[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 871 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 871[label="vxw300 == vxw4000",fontsize=16,color="magenta"];871 -> 1056[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 871 -> 1057[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 872 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 872[label="vxw300 == vxw4000",fontsize=16,color="magenta"];872 -> 1058[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 872 -> 1059[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 873 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 873[label="vxw300 == vxw4000",fontsize=16,color="magenta"];873 -> 1060[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 873 -> 1061[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 874 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 874[label="vxw300 == vxw4000",fontsize=16,color="magenta"];874 -> 1062[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 874 -> 1063[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 875 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 875[label="vxw300 == vxw4000",fontsize=16,color="magenta"];875 -> 1064[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 875 -> 1065[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 876[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];2461[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2461[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2461 -> 1066[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2462[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2462[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2462 -> 1067[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2463[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2463[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2463 -> 1068[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2464[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2464[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2464 -> 1069[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2465[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2465[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2465 -> 1070[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2466[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2466[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2466 -> 1071[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2467[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2467[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2467 -> 1072[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2468[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2468[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2468 -> 1073[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2469[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2469[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2469 -> 1074[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2470[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2470[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2470 -> 1075[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2471[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2471[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2471 -> 1076[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2472[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2472[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2472 -> 1077[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2473[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2473[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2473 -> 1078[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2474[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];876 -> 2474[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2474 -> 1079[label="",style="solid", color="blue", weight=3]; 23.57/10.32 877[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];2475[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2475[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2475 -> 1080[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2476[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2476[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2476 -> 1081[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2477[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2477[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2477 -> 1082[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2478[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2478[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2478 -> 1083[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2479[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2479[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2479 -> 1084[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2480[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2480[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2480 -> 1085[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2481[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2481[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2481 -> 1086[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2482[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2482[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2482 -> 1087[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2483[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2483[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2483 -> 1088[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2484[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2484[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2484 -> 1089[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2485[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2485[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2485 -> 1090[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2486[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2486[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2486 -> 1091[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2487[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2487[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2487 -> 1092[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2488[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];877 -> 2488[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2488 -> 1093[label="",style="solid", color="blue", weight=3]; 23.57/10.32 878 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 878[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];878 -> 1094[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 878 -> 1095[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 879 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 879[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];879 -> 1096[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 879 -> 1097[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 880 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 880[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];880 -> 1098[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 880 -> 1099[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 881 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 881[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];881 -> 1100[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 881 -> 1101[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 882 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 882[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];882 -> 1102[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 882 -> 1103[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 883 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 883[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];883 -> 1104[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 883 -> 1105[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 884 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 884[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];884 -> 1106[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 884 -> 1107[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 885 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 885[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];885 -> 1108[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 885 -> 1109[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 886 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 886[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];886 -> 1110[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 886 -> 1111[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 887 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 887[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];887 -> 1112[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 887 -> 1113[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 888 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 888[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];888 -> 1114[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 888 -> 1115[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 889 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 889[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];889 -> 1116[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 889 -> 1117[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 890 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 890[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];890 -> 1118[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 890 -> 1119[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 891 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 891[label="compare vxw27 vxw25 == LT",fontsize=16,color="magenta"];891 -> 1120[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 891 -> 1121[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 892 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 892[label="vxw27 == vxw25",fontsize=16,color="magenta"];892 -> 1122[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 892 -> 1123[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 893 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 893[label="vxw27 == vxw25",fontsize=16,color="magenta"];893 -> 1124[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 893 -> 1125[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 894 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 894[label="vxw27 == vxw25",fontsize=16,color="magenta"];894 -> 1126[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 894 -> 1127[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 895 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 895[label="vxw27 == vxw25",fontsize=16,color="magenta"];895 -> 1128[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 895 -> 1129[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 896 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 896[label="vxw27 == vxw25",fontsize=16,color="magenta"];896 -> 1130[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 896 -> 1131[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 897 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 897[label="vxw27 == vxw25",fontsize=16,color="magenta"];897 -> 1132[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 897 -> 1133[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 898 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 898[label="vxw27 == vxw25",fontsize=16,color="magenta"];898 -> 1134[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 898 -> 1135[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 899 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 899[label="vxw27 == vxw25",fontsize=16,color="magenta"];899 -> 1136[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 899 -> 1137[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 900 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 900[label="vxw27 == vxw25",fontsize=16,color="magenta"];900 -> 1138[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 900 -> 1139[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 901 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 901[label="vxw27 == vxw25",fontsize=16,color="magenta"];901 -> 1140[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 901 -> 1141[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 902 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 902[label="vxw27 == vxw25",fontsize=16,color="magenta"];902 -> 1142[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 902 -> 1143[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 903 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 903[label="vxw27 == vxw25",fontsize=16,color="magenta"];903 -> 1144[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 903 -> 1145[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 904 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 904[label="vxw27 == vxw25",fontsize=16,color="magenta"];904 -> 1146[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 904 -> 1147[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 905 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 905[label="vxw27 == vxw25",fontsize=16,color="magenta"];905 -> 1148[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 905 -> 1149[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 906[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];906 -> 1150[label="",style="solid", color="black", weight=3]; 23.57/10.32 907[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2489[label="vxw28/(vxw280,vxw281,vxw282)",fontsize=10,color="white",style="solid",shape="box"];907 -> 2489[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2489 -> 1151[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 908[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2490[label="vxw28/Left vxw280",fontsize=10,color="white",style="solid",shape="box"];908 -> 2490[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2490 -> 1152[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2491[label="vxw28/Right vxw280",fontsize=10,color="white",style="solid",shape="box"];908 -> 2491[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2491 -> 1153[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 909[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];909 -> 1154[label="",style="solid", color="black", weight=3]; 23.57/10.32 910[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2492[label="vxw28/False",fontsize=10,color="white",style="solid",shape="box"];910 -> 2492[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2492 -> 1155[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2493[label="vxw28/True",fontsize=10,color="white",style="solid",shape="box"];910 -> 2493[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2493 -> 1156[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 911[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];911 -> 1157[label="",style="solid", color="black", weight=3]; 23.57/10.32 912[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];912 -> 1158[label="",style="solid", color="black", weight=3]; 23.57/10.32 913[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];913 -> 1159[label="",style="solid", color="black", weight=3]; 23.57/10.32 914[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];914 -> 1160[label="",style="solid", color="black", weight=3]; 23.57/10.32 915[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];915 -> 1161[label="",style="solid", color="black", weight=3]; 23.57/10.32 916[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2494[label="vxw28/LT",fontsize=10,color="white",style="solid",shape="box"];916 -> 2494[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2494 -> 1162[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2495[label="vxw28/EQ",fontsize=10,color="white",style="solid",shape="box"];916 -> 2495[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2495 -> 1163[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2496[label="vxw28/GT",fontsize=10,color="white",style="solid",shape="box"];916 -> 2496[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2496 -> 1164[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 917[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2497[label="vxw28/Nothing",fontsize=10,color="white",style="solid",shape="box"];917 -> 2497[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2497 -> 1165[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2498[label="vxw28/Just vxw280",fontsize=10,color="white",style="solid",shape="box"];917 -> 2498[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2498 -> 1166[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 918[label="vxw28 <= vxw26",fontsize=16,color="black",shape="triangle"];918 -> 1167[label="",style="solid", color="black", weight=3]; 23.57/10.32 919[label="vxw28 <= vxw26",fontsize=16,color="burlywood",shape="triangle"];2499[label="vxw28/(vxw280,vxw281)",fontsize=10,color="white",style="solid",shape="box"];919 -> 2499[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2499 -> 1168[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 920[label="vxw63",fontsize=16,color="green",shape="box"];921[label="True",fontsize=16,color="green",shape="box"];922[label="List.insertBy0 (vxw45,vxw46) compare (vxw47,vxw48) vxw49 ((vxw45,vxw46) : vxw49) GT",fontsize=16,color="black",shape="box"];922 -> 1169[label="",style="solid", color="black", weight=3]; 23.57/10.32 923[label="vxw4000",fontsize=16,color="green",shape="box"];924[label="vxw300",fontsize=16,color="green",shape="box"];925[label="vxw4000",fontsize=16,color="green",shape="box"];926[label="vxw300",fontsize=16,color="green",shape="box"];927[label="vxw4000",fontsize=16,color="green",shape="box"];928[label="vxw300",fontsize=16,color="green",shape="box"];929[label="vxw4000",fontsize=16,color="green",shape="box"];930[label="vxw300",fontsize=16,color="green",shape="box"];931[label="vxw4000",fontsize=16,color="green",shape="box"];932[label="vxw300",fontsize=16,color="green",shape="box"];933[label="vxw4000",fontsize=16,color="green",shape="box"];934[label="vxw300",fontsize=16,color="green",shape="box"];935[label="vxw4000",fontsize=16,color="green",shape="box"];936[label="vxw300",fontsize=16,color="green",shape="box"];937[label="vxw4000",fontsize=16,color="green",shape="box"];938[label="vxw300",fontsize=16,color="green",shape="box"];939[label="vxw4000",fontsize=16,color="green",shape="box"];940[label="vxw300",fontsize=16,color="green",shape="box"];941[label="vxw4000",fontsize=16,color="green",shape="box"];942[label="vxw300",fontsize=16,color="green",shape="box"];943[label="vxw4000",fontsize=16,color="green",shape="box"];944[label="vxw300",fontsize=16,color="green",shape="box"];945[label="vxw4000",fontsize=16,color="green",shape="box"];946[label="vxw300",fontsize=16,color="green",shape="box"];947[label="vxw4000",fontsize=16,color="green",shape="box"];948[label="vxw300",fontsize=16,color="green",shape="box"];949[label="vxw4000",fontsize=16,color="green",shape="box"];950[label="vxw300",fontsize=16,color="green",shape="box"];951[label="vxw4001",fontsize=16,color="green",shape="box"];952[label="vxw301",fontsize=16,color="green",shape="box"];953[label="vxw4001",fontsize=16,color="green",shape="box"];954[label="vxw301",fontsize=16,color="green",shape="box"];955[label="vxw4001",fontsize=16,color="green",shape="box"];956[label="vxw301",fontsize=16,color="green",shape="box"];957[label="vxw4001",fontsize=16,color="green",shape="box"];958[label="vxw301",fontsize=16,color="green",shape="box"];959[label="vxw4001",fontsize=16,color="green",shape="box"];960[label="vxw301",fontsize=16,color="green",shape="box"];961[label="vxw4001",fontsize=16,color="green",shape="box"];962[label="vxw301",fontsize=16,color="green",shape="box"];963[label="vxw4001",fontsize=16,color="green",shape="box"];964[label="vxw301",fontsize=16,color="green",shape="box"];965[label="vxw4001",fontsize=16,color="green",shape="box"];966[label="vxw301",fontsize=16,color="green",shape="box"];967[label="vxw4001",fontsize=16,color="green",shape="box"];968[label="vxw301",fontsize=16,color="green",shape="box"];969[label="vxw4001",fontsize=16,color="green",shape="box"];970[label="vxw301",fontsize=16,color="green",shape="box"];971[label="vxw4001",fontsize=16,color="green",shape="box"];972[label="vxw301",fontsize=16,color="green",shape="box"];973[label="vxw4001",fontsize=16,color="green",shape="box"];974[label="vxw301",fontsize=16,color="green",shape="box"];975[label="vxw4001",fontsize=16,color="green",shape="box"];976[label="vxw301",fontsize=16,color="green",shape="box"];977[label="vxw4001",fontsize=16,color="green",shape="box"];978[label="vxw301",fontsize=16,color="green",shape="box"];979 -> 680[label="",style="dashed", color="red", weight=0]; 23.57/10.32 979[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];979 -> 1170[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 979 -> 1171[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 980[label="False",fontsize=16,color="green",shape="box"];981[label="False",fontsize=16,color="green",shape="box"];982[label="True",fontsize=16,color="green",shape="box"];983[label="False",fontsize=16,color="green",shape="box"];984[label="True",fontsize=16,color="green",shape="box"];985 -> 680[label="",style="dashed", color="red", weight=0]; 23.57/10.32 985[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];985 -> 1172[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 985 -> 1173[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 986[label="False",fontsize=16,color="green",shape="box"];987[label="False",fontsize=16,color="green",shape="box"];988[label="True",fontsize=16,color="green",shape="box"];989[label="False",fontsize=16,color="green",shape="box"];990[label="True",fontsize=16,color="green",shape="box"];991[label="vxw4000",fontsize=16,color="green",shape="box"];992[label="vxw300",fontsize=16,color="green",shape="box"];993[label="vxw4000",fontsize=16,color="green",shape="box"];994[label="vxw300",fontsize=16,color="green",shape="box"];995[label="vxw4001",fontsize=16,color="green",shape="box"];996[label="vxw301",fontsize=16,color="green",shape="box"];997[label="vxw4001",fontsize=16,color="green",shape="box"];998[label="vxw301",fontsize=16,color="green",shape="box"];999[label="primMulInt vxw301 vxw4000",fontsize=16,color="burlywood",shape="triangle"];2500[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];999 -> 2500[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2500 -> 1174[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2501[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];999 -> 2501[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2501 -> 1175[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1000[label="vxw4001",fontsize=16,color="green",shape="box"];1001[label="vxw300",fontsize=16,color="green",shape="box"];1002[label="vxw4000",fontsize=16,color="green",shape="box"];1003[label="vxw300",fontsize=16,color="green",shape="box"];1004[label="vxw4000",fontsize=16,color="green",shape="box"];1005[label="vxw300",fontsize=16,color="green",shape="box"];1006[label="vxw4000",fontsize=16,color="green",shape="box"];1007[label="vxw300",fontsize=16,color="green",shape="box"];1008[label="vxw4000",fontsize=16,color="green",shape="box"];1009[label="vxw300",fontsize=16,color="green",shape="box"];1010[label="vxw4000",fontsize=16,color="green",shape="box"];1011[label="vxw300",fontsize=16,color="green",shape="box"];1012[label="vxw4000",fontsize=16,color="green",shape="box"];1013[label="vxw300",fontsize=16,color="green",shape="box"];1014[label="vxw4000",fontsize=16,color="green",shape="box"];1015[label="vxw300",fontsize=16,color="green",shape="box"];1016[label="vxw4000",fontsize=16,color="green",shape="box"];1017[label="vxw300",fontsize=16,color="green",shape="box"];1018[label="vxw4000",fontsize=16,color="green",shape="box"];1019[label="vxw300",fontsize=16,color="green",shape="box"];1020[label="vxw4000",fontsize=16,color="green",shape="box"];1021[label="vxw300",fontsize=16,color="green",shape="box"];1022[label="vxw4000",fontsize=16,color="green",shape="box"];1023[label="vxw300",fontsize=16,color="green",shape="box"];1024[label="vxw4000",fontsize=16,color="green",shape="box"];1025[label="vxw300",fontsize=16,color="green",shape="box"];1026[label="vxw4000",fontsize=16,color="green",shape="box"];1027[label="vxw300",fontsize=16,color="green",shape="box"];1028[label="vxw4000",fontsize=16,color="green",shape="box"];1029[label="vxw300",fontsize=16,color="green",shape="box"];1030[label="vxw4000",fontsize=16,color="green",shape="box"];1031[label="vxw301",fontsize=16,color="green",shape="box"];1032[label="vxw4001",fontsize=16,color="green",shape="box"];1033[label="vxw300",fontsize=16,color="green",shape="box"];1034[label="primEqNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];1034 -> 1176[label="",style="solid", color="black", weight=3]; 23.57/10.32 1035[label="primEqNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];1035 -> 1177[label="",style="solid", color="black", weight=3]; 23.57/10.32 1036[label="primEqNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];1036 -> 1178[label="",style="solid", color="black", weight=3]; 23.57/10.32 1037[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];1037 -> 1179[label="",style="solid", color="black", weight=3]; 23.57/10.32 1038[label="vxw4000",fontsize=16,color="green",shape="box"];1039[label="vxw300",fontsize=16,color="green",shape="box"];1040[label="vxw4000",fontsize=16,color="green",shape="box"];1041[label="vxw300",fontsize=16,color="green",shape="box"];1042[label="vxw4000",fontsize=16,color="green",shape="box"];1043[label="vxw300",fontsize=16,color="green",shape="box"];1044[label="vxw4000",fontsize=16,color="green",shape="box"];1045[label="vxw300",fontsize=16,color="green",shape="box"];1046[label="vxw4000",fontsize=16,color="green",shape="box"];1047[label="vxw300",fontsize=16,color="green",shape="box"];1048[label="vxw4000",fontsize=16,color="green",shape="box"];1049[label="vxw300",fontsize=16,color="green",shape="box"];1050[label="vxw4000",fontsize=16,color="green",shape="box"];1051[label="vxw300",fontsize=16,color="green",shape="box"];1052[label="vxw4000",fontsize=16,color="green",shape="box"];1053[label="vxw300",fontsize=16,color="green",shape="box"];1054[label="vxw4000",fontsize=16,color="green",shape="box"];1055[label="vxw300",fontsize=16,color="green",shape="box"];1056[label="vxw4000",fontsize=16,color="green",shape="box"];1057[label="vxw300",fontsize=16,color="green",shape="box"];1058[label="vxw4000",fontsize=16,color="green",shape="box"];1059[label="vxw300",fontsize=16,color="green",shape="box"];1060[label="vxw4000",fontsize=16,color="green",shape="box"];1061[label="vxw300",fontsize=16,color="green",shape="box"];1062[label="vxw4000",fontsize=16,color="green",shape="box"];1063[label="vxw300",fontsize=16,color="green",shape="box"];1064[label="vxw4000",fontsize=16,color="green",shape="box"];1065[label="vxw300",fontsize=16,color="green",shape="box"];1066 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1066[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1066 -> 1180[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1066 -> 1181[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1067 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1067[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1067 -> 1182[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1067 -> 1183[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1068 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1068[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1068 -> 1184[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1068 -> 1185[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1069 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1069[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1069 -> 1186[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1069 -> 1187[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1070 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1070[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1070 -> 1188[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1070 -> 1189[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1071 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1071[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1071 -> 1190[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1071 -> 1191[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1072 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1072[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1072 -> 1192[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1072 -> 1193[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1073 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1073[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1073 -> 1194[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1073 -> 1195[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1074 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1074[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1074 -> 1196[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1074 -> 1197[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1075 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1075[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1075 -> 1198[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1075 -> 1199[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1076 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1076[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1076 -> 1200[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1076 -> 1201[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1077 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1077[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1077 -> 1202[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1077 -> 1203[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1078 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1078[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1078 -> 1204[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1078 -> 1205[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1079 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1079[label="vxw301 == vxw4001",fontsize=16,color="magenta"];1079 -> 1206[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1079 -> 1207[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1080 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1080[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1080 -> 1208[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1080 -> 1209[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1081 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1081[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1081 -> 1210[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1081 -> 1211[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1082 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1082[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1082 -> 1212[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1082 -> 1213[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1083 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1083[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1083 -> 1214[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1083 -> 1215[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1084 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1084[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1084 -> 1216[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1084 -> 1217[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1085 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1085[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1085 -> 1218[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1085 -> 1219[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1086 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1086[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1086 -> 1220[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1086 -> 1221[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1087 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1087[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1087 -> 1222[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1087 -> 1223[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1088 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1088[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1088 -> 1224[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1088 -> 1225[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1089 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1089[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1089 -> 1226[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1089 -> 1227[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1090 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1090[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1090 -> 1228[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1090 -> 1229[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1091 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1091[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1091 -> 1230[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1091 -> 1231[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1092 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1092[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1092 -> 1232[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1092 -> 1233[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1093 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1093[label="vxw302 == vxw4002",fontsize=16,color="magenta"];1093 -> 1234[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1093 -> 1235[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1094[label="LT",fontsize=16,color="green",shape="box"];1095[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1095 -> 1236[label="",style="solid", color="black", weight=3]; 23.57/10.32 1096[label="LT",fontsize=16,color="green",shape="box"];1097[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1097 -> 1237[label="",style="solid", color="black", weight=3]; 23.57/10.32 1098[label="LT",fontsize=16,color="green",shape="box"];1099[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1099 -> 1238[label="",style="solid", color="black", weight=3]; 23.57/10.32 1100[label="LT",fontsize=16,color="green",shape="box"];1101[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2502[label="vxw27/()",fontsize=10,color="white",style="solid",shape="box"];1101 -> 2502[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2502 -> 1239[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1102[label="LT",fontsize=16,color="green",shape="box"];1103[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1103 -> 1240[label="",style="solid", color="black", weight=3]; 23.57/10.32 1104[label="LT",fontsize=16,color="green",shape="box"];1105[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2503[label="vxw27/vxw270 : vxw271",fontsize=10,color="white",style="solid",shape="box"];1105 -> 2503[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2503 -> 1241[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2504[label="vxw27/[]",fontsize=10,color="white",style="solid",shape="box"];1105 -> 2504[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2504 -> 1242[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1106[label="LT",fontsize=16,color="green",shape="box"];1107[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2505[label="vxw27/Integer vxw270",fontsize=10,color="white",style="solid",shape="box"];1107 -> 2505[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2505 -> 1243[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1108[label="LT",fontsize=16,color="green",shape="box"];1109[label="compare vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2506[label="vxw27/vxw270 :% vxw271",fontsize=10,color="white",style="solid",shape="box"];1109 -> 2506[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2506 -> 1244[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1110[label="LT",fontsize=16,color="green",shape="box"];1111[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1111 -> 1245[label="",style="solid", color="black", weight=3]; 23.57/10.32 1112[label="LT",fontsize=16,color="green",shape="box"];1113[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1113 -> 1246[label="",style="solid", color="black", weight=3]; 23.57/10.32 1114[label="LT",fontsize=16,color="green",shape="box"];1115[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1115 -> 1247[label="",style="solid", color="black", weight=3]; 23.57/10.32 1116[label="LT",fontsize=16,color="green",shape="box"];1117[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1117 -> 1248[label="",style="solid", color="black", weight=3]; 23.57/10.32 1118[label="LT",fontsize=16,color="green",shape="box"];1119[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1119 -> 1249[label="",style="solid", color="black", weight=3]; 23.57/10.32 1120[label="LT",fontsize=16,color="green",shape="box"];1121[label="compare vxw27 vxw25",fontsize=16,color="black",shape="triangle"];1121 -> 1250[label="",style="solid", color="black", weight=3]; 23.57/10.32 1122[label="vxw25",fontsize=16,color="green",shape="box"];1123[label="vxw27",fontsize=16,color="green",shape="box"];1124[label="vxw25",fontsize=16,color="green",shape="box"];1125[label="vxw27",fontsize=16,color="green",shape="box"];1126[label="vxw25",fontsize=16,color="green",shape="box"];1127[label="vxw27",fontsize=16,color="green",shape="box"];1128[label="vxw25",fontsize=16,color="green",shape="box"];1129[label="vxw27",fontsize=16,color="green",shape="box"];1130[label="vxw25",fontsize=16,color="green",shape="box"];1131[label="vxw27",fontsize=16,color="green",shape="box"];1132[label="vxw25",fontsize=16,color="green",shape="box"];1133[label="vxw27",fontsize=16,color="green",shape="box"];1134[label="vxw25",fontsize=16,color="green",shape="box"];1135[label="vxw27",fontsize=16,color="green",shape="box"];1136[label="vxw25",fontsize=16,color="green",shape="box"];1137[label="vxw27",fontsize=16,color="green",shape="box"];1138[label="vxw25",fontsize=16,color="green",shape="box"];1139[label="vxw27",fontsize=16,color="green",shape="box"];1140[label="vxw25",fontsize=16,color="green",shape="box"];1141[label="vxw27",fontsize=16,color="green",shape="box"];1142[label="vxw25",fontsize=16,color="green",shape="box"];1143[label="vxw27",fontsize=16,color="green",shape="box"];1144[label="vxw25",fontsize=16,color="green",shape="box"];1145[label="vxw27",fontsize=16,color="green",shape="box"];1146[label="vxw25",fontsize=16,color="green",shape="box"];1147[label="vxw27",fontsize=16,color="green",shape="box"];1148[label="vxw25",fontsize=16,color="green",shape="box"];1149[label="vxw27",fontsize=16,color="green",shape="box"];1150 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1150[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1150 -> 1252[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1151[label="(vxw280,vxw281,vxw282) <= vxw26",fontsize=16,color="burlywood",shape="box"];2507[label="vxw26/(vxw260,vxw261,vxw262)",fontsize=10,color="white",style="solid",shape="box"];1151 -> 2507[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2507 -> 1260[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1152[label="Left vxw280 <= vxw26",fontsize=16,color="burlywood",shape="box"];2508[label="vxw26/Left vxw260",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2508[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2508 -> 1261[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2509[label="vxw26/Right vxw260",fontsize=10,color="white",style="solid",shape="box"];1152 -> 2509[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2509 -> 1262[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1153[label="Right vxw280 <= vxw26",fontsize=16,color="burlywood",shape="box"];2510[label="vxw26/Left vxw260",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2510[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2510 -> 1263[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2511[label="vxw26/Right vxw260",fontsize=10,color="white",style="solid",shape="box"];1153 -> 2511[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2511 -> 1264[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1154 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1154[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1154 -> 1253[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1155[label="False <= vxw26",fontsize=16,color="burlywood",shape="box"];2512[label="vxw26/False",fontsize=10,color="white",style="solid",shape="box"];1155 -> 2512[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2512 -> 1265[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2513[label="vxw26/True",fontsize=10,color="white",style="solid",shape="box"];1155 -> 2513[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2513 -> 1266[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1156[label="True <= vxw26",fontsize=16,color="burlywood",shape="box"];2514[label="vxw26/False",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2514[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2514 -> 1267[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2515[label="vxw26/True",fontsize=10,color="white",style="solid",shape="box"];1156 -> 2515[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2515 -> 1268[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1157 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1157[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1157 -> 1254[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1158 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1158[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1158 -> 1255[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1159 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1159[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1159 -> 1256[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1160 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1160[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1160 -> 1257[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1161 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1161[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1161 -> 1258[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1162[label="LT <= vxw26",fontsize=16,color="burlywood",shape="box"];2516[label="vxw26/LT",fontsize=10,color="white",style="solid",shape="box"];1162 -> 2516[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2516 -> 1269[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2517[label="vxw26/EQ",fontsize=10,color="white",style="solid",shape="box"];1162 -> 2517[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2517 -> 1270[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2518[label="vxw26/GT",fontsize=10,color="white",style="solid",shape="box"];1162 -> 2518[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2518 -> 1271[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1163[label="EQ <= vxw26",fontsize=16,color="burlywood",shape="box"];2519[label="vxw26/LT",fontsize=10,color="white",style="solid",shape="box"];1163 -> 2519[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2519 -> 1272[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2520[label="vxw26/EQ",fontsize=10,color="white",style="solid",shape="box"];1163 -> 2520[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2520 -> 1273[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2521[label="vxw26/GT",fontsize=10,color="white",style="solid",shape="box"];1163 -> 2521[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2521 -> 1274[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1164[label="GT <= vxw26",fontsize=16,color="burlywood",shape="box"];2522[label="vxw26/LT",fontsize=10,color="white",style="solid",shape="box"];1164 -> 2522[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2522 -> 1275[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2523[label="vxw26/EQ",fontsize=10,color="white",style="solid",shape="box"];1164 -> 2523[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2523 -> 1276[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2524[label="vxw26/GT",fontsize=10,color="white",style="solid",shape="box"];1164 -> 2524[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2524 -> 1277[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1165[label="Nothing <= vxw26",fontsize=16,color="burlywood",shape="box"];2525[label="vxw26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1165 -> 2525[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2525 -> 1278[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2526[label="vxw26/Just vxw260",fontsize=10,color="white",style="solid",shape="box"];1165 -> 2526[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2526 -> 1279[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1166[label="Just vxw280 <= vxw26",fontsize=16,color="burlywood",shape="box"];2527[label="vxw26/Nothing",fontsize=10,color="white",style="solid",shape="box"];1166 -> 2527[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2527 -> 1280[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2528[label="vxw26/Just vxw260",fontsize=10,color="white",style="solid",shape="box"];1166 -> 2528[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2528 -> 1281[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1167 -> 1251[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1167[label="compare vxw28 vxw26 /= GT",fontsize=16,color="magenta"];1167 -> 1259[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1168[label="(vxw280,vxw281) <= vxw26",fontsize=16,color="burlywood",shape="box"];2529[label="vxw26/(vxw260,vxw261)",fontsize=10,color="white",style="solid",shape="box"];1168 -> 2529[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2529 -> 1282[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1169[label="(vxw45,vxw46) : List.insertBy compare (vxw47,vxw48) vxw49",fontsize=16,color="green",shape="box"];1169 -> 1283[label="",style="dashed", color="green", weight=3]; 23.57/10.32 1170[label="vxw3000",fontsize=16,color="green",shape="box"];1171[label="vxw40000",fontsize=16,color="green",shape="box"];1172[label="vxw3000",fontsize=16,color="green",shape="box"];1173[label="vxw40000",fontsize=16,color="green",shape="box"];1174[label="primMulInt (Pos vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2530[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2530[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2530 -> 1284[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2531[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];1174 -> 2531[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2531 -> 1285[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1175[label="primMulInt (Neg vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2532[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];1175 -> 2532[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2532 -> 1286[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2533[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];1175 -> 2533[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2533 -> 1287[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1176 -> 680[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1176[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];1176 -> 1288[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1176 -> 1289[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1177[label="False",fontsize=16,color="green",shape="box"];1178[label="False",fontsize=16,color="green",shape="box"];1179[label="True",fontsize=16,color="green",shape="box"];1180[label="vxw4001",fontsize=16,color="green",shape="box"];1181[label="vxw301",fontsize=16,color="green",shape="box"];1182[label="vxw4001",fontsize=16,color="green",shape="box"];1183[label="vxw301",fontsize=16,color="green",shape="box"];1184[label="vxw4001",fontsize=16,color="green",shape="box"];1185[label="vxw301",fontsize=16,color="green",shape="box"];1186[label="vxw4001",fontsize=16,color="green",shape="box"];1187[label="vxw301",fontsize=16,color="green",shape="box"];1188[label="vxw4001",fontsize=16,color="green",shape="box"];1189[label="vxw301",fontsize=16,color="green",shape="box"];1190[label="vxw4001",fontsize=16,color="green",shape="box"];1191[label="vxw301",fontsize=16,color="green",shape="box"];1192[label="vxw4001",fontsize=16,color="green",shape="box"];1193[label="vxw301",fontsize=16,color="green",shape="box"];1194[label="vxw4001",fontsize=16,color="green",shape="box"];1195[label="vxw301",fontsize=16,color="green",shape="box"];1196[label="vxw4001",fontsize=16,color="green",shape="box"];1197[label="vxw301",fontsize=16,color="green",shape="box"];1198[label="vxw4001",fontsize=16,color="green",shape="box"];1199[label="vxw301",fontsize=16,color="green",shape="box"];1200[label="vxw4001",fontsize=16,color="green",shape="box"];1201[label="vxw301",fontsize=16,color="green",shape="box"];1202[label="vxw4001",fontsize=16,color="green",shape="box"];1203[label="vxw301",fontsize=16,color="green",shape="box"];1204[label="vxw4001",fontsize=16,color="green",shape="box"];1205[label="vxw301",fontsize=16,color="green",shape="box"];1206[label="vxw4001",fontsize=16,color="green",shape="box"];1207[label="vxw301",fontsize=16,color="green",shape="box"];1208[label="vxw4002",fontsize=16,color="green",shape="box"];1209[label="vxw302",fontsize=16,color="green",shape="box"];1210[label="vxw4002",fontsize=16,color="green",shape="box"];1211[label="vxw302",fontsize=16,color="green",shape="box"];1212[label="vxw4002",fontsize=16,color="green",shape="box"];1213[label="vxw302",fontsize=16,color="green",shape="box"];1214[label="vxw4002",fontsize=16,color="green",shape="box"];1215[label="vxw302",fontsize=16,color="green",shape="box"];1216[label="vxw4002",fontsize=16,color="green",shape="box"];1217[label="vxw302",fontsize=16,color="green",shape="box"];1218[label="vxw4002",fontsize=16,color="green",shape="box"];1219[label="vxw302",fontsize=16,color="green",shape="box"];1220[label="vxw4002",fontsize=16,color="green",shape="box"];1221[label="vxw302",fontsize=16,color="green",shape="box"];1222[label="vxw4002",fontsize=16,color="green",shape="box"];1223[label="vxw302",fontsize=16,color="green",shape="box"];1224[label="vxw4002",fontsize=16,color="green",shape="box"];1225[label="vxw302",fontsize=16,color="green",shape="box"];1226[label="vxw4002",fontsize=16,color="green",shape="box"];1227[label="vxw302",fontsize=16,color="green",shape="box"];1228[label="vxw4002",fontsize=16,color="green",shape="box"];1229[label="vxw302",fontsize=16,color="green",shape="box"];1230[label="vxw4002",fontsize=16,color="green",shape="box"];1231[label="vxw302",fontsize=16,color="green",shape="box"];1232[label="vxw4002",fontsize=16,color="green",shape="box"];1233[label="vxw302",fontsize=16,color="green",shape="box"];1234[label="vxw4002",fontsize=16,color="green",shape="box"];1235[label="vxw302",fontsize=16,color="green",shape="box"];1236[label="primCmpChar vxw27 vxw25",fontsize=16,color="burlywood",shape="box"];2534[label="vxw27/Char vxw270",fontsize=10,color="white",style="solid",shape="box"];1236 -> 2534[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2534 -> 1290[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1237[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1237 -> 1291[label="",style="solid", color="black", weight=3]; 23.57/10.32 1238[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1238 -> 1292[label="",style="solid", color="black", weight=3]; 23.57/10.32 1239[label="compare () vxw25",fontsize=16,color="burlywood",shape="box"];2535[label="vxw25/()",fontsize=10,color="white",style="solid",shape="box"];1239 -> 2535[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2535 -> 1293[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1240[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1240 -> 1294[label="",style="solid", color="black", weight=3]; 23.57/10.32 1241[label="compare (vxw270 : vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2536[label="vxw25/vxw250 : vxw251",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2536[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2536 -> 1295[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2537[label="vxw25/[]",fontsize=10,color="white",style="solid",shape="box"];1241 -> 2537[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2537 -> 1296[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1242[label="compare [] vxw25",fontsize=16,color="burlywood",shape="box"];2538[label="vxw25/vxw250 : vxw251",fontsize=10,color="white",style="solid",shape="box"];1242 -> 2538[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2538 -> 1297[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2539[label="vxw25/[]",fontsize=10,color="white",style="solid",shape="box"];1242 -> 2539[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2539 -> 1298[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1243[label="compare (Integer vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2540[label="vxw25/Integer vxw250",fontsize=10,color="white",style="solid",shape="box"];1243 -> 2540[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2540 -> 1299[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1244[label="compare (vxw270 :% vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2541[label="vxw25/vxw250 :% vxw251",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2541[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2541 -> 1300[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1245[label="primCmpFloat vxw27 vxw25",fontsize=16,color="burlywood",shape="box"];2542[label="vxw27/Float vxw270 vxw271",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2542[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2542 -> 1301[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1246[label="primCmpInt vxw27 vxw25",fontsize=16,color="burlywood",shape="triangle"];2543[label="vxw27/Pos vxw270",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2543[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2543 -> 1302[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2544[label="vxw27/Neg vxw270",fontsize=10,color="white",style="solid",shape="box"];1246 -> 2544[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2544 -> 1303[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1247[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1247 -> 1304[label="",style="solid", color="black", weight=3]; 23.57/10.32 1248[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1248 -> 1305[label="",style="solid", color="black", weight=3]; 23.57/10.32 1249[label="primCmpDouble vxw27 vxw25",fontsize=16,color="burlywood",shape="box"];2545[label="vxw27/Double vxw270 vxw271",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2545[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2545 -> 1306[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1250[label="compare3 vxw27 vxw25",fontsize=16,color="black",shape="box"];1250 -> 1307[label="",style="solid", color="black", weight=3]; 23.57/10.32 1252 -> 1095[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1252[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1252 -> 1308[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1252 -> 1309[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1251[label="vxw64 /= GT",fontsize=16,color="black",shape="triangle"];1251 -> 1310[label="",style="solid", color="black", weight=3]; 23.57/10.32 1260[label="(vxw280,vxw281,vxw282) <= (vxw260,vxw261,vxw262)",fontsize=16,color="black",shape="box"];1260 -> 1325[label="",style="solid", color="black", weight=3]; 23.57/10.32 1261[label="Left vxw280 <= Left vxw260",fontsize=16,color="black",shape="box"];1261 -> 1326[label="",style="solid", color="black", weight=3]; 23.57/10.32 1262[label="Left vxw280 <= Right vxw260",fontsize=16,color="black",shape="box"];1262 -> 1327[label="",style="solid", color="black", weight=3]; 23.57/10.32 1263[label="Right vxw280 <= Left vxw260",fontsize=16,color="black",shape="box"];1263 -> 1328[label="",style="solid", color="black", weight=3]; 23.57/10.32 1264[label="Right vxw280 <= Right vxw260",fontsize=16,color="black",shape="box"];1264 -> 1329[label="",style="solid", color="black", weight=3]; 23.57/10.32 1253 -> 1101[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1253[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1253 -> 1311[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1253 -> 1312[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1265[label="False <= False",fontsize=16,color="black",shape="box"];1265 -> 1330[label="",style="solid", color="black", weight=3]; 23.57/10.32 1266[label="False <= True",fontsize=16,color="black",shape="box"];1266 -> 1331[label="",style="solid", color="black", weight=3]; 23.57/10.32 1267[label="True <= False",fontsize=16,color="black",shape="box"];1267 -> 1332[label="",style="solid", color="black", weight=3]; 23.57/10.32 1268[label="True <= True",fontsize=16,color="black",shape="box"];1268 -> 1333[label="",style="solid", color="black", weight=3]; 23.57/10.32 1254 -> 1105[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1254[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1254 -> 1313[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1254 -> 1314[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1255 -> 1107[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1255[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1255 -> 1315[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1255 -> 1316[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1256 -> 1109[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1256[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1256 -> 1317[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1256 -> 1318[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1257 -> 1111[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1257[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1257 -> 1319[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1257 -> 1320[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1258 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1258[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1258 -> 1321[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1258 -> 1322[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1269[label="LT <= LT",fontsize=16,color="black",shape="box"];1269 -> 1334[label="",style="solid", color="black", weight=3]; 23.57/10.32 1270[label="LT <= EQ",fontsize=16,color="black",shape="box"];1270 -> 1335[label="",style="solid", color="black", weight=3]; 23.57/10.32 1271[label="LT <= GT",fontsize=16,color="black",shape="box"];1271 -> 1336[label="",style="solid", color="black", weight=3]; 23.57/10.32 1272[label="EQ <= LT",fontsize=16,color="black",shape="box"];1272 -> 1337[label="",style="solid", color="black", weight=3]; 23.57/10.32 1273[label="EQ <= EQ",fontsize=16,color="black",shape="box"];1273 -> 1338[label="",style="solid", color="black", weight=3]; 23.57/10.32 1274[label="EQ <= GT",fontsize=16,color="black",shape="box"];1274 -> 1339[label="",style="solid", color="black", weight=3]; 23.57/10.32 1275[label="GT <= LT",fontsize=16,color="black",shape="box"];1275 -> 1340[label="",style="solid", color="black", weight=3]; 23.57/10.32 1276[label="GT <= EQ",fontsize=16,color="black",shape="box"];1276 -> 1341[label="",style="solid", color="black", weight=3]; 23.57/10.32 1277[label="GT <= GT",fontsize=16,color="black",shape="box"];1277 -> 1342[label="",style="solid", color="black", weight=3]; 23.57/10.32 1278[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];1278 -> 1343[label="",style="solid", color="black", weight=3]; 23.57/10.32 1279[label="Nothing <= Just vxw260",fontsize=16,color="black",shape="box"];1279 -> 1344[label="",style="solid", color="black", weight=3]; 23.57/10.32 1280[label="Just vxw280 <= Nothing",fontsize=16,color="black",shape="box"];1280 -> 1345[label="",style="solid", color="black", weight=3]; 23.57/10.32 1281[label="Just vxw280 <= Just vxw260",fontsize=16,color="black",shape="box"];1281 -> 1346[label="",style="solid", color="black", weight=3]; 23.57/10.32 1259 -> 1119[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1259[label="compare vxw28 vxw26",fontsize=16,color="magenta"];1259 -> 1323[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1259 -> 1324[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1282[label="(vxw280,vxw281) <= (vxw260,vxw261)",fontsize=16,color="black",shape="box"];1282 -> 1347[label="",style="solid", color="black", weight=3]; 23.57/10.32 1283 -> 5[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1283[label="List.insertBy compare (vxw47,vxw48) vxw49",fontsize=16,color="magenta"];1283 -> 1348[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1283 -> 1349[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1284[label="primMulInt (Pos vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];1284 -> 1350[label="",style="solid", color="black", weight=3]; 23.57/10.32 1285[label="primMulInt (Pos vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];1285 -> 1351[label="",style="solid", color="black", weight=3]; 23.57/10.32 1286[label="primMulInt (Neg vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];1286 -> 1352[label="",style="solid", color="black", weight=3]; 23.57/10.32 1287[label="primMulInt (Neg vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];1287 -> 1353[label="",style="solid", color="black", weight=3]; 23.57/10.32 1288[label="vxw3000",fontsize=16,color="green",shape="box"];1289[label="vxw40000",fontsize=16,color="green",shape="box"];1290[label="primCmpChar (Char vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2546[label="vxw25/Char vxw250",fontsize=10,color="white",style="solid",shape="box"];1290 -> 2546[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2546 -> 1354[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1291 -> 1355[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1291[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1291 -> 1356[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1292 -> 1357[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1292[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1292 -> 1358[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1293[label="compare () ()",fontsize=16,color="black",shape="box"];1293 -> 1359[label="",style="solid", color="black", weight=3]; 23.57/10.32 1294 -> 1360[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1294[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1294 -> 1361[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1295[label="compare (vxw270 : vxw271) (vxw250 : vxw251)",fontsize=16,color="black",shape="box"];1295 -> 1362[label="",style="solid", color="black", weight=3]; 23.57/10.32 1296[label="compare (vxw270 : vxw271) []",fontsize=16,color="black",shape="box"];1296 -> 1363[label="",style="solid", color="black", weight=3]; 23.57/10.32 1297[label="compare [] (vxw250 : vxw251)",fontsize=16,color="black",shape="box"];1297 -> 1364[label="",style="solid", color="black", weight=3]; 23.57/10.32 1298[label="compare [] []",fontsize=16,color="black",shape="box"];1298 -> 1365[label="",style="solid", color="black", weight=3]; 23.57/10.32 1299[label="compare (Integer vxw270) (Integer vxw250)",fontsize=16,color="black",shape="box"];1299 -> 1366[label="",style="solid", color="black", weight=3]; 23.57/10.32 1300[label="compare (vxw270 :% vxw271) (vxw250 :% vxw251)",fontsize=16,color="black",shape="box"];1300 -> 1367[label="",style="solid", color="black", weight=3]; 23.57/10.32 1301[label="primCmpFloat (Float vxw270 vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2547[label="vxw271/Pos vxw2710",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2547[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2547 -> 1368[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2548[label="vxw271/Neg vxw2710",fontsize=10,color="white",style="solid",shape="box"];1301 -> 2548[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2548 -> 1369[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1302[label="primCmpInt (Pos vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2549[label="vxw270/Succ vxw2700",fontsize=10,color="white",style="solid",shape="box"];1302 -> 2549[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2549 -> 1370[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2550[label="vxw270/Zero",fontsize=10,color="white",style="solid",shape="box"];1302 -> 2550[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2550 -> 1371[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1303[label="primCmpInt (Neg vxw270) vxw25",fontsize=16,color="burlywood",shape="box"];2551[label="vxw270/Succ vxw2700",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2551[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2551 -> 1372[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2552[label="vxw270/Zero",fontsize=10,color="white",style="solid",shape="box"];1303 -> 2552[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2552 -> 1373[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1304 -> 1374[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1304[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1304 -> 1375[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1305 -> 1376[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1305[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1305 -> 1377[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1306[label="primCmpDouble (Double vxw270 vxw271) vxw25",fontsize=16,color="burlywood",shape="box"];2553[label="vxw271/Pos vxw2710",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2553[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2553 -> 1378[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 2554[label="vxw271/Neg vxw2710",fontsize=10,color="white",style="solid",shape="box"];1306 -> 2554[label="",style="solid", color="burlywood", weight=9]; 23.57/10.32 2554 -> 1379[label="",style="solid", color="burlywood", weight=3]; 23.57/10.32 1307 -> 1380[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1307[label="compare2 vxw27 vxw25 (vxw27 == vxw25)",fontsize=16,color="magenta"];1307 -> 1381[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1308[label="vxw28",fontsize=16,color="green",shape="box"];1309[label="vxw26",fontsize=16,color="green",shape="box"];1310 -> 1382[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1310[label="not (vxw64 == GT)",fontsize=16,color="magenta"];1310 -> 1383[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1325 -> 685[label="",style="dashed", color="red", weight=0]; 23.57/10.32 1325[label="vxw280 < vxw260 || vxw280 == vxw260 && (vxw281 < vxw261 || vxw281 == vxw261 && vxw282 <= vxw262)",fontsize=16,color="magenta"];1325 -> 1384[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1325 -> 1385[label="",style="dashed", color="magenta", weight=3]; 23.57/10.32 1326[label="vxw280 <= vxw260",fontsize=16,color="blue",shape="box"];2555[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2555[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2555 -> 1386[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2556[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2556[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2556 -> 1387[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2557[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2557[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2557 -> 1388[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2558[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2558[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2558 -> 1389[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2559[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2559[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2559 -> 1390[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2560[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2560[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2560 -> 1391[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2561[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2561[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2561 -> 1392[label="",style="solid", color="blue", weight=3]; 23.57/10.32 2562[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2562[label="",style="solid", color="blue", weight=9]; 23.57/10.32 2562 -> 1393[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2563[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2563[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2563 -> 1394[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2564[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2564[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2564 -> 1395[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2565[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2565[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2565 -> 1396[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2566[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2566[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2566 -> 1397[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2567[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2567[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2567 -> 1398[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2568[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1326 -> 2568[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2568 -> 1399[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1327[label="True",fontsize=16,color="green",shape="box"];1328[label="False",fontsize=16,color="green",shape="box"];1329[label="vxw280 <= vxw260",fontsize=16,color="blue",shape="box"];2569[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2569[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2569 -> 1400[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2570[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2570[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2570 -> 1401[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2571[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2571[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2571 -> 1402[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2572[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2572[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2572 -> 1403[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2573[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2573[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2573 -> 1404[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2574[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2574[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2574 -> 1405[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2575[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2575[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2575 -> 1406[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2576[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2576[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2576 -> 1407[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2577[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2577[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2577 -> 1408[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2578[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2578[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2578 -> 1409[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2579[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2579[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2579 -> 1410[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2580[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2580[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2580 -> 1411[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2581[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2581[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2581 -> 1412[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2582[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1329 -> 2582[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2582 -> 1413[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1311[label="vxw28",fontsize=16,color="green",shape="box"];1312[label="vxw26",fontsize=16,color="green",shape="box"];1330[label="True",fontsize=16,color="green",shape="box"];1331[label="True",fontsize=16,color="green",shape="box"];1332[label="False",fontsize=16,color="green",shape="box"];1333[label="True",fontsize=16,color="green",shape="box"];1313[label="vxw28",fontsize=16,color="green",shape="box"];1314[label="vxw26",fontsize=16,color="green",shape="box"];1315[label="vxw28",fontsize=16,color="green",shape="box"];1316[label="vxw26",fontsize=16,color="green",shape="box"];1317[label="vxw28",fontsize=16,color="green",shape="box"];1318[label="vxw26",fontsize=16,color="green",shape="box"];1319[label="vxw28",fontsize=16,color="green",shape="box"];1320[label="vxw26",fontsize=16,color="green",shape="box"];1321[label="vxw28",fontsize=16,color="green",shape="box"];1322[label="vxw26",fontsize=16,color="green",shape="box"];1334[label="True",fontsize=16,color="green",shape="box"];1335[label="True",fontsize=16,color="green",shape="box"];1336[label="True",fontsize=16,color="green",shape="box"];1337[label="False",fontsize=16,color="green",shape="box"];1338[label="True",fontsize=16,color="green",shape="box"];1339[label="True",fontsize=16,color="green",shape="box"];1340[label="False",fontsize=16,color="green",shape="box"];1341[label="False",fontsize=16,color="green",shape="box"];1342[label="True",fontsize=16,color="green",shape="box"];1343[label="True",fontsize=16,color="green",shape="box"];1344[label="True",fontsize=16,color="green",shape="box"];1345[label="False",fontsize=16,color="green",shape="box"];1346[label="vxw280 <= vxw260",fontsize=16,color="blue",shape="box"];2583[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2583[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2583 -> 1414[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2584[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2584[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2584 -> 1415[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2585[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2585[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2585 -> 1416[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2586[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2586[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2586 -> 1417[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2587[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2587[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2587 -> 1418[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2588[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2588[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2588 -> 1419[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2589[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2589[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2589 -> 1420[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2590[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2590[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2590 -> 1421[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2591[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2591[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2591 -> 1422[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2592[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2592[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2592 -> 1423[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2593[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2593[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2593 -> 1424[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2594[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2594[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2594 -> 1425[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2595[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2595[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2595 -> 1426[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2596[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1346 -> 2596[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2596 -> 1427[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1323[label="vxw28",fontsize=16,color="green",shape="box"];1324[label="vxw26",fontsize=16,color="green",shape="box"];1347 -> 685[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1347[label="vxw280 < vxw260 || vxw280 == vxw260 && vxw281 <= vxw261",fontsize=16,color="magenta"];1347 -> 1428[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1347 -> 1429[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1348[label="(vxw47,vxw48)",fontsize=16,color="green",shape="box"];1349[label="vxw49",fontsize=16,color="green",shape="box"];1350[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];1350 -> 1430[label="",style="dashed", color="green", weight=3]; 23.57/10.33 1351[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];1351 -> 1431[label="",style="dashed", color="green", weight=3]; 23.57/10.33 1352[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];1352 -> 1432[label="",style="dashed", color="green", weight=3]; 23.57/10.33 1353[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];1353 -> 1433[label="",style="dashed", color="green", weight=3]; 23.57/10.33 1354[label="primCmpChar (Char vxw270) (Char vxw250)",fontsize=16,color="black",shape="box"];1354 -> 1434[label="",style="solid", color="black", weight=3]; 23.57/10.33 1356 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1356[label="vxw27 == vxw25",fontsize=16,color="magenta"];1356 -> 1435[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1356 -> 1436[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1355[label="compare2 vxw27 vxw25 vxw65",fontsize=16,color="burlywood",shape="triangle"];2597[label="vxw65/False",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2597[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2597 -> 1437[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2598[label="vxw65/True",fontsize=10,color="white",style="solid",shape="box"];1355 -> 2598[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2598 -> 1438[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1358 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1358[label="vxw27 == vxw25",fontsize=16,color="magenta"];1358 -> 1439[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1358 -> 1440[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1357[label="compare2 vxw27 vxw25 vxw66",fontsize=16,color="burlywood",shape="triangle"];2599[label="vxw66/False",fontsize=10,color="white",style="solid",shape="box"];1357 -> 2599[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2599 -> 1441[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2600[label="vxw66/True",fontsize=10,color="white",style="solid",shape="box"];1357 -> 2600[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2600 -> 1442[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1359[label="EQ",fontsize=16,color="green",shape="box"];1361 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1361[label="vxw27 == vxw25",fontsize=16,color="magenta"];1361 -> 1443[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1361 -> 1444[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1360[label="compare2 vxw27 vxw25 vxw67",fontsize=16,color="burlywood",shape="triangle"];2601[label="vxw67/False",fontsize=10,color="white",style="solid",shape="box"];1360 -> 2601[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2601 -> 1445[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2602[label="vxw67/True",fontsize=10,color="white",style="solid",shape="box"];1360 -> 2602[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2602 -> 1446[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1362 -> 1447[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1362[label="primCompAux vxw270 vxw250 (compare vxw271 vxw251)",fontsize=16,color="magenta"];1362 -> 1448[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1363[label="GT",fontsize=16,color="green",shape="box"];1364[label="LT",fontsize=16,color="green",shape="box"];1365[label="EQ",fontsize=16,color="green",shape="box"];1366 -> 1246[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1366[label="primCmpInt vxw270 vxw250",fontsize=16,color="magenta"];1366 -> 1449[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1366 -> 1450[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1367[label="compare (vxw270 * vxw251) (vxw250 * vxw271)",fontsize=16,color="blue",shape="box"];2603[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2603[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2603 -> 1451[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2604[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1367 -> 2604[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2604 -> 1452[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1368[label="primCmpFloat (Float vxw270 (Pos vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2605[label="vxw25/Float vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1368 -> 2605[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2605 -> 1453[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1369[label="primCmpFloat (Float vxw270 (Neg vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2606[label="vxw25/Float vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1369 -> 2606[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2606 -> 1454[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1370[label="primCmpInt (Pos (Succ vxw2700)) vxw25",fontsize=16,color="burlywood",shape="box"];2607[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2607[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2607 -> 1455[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2608[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1370 -> 2608[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2608 -> 1456[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1371[label="primCmpInt (Pos Zero) vxw25",fontsize=16,color="burlywood",shape="box"];2609[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1371 -> 2609[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2609 -> 1457[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2610[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1371 -> 2610[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2610 -> 1458[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1372[label="primCmpInt (Neg (Succ vxw2700)) vxw25",fontsize=16,color="burlywood",shape="box"];2611[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2611[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2611 -> 1459[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2612[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1372 -> 2612[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2612 -> 1460[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1373[label="primCmpInt (Neg Zero) vxw25",fontsize=16,color="burlywood",shape="box"];2613[label="vxw25/Pos vxw250",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2613[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2613 -> 1461[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2614[label="vxw25/Neg vxw250",fontsize=10,color="white",style="solid",shape="box"];1373 -> 2614[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2614 -> 1462[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1375 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1375[label="vxw27 == vxw25",fontsize=16,color="magenta"];1375 -> 1463[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1375 -> 1464[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1374[label="compare2 vxw27 vxw25 vxw68",fontsize=16,color="burlywood",shape="triangle"];2615[label="vxw68/False",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2615[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2615 -> 1465[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2616[label="vxw68/True",fontsize=10,color="white",style="solid",shape="box"];1374 -> 2616[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2616 -> 1466[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1377 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1377[label="vxw27 == vxw25",fontsize=16,color="magenta"];1377 -> 1467[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1377 -> 1468[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1376[label="compare2 vxw27 vxw25 vxw69",fontsize=16,color="burlywood",shape="triangle"];2617[label="vxw69/False",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2617[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2617 -> 1469[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2618[label="vxw69/True",fontsize=10,color="white",style="solid",shape="box"];1376 -> 2618[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2618 -> 1470[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1378[label="primCmpDouble (Double vxw270 (Pos vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2619[label="vxw25/Double vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1378 -> 2619[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2619 -> 1471[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1379[label="primCmpDouble (Double vxw270 (Neg vxw2710)) vxw25",fontsize=16,color="burlywood",shape="box"];2620[label="vxw25/Double vxw250 vxw251",fontsize=10,color="white",style="solid",shape="box"];1379 -> 2620[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2620 -> 1472[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1381 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1381[label="vxw27 == vxw25",fontsize=16,color="magenta"];1381 -> 1473[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1381 -> 1474[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1380[label="compare2 vxw27 vxw25 vxw70",fontsize=16,color="burlywood",shape="triangle"];2621[label="vxw70/False",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2621[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2621 -> 1475[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2622[label="vxw70/True",fontsize=10,color="white",style="solid",shape="box"];1380 -> 2622[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2622 -> 1476[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1383 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1383[label="vxw64 == GT",fontsize=16,color="magenta"];1383 -> 1477[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1383 -> 1478[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1382[label="not vxw71",fontsize=16,color="burlywood",shape="triangle"];2623[label="vxw71/False",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2623[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2623 -> 1479[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2624[label="vxw71/True",fontsize=10,color="white",style="solid",shape="box"];1382 -> 2624[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2624 -> 1480[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1384[label="vxw280 < vxw260",fontsize=16,color="blue",shape="box"];2625[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2625[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2625 -> 1481[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2626[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2626[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2626 -> 1482[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2627[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2627[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2627 -> 1483[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2628[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2628[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2628 -> 1484[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2629[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2629[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2629 -> 1485[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2630[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2630[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2630 -> 1486[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2631[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2631[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2631 -> 1487[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2632[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2632[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2632 -> 1488[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2633[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2633[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2633 -> 1489[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2634[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2634[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2634 -> 1490[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2635[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2635[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2635 -> 1491[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2636[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2636[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2636 -> 1492[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2637[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2637[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2637 -> 1493[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2638[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1384 -> 2638[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2638 -> 1494[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1385 -> 396[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1385[label="vxw280 == vxw260 && (vxw281 < vxw261 || vxw281 == vxw261 && vxw282 <= vxw262)",fontsize=16,color="magenta"];1385 -> 1495[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1385 -> 1496[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1386 -> 906[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1386[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1386 -> 1497[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1386 -> 1498[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1387 -> 907[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1387[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1387 -> 1499[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1387 -> 1500[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1388 -> 908[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1388[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1388 -> 1501[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1388 -> 1502[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1389 -> 909[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1389[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1389 -> 1503[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1389 -> 1504[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1390 -> 910[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1390[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1390 -> 1505[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1390 -> 1506[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1391 -> 911[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1391[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1391 -> 1507[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1391 -> 1508[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1392 -> 912[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1392[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1392 -> 1509[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1392 -> 1510[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1393 -> 913[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1393[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1393 -> 1511[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1393 -> 1512[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1394 -> 914[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1394[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1394 -> 1513[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1394 -> 1514[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1395 -> 915[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1395[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1395 -> 1515[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1395 -> 1516[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1396 -> 916[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1396[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1396 -> 1517[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1396 -> 1518[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1397 -> 917[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1397[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1397 -> 1519[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1397 -> 1520[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1398 -> 918[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1398[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1398 -> 1521[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1398 -> 1522[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1399 -> 919[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1399[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1399 -> 1523[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1399 -> 1524[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1400 -> 906[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1400[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1400 -> 1525[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1400 -> 1526[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1401 -> 907[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1401[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1401 -> 1527[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1401 -> 1528[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1402 -> 908[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1402[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1402 -> 1529[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1402 -> 1530[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1403 -> 909[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1403[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1403 -> 1531[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1403 -> 1532[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1404 -> 910[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1404[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1404 -> 1533[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1404 -> 1534[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1405 -> 911[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1405[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1405 -> 1535[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1405 -> 1536[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1406 -> 912[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1406[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1406 -> 1537[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1406 -> 1538[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1407 -> 913[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1407[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1407 -> 1539[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1407 -> 1540[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1408 -> 914[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1408[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1408 -> 1541[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1408 -> 1542[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1409 -> 915[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1409[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1409 -> 1543[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1409 -> 1544[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1410 -> 916[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1410[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1410 -> 1545[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1410 -> 1546[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1411 -> 917[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1411[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1411 -> 1547[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1411 -> 1548[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1412 -> 918[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1412[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1412 -> 1549[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1412 -> 1550[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1413 -> 919[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1413[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1413 -> 1551[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1413 -> 1552[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1414 -> 906[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1414[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1414 -> 1553[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1414 -> 1554[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1415 -> 907[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1415[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1415 -> 1555[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1415 -> 1556[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1416 -> 908[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1416[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1416 -> 1557[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1416 -> 1558[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1417 -> 909[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1417[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1417 -> 1559[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1417 -> 1560[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1418 -> 910[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1418[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1418 -> 1561[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1418 -> 1562[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1419 -> 911[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1419[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1419 -> 1563[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1419 -> 1564[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1420 -> 912[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1420[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1420 -> 1565[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1420 -> 1566[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1421 -> 913[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1421[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1421 -> 1567[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1421 -> 1568[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1422 -> 914[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1422[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1422 -> 1569[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1422 -> 1570[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1423 -> 915[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1423[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1423 -> 1571[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1423 -> 1572[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1424 -> 916[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1424[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1424 -> 1573[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1424 -> 1574[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1425 -> 917[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1425[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1425 -> 1575[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1425 -> 1576[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1426 -> 918[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1426[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1426 -> 1577[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1426 -> 1578[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1427 -> 919[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1427[label="vxw280 <= vxw260",fontsize=16,color="magenta"];1427 -> 1579[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1427 -> 1580[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1428[label="vxw280 < vxw260",fontsize=16,color="blue",shape="box"];2639[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2639[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2639 -> 1581[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2640[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2640[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2640 -> 1582[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2641[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2641[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2641 -> 1583[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2642[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2642[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2642 -> 1584[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2643[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2643[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2643 -> 1585[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2644[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2644[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2644 -> 1586[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2645[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2645[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2645 -> 1587[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2646[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2646[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2646 -> 1588[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2647[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2647[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2647 -> 1589[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2648[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2648[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2648 -> 1590[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2649[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2649[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2649 -> 1591[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2650[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2650[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2650 -> 1592[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2651[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2651[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2651 -> 1593[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2652[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1428 -> 2652[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2652 -> 1594[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1429 -> 396[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1429[label="vxw280 == vxw260 && vxw281 <= vxw261",fontsize=16,color="magenta"];1429 -> 1595[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1429 -> 1596[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1430[label="primMulNat vxw3010 vxw40000",fontsize=16,color="burlywood",shape="triangle"];2653[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2653[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2653 -> 1597[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2654[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2654[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2654 -> 1598[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1431 -> 1430[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1431[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1431 -> 1599[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1432 -> 1430[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1432[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1432 -> 1600[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1433 -> 1430[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1433[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];1433 -> 1601[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1433 -> 1602[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1434[label="primCmpNat vxw270 vxw250",fontsize=16,color="burlywood",shape="triangle"];2655[label="vxw270/Succ vxw2700",fontsize=10,color="white",style="solid",shape="box"];1434 -> 2655[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2655 -> 1603[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2656[label="vxw270/Zero",fontsize=10,color="white",style="solid",shape="box"];1434 -> 2656[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2656 -> 1604[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1435[label="vxw25",fontsize=16,color="green",shape="box"];1436[label="vxw27",fontsize=16,color="green",shape="box"];1437[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1437 -> 1605[label="",style="solid", color="black", weight=3]; 23.57/10.33 1438[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1438 -> 1606[label="",style="solid", color="black", weight=3]; 23.57/10.33 1439[label="vxw25",fontsize=16,color="green",shape="box"];1440[label="vxw27",fontsize=16,color="green",shape="box"];1441[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1441 -> 1607[label="",style="solid", color="black", weight=3]; 23.57/10.33 1442[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1442 -> 1608[label="",style="solid", color="black", weight=3]; 23.57/10.33 1443[label="vxw25",fontsize=16,color="green",shape="box"];1444[label="vxw27",fontsize=16,color="green",shape="box"];1445[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1445 -> 1609[label="",style="solid", color="black", weight=3]; 23.57/10.33 1446[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1446 -> 1610[label="",style="solid", color="black", weight=3]; 23.57/10.33 1448 -> 1105[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1448[label="compare vxw271 vxw251",fontsize=16,color="magenta"];1448 -> 1611[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1448 -> 1612[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1447[label="primCompAux vxw270 vxw250 vxw72",fontsize=16,color="black",shape="triangle"];1447 -> 1613[label="",style="solid", color="black", weight=3]; 23.57/10.33 1449[label="vxw270",fontsize=16,color="green",shape="box"];1450[label="vxw250",fontsize=16,color="green",shape="box"];1451 -> 1107[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1451[label="compare (vxw270 * vxw251) (vxw250 * vxw271)",fontsize=16,color="magenta"];1451 -> 1614[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1451 -> 1615[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1452 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1452[label="compare (vxw270 * vxw251) (vxw250 * vxw271)",fontsize=16,color="magenta"];1452 -> 1616[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1452 -> 1617[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1453[label="primCmpFloat (Float vxw270 (Pos vxw2710)) (Float vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2657[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2657[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2657 -> 1618[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2658[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1453 -> 2658[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2658 -> 1619[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1454[label="primCmpFloat (Float vxw270 (Neg vxw2710)) (Float vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2659[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2659[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2659 -> 1620[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2660[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2660[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2660 -> 1621[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1455[label="primCmpInt (Pos (Succ vxw2700)) (Pos vxw250)",fontsize=16,color="black",shape="box"];1455 -> 1622[label="",style="solid", color="black", weight=3]; 23.57/10.33 1456[label="primCmpInt (Pos (Succ vxw2700)) (Neg vxw250)",fontsize=16,color="black",shape="box"];1456 -> 1623[label="",style="solid", color="black", weight=3]; 23.57/10.33 1457[label="primCmpInt (Pos Zero) (Pos vxw250)",fontsize=16,color="burlywood",shape="box"];2661[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2661[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2661 -> 1624[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2662[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1457 -> 2662[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2662 -> 1625[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1458[label="primCmpInt (Pos Zero) (Neg vxw250)",fontsize=16,color="burlywood",shape="box"];2663[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2663[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2663 -> 1626[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2664[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2664[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2664 -> 1627[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1459[label="primCmpInt (Neg (Succ vxw2700)) (Pos vxw250)",fontsize=16,color="black",shape="box"];1459 -> 1628[label="",style="solid", color="black", weight=3]; 23.57/10.33 1460[label="primCmpInt (Neg (Succ vxw2700)) (Neg vxw250)",fontsize=16,color="black",shape="box"];1460 -> 1629[label="",style="solid", color="black", weight=3]; 23.57/10.33 1461[label="primCmpInt (Neg Zero) (Pos vxw250)",fontsize=16,color="burlywood",shape="box"];2665[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2665[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2665 -> 1630[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2666[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1461 -> 2666[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2666 -> 1631[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1462[label="primCmpInt (Neg Zero) (Neg vxw250)",fontsize=16,color="burlywood",shape="box"];2667[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2667[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2667 -> 1632[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2668[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2668[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2668 -> 1633[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1463[label="vxw25",fontsize=16,color="green",shape="box"];1464[label="vxw27",fontsize=16,color="green",shape="box"];1465[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1465 -> 1634[label="",style="solid", color="black", weight=3]; 23.57/10.33 1466[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1466 -> 1635[label="",style="solid", color="black", weight=3]; 23.57/10.33 1467[label="vxw25",fontsize=16,color="green",shape="box"];1468[label="vxw27",fontsize=16,color="green",shape="box"];1469[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1469 -> 1636[label="",style="solid", color="black", weight=3]; 23.57/10.33 1470[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1470 -> 1637[label="",style="solid", color="black", weight=3]; 23.57/10.33 1471[label="primCmpDouble (Double vxw270 (Pos vxw2710)) (Double vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2669[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2669[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2669 -> 1638[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2670[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1471 -> 2670[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2670 -> 1639[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1472[label="primCmpDouble (Double vxw270 (Neg vxw2710)) (Double vxw250 vxw251)",fontsize=16,color="burlywood",shape="box"];2671[label="vxw251/Pos vxw2510",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2671[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2671 -> 1640[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2672[label="vxw251/Neg vxw2510",fontsize=10,color="white",style="solid",shape="box"];1472 -> 2672[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2672 -> 1641[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1473[label="vxw25",fontsize=16,color="green",shape="box"];1474[label="vxw27",fontsize=16,color="green",shape="box"];1475[label="compare2 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1475 -> 1642[label="",style="solid", color="black", weight=3]; 23.57/10.33 1476[label="compare2 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1476 -> 1643[label="",style="solid", color="black", weight=3]; 23.57/10.33 1477[label="GT",fontsize=16,color="green",shape="box"];1478[label="vxw64",fontsize=16,color="green",shape="box"];1479[label="not False",fontsize=16,color="black",shape="box"];1479 -> 1644[label="",style="solid", color="black", weight=3]; 23.57/10.33 1480[label="not True",fontsize=16,color="black",shape="box"];1480 -> 1645[label="",style="solid", color="black", weight=3]; 23.57/10.33 1481 -> 690[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1481[label="vxw280 < vxw260",fontsize=16,color="magenta"];1481 -> 1646[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1481 -> 1647[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1482 -> 691[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1482[label="vxw280 < vxw260",fontsize=16,color="magenta"];1482 -> 1648[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1482 -> 1649[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1483 -> 692[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1483[label="vxw280 < vxw260",fontsize=16,color="magenta"];1483 -> 1650[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1483 -> 1651[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1484 -> 693[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1484[label="vxw280 < vxw260",fontsize=16,color="magenta"];1484 -> 1652[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1484 -> 1653[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1485 -> 694[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1485[label="vxw280 < vxw260",fontsize=16,color="magenta"];1485 -> 1654[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1485 -> 1655[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1486 -> 695[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1486[label="vxw280 < vxw260",fontsize=16,color="magenta"];1486 -> 1656[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1486 -> 1657[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1487 -> 696[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1487[label="vxw280 < vxw260",fontsize=16,color="magenta"];1487 -> 1658[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1487 -> 1659[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1488 -> 697[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1488[label="vxw280 < vxw260",fontsize=16,color="magenta"];1488 -> 1660[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1488 -> 1661[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1489 -> 698[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1489[label="vxw280 < vxw260",fontsize=16,color="magenta"];1489 -> 1662[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1489 -> 1663[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1490 -> 699[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1490[label="vxw280 < vxw260",fontsize=16,color="magenta"];1490 -> 1664[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1490 -> 1665[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1491 -> 700[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1491[label="vxw280 < vxw260",fontsize=16,color="magenta"];1491 -> 1666[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1491 -> 1667[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1492 -> 701[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1492[label="vxw280 < vxw260",fontsize=16,color="magenta"];1492 -> 1668[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1492 -> 1669[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1493 -> 702[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1493[label="vxw280 < vxw260",fontsize=16,color="magenta"];1493 -> 1670[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1493 -> 1671[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1494 -> 703[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1494[label="vxw280 < vxw260",fontsize=16,color="magenta"];1494 -> 1672[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1494 -> 1673[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1495[label="vxw280 == vxw260",fontsize=16,color="blue",shape="box"];2673[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2673[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2673 -> 1674[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2674[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2674[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2674 -> 1675[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2675[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2675[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2675 -> 1676[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2676[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2676[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2676 -> 1677[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2677[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2677[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2677 -> 1678[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2678[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2678[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2678 -> 1679[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2679[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2679[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2679 -> 1680[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2680[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2680[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2680 -> 1681[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2681[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2681[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2681 -> 1682[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2682[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2682[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2682 -> 1683[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2683[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2683[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2683 -> 1684[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2684[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2684[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2684 -> 1685[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2685[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2685[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2685 -> 1686[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2686[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1495 -> 2686[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2686 -> 1687[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1496 -> 685[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1496[label="vxw281 < vxw261 || vxw281 == vxw261 && vxw282 <= vxw262",fontsize=16,color="magenta"];1496 -> 1688[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1496 -> 1689[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1497[label="vxw280",fontsize=16,color="green",shape="box"];1498[label="vxw260",fontsize=16,color="green",shape="box"];1499[label="vxw280",fontsize=16,color="green",shape="box"];1500[label="vxw260",fontsize=16,color="green",shape="box"];1501[label="vxw280",fontsize=16,color="green",shape="box"];1502[label="vxw260",fontsize=16,color="green",shape="box"];1503[label="vxw280",fontsize=16,color="green",shape="box"];1504[label="vxw260",fontsize=16,color="green",shape="box"];1505[label="vxw280",fontsize=16,color="green",shape="box"];1506[label="vxw260",fontsize=16,color="green",shape="box"];1507[label="vxw280",fontsize=16,color="green",shape="box"];1508[label="vxw260",fontsize=16,color="green",shape="box"];1509[label="vxw280",fontsize=16,color="green",shape="box"];1510[label="vxw260",fontsize=16,color="green",shape="box"];1511[label="vxw280",fontsize=16,color="green",shape="box"];1512[label="vxw260",fontsize=16,color="green",shape="box"];1513[label="vxw280",fontsize=16,color="green",shape="box"];1514[label="vxw260",fontsize=16,color="green",shape="box"];1515[label="vxw280",fontsize=16,color="green",shape="box"];1516[label="vxw260",fontsize=16,color="green",shape="box"];1517[label="vxw280",fontsize=16,color="green",shape="box"];1518[label="vxw260",fontsize=16,color="green",shape="box"];1519[label="vxw280",fontsize=16,color="green",shape="box"];1520[label="vxw260",fontsize=16,color="green",shape="box"];1521[label="vxw280",fontsize=16,color="green",shape="box"];1522[label="vxw260",fontsize=16,color="green",shape="box"];1523[label="vxw280",fontsize=16,color="green",shape="box"];1524[label="vxw260",fontsize=16,color="green",shape="box"];1525[label="vxw280",fontsize=16,color="green",shape="box"];1526[label="vxw260",fontsize=16,color="green",shape="box"];1527[label="vxw280",fontsize=16,color="green",shape="box"];1528[label="vxw260",fontsize=16,color="green",shape="box"];1529[label="vxw280",fontsize=16,color="green",shape="box"];1530[label="vxw260",fontsize=16,color="green",shape="box"];1531[label="vxw280",fontsize=16,color="green",shape="box"];1532[label="vxw260",fontsize=16,color="green",shape="box"];1533[label="vxw280",fontsize=16,color="green",shape="box"];1534[label="vxw260",fontsize=16,color="green",shape="box"];1535[label="vxw280",fontsize=16,color="green",shape="box"];1536[label="vxw260",fontsize=16,color="green",shape="box"];1537[label="vxw280",fontsize=16,color="green",shape="box"];1538[label="vxw260",fontsize=16,color="green",shape="box"];1539[label="vxw280",fontsize=16,color="green",shape="box"];1540[label="vxw260",fontsize=16,color="green",shape="box"];1541[label="vxw280",fontsize=16,color="green",shape="box"];1542[label="vxw260",fontsize=16,color="green",shape="box"];1543[label="vxw280",fontsize=16,color="green",shape="box"];1544[label="vxw260",fontsize=16,color="green",shape="box"];1545[label="vxw280",fontsize=16,color="green",shape="box"];1546[label="vxw260",fontsize=16,color="green",shape="box"];1547[label="vxw280",fontsize=16,color="green",shape="box"];1548[label="vxw260",fontsize=16,color="green",shape="box"];1549[label="vxw280",fontsize=16,color="green",shape="box"];1550[label="vxw260",fontsize=16,color="green",shape="box"];1551[label="vxw280",fontsize=16,color="green",shape="box"];1552[label="vxw260",fontsize=16,color="green",shape="box"];1553[label="vxw280",fontsize=16,color="green",shape="box"];1554[label="vxw260",fontsize=16,color="green",shape="box"];1555[label="vxw280",fontsize=16,color="green",shape="box"];1556[label="vxw260",fontsize=16,color="green",shape="box"];1557[label="vxw280",fontsize=16,color="green",shape="box"];1558[label="vxw260",fontsize=16,color="green",shape="box"];1559[label="vxw280",fontsize=16,color="green",shape="box"];1560[label="vxw260",fontsize=16,color="green",shape="box"];1561[label="vxw280",fontsize=16,color="green",shape="box"];1562[label="vxw260",fontsize=16,color="green",shape="box"];1563[label="vxw280",fontsize=16,color="green",shape="box"];1564[label="vxw260",fontsize=16,color="green",shape="box"];1565[label="vxw280",fontsize=16,color="green",shape="box"];1566[label="vxw260",fontsize=16,color="green",shape="box"];1567[label="vxw280",fontsize=16,color="green",shape="box"];1568[label="vxw260",fontsize=16,color="green",shape="box"];1569[label="vxw280",fontsize=16,color="green",shape="box"];1570[label="vxw260",fontsize=16,color="green",shape="box"];1571[label="vxw280",fontsize=16,color="green",shape="box"];1572[label="vxw260",fontsize=16,color="green",shape="box"];1573[label="vxw280",fontsize=16,color="green",shape="box"];1574[label="vxw260",fontsize=16,color="green",shape="box"];1575[label="vxw280",fontsize=16,color="green",shape="box"];1576[label="vxw260",fontsize=16,color="green",shape="box"];1577[label="vxw280",fontsize=16,color="green",shape="box"];1578[label="vxw260",fontsize=16,color="green",shape="box"];1579[label="vxw280",fontsize=16,color="green",shape="box"];1580[label="vxw260",fontsize=16,color="green",shape="box"];1581 -> 690[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1581[label="vxw280 < vxw260",fontsize=16,color="magenta"];1581 -> 1690[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1581 -> 1691[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1582 -> 691[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1582[label="vxw280 < vxw260",fontsize=16,color="magenta"];1582 -> 1692[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1582 -> 1693[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1583 -> 692[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1583[label="vxw280 < vxw260",fontsize=16,color="magenta"];1583 -> 1694[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1583 -> 1695[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1584 -> 693[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1584[label="vxw280 < vxw260",fontsize=16,color="magenta"];1584 -> 1696[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1584 -> 1697[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1585 -> 694[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1585[label="vxw280 < vxw260",fontsize=16,color="magenta"];1585 -> 1698[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1585 -> 1699[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1586 -> 695[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1586[label="vxw280 < vxw260",fontsize=16,color="magenta"];1586 -> 1700[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1586 -> 1701[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1587 -> 696[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1587[label="vxw280 < vxw260",fontsize=16,color="magenta"];1587 -> 1702[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1587 -> 1703[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1588 -> 697[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1588[label="vxw280 < vxw260",fontsize=16,color="magenta"];1588 -> 1704[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1588 -> 1705[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1589 -> 698[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1589[label="vxw280 < vxw260",fontsize=16,color="magenta"];1589 -> 1706[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1589 -> 1707[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1590 -> 699[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1590[label="vxw280 < vxw260",fontsize=16,color="magenta"];1590 -> 1708[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1590 -> 1709[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1591 -> 700[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1591[label="vxw280 < vxw260",fontsize=16,color="magenta"];1591 -> 1710[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1591 -> 1711[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1592 -> 701[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1592[label="vxw280 < vxw260",fontsize=16,color="magenta"];1592 -> 1712[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1592 -> 1713[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1593 -> 702[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1593[label="vxw280 < vxw260",fontsize=16,color="magenta"];1593 -> 1714[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1593 -> 1715[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1594 -> 703[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1594[label="vxw280 < vxw260",fontsize=16,color="magenta"];1594 -> 1716[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1594 -> 1717[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1595[label="vxw280 == vxw260",fontsize=16,color="blue",shape="box"];2687[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2687[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2687 -> 1718[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2688[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2688[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2688 -> 1719[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2689[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2689[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2689 -> 1720[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2690[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2690[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2690 -> 1721[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2691[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2691[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2691 -> 1722[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2692[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2692[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2692 -> 1723[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2693[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2693[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2693 -> 1724[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2694[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2694[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2694 -> 1725[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2695[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2695[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2695 -> 1726[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2696[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2696[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2696 -> 1727[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2697[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2697[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2697 -> 1728[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2698[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2698[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2698 -> 1729[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2699[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2699[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2699 -> 1730[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2700[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1595 -> 2700[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2700 -> 1731[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1596[label="vxw281 <= vxw261",fontsize=16,color="blue",shape="box"];2701[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2701[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2701 -> 1732[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2702[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2702[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2702 -> 1733[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2703[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2703[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2703 -> 1734[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2704[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2704[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2704 -> 1735[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2705[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2705[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2705 -> 1736[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2706[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2706[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2706 -> 1737[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2707[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2707[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2707 -> 1738[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2708[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2708[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2708 -> 1739[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2709[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2709[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2709 -> 1740[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2710[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2710[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2710 -> 1741[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2711[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2711[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2711 -> 1742[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2712[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2712[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2712 -> 1743[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2713[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2713[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2713 -> 1744[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2714[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1596 -> 2714[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2714 -> 1745[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1597[label="primMulNat (Succ vxw30100) vxw40000",fontsize=16,color="burlywood",shape="box"];2715[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1597 -> 2715[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2715 -> 1746[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2716[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1597 -> 2716[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2716 -> 1747[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1598[label="primMulNat Zero vxw40000",fontsize=16,color="burlywood",shape="box"];2717[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1598 -> 2717[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2717 -> 1748[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2718[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1598 -> 2718[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2718 -> 1749[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1599[label="vxw40000",fontsize=16,color="green",shape="box"];1600[label="vxw3010",fontsize=16,color="green",shape="box"];1601[label="vxw40000",fontsize=16,color="green",shape="box"];1602[label="vxw3010",fontsize=16,color="green",shape="box"];1603[label="primCmpNat (Succ vxw2700) vxw250",fontsize=16,color="burlywood",shape="box"];2719[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2719[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2719 -> 1750[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2720[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1603 -> 2720[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2720 -> 1751[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1604[label="primCmpNat Zero vxw250",fontsize=16,color="burlywood",shape="box"];2721[label="vxw250/Succ vxw2500",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2721[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2721 -> 1752[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2722[label="vxw250/Zero",fontsize=10,color="white",style="solid",shape="box"];1604 -> 2722[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2722 -> 1753[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1605 -> 1754[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1605[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1605 -> 1755[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1606[label="EQ",fontsize=16,color="green",shape="box"];1607 -> 1756[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1607[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1607 -> 1757[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1608[label="EQ",fontsize=16,color="green",shape="box"];1609 -> 1758[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1609[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1609 -> 1759[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1610[label="EQ",fontsize=16,color="green",shape="box"];1611[label="vxw271",fontsize=16,color="green",shape="box"];1612[label="vxw251",fontsize=16,color="green",shape="box"];1613 -> 1760[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1613[label="primCompAux0 vxw72 (compare vxw270 vxw250)",fontsize=16,color="magenta"];1613 -> 1761[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1613 -> 1762[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1614[label="vxw270 * vxw251",fontsize=16,color="burlywood",shape="triangle"];2723[label="vxw270/Integer vxw2700",fontsize=10,color="white",style="solid",shape="box"];1614 -> 2723[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2723 -> 1763[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1615 -> 1614[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1615[label="vxw250 * vxw271",fontsize=16,color="magenta"];1615 -> 1764[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1615 -> 1765[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1616 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1616[label="vxw270 * vxw251",fontsize=16,color="magenta"];1616 -> 1766[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1616 -> 1767[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1617 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1617[label="vxw250 * vxw271",fontsize=16,color="magenta"];1617 -> 1768[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1617 -> 1769[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1618[label="primCmpFloat (Float vxw270 (Pos vxw2710)) (Float vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1618 -> 1770[label="",style="solid", color="black", weight=3]; 23.57/10.33 1619[label="primCmpFloat (Float vxw270 (Pos vxw2710)) (Float vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1619 -> 1771[label="",style="solid", color="black", weight=3]; 23.57/10.33 1620[label="primCmpFloat (Float vxw270 (Neg vxw2710)) (Float vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1620 -> 1772[label="",style="solid", color="black", weight=3]; 23.57/10.33 1621[label="primCmpFloat (Float vxw270 (Neg vxw2710)) (Float vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1621 -> 1773[label="",style="solid", color="black", weight=3]; 23.57/10.33 1622 -> 1434[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1622[label="primCmpNat (Succ vxw2700) vxw250",fontsize=16,color="magenta"];1622 -> 1774[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1622 -> 1775[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1623[label="GT",fontsize=16,color="green",shape="box"];1624[label="primCmpInt (Pos Zero) (Pos (Succ vxw2500))",fontsize=16,color="black",shape="box"];1624 -> 1776[label="",style="solid", color="black", weight=3]; 23.57/10.33 1625[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1625 -> 1777[label="",style="solid", color="black", weight=3]; 23.57/10.33 1626[label="primCmpInt (Pos Zero) (Neg (Succ vxw2500))",fontsize=16,color="black",shape="box"];1626 -> 1778[label="",style="solid", color="black", weight=3]; 23.57/10.33 1627[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1627 -> 1779[label="",style="solid", color="black", weight=3]; 23.57/10.33 1628[label="LT",fontsize=16,color="green",shape="box"];1629 -> 1434[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1629[label="primCmpNat vxw250 (Succ vxw2700)",fontsize=16,color="magenta"];1629 -> 1780[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1629 -> 1781[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1630[label="primCmpInt (Neg Zero) (Pos (Succ vxw2500))",fontsize=16,color="black",shape="box"];1630 -> 1782[label="",style="solid", color="black", weight=3]; 23.57/10.33 1631[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1631 -> 1783[label="",style="solid", color="black", weight=3]; 23.57/10.33 1632[label="primCmpInt (Neg Zero) (Neg (Succ vxw2500))",fontsize=16,color="black",shape="box"];1632 -> 1784[label="",style="solid", color="black", weight=3]; 23.57/10.33 1633[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1633 -> 1785[label="",style="solid", color="black", weight=3]; 23.57/10.33 1634 -> 1786[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1634[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1634 -> 1787[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1635[label="EQ",fontsize=16,color="green",shape="box"];1636 -> 1788[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1636[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1636 -> 1789[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1637[label="EQ",fontsize=16,color="green",shape="box"];1638[label="primCmpDouble (Double vxw270 (Pos vxw2710)) (Double vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1638 -> 1790[label="",style="solid", color="black", weight=3]; 23.57/10.33 1639[label="primCmpDouble (Double vxw270 (Pos vxw2710)) (Double vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1639 -> 1791[label="",style="solid", color="black", weight=3]; 23.57/10.33 1640[label="primCmpDouble (Double vxw270 (Neg vxw2710)) (Double vxw250 (Pos vxw2510))",fontsize=16,color="black",shape="box"];1640 -> 1792[label="",style="solid", color="black", weight=3]; 23.57/10.33 1641[label="primCmpDouble (Double vxw270 (Neg vxw2710)) (Double vxw250 (Neg vxw2510))",fontsize=16,color="black",shape="box"];1641 -> 1793[label="",style="solid", color="black", weight=3]; 23.57/10.33 1642 -> 1794[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1642[label="compare1 vxw27 vxw25 (vxw27 <= vxw25)",fontsize=16,color="magenta"];1642 -> 1795[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1643[label="EQ",fontsize=16,color="green",shape="box"];1644[label="True",fontsize=16,color="green",shape="box"];1645[label="False",fontsize=16,color="green",shape="box"];1646[label="vxw280",fontsize=16,color="green",shape="box"];1647[label="vxw260",fontsize=16,color="green",shape="box"];1648[label="vxw280",fontsize=16,color="green",shape="box"];1649[label="vxw260",fontsize=16,color="green",shape="box"];1650[label="vxw280",fontsize=16,color="green",shape="box"];1651[label="vxw260",fontsize=16,color="green",shape="box"];1652[label="vxw280",fontsize=16,color="green",shape="box"];1653[label="vxw260",fontsize=16,color="green",shape="box"];1654[label="vxw280",fontsize=16,color="green",shape="box"];1655[label="vxw260",fontsize=16,color="green",shape="box"];1656[label="vxw280",fontsize=16,color="green",shape="box"];1657[label="vxw260",fontsize=16,color="green",shape="box"];1658[label="vxw280",fontsize=16,color="green",shape="box"];1659[label="vxw260",fontsize=16,color="green",shape="box"];1660[label="vxw280",fontsize=16,color="green",shape="box"];1661[label="vxw260",fontsize=16,color="green",shape="box"];1662[label="vxw280",fontsize=16,color="green",shape="box"];1663[label="vxw260",fontsize=16,color="green",shape="box"];1664[label="vxw280",fontsize=16,color="green",shape="box"];1665[label="vxw260",fontsize=16,color="green",shape="box"];1666[label="vxw280",fontsize=16,color="green",shape="box"];1667[label="vxw260",fontsize=16,color="green",shape="box"];1668[label="vxw280",fontsize=16,color="green",shape="box"];1669[label="vxw260",fontsize=16,color="green",shape="box"];1670[label="vxw280",fontsize=16,color="green",shape="box"];1671[label="vxw260",fontsize=16,color="green",shape="box"];1672[label="vxw280",fontsize=16,color="green",shape="box"];1673[label="vxw260",fontsize=16,color="green",shape="box"];1674 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1674[label="vxw280 == vxw260",fontsize=16,color="magenta"];1674 -> 1796[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1674 -> 1797[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1675 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1675[label="vxw280 == vxw260",fontsize=16,color="magenta"];1675 -> 1798[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1675 -> 1799[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1676 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1676[label="vxw280 == vxw260",fontsize=16,color="magenta"];1676 -> 1800[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1676 -> 1801[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1677 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1677[label="vxw280 == vxw260",fontsize=16,color="magenta"];1677 -> 1802[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1677 -> 1803[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1678 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1678[label="vxw280 == vxw260",fontsize=16,color="magenta"];1678 -> 1804[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1678 -> 1805[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1679 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1679[label="vxw280 == vxw260",fontsize=16,color="magenta"];1679 -> 1806[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1679 -> 1807[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1680 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1680[label="vxw280 == vxw260",fontsize=16,color="magenta"];1680 -> 1808[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1680 -> 1809[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1681 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1681[label="vxw280 == vxw260",fontsize=16,color="magenta"];1681 -> 1810[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1681 -> 1811[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1682 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1682[label="vxw280 == vxw260",fontsize=16,color="magenta"];1682 -> 1812[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1682 -> 1813[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1683 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1683[label="vxw280 == vxw260",fontsize=16,color="magenta"];1683 -> 1814[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1683 -> 1815[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1684 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1684[label="vxw280 == vxw260",fontsize=16,color="magenta"];1684 -> 1816[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1684 -> 1817[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1685 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1685[label="vxw280 == vxw260",fontsize=16,color="magenta"];1685 -> 1818[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1685 -> 1819[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1686 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1686[label="vxw280 == vxw260",fontsize=16,color="magenta"];1686 -> 1820[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1686 -> 1821[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1687 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1687[label="vxw280 == vxw260",fontsize=16,color="magenta"];1687 -> 1822[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1687 -> 1823[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1688[label="vxw281 < vxw261",fontsize=16,color="blue",shape="box"];2724[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2724[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2724 -> 1824[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2725[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2725[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2725 -> 1825[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2726[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2726[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2726 -> 1826[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2727[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2727[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2727 -> 1827[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2728[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2728[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2728 -> 1828[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2729[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2729[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2729 -> 1829[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2730[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2730[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2730 -> 1830[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2731[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2731[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2731 -> 1831[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2732[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2732[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2732 -> 1832[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2733[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2733[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2733 -> 1833[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2734[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2734[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2734 -> 1834[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2735[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2735[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2735 -> 1835[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2736[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2736[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2736 -> 1836[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2737[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1688 -> 2737[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2737 -> 1837[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1689 -> 396[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1689[label="vxw281 == vxw261 && vxw282 <= vxw262",fontsize=16,color="magenta"];1689 -> 1838[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1689 -> 1839[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1690[label="vxw280",fontsize=16,color="green",shape="box"];1691[label="vxw260",fontsize=16,color="green",shape="box"];1692[label="vxw280",fontsize=16,color="green",shape="box"];1693[label="vxw260",fontsize=16,color="green",shape="box"];1694[label="vxw280",fontsize=16,color="green",shape="box"];1695[label="vxw260",fontsize=16,color="green",shape="box"];1696[label="vxw280",fontsize=16,color="green",shape="box"];1697[label="vxw260",fontsize=16,color="green",shape="box"];1698[label="vxw280",fontsize=16,color="green",shape="box"];1699[label="vxw260",fontsize=16,color="green",shape="box"];1700[label="vxw280",fontsize=16,color="green",shape="box"];1701[label="vxw260",fontsize=16,color="green",shape="box"];1702[label="vxw280",fontsize=16,color="green",shape="box"];1703[label="vxw260",fontsize=16,color="green",shape="box"];1704[label="vxw280",fontsize=16,color="green",shape="box"];1705[label="vxw260",fontsize=16,color="green",shape="box"];1706[label="vxw280",fontsize=16,color="green",shape="box"];1707[label="vxw260",fontsize=16,color="green",shape="box"];1708[label="vxw280",fontsize=16,color="green",shape="box"];1709[label="vxw260",fontsize=16,color="green",shape="box"];1710[label="vxw280",fontsize=16,color="green",shape="box"];1711[label="vxw260",fontsize=16,color="green",shape="box"];1712[label="vxw280",fontsize=16,color="green",shape="box"];1713[label="vxw260",fontsize=16,color="green",shape="box"];1714[label="vxw280",fontsize=16,color="green",shape="box"];1715[label="vxw260",fontsize=16,color="green",shape="box"];1716[label="vxw280",fontsize=16,color="green",shape="box"];1717[label="vxw260",fontsize=16,color="green",shape="box"];1718 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1718[label="vxw280 == vxw260",fontsize=16,color="magenta"];1718 -> 1840[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1718 -> 1841[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1719 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1719[label="vxw280 == vxw260",fontsize=16,color="magenta"];1719 -> 1842[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1719 -> 1843[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1720 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1720[label="vxw280 == vxw260",fontsize=16,color="magenta"];1720 -> 1844[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1720 -> 1845[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1721 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1721[label="vxw280 == vxw260",fontsize=16,color="magenta"];1721 -> 1846[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1721 -> 1847[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1722 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1722[label="vxw280 == vxw260",fontsize=16,color="magenta"];1722 -> 1848[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1722 -> 1849[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1723 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1723[label="vxw280 == vxw260",fontsize=16,color="magenta"];1723 -> 1850[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1723 -> 1851[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1724 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1724[label="vxw280 == vxw260",fontsize=16,color="magenta"];1724 -> 1852[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1724 -> 1853[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1725 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1725[label="vxw280 == vxw260",fontsize=16,color="magenta"];1725 -> 1854[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1725 -> 1855[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1726 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1726[label="vxw280 == vxw260",fontsize=16,color="magenta"];1726 -> 1856[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1726 -> 1857[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1727 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1727[label="vxw280 == vxw260",fontsize=16,color="magenta"];1727 -> 1858[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1727 -> 1859[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1728 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1728[label="vxw280 == vxw260",fontsize=16,color="magenta"];1728 -> 1860[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1728 -> 1861[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1729 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1729[label="vxw280 == vxw260",fontsize=16,color="magenta"];1729 -> 1862[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1729 -> 1863[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1730 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1730[label="vxw280 == vxw260",fontsize=16,color="magenta"];1730 -> 1864[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1730 -> 1865[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1731 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1731[label="vxw280 == vxw260",fontsize=16,color="magenta"];1731 -> 1866[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1731 -> 1867[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1732 -> 906[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1732[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1732 -> 1868[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1732 -> 1869[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1733 -> 907[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1733[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1733 -> 1870[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1733 -> 1871[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1734 -> 908[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1734[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1734 -> 1872[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1734 -> 1873[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1735 -> 909[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1735[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1735 -> 1874[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1735 -> 1875[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1736 -> 910[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1736[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1736 -> 1876[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1736 -> 1877[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1737 -> 911[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1737[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1737 -> 1878[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1737 -> 1879[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1738 -> 912[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1738[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1738 -> 1880[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1738 -> 1881[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1739 -> 913[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1739[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1739 -> 1882[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1739 -> 1883[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1740 -> 914[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1740[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1740 -> 1884[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1740 -> 1885[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1741 -> 915[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1741[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1741 -> 1886[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1741 -> 1887[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1742 -> 916[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1742[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1742 -> 1888[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1742 -> 1889[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1743 -> 917[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1743[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1743 -> 1890[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1743 -> 1891[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1744 -> 918[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1744[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1744 -> 1892[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1744 -> 1893[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1745 -> 919[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1745[label="vxw281 <= vxw261",fontsize=16,color="magenta"];1745 -> 1894[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1745 -> 1895[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1746[label="primMulNat (Succ vxw30100) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1746 -> 1896[label="",style="solid", color="black", weight=3]; 23.57/10.33 1747[label="primMulNat (Succ vxw30100) Zero",fontsize=16,color="black",shape="box"];1747 -> 1897[label="",style="solid", color="black", weight=3]; 23.57/10.33 1748[label="primMulNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1748 -> 1898[label="",style="solid", color="black", weight=3]; 23.57/10.33 1749[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1749 -> 1899[label="",style="solid", color="black", weight=3]; 23.57/10.33 1750[label="primCmpNat (Succ vxw2700) (Succ vxw2500)",fontsize=16,color="black",shape="box"];1750 -> 1900[label="",style="solid", color="black", weight=3]; 23.57/10.33 1751[label="primCmpNat (Succ vxw2700) Zero",fontsize=16,color="black",shape="box"];1751 -> 1901[label="",style="solid", color="black", weight=3]; 23.57/10.33 1752[label="primCmpNat Zero (Succ vxw2500)",fontsize=16,color="black",shape="box"];1752 -> 1902[label="",style="solid", color="black", weight=3]; 23.57/10.33 1753[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1753 -> 1903[label="",style="solid", color="black", weight=3]; 23.57/10.33 1755 -> 907[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1755[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1755 -> 1904[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1755 -> 1905[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1754[label="compare1 vxw27 vxw25 vxw73",fontsize=16,color="burlywood",shape="triangle"];2738[label="vxw73/False",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2738[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2738 -> 1906[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2739[label="vxw73/True",fontsize=10,color="white",style="solid",shape="box"];1754 -> 2739[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2739 -> 1907[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1757 -> 908[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1757[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1757 -> 1908[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1757 -> 1909[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1756[label="compare1 vxw27 vxw25 vxw74",fontsize=16,color="burlywood",shape="triangle"];2740[label="vxw74/False",fontsize=10,color="white",style="solid",shape="box"];1756 -> 2740[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2740 -> 1910[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2741[label="vxw74/True",fontsize=10,color="white",style="solid",shape="box"];1756 -> 2741[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2741 -> 1911[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1759 -> 910[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1759[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1759 -> 1912[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1759 -> 1913[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1758[label="compare1 vxw27 vxw25 vxw75",fontsize=16,color="burlywood",shape="triangle"];2742[label="vxw75/False",fontsize=10,color="white",style="solid",shape="box"];1758 -> 2742[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2742 -> 1914[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2743[label="vxw75/True",fontsize=10,color="white",style="solid",shape="box"];1758 -> 2743[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2743 -> 1915[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1761[label="vxw72",fontsize=16,color="green",shape="box"];1762[label="compare vxw270 vxw250",fontsize=16,color="blue",shape="box"];2744[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2744[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2744 -> 1916[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2745[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2745[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2745 -> 1917[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2746[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2746[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2746 -> 1918[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2747[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2747[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2747 -> 1919[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2748[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2748[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2748 -> 1920[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2749[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2749[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2749 -> 1921[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2750[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2750[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2750 -> 1922[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2751[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2751[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2751 -> 1923[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2752[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2752[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2752 -> 1924[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2753[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2753[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2753 -> 1925[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2754[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2754[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2754 -> 1926[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2755[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2755[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2755 -> 1927[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2756[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2756[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2756 -> 1928[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2757[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1762 -> 2757[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2757 -> 1929[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1760[label="primCompAux0 vxw79 vxw80",fontsize=16,color="burlywood",shape="triangle"];2758[label="vxw80/LT",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2758[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2758 -> 1930[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2759[label="vxw80/EQ",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2759[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2759 -> 1931[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2760[label="vxw80/GT",fontsize=10,color="white",style="solid",shape="box"];1760 -> 2760[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2760 -> 1932[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1763[label="Integer vxw2700 * vxw251",fontsize=16,color="burlywood",shape="box"];2761[label="vxw251/Integer vxw2510",fontsize=10,color="white",style="solid",shape="box"];1763 -> 2761[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2761 -> 1933[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1764[label="vxw250",fontsize=16,color="green",shape="box"];1765[label="vxw271",fontsize=16,color="green",shape="box"];1766[label="vxw251",fontsize=16,color="green",shape="box"];1767[label="vxw270",fontsize=16,color="green",shape="box"];1768[label="vxw271",fontsize=16,color="green",shape="box"];1769[label="vxw250",fontsize=16,color="green",shape="box"];1770 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1770[label="compare (vxw270 * Pos vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1770 -> 1934[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1770 -> 1935[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1771 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1771[label="compare (vxw270 * Pos vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1771 -> 1936[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1771 -> 1937[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1772 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1772[label="compare (vxw270 * Neg vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1772 -> 1938[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1772 -> 1939[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1773 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1773[label="compare (vxw270 * Neg vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1773 -> 1940[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1773 -> 1941[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1774[label="Succ vxw2700",fontsize=16,color="green",shape="box"];1775[label="vxw250",fontsize=16,color="green",shape="box"];1776 -> 1434[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1776[label="primCmpNat Zero (Succ vxw2500)",fontsize=16,color="magenta"];1776 -> 1942[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1776 -> 1943[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1777[label="EQ",fontsize=16,color="green",shape="box"];1778[label="GT",fontsize=16,color="green",shape="box"];1779[label="EQ",fontsize=16,color="green",shape="box"];1780[label="vxw250",fontsize=16,color="green",shape="box"];1781[label="Succ vxw2700",fontsize=16,color="green",shape="box"];1782[label="LT",fontsize=16,color="green",shape="box"];1783[label="EQ",fontsize=16,color="green",shape="box"];1784 -> 1434[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1784[label="primCmpNat (Succ vxw2500) Zero",fontsize=16,color="magenta"];1784 -> 1944[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1784 -> 1945[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1785[label="EQ",fontsize=16,color="green",shape="box"];1787 -> 916[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1787[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1787 -> 1946[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1787 -> 1947[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1786[label="compare1 vxw27 vxw25 vxw81",fontsize=16,color="burlywood",shape="triangle"];2762[label="vxw81/False",fontsize=10,color="white",style="solid",shape="box"];1786 -> 2762[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2762 -> 1948[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2763[label="vxw81/True",fontsize=10,color="white",style="solid",shape="box"];1786 -> 2763[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2763 -> 1949[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1789 -> 917[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1789[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1789 -> 1950[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1789 -> 1951[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1788[label="compare1 vxw27 vxw25 vxw82",fontsize=16,color="burlywood",shape="triangle"];2764[label="vxw82/False",fontsize=10,color="white",style="solid",shape="box"];1788 -> 2764[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2764 -> 1952[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2765[label="vxw82/True",fontsize=10,color="white",style="solid",shape="box"];1788 -> 2765[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2765 -> 1953[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1790 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1790[label="compare (vxw270 * Pos vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1790 -> 1954[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1790 -> 1955[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1791 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1791[label="compare (vxw270 * Pos vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1791 -> 1956[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1791 -> 1957[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1792 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1792[label="compare (vxw270 * Neg vxw2510) (Pos vxw2710 * vxw250)",fontsize=16,color="magenta"];1792 -> 1958[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1792 -> 1959[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1793 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1793[label="compare (vxw270 * Neg vxw2510) (Neg vxw2710 * vxw250)",fontsize=16,color="magenta"];1793 -> 1960[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1793 -> 1961[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1795 -> 919[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1795[label="vxw27 <= vxw25",fontsize=16,color="magenta"];1795 -> 1962[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1795 -> 1963[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1794[label="compare1 vxw27 vxw25 vxw83",fontsize=16,color="burlywood",shape="triangle"];2766[label="vxw83/False",fontsize=10,color="white",style="solid",shape="box"];1794 -> 2766[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2766 -> 1964[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2767[label="vxw83/True",fontsize=10,color="white",style="solid",shape="box"];1794 -> 2767[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2767 -> 1965[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 1796[label="vxw260",fontsize=16,color="green",shape="box"];1797[label="vxw280",fontsize=16,color="green",shape="box"];1798[label="vxw260",fontsize=16,color="green",shape="box"];1799[label="vxw280",fontsize=16,color="green",shape="box"];1800[label="vxw260",fontsize=16,color="green",shape="box"];1801[label="vxw280",fontsize=16,color="green",shape="box"];1802[label="vxw260",fontsize=16,color="green",shape="box"];1803[label="vxw280",fontsize=16,color="green",shape="box"];1804[label="vxw260",fontsize=16,color="green",shape="box"];1805[label="vxw280",fontsize=16,color="green",shape="box"];1806[label="vxw260",fontsize=16,color="green",shape="box"];1807[label="vxw280",fontsize=16,color="green",shape="box"];1808[label="vxw260",fontsize=16,color="green",shape="box"];1809[label="vxw280",fontsize=16,color="green",shape="box"];1810[label="vxw260",fontsize=16,color="green",shape="box"];1811[label="vxw280",fontsize=16,color="green",shape="box"];1812[label="vxw260",fontsize=16,color="green",shape="box"];1813[label="vxw280",fontsize=16,color="green",shape="box"];1814[label="vxw260",fontsize=16,color="green",shape="box"];1815[label="vxw280",fontsize=16,color="green",shape="box"];1816[label="vxw260",fontsize=16,color="green",shape="box"];1817[label="vxw280",fontsize=16,color="green",shape="box"];1818[label="vxw260",fontsize=16,color="green",shape="box"];1819[label="vxw280",fontsize=16,color="green",shape="box"];1820[label="vxw260",fontsize=16,color="green",shape="box"];1821[label="vxw280",fontsize=16,color="green",shape="box"];1822[label="vxw260",fontsize=16,color="green",shape="box"];1823[label="vxw280",fontsize=16,color="green",shape="box"];1824 -> 690[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1824[label="vxw281 < vxw261",fontsize=16,color="magenta"];1824 -> 1966[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1824 -> 1967[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1825 -> 691[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1825[label="vxw281 < vxw261",fontsize=16,color="magenta"];1825 -> 1968[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1825 -> 1969[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1826 -> 692[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1826[label="vxw281 < vxw261",fontsize=16,color="magenta"];1826 -> 1970[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1826 -> 1971[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1827 -> 693[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1827[label="vxw281 < vxw261",fontsize=16,color="magenta"];1827 -> 1972[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1827 -> 1973[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1828 -> 694[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1828[label="vxw281 < vxw261",fontsize=16,color="magenta"];1828 -> 1974[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1828 -> 1975[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1829 -> 695[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1829[label="vxw281 < vxw261",fontsize=16,color="magenta"];1829 -> 1976[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1829 -> 1977[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1830 -> 696[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1830[label="vxw281 < vxw261",fontsize=16,color="magenta"];1830 -> 1978[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1830 -> 1979[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1831 -> 697[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1831[label="vxw281 < vxw261",fontsize=16,color="magenta"];1831 -> 1980[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1831 -> 1981[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1832 -> 698[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1832[label="vxw281 < vxw261",fontsize=16,color="magenta"];1832 -> 1982[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1832 -> 1983[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1833 -> 699[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1833[label="vxw281 < vxw261",fontsize=16,color="magenta"];1833 -> 1984[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1833 -> 1985[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1834 -> 700[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1834[label="vxw281 < vxw261",fontsize=16,color="magenta"];1834 -> 1986[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1834 -> 1987[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1835 -> 701[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1835[label="vxw281 < vxw261",fontsize=16,color="magenta"];1835 -> 1988[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1835 -> 1989[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1836 -> 702[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1836[label="vxw281 < vxw261",fontsize=16,color="magenta"];1836 -> 1990[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1836 -> 1991[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1837 -> 703[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1837[label="vxw281 < vxw261",fontsize=16,color="magenta"];1837 -> 1992[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1837 -> 1993[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1838[label="vxw281 == vxw261",fontsize=16,color="blue",shape="box"];2768[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2768[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2768 -> 1994[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2769[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2769[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2769 -> 1995[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2770[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2770[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2770 -> 1996[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2771[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2771[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2771 -> 1997[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2772[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2772[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2772 -> 1998[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2773[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2773[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2773 -> 1999[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2774[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2774[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2774 -> 2000[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2775[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2775[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2775 -> 2001[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2776[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2776[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2776 -> 2002[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2777[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2777[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2777 -> 2003[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2778[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2778[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2778 -> 2004[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2779[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2779[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2779 -> 2005[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2780[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2780[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2780 -> 2006[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2781[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1838 -> 2781[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2781 -> 2007[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1839[label="vxw282 <= vxw262",fontsize=16,color="blue",shape="box"];2782[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2782[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2782 -> 2008[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2783[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2783[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2783 -> 2009[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2784[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2784[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2784 -> 2010[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2785[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2785[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2785 -> 2011[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2786[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2786[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2786 -> 2012[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2787[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2787[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2787 -> 2013[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2788[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2788[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2788 -> 2014[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2789[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2789[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2789 -> 2015[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2790[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2790[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2790 -> 2016[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2791[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2791[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2791 -> 2017[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2792[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2792[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2792 -> 2018[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2793[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2793[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2793 -> 2019[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2794[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2794[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2794 -> 2020[label="",style="solid", color="blue", weight=3]; 23.57/10.33 2795[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1839 -> 2795[label="",style="solid", color="blue", weight=9]; 23.57/10.33 2795 -> 2021[label="",style="solid", color="blue", weight=3]; 23.57/10.33 1840[label="vxw260",fontsize=16,color="green",shape="box"];1841[label="vxw280",fontsize=16,color="green",shape="box"];1842[label="vxw260",fontsize=16,color="green",shape="box"];1843[label="vxw280",fontsize=16,color="green",shape="box"];1844[label="vxw260",fontsize=16,color="green",shape="box"];1845[label="vxw280",fontsize=16,color="green",shape="box"];1846[label="vxw260",fontsize=16,color="green",shape="box"];1847[label="vxw280",fontsize=16,color="green",shape="box"];1848[label="vxw260",fontsize=16,color="green",shape="box"];1849[label="vxw280",fontsize=16,color="green",shape="box"];1850[label="vxw260",fontsize=16,color="green",shape="box"];1851[label="vxw280",fontsize=16,color="green",shape="box"];1852[label="vxw260",fontsize=16,color="green",shape="box"];1853[label="vxw280",fontsize=16,color="green",shape="box"];1854[label="vxw260",fontsize=16,color="green",shape="box"];1855[label="vxw280",fontsize=16,color="green",shape="box"];1856[label="vxw260",fontsize=16,color="green",shape="box"];1857[label="vxw280",fontsize=16,color="green",shape="box"];1858[label="vxw260",fontsize=16,color="green",shape="box"];1859[label="vxw280",fontsize=16,color="green",shape="box"];1860[label="vxw260",fontsize=16,color="green",shape="box"];1861[label="vxw280",fontsize=16,color="green",shape="box"];1862[label="vxw260",fontsize=16,color="green",shape="box"];1863[label="vxw280",fontsize=16,color="green",shape="box"];1864[label="vxw260",fontsize=16,color="green",shape="box"];1865[label="vxw280",fontsize=16,color="green",shape="box"];1866[label="vxw260",fontsize=16,color="green",shape="box"];1867[label="vxw280",fontsize=16,color="green",shape="box"];1868[label="vxw281",fontsize=16,color="green",shape="box"];1869[label="vxw261",fontsize=16,color="green",shape="box"];1870[label="vxw281",fontsize=16,color="green",shape="box"];1871[label="vxw261",fontsize=16,color="green",shape="box"];1872[label="vxw281",fontsize=16,color="green",shape="box"];1873[label="vxw261",fontsize=16,color="green",shape="box"];1874[label="vxw281",fontsize=16,color="green",shape="box"];1875[label="vxw261",fontsize=16,color="green",shape="box"];1876[label="vxw281",fontsize=16,color="green",shape="box"];1877[label="vxw261",fontsize=16,color="green",shape="box"];1878[label="vxw281",fontsize=16,color="green",shape="box"];1879[label="vxw261",fontsize=16,color="green",shape="box"];1880[label="vxw281",fontsize=16,color="green",shape="box"];1881[label="vxw261",fontsize=16,color="green",shape="box"];1882[label="vxw281",fontsize=16,color="green",shape="box"];1883[label="vxw261",fontsize=16,color="green",shape="box"];1884[label="vxw281",fontsize=16,color="green",shape="box"];1885[label="vxw261",fontsize=16,color="green",shape="box"];1886[label="vxw281",fontsize=16,color="green",shape="box"];1887[label="vxw261",fontsize=16,color="green",shape="box"];1888[label="vxw281",fontsize=16,color="green",shape="box"];1889[label="vxw261",fontsize=16,color="green",shape="box"];1890[label="vxw281",fontsize=16,color="green",shape="box"];1891[label="vxw261",fontsize=16,color="green",shape="box"];1892[label="vxw281",fontsize=16,color="green",shape="box"];1893[label="vxw261",fontsize=16,color="green",shape="box"];1894[label="vxw281",fontsize=16,color="green",shape="box"];1895[label="vxw261",fontsize=16,color="green",shape="box"];1896 -> 2022[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1896[label="primPlusNat (primMulNat vxw30100 (Succ vxw400000)) (Succ vxw400000)",fontsize=16,color="magenta"];1896 -> 2023[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1897[label="Zero",fontsize=16,color="green",shape="box"];1898[label="Zero",fontsize=16,color="green",shape="box"];1899[label="Zero",fontsize=16,color="green",shape="box"];1900 -> 1434[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1900[label="primCmpNat vxw2700 vxw2500",fontsize=16,color="magenta"];1900 -> 2024[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1900 -> 2025[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1901[label="GT",fontsize=16,color="green",shape="box"];1902[label="LT",fontsize=16,color="green",shape="box"];1903[label="EQ",fontsize=16,color="green",shape="box"];1904[label="vxw27",fontsize=16,color="green",shape="box"];1905[label="vxw25",fontsize=16,color="green",shape="box"];1906[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1906 -> 2026[label="",style="solid", color="black", weight=3]; 23.57/10.33 1907[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1907 -> 2027[label="",style="solid", color="black", weight=3]; 23.57/10.33 1908[label="vxw27",fontsize=16,color="green",shape="box"];1909[label="vxw25",fontsize=16,color="green",shape="box"];1910[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1910 -> 2028[label="",style="solid", color="black", weight=3]; 23.57/10.33 1911[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1911 -> 2029[label="",style="solid", color="black", weight=3]; 23.57/10.33 1912[label="vxw27",fontsize=16,color="green",shape="box"];1913[label="vxw25",fontsize=16,color="green",shape="box"];1914[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1914 -> 2030[label="",style="solid", color="black", weight=3]; 23.57/10.33 1915[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1915 -> 2031[label="",style="solid", color="black", weight=3]; 23.57/10.33 1916 -> 1095[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1916[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1916 -> 2032[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1916 -> 2033[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1917 -> 1097[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1917[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1917 -> 2034[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1917 -> 2035[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1918 -> 1099[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1918[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1918 -> 2036[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1918 -> 2037[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1919 -> 1101[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1919[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1919 -> 2038[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1919 -> 2039[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1920 -> 1103[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1920[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1920 -> 2040[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1920 -> 2041[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1921 -> 1105[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1921[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1921 -> 2042[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1921 -> 2043[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1922 -> 1107[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1922[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1922 -> 2044[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1922 -> 2045[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1923 -> 1109[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1923[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1923 -> 2046[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1923 -> 2047[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1924 -> 1111[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1924[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1924 -> 2048[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1924 -> 2049[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1925 -> 1113[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1925[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1925 -> 2050[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1925 -> 2051[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1926 -> 1115[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1926[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1926 -> 2052[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1926 -> 2053[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1927 -> 1117[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1927[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1927 -> 2054[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1927 -> 2055[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1928 -> 1119[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1928[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1928 -> 2056[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1928 -> 2057[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1929 -> 1121[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1929[label="compare vxw270 vxw250",fontsize=16,color="magenta"];1929 -> 2058[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1929 -> 2059[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1930[label="primCompAux0 vxw79 LT",fontsize=16,color="black",shape="box"];1930 -> 2060[label="",style="solid", color="black", weight=3]; 23.57/10.33 1931[label="primCompAux0 vxw79 EQ",fontsize=16,color="black",shape="box"];1931 -> 2061[label="",style="solid", color="black", weight=3]; 23.57/10.33 1932[label="primCompAux0 vxw79 GT",fontsize=16,color="black",shape="box"];1932 -> 2062[label="",style="solid", color="black", weight=3]; 23.57/10.33 1933[label="Integer vxw2700 * Integer vxw2510",fontsize=16,color="black",shape="box"];1933 -> 2063[label="",style="solid", color="black", weight=3]; 23.57/10.33 1934 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1934[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1934 -> 2064[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1934 -> 2065[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1935 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1935[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1935 -> 2066[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1935 -> 2067[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1936 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1936[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1936 -> 2068[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1936 -> 2069[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1937 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1937[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1937 -> 2070[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1937 -> 2071[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1938 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1938[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1938 -> 2072[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1938 -> 2073[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1939 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1939[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1939 -> 2074[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1939 -> 2075[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1940 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1940[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1940 -> 2076[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1940 -> 2077[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1941 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1941[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1941 -> 2078[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1941 -> 2079[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1942[label="Zero",fontsize=16,color="green",shape="box"];1943[label="Succ vxw2500",fontsize=16,color="green",shape="box"];1944[label="Succ vxw2500",fontsize=16,color="green",shape="box"];1945[label="Zero",fontsize=16,color="green",shape="box"];1946[label="vxw27",fontsize=16,color="green",shape="box"];1947[label="vxw25",fontsize=16,color="green",shape="box"];1948[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1948 -> 2080[label="",style="solid", color="black", weight=3]; 23.57/10.33 1949[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1949 -> 2081[label="",style="solid", color="black", weight=3]; 23.57/10.33 1950[label="vxw27",fontsize=16,color="green",shape="box"];1951[label="vxw25",fontsize=16,color="green",shape="box"];1952[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1952 -> 2082[label="",style="solid", color="black", weight=3]; 23.57/10.33 1953[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1953 -> 2083[label="",style="solid", color="black", weight=3]; 23.57/10.33 1954 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1954[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1954 -> 2084[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1954 -> 2085[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1955 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1955[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1955 -> 2086[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1955 -> 2087[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1956 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1956[label="vxw270 * Pos vxw2510",fontsize=16,color="magenta"];1956 -> 2088[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1956 -> 2089[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1957 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1957[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1957 -> 2090[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1957 -> 2091[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1958 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1958[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1958 -> 2092[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1958 -> 2093[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1959 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1959[label="Pos vxw2710 * vxw250",fontsize=16,color="magenta"];1959 -> 2094[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1959 -> 2095[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1960 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1960[label="vxw270 * Neg vxw2510",fontsize=16,color="magenta"];1960 -> 2096[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1960 -> 2097[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1961 -> 812[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1961[label="Neg vxw2710 * vxw250",fontsize=16,color="magenta"];1961 -> 2098[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1961 -> 2099[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1962[label="vxw27",fontsize=16,color="green",shape="box"];1963[label="vxw25",fontsize=16,color="green",shape="box"];1964[label="compare1 vxw27 vxw25 False",fontsize=16,color="black",shape="box"];1964 -> 2100[label="",style="solid", color="black", weight=3]; 23.57/10.33 1965[label="compare1 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];1965 -> 2101[label="",style="solid", color="black", weight=3]; 23.57/10.33 1966[label="vxw281",fontsize=16,color="green",shape="box"];1967[label="vxw261",fontsize=16,color="green",shape="box"];1968[label="vxw281",fontsize=16,color="green",shape="box"];1969[label="vxw261",fontsize=16,color="green",shape="box"];1970[label="vxw281",fontsize=16,color="green",shape="box"];1971[label="vxw261",fontsize=16,color="green",shape="box"];1972[label="vxw281",fontsize=16,color="green",shape="box"];1973[label="vxw261",fontsize=16,color="green",shape="box"];1974[label="vxw281",fontsize=16,color="green",shape="box"];1975[label="vxw261",fontsize=16,color="green",shape="box"];1976[label="vxw281",fontsize=16,color="green",shape="box"];1977[label="vxw261",fontsize=16,color="green",shape="box"];1978[label="vxw281",fontsize=16,color="green",shape="box"];1979[label="vxw261",fontsize=16,color="green",shape="box"];1980[label="vxw281",fontsize=16,color="green",shape="box"];1981[label="vxw261",fontsize=16,color="green",shape="box"];1982[label="vxw281",fontsize=16,color="green",shape="box"];1983[label="vxw261",fontsize=16,color="green",shape="box"];1984[label="vxw281",fontsize=16,color="green",shape="box"];1985[label="vxw261",fontsize=16,color="green",shape="box"];1986[label="vxw281",fontsize=16,color="green",shape="box"];1987[label="vxw261",fontsize=16,color="green",shape="box"];1988[label="vxw281",fontsize=16,color="green",shape="box"];1989[label="vxw261",fontsize=16,color="green",shape="box"];1990[label="vxw281",fontsize=16,color="green",shape="box"];1991[label="vxw261",fontsize=16,color="green",shape="box"];1992[label="vxw281",fontsize=16,color="green",shape="box"];1993[label="vxw261",fontsize=16,color="green",shape="box"];1994 -> 412[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1994[label="vxw281 == vxw261",fontsize=16,color="magenta"];1994 -> 2102[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1994 -> 2103[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1995 -> 414[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1995[label="vxw281 == vxw261",fontsize=16,color="magenta"];1995 -> 2104[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1995 -> 2105[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1996 -> 404[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1996[label="vxw281 == vxw261",fontsize=16,color="magenta"];1996 -> 2106[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1996 -> 2107[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1997 -> 406[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1997[label="vxw281 == vxw261",fontsize=16,color="magenta"];1997 -> 2108[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1997 -> 2109[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1998 -> 413[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1998[label="vxw281 == vxw261",fontsize=16,color="magenta"];1998 -> 2110[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1998 -> 2111[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1999 -> 410[label="",style="dashed", color="red", weight=0]; 23.57/10.33 1999[label="vxw281 == vxw261",fontsize=16,color="magenta"];1999 -> 2112[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 1999 -> 2113[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2000 -> 405[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2000[label="vxw281 == vxw261",fontsize=16,color="magenta"];2000 -> 2114[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2000 -> 2115[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2001 -> 403[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2001[label="vxw281 == vxw261",fontsize=16,color="magenta"];2001 -> 2116[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2001 -> 2117[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2002 -> 411[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2002[label="vxw281 == vxw261",fontsize=16,color="magenta"];2002 -> 2118[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2002 -> 2119[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2003 -> 402[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2003[label="vxw281 == vxw261",fontsize=16,color="magenta"];2003 -> 2120[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2003 -> 2121[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2004 -> 408[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2004[label="vxw281 == vxw261",fontsize=16,color="magenta"];2004 -> 2122[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2004 -> 2123[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2005 -> 409[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2005[label="vxw281 == vxw261",fontsize=16,color="magenta"];2005 -> 2124[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2005 -> 2125[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2006 -> 407[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2006[label="vxw281 == vxw261",fontsize=16,color="magenta"];2006 -> 2126[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2006 -> 2127[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2007 -> 401[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2007[label="vxw281 == vxw261",fontsize=16,color="magenta"];2007 -> 2128[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2007 -> 2129[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2008 -> 906[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2008[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2008 -> 2130[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2008 -> 2131[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2009 -> 907[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2009[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2009 -> 2132[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2009 -> 2133[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2010 -> 908[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2010[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2010 -> 2134[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2010 -> 2135[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2011 -> 909[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2011[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2011 -> 2136[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2011 -> 2137[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2012 -> 910[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2012[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2012 -> 2138[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2012 -> 2139[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2013 -> 911[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2013[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2013 -> 2140[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2013 -> 2141[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2014 -> 912[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2014[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2014 -> 2142[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2014 -> 2143[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2015 -> 913[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2015[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2015 -> 2144[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2015 -> 2145[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2016 -> 914[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2016[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2016 -> 2146[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2016 -> 2147[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2017 -> 915[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2017[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2017 -> 2148[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2017 -> 2149[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2018 -> 916[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2018[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2018 -> 2150[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2018 -> 2151[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2019 -> 917[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2019[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2019 -> 2152[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2019 -> 2153[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2020 -> 918[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2020[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2020 -> 2154[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2020 -> 2155[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2021 -> 919[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2021[label="vxw282 <= vxw262",fontsize=16,color="magenta"];2021 -> 2156[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2021 -> 2157[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2023 -> 1430[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2023[label="primMulNat vxw30100 (Succ vxw400000)",fontsize=16,color="magenta"];2023 -> 2158[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2023 -> 2159[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2022[label="primPlusNat vxw84 (Succ vxw400000)",fontsize=16,color="burlywood",shape="triangle"];2796[label="vxw84/Succ vxw840",fontsize=10,color="white",style="solid",shape="box"];2022 -> 2796[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2796 -> 2160[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2797[label="vxw84/Zero",fontsize=10,color="white",style="solid",shape="box"];2022 -> 2797[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2797 -> 2161[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2024[label="vxw2700",fontsize=16,color="green",shape="box"];2025[label="vxw2500",fontsize=16,color="green",shape="box"];2026[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];2026 -> 2162[label="",style="solid", color="black", weight=3]; 23.57/10.33 2027[label="LT",fontsize=16,color="green",shape="box"];2028[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];2028 -> 2163[label="",style="solid", color="black", weight=3]; 23.57/10.33 2029[label="LT",fontsize=16,color="green",shape="box"];2030[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];2030 -> 2164[label="",style="solid", color="black", weight=3]; 23.57/10.33 2031[label="LT",fontsize=16,color="green",shape="box"];2032[label="vxw270",fontsize=16,color="green",shape="box"];2033[label="vxw250",fontsize=16,color="green",shape="box"];2034[label="vxw270",fontsize=16,color="green",shape="box"];2035[label="vxw250",fontsize=16,color="green",shape="box"];2036[label="vxw270",fontsize=16,color="green",shape="box"];2037[label="vxw250",fontsize=16,color="green",shape="box"];2038[label="vxw270",fontsize=16,color="green",shape="box"];2039[label="vxw250",fontsize=16,color="green",shape="box"];2040[label="vxw270",fontsize=16,color="green",shape="box"];2041[label="vxw250",fontsize=16,color="green",shape="box"];2042[label="vxw270",fontsize=16,color="green",shape="box"];2043[label="vxw250",fontsize=16,color="green",shape="box"];2044[label="vxw270",fontsize=16,color="green",shape="box"];2045[label="vxw250",fontsize=16,color="green",shape="box"];2046[label="vxw270",fontsize=16,color="green",shape="box"];2047[label="vxw250",fontsize=16,color="green",shape="box"];2048[label="vxw270",fontsize=16,color="green",shape="box"];2049[label="vxw250",fontsize=16,color="green",shape="box"];2050[label="vxw270",fontsize=16,color="green",shape="box"];2051[label="vxw250",fontsize=16,color="green",shape="box"];2052[label="vxw270",fontsize=16,color="green",shape="box"];2053[label="vxw250",fontsize=16,color="green",shape="box"];2054[label="vxw270",fontsize=16,color="green",shape="box"];2055[label="vxw250",fontsize=16,color="green",shape="box"];2056[label="vxw270",fontsize=16,color="green",shape="box"];2057[label="vxw250",fontsize=16,color="green",shape="box"];2058[label="vxw270",fontsize=16,color="green",shape="box"];2059[label="vxw250",fontsize=16,color="green",shape="box"];2060[label="LT",fontsize=16,color="green",shape="box"];2061[label="vxw79",fontsize=16,color="green",shape="box"];2062[label="GT",fontsize=16,color="green",shape="box"];2063[label="Integer (primMulInt vxw2700 vxw2510)",fontsize=16,color="green",shape="box"];2063 -> 2165[label="",style="dashed", color="green", weight=3]; 23.57/10.33 2064[label="Pos vxw2510",fontsize=16,color="green",shape="box"];2065[label="vxw270",fontsize=16,color="green",shape="box"];2066[label="vxw250",fontsize=16,color="green",shape="box"];2067[label="Pos vxw2710",fontsize=16,color="green",shape="box"];2068[label="Pos vxw2510",fontsize=16,color="green",shape="box"];2069[label="vxw270",fontsize=16,color="green",shape="box"];2070[label="vxw250",fontsize=16,color="green",shape="box"];2071[label="Neg vxw2710",fontsize=16,color="green",shape="box"];2072[label="Neg vxw2510",fontsize=16,color="green",shape="box"];2073[label="vxw270",fontsize=16,color="green",shape="box"];2074[label="vxw250",fontsize=16,color="green",shape="box"];2075[label="Pos vxw2710",fontsize=16,color="green",shape="box"];2076[label="Neg vxw2510",fontsize=16,color="green",shape="box"];2077[label="vxw270",fontsize=16,color="green",shape="box"];2078[label="vxw250",fontsize=16,color="green",shape="box"];2079[label="Neg vxw2710",fontsize=16,color="green",shape="box"];2080[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];2080 -> 2166[label="",style="solid", color="black", weight=3]; 23.57/10.33 2081[label="LT",fontsize=16,color="green",shape="box"];2082[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];2082 -> 2167[label="",style="solid", color="black", weight=3]; 23.57/10.33 2083[label="LT",fontsize=16,color="green",shape="box"];2084[label="Pos vxw2510",fontsize=16,color="green",shape="box"];2085[label="vxw270",fontsize=16,color="green",shape="box"];2086[label="vxw250",fontsize=16,color="green",shape="box"];2087[label="Pos vxw2710",fontsize=16,color="green",shape="box"];2088[label="Pos vxw2510",fontsize=16,color="green",shape="box"];2089[label="vxw270",fontsize=16,color="green",shape="box"];2090[label="vxw250",fontsize=16,color="green",shape="box"];2091[label="Neg vxw2710",fontsize=16,color="green",shape="box"];2092[label="Neg vxw2510",fontsize=16,color="green",shape="box"];2093[label="vxw270",fontsize=16,color="green",shape="box"];2094[label="vxw250",fontsize=16,color="green",shape="box"];2095[label="Pos vxw2710",fontsize=16,color="green",shape="box"];2096[label="Neg vxw2510",fontsize=16,color="green",shape="box"];2097[label="vxw270",fontsize=16,color="green",shape="box"];2098[label="vxw250",fontsize=16,color="green",shape="box"];2099[label="Neg vxw2710",fontsize=16,color="green",shape="box"];2100[label="compare0 vxw27 vxw25 otherwise",fontsize=16,color="black",shape="box"];2100 -> 2168[label="",style="solid", color="black", weight=3]; 23.57/10.33 2101[label="LT",fontsize=16,color="green",shape="box"];2102[label="vxw261",fontsize=16,color="green",shape="box"];2103[label="vxw281",fontsize=16,color="green",shape="box"];2104[label="vxw261",fontsize=16,color="green",shape="box"];2105[label="vxw281",fontsize=16,color="green",shape="box"];2106[label="vxw261",fontsize=16,color="green",shape="box"];2107[label="vxw281",fontsize=16,color="green",shape="box"];2108[label="vxw261",fontsize=16,color="green",shape="box"];2109[label="vxw281",fontsize=16,color="green",shape="box"];2110[label="vxw261",fontsize=16,color="green",shape="box"];2111[label="vxw281",fontsize=16,color="green",shape="box"];2112[label="vxw261",fontsize=16,color="green",shape="box"];2113[label="vxw281",fontsize=16,color="green",shape="box"];2114[label="vxw261",fontsize=16,color="green",shape="box"];2115[label="vxw281",fontsize=16,color="green",shape="box"];2116[label="vxw261",fontsize=16,color="green",shape="box"];2117[label="vxw281",fontsize=16,color="green",shape="box"];2118[label="vxw261",fontsize=16,color="green",shape="box"];2119[label="vxw281",fontsize=16,color="green",shape="box"];2120[label="vxw261",fontsize=16,color="green",shape="box"];2121[label="vxw281",fontsize=16,color="green",shape="box"];2122[label="vxw261",fontsize=16,color="green",shape="box"];2123[label="vxw281",fontsize=16,color="green",shape="box"];2124[label="vxw261",fontsize=16,color="green",shape="box"];2125[label="vxw281",fontsize=16,color="green",shape="box"];2126[label="vxw261",fontsize=16,color="green",shape="box"];2127[label="vxw281",fontsize=16,color="green",shape="box"];2128[label="vxw261",fontsize=16,color="green",shape="box"];2129[label="vxw281",fontsize=16,color="green",shape="box"];2130[label="vxw282",fontsize=16,color="green",shape="box"];2131[label="vxw262",fontsize=16,color="green",shape="box"];2132[label="vxw282",fontsize=16,color="green",shape="box"];2133[label="vxw262",fontsize=16,color="green",shape="box"];2134[label="vxw282",fontsize=16,color="green",shape="box"];2135[label="vxw262",fontsize=16,color="green",shape="box"];2136[label="vxw282",fontsize=16,color="green",shape="box"];2137[label="vxw262",fontsize=16,color="green",shape="box"];2138[label="vxw282",fontsize=16,color="green",shape="box"];2139[label="vxw262",fontsize=16,color="green",shape="box"];2140[label="vxw282",fontsize=16,color="green",shape="box"];2141[label="vxw262",fontsize=16,color="green",shape="box"];2142[label="vxw282",fontsize=16,color="green",shape="box"];2143[label="vxw262",fontsize=16,color="green",shape="box"];2144[label="vxw282",fontsize=16,color="green",shape="box"];2145[label="vxw262",fontsize=16,color="green",shape="box"];2146[label="vxw282",fontsize=16,color="green",shape="box"];2147[label="vxw262",fontsize=16,color="green",shape="box"];2148[label="vxw282",fontsize=16,color="green",shape="box"];2149[label="vxw262",fontsize=16,color="green",shape="box"];2150[label="vxw282",fontsize=16,color="green",shape="box"];2151[label="vxw262",fontsize=16,color="green",shape="box"];2152[label="vxw282",fontsize=16,color="green",shape="box"];2153[label="vxw262",fontsize=16,color="green",shape="box"];2154[label="vxw282",fontsize=16,color="green",shape="box"];2155[label="vxw262",fontsize=16,color="green",shape="box"];2156[label="vxw282",fontsize=16,color="green",shape="box"];2157[label="vxw262",fontsize=16,color="green",shape="box"];2158[label="Succ vxw400000",fontsize=16,color="green",shape="box"];2159[label="vxw30100",fontsize=16,color="green",shape="box"];2160[label="primPlusNat (Succ vxw840) (Succ vxw400000)",fontsize=16,color="black",shape="box"];2160 -> 2169[label="",style="solid", color="black", weight=3]; 23.57/10.33 2161[label="primPlusNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];2161 -> 2170[label="",style="solid", color="black", weight=3]; 23.57/10.33 2162[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2162 -> 2171[label="",style="solid", color="black", weight=3]; 23.57/10.33 2163[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2163 -> 2172[label="",style="solid", color="black", weight=3]; 23.57/10.33 2164[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2164 -> 2173[label="",style="solid", color="black", weight=3]; 23.57/10.33 2165 -> 999[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2165[label="primMulInt vxw2700 vxw2510",fontsize=16,color="magenta"];2165 -> 2174[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2165 -> 2175[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2166[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2166 -> 2176[label="",style="solid", color="black", weight=3]; 23.57/10.33 2167[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2167 -> 2177[label="",style="solid", color="black", weight=3]; 23.57/10.33 2168[label="compare0 vxw27 vxw25 True",fontsize=16,color="black",shape="box"];2168 -> 2178[label="",style="solid", color="black", weight=3]; 23.57/10.33 2169[label="Succ (Succ (primPlusNat vxw840 vxw400000))",fontsize=16,color="green",shape="box"];2169 -> 2179[label="",style="dashed", color="green", weight=3]; 23.57/10.33 2170[label="Succ vxw400000",fontsize=16,color="green",shape="box"];2171[label="GT",fontsize=16,color="green",shape="box"];2172[label="GT",fontsize=16,color="green",shape="box"];2173[label="GT",fontsize=16,color="green",shape="box"];2174[label="vxw2510",fontsize=16,color="green",shape="box"];2175[label="vxw2700",fontsize=16,color="green",shape="box"];2176[label="GT",fontsize=16,color="green",shape="box"];2177[label="GT",fontsize=16,color="green",shape="box"];2178[label="GT",fontsize=16,color="green",shape="box"];2179[label="primPlusNat vxw840 vxw400000",fontsize=16,color="burlywood",shape="triangle"];2798[label="vxw840/Succ vxw8400",fontsize=10,color="white",style="solid",shape="box"];2179 -> 2798[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2798 -> 2180[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2799[label="vxw840/Zero",fontsize=10,color="white",style="solid",shape="box"];2179 -> 2799[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2799 -> 2181[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2180[label="primPlusNat (Succ vxw8400) vxw400000",fontsize=16,color="burlywood",shape="box"];2800[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];2180 -> 2800[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2800 -> 2182[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2801[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];2180 -> 2801[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2801 -> 2183[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2181[label="primPlusNat Zero vxw400000",fontsize=16,color="burlywood",shape="box"];2802[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];2181 -> 2802[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2802 -> 2184[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2803[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];2181 -> 2803[label="",style="solid", color="burlywood", weight=9]; 23.57/10.33 2803 -> 2185[label="",style="solid", color="burlywood", weight=3]; 23.57/10.33 2182[label="primPlusNat (Succ vxw8400) (Succ vxw4000000)",fontsize=16,color="black",shape="box"];2182 -> 2186[label="",style="solid", color="black", weight=3]; 23.57/10.33 2183[label="primPlusNat (Succ vxw8400) Zero",fontsize=16,color="black",shape="box"];2183 -> 2187[label="",style="solid", color="black", weight=3]; 23.57/10.33 2184[label="primPlusNat Zero (Succ vxw4000000)",fontsize=16,color="black",shape="box"];2184 -> 2188[label="",style="solid", color="black", weight=3]; 23.57/10.33 2185[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];2185 -> 2189[label="",style="solid", color="black", weight=3]; 23.57/10.33 2186[label="Succ (Succ (primPlusNat vxw8400 vxw4000000))",fontsize=16,color="green",shape="box"];2186 -> 2190[label="",style="dashed", color="green", weight=3]; 23.57/10.33 2187[label="Succ vxw8400",fontsize=16,color="green",shape="box"];2188[label="Succ vxw4000000",fontsize=16,color="green",shape="box"];2189[label="Zero",fontsize=16,color="green",shape="box"];2190 -> 2179[label="",style="dashed", color="red", weight=0]; 23.57/10.33 2190[label="primPlusNat vxw8400 vxw4000000",fontsize=16,color="magenta"];2190 -> 2191[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2190 -> 2192[label="",style="dashed", color="magenta", weight=3]; 23.57/10.33 2191[label="vxw8400",fontsize=16,color="green",shape="box"];2192[label="vxw4000000",fontsize=16,color="green",shape="box"];} 23.57/10.33 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (14) 23.57/10.33 Complex Obligation (AND) 23.57/10.33 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (15) 23.57/10.33 Obligation: 23.57/10.33 Q DP problem: 23.57/10.33 The TRS P consists of the following rules: 23.57/10.33 23.57/10.33 new_primCmpNat(Succ(vxw2700), Succ(vxw2500)) -> new_primCmpNat(vxw2700, vxw2500) 23.57/10.33 23.57/10.33 R is empty. 23.57/10.33 Q is empty. 23.57/10.33 We have to consider all minimal (P,Q,R)-chains. 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (16) QDPSizeChangeProof (EQUIVALENT) 23.57/10.33 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. 23.57/10.33 23.57/10.33 From the DPs we obtained the following set of size-change graphs: 23.57/10.33 *new_primCmpNat(Succ(vxw2700), Succ(vxw2500)) -> new_primCmpNat(vxw2700, vxw2500) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2 23.57/10.33 23.57/10.33 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (17) 23.57/10.33 YES 23.57/10.33 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (18) 23.57/10.33 Obligation: 23.57/10.33 Q DP problem: 23.57/10.33 The TRS P consists of the following rules: 23.57/10.33 23.57/10.33 new_esEs0(Left(vxw300), Left(vxw4000), app(ty_Maybe, ec), dh) -> new_esEs1(vxw300, vxw4000, ec) 23.57/10.33 new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_Either, ge), gf)) -> new_esEs0(vxw300, vxw4000, ge, gf) 23.57/10.33 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), bae) -> new_esEs2(vxw301, vxw4001, bae) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bbb), bbc), bah, bba) -> new_esEs0(vxw300, vxw4000, bbb, bbc) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(app(ty_Either, bcd), bce), bba) -> new_esEs0(vxw301, vxw4001, bcd, bce) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(app(ty_Either, bde), bdf)) -> new_esEs0(vxw302, vxw4002, bde, bdf) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bbf), bbg), bbh), bah, bba) -> new_esEs3(vxw300, vxw4000, bbf, bbg, bbh) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, ba), bb), bc) -> new_esEs(vxw300, vxw4000, ba, bb) 23.57/10.33 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_Either, fc), fd)) -> new_esEs0(vxw300, vxw4000, fc, fd) 23.57/10.33 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, hd), he)) -> new_esEs(vxw300, vxw4000, hd, he) 23.57/10.33 new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_@2, df), dg), dh) -> new_esEs(vxw300, vxw4000, df, dg) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, bh), ca), cb), bc) -> new_esEs3(vxw300, vxw4000, bh, ca, cb) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bbe), bah, bba) -> new_esEs2(vxw300, vxw4000, bbe) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs3(vxw302, vxw4002, bea, beb, bec) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_@2, cd), ce)) -> new_esEs(vxw301, vxw4001, cd, ce) 23.57/10.33 new_esEs0(Left(vxw300), Left(vxw4000), app(ty_[], ed), dh) -> new_esEs2(vxw300, vxw4000, ed) 23.57/10.33 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_@2, fa), fb)) -> new_esEs(vxw300, vxw4000, fa, fb) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, bd), be), bc) -> new_esEs0(vxw300, vxw4000, bd, be) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(app(ty_@2, bdc), bdd)) -> new_esEs(vxw302, vxw4002, bdc, bdd) 23.57/10.33 new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_Either, ea), eb), dh) -> new_esEs0(vxw300, vxw4000, ea, eb) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(app(ty_@2, bcb), bcc), bba) -> new_esEs(vxw301, vxw4001, bcb, bcc) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_Either, cf), cg)) -> new_esEs0(vxw301, vxw4001, cf, cg) 23.57/10.33 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, hf), hg)) -> new_esEs0(vxw300, vxw4000, hf, hg) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(app(ty_@3, dc), dd), de)) -> new_esEs3(vxw301, vxw4001, dc, dd, de) 23.57/10.33 new_esEs0(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ee), ef), eg), dh) -> new_esEs3(vxw300, vxw4000, ee, ef, eg) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(ty_[], bcg), bba) -> new_esEs2(vxw301, vxw4001, bcg) 23.57/10.33 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs3(vxw300, vxw4000, fh, ga, gb) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(app(app(ty_@3, bch), bda), bdb), bba) -> new_esEs3(vxw301, vxw4001, bch, bda, bdb) 23.57/10.33 new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_@2, gc), gd)) -> new_esEs(vxw300, vxw4000, gc, gd) 23.57/10.33 new_esEs1(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vxw300, vxw4000, ha, hb, hc) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(ty_[], bdh)) -> new_esEs2(vxw302, vxw4002, bdh) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_Maybe, da)) -> new_esEs1(vxw301, vxw4001, da) 23.57/10.33 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_Maybe, ff)) -> new_esEs1(vxw300, vxw4000, ff) 23.57/10.33 new_esEs1(Just(vxw300), Just(vxw4000), app(ty_[], gh)) -> new_esEs2(vxw300, vxw4000, gh) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, baf), bag), bah, bba) -> new_esEs(vxw300, vxw4000, baf, bag) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bbd), bah, bba) -> new_esEs1(vxw300, vxw4000, bbd) 23.57/10.33 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], baa)) -> new_esEs2(vxw300, vxw4000, baa) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, bf), bc) -> new_esEs1(vxw300, vxw4000, bf) 23.57/10.33 new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_[], fg)) -> new_esEs2(vxw300, vxw4000, fg) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(ty_Maybe, bcf), bba) -> new_esEs1(vxw301, vxw4001, bcf) 23.57/10.33 new_esEs1(Just(vxw300), Just(vxw4000), app(ty_Maybe, gg)) -> new_esEs1(vxw300, vxw4000, gg) 23.57/10.33 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vxw300, vxw4000, bab, bac, bad) 23.57/10.33 new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(ty_Maybe, bdg)) -> new_esEs1(vxw302, vxw4002, bdg) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_[], db)) -> new_esEs2(vxw301, vxw4001, db) 23.57/10.33 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, hh)) -> new_esEs1(vxw300, vxw4000, hh) 23.57/10.33 new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], bg), bc) -> new_esEs2(vxw300, vxw4000, bg) 23.57/10.33 23.57/10.33 R is empty. 23.57/10.33 Q is empty. 23.57/10.33 We have to consider all minimal (P,Q,R)-chains. 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (19) QDPSizeChangeProof (EQUIVALENT) 23.57/10.33 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. 23.57/10.33 23.57/10.33 From the DPs we obtained the following set of size-change graphs: 23.57/10.33 *new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_Either, ge), gf)) -> new_esEs0(vxw300, vxw4000, ge, gf) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs1(Just(vxw300), Just(vxw4000), app(ty_Maybe, gg)) -> new_esEs1(vxw300, vxw4000, gg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs1(Just(vxw300), Just(vxw4000), app(ty_[], gh)) -> new_esEs2(vxw300, vxw4000, gh) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, hf), hg)) -> new_esEs0(vxw300, vxw4000, hf, hg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, hh)) -> new_esEs1(vxw300, vxw4000, hh) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs1(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, ha), hb), hc)) -> new_esEs3(vxw300, vxw4000, ha, hb, hc) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs1(Just(vxw300), Just(vxw4000), app(app(ty_@2, gc), gd)) -> new_esEs(vxw300, vxw4000, gc, gd) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bab), bac), bad)) -> new_esEs3(vxw300, vxw4000, bab, bac, bad) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, hd), he)) -> new_esEs(vxw300, vxw4000, hd, he) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_Either, fc), fd)) -> new_esEs0(vxw300, vxw4000, fc, fd) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_Either, ea), eb), dh) -> new_esEs0(vxw300, vxw4000, ea, eb) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bbb), bbc), bah, bba) -> new_esEs0(vxw300, vxw4000, bbb, bbc) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(app(ty_Either, bcd), bce), bba) -> new_esEs0(vxw301, vxw4001, bcd, bce) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(app(ty_Either, bde), bdf)) -> new_esEs0(vxw302, vxw4002, bde, bdf) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, bd), be), bc) -> new_esEs0(vxw300, vxw4000, bd, be) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_Either, cf), cg)) -> new_esEs0(vxw301, vxw4001, cf, cg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Left(vxw300), Left(vxw4000), app(ty_Maybe, ec), dh) -> new_esEs1(vxw300, vxw4000, ec) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_Maybe, ff)) -> new_esEs1(vxw300, vxw4000, ff) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Left(vxw300), Left(vxw4000), app(ty_[], ed), dh) -> new_esEs2(vxw300, vxw4000, ed) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(ty_[], fg)) -> new_esEs2(vxw300, vxw4000, fg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, ee), ef), eg), dh) -> new_esEs3(vxw300, vxw4000, ee, ef, eg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(app(ty_@3, fh), ga), gb)) -> new_esEs3(vxw300, vxw4000, fh, ga, gb) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Left(vxw300), Left(vxw4000), app(app(ty_@2, df), dg), dh) -> new_esEs(vxw300, vxw4000, df, dg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs0(Right(vxw300), Right(vxw4000), eh, app(app(ty_@2, fa), fb)) -> new_esEs(vxw300, vxw4000, fa, fb) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, bbd), bah, bba) -> new_esEs1(vxw300, vxw4000, bbd) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(ty_Maybe, bcf), bba) -> new_esEs1(vxw301, vxw4001, bcf) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(ty_Maybe, bdg)) -> new_esEs1(vxw302, vxw4002, bdg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_Maybe, da)) -> new_esEs1(vxw301, vxw4001, da) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, bf), bc) -> new_esEs1(vxw300, vxw4000, bf) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), bae) -> new_esEs2(vxw301, vxw4001, bae) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], baa)) -> new_esEs2(vxw300, vxw4000, baa) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bbe), bah, bba) -> new_esEs2(vxw300, vxw4000, bbe) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(ty_[], bcg), bba) -> new_esEs2(vxw301, vxw4001, bcg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(ty_[], bdh)) -> new_esEs2(vxw302, vxw4002, bdh) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(ty_[], db)) -> new_esEs2(vxw301, vxw4001, db) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], bg), bc) -> new_esEs2(vxw300, vxw4000, bg) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, bbf), bbg), bbh), bah, bba) -> new_esEs3(vxw300, vxw4000, bbf, bbg, bbh) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(app(app(ty_@3, bea), beb), bec)) -> new_esEs3(vxw302, vxw4002, bea, beb, bec) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(app(app(ty_@3, bch), bda), bdb), bba) -> new_esEs3(vxw301, vxw4001, bch, bda, bdb) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, bh), ca), cb), bc) -> new_esEs3(vxw300, vxw4000, bh, ca, cb) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(app(ty_@3, dc), dd), de)) -> new_esEs3(vxw301, vxw4001, dc, dd, de) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, bah, app(app(ty_@2, bdc), bdd)) -> new_esEs(vxw302, vxw4002, bdc, bdd) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bca, app(app(ty_@2, bcb), bcc), bba) -> new_esEs(vxw301, vxw4001, bcb, bcc) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs3(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, baf), bag), bah, bba) -> new_esEs(vxw300, vxw4000, baf, bag) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, ba), bb), bc) -> new_esEs(vxw300, vxw4000, ba, bb) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.33 23.57/10.33 23.57/10.33 *new_esEs(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cc, app(app(ty_@2, cd), ce)) -> new_esEs(vxw301, vxw4001, cd, ce) 23.57/10.33 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.33 23.57/10.33 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (20) 23.57/10.33 YES 23.57/10.33 23.57/10.33 ---------------------------------------- 23.57/10.33 23.57/10.33 (21) 23.57/10.33 Obligation: 23.57/10.33 Q DP problem: 23.57/10.33 The TRS P consists of the following rules: 23.57/10.33 23.57/10.33 new_primCompAux(vxw270, vxw250, vxw72, app(ty_Maybe, bbb)) -> new_compare4(vxw270, vxw250, bbb) 23.57/10.33 new_ltEs1(vxw28, vxw26, bab) -> new_compare1(vxw28, vxw26, bab) 23.57/10.33 new_ltEs2(Just(vxw280), Just(vxw260), app(ty_[], bcc)) -> new_ltEs1(vxw280, vxw260, bcc) 23.57/10.33 new_ltEs0(Left(vxw280), Left(vxw260), app(ty_Maybe, ge), ga) -> new_ltEs2(vxw280, vxw260, ge) 23.57/10.33 new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_@2, bce), bcf)) -> new_ltEs3(vxw280, vxw260, bce, bcf) 23.57/10.33 new_ltEs0(Left(vxw280), Left(vxw260), app(app(ty_@2, gf), gg), ga) -> new_ltEs3(vxw280, vxw260, gf, gg) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(app(ty_Either, bee), bef)) -> new_ltEs0(vxw281, vxw261, bee, bef) 23.57/10.33 new_lt2(vxw27, vxw25, bbe) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bbe), bbe) 23.57/10.33 new_lt3(vxw27, vxw25, bfc, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfc, bfd), bfc, bfd) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_[], cc), bg, bh) -> new_lt1(vxw280, vxw260, cc) 23.57/10.33 new_ltEs0(Left(vxw280), Left(vxw260), app(ty_[], gd), ga) -> new_ltEs1(vxw280, vxw260, gd) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_[], df), bh) -> new_lt1(vxw281, vxw261, df) 23.57/10.33 new_compare0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(app(ty_@3, bd), be), bf), bg, bh) -> new_lt(vxw280, vxw260, bd, be, bf) 23.57/10.33 new_ltEs0(Right(vxw280), Right(vxw260), gh, app(app(ty_Either, hd), he)) -> new_ltEs0(vxw280, vxw260, hd, he) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_Either, bdc), bdd), bdb) -> new_lt0(vxw280, vxw260, bdc, bdd) 23.57/10.33 new_compare22(vxw27, vxw25, False, bfc, bfd) -> new_ltEs3(vxw27, vxw25, bfc, bfd) 23.57/10.33 new_primCompAux(vxw270, vxw250, vxw72, app(app(app(ty_@3, bad), bae), baf)) -> new_compare(vxw270, vxw250, bad, bae, baf) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_@2, dh), ea), bh) -> new_lt3(vxw281, vxw261, dh, ea) 23.57/10.33 new_ltEs0(Right(vxw280), Right(vxw260), gh, app(ty_Maybe, hg)) -> new_ltEs2(vxw280, vxw260, hg) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs3(vxw281, vxw261, bfa, bfb) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_[], eg)) -> new_ltEs1(vxw282, vxw262, eg) 23.57/10.33 new_ltEs0(Left(vxw280), Left(vxw260), app(app(ty_Either, gb), gc), ga) -> new_ltEs0(vxw280, vxw260, gb, gc) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_@2, fa), fb)) -> new_ltEs3(vxw282, vxw262, fa, fb) 23.57/10.33 new_compare(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_@2, bdg), bdh), bdb) -> new_lt3(vxw280, vxw260, bdg, bdh) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(ty_Maybe, beh)) -> new_ltEs2(vxw281, vxw261, beh) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_Either, dd), de), bh) -> new_lt0(vxw281, vxw261, dd, de) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(app(ty_@3, bcg), bch), bda), bdb) -> new_lt(vxw280, vxw260, bcg, bch, bda) 23.57/10.33 new_compare2(vxw27, vxw25, False, ba, bb, bc) -> new_ltEs(vxw27, vxw25, ba, bb, bc) 23.57/10.33 new_primCompAux(vxw270, vxw250, vxw72, app(ty_[], bba)) -> new_compare1(vxw270, vxw250, bba) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_Maybe, cd), bg, bh) -> new_lt2(vxw280, vxw260, cd) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_Either, ee), ef)) -> new_ltEs0(vxw282, vxw262, ee, ef) 23.57/10.33 new_lt(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) 23.57/10.33 new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_@2, bbc), bbd)) -> new_compare5(vxw270, vxw250, bbc, bbd) 23.57/10.33 new_compare5(vxw27, vxw25, bfc, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfc, bfd), bfc, bfd) 23.57/10.33 new_lt1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_primCompAux(vxw270, vxw250, new_compare3(vxw271, vxw251, bac), bac) 23.57/10.33 new_ltEs0(Left(vxw280), Left(vxw260), app(app(app(ty_@3, ff), fg), fh), ga) -> new_ltEs(vxw280, vxw260, ff, fg, fh) 23.57/10.33 new_ltEs0(Right(vxw280), Right(vxw260), gh, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs(vxw280, vxw260, ha, hb, hc) 23.57/10.33 new_compare4(vxw27, vxw25, bbe) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bbe), bbe) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_[], bde), bdb) -> new_lt1(vxw280, vxw260, bde) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(app(ty_@3, da), db), dc), bh) -> new_lt(vxw281, vxw261, da, db, dc) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_Maybe, bdf), bdb) -> new_lt2(vxw280, vxw260, bdf) 23.57/10.33 new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_Either, bag), bah)) -> new_compare0(vxw270, vxw250, bag, bah) 23.57/10.33 new_compare1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_compare1(vxw271, vxw251, bac) 23.57/10.33 new_ltEs2(Just(vxw280), Just(vxw260), app(app(app(ty_@3, bbf), bbg), bbh)) -> new_ltEs(vxw280, vxw260, bbf, bbg, bbh) 23.57/10.33 new_ltEs0(Right(vxw280), Right(vxw260), gh, app(app(ty_@2, hh), baa)) -> new_ltEs3(vxw280, vxw260, hh, baa) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs(vxw281, vxw261, beb, bec, bed) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs(vxw282, vxw262, eb, ec, ed) 23.57/10.33 new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_Either, bca), bcb)) -> new_ltEs0(vxw280, vxw260, bca, bcb) 23.57/10.33 new_compare1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_primCompAux(vxw270, vxw250, new_compare3(vxw271, vxw251, bac), bac) 23.57/10.33 new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(ty_[], beg)) -> new_ltEs1(vxw281, vxw261, beg) 23.57/10.33 new_ltEs0(Right(vxw280), Right(vxw260), gh, app(ty_[], hf)) -> new_ltEs1(vxw280, vxw260, hf) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_Maybe, eh)) -> new_ltEs2(vxw282, vxw262, eh) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_Either, ca), cb), bg, bh) -> new_lt0(vxw280, vxw260, ca, cb) 23.57/10.33 new_lt1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_compare1(vxw271, vxw251, bac) 23.57/10.33 new_ltEs2(Just(vxw280), Just(vxw260), app(ty_Maybe, bcd)) -> new_ltEs2(vxw280, vxw260, bcd) 23.57/10.33 new_compare20(vxw27, vxw25, False, fc, fd) -> new_ltEs0(vxw27, vxw25, fc, fd) 23.57/10.33 new_lt0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_@2, ce), cf), bg, bh) -> new_lt3(vxw280, vxw260, ce, cf) 23.57/10.33 new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_Maybe, dg), bh) -> new_lt2(vxw281, vxw261, dg) 23.57/10.33 new_compare21(vxw27, vxw25, False, bbe) -> new_ltEs2(vxw27, vxw25, bbe) 23.57/10.33 23.57/10.33 The TRS R consists of the following rules: 23.57/10.33 23.57/10.33 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 23.57/10.33 new_primCmpInt(Neg(Succ(vxw2700)), Pos(vxw250)) -> LT 23.57/10.33 new_esEs10(vxw281, vxw261, ty_Double) -> new_esEs19(vxw281, vxw261) 23.57/10.33 new_compare19(vxw270, vxw250, ty_Double) -> new_compare10(vxw270, vxw250) 23.57/10.33 new_lt20(vxw280, vxw260, ty_Float) -> new_lt15(vxw280, vxw260) 23.57/10.33 new_esEs28(vxw302, vxw4002, ty_Int) -> new_esEs18(vxw302, vxw4002) 23.57/10.33 new_primPlusNat0(Zero, Zero) -> Zero 23.57/10.33 new_compare211(vxw27, vxw25, False, fc, fd) -> new_compare15(vxw27, vxw25, new_ltEs8(vxw27, vxw25, fc, fd), fc, fd) 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, ceh) -> new_esEs8(vxw300, vxw4000) 23.57/10.33 new_pePe(True, vxw63) -> True 23.57/10.33 new_esEs9(vxw280, vxw260, app(ty_[], cc)) -> new_esEs14(vxw280, vxw260, cc) 23.57/10.33 new_compare11(vxw27, vxw25, True, bbe) -> LT 23.57/10.33 new_ltEs10(False, False) -> True 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, cff), cfg), cfh), ceh) -> new_esEs4(vxw300, vxw4000, cff, cfg, cfh) 23.57/10.33 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_Integer) -> new_ltEs12(vxw280, vxw260) 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, ceh) -> new_esEs13(vxw300, vxw4000) 23.57/10.33 new_compare23(vxw27, vxw25, True, bbe) -> EQ 23.57/10.33 new_lt20(vxw280, vxw260, ty_Ordering) -> new_lt17(vxw280, vxw260) 23.57/10.33 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 23.57/10.33 new_esEs27(vxw301, vxw4001, app(app(ty_Either, dbd), dbe)) -> new_esEs5(vxw301, vxw4001, dbd, dbe) 23.57/10.33 new_ltEs16(Nothing, Nothing, bhc) -> True 23.57/10.33 new_primCmpInt(Pos(Zero), Neg(Succ(vxw2500))) -> GT 23.57/10.33 new_esEs25(vxw280, vxw260, ty_Double) -> new_esEs19(vxw280, vxw260) 23.57/10.33 new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.33 new_lt6(vxw281, vxw261, app(ty_Maybe, dg)) -> new_lt4(vxw281, vxw261, dg) 23.57/10.33 new_ltEs16(Just(vxw280), Nothing, bhc) -> False 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, ceh) -> new_esEs11(vxw300, vxw4000) 23.57/10.33 new_lt5(vxw280, vxw260, ty_Bool) -> new_lt11(vxw280, vxw260) 23.57/10.33 new_compare210(vxw27, vxw25, True, ba, bb, bc) -> EQ 23.57/10.33 new_primCmpInt(Neg(Succ(vxw2700)), Neg(vxw250)) -> new_primCmpNat0(vxw250, Succ(vxw2700)) 23.57/10.33 new_esEs9(vxw280, vxw260, app(app(ty_@2, ce), cf)) -> new_esEs7(vxw280, vxw260, ce, cf) 23.57/10.33 new_lt9(vxw27, vxw25, fc, fd) -> new_esEs8(new_compare28(vxw27, vxw25, fc, fd), LT) 23.57/10.33 new_esEs26(vxw300, vxw4000, app(app(ty_@2, chg), chh)) -> new_esEs7(vxw300, vxw4000, chg, chh) 23.57/10.33 new_compare111(vxw27, vxw25, True, bfc, bfd) -> LT 23.57/10.33 new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.33 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 23.57/10.33 new_ltEs19(vxw281, vxw261, app(ty_Maybe, beh)) -> new_ltEs16(vxw281, vxw261, beh) 23.57/10.33 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_Either, bgd), bge)) -> new_esEs5(vxw300, vxw4000, bgd, bge) 23.57/10.33 new_ltEs15(EQ, LT) -> False 23.57/10.33 new_esEs20(vxw300, vxw4000, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.33 new_esEs28(vxw302, vxw4002, app(app(app(ty_@3, ddb), ddc), ddd)) -> new_esEs4(vxw302, vxw4002, ddb, ddc, ddd) 23.57/10.33 new_primCompAux0(vxw79, GT) -> GT 23.57/10.33 new_esEs25(vxw280, vxw260, ty_@0) -> new_esEs12(vxw280, vxw260) 23.57/10.33 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.33 new_compare3([], [], bac) -> EQ 23.57/10.33 new_ltEs19(vxw281, vxw261, ty_Ordering) -> new_ltEs15(vxw281, vxw261) 23.57/10.33 new_ltEs8(Right(vxw280), Right(vxw260), gh, app(app(ty_@2, hh), baa)) -> new_ltEs18(vxw280, vxw260, hh, baa) 23.57/10.33 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 23.57/10.33 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 23.57/10.33 new_ltEs19(vxw281, vxw261, app(ty_[], beg)) -> new_ltEs11(vxw281, vxw261, beg) 23.57/10.33 new_esEs8(GT, GT) -> True 23.57/10.33 new_ltEs15(GT, LT) -> False 23.57/10.33 new_fsEs(vxw64) -> new_not(new_esEs8(vxw64, GT)) 23.57/10.33 new_compare13(Integer(vxw270), Integer(vxw250)) -> new_primCmpInt(vxw270, vxw250) 23.57/10.33 new_lt6(vxw281, vxw261, app(app(app(ty_@3, da), db), dc)) -> new_lt8(vxw281, vxw261, da, db, dc) 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), ty_Float, ga) -> new_ltEs4(vxw280, vxw260) 23.57/10.33 new_lt14(vxw27, vxw25, ccd) -> new_esEs8(new_compare29(vxw27, vxw25, ccd), LT) 23.57/10.33 new_ltEs11(vxw28, vxw26, bab) -> new_fsEs(new_compare3(vxw28, vxw26, bab)) 23.57/10.33 new_esEs8(EQ, EQ) -> True 23.57/10.33 new_compare6(Float(vxw270, Pos(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.33 new_compare6(Float(vxw270, Neg(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, cfd), ceh) -> new_esEs6(vxw300, vxw4000, cfd) 23.57/10.33 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 23.57/10.33 new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs15(vxw301, vxw4001) 23.57/10.33 new_primCompAux0(vxw79, LT) -> LT 23.57/10.33 new_compare19(vxw270, vxw250, app(ty_[], bba)) -> new_compare3(vxw270, vxw250, bba) 23.57/10.33 new_ltEs6(vxw282, vxw262, ty_Float) -> new_ltEs4(vxw282, vxw262) 23.57/10.33 new_not(True) -> False 23.57/10.33 new_ltEs19(vxw281, vxw261, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs5(vxw281, vxw261, beb, bec, bed) 23.57/10.33 new_ltEs19(vxw281, vxw261, ty_Integer) -> new_ltEs12(vxw281, vxw261) 23.57/10.33 new_primCmpNat0(Zero, Zero) -> EQ 23.57/10.33 new_ltEs5(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, bh) -> new_pePe(new_lt5(vxw280, vxw260, cg), new_asAs(new_esEs9(vxw280, vxw260, cg), new_pePe(new_lt6(vxw281, vxw261, bg), new_asAs(new_esEs10(vxw281, vxw261, bg), new_ltEs6(vxw282, vxw262, bh))))) 23.57/10.33 new_esEs14([], [], cce) -> True 23.57/10.33 new_ltEs6(vxw282, vxw262, app(app(ty_@2, fa), fb)) -> new_ltEs18(vxw282, vxw262, fa, fb) 23.57/10.33 new_esEs24(vxw301, vxw4001, ty_Int) -> new_esEs18(vxw301, vxw4001) 23.57/10.33 new_esEs28(vxw302, vxw4002, ty_Char) -> new_esEs11(vxw302, vxw4002) 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, ceh) -> new_esEs12(vxw300, vxw4000) 23.57/10.33 new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.33 new_esEs28(vxw302, vxw4002, ty_Bool) -> new_esEs13(vxw302, vxw4002) 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, ceh) -> new_esEs18(vxw300, vxw4000) 23.57/10.33 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.33 new_ltEs6(vxw282, vxw262, app(ty_Ratio, bfg)) -> new_ltEs13(vxw282, vxw262, bfg) 23.57/10.33 new_esEs10(vxw281, vxw261, app(ty_Ratio, bff)) -> new_esEs16(vxw281, vxw261, bff) 23.57/10.33 new_esEs10(vxw281, vxw261, ty_Ordering) -> new_esEs8(vxw281, vxw261) 23.57/10.33 new_ltEs19(vxw281, vxw261, ty_Double) -> new_ltEs17(vxw281, vxw261) 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), app(app(ty_@2, gf), gg), ga) -> new_ltEs18(vxw280, vxw260, gf, gg) 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), app(app(ty_Either, gb), gc), ga) -> new_ltEs8(vxw280, vxw260, gb, gc) 23.57/10.33 new_compare210(vxw27, vxw25, False, ba, bb, bc) -> new_compare110(vxw27, vxw25, new_ltEs5(vxw27, vxw25, ba, bb, bc), ba, bb, bc) 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, cef), ceg), ceh) -> new_esEs7(vxw300, vxw4000, cef, ceg) 23.57/10.33 new_primEqNat0(Succ(vxw3000), Zero) -> False 23.57/10.33 new_primEqNat0(Zero, Succ(vxw40000)) -> False 23.57/10.33 new_esEs20(vxw300, vxw4000, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.33 new_esEs25(vxw280, vxw260, app(ty_Ratio, ced)) -> new_esEs16(vxw280, vxw260, ced) 23.57/10.33 new_esEs23(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.33 new_compare8(vxw27, vxw25) -> new_primCmpInt(vxw27, vxw25) 23.57/10.33 new_compare29(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Int) -> new_compare8(new_sr0(vxw270, vxw251), new_sr0(vxw250, vxw271)) 23.57/10.33 new_lt19(vxw27, vxw25, bfc, bfd) -> new_esEs8(new_compare14(vxw27, vxw25, bfc, bfd), LT) 23.57/10.33 new_ltEs16(Just(vxw280), Just(vxw260), ty_Char) -> new_ltEs7(vxw280, vxw260) 23.57/10.33 new_ltEs15(GT, EQ) -> False 23.57/10.33 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, ceh) -> new_esEs19(vxw300, vxw4000) 23.57/10.33 new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.33 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_Int) -> new_ltEs14(vxw280, vxw260) 23.57/10.33 new_lt5(vxw280, vxw260, app(app(ty_Either, ca), cb)) -> new_lt9(vxw280, vxw260, ca, cb) 23.57/10.33 new_lt5(vxw280, vxw260, app(app(app(ty_@3, bd), be), bf)) -> new_lt8(vxw280, vxw260, bd, be, bf) 23.57/10.33 new_esEs22(vxw300, vxw4000, app(app(ty_@2, ccf), ccg)) -> new_esEs7(vxw300, vxw4000, ccf, ccg) 23.57/10.33 new_compare10(Double(vxw270, Pos(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.33 new_compare10(Double(vxw270, Neg(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.33 new_esEs6(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.33 new_lt5(vxw280, vxw260, app(ty_Ratio, bfe)) -> new_lt14(vxw280, vxw260, bfe) 23.57/10.33 new_esEs20(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.33 new_compare29(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Integer) -> new_compare13(new_sr(vxw270, vxw251), new_sr(vxw250, vxw271)) 23.57/10.33 new_compare15(vxw27, vxw25, True, fc, fd) -> LT 23.57/10.33 new_lt20(vxw280, vxw260, ty_Integer) -> new_lt13(vxw280, vxw260) 23.57/10.33 new_compare25(vxw27, vxw25, False) -> new_compare17(vxw27, vxw25, new_ltEs15(vxw27, vxw25)) 23.57/10.33 new_primCmpInt(Pos(Succ(vxw2700)), Neg(vxw250)) -> GT 23.57/10.33 new_esEs10(vxw281, vxw261, ty_Char) -> new_esEs11(vxw281, vxw261) 23.57/10.33 new_esEs20(vxw300, vxw4000, app(ty_Ratio, caa)) -> new_esEs16(vxw300, vxw4000, caa) 23.57/10.33 new_lt6(vxw281, vxw261, app(app(ty_@2, dh), ea)) -> new_lt19(vxw281, vxw261, dh, ea) 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), ty_@0, ga) -> new_ltEs9(vxw280, vxw260) 23.57/10.33 new_compare16(vxw27, vxw25, False) -> GT 23.57/10.33 new_compare19(vxw270, vxw250, app(ty_Maybe, bbb)) -> new_compare7(vxw270, vxw250, bbb) 23.57/10.33 new_lt17(vxw27, vxw25) -> new_esEs8(new_compare18(vxw27, vxw25), LT) 23.57/10.33 new_ltEs6(vxw282, vxw262, ty_Double) -> new_ltEs17(vxw282, vxw262) 23.57/10.33 new_compare212(vxw27, vxw25, False, bfc, bfd) -> new_compare111(vxw27, vxw25, new_ltEs18(vxw27, vxw25, bfc, bfd), bfc, bfd) 23.57/10.33 new_primCmpNat0(Zero, Succ(vxw2500)) -> LT 23.57/10.33 new_compare18(vxw27, vxw25) -> new_compare25(vxw27, vxw25, new_esEs8(vxw27, vxw25)) 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), ty_Bool, ga) -> new_ltEs10(vxw280, vxw260) 23.57/10.33 new_compare26(Char(vxw270), Char(vxw250)) -> new_primCmpNat0(vxw270, vxw250) 23.57/10.33 new_lt20(vxw280, vxw260, app(app(ty_@2, bdg), bdh)) -> new_lt19(vxw280, vxw260, bdg, bdh) 23.57/10.33 new_sr(Integer(vxw2700), Integer(vxw2510)) -> Integer(new_primMulInt(vxw2700, vxw2510)) 23.57/10.33 new_ltEs16(Just(vxw280), Just(vxw260), ty_Float) -> new_ltEs4(vxw280, vxw260) 23.57/10.33 new_compare110(vxw27, vxw25, False, ba, bb, bc) -> GT 23.57/10.33 new_esEs27(vxw301, vxw4001, app(app(ty_@2, dba), dbb)) -> new_esEs7(vxw301, vxw4001, dba, dbb) 23.57/10.33 new_primCmpNat0(Succ(vxw2700), Zero) -> GT 23.57/10.33 new_ltEs19(vxw281, vxw261, ty_Char) -> new_ltEs7(vxw281, vxw261) 23.57/10.33 new_ltEs16(Just(vxw280), Just(vxw260), app(ty_Ratio, bhd)) -> new_ltEs13(vxw280, vxw260, bhd) 23.57/10.33 new_pePe(False, vxw63) -> vxw63 23.57/10.33 new_compare3([], :(vxw250, vxw251), bac) -> LT 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), ty_Ordering, ga) -> new_ltEs15(vxw280, vxw260) 23.57/10.33 new_ltEs6(vxw282, vxw262, ty_Ordering) -> new_ltEs15(vxw282, vxw262) 23.57/10.33 new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.33 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_Double) -> new_ltEs17(vxw280, vxw260) 23.57/10.33 new_esEs25(vxw280, vxw260, ty_Char) -> new_esEs11(vxw280, vxw260) 23.57/10.33 new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs18(vxw301, vxw4001) 23.57/10.33 new_esEs11(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), app(ty_Maybe, ge), ga) -> new_ltEs16(vxw280, vxw260, ge) 23.57/10.33 new_esEs21(vxw301, vxw4001, app(ty_Ratio, cbc)) -> new_esEs16(vxw301, vxw4001, cbc) 23.57/10.33 new_compare17(vxw27, vxw25, True) -> LT 23.57/10.33 new_esEs8(LT, EQ) -> False 23.57/10.33 new_esEs8(EQ, LT) -> False 23.57/10.33 new_esEs22(vxw300, vxw4000, app(ty_Maybe, cdc)) -> new_esEs6(vxw300, vxw4000, cdc) 23.57/10.33 new_esEs27(vxw301, vxw4001, app(ty_[], dbg)) -> new_esEs14(vxw301, vxw4001, dbg) 23.57/10.33 new_lt5(vxw280, vxw260, app(app(ty_@2, ce), cf)) -> new_lt19(vxw280, vxw260, ce, cf) 23.57/10.33 new_esEs10(vxw281, vxw261, app(app(app(ty_@3, da), db), dc)) -> new_esEs4(vxw281, vxw261, da, db, dc) 23.57/10.33 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 23.57/10.33 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 23.57/10.33 new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 23.57/10.33 new_ltEs8(Left(vxw280), Left(vxw260), app(ty_Ratio, cea), ga) -> new_ltEs13(vxw280, vxw260, cea) 23.57/10.33 new_esEs6(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bgh), bha), bhb)) -> new_esEs4(vxw300, vxw4000, bgh, bha, bhb) 23.57/10.33 new_ltEs10(True, False) -> False 23.57/10.33 new_compare28(vxw27, vxw25, fc, fd) -> new_compare211(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) 23.57/10.33 new_esEs5(Right(vxw300), Right(vxw4000), cga, app(app(ty_@2, cgb), cgc)) -> new_esEs7(vxw300, vxw4000, cgb, cgc) 23.57/10.33 new_ltEs6(vxw282, vxw262, app(app(ty_Either, ee), ef)) -> new_ltEs8(vxw282, vxw262, ee, ef) 23.57/10.33 new_esEs9(vxw280, vxw260, app(ty_Ratio, bfe)) -> new_esEs16(vxw280, vxw260, bfe) 23.57/10.33 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 23.57/10.33 new_esEs25(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) 23.57/10.33 new_lt6(vxw281, vxw261, ty_Bool) -> new_lt11(vxw281, vxw261) 23.57/10.33 new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) 23.57/10.33 new_primCmpInt(Neg(Zero), Pos(Succ(vxw2500))) -> LT 23.57/10.33 new_compare17(vxw27, vxw25, False) -> GT 23.57/10.33 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.33 new_esEs16(:%(vxw300, vxw301), :%(vxw4000, vxw4001), cdh) -> new_asAs(new_esEs23(vxw300, vxw4000, cdh), new_esEs24(vxw301, vxw4001, cdh)) 23.57/10.33 new_esEs25(vxw280, vxw260, app(ty_[], bde)) -> new_esEs14(vxw280, vxw260, bde) 23.57/10.33 new_esEs6(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.33 new_ltEs8(Right(vxw280), Left(vxw260), gh, ga) -> False 23.57/10.33 new_esEs9(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) 23.57/10.33 new_esEs28(vxw302, vxw4002, ty_@0) -> new_esEs12(vxw302, vxw4002) 23.57/10.33 new_esEs5(Right(vxw300), Right(vxw4000), cga, app(app(app(ty_@3, cha), chb), chc)) -> new_esEs4(vxw300, vxw4000, cha, chb, chc) 23.57/10.33 new_esEs25(vxw280, vxw260, ty_Int) -> new_esEs18(vxw280, vxw260) 23.57/10.33 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 23.57/10.34 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Float) -> new_esEs17(vxw281, vxw261) 23.57/10.34 new_primPlusNat1(Succ(vxw840), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw840, vxw400000))) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Integer) -> new_lt13(vxw281, vxw261) 23.57/10.34 new_lt20(vxw280, vxw260, ty_@0) -> new_lt10(vxw280, vxw260) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, cfb), cfc), ceh) -> new_esEs5(vxw300, vxw4000, cfb, cfc) 23.57/10.34 new_primPlusNat0(Succ(vxw8400), Zero) -> Succ(vxw8400) 23.57/10.34 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, app(ty_Maybe, cgg)) -> new_esEs6(vxw300, vxw4000, cgg) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(app(ty_Either, cbd), cbe)) -> new_esEs5(vxw301, vxw4001, cbd, cbe) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, app(app(ty_Either, hd), he)) -> new_ltEs8(vxw280, vxw260, hd, he) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, cbh), cca), ccb)) -> new_esEs4(vxw301, vxw4001, cbh, cca, ccb) 23.57/10.34 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs19(vxw301, vxw4001) 23.57/10.34 new_ltEs19(vxw281, vxw261, app(app(ty_Either, bee), bef)) -> new_ltEs8(vxw281, vxw261, bee, bef) 23.57/10.34 new_esEs8(LT, LT) -> True 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_compare23(vxw27, vxw25, False, bbe) -> new_compare11(vxw27, vxw25, new_ltEs16(vxw27, vxw25, bbe), bbe) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Float) -> new_esEs17(vxw280, vxw260) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(app(app(ty_@3, caf), cag), cah)) -> new_esEs4(vxw300, vxw4000, caf, cag, cah) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Int) -> new_lt16(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, app(ty_[], df)) -> new_lt12(vxw281, vxw261, df) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Int) -> new_lt16(vxw281, vxw261) 23.57/10.34 new_lt15(vxw27, vxw25) -> new_esEs8(new_compare6(vxw27, vxw25), LT) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Float) -> new_ltEs4(vxw281, vxw261) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Int) -> new_compare8(vxw270, vxw250) 23.57/10.34 new_compare6(Float(vxw270, Neg(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.34 new_lt5(vxw280, vxw260, ty_@0) -> new_lt10(vxw280, vxw260) 23.57/10.34 new_esEs13(True, True) -> True 23.57/10.34 new_compare19(vxw270, vxw250, ty_@0) -> new_compare12(vxw270, vxw250) 23.57/10.34 new_ltEs4(vxw28, vxw26) -> new_fsEs(new_compare6(vxw28, vxw26)) 23.57/10.34 new_esEs9(vxw280, vxw260, app(ty_Maybe, cd)) -> new_esEs6(vxw280, vxw260, cd) 23.57/10.34 new_compare24(vxw27, vxw25, False) -> new_compare16(vxw27, vxw25, new_ltEs10(vxw27, vxw25)) 23.57/10.34 new_ltEs18(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, bdb) -> new_pePe(new_lt20(vxw280, vxw260, bea), new_asAs(new_esEs25(vxw280, vxw260, bea), new_ltEs19(vxw281, vxw261, bdb))) 23.57/10.34 new_ltEs10(False, True) -> True 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Integer) -> new_compare13(vxw270, vxw250) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(ty_Maybe, bcd)) -> new_ltEs16(vxw280, vxw260, bcd) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Char, ga) -> new_ltEs7(vxw280, vxw260) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_@0) -> new_ltEs9(vxw280, vxw260) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Integer, ga) -> new_ltEs12(vxw280, vxw260) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Bool) -> new_esEs13(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, ty_@0) -> new_lt10(vxw281, vxw261) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(ty_[], dae)) -> new_esEs14(vxw300, vxw4000, dae) 23.57/10.34 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Succ(vxw2500))) -> new_primCmpNat0(Zero, Succ(vxw2500)) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Ratio, bgc)) -> new_esEs16(vxw300, vxw4000, bgc) 23.57/10.34 new_esEs25(vxw280, vxw260, app(app(ty_@2, bdg), bdh)) -> new_esEs7(vxw280, vxw260, bdg, bdh) 23.57/10.34 new_esEs9(vxw280, vxw260, app(app(ty_Either, ca), cb)) -> new_esEs5(vxw280, vxw260, ca, cb) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Integer) -> new_esEs15(vxw302, vxw4002) 23.57/10.34 new_lt20(vxw280, vxw260, app(ty_[], bde)) -> new_lt12(vxw280, vxw260, bde) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Maybe, bgf)) -> new_esEs6(vxw300, vxw4000, bgf) 23.57/10.34 new_esEs6(Nothing, Just(vxw4000), bfh) -> False 23.57/10.34 new_esEs6(Just(vxw300), Nothing, bfh) -> False 23.57/10.34 new_ltEs15(EQ, GT) -> True 23.57/10.34 new_esEs6(Nothing, Nothing, bfh) -> True 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_@0) -> new_ltEs9(vxw282, vxw262) 23.57/10.34 new_ltEs6(vxw282, vxw262, app(ty_Maybe, eh)) -> new_ltEs16(vxw282, vxw262, eh) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, app(ty_Ratio, cgd)) -> new_esEs16(vxw300, vxw4000, cgd) 23.57/10.34 new_esEs22(vxw300, vxw4000, app(app(ty_Either, cda), cdb)) -> new_esEs5(vxw300, vxw4000, cda, cdb) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Int) -> new_lt16(vxw280, vxw260) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_lt5(vxw280, vxw260, app(ty_[], cc)) -> new_lt12(vxw280, vxw260, cc) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Double) -> new_esEs19(vxw280, vxw260) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Bool) -> new_lt11(vxw280, vxw260) 23.57/10.34 new_esEs22(vxw300, vxw4000, app(ty_Ratio, cch)) -> new_esEs16(vxw300, vxw4000, cch) 23.57/10.34 new_compare212(vxw27, vxw25, True, bfc, bfd) -> EQ 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs12(vxw301, vxw4001) 23.57/10.34 new_compare11(vxw27, vxw25, False, bbe) -> GT 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Double) -> new_ltEs17(vxw280, vxw260) 23.57/10.34 new_compare12(@0, @0) -> EQ 23.57/10.34 new_compare16(vxw27, vxw25, True) -> LT 23.57/10.34 new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, daf), dag), dah)) -> new_esEs4(vxw300, vxw4000, daf, dag, dah) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs5(vxw280, vxw260, ha, hb, hc) 23.57/10.34 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.34 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(ty_[], dda)) -> new_esEs14(vxw302, vxw4002, dda) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Int) -> new_esEs18(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs19(vxw301, vxw4001) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(app(app(ty_@3, bbf), bbg), bbh)) -> new_ltEs5(vxw280, vxw260, bbf, bbg, bbh) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_@0) -> new_ltEs9(vxw281, vxw261) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(app(ty_@2, bce), bcf)) -> new_ltEs18(vxw280, vxw260, bce, bcf) 23.57/10.34 new_esEs10(vxw281, vxw261, app(app(ty_Either, dd), de)) -> new_esEs5(vxw281, vxw261, dd, de) 23.57/10.34 new_ltEs15(LT, GT) -> True 23.57/10.34 new_esEs13(False, False) -> True 23.57/10.34 new_ltEs9(vxw28, vxw26) -> new_fsEs(new_compare12(vxw28, vxw26)) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Float) -> new_lt15(vxw280, vxw260) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(app(ty_Either, bca), bcb)) -> new_ltEs8(vxw280, vxw260, bca, bcb) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_esEs15(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 23.57/10.34 new_esEs18(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 23.57/10.34 new_asAs(True, vxw56) -> vxw56 23.57/10.34 new_esEs21(vxw301, vxw4001, app(ty_Maybe, cbf)) -> new_esEs6(vxw301, vxw4001, cbf) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_Float) -> new_ltEs4(vxw280, vxw260) 23.57/10.34 new_esEs9(vxw280, vxw260, app(app(app(ty_@3, bd), be), bf)) -> new_esEs4(vxw280, vxw260, bd, be, bf) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(ty_[], gd), ga) -> new_ltEs11(vxw280, vxw260, gd) 23.57/10.34 new_esEs10(vxw281, vxw261, app(ty_Maybe, dg)) -> new_esEs6(vxw281, vxw261, dg) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, ceh) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Bool) -> new_compare9(vxw270, vxw250) 23.57/10.34 new_lt11(vxw27, vxw25) -> new_esEs8(new_compare9(vxw27, vxw25), LT) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Integer) -> new_esEs15(vxw281, vxw261) 23.57/10.34 new_esEs24(vxw301, vxw4001, ty_Integer) -> new_esEs15(vxw301, vxw4001) 23.57/10.34 new_compare111(vxw27, vxw25, False, bfc, bfd) -> GT 23.57/10.34 new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs4(vxw300, vxw4000, cde, cdf, cdg) 23.57/10.34 new_compare10(Double(vxw270, Neg(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.34 new_primCmpInt(Pos(Succ(vxw2700)), Pos(vxw250)) -> new_primCmpNat0(Succ(vxw2700), vxw250) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, app(ty_[], hf)) -> new_ltEs11(vxw280, vxw260, hf) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Char) -> new_lt7(vxw280, vxw260) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, ceh) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Ordering) -> new_lt17(vxw280, vxw260) 23.57/10.34 new_compare6(Float(vxw270, Pos(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs13(vxw301, vxw4001) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) 23.57/10.34 new_primMulNat0(Zero, Zero) -> Zero 23.57/10.34 new_ltEs10(True, True) -> True 23.57/10.34 new_esEs27(vxw301, vxw4001, app(ty_Ratio, dbc)) -> new_esEs16(vxw301, vxw4001, dbc) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Char) -> new_esEs11(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_@0) -> new_ltEs9(vxw280, vxw260) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Ordering) -> new_compare18(vxw270, vxw250) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_esEs17(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs18(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_[], bgg)) -> new_esEs14(vxw300, vxw4000, bgg) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(app(ty_Either, cab), cac)) -> new_esEs5(vxw300, vxw4000, cab, cac) 23.57/10.34 new_lt20(vxw280, vxw260, app(app(ty_Either, bdc), bdd)) -> new_lt9(vxw280, vxw260, bdc, bdd) 23.57/10.34 new_ltEs19(vxw281, vxw261, app(ty_Ratio, cee)) -> new_ltEs13(vxw281, vxw261, cee) 23.57/10.34 new_lt20(vxw280, vxw260, app(app(app(ty_@3, bcg), bch), bda)) -> new_lt8(vxw280, vxw260, bcg, bch, bda) 23.57/10.34 new_compare3(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_primCompAux1(vxw270, vxw250, new_compare3(vxw271, vxw251, bac), bac) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, app(app(ty_Either, cge), cgf)) -> new_esEs5(vxw300, vxw4000, cge, cgf) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Integer) -> new_lt13(vxw280, vxw260) 23.57/10.34 new_ltEs15(EQ, EQ) -> True 23.57/10.34 new_ltEs13(vxw28, vxw26, cec) -> new_fsEs(new_compare29(vxw28, vxw26, cec)) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Double) -> new_lt18(vxw280, vxw260) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(ty_Maybe, dad)) -> new_esEs6(vxw300, vxw4000, dad) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Ordering) -> new_ltEs15(vxw280, vxw260) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs11(vxw301, vxw4001) 23.57/10.34 new_primCompAux0(vxw79, EQ) -> vxw79 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Integer) -> new_ltEs12(vxw282, vxw262) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_@2, bga), bgb)) -> new_esEs7(vxw300, vxw4000, bga, bgb) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_Bool) -> new_ltEs10(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Ordering) -> new_lt17(vxw281, vxw261) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Char) -> new_ltEs7(vxw282, vxw262) 23.57/10.34 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 23.57/10.34 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 23.57/10.34 new_esEs25(vxw280, vxw260, app(ty_Maybe, bdf)) -> new_esEs6(vxw280, vxw260, bdf) 23.57/10.34 new_ltEs15(LT, EQ) -> True 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, app(ty_Ratio, ccc)) -> new_compare29(vxw270, vxw250, ccc) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], cfe), ceh) -> new_esEs14(vxw300, vxw4000, cfe) 23.57/10.34 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 23.57/10.34 new_esEs13(False, True) -> False 23.57/10.34 new_esEs13(True, False) -> False 23.57/10.34 new_compare27(vxw27, vxw25, ba, bb, bc) -> new_compare210(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) 23.57/10.34 new_lt6(vxw281, vxw261, app(app(ty_Either, dd), de)) -> new_lt9(vxw281, vxw261, dd, de) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Float) -> new_esEs17(vxw280, vxw260) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_compare24(vxw27, vxw25, True) -> EQ 23.57/10.34 new_lt16(vxw27, vxw25) -> new_esEs8(new_compare8(vxw27, vxw25), LT) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(app(ty_@2, dcc), dcd)) -> new_esEs7(vxw302, vxw4002, dcc, dcd) 23.57/10.34 new_compare7(vxw27, vxw25, bbe) -> new_compare23(vxw27, vxw25, new_esEs6(vxw27, vxw25, bbe), bbe) 23.57/10.34 new_esEs25(vxw280, vxw260, app(app(ty_Either, bdc), bdd)) -> new_esEs5(vxw280, vxw260, bdc, bdd) 23.57/10.34 new_compare10(Double(vxw270, Pos(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.34 new_ltEs16(Nothing, Just(vxw260), bhc) -> True 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, app(ty_[], cgh)) -> new_esEs14(vxw300, vxw4000, cgh) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(ty_Maybe, cad)) -> new_esEs6(vxw300, vxw4000, cad) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs11(vxw301, vxw4001) 23.57/10.34 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 23.57/10.34 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, app(app(ty_@2, bbc), bbd)) -> new_compare14(vxw270, vxw250, bbc, bbd) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(ty_Ratio, daa)) -> new_esEs16(vxw300, vxw4000, daa) 23.57/10.34 new_lt20(vxw280, vxw260, app(ty_Ratio, ced)) -> new_lt14(vxw280, vxw260, ced) 23.57/10.34 new_primCmpInt(Neg(Zero), Neg(Succ(vxw2500))) -> new_primCmpNat0(Succ(vxw2500), Zero) 23.57/10.34 new_compare19(vxw270, vxw250, app(app(ty_Either, bag), bah)) -> new_compare28(vxw270, vxw250, bag, bah) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Int, ga) -> new_ltEs14(vxw280, vxw260) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_compare211(vxw27, vxw25, True, fc, fd) -> EQ 23.57/10.34 new_ltEs15(GT, GT) -> True 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_esEs14(:(vxw300, vxw301), [], cce) -> False 23.57/10.34 new_esEs14([], :(vxw4000, vxw4001), cce) -> False 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(app(app(ty_@3, ff), fg), fh), ga) -> new_ltEs5(vxw280, vxw260, ff, fg, fh) 23.57/10.34 new_primCompAux1(vxw270, vxw250, vxw72, bac) -> new_primCompAux0(vxw72, new_compare19(vxw270, vxw250, bac)) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(app(ty_Either, dab), dac)) -> new_esEs5(vxw300, vxw4000, dab, dac) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs15(vxw301, vxw4001) 23.57/10.34 new_compare110(vxw27, vxw25, True, ba, bb, bc) -> LT 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, app(ty_Maybe, hg)) -> new_ltEs16(vxw280, vxw260, hg) 23.57/10.34 new_lt8(vxw27, vxw25, ba, bb, bc) -> new_esEs8(new_compare27(vxw27, vxw25, ba, bb, bc), LT) 23.57/10.34 new_esEs19(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs18(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, app(ty_Ratio, ceb)) -> new_ltEs13(vxw280, vxw260, ceb) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Double) -> new_lt18(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, dbh), dca), dcb)) -> new_esEs4(vxw301, vxw4001, dbh, dca, dcb) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Integer) -> new_ltEs12(vxw280, vxw260) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_ltEs6(vxw282, vxw262, app(ty_[], eg)) -> new_ltEs11(vxw282, vxw262, eg) 23.57/10.34 new_not(False) -> True 23.57/10.34 new_ltEs8(Left(vxw280), Right(vxw260), gh, ga) -> True 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_Ordering) -> new_ltEs15(vxw280, vxw260) 23.57/10.34 new_ltEs17(vxw28, vxw26) -> new_fsEs(new_compare10(vxw28, vxw26)) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Bool) -> new_ltEs10(vxw280, vxw260) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs13(vxw301, vxw4001) 23.57/10.34 new_compare9(vxw27, vxw25) -> new_compare24(vxw27, vxw25, new_esEs13(vxw27, vxw25)) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Int) -> new_esEs18(vxw281, vxw261) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Double) -> new_esEs19(vxw302, vxw4002) 23.57/10.34 new_esEs8(LT, GT) -> False 23.57/10.34 new_esEs8(GT, LT) -> False 23.57/10.34 new_esEs10(vxw281, vxw261, app(ty_[], df)) -> new_esEs14(vxw281, vxw261, df) 23.57/10.34 new_primPlusNat0(Succ(vxw8400), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw8400, vxw4000000))) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(ty_[], cae)) -> new_esEs14(vxw300, vxw4000, cae) 23.57/10.34 new_esEs5(Left(vxw300), Right(vxw4000), cga, ceh) -> False 23.57/10.34 new_esEs5(Right(vxw300), Left(vxw4000), cga, ceh) -> False 23.57/10.34 new_ltEs6(vxw282, vxw262, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs5(vxw282, vxw262, eb, ec, ed) 23.57/10.34 new_lt4(vxw27, vxw25, bbe) -> new_esEs8(new_compare7(vxw27, vxw25, bbe), LT) 23.57/10.34 new_compare25(vxw27, vxw25, True) -> EQ 23.57/10.34 new_ltEs7(vxw28, vxw26) -> new_fsEs(new_compare26(vxw28, vxw26)) 23.57/10.34 new_lt5(vxw280, vxw260, app(ty_Maybe, cd)) -> new_lt4(vxw280, vxw260, cd) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Bool) -> new_esEs13(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Float) -> new_lt15(vxw281, vxw261) 23.57/10.34 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 23.57/10.34 new_ltEs19(vxw281, vxw261, app(app(ty_@2, bfa), bfb)) -> new_ltEs18(vxw281, vxw261, bfa, bfb) 23.57/10.34 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 23.57/10.34 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 23.57/10.34 new_esEs25(vxw280, vxw260, app(app(app(ty_@3, bcg), bch), bda)) -> new_esEs4(vxw280, vxw260, bcg, bch, bda) 23.57/10.34 new_lt6(vxw281, vxw261, app(ty_Ratio, bff)) -> new_lt14(vxw281, vxw261, bff) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_lt13(vxw27, vxw25) -> new_esEs8(new_compare13(vxw27, vxw25), LT) 23.57/10.34 new_esEs10(vxw281, vxw261, app(app(ty_@2, dh), ea)) -> new_esEs7(vxw281, vxw261, dh, ea) 23.57/10.34 new_compare19(vxw270, vxw250, app(app(app(ty_@3, bad), bae), baf)) -> new_compare27(vxw270, vxw250, bad, bae, baf) 23.57/10.34 new_esEs22(vxw300, vxw4000, app(ty_[], cdd)) -> new_esEs14(vxw300, vxw4000, cdd) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Bool) -> new_esEs13(vxw281, vxw261) 23.57/10.34 new_ltEs15(LT, LT) -> True 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, cfa), ceh) -> new_esEs16(vxw300, vxw4000, cfa) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(ty_Maybe, dch)) -> new_esEs6(vxw302, vxw4002, dch) 23.57/10.34 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Float) -> new_compare6(vxw270, vxw250) 23.57/10.34 new_lt20(vxw280, vxw260, app(ty_Maybe, bdf)) -> new_lt4(vxw280, vxw260, bdf) 23.57/10.34 new_esEs12(@0, @0) -> True 23.57/10.34 new_lt5(vxw280, vxw260, ty_Char) -> new_lt7(vxw280, vxw260) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_primCmpNat0(Succ(vxw2700), Succ(vxw2500)) -> new_primCmpNat0(vxw2700, vxw2500) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Double) -> new_lt18(vxw281, vxw261) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(app(ty_@2, cba), cbb)) -> new_esEs7(vxw301, vxw4001, cba, cbb) 23.57/10.34 new_lt12(vxw27, vxw25, bac) -> new_esEs8(new_compare3(vxw27, vxw25, bac), LT) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), gh, ty_Char) -> new_ltEs7(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, app(ty_Maybe, dbf)) -> new_esEs6(vxw301, vxw4001, dbf) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(ty_Ratio, dce)) -> new_esEs16(vxw302, vxw4002, dce) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs12(vxw301, vxw4001) 23.57/10.34 new_compare3(:(vxw270, vxw271), [], bac) -> GT 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 23.57/10.34 new_compare15(vxw27, vxw25, False, fc, fd) -> GT 23.57/10.34 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 23.57/10.34 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 23.57/10.34 new_ltEs12(vxw28, vxw26) -> new_fsEs(new_compare13(vxw28, vxw26)) 23.57/10.34 new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), chd, che, chf) -> new_asAs(new_esEs26(vxw300, vxw4000, chd), new_asAs(new_esEs27(vxw301, vxw4001, che), new_esEs28(vxw302, vxw4002, chf))) 23.57/10.34 new_esEs23(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_primEqNat0(Zero, Zero) -> True 23.57/10.34 new_esEs28(vxw302, vxw4002, app(app(ty_Either, dcf), dcg)) -> new_esEs5(vxw302, vxw4002, dcf, dcg) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Int) -> new_ltEs14(vxw280, vxw260) 23.57/10.34 new_esEs7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), bhe, bhf) -> new_asAs(new_esEs20(vxw300, vxw4000, bhe), new_esEs21(vxw301, vxw4001, bhf)) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs18(vxw301, vxw4001) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_ltEs14(vxw28, vxw26) -> new_fsEs(new_compare8(vxw28, vxw26)) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Bool) -> new_ltEs10(vxw281, vxw261) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(ty_[], bcc)) -> new_ltEs11(vxw280, vxw260, bcc) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Char) -> new_compare26(vxw270, vxw250) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_@0) -> new_esEs12(vxw280, vxw260) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(ty_[], cbg)) -> new_esEs14(vxw301, vxw4001, cbg) 23.57/10.34 new_asAs(False, vxw56) -> False 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Int) -> new_ltEs14(vxw281, vxw261) 23.57/10.34 new_compare14(vxw27, vxw25, bfc, bfd) -> new_compare212(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfc, bfd), bfc, bfd) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), cga, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_lt18(vxw27, vxw25) -> new_esEs8(new_compare10(vxw27, vxw25), LT) 23.57/10.34 new_lt7(vxw27, vxw25) -> new_esEs8(new_compare26(vxw27, vxw25), LT) 23.57/10.34 new_lt10(vxw27, vxw25) -> new_esEs8(new_compare12(vxw27, vxw25), LT) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Int) -> new_ltEs14(vxw282, vxw262) 23.57/10.34 new_esEs8(EQ, GT) -> False 23.57/10.34 new_esEs8(GT, EQ) -> False 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Double, ga) -> new_ltEs17(vxw280, vxw260) 23.57/10.34 new_esEs14(:(vxw300, vxw301), :(vxw4000, vxw4001), cce) -> new_asAs(new_esEs22(vxw300, vxw4000, cce), new_esEs14(vxw301, vxw4001, cce)) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Float) -> new_esEs17(vxw302, vxw4002) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Char) -> new_lt7(vxw281, vxw261) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_@0) -> new_esEs12(vxw281, vxw261) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Bool) -> new_ltEs10(vxw282, vxw262) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(app(ty_@2, bhg), bhh)) -> new_esEs7(vxw300, vxw4000, bhg, bhh) 23.57/10.34 23.57/10.34 The set Q consists of the following terms: 23.57/10.34 23.57/10.34 new_esEs8(EQ, EQ) 23.57/10.34 new_esEs23(x0, x1, ty_Int) 23.57/10.34 new_lt20(x0, x1, ty_Char) 23.57/10.34 new_esEs21(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 23.57/10.34 new_lt20(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs20(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_ltEs14(x0, x1) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 23.57/10.34 new_ltEs6(x0, x1, ty_Bool) 23.57/10.34 new_lt4(x0, x1, x2) 23.57/10.34 new_compare210(x0, x1, False, x2, x3, x4) 23.57/10.34 new_compare16(x0, x1, True) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 23.57/10.34 new_esEs26(x0, x1, ty_Float) 23.57/10.34 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs9(x0, x1, ty_Double) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 23.57/10.34 new_ltEs19(x0, x1, ty_Char) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 23.57/10.34 new_ltEs12(x0, x1) 23.57/10.34 new_esEs26(x0, x1, app(ty_[], x2)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 23.57/10.34 new_esEs21(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs6(x0, x1, ty_Integer) 23.57/10.34 new_compare19(x0, x1, ty_Float) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 23.57/10.34 new_ltEs19(x0, x1, ty_Ordering) 23.57/10.34 new_esEs25(x0, x1, ty_Char) 23.57/10.34 new_primEqInt(Pos(Zero), Pos(Zero)) 23.57/10.34 new_primPlusNat0(Succ(x0), Succ(x1)) 23.57/10.34 new_esEs22(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_compare23(x0, x1, False, x2) 23.57/10.34 new_primPlusNat0(Zero, Succ(x0)) 23.57/10.34 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 23.57/10.34 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 23.57/10.34 new_compare24(x0, x1, False) 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 23.57/10.34 new_esEs10(x0, x1, ty_Bool) 23.57/10.34 new_esEs16(:%(x0, x1), :%(x2, x3), x4) 23.57/10.34 new_compare11(x0, x1, False, x2) 23.57/10.34 new_esEs22(x0, x1, ty_Float) 23.57/10.34 new_ltEs19(x0, x1, ty_Int) 23.57/10.34 new_primEqInt(Neg(Zero), Neg(Zero)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Char) 23.57/10.34 new_lt5(x0, x1, ty_Float) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 23.57/10.34 new_pePe(False, x0) 23.57/10.34 new_lt6(x0, x1, ty_Float) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 23.57/10.34 new_ltEs6(x0, x1, ty_@0) 23.57/10.34 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 23.57/10.34 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 23.57/10.34 new_compare212(x0, x1, False, x2, x3) 23.57/10.34 new_esEs5(Left(x0), Right(x1), x2, x3) 23.57/10.34 new_esEs5(Right(x0), Left(x1), x2, x3) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Int) 23.57/10.34 new_esEs25(x0, x1, ty_Bool) 23.57/10.34 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 23.57/10.34 new_esEs22(x0, x1, app(ty_[], x2)) 23.57/10.34 new_compare212(x0, x1, True, x2, x3) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Bool) 23.57/10.34 new_compare13(Integer(x0), Integer(x1)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Int) 23.57/10.34 new_ltEs6(x0, x1, ty_Char) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 23.57/10.34 new_compare110(x0, x1, True, x2, x3, x4) 23.57/10.34 new_esEs10(x0, x1, ty_Double) 23.57/10.34 new_compare19(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_compare8(x0, x1) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_@0) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_@0) 23.57/10.34 new_ltEs10(False, False) 23.57/10.34 new_compare3([], [], x0) 23.57/10.34 new_esEs25(x0, x1, ty_Ordering) 23.57/10.34 new_esEs24(x0, x1, ty_Integer) 23.57/10.34 new_esEs10(x0, x1, ty_@0) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 23.57/10.34 new_esEs10(x0, x1, ty_Char) 23.57/10.34 new_primEqInt(Pos(Zero), Neg(Zero)) 23.57/10.34 new_primEqInt(Neg(Zero), Pos(Zero)) 23.57/10.34 new_esEs28(x0, x1, ty_Float) 23.57/10.34 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 23.57/10.34 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 23.57/10.34 new_ltEs4(x0, x1) 23.57/10.34 new_esEs25(x0, x1, ty_Integer) 23.57/10.34 new_compare19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_compare19(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt5(x0, x1, ty_Bool) 23.57/10.34 new_lt15(x0, x1) 23.57/10.34 new_primEqNat0(Succ(x0), Zero) 23.57/10.34 new_esEs10(x0, x1, ty_Int) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 23.57/10.34 new_lt20(x0, x1, ty_Ordering) 23.57/10.34 new_esEs20(x0, x1, ty_Float) 23.57/10.34 new_compare11(x0, x1, True, x2) 23.57/10.34 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 23.57/10.34 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 23.57/10.34 new_esEs27(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs9(x0, x1, ty_Ordering) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Char) 23.57/10.34 new_ltEs15(EQ, EQ) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Double) 23.57/10.34 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs22(x0, x1, ty_Integer) 23.57/10.34 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 23.57/10.34 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 23.57/10.34 new_primCompAux0(x0, GT) 23.57/10.34 new_ltEs19(x0, x1, ty_Integer) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 23.57/10.34 new_esEs14([], :(x0, x1), x2) 23.57/10.34 new_compare211(x0, x1, False, x2, x3) 23.57/10.34 new_ltEs6(x0, x1, ty_Float) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 23.57/10.34 new_lt18(x0, x1) 23.57/10.34 new_esEs23(x0, x1, ty_Integer) 23.57/10.34 new_compare28(x0, x1, x2, x3) 23.57/10.34 new_lt20(x0, x1, ty_Integer) 23.57/10.34 new_primMulNat0(Succ(x0), Zero) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 23.57/10.34 new_compare7(x0, x1, x2) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 23.57/10.34 new_esEs21(x0, x1, ty_Double) 23.57/10.34 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_ltEs15(GT, LT) 23.57/10.34 new_ltEs15(LT, GT) 23.57/10.34 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 23.57/10.34 new_compare3([], :(x0, x1), x2) 23.57/10.34 new_ltEs16(Nothing, Just(x0), x1) 23.57/10.34 new_esEs9(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs6(x0, x1, ty_Int) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 23.57/10.34 new_esEs17(Float(x0, x1), Float(x2, x3)) 23.57/10.34 new_compare111(x0, x1, True, x2, x3) 23.57/10.34 new_lt13(x0, x1) 23.57/10.34 new_lt6(x0, x1, ty_@0) 23.57/10.34 new_primCmpNat0(Zero, Succ(x0)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Float) 23.57/10.34 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_compare19(x0, x1, ty_Integer) 23.57/10.34 new_lt5(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs8(GT, GT) 23.57/10.34 new_lt6(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs8(LT, EQ) 23.57/10.34 new_esEs8(EQ, LT) 23.57/10.34 new_primCmpNat0(Succ(x0), Zero) 23.57/10.34 new_esEs10(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Double) 23.57/10.34 new_primCmpInt(Neg(Zero), Neg(Zero)) 23.57/10.34 new_esEs26(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 23.57/10.34 new_esEs27(x0, x1, ty_Double) 23.57/10.34 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs13(False, True) 23.57/10.34 new_esEs13(True, False) 23.57/10.34 new_esEs27(x0, x1, ty_@0) 23.57/10.34 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 23.57/10.34 new_esEs8(LT, LT) 23.57/10.34 new_primCmpInt(Pos(Zero), Neg(Zero)) 23.57/10.34 new_primCmpInt(Neg(Zero), Pos(Zero)) 23.57/10.34 new_esEs28(x0, x1, ty_Integer) 23.57/10.34 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 23.57/10.34 new_lt20(x0, x1, ty_Bool) 23.57/10.34 new_lt20(x0, x1, ty_Float) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs25(x0, x1, ty_Int) 23.57/10.34 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 23.57/10.34 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 23.57/10.34 new_primMulInt(Pos(x0), Neg(x1)) 23.57/10.34 new_primMulInt(Neg(x0), Pos(x1)) 23.57/10.34 new_ltEs19(x0, x1, app(ty_[], x2)) 23.57/10.34 new_compare110(x0, x1, False, x2, x3, x4) 23.57/10.34 new_lt12(x0, x1, x2) 23.57/10.34 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_compare19(x0, x1, ty_Char) 23.57/10.34 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 23.57/10.34 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 23.57/10.34 new_esEs22(x0, x1, ty_Bool) 23.57/10.34 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 23.57/10.34 new_lt7(x0, x1) 23.57/10.34 new_compare19(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs10(x0, x1, ty_Integer) 23.57/10.34 new_esEs25(x0, x1, ty_Float) 23.57/10.34 new_esEs25(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_lt6(x0, x1, ty_Double) 23.57/10.34 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_ltEs19(x0, x1, ty_Bool) 23.57/10.34 new_esEs24(x0, x1, ty_Int) 23.57/10.34 new_esEs21(x0, x1, ty_@0) 23.57/10.34 new_compare24(x0, x1, True) 23.57/10.34 new_esEs18(x0, x1) 23.57/10.34 new_lt20(x0, x1, ty_Int) 23.57/10.34 new_esEs22(x0, x1, ty_Char) 23.57/10.34 new_esEs20(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs9(x0, x1, ty_@0) 23.57/10.34 new_asAs(False, x0) 23.57/10.34 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs10(x0, x1, ty_Ordering) 23.57/10.34 new_compare19(x0, x1, ty_Bool) 23.57/10.34 new_esEs28(x0, x1, ty_Ordering) 23.57/10.34 new_esEs6(Just(x0), Nothing, x1) 23.57/10.34 new_esEs27(x0, x1, ty_Char) 23.57/10.34 new_primCmpNat0(Succ(x0), Succ(x1)) 23.57/10.34 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_primEqNat0(Zero, Succ(x0)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 23.57/10.34 new_compare19(x0, x1, ty_Int) 23.57/10.34 new_esEs20(x0, x1, ty_Char) 23.57/10.34 new_lt5(x0, x1, ty_Double) 23.57/10.34 new_compare26(Char(x0), Char(x1)) 23.57/10.34 new_esEs14(:(x0, x1), [], x2) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 23.57/10.34 new_esEs26(x0, x1, ty_Ordering) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 23.57/10.34 new_ltEs9(x0, x1) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 23.57/10.34 new_compare19(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs8(Right(x0), Left(x1), x2, x3) 23.57/10.34 new_ltEs8(Left(x0), Right(x1), x2, x3) 23.57/10.34 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 23.57/10.34 new_primMulNat0(Zero, Zero) 23.57/10.34 new_lt6(x0, x1, ty_Ordering) 23.57/10.34 new_esEs20(x0, x1, ty_Int) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 23.57/10.34 new_primPlusNat0(Succ(x0), Zero) 23.57/10.34 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs9(x0, x1, ty_Float) 23.57/10.34 new_ltEs17(x0, x1) 23.57/10.34 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs25(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt6(x0, x1, ty_Int) 23.57/10.34 new_lt8(x0, x1, x2, x3, x4) 23.57/10.34 new_compare211(x0, x1, True, x2, x3) 23.57/10.34 new_esEs22(x0, x1, ty_Int) 23.57/10.34 new_primMulInt(Pos(x0), Pos(x1)) 23.57/10.34 new_compare15(x0, x1, True, x2, x3) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 23.57/10.34 new_esEs19(Double(x0, x1), Double(x2, x3)) 23.57/10.34 new_esEs22(x0, x1, ty_Ordering) 23.57/10.34 new_esEs27(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs28(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_primMulNat0(Succ(x0), Succ(x1)) 23.57/10.34 new_ltEs10(True, False) 23.57/10.34 new_ltEs10(False, True) 23.57/10.34 new_fsEs(x0) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 23.57/10.34 new_compare19(x0, x1, ty_Ordering) 23.57/10.34 new_esEs28(x0, x1, ty_Bool) 23.57/10.34 new_esEs21(x0, x1, ty_Char) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 23.57/10.34 new_compare27(x0, x1, x2, x3, x4) 23.57/10.34 new_esEs20(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt5(x0, x1, ty_Ordering) 23.57/10.34 new_esEs27(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs28(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_compare9(x0, x1) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 23.57/10.34 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_compare17(x0, x1, True) 23.57/10.34 new_primCompAux1(x0, x1, x2, x3) 23.57/10.34 new_esEs9(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs6(Nothing, Nothing, x0) 23.57/10.34 new_primMulInt(Neg(x0), Neg(x1)) 23.57/10.34 new_esEs21(x0, x1, ty_Bool) 23.57/10.34 new_ltEs6(x0, x1, app(ty_[], x2)) 23.57/10.34 new_sr0(x0, x1) 23.57/10.34 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 23.57/10.34 new_primPlusNat0(Zero, Zero) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 23.57/10.34 new_compare19(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs20(x0, x1, ty_@0) 23.57/10.34 new_not(True) 23.57/10.34 new_lt5(x0, x1, ty_Char) 23.57/10.34 new_esEs28(x0, x1, ty_Int) 23.57/10.34 new_esEs14(:(x0, x1), :(x2, x3), x4) 23.57/10.34 new_esEs20(x0, x1, ty_Double) 23.57/10.34 new_esEs8(EQ, GT) 23.57/10.34 new_esEs8(GT, EQ) 23.57/10.34 new_esEs6(Nothing, Just(x0), x1) 23.57/10.34 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 23.57/10.34 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 23.57/10.34 new_compare3(:(x0, x1), [], x2) 23.57/10.34 new_ltEs19(x0, x1, ty_Float) 23.57/10.34 new_lt5(x0, x1, ty_Int) 23.57/10.34 new_compare25(x0, x1, True) 23.57/10.34 new_ltEs15(GT, EQ) 23.57/10.34 new_ltEs15(EQ, GT) 23.57/10.34 new_esEs13(True, True) 23.57/10.34 new_lt6(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs28(x0, x1, ty_Char) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 23.57/10.34 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_pePe(True, x0) 23.57/10.34 new_esEs26(x0, x1, ty_@0) 23.57/10.34 new_esEs9(x0, x1, ty_Integer) 23.57/10.34 new_esEs10(x0, x1, ty_Float) 23.57/10.34 new_lt20(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs26(x0, x1, ty_Double) 23.57/10.34 new_lt6(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs26(x0, x1, ty_Char) 23.57/10.34 new_esEs21(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_ltEs16(Just(x0), Nothing, x1) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Float) 23.57/10.34 new_esEs21(x0, x1, ty_Ordering) 23.57/10.34 new_primCompAux0(x0, LT) 23.57/10.34 new_esEs27(x0, x1, ty_Ordering) 23.57/10.34 new_esEs21(x0, x1, ty_Integer) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 23.57/10.34 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs15(Integer(x0), Integer(x1)) 23.57/10.34 new_ltEs7(x0, x1) 23.57/10.34 new_esEs28(x0, x1, ty_@0) 23.57/10.34 new_compare18(x0, x1) 23.57/10.34 new_compare12(@0, @0) 23.57/10.34 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Zero)) 23.57/10.34 new_esEs26(x0, x1, ty_Int) 23.57/10.34 new_lt5(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 23.57/10.34 new_compare15(x0, x1, False, x2, x3) 23.57/10.34 new_compare16(x0, x1, False) 23.57/10.34 new_compare210(x0, x1, True, x2, x3, x4) 23.57/10.34 new_lt17(x0, x1) 23.57/10.34 new_esEs10(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs16(Nothing, Nothing, x0) 23.57/10.34 new_esEs9(x0, x1, ty_Bool) 23.57/10.34 new_ltEs11(x0, x1, x2) 23.57/10.34 new_esEs9(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 23.57/10.34 new_lt5(x0, x1, ty_@0) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 23.57/10.34 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_compare14(x0, x1, x2, x3) 23.57/10.34 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 23.57/10.34 new_esEs26(x0, x1, ty_Bool) 23.57/10.34 new_lt14(x0, x1, x2) 23.57/10.34 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 23.57/10.34 new_primPlusNat1(Succ(x0), x1) 23.57/10.34 new_esEs12(@0, @0) 23.57/10.34 new_esEs27(x0, x1, ty_Integer) 23.57/10.34 new_lt16(x0, x1) 23.57/10.34 new_esEs26(x0, x1, ty_Integer) 23.57/10.34 new_esEs22(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 23.57/10.34 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 23.57/10.34 new_esEs8(LT, GT) 23.57/10.34 new_esEs8(GT, LT) 23.57/10.34 new_lt9(x0, x1, x2, x3) 23.57/10.34 new_esEs11(Char(x0), Char(x1)) 23.57/10.34 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs28(x0, x1, ty_Double) 23.57/10.34 new_ltEs6(x0, x1, ty_Double) 23.57/10.34 new_lt19(x0, x1, x2, x3) 23.57/10.34 new_lt20(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 23.57/10.34 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 23.57/10.34 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Integer) 23.57/10.34 new_ltEs15(EQ, LT) 23.57/10.34 new_ltEs15(LT, EQ) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 23.57/10.34 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 23.57/10.34 new_compare19(x0, x1, ty_@0) 23.57/10.34 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 23.57/10.34 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 23.57/10.34 new_lt6(x0, x1, ty_Integer) 23.57/10.34 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs15(GT, GT) 23.57/10.34 new_lt10(x0, x1) 23.57/10.34 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 23.57/10.34 new_esEs25(x0, x1, ty_Double) 23.57/10.34 new_asAs(True, x0) 23.57/10.34 new_compare3(:(x0, x1), :(x2, x3), x4) 23.57/10.34 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 23.57/10.34 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 23.57/10.34 new_ltEs19(x0, x1, ty_@0) 23.57/10.34 new_lt5(x0, x1, ty_Integer) 23.57/10.34 new_primEqNat0(Succ(x0), Succ(x1)) 23.57/10.34 new_ltEs6(x0, x1, ty_Ordering) 23.57/10.34 new_esEs20(x0, x1, ty_Bool) 23.57/10.34 new_primCompAux0(x0, EQ) 23.57/10.34 new_esEs25(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_sr(Integer(x0), Integer(x1)) 23.57/10.34 new_primEqNat0(Zero, Zero) 23.57/10.34 new_esEs13(False, False) 23.57/10.34 new_lt5(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt20(x0, x1, ty_@0) 23.57/10.34 new_not(False) 23.57/10.34 new_esEs27(x0, x1, ty_Float) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 23.57/10.34 new_esEs14([], [], x0) 23.57/10.34 new_compare25(x0, x1, False) 23.57/10.34 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs27(x0, x1, ty_Bool) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs10(x0, x1, app(ty_[], x2)) 23.57/10.34 new_ltEs19(x0, x1, ty_Double) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Bool) 23.57/10.34 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs22(x0, x1, ty_@0) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 23.57/10.34 new_lt20(x0, x1, ty_Double) 23.57/10.34 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Ordering) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Ordering) 23.57/10.34 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs21(x0, x1, ty_Int) 23.57/10.34 new_esEs25(x0, x1, ty_@0) 23.57/10.34 new_lt11(x0, x1) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 23.57/10.34 new_ltEs15(LT, LT) 23.57/10.34 new_primMulNat0(Zero, Succ(x0)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 23.57/10.34 new_compare19(x0, x1, ty_Double) 23.57/10.34 new_compare111(x0, x1, False, x2, x3) 23.57/10.34 new_esEs9(x0, x1, ty_Char) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Integer) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 23.57/10.34 new_esEs28(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt6(x0, x1, ty_Char) 23.57/10.34 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 23.57/10.34 new_primPlusNat1(Zero, x0) 23.57/10.34 new_esEs9(x0, x1, ty_Int) 23.57/10.34 new_esEs20(x0, x1, ty_Ordering) 23.57/10.34 new_esEs26(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs20(x0, x1, ty_Integer) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 23.57/10.34 new_lt6(x0, x1, ty_Bool) 23.57/10.34 new_ltEs10(True, True) 23.57/10.34 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs22(x0, x1, ty_Double) 23.57/10.34 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 23.57/10.34 new_compare17(x0, x1, False) 23.57/10.34 new_ltEs13(x0, x1, x2) 23.57/10.34 new_esEs27(x0, x1, ty_Int) 23.57/10.34 new_primCmpNat0(Zero, Zero) 23.57/10.34 new_esEs21(x0, x1, ty_Float) 23.57/10.34 new_compare23(x0, x1, True, x2) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) 23.57/10.34 23.57/10.34 We have to consider all minimal (P,Q,R)-chains. 23.57/10.34 ---------------------------------------- 23.57/10.34 23.57/10.34 (22) QDPSizeChangeProof (EQUIVALENT) 23.57/10.34 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. 23.57/10.34 23.57/10.34 From the DPs we obtained the following set of size-change graphs: 23.57/10.34 *new_compare4(vxw27, vxw25, bbe) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bbe), bbe) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_primCompAux(vxw270, vxw250, new_compare3(vxw271, vxw251, bac), bac) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_lt1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_primCompAux(vxw270, vxw250, new_compare3(vxw271, vxw251, bac), bac) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_compare1(vxw271, vxw251, bac) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs1(vxw28, vxw26, bab) -> new_compare1(vxw28, vxw26, bab) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs2(Just(vxw280), Just(vxw260), app(ty_[], bcc)) -> new_ltEs1(vxw280, vxw260, bcc) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs2(Just(vxw280), Just(vxw260), app(ty_Maybe, bcd)) -> new_ltEs2(vxw280, vxw260, bcd) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_Either, bca), bcb)) -> new_ltEs0(vxw280, vxw260, bca, bcb) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(ty_[], beg)) -> new_ltEs1(vxw281, vxw261, beg) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(ty_Maybe, beh)) -> new_ltEs2(vxw281, vxw261, beh) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(app(ty_Either, bee), bef)) -> new_ltEs0(vxw281, vxw261, bee, bef) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_[], eg)) -> new_ltEs1(vxw282, vxw262, eg) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs2(Just(vxw280), Just(vxw260), app(app(ty_@2, bce), bcf)) -> new_ltEs3(vxw280, vxw260, bce, bcf) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs2(Just(vxw280), Just(vxw260), app(app(app(ty_@3, bbf), bbg), bbh)) -> new_ltEs(vxw280, vxw260, bbf, bbg, bbh) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(app(ty_@2, bfa), bfb)) -> new_ltEs3(vxw281, vxw261, bfa, bfb) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare21(vxw27, vxw25, False, bbe) -> new_ltEs2(vxw27, vxw25, bbe) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(ty_Maybe, eh)) -> new_ltEs2(vxw282, vxw262, eh) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_Maybe, bdf), bdb) -> new_lt2(vxw280, vxw260, bdf) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_@2, bdg), bdh), bdb) -> new_lt3(vxw280, vxw260, bdg, bdh) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare22(vxw27, vxw25, False, bfc, bfd) -> new_ltEs3(vxw27, vxw25, bfc, bfd) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_@2, fa), fb)) -> new_ltEs3(vxw282, vxw262, fa, fb) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), bea, app(app(app(ty_@3, beb), bec), bed)) -> new_ltEs(vxw281, vxw261, beb, bec, bed) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_lt1(:(vxw270, vxw271), :(vxw250, vxw251), bac) -> new_compare1(vxw271, vxw251, bac) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare20(vxw27, vxw25, False, fc, fd) -> new_ltEs0(vxw27, vxw25, fc, fd) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(ty_Either, ee), ef)) -> new_ltEs0(vxw282, vxw262, ee, ef) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_Either, bag), bah)) -> new_compare0(vxw270, vxw250, bag, bah) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_lt(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 23.57/10.34 23.57/10.34 23.57/10.34 *new_lt0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare(vxw27, vxw25, ba, bb, bc) -> new_compare2(vxw27, vxw25, new_esEs4(vxw27, vxw25, ba, bb, bc), ba, bb, bc) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 23.57/10.34 23.57/10.34 23.57/10.34 *new_lt3(vxw27, vxw25, bfc, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfc, bfd), bfc, bfd) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare5(vxw27, vxw25, bfc, bfd) -> new_compare22(vxw27, vxw25, new_esEs7(vxw27, vxw25, bfc, bfd), bfc, bfd) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare2(vxw27, vxw25, False, ba, bb, bc) -> new_ltEs(vxw27, vxw25, ba, bb, bc) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, bg, app(app(app(ty_@3, eb), ec), ed)) -> new_ltEs(vxw282, vxw262, eb, ec, ed) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_primCompAux(vxw270, vxw250, vxw72, app(app(app(ty_@3, bad), bae), baf)) -> new_compare(vxw270, vxw250, bad, bae, baf) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_lt2(vxw27, vxw25, bbe) -> new_compare21(vxw27, vxw25, new_esEs6(vxw27, vxw25, bbe), bbe) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(app(ty_@3, bcg), bch), bda), bdb) -> new_lt(vxw280, vxw260, bcg, bch, bda) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_primCompAux(vxw270, vxw250, vxw72, app(app(ty_@2, bbc), bbd)) -> new_compare5(vxw270, vxw250, bbc, bbd) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(ty_[], bde), bdb) -> new_lt1(vxw280, vxw260, bde) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs3(@2(vxw280, vxw281), @2(vxw260, vxw261), app(app(ty_Either, bdc), bdd), bdb) -> new_lt0(vxw280, vxw260, bdc, bdd) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_compare0(vxw27, vxw25, fc, fd) -> new_compare20(vxw27, vxw25, new_esEs5(vxw27, vxw25, fc, fd), fc, fd) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_primCompAux(vxw270, vxw250, vxw72, app(ty_Maybe, bbb)) -> new_compare4(vxw270, vxw250, bbb) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_primCompAux(vxw270, vxw250, vxw72, app(ty_[], bba)) -> new_compare1(vxw270, vxw250, bba) 23.57/10.34 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Left(vxw280), Left(vxw260), app(ty_[], gd), ga) -> new_ltEs1(vxw280, vxw260, gd) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Right(vxw280), Right(vxw260), gh, app(ty_[], hf)) -> new_ltEs1(vxw280, vxw260, hf) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Left(vxw280), Left(vxw260), app(ty_Maybe, ge), ga) -> new_ltEs2(vxw280, vxw260, ge) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Right(vxw280), Right(vxw260), gh, app(ty_Maybe, hg)) -> new_ltEs2(vxw280, vxw260, hg) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Right(vxw280), Right(vxw260), gh, app(app(ty_Either, hd), he)) -> new_ltEs0(vxw280, vxw260, hd, he) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Left(vxw280), Left(vxw260), app(app(ty_Either, gb), gc), ga) -> new_ltEs0(vxw280, vxw260, gb, gc) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Left(vxw280), Left(vxw260), app(app(ty_@2, gf), gg), ga) -> new_ltEs3(vxw280, vxw260, gf, gg) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Right(vxw280), Right(vxw260), gh, app(app(ty_@2, hh), baa)) -> new_ltEs3(vxw280, vxw260, hh, baa) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Left(vxw280), Left(vxw260), app(app(app(ty_@3, ff), fg), fh), ga) -> new_ltEs(vxw280, vxw260, ff, fg, fh) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs0(Right(vxw280), Right(vxw260), gh, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs(vxw280, vxw260, ha, hb, hc) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_Maybe, cd), bg, bh) -> new_lt2(vxw280, vxw260, cd) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_Maybe, dg), bh) -> new_lt2(vxw281, vxw261, dg) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_@2, dh), ea), bh) -> new_lt3(vxw281, vxw261, dh, ea) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_@2, ce), cf), bg, bh) -> new_lt3(vxw280, vxw260, ce, cf) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(app(ty_@3, bd), be), bf), bg, bh) -> new_lt(vxw280, vxw260, bd, be, bf) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(app(ty_@3, da), db), dc), bh) -> new_lt(vxw281, vxw261, da, db, dc) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(ty_[], cc), bg, bh) -> new_lt1(vxw280, vxw260, cc) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(ty_[], df), bh) -> new_lt1(vxw281, vxw261, df) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), cg, app(app(ty_Either, dd), de), bh) -> new_lt0(vxw281, vxw261, dd, de) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 23.57/10.34 23.57/10.34 23.57/10.34 *new_ltEs(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), app(app(ty_Either, ca), cb), bg, bh) -> new_lt0(vxw280, vxw260, ca, cb) 23.57/10.34 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 23.57/10.34 23.57/10.34 23.57/10.34 ---------------------------------------- 23.57/10.34 23.57/10.34 (23) 23.57/10.34 YES 23.57/10.34 23.57/10.34 ---------------------------------------- 23.57/10.34 23.57/10.34 (24) 23.57/10.34 Obligation: 23.57/10.34 Q DP problem: 23.57/10.34 The TRS P consists of the following rules: 23.57/10.34 23.57/10.34 new_insertBy0(vxw25, vxw26, vxw27, vxw28, vxw29, False, ba, bb) -> new_insertBy00(vxw25, vxw26, vxw27, vxw28, vxw29, new_pePe(new_lt21(vxw27, vxw25, ba), new_asAs(new_esEs29(vxw27, vxw25, ba), new_ltEs20(vxw28, vxw26, bb))), ba, bb) 23.57/10.34 new_insertBy(@2(vxw30, vxw31), :(@2(vxw400, vxw401), vxw41), be, bf) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_asAs(new_esEs30(vxw30, vxw400, be), new_esEs31(vxw31, vxw401, bf)), be, bf) 23.57/10.34 new_insertBy00(vxw45, vxw46, vxw47, vxw48, vxw49, False, bc, bd) -> new_insertBy(@2(vxw47, vxw48), vxw49, bc, bd) 23.57/10.34 23.57/10.34 The TRS R consists of the following rules: 23.57/10.34 23.57/10.34 new_ltEs20(vxw28, vxw26, app(ty_[], bha)) -> new_ltEs11(vxw28, vxw26, bha) 23.57/10.34 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 23.57/10.34 new_primCmpInt(Neg(Succ(vxw2700)), Pos(vxw250)) -> LT 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Double) -> new_esEs19(vxw281, vxw261) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Double) -> new_compare10(vxw270, vxw250) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Float) -> new_lt15(vxw280, vxw260) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Int) -> new_esEs18(vxw302, vxw4002) 23.57/10.34 new_primPlusNat0(Zero, Zero) -> Zero 23.57/10.34 new_compare211(vxw27, vxw25, False, bba, bbb) -> new_compare15(vxw27, vxw25, new_ltEs8(vxw27, vxw25, bba, bbb), bba, bbb) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, bab) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_pePe(True, vxw63) -> True 23.57/10.34 new_esEs9(vxw280, vxw260, app(ty_[], da)) -> new_esEs14(vxw280, vxw260, da) 23.57/10.34 new_compare11(vxw27, vxw25, True, bg) -> LT 23.57/10.34 new_ltEs10(False, False) -> True 23.57/10.34 new_esEs30(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_Ordering) -> new_ltEs15(vxw28, vxw26) 23.57/10.34 new_esEs30(vxw30, vxw400, ty_Bool) -> new_esEs13(vxw30, vxw400) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, cgh), cha), chb), bab) -> new_esEs4(vxw300, vxw4000, cgh, cha, chb) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_Integer) -> new_ltEs12(vxw280, vxw260) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, bab) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_compare23(vxw27, vxw25, True, bg) -> EQ 23.57/10.34 new_lt20(vxw280, vxw260, ty_Ordering) -> new_lt17(vxw280, vxw260) 23.57/10.34 new_ltEs20(vxw28, vxw26, app(app(app(ty_@3, bh), ca), cb)) -> new_ltEs5(vxw28, vxw26, bh, ca, cb) 23.57/10.34 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 23.57/10.34 new_esEs27(vxw301, vxw4001, app(app(ty_Either, ddd), dde)) -> new_esEs5(vxw301, vxw4001, ddd, dde) 23.57/10.34 new_ltEs16(Nothing, Nothing, bbc) -> True 23.57/10.34 new_primCmpInt(Pos(Zero), Neg(Succ(vxw2500))) -> GT 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Double) -> new_esEs19(vxw280, vxw260) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_esEs30(vxw30, vxw400, app(ty_Ratio, hh)) -> new_esEs16(vxw30, vxw400, hh) 23.57/10.34 new_esEs30(vxw30, vxw400, ty_Char) -> new_esEs11(vxw30, vxw400) 23.57/10.34 new_lt6(vxw281, vxw261, app(ty_Maybe, ee)) -> new_lt4(vxw281, vxw261, ee) 23.57/10.34 new_ltEs16(Just(vxw280), Nothing, bbc) -> False 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, bab) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Bool) -> new_lt11(vxw280, vxw260) 23.57/10.34 new_compare210(vxw27, vxw25, True, bfc, bfd, bfe) -> EQ 23.57/10.34 new_primCmpInt(Neg(Succ(vxw2700)), Neg(vxw250)) -> new_primCmpNat0(vxw250, Succ(vxw2700)) 23.57/10.34 new_esEs9(vxw280, vxw260, app(app(ty_@2, dd), de)) -> new_esEs7(vxw280, vxw260, dd, de) 23.57/10.34 new_lt9(vxw27, vxw25, bba, bbb) -> new_esEs8(new_compare28(vxw27, vxw25, bba, bbb), LT) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_@0) -> new_esEs12(vxw27, vxw25) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(app(ty_@2, dbg), dbh)) -> new_esEs7(vxw300, vxw4000, dbg, dbh) 23.57/10.34 new_compare111(vxw27, vxw25, True, bag, bah) -> LT 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 23.57/10.34 new_ltEs19(vxw281, vxw261, app(ty_Maybe, cff)) -> new_ltEs16(vxw281, vxw261, cff) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_Either, gg), gh)) -> new_esEs5(vxw300, vxw4000, gg, gh) 23.57/10.34 new_ltEs15(EQ, LT) -> False 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(app(app(ty_@3, dfb), dfc), dfd)) -> new_esEs4(vxw302, vxw4002, dfb, dfc, dfd) 23.57/10.34 new_primCompAux0(vxw79, GT) -> GT 23.57/10.34 new_esEs25(vxw280, vxw260, ty_@0) -> new_esEs12(vxw280, vxw260) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_compare3([], [], bcf) -> EQ 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Ordering) -> new_ltEs15(vxw281, vxw261) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, app(app(ty_@2, cch), cda)) -> new_ltEs18(vxw280, vxw260, cch, cda) 23.57/10.34 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 23.57/10.34 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 23.57/10.34 new_ltEs19(vxw281, vxw261, app(ty_[], cfd)) -> new_ltEs11(vxw281, vxw261, cfd) 23.57/10.34 new_esEs8(GT, GT) -> True 23.57/10.34 new_ltEs15(GT, LT) -> False 23.57/10.34 new_fsEs(vxw64) -> new_not(new_esEs8(vxw64, GT)) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_Double) -> new_esEs19(vxw27, vxw25) 23.57/10.34 new_compare13(Integer(vxw270), Integer(vxw250)) -> new_primCmpInt(vxw270, vxw250) 23.57/10.34 new_lt6(vxw281, vxw261, app(app(app(ty_@3, df), dg), dh)) -> new_lt8(vxw281, vxw261, df, dg, dh) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Float, cad) -> new_ltEs4(vxw280, vxw260) 23.57/10.34 new_lt14(vxw27, vxw25, bgh) -> new_esEs8(new_compare29(vxw27, vxw25, bgh), LT) 23.57/10.34 new_ltEs11(vxw28, vxw26, bha) -> new_fsEs(new_compare3(vxw28, vxw26, bha)) 23.57/10.34 new_esEs8(EQ, EQ) -> True 23.57/10.34 new_compare6(Float(vxw270, Pos(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.34 new_compare6(Float(vxw270, Neg(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, cgf), bab) -> new_esEs6(vxw300, vxw4000, cgf) 23.57/10.34 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Integer) -> new_esEs15(vxw301, vxw4001) 23.57/10.34 new_primCompAux0(vxw79, LT) -> LT 23.57/10.34 new_compare19(vxw270, vxw250, app(ty_[], bgc)) -> new_compare3(vxw270, vxw250, bgc) 23.57/10.34 new_ltEs20(vxw28, vxw26, app(app(ty_Either, cbg), cad)) -> new_ltEs8(vxw28, vxw26, cbg, cad) 23.57/10.34 new_ltEs20(vxw28, vxw26, app(app(ty_@2, cdc), cdd)) -> new_ltEs18(vxw28, vxw26, cdc, cdd) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Float) -> new_ltEs4(vxw282, vxw262) 23.57/10.34 new_not(True) -> False 23.57/10.34 new_ltEs19(vxw281, vxw261, app(app(app(ty_@3, ceg), ceh), cfa)) -> new_ltEs5(vxw281, vxw261, ceg, ceh, cfa) 23.57/10.34 new_lt21(vxw27, vxw25, app(app(ty_Either, bba), bbb)) -> new_lt9(vxw27, vxw25, bba, bbb) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Integer) -> new_ltEs12(vxw281, vxw261) 23.57/10.34 new_primCmpNat0(Zero, Zero) -> EQ 23.57/10.34 new_ltEs5(@3(vxw280, vxw281, vxw282), @3(vxw260, vxw261, vxw262), bh, ca, cb) -> new_pePe(new_lt5(vxw280, vxw260, bh), new_asAs(new_esEs9(vxw280, vxw260, bh), new_pePe(new_lt6(vxw281, vxw261, ca), new_asAs(new_esEs10(vxw281, vxw261, ca), new_ltEs6(vxw282, vxw262, cb))))) 23.57/10.34 new_esEs14([], [], bac) -> True 23.57/10.34 new_ltEs6(vxw282, vxw262, app(app(ty_@2, ga), gb)) -> new_ltEs18(vxw282, vxw262, ga, gb) 23.57/10.34 new_esEs24(vxw301, vxw4001, ty_Int) -> new_esEs18(vxw301, vxw4001) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Char) -> new_esEs11(vxw302, vxw4002) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, bab) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_esEs30(vxw30, vxw400, ty_@0) -> new_esEs12(vxw30, vxw400) 23.57/10.34 new_esEs30(vxw30, vxw400, ty_Int) -> new_esEs18(vxw30, vxw400) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Bool) -> new_esEs13(vxw302, vxw4002) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, bab) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_ltEs6(vxw282, vxw262, app(ty_Ratio, fg)) -> new_ltEs13(vxw282, vxw262, fg) 23.57/10.34 new_esEs10(vxw281, vxw261, app(ty_Ratio, ed)) -> new_esEs16(vxw281, vxw261, ed) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Ordering) -> new_esEs8(vxw281, vxw261) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Double) -> new_ltEs17(vxw281, vxw261) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(app(ty_@2, cbe), cbf), cad) -> new_ltEs18(vxw280, vxw260, cbe, cbf) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(app(ty_Either, cah), cba), cad) -> new_ltEs8(vxw280, vxw260, cah, cba) 23.57/10.34 new_compare210(vxw27, vxw25, False, bfc, bfd, bfe) -> new_compare110(vxw27, vxw25, new_ltEs5(vxw27, vxw25, bfc, bfd, bfe), bfc, bfd, bfe) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, cga), cgb), bab) -> new_esEs7(vxw300, vxw4000, cga, cgb) 23.57/10.34 new_primEqNat0(Succ(vxw3000), Zero) -> False 23.57/10.34 new_primEqNat0(Zero, Succ(vxw40000)) -> False 23.57/10.34 new_esEs31(vxw31, vxw401, ty_@0) -> new_esEs12(vxw31, vxw401) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_esEs25(vxw280, vxw260, app(ty_Ratio, cec)) -> new_esEs16(vxw280, vxw260, cec) 23.57/10.34 new_esEs23(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_compare8(vxw27, vxw25) -> new_primCmpInt(vxw27, vxw25) 23.57/10.34 new_compare29(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Int) -> new_compare8(new_sr0(vxw270, vxw251), new_sr0(vxw250, vxw271)) 23.57/10.34 new_lt19(vxw27, vxw25, bag, bah) -> new_esEs8(new_compare14(vxw27, vxw25, bag, bah), LT) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Char) -> new_ltEs7(vxw280, vxw260) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_Bool) -> new_esEs13(vxw27, vxw25) 23.57/10.34 new_ltEs15(GT, EQ) -> False 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, bab) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_esEs30(vxw30, vxw400, ty_Double) -> new_esEs19(vxw30, vxw400) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_Int) -> new_ltEs14(vxw280, vxw260) 23.57/10.34 new_lt5(vxw280, vxw260, app(app(ty_Either, cf), cg)) -> new_lt9(vxw280, vxw260, cf, cg) 23.57/10.34 new_lt5(vxw280, vxw260, app(app(app(ty_@3, cc), cd), ce)) -> new_lt8(vxw280, vxw260, cc, cd, ce) 23.57/10.34 new_esEs22(vxw300, vxw4000, app(app(ty_@2, bhb), bhc)) -> new_esEs7(vxw300, vxw4000, bhb, bhc) 23.57/10.34 new_compare10(Double(vxw270, Pos(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.34 new_compare10(Double(vxw270, Neg(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_lt5(vxw280, vxw260, app(ty_Ratio, db)) -> new_lt14(vxw280, vxw260, db) 23.57/10.34 new_esEs31(vxw31, vxw401, ty_Double) -> new_esEs19(vxw31, vxw401) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_compare29(:%(vxw270, vxw271), :%(vxw250, vxw251), ty_Integer) -> new_compare13(new_sr(vxw270, vxw251), new_sr(vxw250, vxw271)) 23.57/10.34 new_compare15(vxw27, vxw25, True, bba, bbb) -> LT 23.57/10.34 new_lt20(vxw280, vxw260, ty_Integer) -> new_lt13(vxw280, vxw260) 23.57/10.34 new_esEs30(vxw30, vxw400, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs4(vxw30, vxw400, bad, bae, baf) 23.57/10.34 new_compare25(vxw27, vxw25, False) -> new_compare17(vxw27, vxw25, new_ltEs15(vxw27, vxw25)) 23.57/10.34 new_primCmpInt(Pos(Succ(vxw2700)), Neg(vxw250)) -> GT 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Char) -> new_esEs11(vxw281, vxw261) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(ty_Ratio, bda)) -> new_esEs16(vxw300, vxw4000, bda) 23.57/10.34 new_lt6(vxw281, vxw261, app(app(ty_@2, ef), eg)) -> new_lt19(vxw281, vxw261, ef, eg) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_@0, cad) -> new_ltEs9(vxw280, vxw260) 23.57/10.34 new_compare16(vxw27, vxw25, False) -> GT 23.57/10.34 new_compare19(vxw270, vxw250, app(ty_Maybe, bge)) -> new_compare7(vxw270, vxw250, bge) 23.57/10.34 new_lt17(vxw27, vxw25) -> new_esEs8(new_compare18(vxw27, vxw25), LT) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Double) -> new_ltEs17(vxw282, vxw262) 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_Integer) -> new_ltEs12(vxw28, vxw26) 23.57/10.34 new_compare212(vxw27, vxw25, False, bag, bah) -> new_compare111(vxw27, vxw25, new_ltEs18(vxw27, vxw25, bag, bah), bag, bah) 23.57/10.34 new_primCmpNat0(Zero, Succ(vxw2500)) -> LT 23.57/10.34 new_compare18(vxw27, vxw25) -> new_compare25(vxw27, vxw25, new_esEs8(vxw27, vxw25)) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Bool, cad) -> new_ltEs10(vxw280, vxw260) 23.57/10.34 new_esEs29(vxw27, vxw25, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs4(vxw27, vxw25, bfc, bfd, bfe) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_Int) -> new_esEs18(vxw27, vxw25) 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_Double) -> new_ltEs17(vxw28, vxw26) 23.57/10.34 new_compare26(Char(vxw270), Char(vxw250)) -> new_primCmpNat0(vxw270, vxw250) 23.57/10.34 new_lt20(vxw280, vxw260, app(app(ty_@2, cee), cef)) -> new_lt19(vxw280, vxw260, cee, cef) 23.57/10.34 new_sr(Integer(vxw2700), Integer(vxw2510)) -> Integer(new_primMulInt(vxw2700, vxw2510)) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Float) -> new_ltEs4(vxw280, vxw260) 23.57/10.34 new_compare110(vxw27, vxw25, False, bfc, bfd, bfe) -> GT 23.57/10.34 new_esEs27(vxw301, vxw4001, app(app(ty_@2, dda), ddb)) -> new_esEs7(vxw301, vxw4001, dda, ddb) 23.57/10.34 new_primCmpNat0(Succ(vxw2700), Zero) -> GT 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Char) -> new_ltEs7(vxw281, vxw261) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(ty_Ratio, bcb)) -> new_ltEs13(vxw280, vxw260, bcb) 23.57/10.34 new_pePe(False, vxw63) -> vxw63 23.57/10.34 new_compare3([], :(vxw250, vxw251), bcf) -> LT 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Ordering, cad) -> new_ltEs15(vxw280, vxw260) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Ordering) -> new_ltEs15(vxw282, vxw262) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_Double) -> new_ltEs17(vxw280, vxw260) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Char) -> new_esEs11(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Int) -> new_esEs18(vxw301, vxw4001) 23.57/10.34 new_esEs11(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(ty_Maybe, cbd), cad) -> new_ltEs16(vxw280, vxw260, cbd) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(ty_Ratio, bec)) -> new_esEs16(vxw301, vxw4001, bec) 23.57/10.34 new_compare17(vxw27, vxw25, True) -> LT 23.57/10.34 new_esEs8(LT, EQ) -> False 23.57/10.34 new_esEs8(EQ, LT) -> False 23.57/10.34 new_esEs22(vxw300, vxw4000, app(ty_Maybe, bhg)) -> new_esEs6(vxw300, vxw4000, bhg) 23.57/10.34 new_esEs27(vxw301, vxw4001, app(ty_[], ddg)) -> new_esEs14(vxw301, vxw4001, ddg) 23.57/10.34 new_lt5(vxw280, vxw260, app(app(ty_@2, dd), de)) -> new_lt19(vxw280, vxw260, dd, de) 23.57/10.34 new_esEs10(vxw281, vxw261, app(app(app(ty_@3, df), dg), dh)) -> new_esEs4(vxw281, vxw261, df, dg, dh) 23.57/10.34 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 23.57/10.34 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(ty_Ratio, cbc), cad) -> new_ltEs13(vxw280, vxw260, cbc) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, hc), hd), he)) -> new_esEs4(vxw300, vxw4000, hc, hd, he) 23.57/10.34 new_ltEs10(True, False) -> False 23.57/10.34 new_compare28(vxw27, vxw25, bba, bbb) -> new_compare211(vxw27, vxw25, new_esEs5(vxw27, vxw25, bba, bbb), bba, bbb) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, app(app(ty_@2, chc), chd)) -> new_esEs7(vxw300, vxw4000, chc, chd) 23.57/10.34 new_ltEs6(vxw282, vxw262, app(app(ty_Either, fc), fd)) -> new_ltEs8(vxw282, vxw262, fc, fd) 23.57/10.34 new_esEs9(vxw280, vxw260, app(ty_Ratio, db)) -> new_esEs16(vxw280, vxw260, db) 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_Float) -> new_ltEs4(vxw28, vxw26) 23.57/10.34 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Bool) -> new_lt11(vxw281, vxw261) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) 23.57/10.34 new_primCmpInt(Neg(Zero), Pos(Succ(vxw2500))) -> LT 23.57/10.34 new_compare17(vxw27, vxw25, False) -> GT 23.57/10.34 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.34 new_esEs16(:%(vxw300, vxw301), :%(vxw4000, vxw4001), hh) -> new_asAs(new_esEs23(vxw300, vxw4000, hh), new_esEs24(vxw301, vxw4001, hh)) 23.57/10.34 new_esEs25(vxw280, vxw260, app(ty_[], ceb)) -> new_esEs14(vxw280, vxw260, ceb) 23.57/10.34 new_lt21(vxw27, vxw25, ty_Bool) -> new_lt11(vxw27, vxw25) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_ltEs8(Right(vxw280), Left(vxw260), cbg, cad) -> False 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Ordering) -> new_esEs8(vxw280, vxw260) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_@0) -> new_esEs12(vxw302, vxw4002) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, app(app(app(ty_@3, dab), dac), dad)) -> new_esEs4(vxw300, vxw4000, dab, dac, dad) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Int) -> new_esEs18(vxw280, vxw260) 23.57/10.34 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 23.57/10.34 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Float) -> new_esEs17(vxw281, vxw261) 23.57/10.34 new_lt21(vxw27, vxw25, ty_Integer) -> new_lt13(vxw27, vxw25) 23.57/10.34 new_esEs31(vxw31, vxw401, app(app(app(ty_@3, dbd), dbe), dbf)) -> new_esEs4(vxw31, vxw401, dbd, dbe, dbf) 23.57/10.34 new_primPlusNat1(Succ(vxw840), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw840, vxw400000))) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Integer) -> new_lt13(vxw281, vxw261) 23.57/10.34 new_lt20(vxw280, vxw260, ty_@0) -> new_lt10(vxw280, vxw260) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, cgd), cge), bab) -> new_esEs5(vxw300, vxw4000, cgd, cge) 23.57/10.34 new_lt21(vxw27, vxw25, ty_Int) -> new_lt16(vxw27, vxw25) 23.57/10.34 new_primPlusNat0(Succ(vxw8400), Zero) -> Succ(vxw8400) 23.57/10.34 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, app(ty_Maybe, chh)) -> new_esEs6(vxw300, vxw4000, chh) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(app(ty_Either, bed), bee)) -> new_esEs5(vxw301, vxw4001, bed, bee) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, app(app(ty_Either, ccc), ccd)) -> new_ltEs8(vxw280, vxw260, ccc, ccd) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(app(app(ty_@3, beh), bfa), bfb)) -> new_esEs4(vxw301, vxw4001, beh, bfa, bfb) 23.57/10.34 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Double) -> new_esEs19(vxw301, vxw4001) 23.57/10.34 new_ltEs19(vxw281, vxw261, app(app(ty_Either, cfb), cfc)) -> new_ltEs8(vxw281, vxw261, cfb, cfc) 23.57/10.34 new_esEs8(LT, LT) -> True 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_@0) -> new_ltEs9(vxw28, vxw26) 23.57/10.34 new_ltEs20(vxw28, vxw26, app(ty_Maybe, bbc)) -> new_ltEs16(vxw28, vxw26, bbc) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_compare23(vxw27, vxw25, False, bg) -> new_compare11(vxw27, vxw25, new_ltEs16(vxw27, vxw25, bg), bg) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Float) -> new_esEs17(vxw280, vxw260) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs4(vxw300, vxw4000, bdf, bdg, bdh) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Int) -> new_lt16(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, app(ty_[], ec)) -> new_lt12(vxw281, vxw261, ec) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Int) -> new_lt16(vxw281, vxw261) 23.57/10.34 new_lt15(vxw27, vxw25) -> new_esEs8(new_compare6(vxw27, vxw25), LT) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Float) -> new_ltEs4(vxw281, vxw261) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Int) -> new_compare8(vxw270, vxw250) 23.57/10.34 new_compare6(Float(vxw270, Neg(vxw2710)), Float(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.34 new_lt5(vxw280, vxw260, ty_@0) -> new_lt10(vxw280, vxw260) 23.57/10.34 new_esEs13(True, True) -> True 23.57/10.34 new_compare19(vxw270, vxw250, ty_@0) -> new_compare12(vxw270, vxw250) 23.57/10.34 new_ltEs4(vxw28, vxw26) -> new_fsEs(new_compare6(vxw28, vxw26)) 23.57/10.34 new_esEs9(vxw280, vxw260, app(ty_Maybe, dc)) -> new_esEs6(vxw280, vxw260, dc) 23.57/10.34 new_compare24(vxw27, vxw25, False) -> new_compare16(vxw27, vxw25, new_ltEs10(vxw27, vxw25)) 23.57/10.34 new_ltEs18(@2(vxw280, vxw281), @2(vxw260, vxw261), cdc, cdd) -> new_pePe(new_lt20(vxw280, vxw260, cdc), new_asAs(new_esEs25(vxw280, vxw260, cdc), new_ltEs19(vxw281, vxw261, cdd))) 23.57/10.34 new_ltEs10(False, True) -> True 23.57/10.34 new_lt21(vxw27, vxw25, app(ty_[], bcf)) -> new_lt12(vxw27, vxw25, bcf) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Integer) -> new_compare13(vxw270, vxw250) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(ty_Maybe, bcc)) -> new_ltEs16(vxw280, vxw260, bcc) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Char, cad) -> new_ltEs7(vxw280, vxw260) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_@0) -> new_ltEs9(vxw280, vxw260) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Integer, cad) -> new_ltEs12(vxw280, vxw260) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Bool) -> new_esEs13(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, ty_@0) -> new_lt10(vxw281, vxw261) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(ty_[], dce)) -> new_esEs14(vxw300, vxw4000, dce) 23.57/10.34 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Succ(vxw2500))) -> new_primCmpNat0(Zero, Succ(vxw2500)) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Ratio, gf)) -> new_esEs16(vxw300, vxw4000, gf) 23.57/10.34 new_esEs25(vxw280, vxw260, app(app(ty_@2, cee), cef)) -> new_esEs7(vxw280, vxw260, cee, cef) 23.57/10.34 new_esEs9(vxw280, vxw260, app(app(ty_Either, cf), cg)) -> new_esEs5(vxw280, vxw260, cf, cg) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Integer) -> new_esEs15(vxw302, vxw4002) 23.57/10.34 new_lt20(vxw280, vxw260, app(ty_[], ceb)) -> new_lt12(vxw280, vxw260, ceb) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_Maybe, ha)) -> new_esEs6(vxw300, vxw4000, ha) 23.57/10.34 new_esEs6(Nothing, Just(vxw4000), gc) -> False 23.57/10.34 new_esEs6(Just(vxw300), Nothing, gc) -> False 23.57/10.34 new_lt21(vxw27, vxw25, ty_@0) -> new_lt10(vxw27, vxw25) 23.57/10.34 new_ltEs15(EQ, GT) -> True 23.57/10.34 new_esEs6(Nothing, Nothing, gc) -> True 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_@0) -> new_ltEs9(vxw282, vxw262) 23.57/10.34 new_ltEs6(vxw282, vxw262, app(ty_Maybe, fh)) -> new_ltEs16(vxw282, vxw262, fh) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, app(ty_Ratio, che)) -> new_esEs16(vxw300, vxw4000, che) 23.57/10.34 new_esEs22(vxw300, vxw4000, app(app(ty_Either, bhe), bhf)) -> new_esEs5(vxw300, vxw4000, bhe, bhf) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Int) -> new_lt16(vxw280, vxw260) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_lt5(vxw280, vxw260, app(ty_[], da)) -> new_lt12(vxw280, vxw260, da) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Double) -> new_esEs19(vxw280, vxw260) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Bool) -> new_lt11(vxw280, vxw260) 23.57/10.34 new_esEs22(vxw300, vxw4000, app(ty_Ratio, bhd)) -> new_esEs16(vxw300, vxw4000, bhd) 23.57/10.34 new_compare212(vxw27, vxw25, True, bag, bah) -> EQ 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_@0) -> new_esEs12(vxw301, vxw4001) 23.57/10.34 new_compare11(vxw27, vxw25, False, bg) -> GT 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Double) -> new_ltEs17(vxw280, vxw260) 23.57/10.34 new_compare12(@0, @0) -> EQ 23.57/10.34 new_compare16(vxw27, vxw25, True) -> LT 23.57/10.34 new_esEs26(vxw300, vxw4000, app(app(app(ty_@3, dcf), dcg), dch)) -> new_esEs4(vxw300, vxw4000, dcf, dcg, dch) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, app(app(app(ty_@3, cbh), cca), ccb)) -> new_ltEs5(vxw280, vxw260, cbh, cca, ccb) 23.57/10.34 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.34 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(ty_[], dfa)) -> new_esEs14(vxw302, vxw4002, dfa) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Int) -> new_esEs18(vxw280, vxw260) 23.57/10.34 new_esEs31(vxw31, vxw401, app(ty_Maybe, dbb)) -> new_esEs6(vxw31, vxw401, dbb) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Double) -> new_esEs19(vxw301, vxw4001) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(app(app(ty_@3, bbd), bbe), bbf)) -> new_ltEs5(vxw280, vxw260, bbd, bbe, bbf) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_@0) -> new_ltEs9(vxw281, vxw261) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(app(ty_@2, bcd), bce)) -> new_ltEs18(vxw280, vxw260, bcd, bce) 23.57/10.34 new_esEs10(vxw281, vxw261, app(app(ty_Either, ea), eb)) -> new_esEs5(vxw281, vxw261, ea, eb) 23.57/10.34 new_ltEs15(LT, GT) -> True 23.57/10.34 new_esEs13(False, False) -> True 23.57/10.34 new_ltEs9(vxw28, vxw26) -> new_fsEs(new_compare12(vxw28, vxw26)) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_Integer) -> new_esEs15(vxw27, vxw25) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Float) -> new_lt15(vxw280, vxw260) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(app(ty_Either, bbg), bbh)) -> new_ltEs8(vxw280, vxw260, bbg, bbh) 23.57/10.34 new_esEs30(vxw30, vxw400, ty_Integer) -> new_esEs15(vxw30, vxw400) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_esEs15(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 23.57/10.34 new_esEs18(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 23.57/10.34 new_asAs(True, vxw56) -> vxw56 23.57/10.34 new_esEs21(vxw301, vxw4001, app(ty_Maybe, bef)) -> new_esEs6(vxw301, vxw4001, bef) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_Float) -> new_ltEs4(vxw280, vxw260) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_Float) -> new_esEs17(vxw27, vxw25) 23.57/10.34 new_esEs9(vxw280, vxw260, app(app(app(ty_@3, cc), cd), ce)) -> new_esEs4(vxw280, vxw260, cc, cd, ce) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(ty_[], cbb), cad) -> new_ltEs11(vxw280, vxw260, cbb) 23.57/10.34 new_esEs10(vxw281, vxw261, app(ty_Maybe, ee)) -> new_esEs6(vxw281, vxw261, ee) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, bab) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Bool) -> new_compare9(vxw270, vxw250) 23.57/10.34 new_lt11(vxw27, vxw25) -> new_esEs8(new_compare9(vxw27, vxw25), LT) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Integer) -> new_esEs15(vxw281, vxw261) 23.57/10.34 new_esEs24(vxw301, vxw4001, ty_Integer) -> new_esEs15(vxw301, vxw4001) 23.57/10.34 new_compare111(vxw27, vxw25, False, bag, bah) -> GT 23.57/10.34 new_esEs22(vxw300, vxw4000, app(app(app(ty_@3, caa), cab), cac)) -> new_esEs4(vxw300, vxw4000, caa, cab, cac) 23.57/10.34 new_compare10(Double(vxw270, Neg(vxw2710)), Double(vxw250, Neg(vxw2510))) -> new_compare8(new_sr0(vxw270, Neg(vxw2510)), new_sr0(Neg(vxw2710), vxw250)) 23.57/10.34 new_esEs30(vxw30, vxw400, app(app(ty_@2, hf), hg)) -> new_esEs7(vxw30, vxw400, hf, hg) 23.57/10.34 new_primCmpInt(Pos(Succ(vxw2700)), Pos(vxw250)) -> new_primCmpNat0(Succ(vxw2700), vxw250) 23.57/10.34 new_esEs29(vxw27, vxw25, app(app(ty_Either, bba), bbb)) -> new_esEs5(vxw27, vxw25, bba, bbb) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, app(ty_[], cce)) -> new_ltEs11(vxw280, vxw260, cce) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Char) -> new_lt7(vxw280, vxw260) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, bab) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_lt21(vxw27, vxw25, ty_Double) -> new_lt18(vxw27, vxw25) 23.57/10.34 new_esEs30(vxw30, vxw400, ty_Float) -> new_esEs17(vxw30, vxw400) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Ordering) -> new_lt17(vxw280, vxw260) 23.57/10.34 new_compare6(Float(vxw270, Pos(vxw2710)), Float(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Bool) -> new_esEs13(vxw301, vxw4001) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) 23.57/10.34 new_primMulNat0(Zero, Zero) -> Zero 23.57/10.34 new_ltEs10(True, True) -> True 23.57/10.34 new_esEs27(vxw301, vxw4001, app(ty_Ratio, ddc)) -> new_esEs16(vxw301, vxw4001, ddc) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Char) -> new_esEs11(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_@0) -> new_ltEs9(vxw280, vxw260) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Ordering) -> new_compare18(vxw270, vxw250) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_esEs17(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs18(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(ty_[], hb)) -> new_esEs14(vxw300, vxw4000, hb) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(app(ty_Either, bdb), bdc)) -> new_esEs5(vxw300, vxw4000, bdb, bdc) 23.57/10.34 new_lt20(vxw280, vxw260, app(app(ty_Either, cdh), cea)) -> new_lt9(vxw280, vxw260, cdh, cea) 23.57/10.34 new_ltEs19(vxw281, vxw261, app(ty_Ratio, cfe)) -> new_ltEs13(vxw281, vxw261, cfe) 23.57/10.34 new_lt20(vxw280, vxw260, app(app(app(ty_@3, cde), cdf), cdg)) -> new_lt8(vxw280, vxw260, cde, cdf, cdg) 23.57/10.34 new_compare3(:(vxw270, vxw271), :(vxw250, vxw251), bcf) -> new_primCompAux1(vxw270, vxw250, new_compare3(vxw271, vxw251, bcf), bcf) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, app(app(ty_Either, chf), chg)) -> new_esEs5(vxw300, vxw4000, chf, chg) 23.57/10.34 new_lt21(vxw27, vxw25, app(ty_Maybe, bg)) -> new_lt4(vxw27, vxw25, bg) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Integer) -> new_lt13(vxw280, vxw260) 23.57/10.34 new_ltEs15(EQ, EQ) -> True 23.57/10.34 new_ltEs13(vxw28, vxw26, cdb) -> new_fsEs(new_compare29(vxw28, vxw26, cdb)) 23.57/10.34 new_esEs30(vxw30, vxw400, app(ty_[], bac)) -> new_esEs14(vxw30, vxw400, bac) 23.57/10.34 new_lt5(vxw280, vxw260, ty_Double) -> new_lt18(vxw280, vxw260) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(ty_Maybe, dcd)) -> new_esEs6(vxw300, vxw4000, dcd) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Ordering) -> new_ltEs15(vxw280, vxw260) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Char) -> new_esEs11(vxw301, vxw4001) 23.57/10.34 new_esEs31(vxw31, vxw401, ty_Integer) -> new_esEs15(vxw31, vxw401) 23.57/10.34 new_primCompAux0(vxw79, EQ) -> vxw79 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Integer) -> new_ltEs12(vxw282, vxw262) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), app(app(ty_@2, gd), ge)) -> new_esEs7(vxw300, vxw4000, gd, ge) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_Bool) -> new_ltEs10(vxw280, vxw260) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Ordering) -> new_lt17(vxw281, vxw261) 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_Char) -> new_ltEs7(vxw28, vxw26) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Char) -> new_ltEs7(vxw282, vxw262) 23.57/10.34 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 23.57/10.34 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 23.57/10.34 new_esEs25(vxw280, vxw260, app(ty_Maybe, ced)) -> new_esEs6(vxw280, vxw260, ced) 23.57/10.34 new_ltEs15(LT, EQ) -> True 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_ltEs20(vxw28, vxw26, app(ty_Ratio, cdb)) -> new_ltEs13(vxw28, vxw26, cdb) 23.57/10.34 new_compare19(vxw270, vxw250, app(ty_Ratio, bgd)) -> new_compare29(vxw270, vxw250, bgd) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], cgg), bab) -> new_esEs14(vxw300, vxw4000, cgg) 23.57/10.34 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 23.57/10.34 new_esEs13(False, True) -> False 23.57/10.34 new_esEs13(True, False) -> False 23.57/10.34 new_compare27(vxw27, vxw25, bfc, bfd, bfe) -> new_compare210(vxw27, vxw25, new_esEs4(vxw27, vxw25, bfc, bfd, bfe), bfc, bfd, bfe) 23.57/10.34 new_lt6(vxw281, vxw261, app(app(ty_Either, ea), eb)) -> new_lt9(vxw281, vxw261, ea, eb) 23.57/10.34 new_esEs25(vxw280, vxw260, ty_Float) -> new_esEs17(vxw280, vxw260) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_compare24(vxw27, vxw25, True) -> EQ 23.57/10.34 new_lt16(vxw27, vxw25) -> new_esEs8(new_compare8(vxw27, vxw25), LT) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(app(ty_@2, dec), ded)) -> new_esEs7(vxw302, vxw4002, dec, ded) 23.57/10.34 new_compare7(vxw27, vxw25, bg) -> new_compare23(vxw27, vxw25, new_esEs6(vxw27, vxw25, bg), bg) 23.57/10.34 new_esEs25(vxw280, vxw260, app(app(ty_Either, cdh), cea)) -> new_esEs5(vxw280, vxw260, cdh, cea) 23.57/10.34 new_compare10(Double(vxw270, Pos(vxw2710)), Double(vxw250, Pos(vxw2510))) -> new_compare8(new_sr0(vxw270, Pos(vxw2510)), new_sr0(Pos(vxw2710), vxw250)) 23.57/10.34 new_ltEs16(Nothing, Just(vxw260), bbc) -> True 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, app(ty_[], daa)) -> new_esEs14(vxw300, vxw4000, daa) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(ty_Maybe, bdd)) -> new_esEs6(vxw300, vxw4000, bdd) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Char) -> new_esEs11(vxw301, vxw4001) 23.57/10.34 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 23.57/10.34 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, app(app(ty_@2, bgf), bgg)) -> new_compare14(vxw270, vxw250, bgf, bgg) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(ty_Ratio, dca)) -> new_esEs16(vxw300, vxw4000, dca) 23.57/10.34 new_lt20(vxw280, vxw260, app(ty_Ratio, cec)) -> new_lt14(vxw280, vxw260, cec) 23.57/10.34 new_primCmpInt(Neg(Zero), Neg(Succ(vxw2500))) -> new_primCmpNat0(Succ(vxw2500), Zero) 23.57/10.34 new_compare19(vxw270, vxw250, app(app(ty_Either, bga), bgb)) -> new_compare28(vxw270, vxw250, bga, bgb) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Float) -> new_esEs17(vxw300, vxw4000) 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Int, cad) -> new_ltEs14(vxw280, vxw260) 23.57/10.34 new_esEs31(vxw31, vxw401, app(app(ty_Either, dah), dba)) -> new_esEs5(vxw31, vxw401, dah, dba) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_compare211(vxw27, vxw25, True, bba, bbb) -> EQ 23.57/10.34 new_lt21(vxw27, vxw25, app(app(ty_@2, bag), bah)) -> new_lt19(vxw27, vxw25, bag, bah) 23.57/10.34 new_ltEs15(GT, GT) -> True 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_esEs14(:(vxw300, vxw301), [], bac) -> False 23.57/10.34 new_esEs14([], :(vxw4000, vxw4001), bac) -> False 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), app(app(app(ty_@3, cae), caf), cag), cad) -> new_ltEs5(vxw280, vxw260, cae, caf, cag) 23.57/10.34 new_primCompAux1(vxw270, vxw250, vxw72, bcf) -> new_primCompAux0(vxw72, new_compare19(vxw270, vxw250, bcf)) 23.57/10.34 new_lt21(vxw27, vxw25, ty_Ordering) -> new_lt17(vxw27, vxw25) 23.57/10.34 new_esEs26(vxw300, vxw4000, app(app(ty_Either, dcb), dcc)) -> new_esEs5(vxw300, vxw4000, dcb, dcc) 23.57/10.34 new_esEs26(vxw300, vxw4000, ty_Double) -> new_esEs19(vxw300, vxw4000) 23.57/10.34 new_esEs30(vxw30, vxw400, app(ty_Maybe, gc)) -> new_esEs6(vxw30, vxw400, gc) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Integer) -> new_esEs15(vxw301, vxw4001) 23.57/10.34 new_esEs29(vxw27, vxw25, app(ty_[], bcf)) -> new_esEs14(vxw27, vxw25, bcf) 23.57/10.34 new_compare110(vxw27, vxw25, True, bfc, bfd, bfe) -> LT 23.57/10.34 new_esEs31(vxw31, vxw401, ty_Char) -> new_esEs11(vxw31, vxw401) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, app(ty_Maybe, ccg)) -> new_ltEs16(vxw280, vxw260, ccg) 23.57/10.34 new_lt8(vxw27, vxw25, bfc, bfd, bfe) -> new_esEs8(new_compare27(vxw27, vxw25, bfc, bfd, bfe), LT) 23.57/10.34 new_esEs19(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs18(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, app(ty_Ratio, ccf)) -> new_ltEs13(vxw280, vxw260, ccf) 23.57/10.34 new_lt20(vxw280, vxw260, ty_Double) -> new_lt18(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, app(app(app(ty_@3, ddh), dea), deb)) -> new_esEs4(vxw301, vxw4001, ddh, dea, deb) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Integer) -> new_esEs15(vxw280, vxw260) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Integer) -> new_ltEs12(vxw280, vxw260) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_esEs31(vxw31, vxw401, ty_Float) -> new_esEs17(vxw31, vxw401) 23.57/10.34 new_ltEs6(vxw282, vxw262, app(ty_[], ff)) -> new_ltEs11(vxw282, vxw262, ff) 23.57/10.34 new_not(False) -> True 23.57/10.34 new_ltEs8(Left(vxw280), Right(vxw260), cbg, cad) -> True 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_Ordering) -> new_ltEs15(vxw280, vxw260) 23.57/10.34 new_esEs31(vxw31, vxw401, ty_Bool) -> new_esEs13(vxw31, vxw401) 23.57/10.34 new_ltEs17(vxw28, vxw26) -> new_fsEs(new_compare10(vxw28, vxw26)) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Bool) -> new_ltEs10(vxw280, vxw260) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Bool) -> new_esEs13(vxw301, vxw4001) 23.57/10.34 new_esEs31(vxw31, vxw401, ty_Ordering) -> new_esEs8(vxw31, vxw401) 23.57/10.34 new_compare9(vxw27, vxw25) -> new_compare24(vxw27, vxw25, new_esEs13(vxw27, vxw25)) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Int) -> new_esEs18(vxw281, vxw261) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Double) -> new_esEs19(vxw302, vxw4002) 23.57/10.34 new_esEs8(LT, GT) -> False 23.57/10.34 new_esEs8(GT, LT) -> False 23.57/10.34 new_esEs10(vxw281, vxw261, app(ty_[], ec)) -> new_esEs14(vxw281, vxw261, ec) 23.57/10.34 new_primPlusNat0(Succ(vxw8400), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw8400, vxw4000000))) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(ty_[], bde)) -> new_esEs14(vxw300, vxw4000, bde) 23.57/10.34 new_esEs5(Left(vxw300), Right(vxw4000), baa, bab) -> False 23.57/10.34 new_esEs5(Right(vxw300), Left(vxw4000), baa, bab) -> False 23.57/10.34 new_ltEs6(vxw282, vxw262, app(app(app(ty_@3, eh), fa), fb)) -> new_ltEs5(vxw282, vxw262, eh, fa, fb) 23.57/10.34 new_lt4(vxw27, vxw25, bg) -> new_esEs8(new_compare7(vxw27, vxw25, bg), LT) 23.57/10.34 new_compare25(vxw27, vxw25, True) -> EQ 23.57/10.34 new_esEs31(vxw31, vxw401, app(ty_Ratio, dag)) -> new_esEs16(vxw31, vxw401, dag) 23.57/10.34 new_esEs29(vxw27, vxw25, app(app(ty_@2, bag), bah)) -> new_esEs7(vxw27, vxw25, bag, bah) 23.57/10.34 new_ltEs7(vxw28, vxw26) -> new_fsEs(new_compare26(vxw28, vxw26)) 23.57/10.34 new_lt5(vxw280, vxw260, app(ty_Maybe, dc)) -> new_lt4(vxw280, vxw260, dc) 23.57/10.34 new_esEs30(vxw30, vxw400, app(app(ty_Either, baa), bab)) -> new_esEs5(vxw30, vxw400, baa, bab) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_Bool) -> new_esEs13(vxw280, vxw260) 23.57/10.34 new_lt21(vxw27, vxw25, app(ty_Ratio, bgh)) -> new_lt14(vxw27, vxw25, bgh) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Float) -> new_lt15(vxw281, vxw261) 23.57/10.34 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 23.57/10.34 new_ltEs19(vxw281, vxw261, app(app(ty_@2, cfg), cfh)) -> new_ltEs18(vxw281, vxw261, cfg, cfh) 23.57/10.34 new_esEs29(vxw27, vxw25, app(ty_Maybe, bg)) -> new_esEs6(vxw27, vxw25, bg) 23.57/10.34 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 23.57/10.34 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 23.57/10.34 new_esEs25(vxw280, vxw260, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs4(vxw280, vxw260, cde, cdf, cdg) 23.57/10.34 new_lt6(vxw281, vxw261, app(ty_Ratio, ed)) -> new_lt14(vxw281, vxw261, ed) 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_Int) -> new_esEs18(vxw300, vxw4000) 23.57/10.34 new_lt13(vxw27, vxw25) -> new_esEs8(new_compare13(vxw27, vxw25), LT) 23.57/10.34 new_lt21(vxw27, vxw25, ty_Float) -> new_lt15(vxw27, vxw25) 23.57/10.34 new_esEs10(vxw281, vxw261, app(app(ty_@2, ef), eg)) -> new_esEs7(vxw281, vxw261, ef, eg) 23.57/10.34 new_compare19(vxw270, vxw250, app(app(app(ty_@3, bff), bfg), bfh)) -> new_compare27(vxw270, vxw250, bff, bfg, bfh) 23.57/10.34 new_esEs22(vxw300, vxw4000, app(ty_[], bhh)) -> new_esEs14(vxw300, vxw4000, bhh) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_Bool) -> new_esEs13(vxw281, vxw261) 23.57/10.34 new_ltEs15(LT, LT) -> True 23.57/10.34 new_lt21(vxw27, vxw25, app(app(app(ty_@3, bfc), bfd), bfe)) -> new_lt8(vxw27, vxw25, bfc, bfd, bfe) 23.57/10.34 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, cgc), bab) -> new_esEs16(vxw300, vxw4000, cgc) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(ty_Maybe, deh)) -> new_esEs6(vxw302, vxw4002, deh) 23.57/10.34 new_esEs31(vxw31, vxw401, ty_Int) -> new_esEs18(vxw31, vxw401) 23.57/10.34 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 23.57/10.34 new_esEs22(vxw300, vxw4000, ty_@0) -> new_esEs12(vxw300, vxw4000) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Float) -> new_compare6(vxw270, vxw250) 23.57/10.34 new_esEs31(vxw31, vxw401, app(ty_[], dbc)) -> new_esEs14(vxw31, vxw401, dbc) 23.57/10.34 new_lt20(vxw280, vxw260, app(ty_Maybe, ced)) -> new_lt4(vxw280, vxw260, ced) 23.57/10.34 new_esEs12(@0, @0) -> True 23.57/10.34 new_lt5(vxw280, vxw260, ty_Char) -> new_lt7(vxw280, vxw260) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_primCmpNat0(Succ(vxw2700), Succ(vxw2500)) -> new_primCmpNat0(vxw2700, vxw2500) 23.57/10.34 new_esEs27(vxw301, vxw4001, ty_Float) -> new_esEs17(vxw301, vxw4001) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Double) -> new_lt18(vxw281, vxw261) 23.57/10.34 new_lt21(vxw27, vxw25, ty_Char) -> new_lt7(vxw27, vxw25) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(app(ty_@2, bea), beb)) -> new_esEs7(vxw301, vxw4001, bea, beb) 23.57/10.34 new_lt12(vxw27, vxw25, bcf) -> new_esEs8(new_compare3(vxw27, vxw25, bcf), LT) 23.57/10.34 new_ltEs8(Right(vxw280), Right(vxw260), cbg, ty_Char) -> new_ltEs7(vxw280, vxw260) 23.57/10.34 new_esEs27(vxw301, vxw4001, app(ty_Maybe, ddf)) -> new_esEs6(vxw301, vxw4001, ddf) 23.57/10.34 new_esEs28(vxw302, vxw4002, app(ty_Ratio, dee)) -> new_esEs16(vxw302, vxw4002, dee) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_@0) -> new_esEs12(vxw301, vxw4001) 23.57/10.34 new_compare3(:(vxw270, vxw271), [], bcf) -> GT 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_Char) -> new_esEs11(vxw27, vxw25) 23.57/10.34 new_compare15(vxw27, vxw25, False, bba, bbb) -> GT 23.57/10.34 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 23.57/10.34 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 23.57/10.34 new_ltEs12(vxw28, vxw26) -> new_fsEs(new_compare13(vxw28, vxw26)) 23.57/10.34 new_esEs4(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), bad, bae, baf) -> new_asAs(new_esEs26(vxw300, vxw4000, bad), new_asAs(new_esEs27(vxw301, vxw4001, bae), new_esEs28(vxw302, vxw4002, baf))) 23.57/10.34 new_esEs29(vxw27, vxw25, app(ty_Ratio, bgh)) -> new_esEs16(vxw27, vxw25, bgh) 23.57/10.34 new_esEs23(vxw300, vxw4000, ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_primEqNat0(Zero, Zero) -> True 23.57/10.34 new_esEs28(vxw302, vxw4002, app(app(ty_Either, def), deg)) -> new_esEs5(vxw302, vxw4002, def, deg) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), ty_Int) -> new_ltEs14(vxw280, vxw260) 23.57/10.34 new_esEs7(@2(vxw300, vxw301), @2(vxw4000, vxw4001), hf, hg) -> new_asAs(new_esEs20(vxw300, vxw4000, hf), new_esEs21(vxw301, vxw4001, hg)) 23.57/10.34 new_esEs21(vxw301, vxw4001, ty_Int) -> new_esEs18(vxw301, vxw4001) 23.57/10.34 new_esEs20(vxw300, vxw4000, ty_Bool) -> new_esEs13(vxw300, vxw4000) 23.57/10.34 new_ltEs14(vxw28, vxw26) -> new_fsEs(new_compare8(vxw28, vxw26)) 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Bool) -> new_ltEs10(vxw281, vxw261) 23.57/10.34 new_ltEs16(Just(vxw280), Just(vxw260), app(ty_[], bca)) -> new_ltEs11(vxw280, vxw260, bca) 23.57/10.34 new_compare19(vxw270, vxw250, ty_Char) -> new_compare26(vxw270, vxw250) 23.57/10.34 new_esEs29(vxw27, vxw25, ty_Ordering) -> new_esEs8(vxw27, vxw25) 23.57/10.34 new_esEs31(vxw31, vxw401, app(app(ty_@2, dae), daf)) -> new_esEs7(vxw31, vxw401, dae, daf) 23.57/10.34 new_esEs9(vxw280, vxw260, ty_@0) -> new_esEs12(vxw280, vxw260) 23.57/10.34 new_esEs21(vxw301, vxw4001, app(ty_[], beg)) -> new_esEs14(vxw301, vxw4001, beg) 23.57/10.34 new_asAs(False, vxw56) -> False 23.57/10.34 new_ltEs19(vxw281, vxw261, ty_Int) -> new_ltEs14(vxw281, vxw261) 23.57/10.34 new_compare14(vxw27, vxw25, bag, bah) -> new_compare212(vxw27, vxw25, new_esEs7(vxw27, vxw25, bag, bah), bag, bah) 23.57/10.34 new_esEs5(Right(vxw300), Right(vxw4000), baa, ty_Char) -> new_esEs11(vxw300, vxw4000) 23.57/10.34 new_lt18(vxw27, vxw25) -> new_esEs8(new_compare10(vxw27, vxw25), LT) 23.57/10.34 new_lt7(vxw27, vxw25) -> new_esEs8(new_compare26(vxw27, vxw25), LT) 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_Bool) -> new_ltEs10(vxw28, vxw26) 23.57/10.34 new_lt10(vxw27, vxw25) -> new_esEs8(new_compare12(vxw27, vxw25), LT) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Int) -> new_ltEs14(vxw282, vxw262) 23.57/10.34 new_esEs8(EQ, GT) -> False 23.57/10.34 new_esEs8(GT, EQ) -> False 23.57/10.34 new_ltEs8(Left(vxw280), Left(vxw260), ty_Double, cad) -> new_ltEs17(vxw280, vxw260) 23.57/10.34 new_esEs14(:(vxw300, vxw301), :(vxw4000, vxw4001), bac) -> new_asAs(new_esEs22(vxw300, vxw4000, bac), new_esEs14(vxw301, vxw4001, bac)) 23.57/10.34 new_esEs28(vxw302, vxw4002, ty_Float) -> new_esEs17(vxw302, vxw4002) 23.57/10.34 new_lt6(vxw281, vxw261, ty_Char) -> new_lt7(vxw281, vxw261) 23.57/10.34 new_esEs6(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs15(vxw300, vxw4000) 23.57/10.34 new_ltEs20(vxw28, vxw26, ty_Int) -> new_ltEs14(vxw28, vxw26) 23.57/10.34 new_esEs10(vxw281, vxw261, ty_@0) -> new_esEs12(vxw281, vxw261) 23.57/10.34 new_ltEs6(vxw282, vxw262, ty_Bool) -> new_ltEs10(vxw282, vxw262) 23.57/10.34 new_esEs20(vxw300, vxw4000, app(app(ty_@2, bcg), bch)) -> new_esEs7(vxw300, vxw4000, bcg, bch) 23.57/10.34 23.57/10.34 The set Q consists of the following terms: 23.57/10.34 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 23.57/10.34 new_esEs8(EQ, EQ) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Float, x2) 23.57/10.34 new_esEs23(x0, x1, ty_Int) 23.57/10.34 new_lt20(x0, x1, ty_Char) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 23.57/10.34 new_esEs31(x0, x1, ty_@0) 23.57/10.34 new_esEs14([], :(x0, x1), x2) 23.57/10.34 new_compare28(x0, x1, x2, x3) 23.57/10.34 new_ltEs14(x0, x1) 23.57/10.34 new_ltEs6(x0, x1, ty_Bool) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(ty_[], x3)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs29(x0, x1, ty_@0) 23.57/10.34 new_compare16(x0, x1, True) 23.57/10.34 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Char) 23.57/10.34 new_esEs26(x0, x1, ty_Float) 23.57/10.34 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs9(x0, x1, ty_Double) 23.57/10.34 new_lt5(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_ltEs19(x0, x1, ty_Char) 23.57/10.34 new_ltEs13(x0, x1, x2) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Int) 23.57/10.34 new_ltEs12(x0, x1) 23.57/10.34 new_esEs10(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs31(x0, x1, ty_Bool) 23.57/10.34 new_esEs22(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 23.57/10.34 new_ltEs6(x0, x1, ty_Integer) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 23.57/10.34 new_compare19(x0, x1, ty_Float) 23.57/10.34 new_ltEs19(x0, x1, ty_Ordering) 23.57/10.34 new_esEs25(x0, x1, ty_Char) 23.57/10.34 new_primEqInt(Pos(Zero), Pos(Zero)) 23.57/10.34 new_esEs6(Nothing, Just(x0), x1) 23.57/10.34 new_esEs6(Just(x0), Nothing, x1) 23.57/10.34 new_primPlusNat0(Succ(x0), Succ(x1)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 23.57/10.34 new_esEs22(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_lt9(x0, x1, x2, x3) 23.57/10.34 new_esEs30(x0, x1, ty_Int) 23.57/10.34 new_lt6(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt5(x0, x1, app(ty_[], x2)) 23.57/10.34 new_ltEs16(Just(x0), Nothing, x1) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Double) 23.57/10.34 new_primPlusNat0(Zero, Succ(x0)) 23.57/10.34 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 23.57/10.34 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 23.57/10.34 new_compare24(x0, x1, False) 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 23.57/10.34 new_esEs10(x0, x1, ty_Bool) 23.57/10.34 new_esEs22(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs6(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs22(x0, x1, ty_Float) 23.57/10.34 new_ltEs19(x0, x1, ty_Int) 23.57/10.34 new_esEs31(x0, x1, ty_Char) 23.57/10.34 new_primEqInt(Neg(Zero), Neg(Zero)) 23.57/10.34 new_compare19(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs29(x0, x1, ty_Bool) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Char) 23.57/10.34 new_lt5(x0, x1, ty_Float) 23.57/10.34 new_pePe(False, x0) 23.57/10.34 new_esEs30(x0, x1, ty_Char) 23.57/10.34 new_lt6(x0, x1, ty_Float) 23.57/10.34 new_compare19(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 23.57/10.34 new_ltEs6(x0, x1, ty_@0) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 23.57/10.34 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs30(x0, x1, ty_Ordering) 23.57/10.34 new_compare19(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs20(x0, x1, ty_Int) 23.57/10.34 new_esEs30(x0, x1, ty_Bool) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 23.57/10.34 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_ltEs6(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_lt20(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Int) 23.57/10.34 new_esEs25(x0, x1, ty_Bool) 23.57/10.34 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Bool) 23.57/10.34 new_compare13(Integer(x0), Integer(x1)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Int) 23.57/10.34 new_ltEs6(x0, x1, ty_Char) 23.57/10.34 new_esEs21(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 23.57/10.34 new_lt6(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs10(x0, x1, ty_Double) 23.57/10.34 new_compare8(x0, x1) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_@0) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_@0) 23.57/10.34 new_ltEs10(False, False) 23.57/10.34 new_lt5(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs25(x0, x1, ty_Ordering) 23.57/10.34 new_esEs24(x0, x1, ty_Integer) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Ordering) 23.57/10.34 new_esEs30(x0, x1, ty_Integer) 23.57/10.34 new_esEs10(x0, x1, ty_@0) 23.57/10.34 new_esEs10(x0, x1, ty_Char) 23.57/10.34 new_compare19(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_primEqInt(Pos(Zero), Neg(Zero)) 23.57/10.34 new_primEqInt(Neg(Zero), Pos(Zero)) 23.57/10.34 new_esEs28(x0, x1, ty_Float) 23.57/10.34 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_lt6(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 23.57/10.34 new_compare19(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt21(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 23.57/10.34 new_ltEs4(x0, x1) 23.57/10.34 new_esEs25(x0, x1, app(ty_[], x2)) 23.57/10.34 new_esEs25(x0, x1, ty_Integer) 23.57/10.34 new_compare3([], [], x0) 23.57/10.34 new_lt5(x0, x1, ty_Bool) 23.57/10.34 new_esEs29(x0, x1, ty_Ordering) 23.57/10.34 new_esEs28(x0, x1, app(ty_[], x2)) 23.57/10.34 new_ltEs20(x0, x1, ty_Char) 23.57/10.34 new_lt15(x0, x1) 23.57/10.34 new_esEs29(x0, x1, ty_Integer) 23.57/10.34 new_compare110(x0, x1, True, x2, x3, x4) 23.57/10.34 new_primEqNat0(Succ(x0), Zero) 23.57/10.34 new_esEs10(x0, x1, ty_Int) 23.57/10.34 new_lt20(x0, x1, ty_Ordering) 23.57/10.34 new_ltEs20(x0, x1, ty_Double) 23.57/10.34 new_esEs20(x0, x1, ty_Float) 23.57/10.34 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 23.57/10.34 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 23.57/10.34 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs9(x0, x1, ty_Ordering) 23.57/10.34 new_ltEs6(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Char) 23.57/10.34 new_lt5(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_compare210(x0, x1, True, x2, x3, x4) 23.57/10.34 new_ltEs15(EQ, EQ) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 23.57/10.34 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Double) 23.57/10.34 new_compare211(x0, x1, True, x2, x3) 23.57/10.34 new_esEs22(x0, x1, ty_Integer) 23.57/10.34 new_esEs29(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs29(x0, x1, ty_Double) 23.57/10.34 new_esEs9(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 23.57/10.34 new_primCompAux0(x0, GT) 23.57/10.34 new_ltEs19(x0, x1, ty_Integer) 23.57/10.34 new_ltEs6(x0, x1, ty_Float) 23.57/10.34 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_lt18(x0, x1) 23.57/10.34 new_esEs23(x0, x1, ty_Integer) 23.57/10.34 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 23.57/10.34 new_esEs31(x0, x1, ty_Float) 23.57/10.34 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_compare3(:(x0, x1), :(x2, x3), x4) 23.57/10.34 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_lt20(x0, x1, ty_Integer) 23.57/10.34 new_primMulNat0(Succ(x0), Zero) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(ty_Ratio, x2)) 23.57/10.34 new_lt6(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_lt21(x0, x1, ty_Float) 23.57/10.34 new_esEs21(x0, x1, ty_Double) 23.57/10.34 new_compare7(x0, x1, x2) 23.57/10.34 new_ltEs15(GT, LT) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 23.57/10.34 new_ltEs15(LT, GT) 23.57/10.34 new_esEs30(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs31(x0, x1, ty_Ordering) 23.57/10.34 new_ltEs6(x0, x1, ty_Int) 23.57/10.34 new_esEs17(Float(x0, x1), Float(x2, x3)) 23.57/10.34 new_lt13(x0, x1) 23.57/10.34 new_esEs6(Nothing, Nothing, x0) 23.57/10.34 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 23.57/10.34 new_lt6(x0, x1, ty_@0) 23.57/10.34 new_primCmpNat0(Zero, Succ(x0)) 23.57/10.34 new_esEs31(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), ty_Float) 23.57/10.34 new_ltEs8(Right(x0), Left(x1), x2, x3) 23.57/10.34 new_ltEs8(Left(x0), Right(x1), x2, x3) 23.57/10.34 new_esEs9(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs31(x0, x1, ty_Int) 23.57/10.34 new_compare15(x0, x1, True, x2, x3) 23.57/10.34 new_compare19(x0, x1, ty_Integer) 23.57/10.34 new_esEs29(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_lt19(x0, x1, x2, x3) 23.57/10.34 new_esEs8(GT, GT) 23.57/10.34 new_esEs30(x0, x1, ty_Double) 23.57/10.34 new_esEs8(LT, EQ) 23.57/10.34 new_esEs8(EQ, LT) 23.57/10.34 new_esEs14([], [], x0) 23.57/10.34 new_primCmpNat0(Succ(x0), Zero) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Double) 23.57/10.34 new_primCmpInt(Neg(Zero), Neg(Zero)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 23.57/10.34 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 23.57/10.34 new_esEs27(x0, x1, ty_Double) 23.57/10.34 new_esEs13(False, True) 23.57/10.34 new_esEs13(True, False) 23.57/10.34 new_esEs27(x0, x1, ty_@0) 23.57/10.34 new_esEs31(x0, x1, ty_Integer) 23.57/10.34 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 23.57/10.34 new_esEs22(x0, x1, app(ty_[], x2)) 23.57/10.34 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_compare210(x0, x1, False, x2, x3, x4) 23.57/10.34 new_esEs14(:(x0, x1), :(x2, x3), x4) 23.57/10.34 new_esEs8(LT, LT) 23.57/10.34 new_primCmpInt(Pos(Zero), Neg(Zero)) 23.57/10.34 new_primCmpInt(Neg(Zero), Pos(Zero)) 23.57/10.34 new_esEs28(x0, x1, ty_Integer) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_@0) 23.57/10.34 new_lt21(x0, x1, ty_Char) 23.57/10.34 new_lt20(x0, x1, ty_Bool) 23.57/10.34 new_compare111(x0, x1, False, x2, x3) 23.57/10.34 new_esEs6(Just(x0), Just(x1), app(ty_[], x2)) 23.57/10.34 new_lt20(x0, x1, ty_Float) 23.57/10.34 new_esEs27(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 23.57/10.34 new_esEs25(x0, x1, ty_Int) 23.57/10.34 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 23.57/10.34 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 23.57/10.34 new_esEs30(x0, x1, ty_@0) 23.57/10.34 new_primMulInt(Pos(x0), Neg(x1)) 23.57/10.34 new_primMulInt(Neg(x0), Pos(x1)) 23.57/10.34 new_esEs31(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt4(x0, x1, x2) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 23.57/10.34 new_esEs29(x0, x1, app(ty_[], x2)) 23.57/10.34 new_compare19(x0, x1, ty_Char) 23.57/10.34 new_compare6(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 23.57/10.34 new_compare6(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 23.57/10.34 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs22(x0, x1, ty_Bool) 23.57/10.34 new_compare29(:%(x0, x1), :%(x2, x3), ty_Integer) 23.57/10.34 new_lt7(x0, x1) 23.57/10.34 new_compare27(x0, x1, x2, x3, x4) 23.57/10.34 new_primCompAux1(x0, x1, x2, x3) 23.57/10.34 new_esEs10(x0, x1, ty_Integer) 23.57/10.34 new_esEs25(x0, x1, ty_Float) 23.57/10.34 new_lt6(x0, x1, ty_Double) 23.57/10.34 new_ltEs19(x0, x1, ty_Bool) 23.57/10.34 new_esEs24(x0, x1, ty_Int) 23.57/10.34 new_esEs21(x0, x1, ty_@0) 23.57/10.34 new_compare24(x0, x1, True) 23.57/10.34 new_esEs18(x0, x1) 23.57/10.34 new_lt20(x0, x1, ty_Int) 23.57/10.34 new_esEs10(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs22(x0, x1, ty_Char) 23.57/10.34 new_ltEs6(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_lt21(x0, x1, ty_Int) 23.57/10.34 new_esEs9(x0, x1, ty_@0) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 23.57/10.34 new_asAs(False, x0) 23.57/10.34 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs10(x0, x1, ty_Ordering) 23.57/10.34 new_compare19(x0, x1, ty_Bool) 23.57/10.34 new_esEs28(x0, x1, ty_Ordering) 23.57/10.34 new_compare11(x0, x1, False, x2) 23.57/10.34 new_esEs27(x0, x1, ty_Char) 23.57/10.34 new_primCmpNat0(Succ(x0), Succ(x1)) 23.57/10.34 new_primEqNat0(Zero, Succ(x0)) 23.57/10.34 new_esEs20(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_compare19(x0, x1, ty_Int) 23.57/10.34 new_esEs30(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Double, x2) 23.57/10.34 new_esEs20(x0, x1, ty_Char) 23.57/10.34 new_lt5(x0, x1, ty_Double) 23.57/10.34 new_compare26(Char(x0), Char(x1)) 23.57/10.34 new_esEs26(x0, x1, ty_Ordering) 23.57/10.34 new_lt21(x0, x1, ty_@0) 23.57/10.34 new_esEs21(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_ltEs11(x0, x1, x2) 23.57/10.34 new_ltEs9(x0, x1) 23.57/10.34 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs22(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs20(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_primMulNat0(Zero, Zero) 23.57/10.34 new_lt6(x0, x1, ty_Ordering) 23.57/10.34 new_esEs20(x0, x1, ty_Int) 23.57/10.34 new_primPlusNat0(Succ(x0), Zero) 23.57/10.34 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs9(x0, x1, ty_Float) 23.57/10.34 new_ltEs17(x0, x1) 23.57/10.34 new_lt6(x0, x1, ty_Int) 23.57/10.34 new_esEs22(x0, x1, ty_Int) 23.57/10.34 new_primMulInt(Pos(x0), Pos(x1)) 23.57/10.34 new_esEs31(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs19(Double(x0, x1), Double(x2, x3)) 23.57/10.34 new_esEs22(x0, x1, ty_Ordering) 23.57/10.34 new_esEs21(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_esEs9(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs20(x0, x1, ty_Float) 23.57/10.34 new_primMulNat0(Succ(x0), Succ(x1)) 23.57/10.34 new_lt21(x0, x1, ty_Bool) 23.57/10.34 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs10(True, False) 23.57/10.34 new_ltEs10(False, True) 23.57/10.34 new_fsEs(x0) 23.57/10.34 new_compare19(x0, x1, ty_Ordering) 23.57/10.34 new_compare211(x0, x1, False, x2, x3) 23.57/10.34 new_esEs28(x0, x1, ty_Bool) 23.57/10.34 new_esEs21(x0, x1, ty_Char) 23.57/10.34 new_esEs30(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs30(x0, x1, app(ty_[], x2)) 23.57/10.34 new_lt5(x0, x1, ty_Ordering) 23.57/10.34 new_lt6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_compare9(x0, x1) 23.57/10.34 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_compare17(x0, x1, True) 23.57/10.34 new_compare212(x0, x1, False, x2, x3) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 23.57/10.34 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 23.57/10.34 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_primMulInt(Neg(x0), Neg(x1)) 23.57/10.34 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_esEs21(x0, x1, ty_Bool) 23.57/10.34 new_sr0(x0, x1) 23.57/10.34 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 23.57/10.34 new_primPlusNat0(Zero, Zero) 23.57/10.34 new_compare110(x0, x1, False, x2, x3, x4) 23.57/10.34 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs20(x0, x1, ty_@0) 23.57/10.34 new_lt21(x0, x1, ty_Integer) 23.57/10.34 new_not(True) 23.57/10.34 new_lt5(x0, x1, ty_Char) 23.57/10.34 new_esEs28(x0, x1, ty_Int) 23.57/10.34 new_esEs5(Left(x0), Right(x1), x2, x3) 23.57/10.34 new_esEs5(Right(x0), Left(x1), x2, x3) 23.57/10.34 new_esEs20(x0, x1, ty_Double) 23.57/10.34 new_esEs31(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_lt8(x0, x1, x2, x3, x4) 23.57/10.34 new_esEs28(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 23.57/10.34 new_esEs8(EQ, GT) 23.57/10.34 new_esEs8(GT, EQ) 23.57/10.34 new_esEs22(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_esEs10(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs7(@2(x0, x1), @2(x2, x3), x4, x5) 23.57/10.34 new_compare29(:%(x0, x1), :%(x2, x3), ty_Int) 23.57/10.34 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 23.57/10.34 new_ltEs19(x0, x1, ty_Float) 23.57/10.34 new_lt5(x0, x1, ty_Int) 23.57/10.34 new_compare25(x0, x1, True) 23.57/10.34 new_ltEs15(GT, EQ) 23.57/10.34 new_ltEs15(EQ, GT) 23.57/10.34 new_esEs13(True, True) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Char, x2) 23.57/10.34 new_esEs28(x0, x1, ty_Char) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_Int, x2) 23.57/10.34 new_lt21(x0, x1, ty_Ordering) 23.57/10.34 new_lt20(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_pePe(True, x0) 23.57/10.34 new_esEs26(x0, x1, ty_@0) 23.57/10.34 new_esEs26(x0, x1, app(ty_Maybe, x2)) 23.57/10.34 new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 23.57/10.34 new_esEs9(x0, x1, ty_Integer) 23.57/10.34 new_compare3(:(x0, x1), [], x2) 23.57/10.34 new_esEs10(x0, x1, ty_Float) 23.57/10.34 new_esEs26(x0, x1, ty_Double) 23.57/10.34 new_esEs26(x0, x1, ty_Char) 23.57/10.34 new_esEs6(Just(x0), Just(x1), ty_Float) 23.57/10.34 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 23.57/10.34 new_esEs21(x0, x1, ty_Ordering) 23.57/10.34 new_primCompAux0(x0, LT) 23.57/10.34 new_esEs27(x0, x1, ty_Ordering) 23.57/10.34 new_lt6(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.34 new_esEs21(x0, x1, ty_Integer) 23.57/10.34 new_esEs9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.34 new_ltEs8(Left(x0), Left(x1), ty_@0, x2) 23.57/10.34 new_esEs15(Integer(x0), Integer(x1)) 23.57/10.34 new_esEs31(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_compare14(x0, x1, x2, x3) 23.57/10.34 new_compare212(x0, x1, True, x2, x3) 23.57/10.34 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.34 new_ltEs7(x0, x1) 23.57/10.34 new_esEs28(x0, x1, ty_@0) 23.57/10.34 new_compare18(x0, x1) 23.57/10.34 new_compare12(@0, @0) 23.57/10.34 new_compare23(x0, x1, False, x2) 23.57/10.34 new_primCmpInt(Pos(Zero), Pos(Zero)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 23.57/10.34 new_esEs26(x0, x1, app(ty_Ratio, x2)) 23.57/10.34 new_ltEs8(Right(x0), Right(x1), x2, ty_Integer) 23.57/10.35 new_esEs9(x0, x1, app(ty_[], x2)) 23.57/10.35 new_esEs26(x0, x1, ty_Int) 23.57/10.35 new_compare11(x0, x1, True, x2) 23.57/10.35 new_ltEs8(Left(x0), Left(x1), ty_Bool, x2) 23.57/10.35 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 23.57/10.35 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 23.57/10.35 new_compare16(x0, x1, False) 23.57/10.35 new_lt17(x0, x1) 23.57/10.35 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 23.57/10.35 new_lt21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.35 new_esEs31(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.35 new_esEs9(x0, x1, ty_Bool) 23.57/10.35 new_ltEs19(x0, x1, app(ty_[], x2)) 23.57/10.35 new_lt5(x0, x1, ty_@0) 23.57/10.35 new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) 23.57/10.35 new_lt21(x0, x1, app(ty_Ratio, x2)) 23.57/10.35 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 23.57/10.35 new_ltEs20(x0, x1, ty_@0) 23.57/10.35 new_esEs26(x0, x1, ty_Bool) 23.57/10.35 new_lt21(x0, x1, ty_Double) 23.57/10.35 new_lt21(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.35 new_esEs30(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.35 new_primPlusNat1(Succ(x0), x1) 23.57/10.35 new_esEs12(@0, @0) 23.57/10.35 new_esEs27(x0, x1, ty_Integer) 23.57/10.35 new_lt16(x0, x1) 23.57/10.35 new_esEs26(x0, x1, ty_Integer) 23.57/10.35 new_lt5(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.35 new_compare3([], :(x0, x1), x2) 23.57/10.35 new_esEs4(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 23.57/10.35 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 23.57/10.35 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 23.57/10.35 new_esEs8(LT, GT) 23.57/10.35 new_esEs8(GT, LT) 23.57/10.35 new_esEs11(Char(x0), Char(x1)) 23.57/10.35 new_compare19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.35 new_ltEs20(x0, x1, ty_Bool) 23.57/10.35 new_esEs28(x0, x1, ty_Double) 23.57/10.35 new_ltEs6(x0, x1, ty_Double) 23.57/10.35 new_esEs27(x0, x1, app(ty_Ratio, x2)) 23.57/10.35 new_ltEs8(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 23.57/10.35 new_esEs16(:%(x0, x1), :%(x2, x3), x4) 23.57/10.35 new_compare6(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 23.57/10.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Bool) 23.57/10.35 new_ltEs16(Just(x0), Just(x1), ty_Integer) 23.57/10.35 new_ltEs15(EQ, LT) 23.57/10.35 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 23.57/10.35 new_ltEs15(LT, EQ) 23.57/10.35 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 23.57/10.35 new_ltEs16(Nothing, Nothing, x0) 23.57/10.35 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.35 new_compare19(x0, x1, ty_@0) 23.57/10.35 new_lt21(x0, x1, app(ty_Maybe, x2)) 23.57/10.35 new_esEs10(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.35 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 23.57/10.35 new_lt6(x0, x1, ty_Integer) 23.57/10.35 new_esEs26(x0, x1, app(ty_[], x2)) 23.57/10.35 new_esEs30(x0, x1, app(ty_Maybe, x2)) 23.57/10.35 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.35 new_ltEs15(GT, GT) 23.57/10.35 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 23.57/10.35 new_lt10(x0, x1) 23.57/10.35 new_esEs31(x0, x1, ty_Double) 23.57/10.35 new_compare6(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 23.57/10.35 new_compare111(x0, x1, True, x2, x3) 23.57/10.35 new_ltEs16(Nothing, Just(x0), x1) 23.57/10.35 new_ltEs18(@2(x0, x1), @2(x2, x3), x4, x5) 23.57/10.35 new_esEs28(x0, x1, app(ty_Ratio, x2)) 23.57/10.35 new_esEs25(x0, x1, ty_Double) 23.57/10.35 new_asAs(True, x0) 23.57/10.35 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 23.57/10.35 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 23.57/10.35 new_esEs25(x0, x1, app(ty_Ratio, x2)) 23.57/10.35 new_ltEs19(x0, x1, ty_@0) 23.57/10.35 new_lt5(x0, x1, ty_Integer) 23.57/10.35 new_esEs14(:(x0, x1), [], x2) 23.57/10.35 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 23.57/10.35 new_esEs25(x0, x1, app(ty_Maybe, x2)) 23.57/10.35 new_primEqNat0(Succ(x0), Succ(x1)) 23.57/10.35 new_ltEs6(x0, x1, ty_Ordering) 23.57/10.35 new_esEs20(x0, x1, ty_Bool) 23.57/10.35 new_primCompAux0(x0, EQ) 23.57/10.35 new_esEs27(x0, x1, app(ty_[], x2)) 23.57/10.35 new_sr(Integer(x0), Integer(x1)) 23.57/10.35 new_primEqNat0(Zero, Zero) 23.57/10.35 new_esEs13(False, False) 23.57/10.35 new_ltEs8(Left(x0), Left(x1), app(ty_[], x2), x3) 23.57/10.35 new_esEs29(x0, x1, ty_Char) 23.57/10.35 new_lt20(x0, x1, ty_@0) 23.57/10.35 new_ltEs20(x0, x1, ty_Integer) 23.57/10.35 new_not(False) 23.57/10.35 new_esEs27(x0, x1, ty_Float) 23.57/10.35 new_ltEs5(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 23.57/10.35 new_compare25(x0, x1, False) 23.57/10.35 new_compare23(x0, x1, True, x2) 23.57/10.35 new_lt21(x0, x1, app(ty_[], x2)) 23.57/10.35 new_esEs27(x0, x1, ty_Bool) 23.57/10.35 new_esEs30(x0, x1, ty_Float) 23.57/10.35 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 23.57/10.35 new_ltEs19(x0, x1, ty_Double) 23.57/10.35 new_esEs6(Just(x0), Just(x1), ty_Bool) 23.57/10.35 new_lt12(x0, x1, x2) 23.57/10.35 new_ltEs8(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 23.57/10.35 new_esEs22(x0, x1, ty_@0) 23.57/10.35 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 23.57/10.35 new_ltEs6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 23.57/10.35 new_lt20(x0, x1, ty_Double) 23.57/10.35 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 23.57/10.35 new_esEs29(x0, x1, ty_Int) 23.57/10.35 new_esEs6(Just(x0), Just(x1), ty_Ordering) 23.57/10.35 new_ltEs16(Just(x0), Just(x1), ty_Ordering) 23.57/10.35 new_esEs21(x0, x1, ty_Int) 23.57/10.35 new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 23.57/10.35 new_esEs10(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.35 new_esEs25(x0, x1, ty_@0) 23.57/10.35 new_lt11(x0, x1) 23.57/10.35 new_lt20(x0, x1, app(ty_Ratio, x2)) 23.57/10.35 new_esEs10(x0, x1, app(ty_[], x2)) 23.57/10.35 new_ltEs15(LT, LT) 23.57/10.35 new_primMulNat0(Zero, Succ(x0)) 23.57/10.35 new_ltEs20(x0, x1, ty_Ordering) 23.57/10.35 new_esEs20(x0, x1, app(ty_[], x2)) 23.57/10.35 new_compare19(x0, x1, ty_Double) 23.57/10.35 new_esEs6(Just(x0), Just(x1), app(ty_Maybe, x2)) 23.57/10.35 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 23.57/10.35 new_esEs9(x0, x1, ty_Char) 23.57/10.35 new_esEs6(Just(x0), Just(x1), ty_Integer) 23.57/10.35 new_esEs9(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.35 new_ltEs8(Left(x0), Left(x1), ty_Integer, x2) 23.57/10.35 new_ltEs20(x0, x1, app(ty_[], x2)) 23.57/10.35 new_lt6(x0, x1, ty_Char) 23.57/10.35 new_primPlusNat1(Zero, x0) 23.57/10.35 new_ltEs6(x0, x1, app(app(ty_Either, x2), x3)) 23.57/10.35 new_esEs9(x0, x1, ty_Int) 23.57/10.35 new_compare15(x0, x1, False, x2, x3) 23.57/10.35 new_esEs20(x0, x1, ty_Ordering) 23.57/10.35 new_esEs20(x0, x1, ty_Integer) 23.57/10.35 new_lt6(x0, x1, ty_Bool) 23.57/10.35 new_ltEs10(True, True) 23.57/10.35 new_esEs22(x0, x1, ty_Double) 23.57/10.35 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 23.57/10.35 new_ltEs8(Left(x0), Left(x1), ty_Ordering, x2) 23.57/10.35 new_compare17(x0, x1, False) 23.57/10.35 new_lt5(x0, x1, app(ty_Maybe, x2)) 23.57/10.35 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 23.57/10.35 new_esEs27(x0, x1, ty_Int) 23.57/10.35 new_primCmpNat0(Zero, Zero) 23.57/10.35 new_esEs29(x0, x1, ty_Float) 23.57/10.35 new_esEs6(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 23.57/10.35 new_esEs21(x0, x1, ty_Float) 23.57/10.35 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 23.57/10.35 new_lt14(x0, x1, x2) 23.57/10.35 new_ltEs8(Right(x0), Right(x1), x2, ty_Float) 23.57/10.35 23.57/10.35 We have to consider all minimal (P,Q,R)-chains. 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (25) QDPSizeChangeProof (EQUIVALENT) 23.57/10.35 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. 23.57/10.35 23.57/10.35 From the DPs we obtained the following set of size-change graphs: 23.57/10.35 *new_insertBy00(vxw45, vxw46, vxw47, vxw48, vxw49, False, bc, bd) -> new_insertBy(@2(vxw47, vxw48), vxw49, bc, bd) 23.57/10.35 The graph contains the following edges 5 >= 2, 7 >= 3, 8 >= 4 23.57/10.35 23.57/10.35 23.57/10.35 *new_insertBy(@2(vxw30, vxw31), :(@2(vxw400, vxw401), vxw41), be, bf) -> new_insertBy0(vxw400, vxw401, vxw30, vxw31, vxw41, new_asAs(new_esEs30(vxw30, vxw400, be), new_esEs31(vxw31, vxw401, bf)), be, bf) 23.57/10.35 The graph contains the following edges 2 > 1, 2 > 2, 1 > 3, 1 > 4, 2 > 5, 3 >= 7, 4 >= 8 23.57/10.35 23.57/10.35 23.57/10.35 *new_insertBy0(vxw25, vxw26, vxw27, vxw28, vxw29, False, ba, bb) -> new_insertBy00(vxw25, vxw26, vxw27, vxw28, vxw29, new_pePe(new_lt21(vxw27, vxw25, ba), new_asAs(new_esEs29(vxw27, vxw25, ba), new_ltEs20(vxw28, vxw26, bb))), ba, bb) 23.57/10.35 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 4 >= 4, 5 >= 5, 7 >= 7, 8 >= 8 23.57/10.35 23.57/10.35 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (26) 23.57/10.35 YES 23.57/10.35 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (27) 23.57/10.35 Obligation: 23.57/10.35 Q DP problem: 23.57/10.35 The TRS P consists of the following rules: 23.57/10.35 23.57/10.35 new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) 23.57/10.35 23.57/10.35 R is empty. 23.57/10.35 Q is empty. 23.57/10.35 We have to consider all minimal (P,Q,R)-chains. 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (28) QDPSizeChangeProof (EQUIVALENT) 23.57/10.35 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. 23.57/10.35 23.57/10.35 From the DPs we obtained the following set of size-change graphs: 23.57/10.35 *new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) 23.57/10.35 The graph contains the following edges 1 > 1, 2 >= 2 23.57/10.35 23.57/10.35 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (29) 23.57/10.35 YES 23.57/10.35 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (30) 23.57/10.35 Obligation: 23.57/10.35 Q DP problem: 23.57/10.35 The TRS P consists of the following rules: 23.57/10.35 23.57/10.35 new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 23.57/10.35 23.57/10.35 R is empty. 23.57/10.35 Q is empty. 23.57/10.35 We have to consider all minimal (P,Q,R)-chains. 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (31) QDPSizeChangeProof (EQUIVALENT) 23.57/10.35 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. 23.57/10.35 23.57/10.35 From the DPs we obtained the following set of size-change graphs: 23.57/10.35 *new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 23.57/10.35 The graph contains the following edges 1 > 1, 2 > 2 23.57/10.35 23.57/10.35 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (32) 23.57/10.35 YES 23.57/10.35 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (33) 23.57/10.35 Obligation: 23.57/10.35 Q DP problem: 23.57/10.35 The TRS P consists of the following rules: 23.57/10.35 23.57/10.35 new_primPlusNat(Succ(vxw8400), Succ(vxw4000000)) -> new_primPlusNat(vxw8400, vxw4000000) 23.57/10.35 23.57/10.35 R is empty. 23.57/10.35 Q is empty. 23.57/10.35 We have to consider all minimal (P,Q,R)-chains. 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (34) QDPSizeChangeProof (EQUIVALENT) 23.57/10.35 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. 23.57/10.35 23.57/10.35 From the DPs we obtained the following set of size-change graphs: 23.57/10.35 *new_primPlusNat(Succ(vxw8400), Succ(vxw4000000)) -> new_primPlusNat(vxw8400, vxw4000000) 23.57/10.35 The graph contains the following edges 1 > 1, 2 > 2 23.57/10.35 23.57/10.35 23.57/10.35 ---------------------------------------- 23.57/10.35 23.57/10.35 (35) 23.57/10.35 YES 23.57/10.39 EOF