23.16/9.39 YES 26.11/10.19 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 26.11/10.19 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 26.11/10.19 26.11/10.19 26.11/10.19 H-Termination with start terms of the given HASKELL could be proven: 26.11/10.19 26.11/10.19 (0) HASKELL 26.11/10.19 (1) CR [EQUIVALENT, 0 ms] 26.11/10.19 (2) HASKELL 26.11/10.19 (3) IFR [EQUIVALENT, 0 ms] 26.11/10.19 (4) HASKELL 26.11/10.19 (5) BR [EQUIVALENT, 1 ms] 26.11/10.19 (6) HASKELL 26.11/10.19 (7) COR [EQUIVALENT, 0 ms] 26.11/10.19 (8) HASKELL 26.11/10.19 (9) LetRed [EQUIVALENT, 1 ms] 26.11/10.19 (10) HASKELL 26.11/10.19 (11) NumRed [SOUND, 0 ms] 26.11/10.19 (12) HASKELL 26.11/10.19 (13) Narrow [SOUND, 0 ms] 26.11/10.19 (14) AND 26.11/10.19 (15) QDP 26.11/10.19 (16) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.11/10.19 (17) YES 26.11/10.19 (18) QDP 26.11/10.19 (19) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.11/10.19 (20) YES 26.11/10.19 (21) QDP 26.11/10.19 (22) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.11/10.19 (23) YES 26.11/10.19 (24) QDP 26.11/10.19 (25) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.11/10.19 (26) YES 26.11/10.19 (27) QDP 26.11/10.19 (28) QDPSizeChangeProof [EQUIVALENT, 36 ms] 26.11/10.19 (29) YES 26.11/10.19 (30) QDP 26.11/10.19 (31) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.11/10.19 (32) YES 26.11/10.19 (33) QDP 26.11/10.19 (34) QDPSizeChangeProof [EQUIVALENT, 0 ms] 26.11/10.19 (35) YES 26.11/10.19 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (0) 26.11/10.19 Obligation: 26.11/10.19 mainModule Main 26.11/10.19 module Maybe where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 module List where { 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 insert :: Ord a => a -> [a] -> [a]; 26.11/10.19 insert e ls = insertBy compare e ls; 26.11/10.19 26.11/10.19 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 26.11/10.19 insertBy _ x [] = x : []; 26.11/10.19 insertBy cmp x ys@(y : ys') = case cmp x y of { 26.11/10.19 GT-> y : insertBy cmp x ys'; 26.11/10.19 _-> x : ys; 26.11/10.19 } ; 26.11/10.19 26.11/10.19 } 26.11/10.19 module Main where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (1) CR (EQUIVALENT) 26.11/10.19 Case Reductions: 26.11/10.19 The following Case expression 26.11/10.19 "case compare x y of { 26.11/10.19 EQ -> o; 26.11/10.19 LT -> LT; 26.11/10.19 GT -> GT} 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "primCompAux0 o EQ = o; 26.11/10.19 primCompAux0 o LT = LT; 26.11/10.19 primCompAux0 o GT = GT; 26.11/10.19 " 26.11/10.19 The following Case expression 26.11/10.19 "case cmp x y of { 26.11/10.19 GT -> y : insertBy cmp x ys'; 26.11/10.19 _ -> x : ys} 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 26.11/10.19 insertBy0 y cmp x ys' ys _ = x : ys; 26.11/10.19 " 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (2) 26.11/10.19 Obligation: 26.11/10.19 mainModule Main 26.11/10.19 module Maybe where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 module List where { 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 insert :: Ord a => a -> [a] -> [a]; 26.11/10.19 insert e ls = insertBy compare e ls; 26.11/10.19 26.11/10.19 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 26.11/10.19 insertBy _ x [] = x : []; 26.11/10.19 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 26.11/10.19 26.11/10.19 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 26.11/10.19 insertBy0 y cmp x ys' ys _ = x : ys; 26.11/10.19 26.11/10.19 } 26.11/10.19 module Main where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (3) IFR (EQUIVALENT) 26.11/10.19 If Reductions: 26.11/10.19 The following If expression 26.11/10.19 "if primGEqNatS x y then Succ (primDivNatS (primMinusNatS x y) (Succ y)) else Zero" 26.11/10.19 is transformed to 26.11/10.19 "primDivNatS0 x y True = Succ (primDivNatS (primMinusNatS x y) (Succ y)); 26.11/10.19 primDivNatS0 x y False = Zero; 26.11/10.19 " 26.11/10.19 The following If expression 26.11/10.19 "if primGEqNatS x y then primModNatS (primMinusNatS x y) (Succ y) else Succ x" 26.11/10.19 is transformed to 26.11/10.19 "primModNatS0 x y True = primModNatS (primMinusNatS x y) (Succ y); 26.11/10.19 primModNatS0 x y False = Succ x; 26.11/10.19 " 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (4) 26.11/10.19 Obligation: 26.11/10.19 mainModule Main 26.11/10.19 module Maybe where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 module List where { 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 insert :: Ord a => a -> [a] -> [a]; 26.11/10.19 insert e ls = insertBy compare e ls; 26.11/10.19 26.11/10.19 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 26.11/10.19 insertBy _ x [] = x : []; 26.11/10.19 insertBy cmp x ys@(y : ys') = insertBy0 y cmp x ys' ys (cmp x y); 26.11/10.19 26.11/10.19 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 26.11/10.19 insertBy0 y cmp x ys' ys _ = x : ys; 26.11/10.19 26.11/10.19 } 26.11/10.19 module Main where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (5) BR (EQUIVALENT) 26.11/10.19 Replaced joker patterns by fresh variables and removed binding patterns. 26.11/10.19 26.11/10.19 Binding Reductions: 26.11/10.19 The bind variable of the following binding Pattern 26.11/10.19 "ys@(vuu : vuv)" 26.11/10.19 is replaced by the following term 26.11/10.19 "vuu : vuv" 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (6) 26.11/10.19 Obligation: 26.11/10.19 mainModule Main 26.11/10.19 module Maybe where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 module List where { 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 insert :: Ord a => a -> [a] -> [a]; 26.11/10.19 insert e ls = insertBy compare e ls; 26.11/10.19 26.11/10.19 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 26.11/10.19 insertBy zz x [] = x : []; 26.11/10.19 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 26.11/10.19 26.11/10.19 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 26.11/10.19 insertBy0 y cmp x ys' ys zy = x : ys; 26.11/10.19 26.11/10.19 } 26.11/10.19 module Main where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (7) COR (EQUIVALENT) 26.11/10.19 Cond Reductions: 26.11/10.19 The following Function with conditions 26.11/10.19 "compare x y|x == yEQ|x <= yLT|otherwiseGT; 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "compare x y = compare3 x y; 26.11/10.19 " 26.11/10.19 "compare1 x y True = LT; 26.11/10.19 compare1 x y False = compare0 x y otherwise; 26.11/10.19 " 26.11/10.19 "compare0 x y True = GT; 26.11/10.19 " 26.11/10.19 "compare2 x y True = EQ; 26.11/10.19 compare2 x y False = compare1 x y (x <= y); 26.11/10.19 " 26.11/10.19 "compare3 x y = compare2 x y (x == y); 26.11/10.19 " 26.11/10.19 The following Function with conditions 26.11/10.19 "absReal x|x >= 0x|otherwise`negate` x; 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "absReal x = absReal2 x; 26.11/10.19 " 26.11/10.19 "absReal0 x True = `negate` x; 26.11/10.19 " 26.11/10.19 "absReal1 x True = x; 26.11/10.19 absReal1 x False = absReal0 x otherwise; 26.11/10.19 " 26.11/10.19 "absReal2 x = absReal1 x (x >= 0); 26.11/10.19 " 26.11/10.19 The following Function with conditions 26.11/10.19 "gcd' x 0 = x; 26.11/10.19 gcd' x y = gcd' y (x `rem` y); 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "gcd' x vuw = gcd'2 x vuw; 26.11/10.19 gcd' x y = gcd'0 x y; 26.11/10.19 " 26.11/10.19 "gcd'0 x y = gcd' y (x `rem` y); 26.11/10.19 " 26.11/10.19 "gcd'1 True x vuw = x; 26.11/10.19 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 26.11/10.19 " 26.11/10.19 "gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 26.11/10.19 gcd'2 vvu vvv = gcd'0 vvu vvv; 26.11/10.19 " 26.11/10.19 The following Function with conditions 26.11/10.19 "gcd 0 0 = error []; 26.11/10.19 gcd x y = gcd' (abs x) (abs y) where { 26.11/10.19 gcd' x 0 = x; 26.11/10.19 gcd' x y = gcd' y (x `rem` y); 26.11/10.19 } 26.11/10.19 ; 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "gcd vvw vvx = gcd3 vvw vvx; 26.11/10.19 gcd x y = gcd0 x y; 26.11/10.19 " 26.11/10.19 "gcd0 x y = gcd' (abs x) (abs y) where { 26.11/10.19 gcd' x vuw = gcd'2 x vuw; 26.11/10.19 gcd' x y = gcd'0 x y; 26.11/10.19 ; 26.11/10.19 gcd'0 x y = gcd' y (x `rem` y); 26.11/10.19 ; 26.11/10.19 gcd'1 True x vuw = x; 26.11/10.19 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 26.11/10.19 ; 26.11/10.19 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 26.11/10.19 gcd'2 vvu vvv = gcd'0 vvu vvv; 26.11/10.19 } 26.11/10.19 ; 26.11/10.19 " 26.11/10.19 "gcd1 True vvw vvx = error []; 26.11/10.19 gcd1 vvy vvz vwu = gcd0 vvz vwu; 26.11/10.19 " 26.11/10.19 "gcd2 True vvw vvx = gcd1 (vvx == 0) vvw vvx; 26.11/10.19 gcd2 vwv vww vwx = gcd0 vww vwx; 26.11/10.19 " 26.11/10.19 "gcd3 vvw vvx = gcd2 (vvw == 0) vvw vvx; 26.11/10.19 gcd3 vwy vwz = gcd0 vwy vwz; 26.11/10.19 " 26.11/10.19 The following Function with conditions 26.11/10.19 "undefined |Falseundefined; 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "undefined = undefined1; 26.11/10.19 " 26.11/10.19 "undefined0 True = undefined; 26.11/10.19 " 26.11/10.19 "undefined1 = undefined0 False; 26.11/10.19 " 26.11/10.19 The following Function with conditions 26.11/10.19 "reduce x y|y == 0error []|otherwisex `quot` d :% (y `quot` d) where { 26.11/10.19 d = gcd x y; 26.11/10.19 } 26.11/10.19 ; 26.11/10.19 " 26.11/10.19 is transformed to 26.11/10.19 "reduce x y = reduce2 x y; 26.11/10.19 " 26.11/10.19 "reduce2 x y = reduce1 x y (y == 0) where { 26.11/10.19 d = gcd x y; 26.11/10.19 ; 26.11/10.19 reduce0 x y True = x `quot` d :% (y `quot` d); 26.11/10.19 ; 26.11/10.19 reduce1 x y True = error []; 26.11/10.19 reduce1 x y False = reduce0 x y otherwise; 26.11/10.19 } 26.11/10.19 ; 26.11/10.19 " 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (8) 26.11/10.19 Obligation: 26.11/10.19 mainModule Main 26.11/10.19 module Maybe where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 module List where { 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 insert :: Ord a => a -> [a] -> [a]; 26.11/10.19 insert e ls = insertBy compare e ls; 26.11/10.19 26.11/10.19 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 26.11/10.19 insertBy zz x [] = x : []; 26.11/10.19 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 26.11/10.19 26.11/10.19 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 26.11/10.19 insertBy0 y cmp x ys' ys zy = x : ys; 26.11/10.19 26.11/10.19 } 26.11/10.19 module Main where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (9) LetRed (EQUIVALENT) 26.11/10.19 Let/Where Reductions: 26.11/10.19 The bindings of the following Let/Where expression 26.11/10.19 "gcd' (abs x) (abs y) where { 26.11/10.19 gcd' x vuw = gcd'2 x vuw; 26.11/10.19 gcd' x y = gcd'0 x y; 26.11/10.19 ; 26.11/10.19 gcd'0 x y = gcd' y (x `rem` y); 26.11/10.19 ; 26.11/10.19 gcd'1 True x vuw = x; 26.11/10.19 gcd'1 vux vuy vuz = gcd'0 vuy vuz; 26.11/10.19 ; 26.11/10.19 gcd'2 x vuw = gcd'1 (vuw == 0) x vuw; 26.11/10.19 gcd'2 vvu vvv = gcd'0 vvu vvv; 26.11/10.19 } 26.11/10.19 " 26.11/10.19 are unpacked to the following functions on top level 26.11/10.19 "gcd0Gcd' x vuw = gcd0Gcd'2 x vuw; 26.11/10.19 gcd0Gcd' x y = gcd0Gcd'0 x y; 26.11/10.19 " 26.11/10.19 "gcd0Gcd'0 x y = gcd0Gcd' y (x `rem` y); 26.11/10.19 " 26.11/10.19 "gcd0Gcd'1 True x vuw = x; 26.11/10.19 gcd0Gcd'1 vux vuy vuz = gcd0Gcd'0 vuy vuz; 26.11/10.19 " 26.11/10.19 "gcd0Gcd'2 x vuw = gcd0Gcd'1 (vuw == 0) x vuw; 26.11/10.19 gcd0Gcd'2 vvu vvv = gcd0Gcd'0 vvu vvv; 26.11/10.19 " 26.11/10.19 The bindings of the following Let/Where expression 26.11/10.19 "reduce1 x y (y == 0) where { 26.11/10.19 d = gcd x y; 26.11/10.19 ; 26.11/10.19 reduce0 x y True = x `quot` d :% (y `quot` d); 26.11/10.19 ; 26.11/10.19 reduce1 x y True = error []; 26.11/10.19 reduce1 x y False = reduce0 x y otherwise; 26.11/10.19 } 26.11/10.19 " 26.11/10.19 are unpacked to the following functions on top level 26.11/10.19 "reduce2Reduce1 vxu vxv x y True = error []; 26.11/10.19 reduce2Reduce1 vxu vxv x y False = reduce2Reduce0 vxu vxv x y otherwise; 26.11/10.19 " 26.11/10.19 "reduce2D vxu vxv = gcd vxu vxv; 26.11/10.19 " 26.11/10.19 "reduce2Reduce0 vxu vxv x y True = x `quot` reduce2D vxu vxv :% (y `quot` reduce2D vxu vxv); 26.11/10.19 " 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (10) 26.11/10.19 Obligation: 26.11/10.19 mainModule Main 26.11/10.19 module Maybe where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 module List where { 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 insert :: Ord a => a -> [a] -> [a]; 26.11/10.19 insert e ls = insertBy compare e ls; 26.11/10.19 26.11/10.19 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 26.11/10.19 insertBy zz x [] = x : []; 26.11/10.19 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 26.11/10.19 26.11/10.19 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 26.11/10.19 insertBy0 y cmp x ys' ys zy = x : ys; 26.11/10.19 26.11/10.19 } 26.11/10.19 module Main where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (11) NumRed (SOUND) 26.11/10.19 Num Reduction:All numbers are transformed to their corresponding representation with Succ, Pred and Zero. 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (12) 26.11/10.19 Obligation: 26.11/10.19 mainModule Main 26.11/10.19 module Maybe where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 module List where { 26.11/10.19 import qualified Main; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 insert :: Ord a => a -> [a] -> [a]; 26.11/10.19 insert e ls = insertBy compare e ls; 26.11/10.19 26.11/10.19 insertBy :: (a -> a -> Ordering) -> a -> [a] -> [a]; 26.11/10.19 insertBy zz x [] = x : []; 26.11/10.19 insertBy cmp x (vuu : vuv) = insertBy0 vuu cmp x vuv (vuu : vuv) (cmp x vuu); 26.11/10.19 26.11/10.19 insertBy0 y cmp x ys' ys GT = y : insertBy cmp x ys'; 26.11/10.19 insertBy0 y cmp x ys' ys zy = x : ys; 26.11/10.19 26.11/10.19 } 26.11/10.19 module Main where { 26.11/10.19 import qualified List; 26.11/10.19 import qualified Maybe; 26.11/10.19 import qualified Prelude; 26.11/10.19 } 26.11/10.19 26.11/10.19 ---------------------------------------- 26.11/10.19 26.11/10.19 (13) Narrow (SOUND) 26.11/10.19 Haskell To QDPs 26.11/10.19 26.11/10.19 digraph dp_graph { 26.11/10.19 node [outthreshold=100, inthreshold=100];1[label="List.insert",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 26.11/10.19 3[label="List.insert vxw3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 26.11/10.19 4[label="List.insert vxw3 vxw4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 26.11/10.19 5[label="List.insertBy compare vxw3 vxw4",fontsize=16,color="burlywood",shape="triangle"];1709[label="vxw4/vxw40 : vxw41",fontsize=10,color="white",style="solid",shape="box"];5 -> 1709[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1709 -> 6[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1710[label="vxw4/[]",fontsize=10,color="white",style="solid",shape="box"];5 -> 1710[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1710 -> 7[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 6[label="List.insertBy compare vxw3 (vxw40 : vxw41)",fontsize=16,color="black",shape="box"];6 -> 8[label="",style="solid", color="black", weight=3]; 26.11/10.19 7[label="List.insertBy compare vxw3 []",fontsize=16,color="black",shape="box"];7 -> 9[label="",style="solid", color="black", weight=3]; 26.11/10.19 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]; 26.11/10.19 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]; 26.11/10.19 11[label="List.insertBy0 vxw40 compare vxw3 vxw41 (vxw40 : vxw41) (compare2 vxw3 vxw40 (vxw3 == vxw40))",fontsize=16,color="burlywood",shape="box"];1711[label="vxw3/Nothing",fontsize=10,color="white",style="solid",shape="box"];11 -> 1711[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1711 -> 12[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1712[label="vxw3/Just vxw30",fontsize=10,color="white",style="solid",shape="box"];11 -> 1712[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1712 -> 13[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 12[label="List.insertBy0 vxw40 compare Nothing vxw41 (vxw40 : vxw41) (compare2 Nothing vxw40 (Nothing == vxw40))",fontsize=16,color="burlywood",shape="box"];1713[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];12 -> 1713[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1713 -> 14[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1714[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];12 -> 1714[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1714 -> 15[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 13[label="List.insertBy0 vxw40 compare (Just vxw30) vxw41 (vxw40 : vxw41) (compare2 (Just vxw30) vxw40 (Just vxw30 == vxw40))",fontsize=16,color="burlywood",shape="box"];1715[label="vxw40/Nothing",fontsize=10,color="white",style="solid",shape="box"];13 -> 1715[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1715 -> 16[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1716[label="vxw40/Just vxw400",fontsize=10,color="white",style="solid",shape="box"];13 -> 1716[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1716 -> 17[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 14[label="List.insertBy0 Nothing compare Nothing vxw41 (Nothing : vxw41) (compare2 Nothing Nothing (Nothing == Nothing))",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 26.11/10.19 15[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare2 Nothing (Just vxw400) (Nothing == Just vxw400))",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 26.11/10.19 16[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare2 (Just vxw30) Nothing (Just vxw30 == Nothing))",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 26.11/10.19 17[label="List.insertBy0 (Just vxw400) compare (Just vxw30) vxw41 (Just vxw400 : vxw41) (compare2 (Just vxw30) (Just vxw400) (Just vxw30 == Just vxw400))",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 26.11/10.19 18[label="List.insertBy0 Nothing compare Nothing vxw41 (Nothing : vxw41) (compare2 Nothing Nothing True)",fontsize=16,color="black",shape="box"];18 -> 22[label="",style="solid", color="black", weight=3]; 26.11/10.19 19[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare2 Nothing (Just vxw400) False)",fontsize=16,color="black",shape="box"];19 -> 23[label="",style="solid", color="black", weight=3]; 26.11/10.19 20[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare2 (Just vxw30) Nothing False)",fontsize=16,color="black",shape="box"];20 -> 24[label="",style="solid", color="black", weight=3]; 26.11/10.19 21 -> 25[label="",style="dashed", color="red", weight=0]; 26.11/10.19 21[label="List.insertBy0 (Just vxw400) compare (Just vxw30) vxw41 (Just vxw400 : vxw41) (compare2 (Just vxw30) (Just vxw400) (vxw30 == vxw400))",fontsize=16,color="magenta"];21 -> 26[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 21 -> 27[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 21 -> 28[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 21 -> 29[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 22[label="List.insertBy0 Nothing compare Nothing vxw41 (Nothing : vxw41) EQ",fontsize=16,color="black",shape="box"];22 -> 30[label="",style="solid", color="black", weight=3]; 26.11/10.19 23[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare1 Nothing (Just vxw400) (Nothing <= Just vxw400))",fontsize=16,color="black",shape="box"];23 -> 31[label="",style="solid", color="black", weight=3]; 26.11/10.19 24[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare1 (Just vxw30) Nothing (Just vxw30 <= Nothing))",fontsize=16,color="black",shape="box"];24 -> 32[label="",style="solid", color="black", weight=3]; 26.11/10.19 26[label="vxw41",fontsize=16,color="green",shape="box"];27[label="vxw400",fontsize=16,color="green",shape="box"];28[label="vxw30 == vxw400",fontsize=16,color="blue",shape="box"];1717[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1717[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1717 -> 33[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1718[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1718[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1718 -> 34[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1719[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1719[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1719 -> 35[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1720[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1720[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1720 -> 36[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1721[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1721[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1721 -> 37[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1722[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1722[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1722 -> 38[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1723[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1723[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1723 -> 39[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1724[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1724[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1724 -> 40[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1725[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1725[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1725 -> 41[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1726[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1726[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1726 -> 42[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1727[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1727[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1727 -> 43[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1728[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1728[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1728 -> 44[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1729[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1729[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1729 -> 45[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1730[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];28 -> 1730[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1730 -> 46[label="",style="solid", color="blue", weight=3]; 26.11/10.19 29[label="vxw30",fontsize=16,color="green",shape="box"];25[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare2 (Just vxw11) (Just vxw10) vxw13)",fontsize=16,color="burlywood",shape="triangle"];1731[label="vxw13/False",fontsize=10,color="white",style="solid",shape="box"];25 -> 1731[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1731 -> 47[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1732[label="vxw13/True",fontsize=10,color="white",style="solid",shape="box"];25 -> 1732[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1732 -> 48[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 30[label="Nothing : Nothing : vxw41",fontsize=16,color="green",shape="box"];31[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) (compare1 Nothing (Just vxw400) True)",fontsize=16,color="black",shape="box"];31 -> 49[label="",style="solid", color="black", weight=3]; 26.11/10.19 32[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare1 (Just vxw30) Nothing False)",fontsize=16,color="black",shape="box"];32 -> 50[label="",style="solid", color="black", weight=3]; 26.11/10.19 33[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];33 -> 51[label="",style="solid", color="black", weight=3]; 26.11/10.19 34[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1733[label="vxw30/vxw300 :% vxw301",fontsize=10,color="white",style="solid",shape="box"];34 -> 1733[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1733 -> 52[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 35[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1734[label="vxw30/Nothing",fontsize=10,color="white",style="solid",shape="box"];35 -> 1734[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1734 -> 53[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1735[label="vxw30/Just vxw300",fontsize=10,color="white",style="solid",shape="box"];35 -> 1735[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1735 -> 54[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 36[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1736[label="vxw30/(vxw300,vxw301)",fontsize=10,color="white",style="solid",shape="box"];36 -> 1736[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1736 -> 55[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 37[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];37 -> 56[label="",style="solid", color="black", weight=3]; 26.11/10.19 38[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1737[label="vxw30/(vxw300,vxw301,vxw302)",fontsize=10,color="white",style="solid",shape="box"];38 -> 1737[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1737 -> 57[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 39[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1738[label="vxw30/vxw300 : vxw301",fontsize=10,color="white",style="solid",shape="box"];39 -> 1738[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1738 -> 58[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1739[label="vxw30/[]",fontsize=10,color="white",style="solid",shape="box"];39 -> 1739[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1739 -> 59[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 40[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];40 -> 60[label="",style="solid", color="black", weight=3]; 26.11/10.19 41[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1740[label="vxw30/Integer vxw300",fontsize=10,color="white",style="solid",shape="box"];41 -> 1740[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1740 -> 61[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 42[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1741[label="vxw30/()",fontsize=10,color="white",style="solid",shape="box"];42 -> 1741[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1741 -> 62[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 43[label="vxw30 == vxw400",fontsize=16,color="black",shape="triangle"];43 -> 63[label="",style="solid", color="black", weight=3]; 26.11/10.19 44[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1742[label="vxw30/Left vxw300",fontsize=10,color="white",style="solid",shape="box"];44 -> 1742[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1742 -> 64[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1743[label="vxw30/Right vxw300",fontsize=10,color="white",style="solid",shape="box"];44 -> 1743[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1743 -> 65[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 45[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1744[label="vxw30/LT",fontsize=10,color="white",style="solid",shape="box"];45 -> 1744[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1744 -> 66[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1745[label="vxw30/EQ",fontsize=10,color="white",style="solid",shape="box"];45 -> 1745[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1745 -> 67[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1746[label="vxw30/GT",fontsize=10,color="white",style="solid",shape="box"];45 -> 1746[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1746 -> 68[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 46[label="vxw30 == vxw400",fontsize=16,color="burlywood",shape="triangle"];1747[label="vxw30/False",fontsize=10,color="white",style="solid",shape="box"];46 -> 1747[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1747 -> 69[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1748[label="vxw30/True",fontsize=10,color="white",style="solid",shape="box"];46 -> 1748[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1748 -> 70[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 47[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare2 (Just vxw11) (Just vxw10) False)",fontsize=16,color="black",shape="box"];47 -> 71[label="",style="solid", color="black", weight=3]; 26.11/10.19 48[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare2 (Just vxw11) (Just vxw10) True)",fontsize=16,color="black",shape="box"];48 -> 72[label="",style="solid", color="black", weight=3]; 26.11/10.19 49[label="List.insertBy0 (Just vxw400) compare Nothing vxw41 (Just vxw400 : vxw41) LT",fontsize=16,color="black",shape="box"];49 -> 73[label="",style="solid", color="black", weight=3]; 26.11/10.19 50[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare0 (Just vxw30) Nothing otherwise)",fontsize=16,color="black",shape="box"];50 -> 74[label="",style="solid", color="black", weight=3]; 26.11/10.19 51[label="primEqInt vxw30 vxw400",fontsize=16,color="burlywood",shape="triangle"];1749[label="vxw30/Pos vxw300",fontsize=10,color="white",style="solid",shape="box"];51 -> 1749[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1749 -> 75[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1750[label="vxw30/Neg vxw300",fontsize=10,color="white",style="solid",shape="box"];51 -> 1750[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1750 -> 76[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 52[label="vxw300 :% vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1751[label="vxw400/vxw4000 :% vxw4001",fontsize=10,color="white",style="solid",shape="box"];52 -> 1751[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1751 -> 77[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 53[label="Nothing == vxw400",fontsize=16,color="burlywood",shape="box"];1752[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];53 -> 1752[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1752 -> 78[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1753[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];53 -> 1753[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1753 -> 79[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 54[label="Just vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1754[label="vxw400/Nothing",fontsize=10,color="white",style="solid",shape="box"];54 -> 1754[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1754 -> 80[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1755[label="vxw400/Just vxw4000",fontsize=10,color="white",style="solid",shape="box"];54 -> 1755[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1755 -> 81[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 55[label="(vxw300,vxw301) == vxw400",fontsize=16,color="burlywood",shape="box"];1756[label="vxw400/(vxw4000,vxw4001)",fontsize=10,color="white",style="solid",shape="box"];55 -> 1756[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1756 -> 82[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 56[label="primEqFloat vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1757[label="vxw30/Float vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];56 -> 1757[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1757 -> 83[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 57[label="(vxw300,vxw301,vxw302) == vxw400",fontsize=16,color="burlywood",shape="box"];1758[label="vxw400/(vxw4000,vxw4001,vxw4002)",fontsize=10,color="white",style="solid",shape="box"];57 -> 1758[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1758 -> 84[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 58[label="vxw300 : vxw301 == vxw400",fontsize=16,color="burlywood",shape="box"];1759[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];58 -> 1759[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1759 -> 85[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1760[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];58 -> 1760[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1760 -> 86[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 59[label="[] == vxw400",fontsize=16,color="burlywood",shape="box"];1761[label="vxw400/vxw4000 : vxw4001",fontsize=10,color="white",style="solid",shape="box"];59 -> 1761[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1761 -> 87[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1762[label="vxw400/[]",fontsize=10,color="white",style="solid",shape="box"];59 -> 1762[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1762 -> 88[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 60[label="primEqDouble vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1763[label="vxw30/Double vxw300 vxw301",fontsize=10,color="white",style="solid",shape="box"];60 -> 1763[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1763 -> 89[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 61[label="Integer vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1764[label="vxw400/Integer vxw4000",fontsize=10,color="white",style="solid",shape="box"];61 -> 1764[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1764 -> 90[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 62[label="() == vxw400",fontsize=16,color="burlywood",shape="box"];1765[label="vxw400/()",fontsize=10,color="white",style="solid",shape="box"];62 -> 1765[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1765 -> 91[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 63[label="primEqChar vxw30 vxw400",fontsize=16,color="burlywood",shape="box"];1766[label="vxw30/Char vxw300",fontsize=10,color="white",style="solid",shape="box"];63 -> 1766[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1766 -> 92[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 64[label="Left vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1767[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];64 -> 1767[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1767 -> 93[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1768[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];64 -> 1768[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1768 -> 94[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 65[label="Right vxw300 == vxw400",fontsize=16,color="burlywood",shape="box"];1769[label="vxw400/Left vxw4000",fontsize=10,color="white",style="solid",shape="box"];65 -> 1769[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1769 -> 95[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1770[label="vxw400/Right vxw4000",fontsize=10,color="white",style="solid",shape="box"];65 -> 1770[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1770 -> 96[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 66[label="LT == vxw400",fontsize=16,color="burlywood",shape="box"];1771[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];66 -> 1771[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1771 -> 97[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1772[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];66 -> 1772[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1772 -> 98[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1773[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];66 -> 1773[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1773 -> 99[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 67[label="EQ == vxw400",fontsize=16,color="burlywood",shape="box"];1774[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];67 -> 1774[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1774 -> 100[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1775[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];67 -> 1775[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1775 -> 101[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1776[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];67 -> 1776[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1776 -> 102[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 68[label="GT == vxw400",fontsize=16,color="burlywood",shape="box"];1777[label="vxw400/LT",fontsize=10,color="white",style="solid",shape="box"];68 -> 1777[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1777 -> 103[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1778[label="vxw400/EQ",fontsize=10,color="white",style="solid",shape="box"];68 -> 1778[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1778 -> 104[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1779[label="vxw400/GT",fontsize=10,color="white",style="solid",shape="box"];68 -> 1779[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1779 -> 105[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 69[label="False == vxw400",fontsize=16,color="burlywood",shape="box"];1780[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];69 -> 1780[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1780 -> 106[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1781[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];69 -> 1781[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1781 -> 107[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 70[label="True == vxw400",fontsize=16,color="burlywood",shape="box"];1782[label="vxw400/False",fontsize=10,color="white",style="solid",shape="box"];70 -> 1782[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1782 -> 108[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1783[label="vxw400/True",fontsize=10,color="white",style="solid",shape="box"];70 -> 1783[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1783 -> 109[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 71 -> 150[label="",style="dashed", color="red", weight=0]; 26.11/10.19 71[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) (compare1 (Just vxw11) (Just vxw10) (Just vxw11 <= Just vxw10))",fontsize=16,color="magenta"];71 -> 151[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 71 -> 152[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 71 -> 153[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 71 -> 154[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 72[label="List.insertBy0 (Just vxw10) compare (Just vxw11) vxw12 (Just vxw10 : vxw12) EQ",fontsize=16,color="black",shape="box"];72 -> 111[label="",style="solid", color="black", weight=3]; 26.11/10.19 73[label="Nothing : Just vxw400 : vxw41",fontsize=16,color="green",shape="box"];74[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) (compare0 (Just vxw30) Nothing True)",fontsize=16,color="black",shape="box"];74 -> 112[label="",style="solid", color="black", weight=3]; 26.11/10.19 75[label="primEqInt (Pos vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1784[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];75 -> 1784[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1784 -> 113[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1785[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];75 -> 1785[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1785 -> 114[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 76[label="primEqInt (Neg vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1786[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];76 -> 1786[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1786 -> 115[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1787[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];76 -> 1787[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1787 -> 116[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 77[label="vxw300 :% vxw301 == vxw4000 :% vxw4001",fontsize=16,color="black",shape="box"];77 -> 117[label="",style="solid", color="black", weight=3]; 26.11/10.19 78[label="Nothing == Nothing",fontsize=16,color="black",shape="box"];78 -> 118[label="",style="solid", color="black", weight=3]; 26.11/10.19 79[label="Nothing == Just vxw4000",fontsize=16,color="black",shape="box"];79 -> 119[label="",style="solid", color="black", weight=3]; 26.11/10.19 80[label="Just vxw300 == Nothing",fontsize=16,color="black",shape="box"];80 -> 120[label="",style="solid", color="black", weight=3]; 26.11/10.19 81[label="Just vxw300 == Just vxw4000",fontsize=16,color="black",shape="box"];81 -> 121[label="",style="solid", color="black", weight=3]; 26.11/10.19 82[label="(vxw300,vxw301) == (vxw4000,vxw4001)",fontsize=16,color="black",shape="box"];82 -> 122[label="",style="solid", color="black", weight=3]; 26.11/10.19 83[label="primEqFloat (Float vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1788[label="vxw400/Float vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];83 -> 1788[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1788 -> 123[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 84[label="(vxw300,vxw301,vxw302) == (vxw4000,vxw4001,vxw4002)",fontsize=16,color="black",shape="box"];84 -> 124[label="",style="solid", color="black", weight=3]; 26.11/10.19 85[label="vxw300 : vxw301 == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];85 -> 125[label="",style="solid", color="black", weight=3]; 26.11/10.19 86[label="vxw300 : vxw301 == []",fontsize=16,color="black",shape="box"];86 -> 126[label="",style="solid", color="black", weight=3]; 26.11/10.19 87[label="[] == vxw4000 : vxw4001",fontsize=16,color="black",shape="box"];87 -> 127[label="",style="solid", color="black", weight=3]; 26.11/10.19 88[label="[] == []",fontsize=16,color="black",shape="box"];88 -> 128[label="",style="solid", color="black", weight=3]; 26.11/10.19 89[label="primEqDouble (Double vxw300 vxw301) vxw400",fontsize=16,color="burlywood",shape="box"];1789[label="vxw400/Double vxw4000 vxw4001",fontsize=10,color="white",style="solid",shape="box"];89 -> 1789[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1789 -> 129[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 90[label="Integer vxw300 == Integer vxw4000",fontsize=16,color="black",shape="box"];90 -> 130[label="",style="solid", color="black", weight=3]; 26.11/10.19 91[label="() == ()",fontsize=16,color="black",shape="box"];91 -> 131[label="",style="solid", color="black", weight=3]; 26.11/10.19 92[label="primEqChar (Char vxw300) vxw400",fontsize=16,color="burlywood",shape="box"];1790[label="vxw400/Char vxw4000",fontsize=10,color="white",style="solid",shape="box"];92 -> 1790[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1790 -> 132[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 93[label="Left vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];93 -> 133[label="",style="solid", color="black", weight=3]; 26.11/10.19 94[label="Left vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];94 -> 134[label="",style="solid", color="black", weight=3]; 26.11/10.19 95[label="Right vxw300 == Left vxw4000",fontsize=16,color="black",shape="box"];95 -> 135[label="",style="solid", color="black", weight=3]; 26.11/10.19 96[label="Right vxw300 == Right vxw4000",fontsize=16,color="black",shape="box"];96 -> 136[label="",style="solid", color="black", weight=3]; 26.11/10.19 97[label="LT == LT",fontsize=16,color="black",shape="box"];97 -> 137[label="",style="solid", color="black", weight=3]; 26.11/10.19 98[label="LT == EQ",fontsize=16,color="black",shape="box"];98 -> 138[label="",style="solid", color="black", weight=3]; 26.11/10.19 99[label="LT == GT",fontsize=16,color="black",shape="box"];99 -> 139[label="",style="solid", color="black", weight=3]; 26.11/10.19 100[label="EQ == LT",fontsize=16,color="black",shape="box"];100 -> 140[label="",style="solid", color="black", weight=3]; 26.11/10.19 101[label="EQ == EQ",fontsize=16,color="black",shape="box"];101 -> 141[label="",style="solid", color="black", weight=3]; 26.11/10.19 102[label="EQ == GT",fontsize=16,color="black",shape="box"];102 -> 142[label="",style="solid", color="black", weight=3]; 26.11/10.19 103[label="GT == LT",fontsize=16,color="black",shape="box"];103 -> 143[label="",style="solid", color="black", weight=3]; 26.11/10.19 104[label="GT == EQ",fontsize=16,color="black",shape="box"];104 -> 144[label="",style="solid", color="black", weight=3]; 26.11/10.19 105[label="GT == GT",fontsize=16,color="black",shape="box"];105 -> 145[label="",style="solid", color="black", weight=3]; 26.11/10.19 106[label="False == False",fontsize=16,color="black",shape="box"];106 -> 146[label="",style="solid", color="black", weight=3]; 26.11/10.19 107[label="False == True",fontsize=16,color="black",shape="box"];107 -> 147[label="",style="solid", color="black", weight=3]; 26.11/10.19 108[label="True == False",fontsize=16,color="black",shape="box"];108 -> 148[label="",style="solid", color="black", weight=3]; 26.11/10.19 109[label="True == True",fontsize=16,color="black",shape="box"];109 -> 149[label="",style="solid", color="black", weight=3]; 26.11/10.19 151[label="vxw12",fontsize=16,color="green",shape="box"];152[label="vxw11",fontsize=16,color="green",shape="box"];153[label="Just vxw11 <= Just vxw10",fontsize=16,color="black",shape="box"];153 -> 159[label="",style="solid", color="black", weight=3]; 26.11/10.19 154[label="vxw10",fontsize=16,color="green",shape="box"];150[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare1 (Just vxw20) (Just vxw19) vxw22)",fontsize=16,color="burlywood",shape="triangle"];1791[label="vxw22/False",fontsize=10,color="white",style="solid",shape="box"];150 -> 1791[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1791 -> 160[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1792[label="vxw22/True",fontsize=10,color="white",style="solid",shape="box"];150 -> 1792[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1792 -> 161[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 111[label="Just vxw11 : Just vxw10 : vxw12",fontsize=16,color="green",shape="box"];112[label="List.insertBy0 Nothing compare (Just vxw30) vxw41 (Nothing : vxw41) GT",fontsize=16,color="black",shape="box"];112 -> 162[label="",style="solid", color="black", weight=3]; 26.11/10.19 113[label="primEqInt (Pos (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1793[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];113 -> 1793[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1793 -> 163[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1794[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];113 -> 1794[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1794 -> 164[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 114[label="primEqInt (Pos Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1795[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];114 -> 1795[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1795 -> 165[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1796[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];114 -> 1796[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1796 -> 166[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 115[label="primEqInt (Neg (Succ vxw3000)) vxw400",fontsize=16,color="burlywood",shape="box"];1797[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];115 -> 1797[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1797 -> 167[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1798[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];115 -> 1798[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1798 -> 168[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 116[label="primEqInt (Neg Zero) vxw400",fontsize=16,color="burlywood",shape="box"];1799[label="vxw400/Pos vxw4000",fontsize=10,color="white",style="solid",shape="box"];116 -> 1799[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1799 -> 169[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1800[label="vxw400/Neg vxw4000",fontsize=10,color="white",style="solid",shape="box"];116 -> 1800[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1800 -> 170[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 117 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.19 117[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];117 -> 273[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 117 -> 274[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 118[label="True",fontsize=16,color="green",shape="box"];119[label="False",fontsize=16,color="green",shape="box"];120[label="False",fontsize=16,color="green",shape="box"];121[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1801[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1801[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1801 -> 181[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1802[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1802[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1802 -> 182[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1803[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1803[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1803 -> 183[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1804[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1804[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1804 -> 184[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1805[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1805[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1805 -> 185[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1806[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1806[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1806 -> 186[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1807[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1807[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1807 -> 187[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1808[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1808[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1808 -> 188[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1809[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1809[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1809 -> 189[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1810[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1810[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1810 -> 190[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1811[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1811[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1811 -> 191[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1812[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1812[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1812 -> 192[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1813[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1813[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1813 -> 193[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1814[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];121 -> 1814[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1814 -> 194[label="",style="solid", color="blue", weight=3]; 26.11/10.19 122 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.19 122[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];122 -> 275[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 122 -> 276[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 123[label="primEqFloat (Float vxw300 vxw301) (Float vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];123 -> 195[label="",style="solid", color="black", weight=3]; 26.11/10.19 124 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.19 124[label="vxw300 == vxw4000 && vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];124 -> 277[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 124 -> 278[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 125 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.19 125[label="vxw300 == vxw4000 && vxw301 == vxw4001",fontsize=16,color="magenta"];125 -> 279[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 125 -> 280[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 126[label="False",fontsize=16,color="green",shape="box"];127[label="False",fontsize=16,color="green",shape="box"];128[label="True",fontsize=16,color="green",shape="box"];129[label="primEqDouble (Double vxw300 vxw301) (Double vxw4000 vxw4001)",fontsize=16,color="black",shape="box"];129 -> 207[label="",style="solid", color="black", weight=3]; 26.11/10.19 130 -> 51[label="",style="dashed", color="red", weight=0]; 26.11/10.19 130[label="primEqInt vxw300 vxw4000",fontsize=16,color="magenta"];130 -> 208[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 130 -> 209[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 131[label="True",fontsize=16,color="green",shape="box"];132[label="primEqChar (Char vxw300) (Char vxw4000)",fontsize=16,color="black",shape="box"];132 -> 210[label="",style="solid", color="black", weight=3]; 26.11/10.19 133[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1815[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1815[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1815 -> 211[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1816[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1816[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1816 -> 212[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1817[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1817[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1817 -> 213[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1818[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1818[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1818 -> 214[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1819[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1819[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1819 -> 215[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1820[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1820[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1820 -> 216[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1821[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1821[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1821 -> 217[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1822[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1822[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1822 -> 218[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1823[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1823[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1823 -> 219[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1824[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1824[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1824 -> 220[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1825[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1825[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1825 -> 221[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1826[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1826[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1826 -> 222[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1827[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1827[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1827 -> 223[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1828[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];133 -> 1828[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1828 -> 224[label="",style="solid", color="blue", weight=3]; 26.11/10.19 134[label="False",fontsize=16,color="green",shape="box"];135[label="False",fontsize=16,color="green",shape="box"];136[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1829[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1829[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1829 -> 225[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1830[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1830[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1830 -> 226[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1831[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1831[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1831 -> 227[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1832[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1832[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1832 -> 228[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1833[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1833[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1833 -> 229[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1834[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1834[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1834 -> 230[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1835[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1835[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1835 -> 231[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1836[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1836[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1836 -> 232[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1837[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1837[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1837 -> 233[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1838[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1838[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1838 -> 234[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1839[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1839[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1839 -> 235[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1840[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1840[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1840 -> 236[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1841[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1841[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1841 -> 237[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1842[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];136 -> 1842[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1842 -> 238[label="",style="solid", color="blue", weight=3]; 26.11/10.19 137[label="True",fontsize=16,color="green",shape="box"];138[label="False",fontsize=16,color="green",shape="box"];139[label="False",fontsize=16,color="green",shape="box"];140[label="False",fontsize=16,color="green",shape="box"];141[label="True",fontsize=16,color="green",shape="box"];142[label="False",fontsize=16,color="green",shape="box"];143[label="False",fontsize=16,color="green",shape="box"];144[label="False",fontsize=16,color="green",shape="box"];145[label="True",fontsize=16,color="green",shape="box"];146[label="True",fontsize=16,color="green",shape="box"];147[label="False",fontsize=16,color="green",shape="box"];148[label="False",fontsize=16,color="green",shape="box"];149[label="True",fontsize=16,color="green",shape="box"];159[label="vxw11 <= vxw10",fontsize=16,color="blue",shape="box"];1843[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1843[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1843 -> 239[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1844[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1844[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1844 -> 240[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1845[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1845[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1845 -> 241[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1846[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1846[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1846 -> 242[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1847[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1847[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1847 -> 243[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1848[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1848[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1848 -> 244[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1849[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1849[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1849 -> 245[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1850[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1850[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1850 -> 246[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1851[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1851[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1851 -> 247[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1852[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1852[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1852 -> 248[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1853[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1853[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1853 -> 249[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1854[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1854[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1854 -> 250[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1855[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1855[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1855 -> 251[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1856[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];159 -> 1856[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1856 -> 252[label="",style="solid", color="blue", weight=3]; 26.11/10.19 160[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare1 (Just vxw20) (Just vxw19) False)",fontsize=16,color="black",shape="box"];160 -> 253[label="",style="solid", color="black", weight=3]; 26.11/10.19 161[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare1 (Just vxw20) (Just vxw19) True)",fontsize=16,color="black",shape="box"];161 -> 254[label="",style="solid", color="black", weight=3]; 26.11/10.19 162[label="Nothing : List.insertBy compare (Just vxw30) vxw41",fontsize=16,color="green",shape="box"];162 -> 255[label="",style="dashed", color="green", weight=3]; 26.11/10.19 163[label="primEqInt (Pos (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];1857[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];163 -> 1857[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1857 -> 256[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1858[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];163 -> 1858[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1858 -> 257[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 164[label="primEqInt (Pos (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="black",shape="box"];164 -> 258[label="",style="solid", color="black", weight=3]; 26.11/10.19 165[label="primEqInt (Pos Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];1859[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];165 -> 1859[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1859 -> 259[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1860[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];165 -> 1860[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1860 -> 260[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 166[label="primEqInt (Pos Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];1861[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];166 -> 1861[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1861 -> 261[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1862[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];166 -> 1862[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1862 -> 262[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 167[label="primEqInt (Neg (Succ vxw3000)) (Pos vxw4000)",fontsize=16,color="black",shape="box"];167 -> 263[label="",style="solid", color="black", weight=3]; 26.11/10.19 168[label="primEqInt (Neg (Succ vxw3000)) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];1863[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];168 -> 1863[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1863 -> 264[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1864[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];168 -> 1864[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1864 -> 265[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 169[label="primEqInt (Neg Zero) (Pos vxw4000)",fontsize=16,color="burlywood",shape="box"];1865[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];169 -> 1865[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1865 -> 266[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1866[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];169 -> 1866[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1866 -> 267[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 170[label="primEqInt (Neg Zero) (Neg vxw4000)",fontsize=16,color="burlywood",shape="box"];1867[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];170 -> 1867[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1867 -> 268[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1868[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];170 -> 1868[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1868 -> 269[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 273[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];1869[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];273 -> 1869[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1869 -> 285[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1870[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];273 -> 1870[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1870 -> 286[label="",style="solid", color="blue", weight=3]; 26.11/10.19 274[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1871[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];274 -> 1871[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1871 -> 287[label="",style="solid", color="blue", weight=3]; 26.11/10.19 1872[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];274 -> 1872[label="",style="solid", color="blue", weight=9]; 26.11/10.19 1872 -> 288[label="",style="solid", color="blue", weight=3]; 26.11/10.19 272[label="vxw34 && vxw35",fontsize=16,color="burlywood",shape="triangle"];1873[label="vxw34/False",fontsize=10,color="white",style="solid",shape="box"];272 -> 1873[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1873 -> 289[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 1874[label="vxw34/True",fontsize=10,color="white",style="solid",shape="box"];272 -> 1874[label="",style="solid", color="burlywood", weight=9]; 26.11/10.19 1874 -> 290[label="",style="solid", color="burlywood", weight=3]; 26.11/10.19 181 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.19 181[label="vxw300 == vxw4000",fontsize=16,color="magenta"];181 -> 291[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 181 -> 292[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 182 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.19 182[label="vxw300 == vxw4000",fontsize=16,color="magenta"];182 -> 293[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 182 -> 294[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 183 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.19 183[label="vxw300 == vxw4000",fontsize=16,color="magenta"];183 -> 295[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 183 -> 296[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 184 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.19 184[label="vxw300 == vxw4000",fontsize=16,color="magenta"];184 -> 297[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 184 -> 298[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 185 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.19 185[label="vxw300 == vxw4000",fontsize=16,color="magenta"];185 -> 299[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 185 -> 300[label="",style="dashed", color="magenta", weight=3]; 26.11/10.19 186 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 186[label="vxw300 == vxw4000",fontsize=16,color="magenta"];186 -> 301[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 186 -> 302[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 187 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 187[label="vxw300 == vxw4000",fontsize=16,color="magenta"];187 -> 303[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 187 -> 304[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 188 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 188[label="vxw300 == vxw4000",fontsize=16,color="magenta"];188 -> 305[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 188 -> 306[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 189 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 189[label="vxw300 == vxw4000",fontsize=16,color="magenta"];189 -> 307[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 189 -> 308[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 190 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 190[label="vxw300 == vxw4000",fontsize=16,color="magenta"];190 -> 309[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 190 -> 310[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 191 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 191[label="vxw300 == vxw4000",fontsize=16,color="magenta"];191 -> 311[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 191 -> 312[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 192 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 192[label="vxw300 == vxw4000",fontsize=16,color="magenta"];192 -> 313[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 192 -> 314[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 193 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 193[label="vxw300 == vxw4000",fontsize=16,color="magenta"];193 -> 315[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 193 -> 316[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 194 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 194[label="vxw300 == vxw4000",fontsize=16,color="magenta"];194 -> 317[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 194 -> 318[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 275[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];1875[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1875[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1875 -> 319[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1876[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1876[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1876 -> 320[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1877[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1877[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1877 -> 321[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1878[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1878[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1878 -> 322[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1879[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1879[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1879 -> 323[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1880[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1880[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1880 -> 324[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1881[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1881[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1881 -> 325[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1882[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1882[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1882 -> 326[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1883[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1883[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1883 -> 327[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1884[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1884[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1884 -> 328[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1885[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1885[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1885 -> 329[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1886[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1886[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1886 -> 330[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1887[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1887[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1887 -> 331[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1888[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];275 -> 1888[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1888 -> 332[label="",style="solid", color="blue", weight=3]; 26.11/10.20 276[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1889[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1889[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1889 -> 333[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1890[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1890[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1890 -> 334[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1891[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1891[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1891 -> 335[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1892[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1892[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1892 -> 336[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1893[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1893[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1893 -> 337[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1894[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1894[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1894 -> 338[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1895[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1895[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1895 -> 339[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1896[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1896[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1896 -> 340[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1897[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1897[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1897 -> 341[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1898[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1898[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1898 -> 342[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1899[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1899[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1899 -> 343[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1900[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1900[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1900 -> 344[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1901[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1901[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1901 -> 345[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1902[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];276 -> 1902[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1902 -> 346[label="",style="solid", color="blue", weight=3]; 26.11/10.20 195 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 195[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];195 -> 347[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 195 -> 348[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 277 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.20 277[label="vxw301 == vxw4001 && vxw302 == vxw4002",fontsize=16,color="magenta"];277 -> 349[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 277 -> 350[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 278[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1903[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1903[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1903 -> 351[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1904[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1904[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1904 -> 352[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1905[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1905[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1905 -> 353[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1906[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1906[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1906 -> 354[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1907[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1907[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1907 -> 355[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1908[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1908[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1908 -> 356[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1909[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1909[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1909 -> 357[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1910[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1910[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1910 -> 358[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1911[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1911[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1911 -> 359[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1912[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1912[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1912 -> 360[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1913[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1913[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1913 -> 361[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1914[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1914[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1914 -> 362[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1915[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1915[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1915 -> 363[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1916[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];278 -> 1916[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1916 -> 364[label="",style="solid", color="blue", weight=3]; 26.11/10.20 279 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 279[label="vxw301 == vxw4001",fontsize=16,color="magenta"];279 -> 365[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 279 -> 366[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 280[label="vxw300 == vxw4000",fontsize=16,color="blue",shape="box"];1917[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1917[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1917 -> 367[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1918[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1918[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1918 -> 368[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1919[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1919[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1919 -> 369[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1920[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1920[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1920 -> 370[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1921[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1921[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1921 -> 371[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1922[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1922[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1922 -> 372[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1923[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1923[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1923 -> 373[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1924[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1924[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1924 -> 374[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1925[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1925[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1925 -> 375[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1926[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1926[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1926 -> 376[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1927[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1927[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1927 -> 377[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1928[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1928[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1928 -> 378[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1929[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1929[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1929 -> 379[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1930[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];280 -> 1930[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1930 -> 380[label="",style="solid", color="blue", weight=3]; 26.11/10.20 207 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 207[label="vxw300 * vxw4001 == vxw301 * vxw4000",fontsize=16,color="magenta"];207 -> 381[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 207 -> 382[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 208[label="vxw4000",fontsize=16,color="green",shape="box"];209[label="vxw300",fontsize=16,color="green",shape="box"];210[label="primEqNat vxw300 vxw4000",fontsize=16,color="burlywood",shape="triangle"];1931[label="vxw300/Succ vxw3000",fontsize=10,color="white",style="solid",shape="box"];210 -> 1931[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1931 -> 383[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1932[label="vxw300/Zero",fontsize=10,color="white",style="solid",shape="box"];210 -> 1932[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1932 -> 384[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 211 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 211[label="vxw300 == vxw4000",fontsize=16,color="magenta"];211 -> 385[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 211 -> 386[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 212 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 212[label="vxw300 == vxw4000",fontsize=16,color="magenta"];212 -> 387[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 212 -> 388[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 213 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 213[label="vxw300 == vxw4000",fontsize=16,color="magenta"];213 -> 389[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 213 -> 390[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 214 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 214[label="vxw300 == vxw4000",fontsize=16,color="magenta"];214 -> 391[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 214 -> 392[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 215 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 215[label="vxw300 == vxw4000",fontsize=16,color="magenta"];215 -> 393[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 215 -> 394[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 216 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 216[label="vxw300 == vxw4000",fontsize=16,color="magenta"];216 -> 395[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 216 -> 396[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 217 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 217[label="vxw300 == vxw4000",fontsize=16,color="magenta"];217 -> 397[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 217 -> 398[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 218 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 218[label="vxw300 == vxw4000",fontsize=16,color="magenta"];218 -> 399[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 218 -> 400[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 219 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 219[label="vxw300 == vxw4000",fontsize=16,color="magenta"];219 -> 401[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 219 -> 402[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 220 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 220[label="vxw300 == vxw4000",fontsize=16,color="magenta"];220 -> 403[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 220 -> 404[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 221 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 221[label="vxw300 == vxw4000",fontsize=16,color="magenta"];221 -> 405[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 221 -> 406[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 222 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 222[label="vxw300 == vxw4000",fontsize=16,color="magenta"];222 -> 407[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 222 -> 408[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 223 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 223[label="vxw300 == vxw4000",fontsize=16,color="magenta"];223 -> 409[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 223 -> 410[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 224 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 224[label="vxw300 == vxw4000",fontsize=16,color="magenta"];224 -> 411[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 224 -> 412[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 225 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 225[label="vxw300 == vxw4000",fontsize=16,color="magenta"];225 -> 413[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 225 -> 414[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 226 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 226[label="vxw300 == vxw4000",fontsize=16,color="magenta"];226 -> 415[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 226 -> 416[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 227 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 227[label="vxw300 == vxw4000",fontsize=16,color="magenta"];227 -> 417[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 227 -> 418[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 228 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 228[label="vxw300 == vxw4000",fontsize=16,color="magenta"];228 -> 419[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 228 -> 420[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 229 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 229[label="vxw300 == vxw4000",fontsize=16,color="magenta"];229 -> 421[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 229 -> 422[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 230 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 230[label="vxw300 == vxw4000",fontsize=16,color="magenta"];230 -> 423[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 230 -> 424[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 231 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 231[label="vxw300 == vxw4000",fontsize=16,color="magenta"];231 -> 425[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 231 -> 426[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 232 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 232[label="vxw300 == vxw4000",fontsize=16,color="magenta"];232 -> 427[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 232 -> 428[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 233 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 233[label="vxw300 == vxw4000",fontsize=16,color="magenta"];233 -> 429[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 233 -> 430[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 234 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 234[label="vxw300 == vxw4000",fontsize=16,color="magenta"];234 -> 431[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 234 -> 432[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 235 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 235[label="vxw300 == vxw4000",fontsize=16,color="magenta"];235 -> 433[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 235 -> 434[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 236 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 236[label="vxw300 == vxw4000",fontsize=16,color="magenta"];236 -> 435[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 236 -> 436[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 237 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 237[label="vxw300 == vxw4000",fontsize=16,color="magenta"];237 -> 437[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 237 -> 438[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 238 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 238[label="vxw300 == vxw4000",fontsize=16,color="magenta"];238 -> 439[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 238 -> 440[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 239[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1933[label="vxw11/False",fontsize=10,color="white",style="solid",shape="box"];239 -> 1933[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1933 -> 441[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1934[label="vxw11/True",fontsize=10,color="white",style="solid",shape="box"];239 -> 1934[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1934 -> 442[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 240[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];240 -> 443[label="",style="solid", color="black", weight=3]; 26.11/10.20 241[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1935[label="vxw11/LT",fontsize=10,color="white",style="solid",shape="box"];241 -> 1935[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1935 -> 444[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1936[label="vxw11/EQ",fontsize=10,color="white",style="solid",shape="box"];241 -> 1936[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1936 -> 445[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1937[label="vxw11/GT",fontsize=10,color="white",style="solid",shape="box"];241 -> 1937[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1937 -> 446[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 242[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];242 -> 447[label="",style="solid", color="black", weight=3]; 26.11/10.20 243[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1938[label="vxw11/(vxw110,vxw111)",fontsize=10,color="white",style="solid",shape="box"];243 -> 1938[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1938 -> 448[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 244[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1939[label="vxw11/Left vxw110",fontsize=10,color="white",style="solid",shape="box"];244 -> 1939[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1939 -> 449[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1940[label="vxw11/Right vxw110",fontsize=10,color="white",style="solid",shape="box"];244 -> 1940[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1940 -> 450[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 245[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1941[label="vxw11/(vxw110,vxw111,vxw112)",fontsize=10,color="white",style="solid",shape="box"];245 -> 1941[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1941 -> 451[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 246[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];246 -> 452[label="",style="solid", color="black", weight=3]; 26.11/10.20 247[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];247 -> 453[label="",style="solid", color="black", weight=3]; 26.11/10.20 248[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];248 -> 454[label="",style="solid", color="black", weight=3]; 26.11/10.20 249[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];249 -> 455[label="",style="solid", color="black", weight=3]; 26.11/10.20 250[label="vxw11 <= vxw10",fontsize=16,color="burlywood",shape="triangle"];1942[label="vxw11/Nothing",fontsize=10,color="white",style="solid",shape="box"];250 -> 1942[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1942 -> 456[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1943[label="vxw11/Just vxw110",fontsize=10,color="white",style="solid",shape="box"];250 -> 1943[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1943 -> 457[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 251[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];251 -> 458[label="",style="solid", color="black", weight=3]; 26.11/10.20 252[label="vxw11 <= vxw10",fontsize=16,color="black",shape="triangle"];252 -> 459[label="",style="solid", color="black", weight=3]; 26.11/10.20 253[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare0 (Just vxw20) (Just vxw19) otherwise)",fontsize=16,color="black",shape="box"];253 -> 460[label="",style="solid", color="black", weight=3]; 26.11/10.20 254[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) LT",fontsize=16,color="black",shape="box"];254 -> 461[label="",style="solid", color="black", weight=3]; 26.11/10.20 255 -> 5[label="",style="dashed", color="red", weight=0]; 26.11/10.20 255[label="List.insertBy compare (Just vxw30) vxw41",fontsize=16,color="magenta"];255 -> 462[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 255 -> 463[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 256[label="primEqInt (Pos (Succ vxw3000)) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];256 -> 464[label="",style="solid", color="black", weight=3]; 26.11/10.20 257[label="primEqInt (Pos (Succ vxw3000)) (Pos Zero)",fontsize=16,color="black",shape="box"];257 -> 465[label="",style="solid", color="black", weight=3]; 26.11/10.20 258[label="False",fontsize=16,color="green",shape="box"];259[label="primEqInt (Pos Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];259 -> 466[label="",style="solid", color="black", weight=3]; 26.11/10.20 260[label="primEqInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];260 -> 467[label="",style="solid", color="black", weight=3]; 26.11/10.20 261[label="primEqInt (Pos Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];261 -> 468[label="",style="solid", color="black", weight=3]; 26.11/10.20 262[label="primEqInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];262 -> 469[label="",style="solid", color="black", weight=3]; 26.11/10.20 263[label="False",fontsize=16,color="green",shape="box"];264[label="primEqInt (Neg (Succ vxw3000)) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];264 -> 470[label="",style="solid", color="black", weight=3]; 26.11/10.20 265[label="primEqInt (Neg (Succ vxw3000)) (Neg Zero)",fontsize=16,color="black",shape="box"];265 -> 471[label="",style="solid", color="black", weight=3]; 26.11/10.20 266[label="primEqInt (Neg Zero) (Pos (Succ vxw40000))",fontsize=16,color="black",shape="box"];266 -> 472[label="",style="solid", color="black", weight=3]; 26.11/10.20 267[label="primEqInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];267 -> 473[label="",style="solid", color="black", weight=3]; 26.11/10.20 268[label="primEqInt (Neg Zero) (Neg (Succ vxw40000))",fontsize=16,color="black",shape="box"];268 -> 474[label="",style="solid", color="black", weight=3]; 26.11/10.20 269[label="primEqInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];269 -> 475[label="",style="solid", color="black", weight=3]; 26.11/10.20 285 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 285[label="vxw301 == vxw4001",fontsize=16,color="magenta"];285 -> 476[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 285 -> 477[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 286 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 286[label="vxw301 == vxw4001",fontsize=16,color="magenta"];286 -> 478[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 286 -> 479[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 287 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 287[label="vxw300 == vxw4000",fontsize=16,color="magenta"];287 -> 480[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 287 -> 481[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 288 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 288[label="vxw300 == vxw4000",fontsize=16,color="magenta"];288 -> 482[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 288 -> 483[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 289[label="False && vxw35",fontsize=16,color="black",shape="box"];289 -> 484[label="",style="solid", color="black", weight=3]; 26.11/10.20 290[label="True && vxw35",fontsize=16,color="black",shape="box"];290 -> 485[label="",style="solid", color="black", weight=3]; 26.11/10.20 291[label="vxw4000",fontsize=16,color="green",shape="box"];292[label="vxw300",fontsize=16,color="green",shape="box"];293[label="vxw4000",fontsize=16,color="green",shape="box"];294[label="vxw300",fontsize=16,color="green",shape="box"];295[label="vxw4000",fontsize=16,color="green",shape="box"];296[label="vxw300",fontsize=16,color="green",shape="box"];297[label="vxw4000",fontsize=16,color="green",shape="box"];298[label="vxw300",fontsize=16,color="green",shape="box"];299[label="vxw4000",fontsize=16,color="green",shape="box"];300[label="vxw300",fontsize=16,color="green",shape="box"];301[label="vxw4000",fontsize=16,color="green",shape="box"];302[label="vxw300",fontsize=16,color="green",shape="box"];303[label="vxw4000",fontsize=16,color="green",shape="box"];304[label="vxw300",fontsize=16,color="green",shape="box"];305[label="vxw4000",fontsize=16,color="green",shape="box"];306[label="vxw300",fontsize=16,color="green",shape="box"];307[label="vxw4000",fontsize=16,color="green",shape="box"];308[label="vxw300",fontsize=16,color="green",shape="box"];309[label="vxw4000",fontsize=16,color="green",shape="box"];310[label="vxw300",fontsize=16,color="green",shape="box"];311[label="vxw4000",fontsize=16,color="green",shape="box"];312[label="vxw300",fontsize=16,color="green",shape="box"];313[label="vxw4000",fontsize=16,color="green",shape="box"];314[label="vxw300",fontsize=16,color="green",shape="box"];315[label="vxw4000",fontsize=16,color="green",shape="box"];316[label="vxw300",fontsize=16,color="green",shape="box"];317[label="vxw4000",fontsize=16,color="green",shape="box"];318[label="vxw300",fontsize=16,color="green",shape="box"];319 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 319[label="vxw301 == vxw4001",fontsize=16,color="magenta"];319 -> 486[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 319 -> 487[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 320 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 320[label="vxw301 == vxw4001",fontsize=16,color="magenta"];320 -> 488[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 320 -> 489[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 321 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 321[label="vxw301 == vxw4001",fontsize=16,color="magenta"];321 -> 490[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 321 -> 491[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 322 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 322[label="vxw301 == vxw4001",fontsize=16,color="magenta"];322 -> 492[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 322 -> 493[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 323 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 323[label="vxw301 == vxw4001",fontsize=16,color="magenta"];323 -> 494[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 323 -> 495[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 324 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 324[label="vxw301 == vxw4001",fontsize=16,color="magenta"];324 -> 496[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 324 -> 497[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 325 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 325[label="vxw301 == vxw4001",fontsize=16,color="magenta"];325 -> 498[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 325 -> 499[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 326 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 326[label="vxw301 == vxw4001",fontsize=16,color="magenta"];326 -> 500[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 326 -> 501[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 327 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 327[label="vxw301 == vxw4001",fontsize=16,color="magenta"];327 -> 502[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 327 -> 503[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 328 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 328[label="vxw301 == vxw4001",fontsize=16,color="magenta"];328 -> 504[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 328 -> 505[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 329 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 329[label="vxw301 == vxw4001",fontsize=16,color="magenta"];329 -> 506[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 329 -> 507[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 330 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 330[label="vxw301 == vxw4001",fontsize=16,color="magenta"];330 -> 508[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 330 -> 509[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 331 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 331[label="vxw301 == vxw4001",fontsize=16,color="magenta"];331 -> 510[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 331 -> 511[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 332 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 332[label="vxw301 == vxw4001",fontsize=16,color="magenta"];332 -> 512[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 332 -> 513[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 333 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 333[label="vxw300 == vxw4000",fontsize=16,color="magenta"];333 -> 514[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 333 -> 515[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 334 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 334[label="vxw300 == vxw4000",fontsize=16,color="magenta"];334 -> 516[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 334 -> 517[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 335 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 335[label="vxw300 == vxw4000",fontsize=16,color="magenta"];335 -> 518[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 335 -> 519[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 336 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 336[label="vxw300 == vxw4000",fontsize=16,color="magenta"];336 -> 520[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 336 -> 521[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 337 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 337[label="vxw300 == vxw4000",fontsize=16,color="magenta"];337 -> 522[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 337 -> 523[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 338 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 338[label="vxw300 == vxw4000",fontsize=16,color="magenta"];338 -> 524[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 338 -> 525[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 339 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 339[label="vxw300 == vxw4000",fontsize=16,color="magenta"];339 -> 526[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 339 -> 527[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 340 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 340[label="vxw300 == vxw4000",fontsize=16,color="magenta"];340 -> 528[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 340 -> 529[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 341 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 341[label="vxw300 == vxw4000",fontsize=16,color="magenta"];341 -> 530[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 341 -> 531[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 342 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 342[label="vxw300 == vxw4000",fontsize=16,color="magenta"];342 -> 532[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 342 -> 533[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 343 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 343[label="vxw300 == vxw4000",fontsize=16,color="magenta"];343 -> 534[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 343 -> 535[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 344 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 344[label="vxw300 == vxw4000",fontsize=16,color="magenta"];344 -> 536[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 344 -> 537[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 345 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 345[label="vxw300 == vxw4000",fontsize=16,color="magenta"];345 -> 538[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 345 -> 539[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 346 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 346[label="vxw300 == vxw4000",fontsize=16,color="magenta"];346 -> 540[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 346 -> 541[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 347[label="vxw301 * vxw4000",fontsize=16,color="black",shape="triangle"];347 -> 542[label="",style="solid", color="black", weight=3]; 26.11/10.20 348 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.20 348[label="vxw300 * vxw4001",fontsize=16,color="magenta"];348 -> 543[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 348 -> 544[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 349[label="vxw302 == vxw4002",fontsize=16,color="blue",shape="box"];1944[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1944[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1944 -> 545[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1945[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1945[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1945 -> 546[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1946[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1946[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1946 -> 547[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1947[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1947[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1947 -> 548[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1948[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1948[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1948 -> 549[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1949[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1949[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1949 -> 550[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1950[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1950[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1950 -> 551[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1951[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1951[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1951 -> 552[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1952[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1952[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1952 -> 553[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1953[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1953[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1953 -> 554[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1954[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1954[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1954 -> 555[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1955[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1955[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1955 -> 556[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1956[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1956[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1956 -> 557[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1957[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];349 -> 1957[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1957 -> 558[label="",style="solid", color="blue", weight=3]; 26.11/10.20 350[label="vxw301 == vxw4001",fontsize=16,color="blue",shape="box"];1958[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1958[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1958 -> 559[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1959[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1959[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1959 -> 560[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1960[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1960[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1960 -> 561[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1961[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1961[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1961 -> 562[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1962[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1962[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1962 -> 563[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1963[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1963[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1963 -> 564[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1964[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1964[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1964 -> 565[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1965[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1965[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1965 -> 566[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1966[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1966[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1966 -> 567[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1967[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1967[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1967 -> 568[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1968[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1968[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1968 -> 569[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1969[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1969[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1969 -> 570[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1970[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1970[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1970 -> 571[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1971[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];350 -> 1971[label="",style="solid", color="blue", weight=9]; 26.11/10.20 1971 -> 572[label="",style="solid", color="blue", weight=3]; 26.11/10.20 351 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 351[label="vxw300 == vxw4000",fontsize=16,color="magenta"];351 -> 573[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 351 -> 574[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 352 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 352[label="vxw300 == vxw4000",fontsize=16,color="magenta"];352 -> 575[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 352 -> 576[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 353 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 353[label="vxw300 == vxw4000",fontsize=16,color="magenta"];353 -> 577[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 353 -> 578[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 354 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 354[label="vxw300 == vxw4000",fontsize=16,color="magenta"];354 -> 579[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 354 -> 580[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 355 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 355[label="vxw300 == vxw4000",fontsize=16,color="magenta"];355 -> 581[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 355 -> 582[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 356 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 356[label="vxw300 == vxw4000",fontsize=16,color="magenta"];356 -> 583[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 356 -> 584[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 357 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 357[label="vxw300 == vxw4000",fontsize=16,color="magenta"];357 -> 585[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 357 -> 586[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 358 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 358[label="vxw300 == vxw4000",fontsize=16,color="magenta"];358 -> 587[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 358 -> 588[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 359 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 359[label="vxw300 == vxw4000",fontsize=16,color="magenta"];359 -> 589[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 359 -> 590[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 360 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 360[label="vxw300 == vxw4000",fontsize=16,color="magenta"];360 -> 591[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 360 -> 592[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 361 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 361[label="vxw300 == vxw4000",fontsize=16,color="magenta"];361 -> 593[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 361 -> 594[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 362 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 362[label="vxw300 == vxw4000",fontsize=16,color="magenta"];362 -> 595[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 362 -> 596[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 363 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 363[label="vxw300 == vxw4000",fontsize=16,color="magenta"];363 -> 597[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 363 -> 598[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 364 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 364[label="vxw300 == vxw4000",fontsize=16,color="magenta"];364 -> 599[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 364 -> 600[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 365[label="vxw4001",fontsize=16,color="green",shape="box"];366[label="vxw301",fontsize=16,color="green",shape="box"];367 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 367[label="vxw300 == vxw4000",fontsize=16,color="magenta"];367 -> 601[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 367 -> 602[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 368 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 368[label="vxw300 == vxw4000",fontsize=16,color="magenta"];368 -> 603[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 368 -> 604[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 369 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 369[label="vxw300 == vxw4000",fontsize=16,color="magenta"];369 -> 605[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 369 -> 606[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 370 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 370[label="vxw300 == vxw4000",fontsize=16,color="magenta"];370 -> 607[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 370 -> 608[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 371 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 371[label="vxw300 == vxw4000",fontsize=16,color="magenta"];371 -> 609[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 371 -> 610[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 372 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 372[label="vxw300 == vxw4000",fontsize=16,color="magenta"];372 -> 611[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 372 -> 612[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 373 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 373[label="vxw300 == vxw4000",fontsize=16,color="magenta"];373 -> 613[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 373 -> 614[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 374 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 374[label="vxw300 == vxw4000",fontsize=16,color="magenta"];374 -> 615[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 374 -> 616[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 375 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 375[label="vxw300 == vxw4000",fontsize=16,color="magenta"];375 -> 617[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 375 -> 618[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 376 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 376[label="vxw300 == vxw4000",fontsize=16,color="magenta"];376 -> 619[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 376 -> 620[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 377 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 377[label="vxw300 == vxw4000",fontsize=16,color="magenta"];377 -> 621[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 377 -> 622[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 378 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 378[label="vxw300 == vxw4000",fontsize=16,color="magenta"];378 -> 623[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 378 -> 624[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 379 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 379[label="vxw300 == vxw4000",fontsize=16,color="magenta"];379 -> 625[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 379 -> 626[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 380 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 380[label="vxw300 == vxw4000",fontsize=16,color="magenta"];380 -> 627[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 380 -> 628[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 381 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.20 381[label="vxw301 * vxw4000",fontsize=16,color="magenta"];381 -> 629[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 381 -> 630[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 382 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.20 382[label="vxw300 * vxw4001",fontsize=16,color="magenta"];382 -> 631[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 382 -> 632[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 383[label="primEqNat (Succ vxw3000) vxw4000",fontsize=16,color="burlywood",shape="box"];1972[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];383 -> 1972[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1972 -> 633[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1973[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];383 -> 1973[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1973 -> 634[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 384[label="primEqNat Zero vxw4000",fontsize=16,color="burlywood",shape="box"];1974[label="vxw4000/Succ vxw40000",fontsize=10,color="white",style="solid",shape="box"];384 -> 1974[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1974 -> 635[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1975[label="vxw4000/Zero",fontsize=10,color="white",style="solid",shape="box"];384 -> 1975[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1975 -> 636[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 385[label="vxw4000",fontsize=16,color="green",shape="box"];386[label="vxw300",fontsize=16,color="green",shape="box"];387[label="vxw4000",fontsize=16,color="green",shape="box"];388[label="vxw300",fontsize=16,color="green",shape="box"];389[label="vxw4000",fontsize=16,color="green",shape="box"];390[label="vxw300",fontsize=16,color="green",shape="box"];391[label="vxw4000",fontsize=16,color="green",shape="box"];392[label="vxw300",fontsize=16,color="green",shape="box"];393[label="vxw4000",fontsize=16,color="green",shape="box"];394[label="vxw300",fontsize=16,color="green",shape="box"];395[label="vxw4000",fontsize=16,color="green",shape="box"];396[label="vxw300",fontsize=16,color="green",shape="box"];397[label="vxw4000",fontsize=16,color="green",shape="box"];398[label="vxw300",fontsize=16,color="green",shape="box"];399[label="vxw4000",fontsize=16,color="green",shape="box"];400[label="vxw300",fontsize=16,color="green",shape="box"];401[label="vxw4000",fontsize=16,color="green",shape="box"];402[label="vxw300",fontsize=16,color="green",shape="box"];403[label="vxw4000",fontsize=16,color="green",shape="box"];404[label="vxw300",fontsize=16,color="green",shape="box"];405[label="vxw4000",fontsize=16,color="green",shape="box"];406[label="vxw300",fontsize=16,color="green",shape="box"];407[label="vxw4000",fontsize=16,color="green",shape="box"];408[label="vxw300",fontsize=16,color="green",shape="box"];409[label="vxw4000",fontsize=16,color="green",shape="box"];410[label="vxw300",fontsize=16,color="green",shape="box"];411[label="vxw4000",fontsize=16,color="green",shape="box"];412[label="vxw300",fontsize=16,color="green",shape="box"];413[label="vxw4000",fontsize=16,color="green",shape="box"];414[label="vxw300",fontsize=16,color="green",shape="box"];415[label="vxw4000",fontsize=16,color="green",shape="box"];416[label="vxw300",fontsize=16,color="green",shape="box"];417[label="vxw4000",fontsize=16,color="green",shape="box"];418[label="vxw300",fontsize=16,color="green",shape="box"];419[label="vxw4000",fontsize=16,color="green",shape="box"];420[label="vxw300",fontsize=16,color="green",shape="box"];421[label="vxw4000",fontsize=16,color="green",shape="box"];422[label="vxw300",fontsize=16,color="green",shape="box"];423[label="vxw4000",fontsize=16,color="green",shape="box"];424[label="vxw300",fontsize=16,color="green",shape="box"];425[label="vxw4000",fontsize=16,color="green",shape="box"];426[label="vxw300",fontsize=16,color="green",shape="box"];427[label="vxw4000",fontsize=16,color="green",shape="box"];428[label="vxw300",fontsize=16,color="green",shape="box"];429[label="vxw4000",fontsize=16,color="green",shape="box"];430[label="vxw300",fontsize=16,color="green",shape="box"];431[label="vxw4000",fontsize=16,color="green",shape="box"];432[label="vxw300",fontsize=16,color="green",shape="box"];433[label="vxw4000",fontsize=16,color="green",shape="box"];434[label="vxw300",fontsize=16,color="green",shape="box"];435[label="vxw4000",fontsize=16,color="green",shape="box"];436[label="vxw300",fontsize=16,color="green",shape="box"];437[label="vxw4000",fontsize=16,color="green",shape="box"];438[label="vxw300",fontsize=16,color="green",shape="box"];439[label="vxw4000",fontsize=16,color="green",shape="box"];440[label="vxw300",fontsize=16,color="green",shape="box"];441[label="False <= vxw10",fontsize=16,color="burlywood",shape="box"];1976[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];441 -> 1976[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1976 -> 637[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1977[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];441 -> 1977[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1977 -> 638[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 442[label="True <= vxw10",fontsize=16,color="burlywood",shape="box"];1978[label="vxw10/False",fontsize=10,color="white",style="solid",shape="box"];442 -> 1978[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1978 -> 639[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1979[label="vxw10/True",fontsize=10,color="white",style="solid",shape="box"];442 -> 1979[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1979 -> 640[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 443[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];443 -> 641[label="",style="solid", color="black", weight=3]; 26.11/10.20 444[label="LT <= vxw10",fontsize=16,color="burlywood",shape="box"];1980[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];444 -> 1980[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1980 -> 642[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1981[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];444 -> 1981[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1981 -> 643[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1982[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];444 -> 1982[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1982 -> 644[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 445[label="EQ <= vxw10",fontsize=16,color="burlywood",shape="box"];1983[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];445 -> 1983[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1983 -> 645[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1984[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];445 -> 1984[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1984 -> 646[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1985[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];445 -> 1985[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1985 -> 647[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 446[label="GT <= vxw10",fontsize=16,color="burlywood",shape="box"];1986[label="vxw10/LT",fontsize=10,color="white",style="solid",shape="box"];446 -> 1986[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1986 -> 648[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1987[label="vxw10/EQ",fontsize=10,color="white",style="solid",shape="box"];446 -> 1987[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1987 -> 649[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1988[label="vxw10/GT",fontsize=10,color="white",style="solid",shape="box"];446 -> 1988[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1988 -> 650[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 447[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];447 -> 651[label="",style="solid", color="black", weight=3]; 26.11/10.20 448[label="(vxw110,vxw111) <= vxw10",fontsize=16,color="burlywood",shape="box"];1989[label="vxw10/(vxw100,vxw101)",fontsize=10,color="white",style="solid",shape="box"];448 -> 1989[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1989 -> 652[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 449[label="Left vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];1990[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];449 -> 1990[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1990 -> 653[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1991[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];449 -> 1991[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1991 -> 654[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 450[label="Right vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];1992[label="vxw10/Left vxw100",fontsize=10,color="white",style="solid",shape="box"];450 -> 1992[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1992 -> 655[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1993[label="vxw10/Right vxw100",fontsize=10,color="white",style="solid",shape="box"];450 -> 1993[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1993 -> 656[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 451[label="(vxw110,vxw111,vxw112) <= vxw10",fontsize=16,color="burlywood",shape="box"];1994[label="vxw10/(vxw100,vxw101,vxw102)",fontsize=10,color="white",style="solid",shape="box"];451 -> 1994[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1994 -> 657[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 452[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];452 -> 658[label="",style="solid", color="black", weight=3]; 26.11/10.20 453[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];453 -> 659[label="",style="solid", color="black", weight=3]; 26.11/10.20 454[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];454 -> 660[label="",style="solid", color="black", weight=3]; 26.11/10.20 455[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];455 -> 661[label="",style="solid", color="black", weight=3]; 26.11/10.20 456[label="Nothing <= vxw10",fontsize=16,color="burlywood",shape="box"];1995[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];456 -> 1995[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1995 -> 662[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1996[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];456 -> 1996[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1996 -> 663[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 457[label="Just vxw110 <= vxw10",fontsize=16,color="burlywood",shape="box"];1997[label="vxw10/Nothing",fontsize=10,color="white",style="solid",shape="box"];457 -> 1997[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1997 -> 664[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1998[label="vxw10/Just vxw100",fontsize=10,color="white",style="solid",shape="box"];457 -> 1998[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1998 -> 665[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 458[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];458 -> 666[label="",style="solid", color="black", weight=3]; 26.11/10.20 459[label="compare vxw11 vxw10 /= GT",fontsize=16,color="black",shape="box"];459 -> 667[label="",style="solid", color="black", weight=3]; 26.11/10.20 460[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) (compare0 (Just vxw20) (Just vxw19) True)",fontsize=16,color="black",shape="box"];460 -> 668[label="",style="solid", color="black", weight=3]; 26.11/10.20 461[label="Just vxw20 : Just vxw19 : vxw21",fontsize=16,color="green",shape="box"];462[label="Just vxw30",fontsize=16,color="green",shape="box"];463[label="vxw41",fontsize=16,color="green",shape="box"];464 -> 210[label="",style="dashed", color="red", weight=0]; 26.11/10.20 464[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];464 -> 669[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 464 -> 670[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 465[label="False",fontsize=16,color="green",shape="box"];466[label="False",fontsize=16,color="green",shape="box"];467[label="True",fontsize=16,color="green",shape="box"];468[label="False",fontsize=16,color="green",shape="box"];469[label="True",fontsize=16,color="green",shape="box"];470 -> 210[label="",style="dashed", color="red", weight=0]; 26.11/10.20 470[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];470 -> 671[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 470 -> 672[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 471[label="False",fontsize=16,color="green",shape="box"];472[label="False",fontsize=16,color="green",shape="box"];473[label="True",fontsize=16,color="green",shape="box"];474[label="False",fontsize=16,color="green",shape="box"];475[label="True",fontsize=16,color="green",shape="box"];476[label="vxw4001",fontsize=16,color="green",shape="box"];477[label="vxw301",fontsize=16,color="green",shape="box"];478[label="vxw4001",fontsize=16,color="green",shape="box"];479[label="vxw301",fontsize=16,color="green",shape="box"];480[label="vxw4000",fontsize=16,color="green",shape="box"];481[label="vxw300",fontsize=16,color="green",shape="box"];482[label="vxw4000",fontsize=16,color="green",shape="box"];483[label="vxw300",fontsize=16,color="green",shape="box"];484[label="False",fontsize=16,color="green",shape="box"];485[label="vxw35",fontsize=16,color="green",shape="box"];486[label="vxw4001",fontsize=16,color="green",shape="box"];487[label="vxw301",fontsize=16,color="green",shape="box"];488[label="vxw4001",fontsize=16,color="green",shape="box"];489[label="vxw301",fontsize=16,color="green",shape="box"];490[label="vxw4001",fontsize=16,color="green",shape="box"];491[label="vxw301",fontsize=16,color="green",shape="box"];492[label="vxw4001",fontsize=16,color="green",shape="box"];493[label="vxw301",fontsize=16,color="green",shape="box"];494[label="vxw4001",fontsize=16,color="green",shape="box"];495[label="vxw301",fontsize=16,color="green",shape="box"];496[label="vxw4001",fontsize=16,color="green",shape="box"];497[label="vxw301",fontsize=16,color="green",shape="box"];498[label="vxw4001",fontsize=16,color="green",shape="box"];499[label="vxw301",fontsize=16,color="green",shape="box"];500[label="vxw4001",fontsize=16,color="green",shape="box"];501[label="vxw301",fontsize=16,color="green",shape="box"];502[label="vxw4001",fontsize=16,color="green",shape="box"];503[label="vxw301",fontsize=16,color="green",shape="box"];504[label="vxw4001",fontsize=16,color="green",shape="box"];505[label="vxw301",fontsize=16,color="green",shape="box"];506[label="vxw4001",fontsize=16,color="green",shape="box"];507[label="vxw301",fontsize=16,color="green",shape="box"];508[label="vxw4001",fontsize=16,color="green",shape="box"];509[label="vxw301",fontsize=16,color="green",shape="box"];510[label="vxw4001",fontsize=16,color="green",shape="box"];511[label="vxw301",fontsize=16,color="green",shape="box"];512[label="vxw4001",fontsize=16,color="green",shape="box"];513[label="vxw301",fontsize=16,color="green",shape="box"];514[label="vxw4000",fontsize=16,color="green",shape="box"];515[label="vxw300",fontsize=16,color="green",shape="box"];516[label="vxw4000",fontsize=16,color="green",shape="box"];517[label="vxw300",fontsize=16,color="green",shape="box"];518[label="vxw4000",fontsize=16,color="green",shape="box"];519[label="vxw300",fontsize=16,color="green",shape="box"];520[label="vxw4000",fontsize=16,color="green",shape="box"];521[label="vxw300",fontsize=16,color="green",shape="box"];522[label="vxw4000",fontsize=16,color="green",shape="box"];523[label="vxw300",fontsize=16,color="green",shape="box"];524[label="vxw4000",fontsize=16,color="green",shape="box"];525[label="vxw300",fontsize=16,color="green",shape="box"];526[label="vxw4000",fontsize=16,color="green",shape="box"];527[label="vxw300",fontsize=16,color="green",shape="box"];528[label="vxw4000",fontsize=16,color="green",shape="box"];529[label="vxw300",fontsize=16,color="green",shape="box"];530[label="vxw4000",fontsize=16,color="green",shape="box"];531[label="vxw300",fontsize=16,color="green",shape="box"];532[label="vxw4000",fontsize=16,color="green",shape="box"];533[label="vxw300",fontsize=16,color="green",shape="box"];534[label="vxw4000",fontsize=16,color="green",shape="box"];535[label="vxw300",fontsize=16,color="green",shape="box"];536[label="vxw4000",fontsize=16,color="green",shape="box"];537[label="vxw300",fontsize=16,color="green",shape="box"];538[label="vxw4000",fontsize=16,color="green",shape="box"];539[label="vxw300",fontsize=16,color="green",shape="box"];540[label="vxw4000",fontsize=16,color="green",shape="box"];541[label="vxw300",fontsize=16,color="green",shape="box"];542[label="primMulInt vxw301 vxw4000",fontsize=16,color="burlywood",shape="triangle"];1999[label="vxw301/Pos vxw3010",fontsize=10,color="white",style="solid",shape="box"];542 -> 1999[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 1999 -> 673[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2000[label="vxw301/Neg vxw3010",fontsize=10,color="white",style="solid",shape="box"];542 -> 2000[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2000 -> 674[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 543[label="vxw4001",fontsize=16,color="green",shape="box"];544[label="vxw300",fontsize=16,color="green",shape="box"];545 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 545[label="vxw302 == vxw4002",fontsize=16,color="magenta"];545 -> 675[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 545 -> 676[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 546 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 546[label="vxw302 == vxw4002",fontsize=16,color="magenta"];546 -> 677[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 546 -> 678[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 547 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 547[label="vxw302 == vxw4002",fontsize=16,color="magenta"];547 -> 679[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 547 -> 680[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 548 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 548[label="vxw302 == vxw4002",fontsize=16,color="magenta"];548 -> 681[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 548 -> 682[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 549 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 549[label="vxw302 == vxw4002",fontsize=16,color="magenta"];549 -> 683[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 549 -> 684[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 550 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 550[label="vxw302 == vxw4002",fontsize=16,color="magenta"];550 -> 685[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 550 -> 686[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 551 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 551[label="vxw302 == vxw4002",fontsize=16,color="magenta"];551 -> 687[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 551 -> 688[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 552 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 552[label="vxw302 == vxw4002",fontsize=16,color="magenta"];552 -> 689[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 552 -> 690[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 553 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 553[label="vxw302 == vxw4002",fontsize=16,color="magenta"];553 -> 691[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 553 -> 692[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 554 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 554[label="vxw302 == vxw4002",fontsize=16,color="magenta"];554 -> 693[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 554 -> 694[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 555 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 555[label="vxw302 == vxw4002",fontsize=16,color="magenta"];555 -> 695[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 555 -> 696[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 556 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 556[label="vxw302 == vxw4002",fontsize=16,color="magenta"];556 -> 697[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 556 -> 698[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 557 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 557[label="vxw302 == vxw4002",fontsize=16,color="magenta"];557 -> 699[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 557 -> 700[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 558 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 558[label="vxw302 == vxw4002",fontsize=16,color="magenta"];558 -> 701[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 558 -> 702[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 559 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 559[label="vxw301 == vxw4001",fontsize=16,color="magenta"];559 -> 703[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 559 -> 704[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 560 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 560[label="vxw301 == vxw4001",fontsize=16,color="magenta"];560 -> 705[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 560 -> 706[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 561 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 561[label="vxw301 == vxw4001",fontsize=16,color="magenta"];561 -> 707[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 561 -> 708[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 562 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 562[label="vxw301 == vxw4001",fontsize=16,color="magenta"];562 -> 709[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 562 -> 710[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 563 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 563[label="vxw301 == vxw4001",fontsize=16,color="magenta"];563 -> 711[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 563 -> 712[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 564 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 564[label="vxw301 == vxw4001",fontsize=16,color="magenta"];564 -> 713[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 564 -> 714[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 565 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 565[label="vxw301 == vxw4001",fontsize=16,color="magenta"];565 -> 715[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 565 -> 716[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 566 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 566[label="vxw301 == vxw4001",fontsize=16,color="magenta"];566 -> 717[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 566 -> 718[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 567 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 567[label="vxw301 == vxw4001",fontsize=16,color="magenta"];567 -> 719[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 567 -> 720[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 568 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 568[label="vxw301 == vxw4001",fontsize=16,color="magenta"];568 -> 721[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 568 -> 722[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 569 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 569[label="vxw301 == vxw4001",fontsize=16,color="magenta"];569 -> 723[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 569 -> 724[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 570 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 570[label="vxw301 == vxw4001",fontsize=16,color="magenta"];570 -> 725[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 570 -> 726[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 571 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 571[label="vxw301 == vxw4001",fontsize=16,color="magenta"];571 -> 727[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 571 -> 728[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 572 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 572[label="vxw301 == vxw4001",fontsize=16,color="magenta"];572 -> 729[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 572 -> 730[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 573[label="vxw4000",fontsize=16,color="green",shape="box"];574[label="vxw300",fontsize=16,color="green",shape="box"];575[label="vxw4000",fontsize=16,color="green",shape="box"];576[label="vxw300",fontsize=16,color="green",shape="box"];577[label="vxw4000",fontsize=16,color="green",shape="box"];578[label="vxw300",fontsize=16,color="green",shape="box"];579[label="vxw4000",fontsize=16,color="green",shape="box"];580[label="vxw300",fontsize=16,color="green",shape="box"];581[label="vxw4000",fontsize=16,color="green",shape="box"];582[label="vxw300",fontsize=16,color="green",shape="box"];583[label="vxw4000",fontsize=16,color="green",shape="box"];584[label="vxw300",fontsize=16,color="green",shape="box"];585[label="vxw4000",fontsize=16,color="green",shape="box"];586[label="vxw300",fontsize=16,color="green",shape="box"];587[label="vxw4000",fontsize=16,color="green",shape="box"];588[label="vxw300",fontsize=16,color="green",shape="box"];589[label="vxw4000",fontsize=16,color="green",shape="box"];590[label="vxw300",fontsize=16,color="green",shape="box"];591[label="vxw4000",fontsize=16,color="green",shape="box"];592[label="vxw300",fontsize=16,color="green",shape="box"];593[label="vxw4000",fontsize=16,color="green",shape="box"];594[label="vxw300",fontsize=16,color="green",shape="box"];595[label="vxw4000",fontsize=16,color="green",shape="box"];596[label="vxw300",fontsize=16,color="green",shape="box"];597[label="vxw4000",fontsize=16,color="green",shape="box"];598[label="vxw300",fontsize=16,color="green",shape="box"];599[label="vxw4000",fontsize=16,color="green",shape="box"];600[label="vxw300",fontsize=16,color="green",shape="box"];601[label="vxw4000",fontsize=16,color="green",shape="box"];602[label="vxw300",fontsize=16,color="green",shape="box"];603[label="vxw4000",fontsize=16,color="green",shape="box"];604[label="vxw300",fontsize=16,color="green",shape="box"];605[label="vxw4000",fontsize=16,color="green",shape="box"];606[label="vxw300",fontsize=16,color="green",shape="box"];607[label="vxw4000",fontsize=16,color="green",shape="box"];608[label="vxw300",fontsize=16,color="green",shape="box"];609[label="vxw4000",fontsize=16,color="green",shape="box"];610[label="vxw300",fontsize=16,color="green",shape="box"];611[label="vxw4000",fontsize=16,color="green",shape="box"];612[label="vxw300",fontsize=16,color="green",shape="box"];613[label="vxw4000",fontsize=16,color="green",shape="box"];614[label="vxw300",fontsize=16,color="green",shape="box"];615[label="vxw4000",fontsize=16,color="green",shape="box"];616[label="vxw300",fontsize=16,color="green",shape="box"];617[label="vxw4000",fontsize=16,color="green",shape="box"];618[label="vxw300",fontsize=16,color="green",shape="box"];619[label="vxw4000",fontsize=16,color="green",shape="box"];620[label="vxw300",fontsize=16,color="green",shape="box"];621[label="vxw4000",fontsize=16,color="green",shape="box"];622[label="vxw300",fontsize=16,color="green",shape="box"];623[label="vxw4000",fontsize=16,color="green",shape="box"];624[label="vxw300",fontsize=16,color="green",shape="box"];625[label="vxw4000",fontsize=16,color="green",shape="box"];626[label="vxw300",fontsize=16,color="green",shape="box"];627[label="vxw4000",fontsize=16,color="green",shape="box"];628[label="vxw300",fontsize=16,color="green",shape="box"];629[label="vxw4000",fontsize=16,color="green",shape="box"];630[label="vxw301",fontsize=16,color="green",shape="box"];631[label="vxw4001",fontsize=16,color="green",shape="box"];632[label="vxw300",fontsize=16,color="green",shape="box"];633[label="primEqNat (Succ vxw3000) (Succ vxw40000)",fontsize=16,color="black",shape="box"];633 -> 731[label="",style="solid", color="black", weight=3]; 26.11/10.20 634[label="primEqNat (Succ vxw3000) Zero",fontsize=16,color="black",shape="box"];634 -> 732[label="",style="solid", color="black", weight=3]; 26.11/10.20 635[label="primEqNat Zero (Succ vxw40000)",fontsize=16,color="black",shape="box"];635 -> 733[label="",style="solid", color="black", weight=3]; 26.11/10.20 636[label="primEqNat Zero Zero",fontsize=16,color="black",shape="box"];636 -> 734[label="",style="solid", color="black", weight=3]; 26.11/10.20 637[label="False <= False",fontsize=16,color="black",shape="box"];637 -> 735[label="",style="solid", color="black", weight=3]; 26.11/10.20 638[label="False <= True",fontsize=16,color="black",shape="box"];638 -> 736[label="",style="solid", color="black", weight=3]; 26.11/10.20 639[label="True <= False",fontsize=16,color="black",shape="box"];639 -> 737[label="",style="solid", color="black", weight=3]; 26.11/10.20 640[label="True <= True",fontsize=16,color="black",shape="box"];640 -> 738[label="",style="solid", color="black", weight=3]; 26.11/10.20 641 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 641[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];641 -> 740[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 642[label="LT <= LT",fontsize=16,color="black",shape="box"];642 -> 748[label="",style="solid", color="black", weight=3]; 26.11/10.20 643[label="LT <= EQ",fontsize=16,color="black",shape="box"];643 -> 749[label="",style="solid", color="black", weight=3]; 26.11/10.20 644[label="LT <= GT",fontsize=16,color="black",shape="box"];644 -> 750[label="",style="solid", color="black", weight=3]; 26.11/10.20 645[label="EQ <= LT",fontsize=16,color="black",shape="box"];645 -> 751[label="",style="solid", color="black", weight=3]; 26.11/10.20 646[label="EQ <= EQ",fontsize=16,color="black",shape="box"];646 -> 752[label="",style="solid", color="black", weight=3]; 26.11/10.20 647[label="EQ <= GT",fontsize=16,color="black",shape="box"];647 -> 753[label="",style="solid", color="black", weight=3]; 26.11/10.20 648[label="GT <= LT",fontsize=16,color="black",shape="box"];648 -> 754[label="",style="solid", color="black", weight=3]; 26.11/10.20 649[label="GT <= EQ",fontsize=16,color="black",shape="box"];649 -> 755[label="",style="solid", color="black", weight=3]; 26.11/10.20 650[label="GT <= GT",fontsize=16,color="black",shape="box"];650 -> 756[label="",style="solid", color="black", weight=3]; 26.11/10.20 651 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 651[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];651 -> 741[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 652[label="(vxw110,vxw111) <= (vxw100,vxw101)",fontsize=16,color="black",shape="box"];652 -> 757[label="",style="solid", color="black", weight=3]; 26.11/10.20 653[label="Left vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];653 -> 758[label="",style="solid", color="black", weight=3]; 26.11/10.20 654[label="Left vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];654 -> 759[label="",style="solid", color="black", weight=3]; 26.11/10.20 655[label="Right vxw110 <= Left vxw100",fontsize=16,color="black",shape="box"];655 -> 760[label="",style="solid", color="black", weight=3]; 26.11/10.20 656[label="Right vxw110 <= Right vxw100",fontsize=16,color="black",shape="box"];656 -> 761[label="",style="solid", color="black", weight=3]; 26.11/10.20 657[label="(vxw110,vxw111,vxw112) <= (vxw100,vxw101,vxw102)",fontsize=16,color="black",shape="box"];657 -> 762[label="",style="solid", color="black", weight=3]; 26.11/10.20 658 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 658[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];658 -> 742[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 659 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 659[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];659 -> 743[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 660 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 660[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];660 -> 744[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 661 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 661[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];661 -> 745[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 662[label="Nothing <= Nothing",fontsize=16,color="black",shape="box"];662 -> 763[label="",style="solid", color="black", weight=3]; 26.11/10.20 663[label="Nothing <= Just vxw100",fontsize=16,color="black",shape="box"];663 -> 764[label="",style="solid", color="black", weight=3]; 26.11/10.20 664[label="Just vxw110 <= Nothing",fontsize=16,color="black",shape="box"];664 -> 765[label="",style="solid", color="black", weight=3]; 26.11/10.20 665[label="Just vxw110 <= Just vxw100",fontsize=16,color="black",shape="box"];665 -> 766[label="",style="solid", color="black", weight=3]; 26.11/10.20 666 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 666[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];666 -> 746[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 667 -> 739[label="",style="dashed", color="red", weight=0]; 26.11/10.20 667[label="not (compare vxw11 vxw10 == GT)",fontsize=16,color="magenta"];667 -> 747[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 668[label="List.insertBy0 (Just vxw19) compare (Just vxw20) vxw21 (Just vxw19 : vxw21) GT",fontsize=16,color="black",shape="box"];668 -> 767[label="",style="solid", color="black", weight=3]; 26.11/10.20 669[label="vxw3000",fontsize=16,color="green",shape="box"];670[label="vxw40000",fontsize=16,color="green",shape="box"];671[label="vxw3000",fontsize=16,color="green",shape="box"];672[label="vxw40000",fontsize=16,color="green",shape="box"];673[label="primMulInt (Pos vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2001[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];673 -> 2001[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2001 -> 768[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2002[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];673 -> 2002[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2002 -> 769[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 674[label="primMulInt (Neg vxw3010) vxw4000",fontsize=16,color="burlywood",shape="box"];2003[label="vxw4000/Pos vxw40000",fontsize=10,color="white",style="solid",shape="box"];674 -> 2003[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2003 -> 770[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2004[label="vxw4000/Neg vxw40000",fontsize=10,color="white",style="solid",shape="box"];674 -> 2004[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2004 -> 771[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 675[label="vxw4002",fontsize=16,color="green",shape="box"];676[label="vxw302",fontsize=16,color="green",shape="box"];677[label="vxw4002",fontsize=16,color="green",shape="box"];678[label="vxw302",fontsize=16,color="green",shape="box"];679[label="vxw4002",fontsize=16,color="green",shape="box"];680[label="vxw302",fontsize=16,color="green",shape="box"];681[label="vxw4002",fontsize=16,color="green",shape="box"];682[label="vxw302",fontsize=16,color="green",shape="box"];683[label="vxw4002",fontsize=16,color="green",shape="box"];684[label="vxw302",fontsize=16,color="green",shape="box"];685[label="vxw4002",fontsize=16,color="green",shape="box"];686[label="vxw302",fontsize=16,color="green",shape="box"];687[label="vxw4002",fontsize=16,color="green",shape="box"];688[label="vxw302",fontsize=16,color="green",shape="box"];689[label="vxw4002",fontsize=16,color="green",shape="box"];690[label="vxw302",fontsize=16,color="green",shape="box"];691[label="vxw4002",fontsize=16,color="green",shape="box"];692[label="vxw302",fontsize=16,color="green",shape="box"];693[label="vxw4002",fontsize=16,color="green",shape="box"];694[label="vxw302",fontsize=16,color="green",shape="box"];695[label="vxw4002",fontsize=16,color="green",shape="box"];696[label="vxw302",fontsize=16,color="green",shape="box"];697[label="vxw4002",fontsize=16,color="green",shape="box"];698[label="vxw302",fontsize=16,color="green",shape="box"];699[label="vxw4002",fontsize=16,color="green",shape="box"];700[label="vxw302",fontsize=16,color="green",shape="box"];701[label="vxw4002",fontsize=16,color="green",shape="box"];702[label="vxw302",fontsize=16,color="green",shape="box"];703[label="vxw4001",fontsize=16,color="green",shape="box"];704[label="vxw301",fontsize=16,color="green",shape="box"];705[label="vxw4001",fontsize=16,color="green",shape="box"];706[label="vxw301",fontsize=16,color="green",shape="box"];707[label="vxw4001",fontsize=16,color="green",shape="box"];708[label="vxw301",fontsize=16,color="green",shape="box"];709[label="vxw4001",fontsize=16,color="green",shape="box"];710[label="vxw301",fontsize=16,color="green",shape="box"];711[label="vxw4001",fontsize=16,color="green",shape="box"];712[label="vxw301",fontsize=16,color="green",shape="box"];713[label="vxw4001",fontsize=16,color="green",shape="box"];714[label="vxw301",fontsize=16,color="green",shape="box"];715[label="vxw4001",fontsize=16,color="green",shape="box"];716[label="vxw301",fontsize=16,color="green",shape="box"];717[label="vxw4001",fontsize=16,color="green",shape="box"];718[label="vxw301",fontsize=16,color="green",shape="box"];719[label="vxw4001",fontsize=16,color="green",shape="box"];720[label="vxw301",fontsize=16,color="green",shape="box"];721[label="vxw4001",fontsize=16,color="green",shape="box"];722[label="vxw301",fontsize=16,color="green",shape="box"];723[label="vxw4001",fontsize=16,color="green",shape="box"];724[label="vxw301",fontsize=16,color="green",shape="box"];725[label="vxw4001",fontsize=16,color="green",shape="box"];726[label="vxw301",fontsize=16,color="green",shape="box"];727[label="vxw4001",fontsize=16,color="green",shape="box"];728[label="vxw301",fontsize=16,color="green",shape="box"];729[label="vxw4001",fontsize=16,color="green",shape="box"];730[label="vxw301",fontsize=16,color="green",shape="box"];731 -> 210[label="",style="dashed", color="red", weight=0]; 26.11/10.20 731[label="primEqNat vxw3000 vxw40000",fontsize=16,color="magenta"];731 -> 772[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 731 -> 773[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 732[label="False",fontsize=16,color="green",shape="box"];733[label="False",fontsize=16,color="green",shape="box"];734[label="True",fontsize=16,color="green",shape="box"];735[label="True",fontsize=16,color="green",shape="box"];736[label="True",fontsize=16,color="green",shape="box"];737[label="False",fontsize=16,color="green",shape="box"];738[label="True",fontsize=16,color="green",shape="box"];740 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 740[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];740 -> 774[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 740 -> 775[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 739[label="not vxw36",fontsize=16,color="burlywood",shape="triangle"];2005[label="vxw36/False",fontsize=10,color="white",style="solid",shape="box"];739 -> 2005[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2005 -> 776[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2006[label="vxw36/True",fontsize=10,color="white",style="solid",shape="box"];739 -> 2006[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2006 -> 777[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 748[label="True",fontsize=16,color="green",shape="box"];749[label="True",fontsize=16,color="green",shape="box"];750[label="True",fontsize=16,color="green",shape="box"];751[label="False",fontsize=16,color="green",shape="box"];752[label="True",fontsize=16,color="green",shape="box"];753[label="True",fontsize=16,color="green",shape="box"];754[label="False",fontsize=16,color="green",shape="box"];755[label="False",fontsize=16,color="green",shape="box"];756[label="True",fontsize=16,color="green",shape="box"];741 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 741[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];741 -> 778[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 741 -> 779[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 757 -> 850[label="",style="dashed", color="red", weight=0]; 26.11/10.20 757[label="vxw110 < vxw100 || vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];757 -> 851[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 757 -> 852[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 758[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2007[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2007[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2007 -> 797[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2008[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2008[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2008 -> 798[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2009[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2009[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2009 -> 799[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2010[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2010[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2010 -> 800[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2011[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2011[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2011 -> 801[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2012[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2012[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2012 -> 802[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2013[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2013[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2013 -> 803[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2014[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2014[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2014 -> 804[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2015[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2015[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2015 -> 805[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2016[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2016[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2016 -> 806[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2017[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2017[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2017 -> 807[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2018[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2018[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2018 -> 808[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2019[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2019[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2019 -> 809[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2020[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];758 -> 2020[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2020 -> 810[label="",style="solid", color="blue", weight=3]; 26.11/10.20 759[label="True",fontsize=16,color="green",shape="box"];760[label="False",fontsize=16,color="green",shape="box"];761[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2021[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2021[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2021 -> 811[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2022[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2022[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2022 -> 812[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2023[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2023[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2023 -> 813[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2024[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2024[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2024 -> 814[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2025[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2025[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2025 -> 815[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2026[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2026[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2026 -> 816[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2027[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2027[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2027 -> 817[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2028[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2028[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2028 -> 818[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2029[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2029[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2029 -> 819[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2030[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2030[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2030 -> 820[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2031[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2031[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2031 -> 821[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2032[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2032[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2032 -> 822[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2033[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2033[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2033 -> 823[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2034[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];761 -> 2034[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2034 -> 824[label="",style="solid", color="blue", weight=3]; 26.11/10.20 762 -> 850[label="",style="dashed", color="red", weight=0]; 26.11/10.20 762[label="vxw110 < vxw100 || vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];762 -> 853[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 762 -> 854[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 742 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 742[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];742 -> 780[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 742 -> 781[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 743 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 743[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];743 -> 782[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 743 -> 783[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 744 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 744[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];744 -> 784[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 744 -> 785[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 745 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 745[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];745 -> 786[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 745 -> 787[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 763[label="True",fontsize=16,color="green",shape="box"];764[label="True",fontsize=16,color="green",shape="box"];765[label="False",fontsize=16,color="green",shape="box"];766[label="vxw110 <= vxw100",fontsize=16,color="blue",shape="box"];2035[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2035[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2035 -> 825[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2036[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2036[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2036 -> 826[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2037[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2037[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2037 -> 827[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2038[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2038[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2038 -> 828[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2039[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2039[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2039 -> 829[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2040[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2040[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2040 -> 830[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2041[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2041[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2041 -> 831[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2042[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2042[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2042 -> 832[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2043[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2043[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2043 -> 833[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2044[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2044[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2044 -> 834[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2045[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2045[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2045 -> 835[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2046[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2046[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2046 -> 836[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2047[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2047[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2047 -> 837[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2048[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];766 -> 2048[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2048 -> 838[label="",style="solid", color="blue", weight=3]; 26.11/10.20 746 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 746[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];746 -> 788[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 746 -> 789[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 747 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 747[label="compare vxw11 vxw10 == GT",fontsize=16,color="magenta"];747 -> 790[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 747 -> 791[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 767[label="Just vxw19 : List.insertBy compare (Just vxw20) vxw21",fontsize=16,color="green",shape="box"];767 -> 839[label="",style="dashed", color="green", weight=3]; 26.11/10.20 768[label="primMulInt (Pos vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];768 -> 840[label="",style="solid", color="black", weight=3]; 26.11/10.20 769[label="primMulInt (Pos vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];769 -> 841[label="",style="solid", color="black", weight=3]; 26.11/10.20 770[label="primMulInt (Neg vxw3010) (Pos vxw40000)",fontsize=16,color="black",shape="box"];770 -> 842[label="",style="solid", color="black", weight=3]; 26.11/10.20 771[label="primMulInt (Neg vxw3010) (Neg vxw40000)",fontsize=16,color="black",shape="box"];771 -> 843[label="",style="solid", color="black", weight=3]; 26.11/10.20 772[label="vxw3000",fontsize=16,color="green",shape="box"];773[label="vxw40000",fontsize=16,color="green",shape="box"];774[label="GT",fontsize=16,color="green",shape="box"];775[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];775 -> 844[label="",style="solid", color="black", weight=3]; 26.11/10.20 776[label="not False",fontsize=16,color="black",shape="box"];776 -> 845[label="",style="solid", color="black", weight=3]; 26.11/10.20 777[label="not True",fontsize=16,color="black",shape="box"];777 -> 846[label="",style="solid", color="black", weight=3]; 26.11/10.20 778[label="GT",fontsize=16,color="green",shape="box"];779[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];779 -> 847[label="",style="solid", color="black", weight=3]; 26.11/10.20 851 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.20 851[label="vxw110 == vxw100 && vxw111 <= vxw101",fontsize=16,color="magenta"];851 -> 857[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 851 -> 858[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 852[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2049[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2049[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2049 -> 859[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2050[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2050[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2050 -> 860[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2051[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2051[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2051 -> 861[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2052[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2052[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2052 -> 862[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2053[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2053[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2053 -> 863[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2054[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2054[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2054 -> 864[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2055[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2055[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2055 -> 865[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2056[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2056[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2056 -> 866[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2057[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2057[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2057 -> 867[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2058[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2058[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2058 -> 868[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2059[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2059[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2059 -> 869[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2060[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2060[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2060 -> 870[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2061[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2061[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2061 -> 871[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2062[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];852 -> 2062[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2062 -> 872[label="",style="solid", color="blue", weight=3]; 26.11/10.20 850[label="vxw41 || vxw42",fontsize=16,color="burlywood",shape="triangle"];2063[label="vxw41/False",fontsize=10,color="white",style="solid",shape="box"];850 -> 2063[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2063 -> 873[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2064[label="vxw41/True",fontsize=10,color="white",style="solid",shape="box"];850 -> 2064[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2064 -> 874[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 797 -> 239[label="",style="dashed", color="red", weight=0]; 26.11/10.20 797[label="vxw110 <= vxw100",fontsize=16,color="magenta"];797 -> 875[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 797 -> 876[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 798 -> 240[label="",style="dashed", color="red", weight=0]; 26.11/10.20 798[label="vxw110 <= vxw100",fontsize=16,color="magenta"];798 -> 877[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 798 -> 878[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 799 -> 241[label="",style="dashed", color="red", weight=0]; 26.11/10.20 799[label="vxw110 <= vxw100",fontsize=16,color="magenta"];799 -> 879[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 799 -> 880[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 800 -> 242[label="",style="dashed", color="red", weight=0]; 26.11/10.20 800[label="vxw110 <= vxw100",fontsize=16,color="magenta"];800 -> 881[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 800 -> 882[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 801 -> 243[label="",style="dashed", color="red", weight=0]; 26.11/10.20 801[label="vxw110 <= vxw100",fontsize=16,color="magenta"];801 -> 883[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 801 -> 884[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 802 -> 244[label="",style="dashed", color="red", weight=0]; 26.11/10.20 802[label="vxw110 <= vxw100",fontsize=16,color="magenta"];802 -> 885[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 802 -> 886[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 803 -> 245[label="",style="dashed", color="red", weight=0]; 26.11/10.20 803[label="vxw110 <= vxw100",fontsize=16,color="magenta"];803 -> 887[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 803 -> 888[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 804 -> 246[label="",style="dashed", color="red", weight=0]; 26.11/10.20 804[label="vxw110 <= vxw100",fontsize=16,color="magenta"];804 -> 889[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 804 -> 890[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 805 -> 247[label="",style="dashed", color="red", weight=0]; 26.11/10.20 805[label="vxw110 <= vxw100",fontsize=16,color="magenta"];805 -> 891[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 805 -> 892[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 806 -> 248[label="",style="dashed", color="red", weight=0]; 26.11/10.20 806[label="vxw110 <= vxw100",fontsize=16,color="magenta"];806 -> 893[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 806 -> 894[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 807 -> 249[label="",style="dashed", color="red", weight=0]; 26.11/10.20 807[label="vxw110 <= vxw100",fontsize=16,color="magenta"];807 -> 895[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 807 -> 896[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 808 -> 250[label="",style="dashed", color="red", weight=0]; 26.11/10.20 808[label="vxw110 <= vxw100",fontsize=16,color="magenta"];808 -> 897[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 808 -> 898[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 809 -> 251[label="",style="dashed", color="red", weight=0]; 26.11/10.20 809[label="vxw110 <= vxw100",fontsize=16,color="magenta"];809 -> 899[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 809 -> 900[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 810 -> 252[label="",style="dashed", color="red", weight=0]; 26.11/10.20 810[label="vxw110 <= vxw100",fontsize=16,color="magenta"];810 -> 901[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 810 -> 902[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 811 -> 239[label="",style="dashed", color="red", weight=0]; 26.11/10.20 811[label="vxw110 <= vxw100",fontsize=16,color="magenta"];811 -> 903[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 811 -> 904[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 812 -> 240[label="",style="dashed", color="red", weight=0]; 26.11/10.20 812[label="vxw110 <= vxw100",fontsize=16,color="magenta"];812 -> 905[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 812 -> 906[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 813 -> 241[label="",style="dashed", color="red", weight=0]; 26.11/10.20 813[label="vxw110 <= vxw100",fontsize=16,color="magenta"];813 -> 907[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 813 -> 908[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 814 -> 242[label="",style="dashed", color="red", weight=0]; 26.11/10.20 814[label="vxw110 <= vxw100",fontsize=16,color="magenta"];814 -> 909[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 814 -> 910[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 815 -> 243[label="",style="dashed", color="red", weight=0]; 26.11/10.20 815[label="vxw110 <= vxw100",fontsize=16,color="magenta"];815 -> 911[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 815 -> 912[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 816 -> 244[label="",style="dashed", color="red", weight=0]; 26.11/10.20 816[label="vxw110 <= vxw100",fontsize=16,color="magenta"];816 -> 913[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 816 -> 914[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 817 -> 245[label="",style="dashed", color="red", weight=0]; 26.11/10.20 817[label="vxw110 <= vxw100",fontsize=16,color="magenta"];817 -> 915[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 817 -> 916[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 818 -> 246[label="",style="dashed", color="red", weight=0]; 26.11/10.20 818[label="vxw110 <= vxw100",fontsize=16,color="magenta"];818 -> 917[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 818 -> 918[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 819 -> 247[label="",style="dashed", color="red", weight=0]; 26.11/10.20 819[label="vxw110 <= vxw100",fontsize=16,color="magenta"];819 -> 919[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 819 -> 920[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 820 -> 248[label="",style="dashed", color="red", weight=0]; 26.11/10.20 820[label="vxw110 <= vxw100",fontsize=16,color="magenta"];820 -> 921[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 820 -> 922[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 821 -> 249[label="",style="dashed", color="red", weight=0]; 26.11/10.20 821[label="vxw110 <= vxw100",fontsize=16,color="magenta"];821 -> 923[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 821 -> 924[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 822 -> 250[label="",style="dashed", color="red", weight=0]; 26.11/10.20 822[label="vxw110 <= vxw100",fontsize=16,color="magenta"];822 -> 925[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 822 -> 926[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 823 -> 251[label="",style="dashed", color="red", weight=0]; 26.11/10.20 823[label="vxw110 <= vxw100",fontsize=16,color="magenta"];823 -> 927[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 823 -> 928[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 824 -> 252[label="",style="dashed", color="red", weight=0]; 26.11/10.20 824[label="vxw110 <= vxw100",fontsize=16,color="magenta"];824 -> 929[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 824 -> 930[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 853 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.20 853[label="vxw110 == vxw100 && (vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102)",fontsize=16,color="magenta"];853 -> 931[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 853 -> 932[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 854[label="vxw110 < vxw100",fontsize=16,color="blue",shape="box"];2065[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2065[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2065 -> 933[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2066[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2066[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2066 -> 934[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2067[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2067[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2067 -> 935[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2068[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2068[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2068 -> 936[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2069[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2069[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2069 -> 937[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2070[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2070[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2070 -> 938[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2071[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2071[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2071 -> 939[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2072[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2072[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2072 -> 940[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2073[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2073[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2073 -> 941[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2074[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2074[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2074 -> 942[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2075[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2075[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2075 -> 943[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2076[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2076[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2076 -> 944[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2077[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2077[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2077 -> 945[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2078[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];854 -> 2078[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2078 -> 946[label="",style="solid", color="blue", weight=3]; 26.11/10.20 780[label="GT",fontsize=16,color="green",shape="box"];781[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2079[label="vxw11/vxw110 :% vxw111",fontsize=10,color="white",style="solid",shape="box"];781 -> 2079[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2079 -> 947[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 782[label="GT",fontsize=16,color="green",shape="box"];783[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];783 -> 948[label="",style="solid", color="black", weight=3]; 26.11/10.20 784[label="GT",fontsize=16,color="green",shape="box"];785[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2080[label="vxw11/Integer vxw110",fontsize=10,color="white",style="solid",shape="box"];785 -> 2080[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2080 -> 949[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 786[label="GT",fontsize=16,color="green",shape="box"];787[label="compare vxw11 vxw10",fontsize=16,color="black",shape="triangle"];787 -> 950[label="",style="solid", color="black", weight=3]; 26.11/10.20 825 -> 239[label="",style="dashed", color="red", weight=0]; 26.11/10.20 825[label="vxw110 <= vxw100",fontsize=16,color="magenta"];825 -> 951[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 825 -> 952[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 826 -> 240[label="",style="dashed", color="red", weight=0]; 26.11/10.20 826[label="vxw110 <= vxw100",fontsize=16,color="magenta"];826 -> 953[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 826 -> 954[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 827 -> 241[label="",style="dashed", color="red", weight=0]; 26.11/10.20 827[label="vxw110 <= vxw100",fontsize=16,color="magenta"];827 -> 955[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 827 -> 956[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 828 -> 242[label="",style="dashed", color="red", weight=0]; 26.11/10.20 828[label="vxw110 <= vxw100",fontsize=16,color="magenta"];828 -> 957[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 828 -> 958[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 829 -> 243[label="",style="dashed", color="red", weight=0]; 26.11/10.20 829[label="vxw110 <= vxw100",fontsize=16,color="magenta"];829 -> 959[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 829 -> 960[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 830 -> 244[label="",style="dashed", color="red", weight=0]; 26.11/10.20 830[label="vxw110 <= vxw100",fontsize=16,color="magenta"];830 -> 961[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 830 -> 962[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 831 -> 245[label="",style="dashed", color="red", weight=0]; 26.11/10.20 831[label="vxw110 <= vxw100",fontsize=16,color="magenta"];831 -> 963[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 831 -> 964[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 832 -> 246[label="",style="dashed", color="red", weight=0]; 26.11/10.20 832[label="vxw110 <= vxw100",fontsize=16,color="magenta"];832 -> 965[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 832 -> 966[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 833 -> 247[label="",style="dashed", color="red", weight=0]; 26.11/10.20 833[label="vxw110 <= vxw100",fontsize=16,color="magenta"];833 -> 967[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 833 -> 968[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 834 -> 248[label="",style="dashed", color="red", weight=0]; 26.11/10.20 834[label="vxw110 <= vxw100",fontsize=16,color="magenta"];834 -> 969[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 834 -> 970[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 835 -> 249[label="",style="dashed", color="red", weight=0]; 26.11/10.20 835[label="vxw110 <= vxw100",fontsize=16,color="magenta"];835 -> 971[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 835 -> 972[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 836 -> 250[label="",style="dashed", color="red", weight=0]; 26.11/10.20 836[label="vxw110 <= vxw100",fontsize=16,color="magenta"];836 -> 973[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 836 -> 974[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 837 -> 251[label="",style="dashed", color="red", weight=0]; 26.11/10.20 837[label="vxw110 <= vxw100",fontsize=16,color="magenta"];837 -> 975[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 837 -> 976[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 838 -> 252[label="",style="dashed", color="red", weight=0]; 26.11/10.20 838[label="vxw110 <= vxw100",fontsize=16,color="magenta"];838 -> 977[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 838 -> 978[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 788[label="GT",fontsize=16,color="green",shape="box"];789[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2081[label="vxw11/()",fontsize=10,color="white",style="solid",shape="box"];789 -> 2081[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2081 -> 979[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 790[label="GT",fontsize=16,color="green",shape="box"];791[label="compare vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2082[label="vxw11/vxw110 : vxw111",fontsize=10,color="white",style="solid",shape="box"];791 -> 2082[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2082 -> 980[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2083[label="vxw11/[]",fontsize=10,color="white",style="solid",shape="box"];791 -> 2083[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2083 -> 981[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 839 -> 5[label="",style="dashed", color="red", weight=0]; 26.11/10.20 839[label="List.insertBy compare (Just vxw20) vxw21",fontsize=16,color="magenta"];839 -> 982[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 839 -> 983[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 840[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];840 -> 984[label="",style="dashed", color="green", weight=3]; 26.11/10.20 841[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];841 -> 985[label="",style="dashed", color="green", weight=3]; 26.11/10.20 842[label="Neg (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];842 -> 986[label="",style="dashed", color="green", weight=3]; 26.11/10.20 843[label="Pos (primMulNat vxw3010 vxw40000)",fontsize=16,color="green",shape="box"];843 -> 987[label="",style="dashed", color="green", weight=3]; 26.11/10.20 844[label="primCmpInt vxw11 vxw10",fontsize=16,color="burlywood",shape="triangle"];2084[label="vxw11/Pos vxw110",fontsize=10,color="white",style="solid",shape="box"];844 -> 2084[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2084 -> 988[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2085[label="vxw11/Neg vxw110",fontsize=10,color="white",style="solid",shape="box"];844 -> 2085[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2085 -> 989[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 845[label="True",fontsize=16,color="green",shape="box"];846[label="False",fontsize=16,color="green",shape="box"];847[label="primCmpDouble vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2086[label="vxw11/Double vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];847 -> 2086[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2086 -> 990[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 857[label="vxw111 <= vxw101",fontsize=16,color="blue",shape="box"];2087[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2087[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2087 -> 991[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2088[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2088[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2088 -> 992[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2089[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2089[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2089 -> 993[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2090[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2090[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2090 -> 994[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2091[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2091[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2091 -> 995[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2092[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2092[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2092 -> 996[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2093[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2093[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2093 -> 997[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2094[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2094[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2094 -> 998[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2095[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2095[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2095 -> 999[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2096[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2096[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2096 -> 1000[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2097[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2097[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2097 -> 1001[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2098[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2098[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2098 -> 1002[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2099[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2099[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2099 -> 1003[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2100[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];857 -> 2100[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2100 -> 1004[label="",style="solid", color="blue", weight=3]; 26.11/10.20 858[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2101[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2101[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2101 -> 1005[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2102[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2102[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2102 -> 1006[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2103[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2103[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2103 -> 1007[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2104[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2104[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2104 -> 1008[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2105[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2105[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2105 -> 1009[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2106[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2106[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2106 -> 1010[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2107[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2107[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2107 -> 1011[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2108[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2108[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2108 -> 1012[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2109[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2109[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2109 -> 1013[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2110[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2110[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2110 -> 1014[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2111[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2111[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2111 -> 1015[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2112[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2112[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2112 -> 1016[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2113[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2113[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2113 -> 1017[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2114[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];858 -> 2114[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2114 -> 1018[label="",style="solid", color="blue", weight=3]; 26.11/10.20 859[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];859 -> 1019[label="",style="solid", color="black", weight=3]; 26.11/10.20 860[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];860 -> 1020[label="",style="solid", color="black", weight=3]; 26.11/10.20 861[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];861 -> 1021[label="",style="solid", color="black", weight=3]; 26.11/10.20 862[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];862 -> 1022[label="",style="solid", color="black", weight=3]; 26.11/10.20 863[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];863 -> 1023[label="",style="solid", color="black", weight=3]; 26.11/10.20 864[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];864 -> 1024[label="",style="solid", color="black", weight=3]; 26.11/10.20 865[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];865 -> 1025[label="",style="solid", color="black", weight=3]; 26.11/10.20 866[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];866 -> 1026[label="",style="solid", color="black", weight=3]; 26.11/10.20 867[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];867 -> 1027[label="",style="solid", color="black", weight=3]; 26.11/10.20 868[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];868 -> 1028[label="",style="solid", color="black", weight=3]; 26.11/10.20 869[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];869 -> 1029[label="",style="solid", color="black", weight=3]; 26.11/10.20 870[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];870 -> 1030[label="",style="solid", color="black", weight=3]; 26.11/10.20 871[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];871 -> 1031[label="",style="solid", color="black", weight=3]; 26.11/10.20 872[label="vxw110 < vxw100",fontsize=16,color="black",shape="triangle"];872 -> 1032[label="",style="solid", color="black", weight=3]; 26.11/10.20 873[label="False || vxw42",fontsize=16,color="black",shape="box"];873 -> 1033[label="",style="solid", color="black", weight=3]; 26.11/10.20 874[label="True || vxw42",fontsize=16,color="black",shape="box"];874 -> 1034[label="",style="solid", color="black", weight=3]; 26.11/10.20 875[label="vxw100",fontsize=16,color="green",shape="box"];876[label="vxw110",fontsize=16,color="green",shape="box"];877[label="vxw100",fontsize=16,color="green",shape="box"];878[label="vxw110",fontsize=16,color="green",shape="box"];879[label="vxw100",fontsize=16,color="green",shape="box"];880[label="vxw110",fontsize=16,color="green",shape="box"];881[label="vxw100",fontsize=16,color="green",shape="box"];882[label="vxw110",fontsize=16,color="green",shape="box"];883[label="vxw100",fontsize=16,color="green",shape="box"];884[label="vxw110",fontsize=16,color="green",shape="box"];885[label="vxw100",fontsize=16,color="green",shape="box"];886[label="vxw110",fontsize=16,color="green",shape="box"];887[label="vxw100",fontsize=16,color="green",shape="box"];888[label="vxw110",fontsize=16,color="green",shape="box"];889[label="vxw100",fontsize=16,color="green",shape="box"];890[label="vxw110",fontsize=16,color="green",shape="box"];891[label="vxw100",fontsize=16,color="green",shape="box"];892[label="vxw110",fontsize=16,color="green",shape="box"];893[label="vxw100",fontsize=16,color="green",shape="box"];894[label="vxw110",fontsize=16,color="green",shape="box"];895[label="vxw100",fontsize=16,color="green",shape="box"];896[label="vxw110",fontsize=16,color="green",shape="box"];897[label="vxw100",fontsize=16,color="green",shape="box"];898[label="vxw110",fontsize=16,color="green",shape="box"];899[label="vxw100",fontsize=16,color="green",shape="box"];900[label="vxw110",fontsize=16,color="green",shape="box"];901[label="vxw100",fontsize=16,color="green",shape="box"];902[label="vxw110",fontsize=16,color="green",shape="box"];903[label="vxw100",fontsize=16,color="green",shape="box"];904[label="vxw110",fontsize=16,color="green",shape="box"];905[label="vxw100",fontsize=16,color="green",shape="box"];906[label="vxw110",fontsize=16,color="green",shape="box"];907[label="vxw100",fontsize=16,color="green",shape="box"];908[label="vxw110",fontsize=16,color="green",shape="box"];909[label="vxw100",fontsize=16,color="green",shape="box"];910[label="vxw110",fontsize=16,color="green",shape="box"];911[label="vxw100",fontsize=16,color="green",shape="box"];912[label="vxw110",fontsize=16,color="green",shape="box"];913[label="vxw100",fontsize=16,color="green",shape="box"];914[label="vxw110",fontsize=16,color="green",shape="box"];915[label="vxw100",fontsize=16,color="green",shape="box"];916[label="vxw110",fontsize=16,color="green",shape="box"];917[label="vxw100",fontsize=16,color="green",shape="box"];918[label="vxw110",fontsize=16,color="green",shape="box"];919[label="vxw100",fontsize=16,color="green",shape="box"];920[label="vxw110",fontsize=16,color="green",shape="box"];921[label="vxw100",fontsize=16,color="green",shape="box"];922[label="vxw110",fontsize=16,color="green",shape="box"];923[label="vxw100",fontsize=16,color="green",shape="box"];924[label="vxw110",fontsize=16,color="green",shape="box"];925[label="vxw100",fontsize=16,color="green",shape="box"];926[label="vxw110",fontsize=16,color="green",shape="box"];927[label="vxw100",fontsize=16,color="green",shape="box"];928[label="vxw110",fontsize=16,color="green",shape="box"];929[label="vxw100",fontsize=16,color="green",shape="box"];930[label="vxw110",fontsize=16,color="green",shape="box"];931 -> 850[label="",style="dashed", color="red", weight=0]; 26.11/10.20 931[label="vxw111 < vxw101 || vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];931 -> 1035[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 931 -> 1036[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 932[label="vxw110 == vxw100",fontsize=16,color="blue",shape="box"];2115[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2115[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2115 -> 1037[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2116[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2116[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2116 -> 1038[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2117[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2117[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2117 -> 1039[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2118[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2118[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2118 -> 1040[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2119[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2119[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2119 -> 1041[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2120[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2120[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2120 -> 1042[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2121[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2121[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2121 -> 1043[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2122[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2122[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2122 -> 1044[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2123[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2123[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2123 -> 1045[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2124[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2124[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2124 -> 1046[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2125[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2125[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2125 -> 1047[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2126[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2126[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2126 -> 1048[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2127[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2127[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2127 -> 1049[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2128[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];932 -> 2128[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2128 -> 1050[label="",style="solid", color="blue", weight=3]; 26.11/10.20 933 -> 859[label="",style="dashed", color="red", weight=0]; 26.11/10.20 933[label="vxw110 < vxw100",fontsize=16,color="magenta"];933 -> 1051[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 933 -> 1052[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 934 -> 860[label="",style="dashed", color="red", weight=0]; 26.11/10.20 934[label="vxw110 < vxw100",fontsize=16,color="magenta"];934 -> 1053[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 934 -> 1054[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 935 -> 861[label="",style="dashed", color="red", weight=0]; 26.11/10.20 935[label="vxw110 < vxw100",fontsize=16,color="magenta"];935 -> 1055[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 935 -> 1056[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 936 -> 862[label="",style="dashed", color="red", weight=0]; 26.11/10.20 936[label="vxw110 < vxw100",fontsize=16,color="magenta"];936 -> 1057[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 936 -> 1058[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 937 -> 863[label="",style="dashed", color="red", weight=0]; 26.11/10.20 937[label="vxw110 < vxw100",fontsize=16,color="magenta"];937 -> 1059[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 937 -> 1060[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 938 -> 864[label="",style="dashed", color="red", weight=0]; 26.11/10.20 938[label="vxw110 < vxw100",fontsize=16,color="magenta"];938 -> 1061[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 938 -> 1062[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 939 -> 865[label="",style="dashed", color="red", weight=0]; 26.11/10.20 939[label="vxw110 < vxw100",fontsize=16,color="magenta"];939 -> 1063[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 939 -> 1064[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 940 -> 866[label="",style="dashed", color="red", weight=0]; 26.11/10.20 940[label="vxw110 < vxw100",fontsize=16,color="magenta"];940 -> 1065[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 940 -> 1066[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 941 -> 867[label="",style="dashed", color="red", weight=0]; 26.11/10.20 941[label="vxw110 < vxw100",fontsize=16,color="magenta"];941 -> 1067[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 941 -> 1068[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 942 -> 868[label="",style="dashed", color="red", weight=0]; 26.11/10.20 942[label="vxw110 < vxw100",fontsize=16,color="magenta"];942 -> 1069[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 942 -> 1070[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 943 -> 869[label="",style="dashed", color="red", weight=0]; 26.11/10.20 943[label="vxw110 < vxw100",fontsize=16,color="magenta"];943 -> 1071[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 943 -> 1072[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 944 -> 870[label="",style="dashed", color="red", weight=0]; 26.11/10.20 944[label="vxw110 < vxw100",fontsize=16,color="magenta"];944 -> 1073[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 944 -> 1074[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 945 -> 871[label="",style="dashed", color="red", weight=0]; 26.11/10.20 945[label="vxw110 < vxw100",fontsize=16,color="magenta"];945 -> 1075[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 945 -> 1076[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 946 -> 872[label="",style="dashed", color="red", weight=0]; 26.11/10.20 946[label="vxw110 < vxw100",fontsize=16,color="magenta"];946 -> 1077[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 946 -> 1078[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 947[label="compare (vxw110 :% vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2129[label="vxw10/vxw100 :% vxw101",fontsize=10,color="white",style="solid",shape="box"];947 -> 2129[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2129 -> 1079[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 948[label="primCmpFloat vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2130[label="vxw11/Float vxw110 vxw111",fontsize=10,color="white",style="solid",shape="box"];948 -> 2130[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2130 -> 1080[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 949[label="compare (Integer vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2131[label="vxw10/Integer vxw100",fontsize=10,color="white",style="solid",shape="box"];949 -> 2131[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2131 -> 1081[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 950[label="primCmpChar vxw11 vxw10",fontsize=16,color="burlywood",shape="box"];2132[label="vxw11/Char vxw110",fontsize=10,color="white",style="solid",shape="box"];950 -> 2132[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2132 -> 1082[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 951[label="vxw100",fontsize=16,color="green",shape="box"];952[label="vxw110",fontsize=16,color="green",shape="box"];953[label="vxw100",fontsize=16,color="green",shape="box"];954[label="vxw110",fontsize=16,color="green",shape="box"];955[label="vxw100",fontsize=16,color="green",shape="box"];956[label="vxw110",fontsize=16,color="green",shape="box"];957[label="vxw100",fontsize=16,color="green",shape="box"];958[label="vxw110",fontsize=16,color="green",shape="box"];959[label="vxw100",fontsize=16,color="green",shape="box"];960[label="vxw110",fontsize=16,color="green",shape="box"];961[label="vxw100",fontsize=16,color="green",shape="box"];962[label="vxw110",fontsize=16,color="green",shape="box"];963[label="vxw100",fontsize=16,color="green",shape="box"];964[label="vxw110",fontsize=16,color="green",shape="box"];965[label="vxw100",fontsize=16,color="green",shape="box"];966[label="vxw110",fontsize=16,color="green",shape="box"];967[label="vxw100",fontsize=16,color="green",shape="box"];968[label="vxw110",fontsize=16,color="green",shape="box"];969[label="vxw100",fontsize=16,color="green",shape="box"];970[label="vxw110",fontsize=16,color="green",shape="box"];971[label="vxw100",fontsize=16,color="green",shape="box"];972[label="vxw110",fontsize=16,color="green",shape="box"];973[label="vxw100",fontsize=16,color="green",shape="box"];974[label="vxw110",fontsize=16,color="green",shape="box"];975[label="vxw100",fontsize=16,color="green",shape="box"];976[label="vxw110",fontsize=16,color="green",shape="box"];977[label="vxw100",fontsize=16,color="green",shape="box"];978[label="vxw110",fontsize=16,color="green",shape="box"];979[label="compare () vxw10",fontsize=16,color="burlywood",shape="box"];2133[label="vxw10/()",fontsize=10,color="white",style="solid",shape="box"];979 -> 2133[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2133 -> 1083[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 980[label="compare (vxw110 : vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2134[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];980 -> 2134[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2134 -> 1084[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2135[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];980 -> 2135[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2135 -> 1085[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 981[label="compare [] vxw10",fontsize=16,color="burlywood",shape="box"];2136[label="vxw10/vxw100 : vxw101",fontsize=10,color="white",style="solid",shape="box"];981 -> 2136[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2136 -> 1086[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2137[label="vxw10/[]",fontsize=10,color="white",style="solid",shape="box"];981 -> 2137[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2137 -> 1087[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 982[label="Just vxw20",fontsize=16,color="green",shape="box"];983[label="vxw21",fontsize=16,color="green",shape="box"];984[label="primMulNat vxw3010 vxw40000",fontsize=16,color="burlywood",shape="triangle"];2138[label="vxw3010/Succ vxw30100",fontsize=10,color="white",style="solid",shape="box"];984 -> 2138[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2138 -> 1088[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2139[label="vxw3010/Zero",fontsize=10,color="white",style="solid",shape="box"];984 -> 2139[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2139 -> 1089[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 985 -> 984[label="",style="dashed", color="red", weight=0]; 26.11/10.20 985[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];985 -> 1090[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 986 -> 984[label="",style="dashed", color="red", weight=0]; 26.11/10.20 986[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];986 -> 1091[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 987 -> 984[label="",style="dashed", color="red", weight=0]; 26.11/10.20 987[label="primMulNat vxw3010 vxw40000",fontsize=16,color="magenta"];987 -> 1092[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 987 -> 1093[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 988[label="primCmpInt (Pos vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2140[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];988 -> 2140[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2140 -> 1094[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2141[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];988 -> 2141[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2141 -> 1095[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 989[label="primCmpInt (Neg vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2142[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];989 -> 2142[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2142 -> 1096[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2143[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];989 -> 2143[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2143 -> 1097[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 990[label="primCmpDouble (Double vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2144[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];990 -> 2144[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2144 -> 1098[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2145[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];990 -> 2145[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2145 -> 1099[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 991 -> 239[label="",style="dashed", color="red", weight=0]; 26.11/10.20 991[label="vxw111 <= vxw101",fontsize=16,color="magenta"];991 -> 1100[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 991 -> 1101[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 992 -> 240[label="",style="dashed", color="red", weight=0]; 26.11/10.20 992[label="vxw111 <= vxw101",fontsize=16,color="magenta"];992 -> 1102[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 992 -> 1103[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 993 -> 241[label="",style="dashed", color="red", weight=0]; 26.11/10.20 993[label="vxw111 <= vxw101",fontsize=16,color="magenta"];993 -> 1104[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 993 -> 1105[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 994 -> 242[label="",style="dashed", color="red", weight=0]; 26.11/10.20 994[label="vxw111 <= vxw101",fontsize=16,color="magenta"];994 -> 1106[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 994 -> 1107[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 995 -> 243[label="",style="dashed", color="red", weight=0]; 26.11/10.20 995[label="vxw111 <= vxw101",fontsize=16,color="magenta"];995 -> 1108[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 995 -> 1109[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 996 -> 244[label="",style="dashed", color="red", weight=0]; 26.11/10.20 996[label="vxw111 <= vxw101",fontsize=16,color="magenta"];996 -> 1110[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 996 -> 1111[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 997 -> 245[label="",style="dashed", color="red", weight=0]; 26.11/10.20 997[label="vxw111 <= vxw101",fontsize=16,color="magenta"];997 -> 1112[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 997 -> 1113[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 998 -> 246[label="",style="dashed", color="red", weight=0]; 26.11/10.20 998[label="vxw111 <= vxw101",fontsize=16,color="magenta"];998 -> 1114[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 998 -> 1115[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 999 -> 247[label="",style="dashed", color="red", weight=0]; 26.11/10.20 999[label="vxw111 <= vxw101",fontsize=16,color="magenta"];999 -> 1116[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 999 -> 1117[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1000 -> 248[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1000[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1000 -> 1118[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1000 -> 1119[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1001 -> 249[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1001[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1001 -> 1120[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1001 -> 1121[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1002 -> 250[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1002[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1002 -> 1122[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1002 -> 1123[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1003 -> 251[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1003[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1003 -> 1124[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1003 -> 1125[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1004 -> 252[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1004[label="vxw111 <= vxw101",fontsize=16,color="magenta"];1004 -> 1126[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1004 -> 1127[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1005 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1005[label="vxw110 == vxw100",fontsize=16,color="magenta"];1005 -> 1128[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1005 -> 1129[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1006 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1006[label="vxw110 == vxw100",fontsize=16,color="magenta"];1006 -> 1130[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1006 -> 1131[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1007 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1007[label="vxw110 == vxw100",fontsize=16,color="magenta"];1007 -> 1132[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1007 -> 1133[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1008 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1008[label="vxw110 == vxw100",fontsize=16,color="magenta"];1008 -> 1134[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1008 -> 1135[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1009 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1009[label="vxw110 == vxw100",fontsize=16,color="magenta"];1009 -> 1136[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1009 -> 1137[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1010 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1010[label="vxw110 == vxw100",fontsize=16,color="magenta"];1010 -> 1138[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1010 -> 1139[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1011 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1011[label="vxw110 == vxw100",fontsize=16,color="magenta"];1011 -> 1140[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1011 -> 1141[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1012 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1012[label="vxw110 == vxw100",fontsize=16,color="magenta"];1012 -> 1142[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1012 -> 1143[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1013 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1013[label="vxw110 == vxw100",fontsize=16,color="magenta"];1013 -> 1144[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1013 -> 1145[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1014 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1014[label="vxw110 == vxw100",fontsize=16,color="magenta"];1014 -> 1146[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1014 -> 1147[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1015 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1015[label="vxw110 == vxw100",fontsize=16,color="magenta"];1015 -> 1148[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1015 -> 1149[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1016 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1016[label="vxw110 == vxw100",fontsize=16,color="magenta"];1016 -> 1150[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1016 -> 1151[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1017 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1017[label="vxw110 == vxw100",fontsize=16,color="magenta"];1017 -> 1152[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1017 -> 1153[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1018 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1018[label="vxw110 == vxw100",fontsize=16,color="magenta"];1018 -> 1154[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1018 -> 1155[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1019 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1019[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1019 -> 1156[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1019 -> 1157[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1020 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1020[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1020 -> 1158[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1020 -> 1159[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1021 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1021[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1021 -> 1160[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1021 -> 1161[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1022 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1022[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1022 -> 1162[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1022 -> 1163[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1023 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1023[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1023 -> 1164[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1023 -> 1165[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1024 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1024[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1024 -> 1166[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1024 -> 1167[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1025 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1025[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1025 -> 1168[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1025 -> 1169[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1026 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1026[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1026 -> 1170[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1026 -> 1171[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1027 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1027[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1027 -> 1172[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1027 -> 1173[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1028 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1028[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1028 -> 1174[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1028 -> 1175[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1029 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1029[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1029 -> 1176[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1029 -> 1177[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1030 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1030[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1030 -> 1178[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1030 -> 1179[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1031 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1031[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1031 -> 1180[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1031 -> 1181[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1032 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1032[label="compare vxw110 vxw100 == LT",fontsize=16,color="magenta"];1032 -> 1182[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1032 -> 1183[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1033[label="vxw42",fontsize=16,color="green",shape="box"];1034[label="True",fontsize=16,color="green",shape="box"];1035 -> 272[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1035[label="vxw111 == vxw101 && vxw112 <= vxw102",fontsize=16,color="magenta"];1035 -> 1184[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1035 -> 1185[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1036[label="vxw111 < vxw101",fontsize=16,color="blue",shape="box"];2146[label="< :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2146[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2146 -> 1186[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2147[label="< :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2147[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2147 -> 1187[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2148[label="< :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2148[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2148 -> 1188[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2149[label="< :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2149[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2149 -> 1189[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2150[label="< :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2150[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2150 -> 1190[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2151[label="< :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2151[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2151 -> 1191[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2152[label="< :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2152[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2152 -> 1192[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2153[label="< :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2153[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2153 -> 1193[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2154[label="< :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2154[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2154 -> 1194[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2155[label="< :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2155[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2155 -> 1195[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2156[label="< :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2156[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2156 -> 1196[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2157[label="< :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2157[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2157 -> 1197[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2158[label="< :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2158[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2158 -> 1198[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2159[label="< :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1036 -> 2159[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2159 -> 1199[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1037 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1037[label="vxw110 == vxw100",fontsize=16,color="magenta"];1037 -> 1200[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1037 -> 1201[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1038 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1038[label="vxw110 == vxw100",fontsize=16,color="magenta"];1038 -> 1202[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1038 -> 1203[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1039 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1039[label="vxw110 == vxw100",fontsize=16,color="magenta"];1039 -> 1204[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1039 -> 1205[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1040 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1040[label="vxw110 == vxw100",fontsize=16,color="magenta"];1040 -> 1206[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1040 -> 1207[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1041 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1041[label="vxw110 == vxw100",fontsize=16,color="magenta"];1041 -> 1208[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1041 -> 1209[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1042 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1042[label="vxw110 == vxw100",fontsize=16,color="magenta"];1042 -> 1210[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1042 -> 1211[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1043 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1043[label="vxw110 == vxw100",fontsize=16,color="magenta"];1043 -> 1212[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1043 -> 1213[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1044 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1044[label="vxw110 == vxw100",fontsize=16,color="magenta"];1044 -> 1214[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1044 -> 1215[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1045 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1045[label="vxw110 == vxw100",fontsize=16,color="magenta"];1045 -> 1216[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1045 -> 1217[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1046 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1046[label="vxw110 == vxw100",fontsize=16,color="magenta"];1046 -> 1218[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1046 -> 1219[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1047 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1047[label="vxw110 == vxw100",fontsize=16,color="magenta"];1047 -> 1220[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1047 -> 1221[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1048 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1048[label="vxw110 == vxw100",fontsize=16,color="magenta"];1048 -> 1222[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1048 -> 1223[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1049 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1049[label="vxw110 == vxw100",fontsize=16,color="magenta"];1049 -> 1224[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1049 -> 1225[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1050 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1050[label="vxw110 == vxw100",fontsize=16,color="magenta"];1050 -> 1226[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1050 -> 1227[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1051[label="vxw100",fontsize=16,color="green",shape="box"];1052[label="vxw110",fontsize=16,color="green",shape="box"];1053[label="vxw100",fontsize=16,color="green",shape="box"];1054[label="vxw110",fontsize=16,color="green",shape="box"];1055[label="vxw100",fontsize=16,color="green",shape="box"];1056[label="vxw110",fontsize=16,color="green",shape="box"];1057[label="vxw100",fontsize=16,color="green",shape="box"];1058[label="vxw110",fontsize=16,color="green",shape="box"];1059[label="vxw100",fontsize=16,color="green",shape="box"];1060[label="vxw110",fontsize=16,color="green",shape="box"];1061[label="vxw100",fontsize=16,color="green",shape="box"];1062[label="vxw110",fontsize=16,color="green",shape="box"];1063[label="vxw100",fontsize=16,color="green",shape="box"];1064[label="vxw110",fontsize=16,color="green",shape="box"];1065[label="vxw100",fontsize=16,color="green",shape="box"];1066[label="vxw110",fontsize=16,color="green",shape="box"];1067[label="vxw100",fontsize=16,color="green",shape="box"];1068[label="vxw110",fontsize=16,color="green",shape="box"];1069[label="vxw100",fontsize=16,color="green",shape="box"];1070[label="vxw110",fontsize=16,color="green",shape="box"];1071[label="vxw100",fontsize=16,color="green",shape="box"];1072[label="vxw110",fontsize=16,color="green",shape="box"];1073[label="vxw100",fontsize=16,color="green",shape="box"];1074[label="vxw110",fontsize=16,color="green",shape="box"];1075[label="vxw100",fontsize=16,color="green",shape="box"];1076[label="vxw110",fontsize=16,color="green",shape="box"];1077[label="vxw100",fontsize=16,color="green",shape="box"];1078[label="vxw110",fontsize=16,color="green",shape="box"];1079[label="compare (vxw110 :% vxw111) (vxw100 :% vxw101)",fontsize=16,color="black",shape="box"];1079 -> 1228[label="",style="solid", color="black", weight=3]; 26.11/10.20 1080[label="primCmpFloat (Float vxw110 vxw111) vxw10",fontsize=16,color="burlywood",shape="box"];2160[label="vxw111/Pos vxw1110",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2160[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2160 -> 1229[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2161[label="vxw111/Neg vxw1110",fontsize=10,color="white",style="solid",shape="box"];1080 -> 2161[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2161 -> 1230[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1081[label="compare (Integer vxw110) (Integer vxw100)",fontsize=16,color="black",shape="box"];1081 -> 1231[label="",style="solid", color="black", weight=3]; 26.11/10.20 1082[label="primCmpChar (Char vxw110) vxw10",fontsize=16,color="burlywood",shape="box"];2162[label="vxw10/Char vxw100",fontsize=10,color="white",style="solid",shape="box"];1082 -> 2162[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2162 -> 1232[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1083[label="compare () ()",fontsize=16,color="black",shape="box"];1083 -> 1233[label="",style="solid", color="black", weight=3]; 26.11/10.20 1084[label="compare (vxw110 : vxw111) (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1084 -> 1234[label="",style="solid", color="black", weight=3]; 26.11/10.20 1085[label="compare (vxw110 : vxw111) []",fontsize=16,color="black",shape="box"];1085 -> 1235[label="",style="solid", color="black", weight=3]; 26.11/10.20 1086[label="compare [] (vxw100 : vxw101)",fontsize=16,color="black",shape="box"];1086 -> 1236[label="",style="solid", color="black", weight=3]; 26.11/10.20 1087[label="compare [] []",fontsize=16,color="black",shape="box"];1087 -> 1237[label="",style="solid", color="black", weight=3]; 26.11/10.20 1088[label="primMulNat (Succ vxw30100) vxw40000",fontsize=16,color="burlywood",shape="box"];2163[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1088 -> 2163[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2163 -> 1238[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2164[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1088 -> 2164[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2164 -> 1239[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1089[label="primMulNat Zero vxw40000",fontsize=16,color="burlywood",shape="box"];2165[label="vxw40000/Succ vxw400000",fontsize=10,color="white",style="solid",shape="box"];1089 -> 2165[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2165 -> 1240[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2166[label="vxw40000/Zero",fontsize=10,color="white",style="solid",shape="box"];1089 -> 2166[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2166 -> 1241[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1090[label="vxw40000",fontsize=16,color="green",shape="box"];1091[label="vxw3010",fontsize=16,color="green",shape="box"];1092[label="vxw3010",fontsize=16,color="green",shape="box"];1093[label="vxw40000",fontsize=16,color="green",shape="box"];1094[label="primCmpInt (Pos (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2167[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1094 -> 2167[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2167 -> 1242[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2168[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1094 -> 2168[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2168 -> 1243[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1095[label="primCmpInt (Pos Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2169[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1095 -> 2169[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2169 -> 1244[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2170[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1095 -> 2170[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2170 -> 1245[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1096[label="primCmpInt (Neg (Succ vxw1100)) vxw10",fontsize=16,color="burlywood",shape="box"];2171[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1096 -> 2171[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2171 -> 1246[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2172[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1096 -> 2172[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2172 -> 1247[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1097[label="primCmpInt (Neg Zero) vxw10",fontsize=16,color="burlywood",shape="box"];2173[label="vxw10/Pos vxw100",fontsize=10,color="white",style="solid",shape="box"];1097 -> 2173[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2173 -> 1248[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 2174[label="vxw10/Neg vxw100",fontsize=10,color="white",style="solid",shape="box"];1097 -> 2174[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2174 -> 1249[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1098[label="primCmpDouble (Double vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2175[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1098 -> 2175[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2175 -> 1250[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1099[label="primCmpDouble (Double vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2176[label="vxw10/Double vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1099 -> 2176[label="",style="solid", color="burlywood", weight=9]; 26.11/10.20 2176 -> 1251[label="",style="solid", color="burlywood", weight=3]; 26.11/10.20 1100[label="vxw101",fontsize=16,color="green",shape="box"];1101[label="vxw111",fontsize=16,color="green",shape="box"];1102[label="vxw101",fontsize=16,color="green",shape="box"];1103[label="vxw111",fontsize=16,color="green",shape="box"];1104[label="vxw101",fontsize=16,color="green",shape="box"];1105[label="vxw111",fontsize=16,color="green",shape="box"];1106[label="vxw101",fontsize=16,color="green",shape="box"];1107[label="vxw111",fontsize=16,color="green",shape="box"];1108[label="vxw101",fontsize=16,color="green",shape="box"];1109[label="vxw111",fontsize=16,color="green",shape="box"];1110[label="vxw101",fontsize=16,color="green",shape="box"];1111[label="vxw111",fontsize=16,color="green",shape="box"];1112[label="vxw101",fontsize=16,color="green",shape="box"];1113[label="vxw111",fontsize=16,color="green",shape="box"];1114[label="vxw101",fontsize=16,color="green",shape="box"];1115[label="vxw111",fontsize=16,color="green",shape="box"];1116[label="vxw101",fontsize=16,color="green",shape="box"];1117[label="vxw111",fontsize=16,color="green",shape="box"];1118[label="vxw101",fontsize=16,color="green",shape="box"];1119[label="vxw111",fontsize=16,color="green",shape="box"];1120[label="vxw101",fontsize=16,color="green",shape="box"];1121[label="vxw111",fontsize=16,color="green",shape="box"];1122[label="vxw101",fontsize=16,color="green",shape="box"];1123[label="vxw111",fontsize=16,color="green",shape="box"];1124[label="vxw101",fontsize=16,color="green",shape="box"];1125[label="vxw111",fontsize=16,color="green",shape="box"];1126[label="vxw101",fontsize=16,color="green",shape="box"];1127[label="vxw111",fontsize=16,color="green",shape="box"];1128[label="vxw100",fontsize=16,color="green",shape="box"];1129[label="vxw110",fontsize=16,color="green",shape="box"];1130[label="vxw100",fontsize=16,color="green",shape="box"];1131[label="vxw110",fontsize=16,color="green",shape="box"];1132[label="vxw100",fontsize=16,color="green",shape="box"];1133[label="vxw110",fontsize=16,color="green",shape="box"];1134[label="vxw100",fontsize=16,color="green",shape="box"];1135[label="vxw110",fontsize=16,color="green",shape="box"];1136[label="vxw100",fontsize=16,color="green",shape="box"];1137[label="vxw110",fontsize=16,color="green",shape="box"];1138[label="vxw100",fontsize=16,color="green",shape="box"];1139[label="vxw110",fontsize=16,color="green",shape="box"];1140[label="vxw100",fontsize=16,color="green",shape="box"];1141[label="vxw110",fontsize=16,color="green",shape="box"];1142[label="vxw100",fontsize=16,color="green",shape="box"];1143[label="vxw110",fontsize=16,color="green",shape="box"];1144[label="vxw100",fontsize=16,color="green",shape="box"];1145[label="vxw110",fontsize=16,color="green",shape="box"];1146[label="vxw100",fontsize=16,color="green",shape="box"];1147[label="vxw110",fontsize=16,color="green",shape="box"];1148[label="vxw100",fontsize=16,color="green",shape="box"];1149[label="vxw110",fontsize=16,color="green",shape="box"];1150[label="vxw100",fontsize=16,color="green",shape="box"];1151[label="vxw110",fontsize=16,color="green",shape="box"];1152[label="vxw100",fontsize=16,color="green",shape="box"];1153[label="vxw110",fontsize=16,color="green",shape="box"];1154[label="vxw100",fontsize=16,color="green",shape="box"];1155[label="vxw110",fontsize=16,color="green",shape="box"];1156[label="LT",fontsize=16,color="green",shape="box"];1157[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1157 -> 1252[label="",style="solid", color="black", weight=3]; 26.11/10.20 1158[label="LT",fontsize=16,color="green",shape="box"];1159 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1159[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1159 -> 1253[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1159 -> 1254[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1160[label="LT",fontsize=16,color="green",shape="box"];1161[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1161 -> 1255[label="",style="solid", color="black", weight=3]; 26.11/10.20 1162[label="LT",fontsize=16,color="green",shape="box"];1163 -> 779[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1163[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1163 -> 1256[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1163 -> 1257[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1164[label="LT",fontsize=16,color="green",shape="box"];1165[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1165 -> 1258[label="",style="solid", color="black", weight=3]; 26.11/10.20 1166[label="LT",fontsize=16,color="green",shape="box"];1167[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1167 -> 1259[label="",style="solid", color="black", weight=3]; 26.11/10.20 1168[label="LT",fontsize=16,color="green",shape="box"];1169[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1169 -> 1260[label="",style="solid", color="black", weight=3]; 26.11/10.20 1170[label="LT",fontsize=16,color="green",shape="box"];1171 -> 781[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1171[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1171 -> 1261[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1171 -> 1262[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1172[label="LT",fontsize=16,color="green",shape="box"];1173 -> 783[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1173[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1173 -> 1263[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1173 -> 1264[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1174[label="LT",fontsize=16,color="green",shape="box"];1175 -> 785[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1175[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1175 -> 1265[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1175 -> 1266[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1176[label="LT",fontsize=16,color="green",shape="box"];1177 -> 787[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1177[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1177 -> 1267[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1177 -> 1268[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1178[label="LT",fontsize=16,color="green",shape="box"];1179[label="compare vxw110 vxw100",fontsize=16,color="black",shape="triangle"];1179 -> 1269[label="",style="solid", color="black", weight=3]; 26.11/10.20 1180[label="LT",fontsize=16,color="green",shape="box"];1181 -> 789[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1181[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1181 -> 1270[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1181 -> 1271[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1182[label="LT",fontsize=16,color="green",shape="box"];1183 -> 791[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1183[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1183 -> 1272[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1183 -> 1273[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1184[label="vxw112 <= vxw102",fontsize=16,color="blue",shape="box"];2177[label="<= :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2177[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2177 -> 1274[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2178[label="<= :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2178[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2178 -> 1275[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2179[label="<= :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2179[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2179 -> 1276[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2180[label="<= :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2180[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2180 -> 1277[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2181[label="<= :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2181[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2181 -> 1278[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2182[label="<= :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2182[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2182 -> 1279[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2183[label="<= :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2183[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2183 -> 1280[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2184[label="<= :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2184[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2184 -> 1281[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2185[label="<= :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2185[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2185 -> 1282[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2186[label="<= :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2186[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2186 -> 1283[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2187[label="<= :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2187[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2187 -> 1284[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2188[label="<= :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2188[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2188 -> 1285[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2189[label="<= :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2189[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2189 -> 1286[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2190[label="<= :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1184 -> 2190[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2190 -> 1287[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1185[label="vxw111 == vxw101",fontsize=16,color="blue",shape="box"];2191[label="== :: Bool -> Bool -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2191[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2191 -> 1288[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2192[label="== :: Int -> Int -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2192[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2192 -> 1289[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2193[label="== :: Ordering -> Ordering -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2193[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2193 -> 1290[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2194[label="== :: Double -> Double -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2194[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2194 -> 1291[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2195[label="== :: ((@2) a b) -> ((@2) a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2195[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2195 -> 1292[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2196[label="== :: (Either a b) -> (Either a b) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2196[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2196 -> 1293[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2197[label="== :: ((@3) a b c) -> ((@3) a b c) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2197[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2197 -> 1294[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2198[label="== :: (Ratio a) -> (Ratio a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2198[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2198 -> 1295[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2199[label="== :: Float -> Float -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2199[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2199 -> 1296[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2200[label="== :: Integer -> Integer -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2200[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2200 -> 1297[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2201[label="== :: Char -> Char -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2201[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2201 -> 1298[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2202[label="== :: (Maybe a) -> (Maybe a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2202[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2202 -> 1299[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2203[label="== :: () -> () -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2203[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2203 -> 1300[label="",style="solid", color="blue", weight=3]; 26.11/10.20 2204[label="== :: ([] a) -> ([] a) -> Bool",fontsize=10,color="white",style="solid",shape="box"];1185 -> 2204[label="",style="solid", color="blue", weight=9]; 26.11/10.20 2204 -> 1301[label="",style="solid", color="blue", weight=3]; 26.11/10.20 1186 -> 859[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1186[label="vxw111 < vxw101",fontsize=16,color="magenta"];1186 -> 1302[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1186 -> 1303[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1187 -> 860[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1187[label="vxw111 < vxw101",fontsize=16,color="magenta"];1187 -> 1304[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1187 -> 1305[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1188 -> 861[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1188[label="vxw111 < vxw101",fontsize=16,color="magenta"];1188 -> 1306[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1188 -> 1307[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1189 -> 862[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1189[label="vxw111 < vxw101",fontsize=16,color="magenta"];1189 -> 1308[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1189 -> 1309[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1190 -> 863[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1190[label="vxw111 < vxw101",fontsize=16,color="magenta"];1190 -> 1310[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1190 -> 1311[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1191 -> 864[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1191[label="vxw111 < vxw101",fontsize=16,color="magenta"];1191 -> 1312[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1191 -> 1313[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1192 -> 865[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1192[label="vxw111 < vxw101",fontsize=16,color="magenta"];1192 -> 1314[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1192 -> 1315[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1193 -> 866[label="",style="dashed", color="red", weight=0]; 26.11/10.20 1193[label="vxw111 < vxw101",fontsize=16,color="magenta"];1193 -> 1316[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1193 -> 1317[label="",style="dashed", color="magenta", weight=3]; 26.11/10.20 1194 -> 867[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1194[label="vxw111 < vxw101",fontsize=16,color="magenta"];1194 -> 1318[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1194 -> 1319[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1195 -> 868[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1195[label="vxw111 < vxw101",fontsize=16,color="magenta"];1195 -> 1320[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1195 -> 1321[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1196 -> 869[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1196[label="vxw111 < vxw101",fontsize=16,color="magenta"];1196 -> 1322[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1196 -> 1323[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1197 -> 870[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1197[label="vxw111 < vxw101",fontsize=16,color="magenta"];1197 -> 1324[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1197 -> 1325[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1198 -> 871[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1198[label="vxw111 < vxw101",fontsize=16,color="magenta"];1198 -> 1326[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1198 -> 1327[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1199 -> 872[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1199[label="vxw111 < vxw101",fontsize=16,color="magenta"];1199 -> 1328[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1199 -> 1329[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1200[label="vxw100",fontsize=16,color="green",shape="box"];1201[label="vxw110",fontsize=16,color="green",shape="box"];1202[label="vxw100",fontsize=16,color="green",shape="box"];1203[label="vxw110",fontsize=16,color="green",shape="box"];1204[label="vxw100",fontsize=16,color="green",shape="box"];1205[label="vxw110",fontsize=16,color="green",shape="box"];1206[label="vxw100",fontsize=16,color="green",shape="box"];1207[label="vxw110",fontsize=16,color="green",shape="box"];1208[label="vxw100",fontsize=16,color="green",shape="box"];1209[label="vxw110",fontsize=16,color="green",shape="box"];1210[label="vxw100",fontsize=16,color="green",shape="box"];1211[label="vxw110",fontsize=16,color="green",shape="box"];1212[label="vxw100",fontsize=16,color="green",shape="box"];1213[label="vxw110",fontsize=16,color="green",shape="box"];1214[label="vxw100",fontsize=16,color="green",shape="box"];1215[label="vxw110",fontsize=16,color="green",shape="box"];1216[label="vxw100",fontsize=16,color="green",shape="box"];1217[label="vxw110",fontsize=16,color="green",shape="box"];1218[label="vxw100",fontsize=16,color="green",shape="box"];1219[label="vxw110",fontsize=16,color="green",shape="box"];1220[label="vxw100",fontsize=16,color="green",shape="box"];1221[label="vxw110",fontsize=16,color="green",shape="box"];1222[label="vxw100",fontsize=16,color="green",shape="box"];1223[label="vxw110",fontsize=16,color="green",shape="box"];1224[label="vxw100",fontsize=16,color="green",shape="box"];1225[label="vxw110",fontsize=16,color="green",shape="box"];1226[label="vxw100",fontsize=16,color="green",shape="box"];1227[label="vxw110",fontsize=16,color="green",shape="box"];1228[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="blue",shape="box"];2205[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1228 -> 2205[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2205 -> 1330[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2206[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1228 -> 2206[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2206 -> 1331[label="",style="solid", color="blue", weight=3]; 26.11/10.21 1229[label="primCmpFloat (Float vxw110 (Pos vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2207[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1229 -> 2207[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2207 -> 1332[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1230[label="primCmpFloat (Float vxw110 (Neg vxw1110)) vxw10",fontsize=16,color="burlywood",shape="box"];2208[label="vxw10/Float vxw100 vxw101",fontsize=10,color="white",style="solid",shape="box"];1230 -> 2208[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2208 -> 1333[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1231 -> 844[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1231[label="primCmpInt vxw110 vxw100",fontsize=16,color="magenta"];1231 -> 1334[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1231 -> 1335[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1232[label="primCmpChar (Char vxw110) (Char vxw100)",fontsize=16,color="black",shape="box"];1232 -> 1336[label="",style="solid", color="black", weight=3]; 26.11/10.21 1233[label="EQ",fontsize=16,color="green",shape="box"];1234 -> 1337[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1234[label="primCompAux vxw110 vxw100 (compare vxw111 vxw101)",fontsize=16,color="magenta"];1234 -> 1338[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1235[label="GT",fontsize=16,color="green",shape="box"];1236[label="LT",fontsize=16,color="green",shape="box"];1237[label="EQ",fontsize=16,color="green",shape="box"];1238[label="primMulNat (Succ vxw30100) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1238 -> 1339[label="",style="solid", color="black", weight=3]; 26.11/10.21 1239[label="primMulNat (Succ vxw30100) Zero",fontsize=16,color="black",shape="box"];1239 -> 1340[label="",style="solid", color="black", weight=3]; 26.11/10.21 1240[label="primMulNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1240 -> 1341[label="",style="solid", color="black", weight=3]; 26.11/10.21 1241[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];1241 -> 1342[label="",style="solid", color="black", weight=3]; 26.11/10.21 1242[label="primCmpInt (Pos (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1242 -> 1343[label="",style="solid", color="black", weight=3]; 26.11/10.21 1243[label="primCmpInt (Pos (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1243 -> 1344[label="",style="solid", color="black", weight=3]; 26.11/10.21 1244[label="primCmpInt (Pos Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2209[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2209[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2209 -> 1345[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2210[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1244 -> 2210[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2210 -> 1346[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1245[label="primCmpInt (Pos Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2211[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2211[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2211 -> 1347[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2212[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1245 -> 2212[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2212 -> 1348[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1246[label="primCmpInt (Neg (Succ vxw1100)) (Pos vxw100)",fontsize=16,color="black",shape="box"];1246 -> 1349[label="",style="solid", color="black", weight=3]; 26.11/10.21 1247[label="primCmpInt (Neg (Succ vxw1100)) (Neg vxw100)",fontsize=16,color="black",shape="box"];1247 -> 1350[label="",style="solid", color="black", weight=3]; 26.11/10.21 1248[label="primCmpInt (Neg Zero) (Pos vxw100)",fontsize=16,color="burlywood",shape="box"];2213[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2213[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2213 -> 1351[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2214[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1248 -> 2214[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2214 -> 1352[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1249[label="primCmpInt (Neg Zero) (Neg vxw100)",fontsize=16,color="burlywood",shape="box"];2215[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2215[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2215 -> 1353[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2216[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1249 -> 2216[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2216 -> 1354[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1250[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2217[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1250 -> 2217[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2217 -> 1355[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2218[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1250 -> 2218[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2218 -> 1356[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1251[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2219[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1251 -> 2219[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2219 -> 1357[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2220[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1251 -> 2220[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2220 -> 1358[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1252[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1252 -> 1359[label="",style="solid", color="black", weight=3]; 26.11/10.21 1253[label="vxw100",fontsize=16,color="green",shape="box"];1254[label="vxw110",fontsize=16,color="green",shape="box"];1255[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1255 -> 1360[label="",style="solid", color="black", weight=3]; 26.11/10.21 1256[label="vxw100",fontsize=16,color="green",shape="box"];1257[label="vxw110",fontsize=16,color="green",shape="box"];1258[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1258 -> 1361[label="",style="solid", color="black", weight=3]; 26.11/10.21 1259[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1259 -> 1362[label="",style="solid", color="black", weight=3]; 26.11/10.21 1260[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1260 -> 1363[label="",style="solid", color="black", weight=3]; 26.11/10.21 1261[label="vxw100",fontsize=16,color="green",shape="box"];1262[label="vxw110",fontsize=16,color="green",shape="box"];1263[label="vxw100",fontsize=16,color="green",shape="box"];1264[label="vxw110",fontsize=16,color="green",shape="box"];1265[label="vxw100",fontsize=16,color="green",shape="box"];1266[label="vxw110",fontsize=16,color="green",shape="box"];1267[label="vxw100",fontsize=16,color="green",shape="box"];1268[label="vxw110",fontsize=16,color="green",shape="box"];1269[label="compare3 vxw110 vxw100",fontsize=16,color="black",shape="box"];1269 -> 1364[label="",style="solid", color="black", weight=3]; 26.11/10.21 1270[label="vxw100",fontsize=16,color="green",shape="box"];1271[label="vxw110",fontsize=16,color="green",shape="box"];1272[label="vxw100",fontsize=16,color="green",shape="box"];1273[label="vxw110",fontsize=16,color="green",shape="box"];1274 -> 239[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1274[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1274 -> 1365[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1274 -> 1366[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1275 -> 240[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1275[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1275 -> 1367[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1275 -> 1368[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1276 -> 241[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1276[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1276 -> 1369[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1276 -> 1370[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1277 -> 242[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1277[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1277 -> 1371[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1277 -> 1372[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1278 -> 243[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1278[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1278 -> 1373[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1278 -> 1374[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1279 -> 244[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1279[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1279 -> 1375[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1279 -> 1376[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1280 -> 245[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1280[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1280 -> 1377[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1280 -> 1378[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1281 -> 246[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1281[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1281 -> 1379[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1281 -> 1380[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1282 -> 247[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1282[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1282 -> 1381[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1282 -> 1382[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1283 -> 248[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1283[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1283 -> 1383[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1283 -> 1384[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1284 -> 249[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1284[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1284 -> 1385[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1284 -> 1386[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1285 -> 250[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1285[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1285 -> 1387[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1285 -> 1388[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1286 -> 251[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1286[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1286 -> 1389[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1286 -> 1390[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1287 -> 252[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1287[label="vxw112 <= vxw102",fontsize=16,color="magenta"];1287 -> 1391[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1287 -> 1392[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1288 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1288[label="vxw111 == vxw101",fontsize=16,color="magenta"];1288 -> 1393[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1288 -> 1394[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1289 -> 33[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1289[label="vxw111 == vxw101",fontsize=16,color="magenta"];1289 -> 1395[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1289 -> 1396[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1290 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1290[label="vxw111 == vxw101",fontsize=16,color="magenta"];1290 -> 1397[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1290 -> 1398[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1291 -> 40[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1291[label="vxw111 == vxw101",fontsize=16,color="magenta"];1291 -> 1399[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1291 -> 1400[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1292 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1292[label="vxw111 == vxw101",fontsize=16,color="magenta"];1292 -> 1401[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1292 -> 1402[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1293 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1293[label="vxw111 == vxw101",fontsize=16,color="magenta"];1293 -> 1403[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1293 -> 1404[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1294 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1294[label="vxw111 == vxw101",fontsize=16,color="magenta"];1294 -> 1405[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1294 -> 1406[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1295 -> 34[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1295[label="vxw111 == vxw101",fontsize=16,color="magenta"];1295 -> 1407[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1295 -> 1408[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1296 -> 37[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1296[label="vxw111 == vxw101",fontsize=16,color="magenta"];1296 -> 1409[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1296 -> 1410[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1297 -> 41[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1297[label="vxw111 == vxw101",fontsize=16,color="magenta"];1297 -> 1411[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1297 -> 1412[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1298 -> 43[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1298[label="vxw111 == vxw101",fontsize=16,color="magenta"];1298 -> 1413[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1298 -> 1414[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1299 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1299[label="vxw111 == vxw101",fontsize=16,color="magenta"];1299 -> 1415[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1299 -> 1416[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1300 -> 42[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1300[label="vxw111 == vxw101",fontsize=16,color="magenta"];1300 -> 1417[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1300 -> 1418[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1301 -> 39[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1301[label="vxw111 == vxw101",fontsize=16,color="magenta"];1301 -> 1419[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1301 -> 1420[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1302[label="vxw101",fontsize=16,color="green",shape="box"];1303[label="vxw111",fontsize=16,color="green",shape="box"];1304[label="vxw101",fontsize=16,color="green",shape="box"];1305[label="vxw111",fontsize=16,color="green",shape="box"];1306[label="vxw101",fontsize=16,color="green",shape="box"];1307[label="vxw111",fontsize=16,color="green",shape="box"];1308[label="vxw101",fontsize=16,color="green",shape="box"];1309[label="vxw111",fontsize=16,color="green",shape="box"];1310[label="vxw101",fontsize=16,color="green",shape="box"];1311[label="vxw111",fontsize=16,color="green",shape="box"];1312[label="vxw101",fontsize=16,color="green",shape="box"];1313[label="vxw111",fontsize=16,color="green",shape="box"];1314[label="vxw101",fontsize=16,color="green",shape="box"];1315[label="vxw111",fontsize=16,color="green",shape="box"];1316[label="vxw101",fontsize=16,color="green",shape="box"];1317[label="vxw111",fontsize=16,color="green",shape="box"];1318[label="vxw101",fontsize=16,color="green",shape="box"];1319[label="vxw111",fontsize=16,color="green",shape="box"];1320[label="vxw101",fontsize=16,color="green",shape="box"];1321[label="vxw111",fontsize=16,color="green",shape="box"];1322[label="vxw101",fontsize=16,color="green",shape="box"];1323[label="vxw111",fontsize=16,color="green",shape="box"];1324[label="vxw101",fontsize=16,color="green",shape="box"];1325[label="vxw111",fontsize=16,color="green",shape="box"];1326[label="vxw101",fontsize=16,color="green",shape="box"];1327[label="vxw111",fontsize=16,color="green",shape="box"];1328[label="vxw101",fontsize=16,color="green",shape="box"];1329[label="vxw111",fontsize=16,color="green",shape="box"];1330 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1330[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1330 -> 1421[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1330 -> 1422[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1331 -> 785[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1331[label="compare (vxw110 * vxw101) (vxw100 * vxw111)",fontsize=16,color="magenta"];1331 -> 1423[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1331 -> 1424[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1332[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2221[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1332 -> 2221[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2221 -> 1425[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2222[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1332 -> 2222[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2222 -> 1426[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1333[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 vxw101)",fontsize=16,color="burlywood",shape="box"];2223[label="vxw101/Pos vxw1010",fontsize=10,color="white",style="solid",shape="box"];1333 -> 2223[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2223 -> 1427[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2224[label="vxw101/Neg vxw1010",fontsize=10,color="white",style="solid",shape="box"];1333 -> 2224[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2224 -> 1428[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1334[label="vxw100",fontsize=16,color="green",shape="box"];1335[label="vxw110",fontsize=16,color="green",shape="box"];1336[label="primCmpNat vxw110 vxw100",fontsize=16,color="burlywood",shape="triangle"];2225[label="vxw110/Succ vxw1100",fontsize=10,color="white",style="solid",shape="box"];1336 -> 2225[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2225 -> 1429[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2226[label="vxw110/Zero",fontsize=10,color="white",style="solid",shape="box"];1336 -> 2226[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2226 -> 1430[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1338 -> 791[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1338[label="compare vxw111 vxw101",fontsize=16,color="magenta"];1338 -> 1431[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1338 -> 1432[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1337[label="primCompAux vxw110 vxw100 vxw43",fontsize=16,color="black",shape="triangle"];1337 -> 1433[label="",style="solid", color="black", weight=3]; 26.11/10.21 1339 -> 1434[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1339[label="primPlusNat (primMulNat vxw30100 (Succ vxw400000)) (Succ vxw400000)",fontsize=16,color="magenta"];1339 -> 1435[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1340[label="Zero",fontsize=16,color="green",shape="box"];1341[label="Zero",fontsize=16,color="green",shape="box"];1342[label="Zero",fontsize=16,color="green",shape="box"];1343 -> 1336[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1343[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="magenta"];1343 -> 1436[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1343 -> 1437[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1344[label="GT",fontsize=16,color="green",shape="box"];1345[label="primCmpInt (Pos Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1345 -> 1438[label="",style="solid", color="black", weight=3]; 26.11/10.21 1346[label="primCmpInt (Pos Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1346 -> 1439[label="",style="solid", color="black", weight=3]; 26.11/10.21 1347[label="primCmpInt (Pos Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1347 -> 1440[label="",style="solid", color="black", weight=3]; 26.11/10.21 1348[label="primCmpInt (Pos Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1348 -> 1441[label="",style="solid", color="black", weight=3]; 26.11/10.21 1349[label="LT",fontsize=16,color="green",shape="box"];1350 -> 1336[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1350[label="primCmpNat vxw100 (Succ vxw1100)",fontsize=16,color="magenta"];1350 -> 1442[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1350 -> 1443[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1351[label="primCmpInt (Neg Zero) (Pos (Succ vxw1000))",fontsize=16,color="black",shape="box"];1351 -> 1444[label="",style="solid", color="black", weight=3]; 26.11/10.21 1352[label="primCmpInt (Neg Zero) (Pos Zero)",fontsize=16,color="black",shape="box"];1352 -> 1445[label="",style="solid", color="black", weight=3]; 26.11/10.21 1353[label="primCmpInt (Neg Zero) (Neg (Succ vxw1000))",fontsize=16,color="black",shape="box"];1353 -> 1446[label="",style="solid", color="black", weight=3]; 26.11/10.21 1354[label="primCmpInt (Neg Zero) (Neg Zero)",fontsize=16,color="black",shape="box"];1354 -> 1447[label="",style="solid", color="black", weight=3]; 26.11/10.21 1355[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1355 -> 1448[label="",style="solid", color="black", weight=3]; 26.11/10.21 1356[label="primCmpDouble (Double vxw110 (Pos vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1356 -> 1449[label="",style="solid", color="black", weight=3]; 26.11/10.21 1357[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1357 -> 1450[label="",style="solid", color="black", weight=3]; 26.11/10.21 1358[label="primCmpDouble (Double vxw110 (Neg vxw1110)) (Double vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1358 -> 1451[label="",style="solid", color="black", weight=3]; 26.11/10.21 1359 -> 1452[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1359[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1359 -> 1453[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1360 -> 1454[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1360[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1360 -> 1455[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1361 -> 1456[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1361[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1361 -> 1457[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1362 -> 1458[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1362[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1362 -> 1459[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1363 -> 1460[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1363[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1363 -> 1461[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1364 -> 1462[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1364[label="compare2 vxw110 vxw100 (vxw110 == vxw100)",fontsize=16,color="magenta"];1364 -> 1463[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1365[label="vxw102",fontsize=16,color="green",shape="box"];1366[label="vxw112",fontsize=16,color="green",shape="box"];1367[label="vxw102",fontsize=16,color="green",shape="box"];1368[label="vxw112",fontsize=16,color="green",shape="box"];1369[label="vxw102",fontsize=16,color="green",shape="box"];1370[label="vxw112",fontsize=16,color="green",shape="box"];1371[label="vxw102",fontsize=16,color="green",shape="box"];1372[label="vxw112",fontsize=16,color="green",shape="box"];1373[label="vxw102",fontsize=16,color="green",shape="box"];1374[label="vxw112",fontsize=16,color="green",shape="box"];1375[label="vxw102",fontsize=16,color="green",shape="box"];1376[label="vxw112",fontsize=16,color="green",shape="box"];1377[label="vxw102",fontsize=16,color="green",shape="box"];1378[label="vxw112",fontsize=16,color="green",shape="box"];1379[label="vxw102",fontsize=16,color="green",shape="box"];1380[label="vxw112",fontsize=16,color="green",shape="box"];1381[label="vxw102",fontsize=16,color="green",shape="box"];1382[label="vxw112",fontsize=16,color="green",shape="box"];1383[label="vxw102",fontsize=16,color="green",shape="box"];1384[label="vxw112",fontsize=16,color="green",shape="box"];1385[label="vxw102",fontsize=16,color="green",shape="box"];1386[label="vxw112",fontsize=16,color="green",shape="box"];1387[label="vxw102",fontsize=16,color="green",shape="box"];1388[label="vxw112",fontsize=16,color="green",shape="box"];1389[label="vxw102",fontsize=16,color="green",shape="box"];1390[label="vxw112",fontsize=16,color="green",shape="box"];1391[label="vxw102",fontsize=16,color="green",shape="box"];1392[label="vxw112",fontsize=16,color="green",shape="box"];1393[label="vxw101",fontsize=16,color="green",shape="box"];1394[label="vxw111",fontsize=16,color="green",shape="box"];1395[label="vxw101",fontsize=16,color="green",shape="box"];1396[label="vxw111",fontsize=16,color="green",shape="box"];1397[label="vxw101",fontsize=16,color="green",shape="box"];1398[label="vxw111",fontsize=16,color="green",shape="box"];1399[label="vxw101",fontsize=16,color="green",shape="box"];1400[label="vxw111",fontsize=16,color="green",shape="box"];1401[label="vxw101",fontsize=16,color="green",shape="box"];1402[label="vxw111",fontsize=16,color="green",shape="box"];1403[label="vxw101",fontsize=16,color="green",shape="box"];1404[label="vxw111",fontsize=16,color="green",shape="box"];1405[label="vxw101",fontsize=16,color="green",shape="box"];1406[label="vxw111",fontsize=16,color="green",shape="box"];1407[label="vxw101",fontsize=16,color="green",shape="box"];1408[label="vxw111",fontsize=16,color="green",shape="box"];1409[label="vxw101",fontsize=16,color="green",shape="box"];1410[label="vxw111",fontsize=16,color="green",shape="box"];1411[label="vxw101",fontsize=16,color="green",shape="box"];1412[label="vxw111",fontsize=16,color="green",shape="box"];1413[label="vxw101",fontsize=16,color="green",shape="box"];1414[label="vxw111",fontsize=16,color="green",shape="box"];1415[label="vxw101",fontsize=16,color="green",shape="box"];1416[label="vxw111",fontsize=16,color="green",shape="box"];1417[label="vxw101",fontsize=16,color="green",shape="box"];1418[label="vxw111",fontsize=16,color="green",shape="box"];1419[label="vxw101",fontsize=16,color="green",shape="box"];1420[label="vxw111",fontsize=16,color="green",shape="box"];1421 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1421[label="vxw100 * vxw111",fontsize=16,color="magenta"];1421 -> 1464[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1421 -> 1465[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1422 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1422[label="vxw110 * vxw101",fontsize=16,color="magenta"];1422 -> 1466[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1422 -> 1467[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1423[label="vxw100 * vxw111",fontsize=16,color="burlywood",shape="triangle"];2227[label="vxw100/Integer vxw1000",fontsize=10,color="white",style="solid",shape="box"];1423 -> 2227[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2227 -> 1468[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1424 -> 1423[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1424[label="vxw110 * vxw101",fontsize=16,color="magenta"];1424 -> 1469[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1424 -> 1470[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1425[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1425 -> 1471[label="",style="solid", color="black", weight=3]; 26.11/10.21 1426[label="primCmpFloat (Float vxw110 (Pos vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1426 -> 1472[label="",style="solid", color="black", weight=3]; 26.11/10.21 1427[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Pos vxw1010))",fontsize=16,color="black",shape="box"];1427 -> 1473[label="",style="solid", color="black", weight=3]; 26.11/10.21 1428[label="primCmpFloat (Float vxw110 (Neg vxw1110)) (Float vxw100 (Neg vxw1010))",fontsize=16,color="black",shape="box"];1428 -> 1474[label="",style="solid", color="black", weight=3]; 26.11/10.21 1429[label="primCmpNat (Succ vxw1100) vxw100",fontsize=16,color="burlywood",shape="box"];2228[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2228[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2228 -> 1475[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2229[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1429 -> 2229[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2229 -> 1476[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1430[label="primCmpNat Zero vxw100",fontsize=16,color="burlywood",shape="box"];2230[label="vxw100/Succ vxw1000",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2230[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2230 -> 1477[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2231[label="vxw100/Zero",fontsize=10,color="white",style="solid",shape="box"];1430 -> 2231[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2231 -> 1478[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1431[label="vxw101",fontsize=16,color="green",shape="box"];1432[label="vxw111",fontsize=16,color="green",shape="box"];1433 -> 1479[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1433[label="primCompAux0 vxw43 (compare vxw110 vxw100)",fontsize=16,color="magenta"];1433 -> 1480[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1433 -> 1481[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1435 -> 984[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1435[label="primMulNat vxw30100 (Succ vxw400000)",fontsize=16,color="magenta"];1435 -> 1482[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1435 -> 1483[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1434[label="primPlusNat vxw44 (Succ vxw400000)",fontsize=16,color="burlywood",shape="triangle"];2232[label="vxw44/Succ vxw440",fontsize=10,color="white",style="solid",shape="box"];1434 -> 2232[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2232 -> 1484[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2233[label="vxw44/Zero",fontsize=10,color="white",style="solid",shape="box"];1434 -> 2233[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2233 -> 1485[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1436[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1437[label="vxw100",fontsize=16,color="green",shape="box"];1438 -> 1336[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1438[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="magenta"];1438 -> 1486[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1438 -> 1487[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1439[label="EQ",fontsize=16,color="green",shape="box"];1440[label="GT",fontsize=16,color="green",shape="box"];1441[label="EQ",fontsize=16,color="green",shape="box"];1442[label="vxw100",fontsize=16,color="green",shape="box"];1443[label="Succ vxw1100",fontsize=16,color="green",shape="box"];1444[label="LT",fontsize=16,color="green",shape="box"];1445[label="EQ",fontsize=16,color="green",shape="box"];1446 -> 1336[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1446[label="primCmpNat (Succ vxw1000) Zero",fontsize=16,color="magenta"];1446 -> 1488[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1446 -> 1489[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1447[label="EQ",fontsize=16,color="green",shape="box"];1448 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1448[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1448 -> 1490[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1448 -> 1491[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1449 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1449[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1449 -> 1492[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1449 -> 1493[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1450 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1450[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1450 -> 1494[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1450 -> 1495[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1451 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1451[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1451 -> 1496[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1451 -> 1497[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1453 -> 46[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1453[label="vxw110 == vxw100",fontsize=16,color="magenta"];1453 -> 1498[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1453 -> 1499[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1452[label="compare2 vxw110 vxw100 vxw45",fontsize=16,color="burlywood",shape="triangle"];2234[label="vxw45/False",fontsize=10,color="white",style="solid",shape="box"];1452 -> 2234[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2234 -> 1500[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2235[label="vxw45/True",fontsize=10,color="white",style="solid",shape="box"];1452 -> 2235[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2235 -> 1501[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1455 -> 45[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1455[label="vxw110 == vxw100",fontsize=16,color="magenta"];1455 -> 1502[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1455 -> 1503[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1454[label="compare2 vxw110 vxw100 vxw46",fontsize=16,color="burlywood",shape="triangle"];2236[label="vxw46/False",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2236[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2236 -> 1504[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2237[label="vxw46/True",fontsize=10,color="white",style="solid",shape="box"];1454 -> 2237[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2237 -> 1505[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1457 -> 36[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1457[label="vxw110 == vxw100",fontsize=16,color="magenta"];1457 -> 1506[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1457 -> 1507[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1456[label="compare2 vxw110 vxw100 vxw47",fontsize=16,color="burlywood",shape="triangle"];2238[label="vxw47/False",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2238[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2238 -> 1508[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2239[label="vxw47/True",fontsize=10,color="white",style="solid",shape="box"];1456 -> 2239[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2239 -> 1509[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1459 -> 44[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1459[label="vxw110 == vxw100",fontsize=16,color="magenta"];1459 -> 1510[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1459 -> 1511[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1458[label="compare2 vxw110 vxw100 vxw48",fontsize=16,color="burlywood",shape="triangle"];2240[label="vxw48/False",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2240[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2240 -> 1512[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2241[label="vxw48/True",fontsize=10,color="white",style="solid",shape="box"];1458 -> 2241[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2241 -> 1513[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1461 -> 38[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1461[label="vxw110 == vxw100",fontsize=16,color="magenta"];1461 -> 1514[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1461 -> 1515[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1460[label="compare2 vxw110 vxw100 vxw49",fontsize=16,color="burlywood",shape="triangle"];2242[label="vxw49/False",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2242[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2242 -> 1516[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2243[label="vxw49/True",fontsize=10,color="white",style="solid",shape="box"];1460 -> 2243[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2243 -> 1517[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1463 -> 35[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1463[label="vxw110 == vxw100",fontsize=16,color="magenta"];1463 -> 1518[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1463 -> 1519[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1462[label="compare2 vxw110 vxw100 vxw50",fontsize=16,color="burlywood",shape="triangle"];2244[label="vxw50/False",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2244[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2244 -> 1520[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2245[label="vxw50/True",fontsize=10,color="white",style="solid",shape="box"];1462 -> 2245[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2245 -> 1521[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1464[label="vxw111",fontsize=16,color="green",shape="box"];1465[label="vxw100",fontsize=16,color="green",shape="box"];1466[label="vxw101",fontsize=16,color="green",shape="box"];1467[label="vxw110",fontsize=16,color="green",shape="box"];1468[label="Integer vxw1000 * vxw111",fontsize=16,color="burlywood",shape="box"];2246[label="vxw111/Integer vxw1110",fontsize=10,color="white",style="solid",shape="box"];1468 -> 2246[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2246 -> 1522[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1469[label="vxw110",fontsize=16,color="green",shape="box"];1470[label="vxw101",fontsize=16,color="green",shape="box"];1471 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1471[label="compare (vxw110 * Pos vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1471 -> 1523[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1471 -> 1524[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1472 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1472[label="compare (vxw110 * Pos vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1472 -> 1525[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1472 -> 1526[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1473 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1473[label="compare (vxw110 * Neg vxw1010) (Pos vxw1110 * vxw100)",fontsize=16,color="magenta"];1473 -> 1527[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1473 -> 1528[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1474 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1474[label="compare (vxw110 * Neg vxw1010) (Neg vxw1110 * vxw100)",fontsize=16,color="magenta"];1474 -> 1529[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1474 -> 1530[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1475[label="primCmpNat (Succ vxw1100) (Succ vxw1000)",fontsize=16,color="black",shape="box"];1475 -> 1531[label="",style="solid", color="black", weight=3]; 26.11/10.21 1476[label="primCmpNat (Succ vxw1100) Zero",fontsize=16,color="black",shape="box"];1476 -> 1532[label="",style="solid", color="black", weight=3]; 26.11/10.21 1477[label="primCmpNat Zero (Succ vxw1000)",fontsize=16,color="black",shape="box"];1477 -> 1533[label="",style="solid", color="black", weight=3]; 26.11/10.21 1478[label="primCmpNat Zero Zero",fontsize=16,color="black",shape="box"];1478 -> 1534[label="",style="solid", color="black", weight=3]; 26.11/10.21 1480[label="vxw43",fontsize=16,color="green",shape="box"];1481[label="compare vxw110 vxw100",fontsize=16,color="blue",shape="box"];2247[label="compare :: Bool -> Bool -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2247[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2247 -> 1535[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2248[label="compare :: Int -> Int -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2248[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2248 -> 1536[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2249[label="compare :: Ordering -> Ordering -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2249[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2249 -> 1537[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2250[label="compare :: Double -> Double -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2250[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2250 -> 1538[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2251[label="compare :: ((@2) a b) -> ((@2) a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2251[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2251 -> 1539[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2252[label="compare :: (Either a b) -> (Either a b) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2252[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2252 -> 1540[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2253[label="compare :: ((@3) a b c) -> ((@3) a b c) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2253[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2253 -> 1541[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2254[label="compare :: (Ratio a) -> (Ratio a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2254[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2254 -> 1542[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2255[label="compare :: Float -> Float -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2255[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2255 -> 1543[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2256[label="compare :: Integer -> Integer -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2256[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2256 -> 1544[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2257[label="compare :: Char -> Char -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2257[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2257 -> 1545[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2258[label="compare :: (Maybe a) -> (Maybe a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2258[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2258 -> 1546[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2259[label="compare :: () -> () -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2259[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2259 -> 1547[label="",style="solid", color="blue", weight=3]; 26.11/10.21 2260[label="compare :: ([] a) -> ([] a) -> Ordering",fontsize=10,color="white",style="solid",shape="box"];1481 -> 2260[label="",style="solid", color="blue", weight=9]; 26.11/10.21 2260 -> 1548[label="",style="solid", color="blue", weight=3]; 26.11/10.21 1479[label="primCompAux0 vxw54 vxw55",fontsize=16,color="burlywood",shape="triangle"];2261[label="vxw55/LT",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2261[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2261 -> 1549[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2262[label="vxw55/EQ",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2262[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2262 -> 1550[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2263[label="vxw55/GT",fontsize=10,color="white",style="solid",shape="box"];1479 -> 2263[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2263 -> 1551[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1482[label="vxw30100",fontsize=16,color="green",shape="box"];1483[label="Succ vxw400000",fontsize=16,color="green",shape="box"];1484[label="primPlusNat (Succ vxw440) (Succ vxw400000)",fontsize=16,color="black",shape="box"];1484 -> 1552[label="",style="solid", color="black", weight=3]; 26.11/10.21 1485[label="primPlusNat Zero (Succ vxw400000)",fontsize=16,color="black",shape="box"];1485 -> 1553[label="",style="solid", color="black", weight=3]; 26.11/10.21 1486[label="Zero",fontsize=16,color="green",shape="box"];1487[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1488[label="Succ vxw1000",fontsize=16,color="green",shape="box"];1489[label="Zero",fontsize=16,color="green",shape="box"];1490 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1490[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1490 -> 1554[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1490 -> 1555[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1491 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1491[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1491 -> 1556[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1491 -> 1557[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1492 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1492[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1492 -> 1558[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1492 -> 1559[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1493 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1493[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1493 -> 1560[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1493 -> 1561[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1494 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1494[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1494 -> 1562[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1494 -> 1563[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1495 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1495[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1495 -> 1564[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1495 -> 1565[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1496 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1496[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1496 -> 1566[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1496 -> 1567[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1497 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1497[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1497 -> 1568[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1497 -> 1569[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1498[label="vxw100",fontsize=16,color="green",shape="box"];1499[label="vxw110",fontsize=16,color="green",shape="box"];1500[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1500 -> 1570[label="",style="solid", color="black", weight=3]; 26.11/10.21 1501[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1501 -> 1571[label="",style="solid", color="black", weight=3]; 26.11/10.21 1502[label="vxw100",fontsize=16,color="green",shape="box"];1503[label="vxw110",fontsize=16,color="green",shape="box"];1504[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1504 -> 1572[label="",style="solid", color="black", weight=3]; 26.11/10.21 1505[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1505 -> 1573[label="",style="solid", color="black", weight=3]; 26.11/10.21 1506[label="vxw100",fontsize=16,color="green",shape="box"];1507[label="vxw110",fontsize=16,color="green",shape="box"];1508[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1508 -> 1574[label="",style="solid", color="black", weight=3]; 26.11/10.21 1509[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1509 -> 1575[label="",style="solid", color="black", weight=3]; 26.11/10.21 1510[label="vxw100",fontsize=16,color="green",shape="box"];1511[label="vxw110",fontsize=16,color="green",shape="box"];1512[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1512 -> 1576[label="",style="solid", color="black", weight=3]; 26.11/10.21 1513[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1513 -> 1577[label="",style="solid", color="black", weight=3]; 26.11/10.21 1514[label="vxw100",fontsize=16,color="green",shape="box"];1515[label="vxw110",fontsize=16,color="green",shape="box"];1516[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1516 -> 1578[label="",style="solid", color="black", weight=3]; 26.11/10.21 1517[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1517 -> 1579[label="",style="solid", color="black", weight=3]; 26.11/10.21 1518[label="vxw100",fontsize=16,color="green",shape="box"];1519[label="vxw110",fontsize=16,color="green",shape="box"];1520[label="compare2 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1520 -> 1580[label="",style="solid", color="black", weight=3]; 26.11/10.21 1521[label="compare2 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1521 -> 1581[label="",style="solid", color="black", weight=3]; 26.11/10.21 1522[label="Integer vxw1000 * Integer vxw1110",fontsize=16,color="black",shape="box"];1522 -> 1582[label="",style="solid", color="black", weight=3]; 26.11/10.21 1523 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1523[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1523 -> 1583[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1523 -> 1584[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1524 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1524[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1524 -> 1585[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1524 -> 1586[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1525 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1525[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1525 -> 1587[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1525 -> 1588[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1526 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1526[label="vxw110 * Pos vxw1010",fontsize=16,color="magenta"];1526 -> 1589[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1526 -> 1590[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1527 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1527[label="Pos vxw1110 * vxw100",fontsize=16,color="magenta"];1527 -> 1591[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1527 -> 1592[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1528 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1528[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1528 -> 1593[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1528 -> 1594[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1529 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1529[label="Neg vxw1110 * vxw100",fontsize=16,color="magenta"];1529 -> 1595[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1529 -> 1596[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1530 -> 347[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1530[label="vxw110 * Neg vxw1010",fontsize=16,color="magenta"];1530 -> 1597[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1530 -> 1598[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1531 -> 1336[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1531[label="primCmpNat vxw1100 vxw1000",fontsize=16,color="magenta"];1531 -> 1599[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1531 -> 1600[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1532[label="GT",fontsize=16,color="green",shape="box"];1533[label="LT",fontsize=16,color="green",shape="box"];1534[label="EQ",fontsize=16,color="green",shape="box"];1535 -> 1157[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1535[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1535 -> 1601[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1535 -> 1602[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1536 -> 775[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1536[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1536 -> 1603[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1536 -> 1604[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1537 -> 1161[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1537[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1537 -> 1605[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1537 -> 1606[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1538 -> 779[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1538[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1538 -> 1607[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1538 -> 1608[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1539 -> 1165[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1539[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1539 -> 1609[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1539 -> 1610[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1540 -> 1167[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1540[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1540 -> 1611[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1540 -> 1612[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1541 -> 1169[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1541[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1541 -> 1613[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1541 -> 1614[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1542 -> 781[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1542[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1542 -> 1615[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1542 -> 1616[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1543 -> 783[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1543[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1543 -> 1617[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1543 -> 1618[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1544 -> 785[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1544[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1544 -> 1619[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1544 -> 1620[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1545 -> 787[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1545[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1545 -> 1621[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1545 -> 1622[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1546 -> 1179[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1546[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1546 -> 1623[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1546 -> 1624[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1547 -> 789[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1547[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1547 -> 1625[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1547 -> 1626[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1548 -> 791[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1548[label="compare vxw110 vxw100",fontsize=16,color="magenta"];1548 -> 1627[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1548 -> 1628[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1549[label="primCompAux0 vxw54 LT",fontsize=16,color="black",shape="box"];1549 -> 1629[label="",style="solid", color="black", weight=3]; 26.11/10.21 1550[label="primCompAux0 vxw54 EQ",fontsize=16,color="black",shape="box"];1550 -> 1630[label="",style="solid", color="black", weight=3]; 26.11/10.21 1551[label="primCompAux0 vxw54 GT",fontsize=16,color="black",shape="box"];1551 -> 1631[label="",style="solid", color="black", weight=3]; 26.11/10.21 1552[label="Succ (Succ (primPlusNat vxw440 vxw400000))",fontsize=16,color="green",shape="box"];1552 -> 1632[label="",style="dashed", color="green", weight=3]; 26.11/10.21 1553[label="Succ vxw400000",fontsize=16,color="green",shape="box"];1554[label="vxw100",fontsize=16,color="green",shape="box"];1555[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1556[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1557[label="vxw110",fontsize=16,color="green",shape="box"];1558[label="vxw100",fontsize=16,color="green",shape="box"];1559[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1560[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1561[label="vxw110",fontsize=16,color="green",shape="box"];1562[label="vxw100",fontsize=16,color="green",shape="box"];1563[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1564[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1565[label="vxw110",fontsize=16,color="green",shape="box"];1566[label="vxw100",fontsize=16,color="green",shape="box"];1567[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1568[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1569[label="vxw110",fontsize=16,color="green",shape="box"];1570 -> 1633[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1570[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1570 -> 1634[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1571[label="EQ",fontsize=16,color="green",shape="box"];1572 -> 1635[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1572[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1572 -> 1636[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1573[label="EQ",fontsize=16,color="green",shape="box"];1574 -> 1637[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1574[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1574 -> 1638[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1575[label="EQ",fontsize=16,color="green",shape="box"];1576 -> 1639[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1576[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1576 -> 1640[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1577[label="EQ",fontsize=16,color="green",shape="box"];1578 -> 1641[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1578[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1578 -> 1642[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1579[label="EQ",fontsize=16,color="green",shape="box"];1580 -> 1643[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1580[label="compare1 vxw110 vxw100 (vxw110 <= vxw100)",fontsize=16,color="magenta"];1580 -> 1644[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1581[label="EQ",fontsize=16,color="green",shape="box"];1582[label="Integer (primMulInt vxw1000 vxw1110)",fontsize=16,color="green",shape="box"];1582 -> 1645[label="",style="dashed", color="green", weight=3]; 26.11/10.21 1583[label="vxw100",fontsize=16,color="green",shape="box"];1584[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1585[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1586[label="vxw110",fontsize=16,color="green",shape="box"];1587[label="vxw100",fontsize=16,color="green",shape="box"];1588[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1589[label="Pos vxw1010",fontsize=16,color="green",shape="box"];1590[label="vxw110",fontsize=16,color="green",shape="box"];1591[label="vxw100",fontsize=16,color="green",shape="box"];1592[label="Pos vxw1110",fontsize=16,color="green",shape="box"];1593[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1594[label="vxw110",fontsize=16,color="green",shape="box"];1595[label="vxw100",fontsize=16,color="green",shape="box"];1596[label="Neg vxw1110",fontsize=16,color="green",shape="box"];1597[label="Neg vxw1010",fontsize=16,color="green",shape="box"];1598[label="vxw110",fontsize=16,color="green",shape="box"];1599[label="vxw1100",fontsize=16,color="green",shape="box"];1600[label="vxw1000",fontsize=16,color="green",shape="box"];1601[label="vxw100",fontsize=16,color="green",shape="box"];1602[label="vxw110",fontsize=16,color="green",shape="box"];1603[label="vxw100",fontsize=16,color="green",shape="box"];1604[label="vxw110",fontsize=16,color="green",shape="box"];1605[label="vxw100",fontsize=16,color="green",shape="box"];1606[label="vxw110",fontsize=16,color="green",shape="box"];1607[label="vxw100",fontsize=16,color="green",shape="box"];1608[label="vxw110",fontsize=16,color="green",shape="box"];1609[label="vxw100",fontsize=16,color="green",shape="box"];1610[label="vxw110",fontsize=16,color="green",shape="box"];1611[label="vxw100",fontsize=16,color="green",shape="box"];1612[label="vxw110",fontsize=16,color="green",shape="box"];1613[label="vxw100",fontsize=16,color="green",shape="box"];1614[label="vxw110",fontsize=16,color="green",shape="box"];1615[label="vxw100",fontsize=16,color="green",shape="box"];1616[label="vxw110",fontsize=16,color="green",shape="box"];1617[label="vxw100",fontsize=16,color="green",shape="box"];1618[label="vxw110",fontsize=16,color="green",shape="box"];1619[label="vxw100",fontsize=16,color="green",shape="box"];1620[label="vxw110",fontsize=16,color="green",shape="box"];1621[label="vxw100",fontsize=16,color="green",shape="box"];1622[label="vxw110",fontsize=16,color="green",shape="box"];1623[label="vxw100",fontsize=16,color="green",shape="box"];1624[label="vxw110",fontsize=16,color="green",shape="box"];1625[label="vxw100",fontsize=16,color="green",shape="box"];1626[label="vxw110",fontsize=16,color="green",shape="box"];1627[label="vxw100",fontsize=16,color="green",shape="box"];1628[label="vxw110",fontsize=16,color="green",shape="box"];1629[label="LT",fontsize=16,color="green",shape="box"];1630[label="vxw54",fontsize=16,color="green",shape="box"];1631[label="GT",fontsize=16,color="green",shape="box"];1632[label="primPlusNat vxw440 vxw400000",fontsize=16,color="burlywood",shape="triangle"];2264[label="vxw440/Succ vxw4400",fontsize=10,color="white",style="solid",shape="box"];1632 -> 2264[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2264 -> 1646[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2265[label="vxw440/Zero",fontsize=10,color="white",style="solid",shape="box"];1632 -> 2265[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2265 -> 1647[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1634 -> 239[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1634[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1634 -> 1648[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1634 -> 1649[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1633[label="compare1 vxw110 vxw100 vxw56",fontsize=16,color="burlywood",shape="triangle"];2266[label="vxw56/False",fontsize=10,color="white",style="solid",shape="box"];1633 -> 2266[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2266 -> 1650[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2267[label="vxw56/True",fontsize=10,color="white",style="solid",shape="box"];1633 -> 2267[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2267 -> 1651[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1636 -> 241[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1636[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1636 -> 1652[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1636 -> 1653[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1635[label="compare1 vxw110 vxw100 vxw57",fontsize=16,color="burlywood",shape="triangle"];2268[label="vxw57/False",fontsize=10,color="white",style="solid",shape="box"];1635 -> 2268[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2268 -> 1654[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2269[label="vxw57/True",fontsize=10,color="white",style="solid",shape="box"];1635 -> 2269[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2269 -> 1655[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1638 -> 243[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1638[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1638 -> 1656[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1638 -> 1657[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1637[label="compare1 vxw110 vxw100 vxw58",fontsize=16,color="burlywood",shape="triangle"];2270[label="vxw58/False",fontsize=10,color="white",style="solid",shape="box"];1637 -> 2270[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2270 -> 1658[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2271[label="vxw58/True",fontsize=10,color="white",style="solid",shape="box"];1637 -> 2271[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2271 -> 1659[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1640 -> 244[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1640[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1640 -> 1660[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1640 -> 1661[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1639[label="compare1 vxw110 vxw100 vxw59",fontsize=16,color="burlywood",shape="triangle"];2272[label="vxw59/False",fontsize=10,color="white",style="solid",shape="box"];1639 -> 2272[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2272 -> 1662[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2273[label="vxw59/True",fontsize=10,color="white",style="solid",shape="box"];1639 -> 2273[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2273 -> 1663[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1642 -> 245[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1642[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1642 -> 1664[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1642 -> 1665[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1641[label="compare1 vxw110 vxw100 vxw60",fontsize=16,color="burlywood",shape="triangle"];2274[label="vxw60/False",fontsize=10,color="white",style="solid",shape="box"];1641 -> 2274[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2274 -> 1666[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2275[label="vxw60/True",fontsize=10,color="white",style="solid",shape="box"];1641 -> 2275[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2275 -> 1667[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1644 -> 250[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1644[label="vxw110 <= vxw100",fontsize=16,color="magenta"];1644 -> 1668[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1644 -> 1669[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1643[label="compare1 vxw110 vxw100 vxw61",fontsize=16,color="burlywood",shape="triangle"];2276[label="vxw61/False",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2276[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2276 -> 1670[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2277[label="vxw61/True",fontsize=10,color="white",style="solid",shape="box"];1643 -> 2277[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2277 -> 1671[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1645 -> 542[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1645[label="primMulInt vxw1000 vxw1110",fontsize=16,color="magenta"];1645 -> 1672[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1645 -> 1673[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1646[label="primPlusNat (Succ vxw4400) vxw400000",fontsize=16,color="burlywood",shape="box"];2278[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2278[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2278 -> 1674[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2279[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1646 -> 2279[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2279 -> 1675[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1647[label="primPlusNat Zero vxw400000",fontsize=16,color="burlywood",shape="box"];2280[label="vxw400000/Succ vxw4000000",fontsize=10,color="white",style="solid",shape="box"];1647 -> 2280[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2280 -> 1676[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 2281[label="vxw400000/Zero",fontsize=10,color="white",style="solid",shape="box"];1647 -> 2281[label="",style="solid", color="burlywood", weight=9]; 26.11/10.21 2281 -> 1677[label="",style="solid", color="burlywood", weight=3]; 26.11/10.21 1648[label="vxw100",fontsize=16,color="green",shape="box"];1649[label="vxw110",fontsize=16,color="green",shape="box"];1650[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1650 -> 1678[label="",style="solid", color="black", weight=3]; 26.11/10.21 1651[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1651 -> 1679[label="",style="solid", color="black", weight=3]; 26.11/10.21 1652[label="vxw100",fontsize=16,color="green",shape="box"];1653[label="vxw110",fontsize=16,color="green",shape="box"];1654[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1654 -> 1680[label="",style="solid", color="black", weight=3]; 26.11/10.21 1655[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1655 -> 1681[label="",style="solid", color="black", weight=3]; 26.11/10.21 1656[label="vxw100",fontsize=16,color="green",shape="box"];1657[label="vxw110",fontsize=16,color="green",shape="box"];1658[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1658 -> 1682[label="",style="solid", color="black", weight=3]; 26.11/10.21 1659[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1659 -> 1683[label="",style="solid", color="black", weight=3]; 26.11/10.21 1660[label="vxw100",fontsize=16,color="green",shape="box"];1661[label="vxw110",fontsize=16,color="green",shape="box"];1662[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1662 -> 1684[label="",style="solid", color="black", weight=3]; 26.11/10.21 1663[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1663 -> 1685[label="",style="solid", color="black", weight=3]; 26.11/10.21 1664[label="vxw100",fontsize=16,color="green",shape="box"];1665[label="vxw110",fontsize=16,color="green",shape="box"];1666[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1666 -> 1686[label="",style="solid", color="black", weight=3]; 26.11/10.21 1667[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1667 -> 1687[label="",style="solid", color="black", weight=3]; 26.11/10.21 1668[label="vxw100",fontsize=16,color="green",shape="box"];1669[label="vxw110",fontsize=16,color="green",shape="box"];1670[label="compare1 vxw110 vxw100 False",fontsize=16,color="black",shape="box"];1670 -> 1688[label="",style="solid", color="black", weight=3]; 26.11/10.21 1671[label="compare1 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1671 -> 1689[label="",style="solid", color="black", weight=3]; 26.11/10.21 1672[label="vxw1110",fontsize=16,color="green",shape="box"];1673[label="vxw1000",fontsize=16,color="green",shape="box"];1674[label="primPlusNat (Succ vxw4400) (Succ vxw4000000)",fontsize=16,color="black",shape="box"];1674 -> 1690[label="",style="solid", color="black", weight=3]; 26.11/10.21 1675[label="primPlusNat (Succ vxw4400) Zero",fontsize=16,color="black",shape="box"];1675 -> 1691[label="",style="solid", color="black", weight=3]; 26.11/10.21 1676[label="primPlusNat Zero (Succ vxw4000000)",fontsize=16,color="black",shape="box"];1676 -> 1692[label="",style="solid", color="black", weight=3]; 26.11/10.21 1677[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];1677 -> 1693[label="",style="solid", color="black", weight=3]; 26.11/10.21 1678[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1678 -> 1694[label="",style="solid", color="black", weight=3]; 26.11/10.21 1679[label="LT",fontsize=16,color="green",shape="box"];1680[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1680 -> 1695[label="",style="solid", color="black", weight=3]; 26.11/10.21 1681[label="LT",fontsize=16,color="green",shape="box"];1682[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1682 -> 1696[label="",style="solid", color="black", weight=3]; 26.11/10.21 1683[label="LT",fontsize=16,color="green",shape="box"];1684[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1684 -> 1697[label="",style="solid", color="black", weight=3]; 26.11/10.21 1685[label="LT",fontsize=16,color="green",shape="box"];1686[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1686 -> 1698[label="",style="solid", color="black", weight=3]; 26.11/10.21 1687[label="LT",fontsize=16,color="green",shape="box"];1688[label="compare0 vxw110 vxw100 otherwise",fontsize=16,color="black",shape="box"];1688 -> 1699[label="",style="solid", color="black", weight=3]; 26.11/10.21 1689[label="LT",fontsize=16,color="green",shape="box"];1690[label="Succ (Succ (primPlusNat vxw4400 vxw4000000))",fontsize=16,color="green",shape="box"];1690 -> 1700[label="",style="dashed", color="green", weight=3]; 26.11/10.21 1691[label="Succ vxw4400",fontsize=16,color="green",shape="box"];1692[label="Succ vxw4000000",fontsize=16,color="green",shape="box"];1693[label="Zero",fontsize=16,color="green",shape="box"];1694[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1694 -> 1701[label="",style="solid", color="black", weight=3]; 26.11/10.21 1695[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1695 -> 1702[label="",style="solid", color="black", weight=3]; 26.11/10.21 1696[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1696 -> 1703[label="",style="solid", color="black", weight=3]; 26.11/10.21 1697[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1697 -> 1704[label="",style="solid", color="black", weight=3]; 26.11/10.21 1698[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1698 -> 1705[label="",style="solid", color="black", weight=3]; 26.11/10.21 1699[label="compare0 vxw110 vxw100 True",fontsize=16,color="black",shape="box"];1699 -> 1706[label="",style="solid", color="black", weight=3]; 26.11/10.21 1700 -> 1632[label="",style="dashed", color="red", weight=0]; 26.11/10.21 1700[label="primPlusNat vxw4400 vxw4000000",fontsize=16,color="magenta"];1700 -> 1707[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1700 -> 1708[label="",style="dashed", color="magenta", weight=3]; 26.11/10.21 1701[label="GT",fontsize=16,color="green",shape="box"];1702[label="GT",fontsize=16,color="green",shape="box"];1703[label="GT",fontsize=16,color="green",shape="box"];1704[label="GT",fontsize=16,color="green",shape="box"];1705[label="GT",fontsize=16,color="green",shape="box"];1706[label="GT",fontsize=16,color="green",shape="box"];1707[label="vxw4400",fontsize=16,color="green",shape="box"];1708[label="vxw4000000",fontsize=16,color="green",shape="box"];} 26.11/10.21 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (14) 26.11/10.21 Complex Obligation (AND) 26.11/10.21 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (15) 26.11/10.21 Obligation: 26.11/10.21 Q DP problem: 26.11/10.21 The TRS P consists of the following rules: 26.11/10.21 26.11/10.21 new_primCmpNat(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat(vxw1100, vxw1000) 26.11/10.21 26.11/10.21 R is empty. 26.11/10.21 Q is empty. 26.11/10.21 We have to consider all minimal (P,Q,R)-chains. 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (16) QDPSizeChangeProof (EQUIVALENT) 26.11/10.21 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.11/10.21 26.11/10.21 From the DPs we obtained the following set of size-change graphs: 26.11/10.21 *new_primCmpNat(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat(vxw1100, vxw1000) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2 26.11/10.21 26.11/10.21 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (17) 26.11/10.21 YES 26.11/10.21 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (18) 26.11/10.21 Obligation: 26.11/10.21 Q DP problem: 26.11/10.21 The TRS P consists of the following rules: 26.11/10.21 26.11/10.21 new_esEs(Just(vxw300), Just(vxw4000), app(ty_[], bg)) -> new_esEs2(vxw300, vxw4000, bg) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(ty_Maybe, cc)) -> new_esEs(vxw301, vxw4001, cc) 26.11/10.21 new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_Either, bch), bda), bca) -> new_esEs3(vxw300, vxw4000, bch, bda) 26.11/10.21 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), baf) -> new_esEs2(vxw301, vxw4001, baf) 26.11/10.21 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_[], bea)) -> new_esEs2(vxw300, vxw4000, bea) 26.11/10.21 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, bah), bba)) -> new_esEs0(vxw300, vxw4000, bah, bba) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(app(ty_@2, cd), ce)) -> new_esEs0(vxw301, vxw4001, cd, ce) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, hh), baa), bab), eh, gd) -> new_esEs1(vxw300, vxw4000, hh, baa, bab) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, ee), ef), df) -> new_esEs3(vxw300, vxw4000, ee, ef) 26.11/10.21 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_Maybe, bdc)) -> new_esEs(vxw300, vxw4000, bdc) 26.11/10.21 new_esEs(Just(vxw300), Just(vxw4000), app(ty_Maybe, ba)) -> new_esEs(vxw300, vxw4000, ba) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(ty_[], fh)) -> new_esEs2(vxw302, vxw4002, fh) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(ty_[], hb), gd) -> new_esEs2(vxw301, vxw4001, hb) 26.11/10.21 new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_@2, bcb), bcc), bca) -> new_esEs0(vxw300, vxw4000, bcb, bcc) 26.11/10.21 new_esEs(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(vxw300, vxw4000, bd, be, bf) 26.11/10.21 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw300, vxw4000, beb, bec) 26.11/10.21 new_esEs(Just(vxw300), Just(vxw4000), app(app(ty_@2, bb), bc)) -> new_esEs0(vxw300, vxw4000, bb, bc) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vxw301, vxw4001, dc, dd) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(ty_Maybe, fa)) -> new_esEs(vxw302, vxw4002, fa) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bac), eh, gd) -> new_esEs2(vxw300, vxw4000, bac) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, de), df) -> new_esEs(vxw300, vxw4000, de) 26.11/10.21 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs1(vxw300, vxw4000, bbb, bbc, bbd) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(ty_Maybe, gc), gd) -> new_esEs(vxw301, vxw4001, gc) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bad), bae), eh, gd) -> new_esEs3(vxw300, vxw4000, bad, bae) 26.11/10.21 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(vxw300, vxw4000, bdf, bdg, bdh) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(app(app(ty_@3, cf), cg), da)) -> new_esEs1(vxw301, vxw4001, cf, cg, da) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(app(ty_@2, ge), gf), gd) -> new_esEs0(vxw301, vxw4001, ge, gf) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, he), eh, gd) -> new_esEs(vxw300, vxw4000, he) 26.11/10.21 new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_@2, bdd), bde)) -> new_esEs0(vxw300, vxw4000, bdd, bde) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(app(ty_@2, fb), fc)) -> new_esEs0(vxw302, vxw4002, fb, fc) 26.11/10.21 new_esEs3(Left(vxw300), Left(vxw4000), app(ty_Maybe, bbh), bca) -> new_esEs(vxw300, vxw4000, bbh) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], ed), df) -> new_esEs2(vxw300, vxw4000, ed) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(vxw302, vxw4002, fd, ff, fg) 26.11/10.21 new_esEs(Just(vxw300), Just(vxw4000), app(app(ty_Either, bh), ca)) -> new_esEs3(vxw300, vxw4000, bh, ca) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(app(ty_Either, hc), hd), gd) -> new_esEs3(vxw301, vxw4001, hc, hd) 26.11/10.21 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bag)) -> new_esEs(vxw300, vxw4000, bag) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(ty_[], db)) -> new_esEs2(vxw301, vxw4001, db) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, hf), hg), eh, gd) -> new_esEs0(vxw300, vxw4000, hf, hg) 26.11/10.21 new_esEs3(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(vxw300, vxw4000, bcd, bce, bcf) 26.11/10.21 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bbe)) -> new_esEs2(vxw300, vxw4000, bbe) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(app(ty_Either, ga), gb)) -> new_esEs3(vxw302, vxw4002, ga, gb) 26.11/10.21 new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bbf), bbg)) -> new_esEs3(vxw300, vxw4000, bbf, bbg) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, dg), dh), df) -> new_esEs0(vxw300, vxw4000, dg, dh) 26.11/10.21 new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(app(app(ty_@3, gg), gh), ha), gd) -> new_esEs1(vxw301, vxw4001, gg, gh, ha) 26.11/10.21 new_esEs3(Left(vxw300), Left(vxw4000), app(ty_[], bcg), bca) -> new_esEs2(vxw300, vxw4000, bcg) 26.11/10.21 new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, ea), eb), ec), df) -> new_esEs1(vxw300, vxw4000, ea, eb, ec) 26.11/10.21 26.11/10.21 R is empty. 26.11/10.21 Q is empty. 26.11/10.21 We have to consider all minimal (P,Q,R)-chains. 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (19) QDPSizeChangeProof (EQUIVALENT) 26.11/10.21 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.11/10.21 26.11/10.21 From the DPs we obtained the following set of size-change graphs: 26.11/10.21 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_Maybe, bag)) -> new_esEs(vxw300, vxw4000, bag) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_@2, bah), bba)) -> new_esEs0(vxw300, vxw4000, bah, bba) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs(Just(vxw300), Just(vxw4000), app(ty_Maybe, ba)) -> new_esEs(vxw300, vxw4000, ba) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs(Just(vxw300), Just(vxw4000), app(app(ty_@2, bb), bc)) -> new_esEs0(vxw300, vxw4000, bb, bc) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(ty_Either, bbf), bbg)) -> new_esEs3(vxw300, vxw4000, bbf, bbg) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs(Just(vxw300), Just(vxw4000), app(app(ty_Either, bh), ca)) -> new_esEs3(vxw300, vxw4000, bh, ca) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(app(app(ty_@3, bbb), bbc), bbd)) -> new_esEs1(vxw300, vxw4000, bbb, bbc, bbd) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs(Just(vxw300), Just(vxw4000), app(ty_[], bg)) -> new_esEs2(vxw300, vxw4000, bg) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bd), be), bf)) -> new_esEs1(vxw300, vxw4000, bd, be, bf) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), baf) -> new_esEs2(vxw301, vxw4001, baf) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs2(:(vxw300, vxw301), :(vxw4000, vxw4001), app(ty_[], bbe)) -> new_esEs2(vxw300, vxw4000, bbe) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_Maybe, bdc)) -> new_esEs(vxw300, vxw4000, bdc) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Left(vxw300), Left(vxw4000), app(ty_Maybe, bbh), bca) -> new_esEs(vxw300, vxw4000, bbh) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(ty_Maybe, cc)) -> new_esEs(vxw301, vxw4001, cc) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_Maybe, de), df) -> new_esEs(vxw300, vxw4000, de) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(ty_Maybe, fa)) -> new_esEs(vxw302, vxw4002, fa) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(ty_Maybe, gc), gd) -> new_esEs(vxw301, vxw4001, gc) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_Maybe, he), eh, gd) -> new_esEs(vxw300, vxw4000, he) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_@2, bcb), bcc), bca) -> new_esEs0(vxw300, vxw4000, bcb, bcc) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_@2, bdd), bde)) -> new_esEs0(vxw300, vxw4000, bdd, bde) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(app(ty_@2, cd), ce)) -> new_esEs0(vxw301, vxw4001, cd, ce) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_@2, dg), dh), df) -> new_esEs0(vxw300, vxw4000, dg, dh) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(app(ty_@2, ge), gf), gd) -> new_esEs0(vxw301, vxw4001, ge, gf) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(app(ty_@2, fb), fc)) -> new_esEs0(vxw302, vxw4002, fb, fc) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_@2, hf), hg), eh, gd) -> new_esEs0(vxw300, vxw4000, hf, hg) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(ty_Either, bch), bda), bca) -> new_esEs3(vxw300, vxw4000, bch, bda) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(ty_Either, beb), bec)) -> new_esEs3(vxw300, vxw4000, beb, bec) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(ty_[], bea)) -> new_esEs2(vxw300, vxw4000, bea) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Left(vxw300), Left(vxw4000), app(ty_[], bcg), bca) -> new_esEs2(vxw300, vxw4000, bcg) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Right(vxw300), Right(vxw4000), bdb, app(app(app(ty_@3, bdf), bdg), bdh)) -> new_esEs1(vxw300, vxw4000, bdf, bdg, bdh) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs3(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bcd), bce), bcf), bca) -> new_esEs1(vxw300, vxw4000, bcd, bce, bcf) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(ty_Either, ee), ef), df) -> new_esEs3(vxw300, vxw4000, ee, ef) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(app(ty_Either, dc), dd)) -> new_esEs3(vxw301, vxw4001, dc, dd) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(ty_Either, bad), bae), eh, gd) -> new_esEs3(vxw300, vxw4000, bad, bae) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(app(ty_Either, hc), hd), gd) -> new_esEs3(vxw301, vxw4001, hc, hd) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(app(ty_Either, ga), gb)) -> new_esEs3(vxw302, vxw4002, ga, gb) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(ty_[], ed), df) -> new_esEs2(vxw300, vxw4000, ed) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(ty_[], db)) -> new_esEs2(vxw301, vxw4001, db) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(ty_[], fh)) -> new_esEs2(vxw302, vxw4002, fh) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(ty_[], hb), gd) -> new_esEs2(vxw301, vxw4001, hb) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(ty_[], bac), eh, gd) -> new_esEs2(vxw300, vxw4000, bac) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cb, app(app(app(ty_@3, cf), cg), da)) -> new_esEs1(vxw301, vxw4001, cf, cg, da) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs0(@2(vxw300, vxw301), @2(vxw4000, vxw4001), app(app(app(ty_@3, ea), eb), ec), df) -> new_esEs1(vxw300, vxw4000, ea, eb, ec) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), app(app(app(ty_@3, hh), baa), bab), eh, gd) -> new_esEs1(vxw300, vxw4000, hh, baa, bab) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, eh, app(app(app(ty_@3, fd), ff), fg)) -> new_esEs1(vxw302, vxw4002, fd, ff, fg) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.11/10.21 26.11/10.21 26.11/10.21 *new_esEs1(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), eg, app(app(app(ty_@3, gg), gh), ha), gd) -> new_esEs1(vxw301, vxw4001, gg, gh, ha) 26.11/10.21 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.11/10.21 26.11/10.21 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (20) 26.11/10.21 YES 26.11/10.21 26.11/10.21 ---------------------------------------- 26.11/10.21 26.11/10.21 (21) 26.11/10.21 Obligation: 26.11/10.21 Q DP problem: 26.11/10.21 The TRS P consists of the following rules: 26.11/10.21 26.11/10.21 new_insertBy(Just(vxw30), :(Nothing, vxw41), ba) -> new_insertBy(Just(vxw30), vxw41, ba) 26.11/10.21 new_insertBy00(vxw19, vxw20, vxw21, False, bc) -> new_insertBy(Just(vxw20), vxw21, bc) 26.11/10.21 new_insertBy0(vxw10, vxw11, vxw12, False, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, bb), bb) 26.11/10.21 new_insertBy(Just(vxw30), :(Just(vxw400), vxw41), ba) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, ba), ba) 26.11/10.21 26.11/10.21 The TRS R consists of the following rules: 26.11/10.21 26.11/10.21 new_lt8(vxw111, vxw101, ty_Float) -> new_lt16(vxw111, vxw101) 26.11/10.21 new_lt20(vxw110, vxw100, ty_Double) -> new_lt12(vxw110, vxw100) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_Char, bfe) -> new_ltEs5(vxw110, vxw100) 26.11/10.21 new_ltEs7(vxw112, vxw102, app(app(ty_@2, gf), gg)) -> new_ltEs11(vxw112, vxw102, gf, gg) 26.11/10.21 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.11/10.21 new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT 26.11/10.21 new_esEs29(vxw30, vxw400, app(ty_[], dh)) -> new_esEs12(vxw30, vxw400, dh) 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.21 new_primPlusNat0(Zero, Zero) -> Zero 26.11/10.21 new_compare26(vxw110, vxw100, False, bcd, bce) -> new_compare114(vxw110, vxw100, new_ltEs11(vxw110, vxw100, bcd, bce), bcd, bce) 26.11/10.21 new_pePe(True, vxw42) -> True 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, eb) -> new_esEs8(vxw300, vxw4000) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs8(vxw110, vxw100) 26.11/10.21 new_lt12(vxw110, vxw100) -> new_esEs8(new_compare10(vxw110, vxw100), LT) 26.11/10.21 new_esEs25(vxw302, vxw4002, app(app(app(ty_@3, cdf), cdg), cdh)) -> new_esEs6(vxw302, vxw4002, cdf, cdg, cdh) 26.11/10.21 new_ltEs19(vxw111, vxw101, app(app(app(ty_@3, chd), che), chf)) -> new_ltEs6(vxw111, vxw101, chd, che, chf) 26.11/10.21 new_compare111(vxw110, vxw100, True, ed, ee, ef) -> LT 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.21 new_esEs20(vxw301, vxw4001, app(ty_[], caa)) -> new_esEs12(vxw301, vxw4001, caa) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, app(ty_Ratio, dcc)) -> new_ltEs13(vxw110, vxw100, dcc) 26.11/10.21 new_lt8(vxw111, vxw101, app(app(app(ty_@3, bad), bae), baf)) -> new_lt15(vxw111, vxw101, bad, bae, baf) 26.11/10.21 new_ltEs20(vxw11, vxw10, app(app(ty_@2, bfb), bfc)) -> new_ltEs11(vxw11, vxw10, bfb, bfc) 26.11/10.21 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.11/10.21 new_esEs12(:(vxw300, vxw301), [], dh) -> False 26.11/10.21 new_esEs12([], :(vxw4000, vxw4001), dh) -> False 26.11/10.21 new_esEs27(vxw300, vxw4000, app(app(ty_Either, cgf), cgg)) -> new_esEs5(vxw300, vxw4000, cgf, cgg) 26.11/10.21 new_compare110(vxw110, vxw100, False, cg) -> GT 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_Ordering) -> new_ltEs9(vxw111, vxw101) 26.11/10.21 new_ltEs16(Nothing, Nothing, bfg) -> True 26.11/10.21 new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_Double) -> new_esEs13(vxw301, vxw4001) 26.11/10.21 new_esEs9(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 26.11/10.21 new_compare26(vxw110, vxw100, True, bcd, bce) -> EQ 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, fa)) -> new_esEs7(vxw300, vxw4000, fa) 26.11/10.21 new_ltEs16(Just(vxw110), Nothing, bfg) -> False 26.11/10.21 new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) 26.11/10.21 new_ltEs12(Left(vxw110), Right(vxw100), bfd, bfe) -> True 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_Ordering, bfe) -> new_ltEs9(vxw110, vxw100) 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_Ordering) -> new_ltEs9(vxw11, vxw10) 26.11/10.21 new_ltEs9(LT, LT) -> True 26.11/10.21 new_compare115(vxw110, vxw100, True, cbf, cbg) -> LT 26.11/10.21 new_esEs28(vxw110, vxw100, app(ty_Maybe, cg)) -> new_esEs7(vxw110, vxw100, cg) 26.11/10.21 new_compare6(vxw110, vxw100, app(app(ty_Either, bg), bh)) -> new_compare12(vxw110, vxw100, bg, bh) 26.11/10.21 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), app(ty_Ratio, dba), bfe) -> new_ltEs13(vxw110, vxw100, dba) 26.11/10.21 new_ltEs19(vxw111, vxw101, app(ty_Maybe, chh)) -> new_ltEs16(vxw111, vxw101, chh) 26.11/10.21 new_esEs18(vxw111, vxw101, app(app(ty_@2, hh), baa)) -> new_esEs4(vxw111, vxw101, hh, baa) 26.11/10.21 new_ltEs4(False, True) -> True 26.11/10.21 new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare16(vxw11, vxw10), GT)) 26.11/10.21 new_compare113(vxw110, vxw100, False) -> GT 26.11/10.21 new_compare6(vxw110, vxw100, ty_Int) -> new_compare8(vxw110, vxw100) 26.11/10.21 new_compare19(@0, @0) -> EQ 26.11/10.21 new_esEs18(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) 26.11/10.21 new_lt8(vxw111, vxw101, ty_Ordering) -> new_lt11(vxw111, vxw101) 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_Char) -> new_ltEs5(vxw11, vxw10) 26.11/10.21 new_lt9(vxw110, vxw100, app(ty_[], bcc)) -> new_lt6(vxw110, vxw100, bcc) 26.11/10.21 new_esEs8(GT, GT) -> True 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.21 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 26.11/10.21 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 26.11/10.21 new_ltEs20(vxw11, vxw10, app(ty_[], bd)) -> new_ltEs18(vxw11, vxw10, bd) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_Double, bfe) -> new_ltEs10(vxw110, vxw100) 26.11/10.21 new_esEs10(:%(vxw300, vxw301), :%(vxw4000, vxw4001), da) -> new_asAs(new_esEs23(vxw300, vxw4000, da), new_esEs22(vxw301, vxw4001, da)) 26.11/10.21 new_lt20(vxw110, vxw100, app(app(ty_@2, bcd), bce)) -> new_lt13(vxw110, vxw100, bcd, bce) 26.11/10.21 new_esEs29(vxw30, vxw400, app(app(app(ty_@3, de), df), dg)) -> new_esEs6(vxw30, vxw400, de, df, dg) 26.11/10.21 new_esEs24(vxw300, vxw4000, app(app(ty_@2, ccb), ccc)) -> new_esEs4(vxw300, vxw4000, ccb, ccc) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_Double) -> new_ltEs10(vxw112, vxw102) 26.11/10.21 new_esEs8(EQ, EQ) -> True 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_Float, bfe) -> new_ltEs14(vxw110, vxw100) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), app(app(app(ty_@3, daf), dag), dah), bfe) -> new_ltEs6(vxw110, vxw100, daf, dag, dah) 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.21 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 26.11/10.21 new_esEs19(vxw110, vxw100, app(ty_Ratio, bca)) -> new_esEs10(vxw110, vxw100, bca) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, app(app(ty_@2, beb), bec)) -> new_esEs4(vxw300, vxw4000, beb, bec) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.21 new_compare13(vxw110, vxw100, ed, ee, ef) -> new_compare27(vxw110, vxw100, new_esEs6(vxw110, vxw100, ed, ee, ef), ed, ee, ef) 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_Char) -> new_ltEs5(vxw111, vxw101) 26.11/10.21 new_ltEs19(vxw111, vxw101, app(app(ty_@2, cgh), cha)) -> new_ltEs11(vxw111, vxw101, cgh, cha) 26.11/10.21 new_compare6(vxw110, vxw100, app(ty_[], cf)) -> new_compare0(vxw110, vxw100, cf) 26.11/10.21 new_not(True) -> False 26.11/10.21 new_esEs25(vxw302, vxw4002, app(ty_Ratio, cdb)) -> new_esEs10(vxw302, vxw4002, cdb) 26.11/10.21 new_lt20(vxw110, vxw100, ty_Float) -> new_lt16(vxw110, vxw100) 26.11/10.21 new_primCompAux00(vxw54, LT) -> LT 26.11/10.21 new_primCmpNat0(Zero, Zero) -> EQ 26.11/10.21 new_esEs21(vxw300, vxw4000, app(app(app(ty_@3, cah), cba), cbb)) -> new_esEs6(vxw300, vxw4000, cah, cba, cbb) 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.21 new_esEs20(vxw301, vxw4001, app(app(app(ty_@3, bhf), bhg), bhh)) -> new_esEs6(vxw301, vxw4001, bhf, bhg, bhh) 26.11/10.21 new_lt20(vxw110, vxw100, app(app(app(ty_@3, ed), ee), ef)) -> new_lt15(vxw110, vxw100, ed, ee, ef) 26.11/10.21 new_esEs4(@2(vxw300, vxw301), @2(vxw4000, vxw4001), dc, dd) -> new_asAs(new_esEs21(vxw300, vxw4000, dc), new_esEs20(vxw301, vxw4001, dd)) 26.11/10.21 new_compare6(vxw110, vxw100, app(ty_Ratio, cd)) -> new_compare14(vxw110, vxw100, cd) 26.11/10.21 new_compare27(vxw110, vxw100, False, ed, ee, ef) -> new_compare111(vxw110, vxw100, new_ltEs6(vxw110, vxw100, ed, ee, ef), ed, ee, ef) 26.11/10.21 new_esEs19(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 26.11/10.21 new_ltEs20(vxw11, vxw10, app(app(app(ty_@3, gc), gd), ge)) -> new_ltEs6(vxw11, vxw10, gc, gd, ge) 26.11/10.21 new_esEs19(vxw110, vxw100, app(app(ty_@2, bbb), bbc)) -> new_esEs4(vxw110, vxw100, bbb, bbc) 26.11/10.21 new_primEqNat0(Succ(vxw3000), Zero) -> False 26.11/10.21 new_primEqNat0(Zero, Succ(vxw40000)) -> False 26.11/10.21 new_compare112(vxw110, vxw100, False) -> GT 26.11/10.21 new_compare8(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 26.11/10.21 new_esEs23(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.21 new_ltEs17(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) 26.11/10.21 new_primCompAux00(vxw54, GT) -> GT 26.11/10.21 new_compare10(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.21 new_compare10(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_Double) -> new_esEs13(vxw302, vxw4002) 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), app(ty_[], dbc), bfe) -> new_ltEs18(vxw110, vxw100, dbc) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_Ordering) -> new_ltEs9(vxw112, vxw102) 26.11/10.21 new_esEs26(vxw301, vxw4001, app(ty_Ratio, ced)) -> new_esEs10(vxw301, vxw4001, ced) 26.11/10.21 new_lt20(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) 26.11/10.21 new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT 26.11/10.21 new_lt6(vxw110, vxw100, eg) -> new_esEs8(new_compare0(vxw110, vxw100, eg), LT) 26.11/10.21 new_esEs20(vxw301, vxw4001, app(app(ty_@2, bhd), bhe)) -> new_esEs4(vxw301, vxw4001, bhd, bhe) 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_Float) -> new_ltEs14(vxw111, vxw101) 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_Double) -> new_ltEs10(vxw11, vxw10) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, app(ty_[], dce)) -> new_ltEs18(vxw110, vxw100, dce) 26.11/10.21 new_esEs19(vxw110, vxw100, ty_Double) -> new_esEs13(vxw110, vxw100) 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_Float) -> new_ltEs14(vxw11, vxw10) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.21 new_lt8(vxw111, vxw101, ty_Int) -> new_lt4(vxw111, vxw101) 26.11/10.21 new_lt8(vxw111, vxw101, app(ty_Maybe, bah)) -> new_lt18(vxw111, vxw101, bah) 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) 26.11/10.21 new_lt9(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) 26.11/10.21 new_compare11(vxw110, vxw100, bcd, bce) -> new_compare26(vxw110, vxw100, new_esEs4(vxw110, vxw100, bcd, bce), bcd, bce) 26.11/10.21 new_primCmpNat0(Zero, Succ(vxw1000)) -> LT 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_@0) -> new_ltEs17(vxw11, vxw10) 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 26.11/10.21 new_esEs19(vxw110, vxw100, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_esEs6(vxw110, vxw100, bbf, bbg, bbh) 26.11/10.21 new_esEs21(vxw300, vxw4000, app(ty_Ratio, cad)) -> new_esEs10(vxw300, vxw4000, cad) 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_Double) -> new_ltEs10(vxw111, vxw101) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, app(ty_Maybe, bea)) -> new_esEs7(vxw300, vxw4000, bea) 26.11/10.21 new_sr(Integer(vxw1000), Integer(vxw1110)) -> Integer(new_primMulInt(vxw1000, vxw1110)) 26.11/10.21 new_lt9(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_lt18(vxw110, vxw100, bcb) 26.11/10.21 new_primCmpNat0(Succ(vxw1100), Zero) -> GT 26.11/10.21 new_pePe(False, vxw42) -> vxw42 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), app(ty_Ratio, bgg)) -> new_ltEs13(vxw110, vxw100, bgg) 26.11/10.21 new_esEs7(Nothing, Just(vxw4000), db) -> False 26.11/10.21 new_esEs7(Just(vxw300), Nothing, db) -> False 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_Integer) -> new_esEs14(vxw302, vxw4002) 26.11/10.21 new_compare114(vxw110, vxw100, True, bcd, bce) -> LT 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, ga), gb)) -> new_esEs5(vxw300, vxw4000, ga, gb) 26.11/10.21 new_esEs18(vxw111, vxw101, ty_Float) -> new_esEs11(vxw111, vxw101) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs14(vxw110, vxw100) 26.11/10.21 new_lt9(vxw110, vxw100, app(app(ty_Either, bbd), bbe)) -> new_lt14(vxw110, vxw100, bbd, bbe) 26.11/10.21 new_esEs8(LT, EQ) -> False 26.11/10.21 new_esEs8(EQ, LT) -> False 26.11/10.21 new_lt18(vxw110, vxw100, cg) -> new_esEs8(new_compare18(vxw110, vxw100, cg), LT) 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, bch), bda), eb) -> new_esEs4(vxw300, vxw4000, bch, bda) 26.11/10.21 new_esEs21(vxw300, vxw4000, app(app(ty_@2, caf), cag)) -> new_esEs4(vxw300, vxw4000, caf, cag) 26.11/10.21 new_esEs28(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) 26.11/10.21 new_compare25(vxw110, vxw100, False, cg) -> new_compare110(vxw110, vxw100, new_ltEs16(vxw110, vxw100, cg), cg) 26.11/10.21 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 26.11/10.21 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 26.11/10.21 new_esEs7(Nothing, Nothing, db) -> True 26.11/10.21 new_lt9(vxw110, vxw100, app(app(app(ty_@3, bbf), bbg), bbh)) -> new_lt15(vxw110, vxw100, bbf, bbg, bbh) 26.11/10.21 new_lt8(vxw111, vxw101, app(ty_[], bba)) -> new_lt6(vxw111, vxw101, bba) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.21 new_compare7(vxw110, vxw100) -> new_compare24(vxw110, vxw100, new_esEs17(vxw110, vxw100)) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_@0) -> new_ltEs17(vxw110, vxw100) 26.11/10.21 new_esEs25(vxw302, vxw4002, app(app(ty_@2, cdd), cde)) -> new_esEs4(vxw302, vxw4002, cdd, cde) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), app(app(ty_Either, dad), dae), bfe) -> new_ltEs12(vxw110, vxw100, dad, dae) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.21 new_lt7(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) 26.11/10.21 new_esEs18(vxw111, vxw101, ty_Char) -> new_esEs16(vxw111, vxw101) 26.11/10.21 new_esEs24(vxw300, vxw4000, app(app(ty_Either, cch), cda)) -> new_esEs5(vxw300, vxw4000, cch, cda) 26.11/10.21 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 26.11/10.21 new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT 26.11/10.21 new_compare114(vxw110, vxw100, False, bcd, bce) -> GT 26.11/10.21 new_esEs20(vxw301, vxw4001, app(ty_Ratio, bhb)) -> new_esEs10(vxw301, vxw4001, bhb) 26.11/10.21 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.21 new_esEs25(vxw302, vxw4002, app(ty_Maybe, cdc)) -> new_esEs7(vxw302, vxw4002, cdc) 26.11/10.21 new_lt9(vxw110, vxw100, ty_Double) -> new_lt12(vxw110, vxw100) 26.11/10.21 new_lt9(vxw110, vxw100, ty_Integer) -> new_lt17(vxw110, vxw100) 26.11/10.21 new_esEs24(vxw300, vxw4000, app(app(app(ty_@3, ccd), cce), ccf)) -> new_esEs6(vxw300, vxw4000, ccd, cce, ccf) 26.11/10.21 new_lt15(vxw110, vxw100, ed, ee, ef) -> new_esEs8(new_compare13(vxw110, vxw100, ed, ee, ef), LT) 26.11/10.21 new_esEs29(vxw30, vxw400, ty_Double) -> new_esEs13(vxw30, vxw400) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_Float) -> new_ltEs14(vxw112, vxw102) 26.11/10.21 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 26.11/10.21 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 26.11/10.21 new_esEs29(vxw30, vxw400, ty_Integer) -> new_esEs14(vxw30, vxw400) 26.11/10.21 new_compare6(vxw110, vxw100, ty_Double) -> new_compare10(vxw110, vxw100) 26.11/10.21 new_ltEs9(GT, EQ) -> False 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, fd), ff), fg)) -> new_esEs6(vxw300, vxw4000, fd, ff, fg) 26.11/10.21 new_ltEs19(vxw111, vxw101, app(ty_[], daa)) -> new_ltEs18(vxw111, vxw101, daa) 26.11/10.21 new_esEs26(vxw301, vxw4001, app(ty_[], cfc)) -> new_esEs12(vxw301, vxw4001, cfc) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_@0) -> new_ltEs17(vxw112, vxw102) 26.11/10.21 new_esEs28(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.21 new_primPlusNat1(Succ(vxw440), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw440, vxw400000))) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.21 new_ltEs7(vxw112, vxw102, app(ty_Maybe, hf)) -> new_ltEs16(vxw112, vxw102, hf) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, bdf), bdg), eb) -> new_esEs5(vxw300, vxw4000, bdf, bdg) 26.11/10.21 new_lt8(vxw111, vxw101, ty_Double) -> new_lt12(vxw111, vxw101) 26.11/10.21 new_lt9(vxw110, vxw100, app(app(ty_@2, bbb), bbc)) -> new_lt13(vxw110, vxw100, bbb, bbc) 26.11/10.21 new_primPlusNat0(Succ(vxw4400), Zero) -> Succ(vxw4400) 26.11/10.21 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 26.11/10.21 new_compare27(vxw110, vxw100, True, ed, ee, ef) -> EQ 26.11/10.21 new_compare15(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.21 new_esEs21(vxw300, vxw4000, app(app(ty_Either, cbd), cbe)) -> new_esEs5(vxw300, vxw4000, cbd, cbe) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), app(app(ty_@2, dab), dac), bfe) -> new_ltEs11(vxw110, vxw100, dab, dac) 26.11/10.21 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 26.11/10.21 new_esEs22(vxw301, vxw4001, ty_Int) -> new_esEs9(vxw301, vxw4001) 26.11/10.21 new_esEs24(vxw300, vxw4000, app(ty_[], ccg)) -> new_esEs12(vxw300, vxw4000, ccg) 26.11/10.21 new_esEs8(LT, LT) -> True 26.11/10.21 new_esEs19(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 26.11/10.21 new_esEs29(vxw30, vxw400, ty_Float) -> new_esEs11(vxw30, vxw400) 26.11/10.21 new_ltEs20(vxw11, vxw10, app(ty_Maybe, bfg)) -> new_ltEs16(vxw11, vxw10, bfg) 26.11/10.21 new_esEs28(vxw110, vxw100, app(ty_Ratio, ec)) -> new_esEs10(vxw110, vxw100, ec) 26.11/10.21 new_lt20(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 26.11/10.21 new_lt20(vxw110, vxw100, ty_Int) -> new_lt4(vxw110, vxw100) 26.11/10.21 new_lt4(vxw110, vxw100) -> new_esEs8(new_compare8(vxw110, vxw100), LT) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.21 new_lt8(vxw111, vxw101, app(app(ty_@2, hh), baa)) -> new_lt13(vxw111, vxw101, hh, baa) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, fb), fc)) -> new_esEs4(vxw300, vxw4000, fb, fc) 26.11/10.21 new_esEs25(vxw302, vxw4002, app(ty_[], cea)) -> new_esEs12(vxw302, vxw4002, cea) 26.11/10.21 new_esEs28(vxw110, vxw100, ty_Bool) -> new_esEs17(vxw110, vxw100) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], fh)) -> new_esEs12(vxw300, vxw4000, fh) 26.11/10.21 new_esEs28(vxw110, vxw100, ty_Float) -> new_esEs11(vxw110, vxw100) 26.11/10.21 new_compare9(vxw110, vxw100) -> new_compare23(vxw110, vxw100, new_esEs8(vxw110, vxw100)) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.21 new_lt13(vxw110, vxw100, bcd, bce) -> new_esEs8(new_compare11(vxw110, vxw100, bcd, bce), LT) 26.11/10.21 new_ltEs9(GT, GT) -> True 26.11/10.21 new_esEs18(vxw111, vxw101, ty_Bool) -> new_esEs17(vxw111, vxw101) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs15(vxw110, vxw100) 26.11/10.21 new_esEs24(vxw300, vxw4000, app(ty_Maybe, cca)) -> new_esEs7(vxw300, vxw4000, cca) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, app(app(ty_@2, dbd), dbe)) -> new_ltEs11(vxw110, vxw100, dbd, dbe) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_Bool) -> new_ltEs4(vxw110, vxw100) 26.11/10.21 new_compare15(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), app(ty_Maybe, bgh)) -> new_ltEs16(vxw110, vxw100, bgh) 26.11/10.21 new_compare115(vxw110, vxw100, False, cbf, cbg) -> GT 26.11/10.21 new_esEs29(vxw30, vxw400, ty_Bool) -> new_esEs17(vxw30, vxw400) 26.11/10.21 new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt11(vxw110, vxw100) 26.11/10.21 new_compare28(vxw110, vxw100, False, cbf, cbg) -> new_compare115(vxw110, vxw100, new_ltEs12(vxw110, vxw100, cbf, cbg), cbf, cbg) 26.11/10.21 new_esEs28(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 26.11/10.21 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.21 new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, app(app(app(ty_@3, dbh), dca), dcb)) -> new_ltEs6(vxw110, vxw100, dbh, dca, dcb) 26.11/10.21 new_compare25(vxw110, vxw100, True, cg) -> EQ 26.11/10.21 new_lt20(vxw110, vxw100, app(ty_Ratio, ec)) -> new_lt5(vxw110, vxw100, ec) 26.11/10.21 new_esEs18(vxw111, vxw101, app(ty_Ratio, bag)) -> new_esEs10(vxw111, vxw101, bag) 26.11/10.21 new_esEs29(vxw30, vxw400, ty_@0) -> new_esEs15(vxw30, vxw400) 26.11/10.21 new_esEs29(vxw30, vxw400, app(ty_Ratio, da)) -> new_esEs10(vxw30, vxw400, da) 26.11/10.21 new_ltEs7(vxw112, vxw102, app(ty_[], hg)) -> new_ltEs18(vxw112, vxw102, hg) 26.11/10.21 new_esEs18(vxw111, vxw101, ty_@0) -> new_esEs15(vxw111, vxw101) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_Int) -> new_ltEs8(vxw110, vxw100) 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_Integer) -> new_ltEs15(vxw11, vxw10) 26.11/10.21 new_lt8(vxw111, vxw101, app(app(ty_Either, bab), bac)) -> new_lt14(vxw111, vxw101, bab, bac) 26.11/10.21 new_lt14(vxw110, vxw100, cbf, cbg) -> new_esEs8(new_compare12(vxw110, vxw100, cbf, cbg), LT) 26.11/10.21 new_ltEs18(vxw11, vxw10, bd) -> new_not(new_esEs8(new_compare0(vxw11, vxw10, bd), GT)) 26.11/10.21 new_compare14(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare8(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, bcf), eb) -> new_esEs10(vxw300, vxw4000, bcf) 26.11/10.21 new_compare112(vxw110, vxw100, True) -> LT 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_Double) -> new_ltEs10(vxw110, vxw100) 26.11/10.21 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.21 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, app(app(ty_Either, dbf), dbg)) -> new_ltEs12(vxw110, vxw100, dbf, dbg) 26.11/10.21 new_esEs19(vxw110, vxw100, app(app(ty_Either, bbd), bbe)) -> new_esEs5(vxw110, vxw100, bbd, bbe) 26.11/10.21 new_compare6(vxw110, vxw100, app(app(app(ty_@3, ca), cb), cc)) -> new_compare13(vxw110, vxw100, ca, cb, cc) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, app(app(app(ty_@3, bed), bee), bef)) -> new_esEs6(vxw300, vxw4000, bed, bee, bef) 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_Integer) -> new_ltEs15(vxw111, vxw101) 26.11/10.21 new_esEs28(vxw110, vxw100, ty_Double) -> new_esEs13(vxw110, vxw100) 26.11/10.21 new_ltEs5(vxw11, vxw10) -> new_not(new_esEs8(new_compare17(vxw11, vxw10), GT)) 26.11/10.21 new_ltEs12(Right(vxw110), Left(vxw100), bfd, bfe) -> False 26.11/10.21 new_esEs11(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs9(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 26.11/10.21 new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare8(vxw11, vxw10), GT)) 26.11/10.21 new_compare15(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.21 new_compare15(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.21 new_esEs19(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) 26.11/10.21 new_lt19(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) 26.11/10.21 new_compare111(vxw110, vxw100, False, ed, ee, ef) -> GT 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), app(ty_[], bha)) -> new_ltEs18(vxw110, vxw100, bha) 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.21 new_esEs29(vxw30, vxw400, ty_Char) -> new_esEs16(vxw30, vxw400) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, eb) -> new_esEs17(vxw300, vxw4000) 26.11/10.21 new_ltEs14(vxw11, vxw10) -> new_not(new_esEs8(new_compare15(vxw11, vxw10), GT)) 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_Float) -> new_esEs11(vxw302, vxw4002) 26.11/10.21 new_esEs27(vxw300, vxw4000, app(app(app(ty_@3, cgb), cgc), cgd)) -> new_esEs6(vxw300, vxw4000, cgb, cgc, cgd) 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 26.11/10.21 new_ltEs13(vxw11, vxw10, bff) -> new_not(new_esEs8(new_compare14(vxw11, vxw10, bff), GT)) 26.11/10.21 new_esEs18(vxw111, vxw101, ty_Integer) -> new_esEs14(vxw111, vxw101) 26.11/10.21 new_esEs6(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), de, df, dg) -> new_asAs(new_esEs27(vxw300, vxw4000, de), new_asAs(new_esEs26(vxw301, vxw4001, df), new_esEs25(vxw302, vxw4002, dg))) 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_Int) -> new_esEs9(vxw301, vxw4001) 26.11/10.21 new_esEs18(vxw111, vxw101, ty_Double) -> new_esEs13(vxw111, vxw101) 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_Char) -> new_esEs16(vxw302, vxw4002) 26.11/10.21 new_esEs12(:(vxw300, vxw301), :(vxw4000, vxw4001), dh) -> new_asAs(new_esEs24(vxw300, vxw4000, dh), new_esEs12(vxw301, vxw4001, dh)) 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_Int) -> new_esEs9(vxw302, vxw4002) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], bde), eb) -> new_esEs12(vxw300, vxw4000, bde) 26.11/10.21 new_compare0([], :(vxw100, vxw101), bd) -> LT 26.11/10.21 new_lt8(vxw111, vxw101, ty_Char) -> new_lt7(vxw111, vxw101) 26.11/10.21 new_asAs(True, vxw35) -> vxw35 26.11/10.21 new_esEs19(vxw110, vxw100, ty_Float) -> new_esEs11(vxw110, vxw100) 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, eb) -> new_esEs14(vxw300, vxw4000) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_Char) -> new_ltEs5(vxw110, vxw100) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_Int) -> new_ltEs8(vxw112, vxw102) 26.11/10.21 new_compare113(vxw110, vxw100, True) -> LT 26.11/10.21 new_esEs17(False, True) -> False 26.11/10.21 new_esEs17(True, False) -> False 26.11/10.21 new_esEs16(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 26.11/10.21 new_lt11(vxw110, vxw100) -> new_esEs8(new_compare9(vxw110, vxw100), LT) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_Ordering) -> new_ltEs9(vxw110, vxw100) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, app(ty_[], beg)) -> new_esEs12(vxw300, vxw4000, beg) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_Integer, bfe) -> new_ltEs15(vxw110, vxw100) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_Integer) -> new_ltEs15(vxw112, vxw102) 26.11/10.21 new_esEs19(vxw110, vxw100, ty_Int) -> new_esEs9(vxw110, vxw100) 26.11/10.21 new_compare10(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.21 new_ltEs6(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, ge) -> new_pePe(new_lt9(vxw110, vxw100, gc), new_asAs(new_esEs19(vxw110, vxw100, gc), new_pePe(new_lt8(vxw111, vxw101, gd), new_asAs(new_esEs18(vxw111, vxw101, gd), new_ltEs7(vxw112, vxw102, ge))))) 26.11/10.21 new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) 26.11/10.21 new_lt9(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) 26.11/10.21 new_esEs29(vxw30, vxw400, app(app(ty_Either, ea), eb)) -> new_esEs5(vxw30, vxw400, ea, eb) 26.11/10.21 new_lt20(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.21 new_primCompAux00(vxw54, EQ) -> vxw54 26.11/10.21 new_compare0([], [], bd) -> EQ 26.11/10.21 new_compare23(vxw110, vxw100, True) -> EQ 26.11/10.21 new_primMulNat0(Zero, Zero) -> Zero 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, eb) -> new_esEs13(vxw300, vxw4000) 26.11/10.21 new_esEs27(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, eb) -> new_esEs9(vxw300, vxw4000) 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_Float) -> new_esEs11(vxw301, vxw4001) 26.11/10.21 new_compare14(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare16(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) 26.11/10.21 new_esEs19(vxw110, vxw100, ty_Bool) -> new_esEs17(vxw110, vxw100) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs10(vxw110, vxw100) 26.11/10.21 new_esEs20(vxw301, vxw4001, app(app(ty_Either, cab), cac)) -> new_esEs5(vxw301, vxw4001, cab, cac) 26.11/10.21 new_ltEs19(vxw111, vxw101, app(ty_Ratio, chg)) -> new_ltEs13(vxw111, vxw101, chg) 26.11/10.21 new_ltEs7(vxw112, vxw102, app(app(ty_Either, gh), ha)) -> new_ltEs12(vxw112, vxw102, gh, ha) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, app(app(ty_Either, beh), bfa)) -> new_esEs5(vxw300, vxw4000, beh, bfa) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), app(ty_Maybe, dbb), bfe) -> new_ltEs16(vxw110, vxw100, dbb) 26.11/10.21 new_lt8(vxw111, vxw101, app(ty_Ratio, bag)) -> new_lt5(vxw111, vxw101, bag) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.21 new_ltEs7(vxw112, vxw102, app(ty_Ratio, he)) -> new_ltEs13(vxw112, vxw102, he) 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.21 new_ltEs19(vxw111, vxw101, app(app(ty_Either, chb), chc)) -> new_ltEs12(vxw111, vxw101, chb, chc) 26.11/10.21 new_compare6(vxw110, vxw100, ty_@0) -> new_compare19(vxw110, vxw100) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs17(vxw110, vxw100) 26.11/10.21 new_esEs27(vxw300, vxw4000, app(ty_Ratio, cff)) -> new_esEs10(vxw300, vxw4000, cff) 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_Float) -> new_ltEs14(vxw110, vxw100) 26.11/10.21 new_lt20(vxw110, vxw100, app(app(ty_Either, cbf), cbg)) -> new_lt14(vxw110, vxw100, cbf, cbg) 26.11/10.21 new_compare23(vxw110, vxw100, False) -> new_compare113(vxw110, vxw100, new_ltEs9(vxw110, vxw100)) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), app(app(ty_@2, bfh), bga)) -> new_ltEs11(vxw110, vxw100, bfh, bga) 26.11/10.21 new_ltEs9(GT, LT) -> False 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, app(ty_Maybe, dcd)) -> new_ltEs16(vxw110, vxw100, dcd) 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_Float) -> new_esEs11(vxw301, vxw4001) 26.11/10.21 new_esEs15(@0, @0) -> True 26.11/10.21 new_lt8(vxw111, vxw101, ty_Integer) -> new_lt17(vxw111, vxw101) 26.11/10.21 new_compare6(vxw110, vxw100, app(app(ty_@2, be), bf)) -> new_compare11(vxw110, vxw100, be, bf) 26.11/10.21 new_esEs18(vxw111, vxw101, ty_Int) -> new_esEs9(vxw111, vxw101) 26.11/10.21 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 26.11/10.21 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.21 new_ltEs20(vxw11, vxw10, app(app(ty_Either, bfd), bfe)) -> new_ltEs12(vxw11, vxw10, bfd, bfe) 26.11/10.21 new_esEs27(vxw300, vxw4000, app(ty_[], cge)) -> new_esEs12(vxw300, vxw4000, cge) 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) 26.11/10.21 new_ltEs20(vxw11, vxw10, app(ty_Ratio, bff)) -> new_ltEs13(vxw11, vxw10, bff) 26.11/10.21 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 26.11/10.21 new_ltEs4(True, False) -> False 26.11/10.21 new_esEs20(vxw301, vxw4001, ty_Double) -> new_esEs13(vxw301, vxw4001) 26.11/10.21 new_ltEs9(EQ, GT) -> True 26.11/10.21 new_esEs21(vxw300, vxw4000, app(ty_Maybe, cae)) -> new_esEs7(vxw300, vxw4000, cae) 26.11/10.21 new_esEs26(vxw301, vxw4001, app(app(ty_@2, cef), ceg)) -> new_esEs4(vxw301, vxw4001, cef, ceg) 26.11/10.21 new_compare24(vxw110, vxw100, True) -> EQ 26.11/10.21 new_compare6(vxw110, vxw100, ty_Float) -> new_compare15(vxw110, vxw100) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.21 new_esEs25(vxw302, vxw4002, app(app(ty_Either, ceb), cec)) -> new_esEs5(vxw302, vxw4002, ceb, cec) 26.11/10.21 new_compare10(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.21 new_ltEs16(Nothing, Just(vxw100), bfg) -> True 26.11/10.21 new_ltEs10(vxw11, vxw10) -> new_not(new_esEs8(new_compare10(vxw11, vxw10), GT)) 26.11/10.21 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 26.11/10.21 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 26.11/10.21 new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) 26.11/10.21 new_esEs29(vxw30, vxw400, ty_Int) -> new_esEs9(vxw30, vxw400) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs9(vxw110, vxw100) 26.11/10.21 new_esEs26(vxw301, vxw4001, app(ty_Maybe, cee)) -> new_esEs7(vxw301, vxw4001, cee) 26.11/10.21 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.11/10.21 new_ltEs4(False, False) -> True 26.11/10.21 new_esEs26(vxw301, vxw4001, app(app(ty_Either, cfd), cfe)) -> new_esEs5(vxw301, vxw4001, cfd, cfe) 26.11/10.21 new_lt8(vxw111, vxw101, ty_Bool) -> new_lt10(vxw111, vxw101) 26.11/10.21 new_esEs17(True, True) -> True 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_@0) -> new_ltEs17(vxw111, vxw101) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bdb), bdc), bdd), eb) -> new_esEs6(vxw300, vxw4000, bdb, bdc, bdd) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_@0, bfe) -> new_ltEs17(vxw110, vxw100) 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.21 new_esEs26(vxw301, vxw4001, app(app(app(ty_@3, ceh), cfa), cfb)) -> new_esEs6(vxw301, vxw4001, ceh, cfa, cfb) 26.11/10.21 new_primCompAux0(vxw110, vxw100, vxw43, bd) -> new_primCompAux00(vxw43, new_compare6(vxw110, vxw100, bd)) 26.11/10.21 new_esEs27(vxw300, vxw4000, app(ty_Maybe, cfg)) -> new_esEs7(vxw300, vxw4000, cfg) 26.11/10.21 new_esEs18(vxw111, vxw101, app(app(app(ty_@3, bad), bae), baf)) -> new_esEs6(vxw111, vxw101, bad, bae, baf) 26.11/10.21 new_esEs19(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs4(vxw110, vxw100) 26.11/10.21 new_esEs24(vxw300, vxw4000, app(ty_Ratio, cbh)) -> new_esEs10(vxw300, vxw4000, cbh) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, bcg), eb) -> new_esEs7(vxw300, vxw4000, bcg) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), app(app(ty_Either, bgb), bgc)) -> new_ltEs12(vxw110, vxw100, bgb, bgc) 26.11/10.21 new_compare16(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) 26.11/10.21 new_compare24(vxw110, vxw100, False) -> new_compare112(vxw110, vxw100, new_ltEs4(vxw110, vxw100)) 26.11/10.21 new_not(False) -> True 26.11/10.21 new_esEs28(vxw110, vxw100, ty_Int) -> new_esEs9(vxw110, vxw100) 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_Bool) -> new_ltEs4(vxw11, vxw10) 26.11/10.21 new_esEs21(vxw300, vxw4000, app(ty_[], cbc)) -> new_esEs12(vxw300, vxw4000, cbc) 26.11/10.21 new_esEs28(vxw110, vxw100, app(ty_[], eg)) -> new_esEs12(vxw110, vxw100, eg) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, eb) -> new_esEs11(vxw300, vxw4000) 26.11/10.21 new_esEs18(vxw111, vxw101, app(app(ty_Either, bab), bac)) -> new_esEs5(vxw111, vxw101, bab, bac) 26.11/10.21 new_lt10(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) 26.11/10.21 new_esEs20(vxw301, vxw4001, app(ty_Maybe, bhc)) -> new_esEs7(vxw301, vxw4001, bhc) 26.11/10.21 new_compare0(:(vxw110, vxw111), [], bd) -> GT 26.11/10.21 new_esEs8(LT, GT) -> False 26.11/10.21 new_esEs8(GT, LT) -> False 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.21 new_primPlusNat0(Succ(vxw4400), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw4400, vxw4000000))) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.21 new_esEs5(Left(vxw300), Right(vxw4000), ea, eb) -> False 26.11/10.21 new_esEs5(Right(vxw300), Left(vxw4000), ea, eb) -> False 26.11/10.21 new_compare12(vxw110, vxw100, cbf, cbg) -> new_compare28(vxw110, vxw100, new_esEs5(vxw110, vxw100, cbf, cbg), cbf, cbg) 26.11/10.21 new_esEs23(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.21 new_lt9(vxw110, vxw100, ty_Int) -> new_lt4(vxw110, vxw100) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_Bool) -> new_ltEs4(vxw112, vxw102) 26.11/10.21 new_compare6(vxw110, vxw100, app(ty_Maybe, ce)) -> new_compare18(vxw110, vxw100, ce) 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_@0) -> new_esEs15(vxw302, vxw4002) 26.11/10.21 new_esEs19(vxw110, vxw100, app(ty_Maybe, bcb)) -> new_esEs7(vxw110, vxw100, bcb) 26.11/10.21 new_ltEs9(LT, EQ) -> True 26.11/10.21 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bgd), bge), bgf)) -> new_ltEs6(vxw110, vxw100, bgd, bge, bgf) 26.11/10.21 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.11/10.21 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.11/10.21 new_esEs25(vxw302, vxw4002, ty_Bool) -> new_esEs17(vxw302, vxw4002) 26.11/10.21 new_lt16(vxw110, vxw100) -> new_esEs8(new_compare15(vxw110, vxw100), LT) 26.11/10.21 new_compare0(:(vxw110, vxw111), :(vxw100, vxw101), bd) -> new_primCompAux0(vxw110, vxw100, new_compare0(vxw111, vxw101, bd), bd) 26.11/10.21 new_lt9(vxw110, vxw100, ty_Float) -> new_lt16(vxw110, vxw100) 26.11/10.21 new_ltEs9(LT, GT) -> True 26.11/10.21 new_esEs27(vxw300, vxw4000, app(app(ty_@2, cfh), cga)) -> new_esEs4(vxw300, vxw4000, cfh, cga) 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_Bool) -> new_ltEs4(vxw111, vxw101) 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, eb) -> new_esEs16(vxw300, vxw4000) 26.11/10.21 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.11/10.21 new_esEs17(False, False) -> True 26.11/10.21 new_compare6(vxw110, vxw100, ty_Bool) -> new_compare7(vxw110, vxw100) 26.11/10.21 new_ltEs4(True, True) -> True 26.11/10.21 new_esEs28(vxw110, vxw100, app(app(ty_@2, bcd), bce)) -> new_esEs4(vxw110, vxw100, bcd, bce) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_Bool, bfe) -> new_ltEs4(vxw110, vxw100) 26.11/10.21 new_lt9(vxw110, vxw100, app(ty_Ratio, bca)) -> new_lt5(vxw110, vxw100, bca) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.21 new_ltEs16(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs5(vxw110, vxw100) 26.11/10.21 new_esEs21(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.21 new_esEs13(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs9(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 26.11/10.21 new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) 26.11/10.21 new_esEs5(Right(vxw300), Right(vxw4000), ea, app(ty_Ratio, bdh)) -> new_esEs10(vxw300, vxw4000, bdh) 26.11/10.21 new_ltEs7(vxw112, vxw102, app(app(app(ty_@3, hb), hc), hd)) -> new_ltEs6(vxw112, vxw102, hb, hc, hd) 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.21 new_lt9(vxw110, vxw100, ty_Ordering) -> new_lt11(vxw110, vxw100) 26.11/10.21 new_lt5(vxw110, vxw100, ec) -> new_esEs8(new_compare14(vxw110, vxw100, ec), LT) 26.11/10.21 new_lt20(vxw110, vxw100, app(ty_Maybe, cg)) -> new_lt18(vxw110, vxw100, cg) 26.11/10.21 new_esEs18(vxw111, vxw101, app(ty_[], bba)) -> new_esEs12(vxw111, vxw101, bba) 26.11/10.21 new_esEs28(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 26.11/10.21 new_esEs12([], [], dh) -> True 26.11/10.21 new_ltEs20(vxw11, vxw10, ty_Int) -> new_ltEs8(vxw11, vxw10) 26.11/10.21 new_ltEs12(Left(vxw110), Left(vxw100), ty_Int, bfe) -> new_ltEs8(vxw110, vxw100) 26.11/10.21 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.11/10.21 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.11/10.21 new_esEs18(vxw111, vxw101, app(ty_Maybe, bah)) -> new_esEs7(vxw111, vxw101, bah) 26.11/10.21 new_esEs29(vxw30, vxw400, app(app(ty_@2, dc), dd)) -> new_esEs4(vxw30, vxw400, dc, dd) 26.11/10.21 new_ltEs9(EQ, LT) -> False 26.11/10.21 new_ltEs12(Right(vxw110), Right(vxw100), bfd, ty_Integer) -> new_ltEs15(vxw110, vxw100) 26.11/10.21 new_lt17(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) 26.11/10.21 new_compare6(vxw110, vxw100, ty_Ordering) -> new_compare9(vxw110, vxw100) 26.11/10.21 new_ltEs7(vxw112, vxw102, ty_Char) -> new_ltEs5(vxw112, vxw102) 26.11/10.21 new_compare17(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) 26.11/10.21 new_primEqNat0(Zero, Zero) -> True 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.21 new_esEs24(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.21 new_esEs28(vxw110, vxw100, app(app(ty_Either, cbf), cbg)) -> new_esEs5(vxw110, vxw100, cbf, cbg) 26.11/10.21 new_esEs19(vxw110, vxw100, app(ty_[], bcc)) -> new_esEs12(vxw110, vxw100, bcc) 26.11/10.21 new_esEs28(vxw110, vxw100, app(app(app(ty_@3, ed), ee), ef)) -> new_esEs6(vxw110, vxw100, ed, ee, ef) 26.11/10.21 new_esEs29(vxw30, vxw400, ty_Ordering) -> new_esEs8(vxw30, vxw400) 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, eh)) -> new_esEs10(vxw300, vxw4000, eh) 26.11/10.21 new_lt20(vxw110, vxw100, app(ty_[], eg)) -> new_lt6(vxw110, vxw100, eg) 26.11/10.21 new_compare110(vxw110, vxw100, True, cg) -> LT 26.11/10.21 new_lt8(vxw111, vxw101, ty_@0) -> new_lt19(vxw111, vxw101) 26.11/10.21 new_lt20(vxw110, vxw100, ty_Integer) -> new_lt17(vxw110, vxw100) 26.11/10.21 new_asAs(False, vxw35) -> False 26.11/10.21 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, eb) -> new_esEs15(vxw300, vxw4000) 26.11/10.21 new_compare18(vxw110, vxw100, cg) -> new_compare25(vxw110, vxw100, new_esEs7(vxw110, vxw100, cg), cg) 26.11/10.21 new_esEs26(vxw301, vxw4001, ty_Int) -> new_esEs9(vxw301, vxw4001) 26.11/10.21 new_esEs29(vxw30, vxw400, app(ty_Maybe, db)) -> new_esEs7(vxw30, vxw400, db) 26.11/10.21 new_compare28(vxw110, vxw100, True, cbf, cbg) -> EQ 26.11/10.21 new_esEs22(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 26.11/10.21 new_ltEs19(vxw111, vxw101, ty_Int) -> new_ltEs8(vxw111, vxw101) 26.11/10.21 new_esEs14(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 26.11/10.21 new_compare6(vxw110, vxw100, ty_Integer) -> new_compare16(vxw110, vxw100) 26.11/10.21 new_esEs8(EQ, GT) -> False 26.11/10.21 new_esEs8(GT, EQ) -> False 26.11/10.21 new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.21 new_compare6(vxw110, vxw100, ty_Char) -> new_compare17(vxw110, vxw100) 26.11/10.21 new_ltEs9(EQ, EQ) -> True 26.11/10.21 new_lt9(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 26.11/10.21 new_ltEs11(@2(vxw110, vxw111), @2(vxw100, vxw101), bfb, bfc) -> new_pePe(new_lt20(vxw110, vxw100, bfb), new_asAs(new_esEs28(vxw110, vxw100, bfb), new_ltEs19(vxw111, vxw101, bfc))) 26.11/10.21 26.11/10.21 The set Q consists of the following terms: 26.11/10.21 26.11/10.21 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.11/10.21 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), ty_Char) 26.11/10.21 new_esEs8(EQ, EQ) 26.11/10.21 new_esEs23(x0, x1, ty_Int) 26.11/10.21 new_lt5(x0, x1, x2) 26.11/10.21 new_esEs18(x0, x1, ty_Int) 26.11/10.21 new_ltEs20(x0, x1, ty_Double) 26.11/10.21 new_esEs25(x0, x1, ty_@0) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.11/10.21 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_lt20(x0, x1, ty_Char) 26.11/10.21 new_primPlusNat0(Succ(x0), Zero) 26.11/10.21 new_esEs19(x0, x1, ty_Double) 26.11/10.21 new_esEs21(x0, x1, ty_Char) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 26.11/10.21 new_esEs7(Just(x0), Nothing, x1) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 26.11/10.21 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 26.11/10.21 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.11/10.21 new_esEs26(x0, x1, ty_Char) 26.11/10.21 new_compare24(x0, x1, True) 26.11/10.21 new_esEs20(x0, x1, ty_@0) 26.11/10.21 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_ltEs20(x0, x1, ty_Ordering) 26.11/10.21 new_esEs27(x0, x1, ty_Int) 26.11/10.21 new_esEs24(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs27(x0, x1, ty_Ordering) 26.11/10.21 new_esEs19(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs26(x0, x1, ty_Int) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 26.11/10.21 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs12(:(x0, x1), [], x2) 26.11/10.21 new_primEqInt(Pos(Zero), Pos(Zero)) 26.11/10.21 new_esEs29(x0, x1, ty_Integer) 26.11/10.21 new_compare27(x0, x1, True, x2, x3, x4) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_ltEs8(x0, x1) 26.11/10.21 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs29(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs21(x0, x1, ty_Ordering) 26.11/10.21 new_lt20(x0, x1, ty_Ordering) 26.11/10.21 new_esEs19(x0, x1, ty_Ordering) 26.11/10.21 new_compare115(x0, x1, False, x2, x3) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.11/10.21 new_compare113(x0, x1, True) 26.11/10.21 new_esEs17(False, False) 26.11/10.21 new_primPlusNat0(Zero, Succ(x0)) 26.11/10.21 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.11/10.21 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.11/10.21 new_esEs27(x0, x1, ty_Double) 26.11/10.21 new_lt8(x0, x1, ty_Float) 26.11/10.21 new_esEs7(Nothing, Just(x0), x1) 26.11/10.21 new_esEs21(x0, x1, ty_Int) 26.11/10.21 new_esEs29(x0, x1, ty_Float) 26.11/10.21 new_lt20(x0, x1, ty_Int) 26.11/10.21 new_esEs27(x0, x1, ty_Char) 26.11/10.21 new_ltEs9(EQ, EQ) 26.11/10.21 new_compare26(x0, x1, False, x2, x3) 26.11/10.21 new_primEqInt(Neg(Zero), Neg(Zero)) 26.11/10.21 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs22(x0, x1, ty_Int) 26.11/10.21 new_esEs25(x0, x1, ty_Bool) 26.11/10.21 new_esEs19(x0, x1, ty_Int) 26.11/10.21 new_esEs20(x0, x1, ty_Int) 26.11/10.21 new_esEs26(x0, x1, ty_Bool) 26.11/10.21 new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) 26.11/10.21 new_compare110(x0, x1, True, x2) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 26.11/10.21 new_esEs26(x0, x1, ty_@0) 26.11/10.21 new_esEs21(x0, x1, app(ty_[], x2)) 26.11/10.21 new_lt20(x0, x1, ty_Double) 26.11/10.21 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs21(x0, x1, ty_Double) 26.11/10.21 new_primCompAux00(x0, GT) 26.11/10.21 new_esEs26(x0, x1, ty_Double) 26.11/10.21 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_lt20(x0, x1, ty_Bool) 26.11/10.21 new_esEs25(x0, x1, ty_Int) 26.11/10.21 new_ltEs13(x0, x1, x2) 26.11/10.21 new_esEs21(x0, x1, ty_Bool) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.11/10.21 new_ltEs20(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs25(x0, x1, ty_Char) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), ty_Double) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.11/10.21 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs29(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs20(x0, x1, ty_Bool) 26.11/10.21 new_primEqInt(Pos(Zero), Neg(Zero)) 26.11/10.21 new_primEqInt(Neg(Zero), Pos(Zero)) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.11/10.21 new_esEs18(x0, x1, ty_Ordering) 26.11/10.21 new_lt12(x0, x1) 26.11/10.21 new_esEs20(x0, x1, ty_Double) 26.11/10.21 new_compare113(x0, x1, False) 26.11/10.21 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_ltEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), ty_Int) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.11/10.21 new_compare17(Char(x0), Char(x1)) 26.11/10.21 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.11/10.21 new_ltEs19(x0, x1, ty_Ordering) 26.11/10.21 new_ltEs14(x0, x1) 26.11/10.21 new_lt9(x0, x1, ty_Integer) 26.11/10.21 new_ltEs19(x0, x1, app(ty_[], x2)) 26.11/10.21 new_primEqNat0(Succ(x0), Zero) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.11/10.21 new_compare6(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_compare28(x0, x1, False, x2, x3) 26.11/10.21 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.11/10.21 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_compare0([], :(x0, x1), x2) 26.11/10.21 new_ltEs7(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs5(Left(x0), Right(x1), x2, x3) 26.11/10.21 new_esEs5(Right(x0), Left(x1), x2, x3) 26.11/10.21 new_esEs20(x0, x1, ty_Char) 26.11/10.21 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_compare6(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), ty_@0) 26.11/10.21 new_esEs27(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 26.11/10.21 new_compare6(x0, x1, ty_Float) 26.11/10.21 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_asAs(True, x0) 26.11/10.21 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.11/10.21 new_esEs19(x0, x1, ty_@0) 26.11/10.21 new_primCompAux00(x0, LT) 26.11/10.21 new_ltEs7(x0, x1, ty_Ordering) 26.11/10.21 new_esEs11(Float(x0, x1), Float(x2, x3)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_compare11(x0, x1, x2, x3) 26.11/10.21 new_ltEs20(x0, x1, ty_@0) 26.11/10.21 new_esEs18(x0, x1, ty_Integer) 26.11/10.21 new_compare18(x0, x1, x2) 26.11/10.21 new_esEs29(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 26.11/10.21 new_ltEs9(GT, GT) 26.11/10.21 new_esEs15(@0, @0) 26.11/10.21 new_ltEs20(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.11/10.21 new_esEs23(x0, x1, ty_Integer) 26.11/10.21 new_compare0(:(x0, x1), [], x2) 26.11/10.21 new_esEs27(x0, x1, ty_Bool) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.11/10.21 new_esEs16(Char(x0), Char(x1)) 26.11/10.21 new_lt9(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs25(x0, x1, ty_Double) 26.11/10.21 new_esEs24(x0, x1, ty_Integer) 26.11/10.21 new_compare24(x0, x1, False) 26.11/10.21 new_primMulNat0(Succ(x0), Zero) 26.11/10.21 new_lt10(x0, x1) 26.11/10.21 new_ltEs9(LT, EQ) 26.11/10.21 new_ltEs9(EQ, LT) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.11/10.21 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_lt20(x0, x1, ty_Integer) 26.11/10.21 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 26.11/10.21 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs4(True, True) 26.11/10.21 new_lt9(x0, x1, ty_Char) 26.11/10.21 new_lt8(x0, x1, ty_@0) 26.11/10.21 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_compare25(x0, x1, True, x2) 26.11/10.21 new_compare6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.11/10.21 new_lt9(x0, x1, ty_Bool) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 26.11/10.21 new_lt15(x0, x1, x2, x3, x4) 26.11/10.21 new_ltEs16(Nothing, Nothing, x0) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.11/10.21 new_lt20(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_Float) 26.11/10.21 new_esEs29(x0, x1, ty_@0) 26.11/10.21 new_ltEs7(x0, x1, ty_Double) 26.11/10.21 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_lt11(x0, x1) 26.11/10.21 new_esEs8(GT, GT) 26.11/10.21 new_compare28(x0, x1, True, x2, x3) 26.11/10.21 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs26(x0, x1, ty_Integer) 26.11/10.21 new_esEs8(LT, EQ) 26.11/10.21 new_esEs8(EQ, LT) 26.11/10.21 new_lt8(x0, x1, ty_Integer) 26.11/10.21 new_compare114(x0, x1, True, x2, x3) 26.11/10.21 new_esEs12([], [], x0) 26.11/10.21 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.11/10.21 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.11/10.21 new_esEs28(x0, x1, ty_Float) 26.11/10.21 new_lt20(x0, x1, ty_@0) 26.11/10.21 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.11/10.21 new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 26.11/10.21 new_ltEs16(Just(x0), Nothing, x1) 26.11/10.21 new_lt13(x0, x1, x2, x3) 26.11/10.21 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.11/10.21 new_lt9(x0, x1, ty_Int) 26.11/10.21 new_esEs20(x0, x1, ty_Integer) 26.11/10.21 new_esEs8(LT, LT) 26.11/10.21 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.11/10.21 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.11/10.21 new_esEs26(x0, x1, ty_Ordering) 26.11/10.21 new_compare13(x0, x1, x2, x3, x4) 26.11/10.21 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs19(x0, x1, ty_@0) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.11/10.21 new_esEs29(x0, x1, ty_Double) 26.11/10.21 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs10(x0, x1) 26.11/10.21 new_esEs25(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_pePe(True, x0) 26.11/10.21 new_ltEs9(LT, LT) 26.11/10.21 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs24(x0, x1, ty_@0) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 26.11/10.21 new_primPlusNat0(Succ(x0), Succ(x1)) 26.11/10.21 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_esEs26(x0, x1, app(ty_[], x2)) 26.11/10.21 new_compare6(x0, x1, ty_Char) 26.11/10.21 new_esEs18(x0, x1, ty_Bool) 26.11/10.21 new_esEs21(x0, x1, ty_Float) 26.11/10.21 new_compare19(@0, @0) 26.11/10.21 new_primMulInt(Pos(x0), Neg(x1)) 26.11/10.21 new_primMulInt(Neg(x0), Pos(x1)) 26.11/10.21 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.11/10.21 new_compare6(x0, x1, ty_Int) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.11/10.21 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.11/10.21 new_lt9(x0, x1, ty_Float) 26.11/10.21 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_lt8(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs20(x0, x1, ty_Ordering) 26.11/10.21 new_ltEs16(Nothing, Just(x0), x1) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 26.11/10.21 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs19(x0, x1, ty_Double) 26.11/10.21 new_esEs24(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs18(x0, x1, ty_Char) 26.11/10.21 new_esEs18(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_compare111(x0, x1, True, x2, x3, x4) 26.11/10.21 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs27(x0, x1, ty_Float) 26.11/10.21 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.11/10.21 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.11/10.21 new_compare8(x0, x1) 26.11/10.21 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.11/10.21 new_compare6(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.11/10.21 new_lt4(x0, x1) 26.11/10.21 new_lt16(x0, x1) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 26.11/10.21 new_ltEs7(x0, x1, ty_Bool) 26.11/10.21 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.11/10.21 new_primEqNat0(Zero, Succ(x0)) 26.11/10.21 new_compare114(x0, x1, False, x2, x3) 26.11/10.21 new_compare6(x0, x1, ty_Bool) 26.11/10.21 new_lt8(x0, x1, ty_Ordering) 26.11/10.21 new_compare7(x0, x1) 26.11/10.21 new_asAs(False, x0) 26.11/10.21 new_ltEs20(x0, x1, ty_Float) 26.11/10.21 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.11/10.21 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_esEs24(x0, x1, ty_Int) 26.11/10.21 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_compare9(x0, x1) 26.11/10.21 new_primMulNat0(Zero, Zero) 26.11/10.21 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 26.11/10.21 new_ltEs15(x0, x1) 26.11/10.21 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.11/10.21 new_ltEs7(x0, x1, ty_@0) 26.11/10.21 new_esEs24(x0, x1, ty_Ordering) 26.11/10.21 new_ltEs17(x0, x1) 26.11/10.21 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 26.11/10.21 new_esEs28(x0, x1, ty_Char) 26.11/10.21 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.11/10.21 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_Char) 26.11/10.21 new_lt8(x0, x1, ty_Int) 26.11/10.21 new_compare25(x0, x1, False, x2) 26.11/10.21 new_esEs19(x0, x1, ty_Float) 26.11/10.21 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_primMulInt(Pos(x0), Pos(x1)) 26.11/10.21 new_primCmpNat0(Zero, Succ(x0)) 26.11/10.21 new_esEs28(x0, x1, ty_Int) 26.11/10.21 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 26.11/10.21 new_esEs17(True, True) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 26.11/10.21 new_lt9(x0, x1, ty_Double) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.11/10.21 new_esEs24(x0, x1, ty_Double) 26.11/10.21 new_primMulNat0(Succ(x0), Succ(x1)) 26.11/10.21 new_esEs18(x0, x1, ty_Float) 26.11/10.21 new_compare16(Integer(x0), Integer(x1)) 26.11/10.21 new_compare23(x0, x1, True) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_Int) 26.11/10.21 new_esEs9(x0, x1) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 26.11/10.21 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.11/10.21 new_compare111(x0, x1, False, x2, x3, x4) 26.11/10.21 new_esEs28(x0, x1, ty_@0) 26.11/10.21 new_esEs25(x0, x1, app(ty_[], x2)) 26.11/10.21 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_@0) 26.11/10.21 new_esEs28(x0, x1, ty_Ordering) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 26.11/10.21 new_primMulInt(Neg(x0), Neg(x1)) 26.11/10.21 new_esEs24(x0, x1, ty_Char) 26.11/10.21 new_sr0(x0, x1) 26.11/10.21 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.11/10.21 new_primPlusNat0(Zero, Zero) 26.11/10.21 new_ltEs12(Left(x0), Right(x1), x2, x3) 26.11/10.21 new_ltEs12(Right(x0), Left(x1), x2, x3) 26.11/10.21 new_esEs26(x0, x1, ty_Float) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.11/10.21 new_esEs28(x0, x1, ty_Bool) 26.11/10.21 new_not(True) 26.11/10.21 new_lt17(x0, x1) 26.11/10.21 new_esEs29(x0, x1, ty_Ordering) 26.11/10.21 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs29(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs18(x0, x1, app(ty_[], x2)) 26.11/10.21 new_pePe(False, x0) 26.11/10.21 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs29(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_esEs8(EQ, GT) 26.11/10.21 new_esEs8(GT, EQ) 26.11/10.21 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_ltEs5(x0, x1) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), ty_Float) 26.11/10.21 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_Double) 26.11/10.21 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.11/10.21 new_esEs19(x0, x1, app(ty_[], x2)) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 26.11/10.21 new_ltEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 26.11/10.21 new_ltEs20(x0, x1, ty_Integer) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 26.11/10.21 new_compare112(x0, x1, True) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 26.11/10.21 new_esEs28(x0, x1, ty_Double) 26.11/10.21 new_lt9(x0, x1, ty_Ordering) 26.11/10.21 new_ltEs18(x0, x1, x2) 26.11/10.21 new_lt18(x0, x1, x2) 26.11/10.21 new_compare6(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_primCompAux0(x0, x1, x2, x3) 26.11/10.21 new_ltEs4(False, True) 26.11/10.21 new_ltEs4(True, False) 26.11/10.21 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.11/10.21 new_esEs27(x0, x1, ty_Integer) 26.11/10.21 new_esEs17(False, True) 26.11/10.21 new_esEs17(True, False) 26.11/10.21 new_ltEs7(x0, x1, ty_Integer) 26.11/10.21 new_primCmpNat0(Succ(x0), Succ(x1)) 26.11/10.21 new_primCompAux00(x0, EQ) 26.11/10.21 new_compare6(x0, x1, ty_Integer) 26.11/10.21 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs12([], :(x0, x1), x2) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.11/10.21 new_lt8(x0, x1, ty_Char) 26.11/10.21 new_lt6(x0, x1, x2) 26.11/10.21 new_lt8(x0, x1, ty_Double) 26.11/10.21 new_lt9(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_lt8(x0, x1, ty_Bool) 26.11/10.21 new_esEs18(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_compare6(x0, x1, ty_Ordering) 26.11/10.21 new_esEs25(x0, x1, ty_Float) 26.11/10.21 new_lt14(x0, x1, x2, x3) 26.11/10.21 new_compare23(x0, x1, False) 26.11/10.21 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_Bool) 26.11/10.21 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.11/10.21 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.11/10.21 new_ltEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs19(x0, x1, ty_Integer) 26.11/10.21 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.11/10.21 new_ltEs7(x0, x1, ty_Float) 26.11/10.21 new_compare6(x0, x1, ty_Double) 26.11/10.21 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 26.11/10.21 new_esEs29(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.11/10.21 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_primCmpNat0(Succ(x0), Zero) 26.11/10.21 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.11/10.21 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), ty_Integer) 26.11/10.21 new_ltEs20(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs25(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.11/10.21 new_compare0(:(x0, x1), :(x2, x3), x4) 26.11/10.21 new_lt8(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs24(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs19(x0, x1, ty_Bool) 26.11/10.21 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.11/10.21 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.11/10.21 new_lt9(x0, x1, ty_@0) 26.11/10.21 new_esEs27(x0, x1, ty_@0) 26.11/10.21 new_esEs29(x0, x1, ty_Char) 26.11/10.21 new_esEs8(LT, GT) 26.11/10.21 new_esEs8(GT, LT) 26.11/10.21 new_esEs24(x0, x1, ty_Bool) 26.11/10.21 new_ltEs20(x0, x1, ty_Bool) 26.11/10.21 new_esEs14(Integer(x0), Integer(x1)) 26.11/10.21 new_compare0([], [], x0) 26.11/10.21 new_esEs21(x0, x1, ty_Integer) 26.11/10.21 new_compare115(x0, x1, True, x2, x3) 26.11/10.21 new_esEs28(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_Integer) 26.11/10.21 new_ltEs7(x0, x1, ty_Int) 26.11/10.21 new_sr(Integer(x0), Integer(x1)) 26.11/10.21 new_ltEs4(False, False) 26.11/10.21 new_esEs19(x0, x1, app(ty_Ratio, x2)) 26.11/10.21 new_esEs20(x0, x1, ty_Float) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 26.11/10.21 new_esEs29(x0, x1, ty_Int) 26.11/10.21 new_esEs28(x0, x1, ty_Integer) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 26.11/10.21 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.11/10.21 new_compare12(x0, x1, x2, x3) 26.11/10.21 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 26.11/10.21 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.21 new_ltEs7(x0, x1, ty_Char) 26.11/10.21 new_ltEs16(Just(x0), Just(x1), ty_Bool) 26.11/10.21 new_lt9(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.11/10.21 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 26.11/10.21 new_primEqNat0(Succ(x0), Succ(x1)) 26.11/10.21 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_ltEs9(GT, EQ) 26.11/10.21 new_ltEs9(EQ, GT) 26.11/10.21 new_primEqNat0(Zero, Zero) 26.11/10.21 new_esEs7(Nothing, Nothing, x0) 26.11/10.21 new_ltEs20(x0, x1, ty_Char) 26.11/10.21 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.11/10.21 new_esEs25(x0, x1, ty_Integer) 26.11/10.21 new_esEs7(Just(x0), Just(x1), ty_Ordering) 26.11/10.21 new_not(False) 26.11/10.21 new_lt19(x0, x1) 26.11/10.21 new_compare110(x0, x1, False, x2) 26.11/10.21 new_esEs21(x0, x1, ty_@0) 26.11/10.21 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.21 new_esEs19(x0, x1, ty_Char) 26.11/10.21 new_compare6(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs18(x0, x1, ty_@0) 26.11/10.21 new_esEs20(x0, x1, app(ty_[], x2)) 26.11/10.21 new_esEs10(:%(x0, x1), :%(x2, x3), x4) 26.11/10.21 new_esEs22(x0, x1, ty_Integer) 26.11/10.21 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_lt20(x0, x1, ty_Float) 26.11/10.21 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.11/10.21 new_ltEs19(x0, x1, ty_Bool) 26.11/10.21 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.11/10.21 new_ltEs19(x0, x1, ty_Float) 26.11/10.21 new_lt8(x0, x1, app(ty_Maybe, x2)) 26.11/10.21 new_esEs19(x0, x1, ty_Integer) 26.11/10.21 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.21 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 26.11/10.21 new_primMulNat0(Zero, Succ(x0)) 26.11/10.21 new_esEs24(x0, x1, ty_Float) 26.11/10.21 new_esEs25(x0, x1, ty_Ordering) 26.11/10.21 new_lt7(x0, x1) 26.11/10.21 new_compare26(x0, x1, True, x2, x3) 26.11/10.21 new_ltEs20(x0, x1, ty_Int) 26.11/10.21 new_compare112(x0, x1, False) 26.11/10.21 new_compare27(x0, x1, False, x2, x3, x4) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Ordering) 26.11/10.22 new_primPlusNat1(Succ(x0), x1) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.11/10.22 new_primPlusNat1(Zero, x0) 26.11/10.22 new_ltEs19(x0, x1, ty_Char) 26.11/10.22 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_ltEs19(x0, x1, ty_Int) 26.11/10.22 new_esEs18(x0, x1, ty_Double) 26.11/10.22 new_compare6(x0, x1, ty_@0) 26.11/10.22 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs29(x0, x1, ty_Bool) 26.11/10.22 new_primCmpNat0(Zero, Zero) 26.11/10.22 new_ltEs9(GT, LT) 26.11/10.22 new_ltEs9(LT, GT) 26.11/10.22 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 26.11/10.22 26.11/10.22 We have to consider all minimal (P,Q,R)-chains. 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (22) QDPSizeChangeProof (EQUIVALENT) 26.11/10.22 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.11/10.22 26.11/10.22 From the DPs we obtained the following set of size-change graphs: 26.11/10.22 *new_insertBy(Just(vxw30), :(Nothing, vxw41), ba) -> new_insertBy(Just(vxw30), vxw41, ba) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 > 2, 3 >= 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_insertBy(Just(vxw30), :(Just(vxw400), vxw41), ba) -> new_insertBy0(vxw400, vxw30, vxw41, new_esEs29(vxw30, vxw400, ba), ba) 26.11/10.22 The graph contains the following edges 2 > 1, 1 > 2, 2 > 3, 3 >= 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_insertBy00(vxw19, vxw20, vxw21, False, bc) -> new_insertBy(Just(vxw20), vxw21, bc) 26.11/10.22 The graph contains the following edges 3 >= 2, 5 >= 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_insertBy0(vxw10, vxw11, vxw12, False, bb) -> new_insertBy00(vxw10, vxw11, vxw12, new_ltEs20(vxw11, vxw10, bb), bb) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3, 5 >= 5 26.11/10.22 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (23) 26.11/10.22 YES 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (24) 26.11/10.22 Obligation: 26.11/10.22 Q DP problem: 26.11/10.22 The TRS P consists of the following rules: 26.11/10.22 26.11/10.22 new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) 26.11/10.22 26.11/10.22 R is empty. 26.11/10.22 Q is empty. 26.11/10.22 We have to consider all minimal (P,Q,R)-chains. 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (25) QDPSizeChangeProof (EQUIVALENT) 26.11/10.22 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.11/10.22 26.11/10.22 From the DPs we obtained the following set of size-change graphs: 26.11/10.22 *new_primMulNat(Succ(vxw30100), Succ(vxw400000)) -> new_primMulNat(vxw30100, Succ(vxw400000)) 26.11/10.22 The graph contains the following edges 1 > 1, 2 >= 2 26.11/10.22 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (26) 26.11/10.22 YES 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (27) 26.11/10.22 Obligation: 26.11/10.22 Q DP problem: 26.11/10.22 The TRS P consists of the following rules: 26.11/10.22 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(app(ty_Either, gg), gh)) -> new_ltEs0(vxw112, vxw102, gg, gh) 26.11/10.22 new_lt2(vxw110, vxw100, dd) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, dd), dd) 26.11/10.22 new_ltEs0(Left(vxw110), Left(vxw100), app(ty_Maybe, ef), dh) -> new_ltEs2(vxw110, vxw100, ef) 26.11/10.22 new_primCompAux(vxw110, vxw100, vxw43, app(ty_Maybe, beb)) -> new_compare5(vxw110, vxw100, beb) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(ty_[], cb)) -> new_ltEs3(vxw111, vxw101, cb) 26.11/10.22 new_ltEs2(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs3(vxw110, vxw100, bda) 26.11/10.22 new_ltEs0(Right(vxw110), Right(vxw100), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(vxw110, vxw100, ff, fg, fh) 26.11/10.22 new_ltEs0(Left(vxw110), Left(vxw100), app(app(app(ty_@3, ec), ed), ee), dh) -> new_ltEs1(vxw110, vxw100, ec, ed, ee) 26.11/10.22 new_primCompAux(vxw110, vxw100, vxw43, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare4(vxw110, vxw100, bdg, bdh, bea) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, bbb), bbc), gd, hh) -> new_lt0(vxw110, vxw100, bbb, bbc) 26.11/10.22 new_ltEs0(Right(vxw110), Right(vxw100), eh, app(app(ty_Either, fc), fd)) -> new_ltEs0(vxw110, vxw100, fc, fd) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(app(app(ty_@3, bac), bad), bae), hh) -> new_lt1(vxw111, vxw101, bac, bad, bae) 26.11/10.22 new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(ty_Maybe, ca)) -> new_ltEs2(vxw111, vxw101, ca) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], bbh), gd, hh) -> new_lt3(vxw110, vxw100, bbh) 26.11/10.22 new_compare21(vxw110, vxw100, False, da, db, dc) -> new_ltEs1(vxw110, vxw100, da, db, dc) 26.11/10.22 new_ltEs0(Right(vxw110), Right(vxw100), eh, app(ty_Maybe, ga)) -> new_ltEs2(vxw110, vxw100, ga) 26.11/10.22 new_lt(vxw110, vxw100, cc, cd) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 new_lt3(vxw110, vxw100, de) -> new_compare(vxw110, vxw100, de) 26.11/10.22 new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_Either, ea), eb), dh) -> new_ltEs0(vxw110, vxw100, ea, eb) 26.11/10.22 new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, bdb), bdb) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, bah), bba), gd, hh) -> new_lt(vxw110, vxw100, bah, bba) 26.11/10.22 new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_@2, df), dg), dh) -> new_ltEs(vxw110, vxw100, df, dg) 26.11/10.22 new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, bdb), bdb) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(app(ty_Either, bd), be)) -> new_ltEs0(vxw111, vxw101, bd, be) 26.11/10.22 new_compare3(vxw110, vxw100, cf, cg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs1(vxw111, vxw101, bf, bg, bh) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, cf), cg), ce) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(ty_Maybe, baf), hh) -> new_lt2(vxw111, vxw101, baf) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, dd), ce) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, dd), dd) 26.11/10.22 new_primCompAux(vxw110, vxw100, vxw43, app(ty_[], bec)) -> new_compare(vxw110, vxw100, bec) 26.11/10.22 new_lt1(vxw110, vxw100, da, db, dc) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, bca), bcb)) -> new_ltEs(vxw110, vxw100, bca, bcb) 26.11/10.22 new_ltEs0(Right(vxw110), Right(vxw100), eh, app(ty_[], gb)) -> new_ltEs3(vxw110, vxw100, gb) 26.11/10.22 new_compare4(vxw110, vxw100, da, db, dc) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs1(vxw112, vxw102, ha, hb, hc) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(ty_[], bag), hh) -> new_lt3(vxw111, vxw101, bag) 26.11/10.22 new_compare22(vxw110, vxw100, False, dd) -> new_ltEs2(vxw110, vxw100, dd) 26.11/10.22 new_ltEs2(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs1(vxw110, vxw100, bce, bcf, bcg) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, bbg), gd, hh) -> new_lt2(vxw110, vxw100, bbg) 26.11/10.22 new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) 26.11/10.22 new_ltEs0(Left(vxw110), Left(vxw100), app(ty_[], eg), dh) -> new_ltEs3(vxw110, vxw100, eg) 26.11/10.22 new_compare2(vxw110, vxw100, False, cc, cd) -> new_ltEs(vxw110, vxw100, cc, cd) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(app(ty_@2, bb), bc)) -> new_ltEs(vxw111, vxw101, bb, bc) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, cc), cd), ce) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_Either, bcc), bcd)) -> new_ltEs0(vxw110, vxw100, bcc, bcd) 26.11/10.22 new_primCompAux(vxw110, vxw100, vxw43, app(app(ty_Either, bde), bdf)) -> new_compare3(vxw110, vxw100, bde, bdf) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, bbd), bbe), bbf), gd, hh) -> new_lt1(vxw110, vxw100, bbd, bbe, bbf) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, da), db), dc), ce) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(ty_Maybe, hd)) -> new_ltEs2(vxw112, vxw102, hd) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(app(ty_Either, baa), bab), hh) -> new_lt0(vxw111, vxw101, baa, bab) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(ty_[], he)) -> new_ltEs3(vxw112, vxw102, he) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(app(ty_@2, ge), gf)) -> new_ltEs(vxw112, vxw102, ge, gf) 26.11/10.22 new_compare5(vxw110, vxw100, dd) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, dd), dd) 26.11/10.22 new_primCompAux(vxw110, vxw100, vxw43, app(app(ty_@2, bdc), bdd)) -> new_compare1(vxw110, vxw100, bdc, bdd) 26.11/10.22 new_ltEs2(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs2(vxw110, vxw100, bch) 26.11/10.22 new_compare20(vxw110, vxw100, False, cf, cg) -> new_ltEs0(vxw110, vxw100, cf, cg) 26.11/10.22 new_lt0(vxw110, vxw100, cf, cg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], de), ce) -> new_compare(vxw110, vxw100, de) 26.11/10.22 new_compare1(vxw110, vxw100, cc, cd) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 new_ltEs0(Right(vxw110), Right(vxw100), eh, app(app(ty_@2, fa), fb)) -> new_ltEs(vxw110, vxw100, fa, fb) 26.11/10.22 new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(app(ty_@2, hf), hg), hh) -> new_lt(vxw111, vxw101, hf, hg) 26.11/10.22 26.11/10.22 The TRS R consists of the following rules: 26.11/10.22 26.11/10.22 new_lt8(vxw111, vxw101, ty_Float) -> new_lt16(vxw111, vxw101) 26.11/10.22 new_lt20(vxw110, vxw100, ty_Double) -> new_lt12(vxw110, vxw100) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_Char, dh) -> new_ltEs5(vxw110, vxw100) 26.11/10.22 new_ltEs7(vxw112, vxw102, app(app(ty_@2, ge), gf)) -> new_ltEs11(vxw112, vxw102, ge, gf) 26.11/10.22 new_primEqInt(Pos(Zero), Pos(Zero)) -> True 26.11/10.22 new_primCmpInt(Neg(Succ(vxw1100)), Pos(vxw100)) -> LT 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.22 new_primPlusNat0(Zero, Zero) -> Zero 26.11/10.22 new_compare26(vxw110, vxw100, False, cc, cd) -> new_compare114(vxw110, vxw100, new_ltEs11(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 new_pePe(True, vxw42) -> True 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_Ordering, bgd) -> new_esEs8(vxw300, vxw4000) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_Int) -> new_ltEs8(vxw110, vxw100) 26.11/10.22 new_lt12(vxw110, vxw100) -> new_esEs8(new_compare10(vxw110, vxw100), LT) 26.11/10.22 new_esEs25(vxw302, vxw4002, app(app(app(ty_@3, cgf), cgg), cgh)) -> new_esEs6(vxw302, vxw4002, cgf, cgg, cgh) 26.11/10.22 new_ltEs19(vxw111, vxw101, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs6(vxw111, vxw101, bf, bg, bh) 26.11/10.22 new_compare111(vxw110, vxw100, True, da, db, dc) -> LT 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.22 new_esEs20(vxw301, vxw4001, app(ty_[], ccf)) -> new_esEs12(vxw301, vxw4001, ccf) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, app(ty_Ratio, dcb)) -> new_ltEs13(vxw110, vxw100, dcb) 26.11/10.22 new_lt8(vxw111, vxw101, app(app(app(ty_@3, bac), bad), bae)) -> new_lt15(vxw111, vxw101, bac, bad, bae) 26.11/10.22 new_primCmpInt(Neg(Zero), Neg(Zero)) -> EQ 26.11/10.22 new_esEs12(:(vxw300, vxw301), [], ced) -> False 26.11/10.22 new_esEs12([], :(vxw4000, vxw4001), ced) -> False 26.11/10.22 new_esEs27(vxw300, vxw4000, app(app(ty_Either, dbf), dbg)) -> new_esEs5(vxw300, vxw4000, dbf, dbg) 26.11/10.22 new_compare110(vxw110, vxw100, False, dd) -> GT 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_Ordering) -> new_ltEs9(vxw111, vxw101) 26.11/10.22 new_ltEs16(Nothing, Nothing, cbc) -> True 26.11/10.22 new_primCmpInt(Pos(Zero), Neg(Succ(vxw1000))) -> GT 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_Double) -> new_esEs13(vxw301, vxw4001) 26.11/10.22 new_esEs9(vxw30, vxw400) -> new_primEqInt(vxw30, vxw400) 26.11/10.22 new_compare26(vxw110, vxw100, True, cc, cd) -> EQ 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Maybe, beh)) -> new_esEs7(vxw300, vxw4000, beh) 26.11/10.22 new_ltEs16(Just(vxw110), Nothing, cbc) -> False 26.11/10.22 new_primCmpInt(Neg(Succ(vxw1100)), Neg(vxw100)) -> new_primCmpNat0(vxw100, Succ(vxw1100)) 26.11/10.22 new_ltEs12(Left(vxw110), Right(vxw100), eh, dh) -> True 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_Ordering, dh) -> new_ltEs9(vxw110, vxw100) 26.11/10.22 new_ltEs9(LT, LT) -> True 26.11/10.22 new_compare115(vxw110, vxw100, True, cf, cg) -> LT 26.11/10.22 new_esEs28(vxw110, vxw100, app(ty_Maybe, dd)) -> new_esEs7(vxw110, vxw100, dd) 26.11/10.22 new_compare6(vxw110, vxw100, app(app(ty_Either, bde), bdf)) -> new_compare12(vxw110, vxw100, bde, bdf) 26.11/10.22 new_primMulNat0(Succ(vxw30100), Succ(vxw400000)) -> new_primPlusNat1(new_primMulNat0(vxw30100, Succ(vxw400000)), vxw400000) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), app(ty_Ratio, dca), dh) -> new_ltEs13(vxw110, vxw100, dca) 26.11/10.22 new_ltEs19(vxw111, vxw101, app(ty_Maybe, ca)) -> new_ltEs16(vxw111, vxw101, ca) 26.11/10.22 new_esEs18(vxw111, vxw101, app(app(ty_@2, hf), hg)) -> new_esEs4(vxw111, vxw101, hf, hg) 26.11/10.22 new_ltEs4(False, True) -> True 26.11/10.22 new_ltEs15(vxw11, vxw10) -> new_not(new_esEs8(new_compare16(vxw11, vxw10), GT)) 26.11/10.22 new_compare113(vxw110, vxw100, False) -> GT 26.11/10.22 new_compare6(vxw110, vxw100, ty_Int) -> new_compare8(vxw110, vxw100) 26.11/10.22 new_compare19(@0, @0) -> EQ 26.11/10.22 new_esEs18(vxw111, vxw101, ty_Ordering) -> new_esEs8(vxw111, vxw101) 26.11/10.22 new_lt8(vxw111, vxw101, ty_Ordering) -> new_lt11(vxw111, vxw101) 26.11/10.22 new_lt9(vxw110, vxw100, app(ty_[], bbh)) -> new_lt6(vxw110, vxw100, bbh) 26.11/10.22 new_esEs8(GT, GT) -> True 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.22 new_primEqInt(Pos(Succ(vxw3000)), Pos(Zero)) -> False 26.11/10.22 new_primEqInt(Pos(Zero), Pos(Succ(vxw40000))) -> False 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_Double, dh) -> new_ltEs10(vxw110, vxw100) 26.11/10.22 new_esEs10(:%(vxw300, vxw301), :%(vxw4000, vxw4001), cec) -> new_asAs(new_esEs23(vxw300, vxw4000, cec), new_esEs22(vxw301, vxw4001, cec)) 26.11/10.22 new_lt20(vxw110, vxw100, app(app(ty_@2, cc), cd)) -> new_lt13(vxw110, vxw100, cc, cd) 26.11/10.22 new_esEs24(vxw300, vxw4000, app(app(ty_@2, ceg), ceh)) -> new_esEs4(vxw300, vxw4000, ceg, ceh) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_Double) -> new_ltEs10(vxw112, vxw102) 26.11/10.22 new_esEs8(EQ, EQ) -> True 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_Float, dh) -> new_ltEs14(vxw110, vxw100) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), app(app(app(ty_@3, ec), ed), ee), dh) -> new_ltEs6(vxw110, vxw100, ec, ed, ee) 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.22 new_primEqNat0(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat0(vxw3000, vxw40000) 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 26.11/10.22 new_esEs19(vxw110, vxw100, app(ty_Ratio, bgc)) -> new_esEs10(vxw110, vxw100, bgc) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, app(app(ty_@2, cab), cac)) -> new_esEs4(vxw300, vxw4000, cab, cac) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.22 new_compare13(vxw110, vxw100, da, db, dc) -> new_compare27(vxw110, vxw100, new_esEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_Char) -> new_ltEs5(vxw111, vxw101) 26.11/10.22 new_ltEs19(vxw111, vxw101, app(app(ty_@2, bb), bc)) -> new_ltEs11(vxw111, vxw101, bb, bc) 26.11/10.22 new_compare6(vxw110, vxw100, app(ty_[], bec)) -> new_compare0(vxw110, vxw100, bec) 26.11/10.22 new_not(True) -> False 26.11/10.22 new_esEs25(vxw302, vxw4002, app(ty_Ratio, cgb)) -> new_esEs10(vxw302, vxw4002, cgb) 26.11/10.22 new_lt20(vxw110, vxw100, ty_Float) -> new_lt16(vxw110, vxw100) 26.11/10.22 new_primCompAux00(vxw54, LT) -> LT 26.11/10.22 new_primCmpNat0(Zero, Zero) -> EQ 26.11/10.22 new_esEs21(vxw300, vxw4000, app(app(app(ty_@3, cde), cdf), cdg)) -> new_esEs6(vxw300, vxw4000, cde, cdf, cdg) 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.22 new_esEs20(vxw301, vxw4001, app(app(app(ty_@3, ccc), ccd), cce)) -> new_esEs6(vxw301, vxw4001, ccc, ccd, cce) 26.11/10.22 new_lt20(vxw110, vxw100, app(app(app(ty_@3, da), db), dc)) -> new_lt15(vxw110, vxw100, da, db, dc) 26.11/10.22 new_esEs4(@2(vxw300, vxw301), @2(vxw4000, vxw4001), cbe, cbf) -> new_asAs(new_esEs21(vxw300, vxw4000, cbe), new_esEs20(vxw301, vxw4001, cbf)) 26.11/10.22 new_compare6(vxw110, vxw100, app(ty_Ratio, bed)) -> new_compare14(vxw110, vxw100, bed) 26.11/10.22 new_compare27(vxw110, vxw100, False, da, db, dc) -> new_compare111(vxw110, vxw100, new_ltEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 new_esEs19(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 26.11/10.22 new_esEs19(vxw110, vxw100, app(app(ty_@2, bah), bba)) -> new_esEs4(vxw110, vxw100, bah, bba) 26.11/10.22 new_primEqNat0(Succ(vxw3000), Zero) -> False 26.11/10.22 new_primEqNat0(Zero, Succ(vxw40000)) -> False 26.11/10.22 new_compare112(vxw110, vxw100, False) -> GT 26.11/10.22 new_compare8(vxw11, vxw10) -> new_primCmpInt(vxw11, vxw10) 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 26.11/10.22 new_esEs23(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.22 new_ltEs17(vxw11, vxw10) -> new_not(new_esEs8(new_compare19(vxw11, vxw10), GT)) 26.11/10.22 new_primCompAux00(vxw54, GT) -> GT 26.11/10.22 new_compare10(Double(vxw110, Pos(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.22 new_compare10(Double(vxw110, Neg(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_Double) -> new_esEs13(vxw302, vxw4002) 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), app(ty_[], eg), dh) -> new_ltEs18(vxw110, vxw100, eg) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_Ordering) -> new_ltEs9(vxw112, vxw102) 26.11/10.22 new_esEs26(vxw301, vxw4001, app(ty_Ratio, chd)) -> new_esEs10(vxw301, vxw4001, chd) 26.11/10.22 new_lt20(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) 26.11/10.22 new_primCmpInt(Pos(Succ(vxw1100)), Neg(vxw100)) -> GT 26.11/10.22 new_lt6(vxw110, vxw100, de) -> new_esEs8(new_compare0(vxw110, vxw100, de), LT) 26.11/10.22 new_esEs20(vxw301, vxw4001, app(app(ty_@2, cca), ccb)) -> new_esEs4(vxw301, vxw4001, cca, ccb) 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_Float) -> new_ltEs14(vxw111, vxw101) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, app(ty_[], gb)) -> new_ltEs18(vxw110, vxw100, gb) 26.11/10.22 new_esEs19(vxw110, vxw100, ty_Double) -> new_esEs13(vxw110, vxw100) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.22 new_lt8(vxw111, vxw101, ty_Int) -> new_lt4(vxw111, vxw101) 26.11/10.22 new_lt8(vxw111, vxw101, app(ty_Maybe, baf)) -> new_lt18(vxw111, vxw101, baf) 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) 26.11/10.22 new_lt9(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) 26.11/10.22 new_compare11(vxw110, vxw100, cc, cd) -> new_compare26(vxw110, vxw100, new_esEs4(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 new_primCmpNat0(Zero, Succ(vxw1000)) -> LT 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 26.11/10.22 new_esEs19(vxw110, vxw100, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_esEs6(vxw110, vxw100, bbd, bbe, bbf) 26.11/10.22 new_esEs21(vxw300, vxw4000, app(ty_Ratio, cda)) -> new_esEs10(vxw300, vxw4000, cda) 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_Double) -> new_ltEs10(vxw111, vxw101) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, app(ty_Maybe, caa)) -> new_esEs7(vxw300, vxw4000, caa) 26.11/10.22 new_sr(Integer(vxw1000), Integer(vxw1110)) -> Integer(new_primMulInt(vxw1000, vxw1110)) 26.11/10.22 new_lt9(vxw110, vxw100, app(ty_Maybe, bbg)) -> new_lt18(vxw110, vxw100, bbg) 26.11/10.22 new_primCmpNat0(Succ(vxw1100), Zero) -> GT 26.11/10.22 new_pePe(False, vxw42) -> vxw42 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), app(ty_Ratio, cbd)) -> new_ltEs13(vxw110, vxw100, cbd) 26.11/10.22 new_esEs7(Nothing, Just(vxw4000), bef) -> False 26.11/10.22 new_esEs7(Just(vxw300), Nothing, bef) -> False 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_Integer) -> new_esEs14(vxw302, vxw4002) 26.11/10.22 new_compare114(vxw110, vxw100, True, cc, cd) -> LT 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_Either, bfg), bfh)) -> new_esEs5(vxw300, vxw4000, bfg, bfh) 26.11/10.22 new_esEs18(vxw111, vxw101, ty_Float) -> new_esEs11(vxw111, vxw101) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_Float) -> new_ltEs14(vxw110, vxw100) 26.11/10.22 new_lt9(vxw110, vxw100, app(app(ty_Either, bbb), bbc)) -> new_lt14(vxw110, vxw100, bbb, bbc) 26.11/10.22 new_esEs8(LT, EQ) -> False 26.11/10.22 new_esEs8(EQ, LT) -> False 26.11/10.22 new_lt18(vxw110, vxw100, dd) -> new_esEs8(new_compare18(vxw110, vxw100, dd), LT) 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_@2, bgg), bgh), bgd) -> new_esEs4(vxw300, vxw4000, bgg, bgh) 26.11/10.22 new_esEs21(vxw300, vxw4000, app(app(ty_@2, cdc), cdd)) -> new_esEs4(vxw300, vxw4000, cdc, cdd) 26.11/10.22 new_esEs28(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) 26.11/10.22 new_compare25(vxw110, vxw100, False, dd) -> new_compare110(vxw110, vxw100, new_ltEs16(vxw110, vxw100, dd), dd) 26.11/10.22 new_primEqInt(Pos(Zero), Neg(Succ(vxw40000))) -> False 26.11/10.22 new_primEqInt(Neg(Zero), Pos(Succ(vxw40000))) -> False 26.11/10.22 new_esEs7(Nothing, Nothing, bef) -> True 26.11/10.22 new_lt9(vxw110, vxw100, app(app(app(ty_@3, bbd), bbe), bbf)) -> new_lt15(vxw110, vxw100, bbd, bbe, bbf) 26.11/10.22 new_lt8(vxw111, vxw101, app(ty_[], bag)) -> new_lt6(vxw111, vxw101, bag) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.22 new_compare7(vxw110, vxw100) -> new_compare24(vxw110, vxw100, new_esEs17(vxw110, vxw100)) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_@0) -> new_ltEs17(vxw110, vxw100) 26.11/10.22 new_esEs25(vxw302, vxw4002, app(app(ty_@2, cgd), cge)) -> new_esEs4(vxw302, vxw4002, cgd, cge) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), app(app(ty_Either, ea), eb), dh) -> new_ltEs12(vxw110, vxw100, ea, eb) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.22 new_lt7(vxw110, vxw100) -> new_esEs8(new_compare17(vxw110, vxw100), LT) 26.11/10.22 new_esEs18(vxw111, vxw101, ty_Char) -> new_esEs16(vxw111, vxw101) 26.11/10.22 new_esEs24(vxw300, vxw4000, app(app(ty_Either, cfe), cff)) -> new_esEs5(vxw300, vxw4000, cfe, cff) 26.11/10.22 new_primEqInt(Neg(Succ(vxw3000)), Neg(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_Ordering) -> new_esEs8(vxw302, vxw4002) 26.11/10.22 new_primCmpInt(Neg(Zero), Pos(Succ(vxw1000))) -> LT 26.11/10.22 new_compare114(vxw110, vxw100, False, cc, cd) -> GT 26.11/10.22 new_esEs20(vxw301, vxw4001, app(ty_Ratio, cbg)) -> new_esEs10(vxw301, vxw4001, cbg) 26.11/10.22 new_primMulInt(Pos(vxw3010), Pos(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.22 new_esEs25(vxw302, vxw4002, app(ty_Maybe, cgc)) -> new_esEs7(vxw302, vxw4002, cgc) 26.11/10.22 new_lt9(vxw110, vxw100, ty_Double) -> new_lt12(vxw110, vxw100) 26.11/10.22 new_lt9(vxw110, vxw100, ty_Integer) -> new_lt17(vxw110, vxw100) 26.11/10.22 new_esEs24(vxw300, vxw4000, app(app(app(ty_@3, cfa), cfb), cfc)) -> new_esEs6(vxw300, vxw4000, cfa, cfb, cfc) 26.11/10.22 new_lt15(vxw110, vxw100, da, db, dc) -> new_esEs8(new_compare13(vxw110, vxw100, da, db, dc), LT) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_Float) -> new_ltEs14(vxw112, vxw102) 26.11/10.22 new_primMulNat0(Succ(vxw30100), Zero) -> Zero 26.11/10.22 new_primMulNat0(Zero, Succ(vxw400000)) -> Zero 26.11/10.22 new_compare6(vxw110, vxw100, ty_Double) -> new_compare10(vxw110, vxw100) 26.11/10.22 new_ltEs9(GT, EQ) -> False 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), app(app(app(ty_@3, bfc), bfd), bfe)) -> new_esEs6(vxw300, vxw4000, bfc, bfd, bfe) 26.11/10.22 new_ltEs19(vxw111, vxw101, app(ty_[], cb)) -> new_ltEs18(vxw111, vxw101, cb) 26.11/10.22 new_esEs26(vxw301, vxw4001, app(ty_[], dac)) -> new_esEs12(vxw301, vxw4001, dac) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_@0) -> new_ltEs17(vxw112, vxw102) 26.11/10.22 new_esEs28(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.22 new_primPlusNat1(Succ(vxw440), vxw400000) -> Succ(Succ(new_primPlusNat0(vxw440, vxw400000))) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.22 new_ltEs7(vxw112, vxw102, app(ty_Maybe, hd)) -> new_ltEs16(vxw112, vxw102, hd) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), app(app(ty_Either, bhe), bhf), bgd) -> new_esEs5(vxw300, vxw4000, bhe, bhf) 26.11/10.22 new_lt8(vxw111, vxw101, ty_Double) -> new_lt12(vxw111, vxw101) 26.11/10.22 new_lt9(vxw110, vxw100, app(app(ty_@2, bah), bba)) -> new_lt13(vxw110, vxw100, bah, bba) 26.11/10.22 new_primPlusNat0(Succ(vxw4400), Zero) -> Succ(vxw4400) 26.11/10.22 new_primPlusNat0(Zero, Succ(vxw4000000)) -> Succ(vxw4000000) 26.11/10.22 new_compare27(vxw110, vxw100, True, da, db, dc) -> EQ 26.11/10.22 new_compare15(Float(vxw110, Neg(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.22 new_esEs21(vxw300, vxw4000, app(app(ty_Either, cea), ceb)) -> new_esEs5(vxw300, vxw4000, cea, ceb) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), app(app(ty_@2, df), dg), dh) -> new_ltEs11(vxw110, vxw100, df, dg) 26.11/10.22 new_primPlusNat1(Zero, vxw400000) -> Succ(vxw400000) 26.11/10.22 new_esEs22(vxw301, vxw4001, ty_Int) -> new_esEs9(vxw301, vxw4001) 26.11/10.22 new_esEs24(vxw300, vxw4000, app(ty_[], cfd)) -> new_esEs12(vxw300, vxw4000, cfd) 26.11/10.22 new_esEs8(LT, LT) -> True 26.11/10.22 new_esEs19(vxw110, vxw100, ty_@0) -> new_esEs15(vxw110, vxw100) 26.11/10.22 new_esEs28(vxw110, vxw100, app(ty_Ratio, bee)) -> new_esEs10(vxw110, vxw100, bee) 26.11/10.22 new_lt20(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 26.11/10.22 new_lt20(vxw110, vxw100, ty_Int) -> new_lt4(vxw110, vxw100) 26.11/10.22 new_lt4(vxw110, vxw100) -> new_esEs8(new_compare8(vxw110, vxw100), LT) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.22 new_lt8(vxw111, vxw101, app(app(ty_@2, hf), hg)) -> new_lt13(vxw111, vxw101, hf, hg) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), app(app(ty_@2, bfa), bfb)) -> new_esEs4(vxw300, vxw4000, bfa, bfb) 26.11/10.22 new_esEs25(vxw302, vxw4002, app(ty_[], cha)) -> new_esEs12(vxw302, vxw4002, cha) 26.11/10.22 new_esEs28(vxw110, vxw100, ty_Bool) -> new_esEs17(vxw110, vxw100) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), app(ty_[], bff)) -> new_esEs12(vxw300, vxw4000, bff) 26.11/10.22 new_esEs28(vxw110, vxw100, ty_Float) -> new_esEs11(vxw110, vxw100) 26.11/10.22 new_compare9(vxw110, vxw100) -> new_compare23(vxw110, vxw100, new_esEs8(vxw110, vxw100)) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.22 new_lt13(vxw110, vxw100, cc, cd) -> new_esEs8(new_compare11(vxw110, vxw100, cc, cd), LT) 26.11/10.22 new_ltEs9(GT, GT) -> True 26.11/10.22 new_esEs18(vxw111, vxw101, ty_Bool) -> new_esEs17(vxw111, vxw101) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_Integer) -> new_ltEs15(vxw110, vxw100) 26.11/10.22 new_esEs24(vxw300, vxw4000, app(ty_Maybe, cef)) -> new_esEs7(vxw300, vxw4000, cef) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, app(app(ty_@2, fa), fb)) -> new_ltEs11(vxw110, vxw100, fa, fb) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_Bool) -> new_ltEs4(vxw110, vxw100) 26.11/10.22 new_compare15(Float(vxw110, Pos(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs16(vxw110, vxw100, bch) 26.11/10.22 new_compare115(vxw110, vxw100, False, cf, cg) -> GT 26.11/10.22 new_lt20(vxw110, vxw100, ty_Ordering) -> new_lt11(vxw110, vxw100) 26.11/10.22 new_compare28(vxw110, vxw100, False, cf, cg) -> new_compare115(vxw110, vxw100, new_ltEs12(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 new_esEs28(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 26.11/10.22 new_primMulInt(Neg(vxw3010), Neg(vxw40000)) -> Pos(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.22 new_primCmpInt(Pos(Zero), Pos(Succ(vxw1000))) -> new_primCmpNat0(Zero, Succ(vxw1000)) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs6(vxw110, vxw100, ff, fg, fh) 26.11/10.22 new_compare25(vxw110, vxw100, True, dd) -> EQ 26.11/10.22 new_lt20(vxw110, vxw100, app(ty_Ratio, bee)) -> new_lt5(vxw110, vxw100, bee) 26.11/10.22 new_esEs18(vxw111, vxw101, app(ty_Ratio, bgb)) -> new_esEs10(vxw111, vxw101, bgb) 26.11/10.22 new_ltEs7(vxw112, vxw102, app(ty_[], he)) -> new_ltEs18(vxw112, vxw102, he) 26.11/10.22 new_esEs18(vxw111, vxw101, ty_@0) -> new_esEs15(vxw111, vxw101) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_Int) -> new_ltEs8(vxw110, vxw100) 26.11/10.22 new_lt8(vxw111, vxw101, app(app(ty_Either, baa), bab)) -> new_lt14(vxw111, vxw101, baa, bab) 26.11/10.22 new_lt14(vxw110, vxw100, cf, cg) -> new_esEs8(new_compare12(vxw110, vxw100, cf, cg), LT) 26.11/10.22 new_ltEs18(vxw11, vxw10, bdb) -> new_not(new_esEs8(new_compare0(vxw11, vxw10, bdb), GT)) 26.11/10.22 new_compare14(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Int) -> new_compare8(new_sr0(vxw110, vxw101), new_sr0(vxw100, vxw111)) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Ratio, bge), bgd) -> new_esEs10(vxw300, vxw4000, bge) 26.11/10.22 new_compare112(vxw110, vxw100, True) -> LT 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_Double) -> new_ltEs10(vxw110, vxw100) 26.11/10.22 new_primMulInt(Pos(vxw3010), Neg(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.22 new_primMulInt(Neg(vxw3010), Pos(vxw40000)) -> Neg(new_primMulNat0(vxw3010, vxw40000)) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, app(app(ty_Either, fc), fd)) -> new_ltEs12(vxw110, vxw100, fc, fd) 26.11/10.22 new_esEs19(vxw110, vxw100, app(app(ty_Either, bbb), bbc)) -> new_esEs5(vxw110, vxw100, bbb, bbc) 26.11/10.22 new_compare6(vxw110, vxw100, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare13(vxw110, vxw100, bdg, bdh, bea) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, app(app(app(ty_@3, cad), cae), caf)) -> new_esEs6(vxw300, vxw4000, cad, cae, caf) 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_Integer) -> new_ltEs15(vxw111, vxw101) 26.11/10.22 new_esEs28(vxw110, vxw100, ty_Double) -> new_esEs13(vxw110, vxw100) 26.11/10.22 new_ltEs5(vxw11, vxw10) -> new_not(new_esEs8(new_compare17(vxw11, vxw10), GT)) 26.11/10.22 new_ltEs12(Right(vxw110), Left(vxw100), eh, dh) -> False 26.11/10.22 new_esEs11(Float(vxw300, vxw301), Float(vxw4000, vxw4001)) -> new_esEs9(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 26.11/10.22 new_ltEs8(vxw11, vxw10) -> new_not(new_esEs8(new_compare8(vxw11, vxw10), GT)) 26.11/10.22 new_compare15(Float(vxw110, Pos(vxw1110)), Float(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.22 new_compare15(Float(vxw110, Neg(vxw1110)), Float(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.22 new_esEs19(vxw110, vxw100, ty_Char) -> new_esEs16(vxw110, vxw100) 26.11/10.22 new_lt19(vxw110, vxw100) -> new_esEs8(new_compare19(vxw110, vxw100), LT) 26.11/10.22 new_compare111(vxw110, vxw100, False, da, db, dc) -> GT 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs18(vxw110, vxw100, bda) 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_Bool, bgd) -> new_esEs17(vxw300, vxw4000) 26.11/10.22 new_ltEs14(vxw11, vxw10) -> new_not(new_esEs8(new_compare15(vxw11, vxw10), GT)) 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_Float) -> new_esEs11(vxw302, vxw4002) 26.11/10.22 new_esEs27(vxw300, vxw4000, app(app(app(ty_@3, dbb), dbc), dbd)) -> new_esEs6(vxw300, vxw4000, dbb, dbc, dbd) 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_Bool) -> new_esEs17(vxw301, vxw4001) 26.11/10.22 new_ltEs13(vxw11, vxw10, cbb) -> new_not(new_esEs8(new_compare14(vxw11, vxw10, cbb), GT)) 26.11/10.22 new_esEs18(vxw111, vxw101, ty_Integer) -> new_esEs14(vxw111, vxw101) 26.11/10.22 new_esEs6(@3(vxw300, vxw301, vxw302), @3(vxw4000, vxw4001, vxw4002), cfg, cfh, cga) -> new_asAs(new_esEs27(vxw300, vxw4000, cfg), new_asAs(new_esEs26(vxw301, vxw4001, cfh), new_esEs25(vxw302, vxw4002, cga))) 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_Int) -> new_esEs9(vxw301, vxw4001) 26.11/10.22 new_esEs18(vxw111, vxw101, ty_Double) -> new_esEs13(vxw111, vxw101) 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_Char) -> new_esEs16(vxw302, vxw4002) 26.11/10.22 new_esEs12(:(vxw300, vxw301), :(vxw4000, vxw4001), ced) -> new_asAs(new_esEs24(vxw300, vxw4000, ced), new_esEs12(vxw301, vxw4001, ced)) 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_Int) -> new_esEs9(vxw302, vxw4002) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_[], bhd), bgd) -> new_esEs12(vxw300, vxw4000, bhd) 26.11/10.22 new_compare0([], :(vxw100, vxw101), bdb) -> LT 26.11/10.22 new_lt8(vxw111, vxw101, ty_Char) -> new_lt7(vxw111, vxw101) 26.11/10.22 new_asAs(True, vxw35) -> vxw35 26.11/10.22 new_esEs19(vxw110, vxw100, ty_Float) -> new_esEs11(vxw110, vxw100) 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_@0) -> new_esEs15(vxw301, vxw4001) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_Integer, bgd) -> new_esEs14(vxw300, vxw4000) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_Char) -> new_ltEs5(vxw110, vxw100) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_Int) -> new_ltEs8(vxw112, vxw102) 26.11/10.22 new_compare113(vxw110, vxw100, True) -> LT 26.11/10.22 new_esEs17(False, True) -> False 26.11/10.22 new_esEs17(True, False) -> False 26.11/10.22 new_esEs16(Char(vxw300), Char(vxw4000)) -> new_primEqNat0(vxw300, vxw4000) 26.11/10.22 new_lt11(vxw110, vxw100) -> new_esEs8(new_compare9(vxw110, vxw100), LT) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_Ordering) -> new_ltEs9(vxw110, vxw100) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, app(ty_[], cag)) -> new_esEs12(vxw300, vxw4000, cag) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_Integer, dh) -> new_ltEs15(vxw110, vxw100) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_Double) -> new_esEs13(vxw300, vxw4000) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_Integer) -> new_ltEs15(vxw112, vxw102) 26.11/10.22 new_esEs19(vxw110, vxw100, ty_Int) -> new_esEs9(vxw110, vxw100) 26.11/10.22 new_compare10(Double(vxw110, Neg(vxw1110)), Double(vxw100, Neg(vxw1010))) -> new_compare8(new_sr0(vxw110, Neg(vxw1010)), new_sr0(Neg(vxw1110), vxw100)) 26.11/10.22 new_ltEs6(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, hh) -> new_pePe(new_lt9(vxw110, vxw100, gc), new_asAs(new_esEs19(vxw110, vxw100, gc), new_pePe(new_lt8(vxw111, vxw101, gd), new_asAs(new_esEs18(vxw111, vxw101, gd), new_ltEs7(vxw112, vxw102, hh))))) 26.11/10.22 new_primCmpInt(Pos(Succ(vxw1100)), Pos(vxw100)) -> new_primCmpNat0(Succ(vxw1100), vxw100) 26.11/10.22 new_lt9(vxw110, vxw100, ty_@0) -> new_lt19(vxw110, vxw100) 26.11/10.22 new_lt20(vxw110, vxw100, ty_Char) -> new_lt7(vxw110, vxw100) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.22 new_primCompAux00(vxw54, EQ) -> vxw54 26.11/10.22 new_compare0([], [], bdb) -> EQ 26.11/10.22 new_compare23(vxw110, vxw100, True) -> EQ 26.11/10.22 new_primMulNat0(Zero, Zero) -> Zero 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_Double, bgd) -> new_esEs13(vxw300, vxw4000) 26.11/10.22 new_esEs27(vxw300, vxw4000, ty_Ordering) -> new_esEs8(vxw300, vxw4000) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_Int, bgd) -> new_esEs9(vxw300, vxw4000) 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_Float) -> new_esEs11(vxw301, vxw4001) 26.11/10.22 new_compare14(:%(vxw110, vxw111), :%(vxw100, vxw101), ty_Integer) -> new_compare16(new_sr(vxw110, vxw101), new_sr(vxw100, vxw111)) 26.11/10.22 new_esEs19(vxw110, vxw100, ty_Bool) -> new_esEs17(vxw110, vxw100) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_Double) -> new_ltEs10(vxw110, vxw100) 26.11/10.22 new_esEs20(vxw301, vxw4001, app(app(ty_Either, ccg), cch)) -> new_esEs5(vxw301, vxw4001, ccg, cch) 26.11/10.22 new_ltEs19(vxw111, vxw101, app(ty_Ratio, dbh)) -> new_ltEs13(vxw111, vxw101, dbh) 26.11/10.22 new_ltEs7(vxw112, vxw102, app(app(ty_Either, gg), gh)) -> new_ltEs12(vxw112, vxw102, gg, gh) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, app(app(ty_Either, cah), cba)) -> new_esEs5(vxw300, vxw4000, cah, cba) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), app(ty_Maybe, ef), dh) -> new_ltEs16(vxw110, vxw100, ef) 26.11/10.22 new_lt8(vxw111, vxw101, app(ty_Ratio, bgb)) -> new_lt5(vxw111, vxw101, bgb) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.22 new_ltEs7(vxw112, vxw102, app(ty_Ratio, bga)) -> new_ltEs13(vxw112, vxw102, bga) 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.22 new_ltEs19(vxw111, vxw101, app(app(ty_Either, bd), be)) -> new_ltEs12(vxw111, vxw101, bd, be) 26.11/10.22 new_compare6(vxw110, vxw100, ty_@0) -> new_compare19(vxw110, vxw100) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_@0) -> new_ltEs17(vxw110, vxw100) 26.11/10.22 new_esEs27(vxw300, vxw4000, app(ty_Ratio, daf)) -> new_esEs10(vxw300, vxw4000, daf) 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_Float) -> new_ltEs14(vxw110, vxw100) 26.11/10.22 new_lt20(vxw110, vxw100, app(app(ty_Either, cf), cg)) -> new_lt14(vxw110, vxw100, cf, cg) 26.11/10.22 new_compare23(vxw110, vxw100, False) -> new_compare113(vxw110, vxw100, new_ltEs9(vxw110, vxw100)) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), app(app(ty_@2, bca), bcb)) -> new_ltEs11(vxw110, vxw100, bca, bcb) 26.11/10.22 new_ltEs9(GT, LT) -> False 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, app(ty_Maybe, ga)) -> new_ltEs16(vxw110, vxw100, ga) 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_Float) -> new_esEs11(vxw301, vxw4001) 26.11/10.22 new_esEs15(@0, @0) -> True 26.11/10.22 new_lt8(vxw111, vxw101, ty_Integer) -> new_lt17(vxw111, vxw101) 26.11/10.22 new_compare6(vxw110, vxw100, app(app(ty_@2, bdc), bdd)) -> new_compare11(vxw110, vxw100, bdc, bdd) 26.11/10.22 new_esEs18(vxw111, vxw101, ty_Int) -> new_esEs9(vxw111, vxw101) 26.11/10.22 new_primEqInt(Neg(Succ(vxw3000)), Neg(Zero)) -> False 26.11/10.22 new_primEqInt(Neg(Zero), Neg(Succ(vxw40000))) -> False 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.22 new_esEs27(vxw300, vxw4000, app(ty_[], dbe)) -> new_esEs12(vxw300, vxw4000, dbe) 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_Char) -> new_esEs16(vxw301, vxw4001) 26.11/10.22 new_primEqInt(Pos(Succ(vxw3000)), Pos(Succ(vxw40000))) -> new_primEqNat0(vxw3000, vxw40000) 26.11/10.22 new_ltEs4(True, False) -> False 26.11/10.22 new_esEs20(vxw301, vxw4001, ty_Double) -> new_esEs13(vxw301, vxw4001) 26.11/10.22 new_ltEs9(EQ, GT) -> True 26.11/10.22 new_esEs21(vxw300, vxw4000, app(ty_Maybe, cdb)) -> new_esEs7(vxw300, vxw4000, cdb) 26.11/10.22 new_esEs26(vxw301, vxw4001, app(app(ty_@2, chf), chg)) -> new_esEs4(vxw301, vxw4001, chf, chg) 26.11/10.22 new_compare24(vxw110, vxw100, True) -> EQ 26.11/10.22 new_compare6(vxw110, vxw100, ty_Float) -> new_compare15(vxw110, vxw100) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_Int) -> new_esEs9(vxw300, vxw4000) 26.11/10.22 new_esEs25(vxw302, vxw4002, app(app(ty_Either, chb), chc)) -> new_esEs5(vxw302, vxw4002, chb, chc) 26.11/10.22 new_compare10(Double(vxw110, Pos(vxw1110)), Double(vxw100, Pos(vxw1010))) -> new_compare8(new_sr0(vxw110, Pos(vxw1010)), new_sr0(Pos(vxw1110), vxw100)) 26.11/10.22 new_ltEs16(Nothing, Just(vxw100), cbc) -> True 26.11/10.22 new_ltEs10(vxw11, vxw10) -> new_not(new_esEs8(new_compare10(vxw11, vxw10), GT)) 26.11/10.22 new_primEqInt(Pos(Succ(vxw3000)), Neg(vxw4000)) -> False 26.11/10.22 new_primEqInt(Neg(Succ(vxw3000)), Pos(vxw4000)) -> False 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_Ordering) -> new_esEs8(vxw301, vxw4001) 26.11/10.22 new_primCmpInt(Neg(Zero), Neg(Succ(vxw1000))) -> new_primCmpNat0(Succ(vxw1000), Zero) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_Ordering) -> new_ltEs9(vxw110, vxw100) 26.11/10.22 new_esEs26(vxw301, vxw4001, app(ty_Maybe, che)) -> new_esEs7(vxw301, vxw4001, che) 26.11/10.22 new_primCmpInt(Pos(Zero), Pos(Zero)) -> EQ 26.11/10.22 new_ltEs4(False, False) -> True 26.11/10.22 new_esEs26(vxw301, vxw4001, app(app(ty_Either, dad), dae)) -> new_esEs5(vxw301, vxw4001, dad, dae) 26.11/10.22 new_lt8(vxw111, vxw101, ty_Bool) -> new_lt10(vxw111, vxw101) 26.11/10.22 new_esEs17(True, True) -> True 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_@0) -> new_ltEs17(vxw111, vxw101) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), app(app(app(ty_@3, bha), bhb), bhc), bgd) -> new_esEs6(vxw300, vxw4000, bha, bhb, bhc) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_@0, dh) -> new_ltEs17(vxw110, vxw100) 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.22 new_esEs26(vxw301, vxw4001, app(app(app(ty_@3, chh), daa), dab)) -> new_esEs6(vxw301, vxw4001, chh, daa, dab) 26.11/10.22 new_primCompAux0(vxw110, vxw100, vxw43, bdb) -> new_primCompAux00(vxw43, new_compare6(vxw110, vxw100, bdb)) 26.11/10.22 new_esEs27(vxw300, vxw4000, app(ty_Maybe, dag)) -> new_esEs7(vxw300, vxw4000, dag) 26.11/10.22 new_esEs18(vxw111, vxw101, app(app(app(ty_@3, bac), bad), bae)) -> new_esEs6(vxw111, vxw101, bac, bad, bae) 26.11/10.22 new_esEs19(vxw110, vxw100, ty_Integer) -> new_esEs14(vxw110, vxw100) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_Bool) -> new_ltEs4(vxw110, vxw100) 26.11/10.22 new_esEs24(vxw300, vxw4000, app(ty_Ratio, cee)) -> new_esEs10(vxw300, vxw4000, cee) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), app(ty_Maybe, bgf), bgd) -> new_esEs7(vxw300, vxw4000, bgf) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), app(app(ty_Either, bcc), bcd)) -> new_ltEs12(vxw110, vxw100, bcc, bcd) 26.11/10.22 new_compare16(Integer(vxw110), Integer(vxw100)) -> new_primCmpInt(vxw110, vxw100) 26.11/10.22 new_compare24(vxw110, vxw100, False) -> new_compare112(vxw110, vxw100, new_ltEs4(vxw110, vxw100)) 26.11/10.22 new_not(False) -> True 26.11/10.22 new_esEs28(vxw110, vxw100, ty_Int) -> new_esEs9(vxw110, vxw100) 26.11/10.22 new_esEs21(vxw300, vxw4000, app(ty_[], cdh)) -> new_esEs12(vxw300, vxw4000, cdh) 26.11/10.22 new_esEs28(vxw110, vxw100, app(ty_[], de)) -> new_esEs12(vxw110, vxw100, de) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_Float, bgd) -> new_esEs11(vxw300, vxw4000) 26.11/10.22 new_esEs18(vxw111, vxw101, app(app(ty_Either, baa), bab)) -> new_esEs5(vxw111, vxw101, baa, bab) 26.11/10.22 new_lt10(vxw110, vxw100) -> new_esEs8(new_compare7(vxw110, vxw100), LT) 26.11/10.22 new_esEs20(vxw301, vxw4001, app(ty_Maybe, cbh)) -> new_esEs7(vxw301, vxw4001, cbh) 26.11/10.22 new_compare0(:(vxw110, vxw111), [], bdb) -> GT 26.11/10.22 new_esEs8(LT, GT) -> False 26.11/10.22 new_esEs8(GT, LT) -> False 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_Float) -> new_esEs11(vxw300, vxw4000) 26.11/10.22 new_primPlusNat0(Succ(vxw4400), Succ(vxw4000000)) -> Succ(Succ(new_primPlusNat0(vxw4400, vxw4000000))) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.22 new_esEs5(Left(vxw300), Right(vxw4000), bhg, bgd) -> False 26.11/10.22 new_esEs5(Right(vxw300), Left(vxw4000), bhg, bgd) -> False 26.11/10.22 new_compare12(vxw110, vxw100, cf, cg) -> new_compare28(vxw110, vxw100, new_esEs5(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 new_esEs23(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.22 new_lt9(vxw110, vxw100, ty_Int) -> new_lt4(vxw110, vxw100) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_Bool) -> new_ltEs4(vxw112, vxw102) 26.11/10.22 new_compare6(vxw110, vxw100, app(ty_Maybe, beb)) -> new_compare18(vxw110, vxw100, beb) 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_@0) -> new_esEs15(vxw302, vxw4002) 26.11/10.22 new_esEs19(vxw110, vxw100, app(ty_Maybe, bbg)) -> new_esEs7(vxw110, vxw100, bbg) 26.11/10.22 new_ltEs9(LT, EQ) -> True 26.11/10.22 new_sr0(vxw301, vxw4000) -> new_primMulInt(vxw301, vxw4000) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs6(vxw110, vxw100, bce, bcf, bcg) 26.11/10.22 new_primCmpInt(Pos(Zero), Neg(Zero)) -> EQ 26.11/10.22 new_primCmpInt(Neg(Zero), Pos(Zero)) -> EQ 26.11/10.22 new_esEs25(vxw302, vxw4002, ty_Bool) -> new_esEs17(vxw302, vxw4002) 26.11/10.22 new_lt16(vxw110, vxw100) -> new_esEs8(new_compare15(vxw110, vxw100), LT) 26.11/10.22 new_compare0(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux0(vxw110, vxw100, new_compare0(vxw111, vxw101, bdb), bdb) 26.11/10.22 new_lt9(vxw110, vxw100, ty_Float) -> new_lt16(vxw110, vxw100) 26.11/10.22 new_ltEs9(LT, GT) -> True 26.11/10.22 new_esEs27(vxw300, vxw4000, app(app(ty_@2, dah), dba)) -> new_esEs4(vxw300, vxw4000, dah, dba) 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_Bool) -> new_ltEs4(vxw111, vxw101) 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_Char, bgd) -> new_esEs16(vxw300, vxw4000) 26.11/10.22 new_primEqInt(Neg(Zero), Neg(Zero)) -> True 26.11/10.22 new_esEs17(False, False) -> True 26.11/10.22 new_compare6(vxw110, vxw100, ty_Bool) -> new_compare7(vxw110, vxw100) 26.11/10.22 new_ltEs4(True, True) -> True 26.11/10.22 new_esEs28(vxw110, vxw100, app(app(ty_@2, cc), cd)) -> new_esEs4(vxw110, vxw100, cc, cd) 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_Bool, dh) -> new_ltEs4(vxw110, vxw100) 26.11/10.22 new_lt9(vxw110, vxw100, app(ty_Ratio, bgc)) -> new_lt5(vxw110, vxw100, bgc) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.22 new_ltEs16(Just(vxw110), Just(vxw100), ty_Char) -> new_ltEs5(vxw110, vxw100) 26.11/10.22 new_esEs21(vxw300, vxw4000, ty_Integer) -> new_esEs14(vxw300, vxw4000) 26.11/10.22 new_esEs13(Double(vxw300, vxw301), Double(vxw4000, vxw4001)) -> new_esEs9(new_sr0(vxw300, vxw4001), new_sr0(vxw301, vxw4000)) 26.11/10.22 new_primCmpNat0(Succ(vxw1100), Succ(vxw1000)) -> new_primCmpNat0(vxw1100, vxw1000) 26.11/10.22 new_esEs5(Right(vxw300), Right(vxw4000), bhg, app(ty_Ratio, bhh)) -> new_esEs10(vxw300, vxw4000, bhh) 26.11/10.22 new_ltEs7(vxw112, vxw102, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs6(vxw112, vxw102, ha, hb, hc) 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_Char) -> new_esEs16(vxw300, vxw4000) 26.11/10.22 new_lt9(vxw110, vxw100, ty_Ordering) -> new_lt11(vxw110, vxw100) 26.11/10.22 new_lt5(vxw110, vxw100, bee) -> new_esEs8(new_compare14(vxw110, vxw100, bee), LT) 26.11/10.22 new_lt20(vxw110, vxw100, app(ty_Maybe, dd)) -> new_lt18(vxw110, vxw100, dd) 26.11/10.22 new_esEs18(vxw111, vxw101, app(ty_[], bag)) -> new_esEs12(vxw111, vxw101, bag) 26.11/10.22 new_esEs28(vxw110, vxw100, ty_Ordering) -> new_esEs8(vxw110, vxw100) 26.11/10.22 new_esEs12([], [], ced) -> True 26.11/10.22 new_ltEs12(Left(vxw110), Left(vxw100), ty_Int, dh) -> new_ltEs8(vxw110, vxw100) 26.11/10.22 new_primEqInt(Pos(Zero), Neg(Zero)) -> True 26.11/10.22 new_primEqInt(Neg(Zero), Pos(Zero)) -> True 26.11/10.22 new_esEs18(vxw111, vxw101, app(ty_Maybe, baf)) -> new_esEs7(vxw111, vxw101, baf) 26.11/10.22 new_ltEs9(EQ, LT) -> False 26.11/10.22 new_ltEs12(Right(vxw110), Right(vxw100), eh, ty_Integer) -> new_ltEs15(vxw110, vxw100) 26.11/10.22 new_lt17(vxw110, vxw100) -> new_esEs8(new_compare16(vxw110, vxw100), LT) 26.11/10.22 new_compare6(vxw110, vxw100, ty_Ordering) -> new_compare9(vxw110, vxw100) 26.11/10.22 new_ltEs7(vxw112, vxw102, ty_Char) -> new_ltEs5(vxw112, vxw102) 26.11/10.22 new_compare17(Char(vxw110), Char(vxw100)) -> new_primCmpNat0(vxw110, vxw100) 26.11/10.22 new_primEqNat0(Zero, Zero) -> True 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.22 new_esEs24(vxw300, vxw4000, ty_Bool) -> new_esEs17(vxw300, vxw4000) 26.11/10.22 new_esEs28(vxw110, vxw100, app(app(ty_Either, cf), cg)) -> new_esEs5(vxw110, vxw100, cf, cg) 26.11/10.22 new_esEs19(vxw110, vxw100, app(ty_[], bbh)) -> new_esEs12(vxw110, vxw100, bbh) 26.11/10.22 new_esEs28(vxw110, vxw100, app(app(app(ty_@3, da), db), dc)) -> new_esEs6(vxw110, vxw100, da, db, dc) 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), app(ty_Ratio, beg)) -> new_esEs10(vxw300, vxw4000, beg) 26.11/10.22 new_lt20(vxw110, vxw100, app(ty_[], de)) -> new_lt6(vxw110, vxw100, de) 26.11/10.22 new_compare110(vxw110, vxw100, True, dd) -> LT 26.11/10.22 new_lt8(vxw111, vxw101, ty_@0) -> new_lt19(vxw111, vxw101) 26.11/10.22 new_lt20(vxw110, vxw100, ty_Integer) -> new_lt17(vxw110, vxw100) 26.11/10.22 new_asAs(False, vxw35) -> False 26.11/10.22 new_esEs5(Left(vxw300), Left(vxw4000), ty_@0, bgd) -> new_esEs15(vxw300, vxw4000) 26.11/10.22 new_compare18(vxw110, vxw100, dd) -> new_compare25(vxw110, vxw100, new_esEs7(vxw110, vxw100, dd), dd) 26.11/10.22 new_esEs26(vxw301, vxw4001, ty_Int) -> new_esEs9(vxw301, vxw4001) 26.11/10.22 new_compare28(vxw110, vxw100, True, cf, cg) -> EQ 26.11/10.22 new_esEs22(vxw301, vxw4001, ty_Integer) -> new_esEs14(vxw301, vxw4001) 26.11/10.22 new_ltEs19(vxw111, vxw101, ty_Int) -> new_ltEs8(vxw111, vxw101) 26.11/10.22 new_esEs14(Integer(vxw300), Integer(vxw4000)) -> new_primEqInt(vxw300, vxw4000) 26.11/10.22 new_compare6(vxw110, vxw100, ty_Integer) -> new_compare16(vxw110, vxw100) 26.11/10.22 new_esEs8(EQ, GT) -> False 26.11/10.22 new_esEs8(GT, EQ) -> False 26.11/10.22 new_esEs7(Just(vxw300), Just(vxw4000), ty_@0) -> new_esEs15(vxw300, vxw4000) 26.11/10.22 new_compare6(vxw110, vxw100, ty_Char) -> new_compare17(vxw110, vxw100) 26.11/10.22 new_ltEs9(EQ, EQ) -> True 26.11/10.22 new_lt9(vxw110, vxw100, ty_Bool) -> new_lt10(vxw110, vxw100) 26.11/10.22 new_ltEs11(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, ce) -> new_pePe(new_lt20(vxw110, vxw100, ba), new_asAs(new_esEs28(vxw110, vxw100, ba), new_ltEs19(vxw111, vxw101, ce))) 26.11/10.22 26.11/10.22 The set Q consists of the following terms: 26.11/10.22 26.11/10.22 new_compare10(Double(x0, Pos(x1)), Double(x2, Neg(x3))) 26.11/10.22 new_compare10(Double(x0, Neg(x1)), Double(x2, Pos(x3))) 26.11/10.22 new_compare25(x0, x1, True, x2) 26.11/10.22 new_esEs19(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Char) 26.11/10.22 new_esEs8(EQ, EQ) 26.11/10.22 new_compare28(x0, x1, False, x2, x3) 26.11/10.22 new_esEs23(x0, x1, ty_Int) 26.11/10.22 new_esEs18(x0, x1, ty_Int) 26.11/10.22 new_esEs25(x0, x1, ty_@0) 26.11/10.22 new_esEs24(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_lt20(x0, x1, ty_Char) 26.11/10.22 new_primPlusNat0(Succ(x0), Zero) 26.11/10.22 new_esEs19(x0, x1, ty_Double) 26.11/10.22 new_esEs21(x0, x1, ty_Char) 26.11/10.22 new_lt6(x0, x1, x2) 26.11/10.22 new_compare10(Double(x0, Neg(x1)), Double(x2, Neg(x3))) 26.11/10.22 new_compare10(Double(x0, Pos(x1)), Double(x2, Pos(x3))) 26.11/10.22 new_esEs26(x0, x1, ty_Char) 26.11/10.22 new_ltEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.11/10.22 new_compare6(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_compare24(x0, x1, True) 26.11/10.22 new_esEs20(x0, x1, ty_@0) 26.11/10.22 new_esEs27(x0, x1, ty_Int) 26.11/10.22 new_esEs28(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_Double, x2) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_Integer, x2) 26.11/10.22 new_esEs27(x0, x1, ty_Ordering) 26.11/10.22 new_esEs26(x0, x1, ty_Int) 26.11/10.22 new_esEs21(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_lt20(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_compare27(x0, x1, False, x2, x3, x4) 26.11/10.22 new_esEs5(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.11/10.22 new_primEqInt(Pos(Zero), Pos(Zero)) 26.11/10.22 new_ltEs8(x0, x1) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.11/10.22 new_esEs21(x0, x1, ty_Ordering) 26.11/10.22 new_lt20(x0, x1, ty_Ordering) 26.11/10.22 new_compare110(x0, x1, True, x2) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Double) 26.11/10.22 new_ltEs18(x0, x1, x2) 26.11/10.22 new_esEs19(x0, x1, ty_Ordering) 26.11/10.22 new_compare113(x0, x1, True) 26.11/10.22 new_lt8(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Char) 26.11/10.22 new_esEs17(False, False) 26.11/10.22 new_primPlusNat0(Zero, Succ(x0)) 26.11/10.22 new_compare18(x0, x1, x2) 26.11/10.22 new_primEqInt(Pos(Succ(x0)), Neg(x1)) 26.11/10.22 new_primEqInt(Neg(Succ(x0)), Pos(x1)) 26.11/10.22 new_esEs27(x0, x1, ty_Double) 26.11/10.22 new_lt8(x0, x1, ty_Float) 26.11/10.22 new_esEs21(x0, x1, ty_Int) 26.11/10.22 new_compare0(:(x0, x1), [], x2) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Ordering) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_Ordering, x2) 26.11/10.22 new_lt20(x0, x1, ty_Int) 26.11/10.22 new_esEs27(x0, x1, ty_Char) 26.11/10.22 new_ltEs9(EQ, EQ) 26.11/10.22 new_primEqInt(Neg(Zero), Neg(Zero)) 26.11/10.22 new_lt8(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs22(x0, x1, ty_Int) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Int) 26.11/10.22 new_esEs25(x0, x1, ty_Bool) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_Float) 26.11/10.22 new_esEs19(x0, x1, ty_Int) 26.11/10.22 new_esEs20(x0, x1, ty_Int) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_Char, x2) 26.11/10.22 new_esEs12([], :(x0, x1), x2) 26.11/10.22 new_esEs19(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs7(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.11/10.22 new_esEs26(x0, x1, ty_Bool) 26.11/10.22 new_compare14(:%(x0, x1), :%(x2, x3), ty_Int) 26.11/10.22 new_esEs26(x0, x1, ty_@0) 26.11/10.22 new_lt20(x0, x1, ty_Double) 26.11/10.22 new_esEs21(x0, x1, ty_Double) 26.11/10.22 new_primCompAux00(x0, GT) 26.11/10.22 new_esEs26(x0, x1, ty_Double) 26.11/10.22 new_lt20(x0, x1, ty_Bool) 26.11/10.22 new_lt9(x0, x1, app(ty_[], x2)) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), app(ty_Ratio, x2)) 26.11/10.22 new_esEs25(x0, x1, ty_Int) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_Int, x2) 26.11/10.22 new_esEs27(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs21(x0, x1, ty_Bool) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.11/10.22 new_lt8(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_ltEs12(Left(x0), Right(x1), x2, x3) 26.11/10.22 new_ltEs12(Right(x0), Left(x1), x2, x3) 26.11/10.22 new_esEs25(x0, x1, ty_Char) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Double) 26.11/10.22 new_esEs18(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_compare114(x0, x1, True, x2, x3) 26.11/10.22 new_esEs20(x0, x1, ty_Bool) 26.11/10.22 new_primEqInt(Pos(Zero), Neg(Zero)) 26.11/10.22 new_primEqInt(Neg(Zero), Pos(Zero)) 26.11/10.22 new_esEs7(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_esEs18(x0, x1, ty_Ordering) 26.11/10.22 new_lt12(x0, x1) 26.11/10.22 new_lt20(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_esEs20(x0, x1, ty_Double) 26.11/10.22 new_compare113(x0, x1, False) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Int) 26.11/10.22 new_compare17(Char(x0), Char(x1)) 26.11/10.22 new_esEs26(x0, x1, app(ty_[], x2)) 26.11/10.22 new_lt9(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_ltEs19(x0, x1, ty_Ordering) 26.11/10.22 new_compare27(x0, x1, True, x2, x3, x4) 26.11/10.22 new_ltEs14(x0, x1) 26.11/10.22 new_lt9(x0, x1, ty_Integer) 26.11/10.22 new_esEs27(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_primEqNat0(Succ(x0), Zero) 26.11/10.22 new_esEs5(Left(x0), Right(x1), x2, x3) 26.11/10.22 new_esEs5(Right(x0), Left(x1), x2, x3) 26.11/10.22 new_esEs20(x0, x1, ty_Char) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_@0) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), app(ty_[], x2)) 26.11/10.22 new_compare6(x0, x1, ty_Float) 26.11/10.22 new_asAs(True, x0) 26.11/10.22 new_primCmpInt(Pos(Succ(x0)), Pos(x1)) 26.11/10.22 new_esEs19(x0, x1, ty_@0) 26.11/10.22 new_esEs24(x0, x1, app(ty_[], x2)) 26.11/10.22 new_primCompAux00(x0, LT) 26.11/10.22 new_ltEs7(x0, x1, ty_Ordering) 26.11/10.22 new_esEs11(Float(x0, x1), Float(x2, x3)) 26.11/10.22 new_esEs25(x0, x1, app(ty_[], x2)) 26.11/10.22 new_esEs18(x0, x1, ty_Integer) 26.11/10.22 new_compare26(x0, x1, False, x2, x3) 26.11/10.22 new_ltEs9(GT, GT) 26.11/10.22 new_esEs28(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs15(@0, @0) 26.11/10.22 new_esEs23(x0, x1, ty_Integer) 26.11/10.22 new_esEs27(x0, x1, ty_Bool) 26.11/10.22 new_esEs16(Char(x0), Char(x1)) 26.11/10.22 new_esEs18(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_compare13(x0, x1, x2, x3, x4) 26.11/10.22 new_esEs25(x0, x1, ty_Double) 26.11/10.22 new_esEs24(x0, x1, ty_Integer) 26.11/10.22 new_compare24(x0, x1, False) 26.11/10.22 new_compare0([], :(x0, x1), x2) 26.11/10.22 new_primMulNat0(Succ(x0), Zero) 26.11/10.22 new_lt10(x0, x1) 26.11/10.22 new_ltEs9(LT, EQ) 26.11/10.22 new_ltEs9(EQ, LT) 26.11/10.22 new_lt20(x0, x1, ty_Integer) 26.11/10.22 new_lt20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.11/10.22 new_esEs26(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Integer) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_@0) 26.11/10.22 new_lt13(x0, x1, x2, x3) 26.11/10.22 new_esEs24(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_compare115(x0, x1, True, x2, x3) 26.11/10.22 new_esEs20(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_ltEs4(True, True) 26.11/10.22 new_ltEs7(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_lt9(x0, x1, ty_Char) 26.11/10.22 new_compare12(x0, x1, x2, x3) 26.11/10.22 new_ltEs7(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_lt8(x0, x1, ty_@0) 26.11/10.22 new_lt9(x0, x1, ty_Bool) 26.11/10.22 new_ltEs19(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_@0) 26.11/10.22 new_esEs25(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_esEs5(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_Float) 26.11/10.22 new_esEs26(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_ltEs7(x0, x1, ty_Double) 26.11/10.22 new_lt11(x0, x1) 26.11/10.22 new_esEs8(GT, GT) 26.11/10.22 new_ltEs16(Nothing, Nothing, x0) 26.11/10.22 new_esEs26(x0, x1, ty_Integer) 26.11/10.22 new_esEs8(LT, EQ) 26.11/10.22 new_esEs8(EQ, LT) 26.11/10.22 new_lt8(x0, x1, ty_Integer) 26.11/10.22 new_compare111(x0, x1, True, x2, x3, x4) 26.11/10.22 new_primCmpInt(Neg(Zero), Neg(Zero)) 26.11/10.22 new_esEs24(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs18(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_esEs28(x0, x1, ty_Float) 26.11/10.22 new_lt20(x0, x1, ty_@0) 26.11/10.22 new_primEqInt(Pos(Succ(x0)), Pos(Zero)) 26.11/10.22 new_ltEs7(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_compare14(:%(x0, x1), :%(x2, x3), ty_Integer) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.11/10.22 new_lt9(x0, x1, ty_Int) 26.11/10.22 new_esEs20(x0, x1, ty_Integer) 26.11/10.22 new_lt20(x0, x1, app(ty_[], x2)) 26.11/10.22 new_esEs8(LT, LT) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_@0, x2) 26.11/10.22 new_primCmpInt(Pos(Zero), Neg(Zero)) 26.11/10.22 new_primCmpInt(Neg(Zero), Pos(Zero)) 26.11/10.22 new_esEs26(x0, x1, ty_Ordering) 26.11/10.22 new_ltEs19(x0, x1, ty_@0) 26.11/10.22 new_esEs21(x0, x1, app(ty_[], x2)) 26.11/10.22 new_esEs12(:(x0, x1), [], x2) 26.11/10.22 new_esEs20(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_compare6(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_lt15(x0, x1, x2, x3, x4) 26.11/10.22 new_ltEs10(x0, x1) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_Double, x2) 26.11/10.22 new_esEs27(x0, x1, app(ty_[], x2)) 26.11/10.22 new_pePe(True, x0) 26.11/10.22 new_ltEs9(LT, LT) 26.11/10.22 new_esEs24(x0, x1, ty_@0) 26.11/10.22 new_primPlusNat0(Succ(x0), Succ(x1)) 26.11/10.22 new_esEs7(Just(x0), Nothing, x1) 26.11/10.22 new_compare6(x0, x1, ty_Char) 26.11/10.22 new_esEs18(x0, x1, ty_Bool) 26.11/10.22 new_esEs26(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs21(x0, x1, ty_Float) 26.11/10.22 new_compare19(@0, @0) 26.11/10.22 new_primMulInt(Pos(x0), Neg(x1)) 26.11/10.22 new_primMulInt(Neg(x0), Pos(x1)) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_Double) 26.11/10.22 new_compare6(x0, x1, ty_Int) 26.11/10.22 new_ltEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_lt9(x0, x1, ty_Float) 26.11/10.22 new_lt14(x0, x1, x2, x3) 26.11/10.22 new_esEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_esEs20(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_esEs7(Nothing, Just(x0), x1) 26.11/10.22 new_esEs20(x0, x1, ty_Ordering) 26.11/10.22 new_compare6(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_esEs7(Nothing, Nothing, x0) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.11/10.22 new_ltEs19(x0, x1, ty_Double) 26.11/10.22 new_esEs18(x0, x1, ty_Char) 26.11/10.22 new_esEs5(Left(x0), Left(x1), app(ty_Maybe, x2), x3) 26.11/10.22 new_esEs27(x0, x1, ty_Float) 26.11/10.22 new_compare15(Float(x0, Pos(x1)), Float(x2, Neg(x3))) 26.11/10.22 new_compare15(Float(x0, Neg(x1)), Float(x2, Pos(x3))) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.11/10.22 new_compare8(x0, x1) 26.11/10.22 new_esEs21(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_lt4(x0, x1) 26.11/10.22 new_ltEs16(Nothing, Just(x0), x1) 26.11/10.22 new_lt16(x0, x1) 26.11/10.22 new_esEs7(Just(x0), Just(x1), app(ty_[], x2)) 26.11/10.22 new_esEs25(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_ltEs7(x0, x1, ty_Bool) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_primEqNat0(Zero, Succ(x0)) 26.11/10.22 new_compare6(x0, x1, ty_Bool) 26.11/10.22 new_lt8(x0, x1, ty_Ordering) 26.11/10.22 new_compare7(x0, x1) 26.11/10.22 new_esEs5(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.11/10.22 new_asAs(False, x0) 26.11/10.22 new_compare15(Float(x0, Pos(x1)), Float(x2, Pos(x3))) 26.11/10.22 new_esEs24(x0, x1, ty_Int) 26.11/10.22 new_compare9(x0, x1) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_Ordering) 26.11/10.22 new_primMulNat0(Zero, Zero) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.11/10.22 new_ltEs15(x0, x1) 26.11/10.22 new_primCmpInt(Neg(Zero), Neg(Succ(x0))) 26.11/10.22 new_ltEs7(x0, x1, ty_@0) 26.11/10.22 new_esEs24(x0, x1, ty_Ordering) 26.11/10.22 new_ltEs17(x0, x1) 26.11/10.22 new_esEs28(x0, x1, ty_Char) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Float) 26.11/10.22 new_primCmpInt(Pos(Zero), Neg(Succ(x0))) 26.11/10.22 new_primCmpInt(Neg(Zero), Pos(Succ(x0))) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_Char) 26.11/10.22 new_lt8(x0, x1, ty_Int) 26.11/10.22 new_esEs19(x0, x1, ty_Float) 26.11/10.22 new_primMulInt(Pos(x0), Pos(x1)) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_Int) 26.11/10.22 new_primCmpNat0(Zero, Succ(x0)) 26.11/10.22 new_esEs28(x0, x1, ty_Int) 26.11/10.22 new_primCmpInt(Pos(Zero), Pos(Succ(x0))) 26.11/10.22 new_esEs20(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs17(True, True) 26.11/10.22 new_esEs18(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_lt9(x0, x1, ty_Double) 26.11/10.22 new_esEs24(x0, x1, ty_Double) 26.11/10.22 new_esEs24(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_primMulNat0(Succ(x0), Succ(x1)) 26.11/10.22 new_esEs18(x0, x1, ty_Float) 26.11/10.22 new_compare16(Integer(x0), Integer(x1)) 26.11/10.22 new_esEs25(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_compare23(x0, x1, True) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_Int) 26.11/10.22 new_lt9(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_esEs9(x0, x1) 26.11/10.22 new_compare15(Float(x0, Neg(x1)), Float(x2, Neg(x3))) 26.11/10.22 new_ltEs19(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_esEs28(x0, x1, ty_@0) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_Float, x2) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_@0) 26.11/10.22 new_compare6(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs28(x0, x1, ty_Ordering) 26.11/10.22 new_lt20(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_primMulInt(Neg(x0), Neg(x1)) 26.11/10.22 new_esEs24(x0, x1, ty_Char) 26.11/10.22 new_sr0(x0, x1) 26.11/10.22 new_lt18(x0, x1, x2) 26.11/10.22 new_primEqInt(Pos(Succ(x0)), Pos(Succ(x1))) 26.11/10.22 new_esEs28(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_ltEs19(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_primPlusNat0(Zero, Zero) 26.11/10.22 new_esEs26(x0, x1, ty_Float) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, app(app(ty_Either, x3), x4)) 26.11/10.22 new_compare26(x0, x1, True, x2, x3) 26.11/10.22 new_ltEs16(Just(x0), Nothing, x1) 26.11/10.22 new_esEs25(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs28(x0, x1, ty_Bool) 26.11/10.22 new_lt5(x0, x1, x2) 26.11/10.22 new_not(True) 26.11/10.22 new_esEs26(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, app(ty_Ratio, x3)) 26.11/10.22 new_lt17(x0, x1) 26.11/10.22 new_compare0([], [], x0) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_Integer, x2) 26.11/10.22 new_pePe(False, x0) 26.11/10.22 new_esEs8(EQ, GT) 26.11/10.22 new_esEs8(GT, EQ) 26.11/10.22 new_ltEs5(x0, x1) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Float) 26.11/10.22 new_esEs10(:%(x0, x1), :%(x2, x3), x4) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_Double) 26.11/10.22 new_primEqInt(Neg(Succ(x0)), Neg(Zero)) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), app(app(ty_Either, x2), x3), x4) 26.11/10.22 new_esEs28(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_compare0(:(x0, x1), :(x2, x3), x4) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, app(app(app(ty_@3, x3), x4), x5)) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.11/10.22 new_compare112(x0, x1, True) 26.11/10.22 new_compare11(x0, x1, x2, x3) 26.11/10.22 new_esEs28(x0, x1, ty_Double) 26.11/10.22 new_lt9(x0, x1, ty_Ordering) 26.11/10.22 new_ltEs4(False, True) 26.11/10.22 new_ltEs4(True, False) 26.11/10.22 new_esEs20(x0, x1, app(ty_[], x2)) 26.11/10.22 new_esEs27(x0, x1, ty_Integer) 26.11/10.22 new_esEs17(False, True) 26.11/10.22 new_esEs17(True, False) 26.11/10.22 new_ltEs7(x0, x1, ty_Integer) 26.11/10.22 new_primCmpNat0(Succ(x0), Succ(x1)) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_Ordering, x2) 26.11/10.22 new_primCompAux00(x0, EQ) 26.11/10.22 new_compare6(x0, x1, ty_Integer) 26.11/10.22 new_lt8(x0, x1, ty_Char) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_Bool, x2) 26.11/10.22 new_lt8(x0, x1, app(ty_[], x2)) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), app(ty_[], x2), x3) 26.11/10.22 new_esEs7(Just(x0), Just(x1), app(app(ty_Either, x2), x3)) 26.11/10.22 new_lt8(x0, x1, ty_Double) 26.11/10.22 new_esEs5(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.11/10.22 new_lt9(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_compare6(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_lt8(x0, x1, ty_Bool) 26.11/10.22 new_compare6(x0, x1, ty_Ordering) 26.11/10.22 new_esEs25(x0, x1, ty_Float) 26.11/10.22 new_esEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_compare23(x0, x1, False) 26.11/10.22 new_esEs27(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_esEs21(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_Bool) 26.11/10.22 new_esEs12(:(x0, x1), :(x2, x3), x4) 26.11/10.22 new_primCmpInt(Pos(Zero), Pos(Zero)) 26.11/10.22 new_ltEs19(x0, x1, ty_Integer) 26.11/10.22 new_primEqInt(Pos(Zero), Pos(Succ(x0))) 26.11/10.22 new_ltEs7(x0, x1, ty_Float) 26.11/10.22 new_compare6(x0, x1, ty_Double) 26.11/10.22 new_lt20(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_esEs5(Left(x0), Left(x1), ty_@0, x2) 26.11/10.22 new_compare28(x0, x1, True, x2, x3) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_Char, x2) 26.11/10.22 new_esEs7(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, app(ty_[], x3)) 26.11/10.22 new_esEs24(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_ltEs7(x0, x1, app(ty_[], x2)) 26.11/10.22 new_ltEs7(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, app(ty_Maybe, x3)) 26.11/10.22 new_esEs12([], [], x0) 26.11/10.22 new_primCmpNat0(Succ(x0), Zero) 26.11/10.22 new_primCmpInt(Neg(Succ(x0)), Pos(x1)) 26.11/10.22 new_primCmpInt(Pos(Succ(x0)), Neg(x1)) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Integer) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, ty_Bool) 26.11/10.22 new_esEs19(x0, x1, ty_Bool) 26.11/10.22 new_primEqInt(Pos(Zero), Neg(Succ(x0))) 26.11/10.22 new_primEqInt(Neg(Zero), Pos(Succ(x0))) 26.11/10.22 new_lt9(x0, x1, ty_@0) 26.11/10.22 new_esEs27(x0, x1, ty_@0) 26.11/10.22 new_esEs26(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_esEs8(LT, GT) 26.11/10.22 new_esEs8(GT, LT) 26.11/10.22 new_esEs24(x0, x1, ty_Bool) 26.11/10.22 new_esEs14(Integer(x0), Integer(x1)) 26.11/10.22 new_esEs21(x0, x1, ty_Integer) 26.11/10.22 new_esEs20(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_primCompAux0(x0, x1, x2, x3) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_Integer) 26.11/10.22 new_ltEs7(x0, x1, ty_Int) 26.11/10.22 new_sr(Integer(x0), Integer(x1)) 26.11/10.22 new_ltEs4(False, False) 26.11/10.22 new_esEs27(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_esEs20(x0, x1, ty_Float) 26.11/10.22 new_ltEs13(x0, x1, x2) 26.11/10.22 new_compare114(x0, x1, False, x2, x3) 26.11/10.22 new_esEs28(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_esEs28(x0, x1, ty_Integer) 26.11/10.22 new_lt9(x0, x1, app(ty_Ratio, x2)) 26.11/10.22 new_primEqInt(Neg(Zero), Neg(Succ(x0))) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_Integer) 26.11/10.22 new_compare6(x0, x1, app(ty_[], x2)) 26.11/10.22 new_lt8(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_lt8(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_ltEs11(@2(x0, x1), @2(x2, x3), x4, x5) 26.11/10.22 new_ltEs7(x0, x1, ty_Char) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Bool) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), app(app(ty_@2, x2), x3), x4) 26.11/10.22 new_primEqNat0(Succ(x0), Succ(x1)) 26.11/10.22 new_compare25(x0, x1, False, x2) 26.11/10.22 new_ltEs9(GT, EQ) 26.11/10.22 new_ltEs9(EQ, GT) 26.11/10.22 new_primEqNat0(Zero, Zero) 26.11/10.22 new_esEs25(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs19(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_esEs25(x0, x1, ty_Integer) 26.11/10.22 new_esEs7(Just(x0), Just(x1), ty_Ordering) 26.11/10.22 new_not(False) 26.11/10.22 new_lt19(x0, x1) 26.11/10.22 new_esEs21(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), app(app(ty_@2, x2), x3)) 26.11/10.22 new_esEs21(x0, x1, ty_@0) 26.11/10.22 new_esEs19(x0, x1, ty_Char) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_Float, x2) 26.11/10.22 new_esEs5(Left(x0), Left(x1), app(ty_[], x2), x3) 26.11/10.22 new_esEs18(x0, x1, ty_@0) 26.11/10.22 new_esEs22(x0, x1, ty_Integer) 26.11/10.22 new_ltEs7(x0, x1, app(app(app(ty_@3, x2), x3), x4)) 26.11/10.22 new_lt20(x0, x1, ty_Float) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_Bool, x2) 26.11/10.22 new_compare110(x0, x1, False, x2) 26.11/10.22 new_primEqInt(Neg(Succ(x0)), Neg(Succ(x1))) 26.11/10.22 new_ltEs19(x0, x1, ty_Bool) 26.11/10.22 new_esEs13(Double(x0, x1), Double(x2, x3)) 26.11/10.22 new_ltEs19(x0, x1, ty_Float) 26.11/10.22 new_esEs19(x0, x1, ty_Integer) 26.11/10.22 new_compare115(x0, x1, False, x2, x3) 26.11/10.22 new_esEs6(@3(x0, x1, x2), @3(x3, x4, x5), x6, x7, x8) 26.11/10.22 new_primMulNat0(Zero, Succ(x0)) 26.11/10.22 new_ltEs19(x0, x1, app(ty_[], x2)) 26.11/10.22 new_esEs24(x0, x1, ty_Float) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_Bool) 26.11/10.22 new_esEs18(x0, x1, app(ty_[], x2)) 26.11/10.22 new_esEs25(x0, x1, ty_Ordering) 26.11/10.22 new_lt7(x0, x1) 26.11/10.22 new_esEs21(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_esEs19(x0, x1, app(ty_[], x2)) 26.11/10.22 new_esEs5(Right(x0), Right(x1), x2, ty_Char) 26.11/10.22 new_compare112(x0, x1, False) 26.11/10.22 new_esEs28(x0, x1, app(ty_[], x2)) 26.11/10.22 new_lt9(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_ltEs16(Just(x0), Just(x1), ty_Ordering) 26.11/10.22 new_primPlusNat1(Succ(x0), x1) 26.11/10.22 new_esEs18(x0, x1, app(app(ty_Either, x2), x3)) 26.11/10.22 new_primPlusNat1(Zero, x0) 26.11/10.22 new_ltEs12(Right(x0), Right(x1), x2, app(app(ty_@2, x3), x4)) 26.11/10.22 new_compare111(x0, x1, False, x2, x3, x4) 26.11/10.22 new_esEs27(x0, x1, app(ty_Maybe, x2)) 26.11/10.22 new_ltEs19(x0, x1, ty_Char) 26.11/10.22 new_ltEs19(x0, x1, ty_Int) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), app(app(app(ty_@3, x2), x3), x4), x5) 26.11/10.22 new_esEs18(x0, x1, ty_Double) 26.11/10.22 new_ltEs19(x0, x1, app(app(ty_@2, x2), x3)) 26.11/10.22 new_compare6(x0, x1, ty_@0) 26.11/10.22 new_esEs4(@2(x0, x1), @2(x2, x3), x4, x5) 26.11/10.22 new_primCmpNat0(Zero, Zero) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), app(ty_Ratio, x2), x3) 26.11/10.22 new_ltEs9(GT, LT) 26.11/10.22 new_ltEs9(LT, GT) 26.11/10.22 new_primCmpInt(Neg(Succ(x0)), Neg(x1)) 26.11/10.22 new_ltEs12(Left(x0), Left(x1), ty_Int, x2) 26.11/10.22 new_esEs7(Just(x0), Just(x1), app(ty_Maybe, x2)) 26.11/10.22 26.11/10.22 We have to consider all minimal (P,Q,R)-chains. 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (28) QDPSizeChangeProof (EQUIVALENT) 26.11/10.22 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.11/10.22 26.11/10.22 From the DPs we obtained the following set of size-change graphs: 26.11/10.22 *new_compare22(vxw110, vxw100, False, dd) -> new_ltEs2(vxw110, vxw100, dd) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(app(ty_@3, bce), bcf), bcg)) -> new_ltEs1(vxw110, vxw100, bce, bcf, bcg) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_Either, bcc), bcd)) -> new_ltEs0(vxw110, vxw100, bcc, bcd) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare5(vxw110, vxw100, dd) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, dd), dd) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs2(Just(vxw110), Just(vxw100), app(app(ty_@2, bca), bcb)) -> new_ltEs(vxw110, vxw100, bca, bcb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, bdb), bdb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_primCompAux(vxw110, vxw100, new_compare0(vxw111, vxw101, bdb), bdb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs3(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs2(Just(vxw110), Just(vxw100), app(ty_Maybe, bch)) -> new_ltEs2(vxw110, vxw100, bch) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs2(Just(vxw110), Just(vxw100), app(ty_[], bda)) -> new_ltEs3(vxw110, vxw100, bda) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(app(app(ty_@3, ha), hb), hc)) -> new_ltEs1(vxw112, vxw102, ha, hb, hc) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4, 5 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(app(ty_Either, gg), gh)) -> new_ltEs0(vxw112, vxw102, gg, gh) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(app(ty_@2, ge), gf)) -> new_ltEs(vxw112, vxw102, ge, gf) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3, 5 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(ty_Maybe, hd)) -> new_ltEs2(vxw112, vxw102, hd) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(ty_Maybe, ca)) -> new_ltEs2(vxw111, vxw101, ca) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare4(vxw110, vxw100, da, db, dc) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.11/10.22 26.11/10.22 26.11/10.22 *new_lt0(vxw110, vxw100, cf, cg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_lt1(vxw110, vxw100, da, db, dc) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5, 5 >= 6 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, gd, app(ty_[], he)) -> new_ltEs3(vxw112, vxw102, he) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 5 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare(:(vxw110, vxw111), :(vxw100, vxw101), bdb) -> new_compare(vxw111, vxw101, bdb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 >= 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(ty_[], cb)) -> new_ltEs3(vxw111, vxw101, cb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_lt3(vxw110, vxw100, de) -> new_compare(vxw110, vxw100, de) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(app(ty_@3, da), db), dc), ce) -> new_compare21(vxw110, vxw100, new_esEs6(vxw110, vxw100, da, db, dc), da, db, dc) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5, 3 > 6 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare2(vxw110, vxw100, False, cc, cd) -> new_ltEs(vxw110, vxw100, cc, cd) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(app(ty_@2, bb), bc)) -> new_ltEs(vxw111, vxw101, bb, bc) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_lt(vxw110, vxw100, cc, cd) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(app(app(ty_@3, bf), bg), bh)) -> new_ltEs1(vxw111, vxw101, bf, bg, bh) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare21(vxw110, vxw100, False, da, db, dc) -> new_ltEs1(vxw110, vxw100, da, db, dc) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4, 6 >= 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), ba, app(app(ty_Either, bd), be)) -> new_ltEs0(vxw111, vxw101, bd, be) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare20(vxw110, vxw100, False, cf, cg) -> new_ltEs0(vxw110, vxw100, cf, cg) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 >= 3, 5 >= 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_primCompAux(vxw110, vxw100, vxw43, app(ty_[], bec)) -> new_compare(vxw110, vxw100, bec) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_[], de), ce) -> new_compare(vxw110, vxw100, de) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_primCompAux(vxw110, vxw100, vxw43, app(app(ty_Either, bde), bdf)) -> new_compare3(vxw110, vxw100, bde, bdf) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_lt2(vxw110, vxw100, dd) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, dd), dd) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_primCompAux(vxw110, vxw100, vxw43, app(app(app(ty_@3, bdg), bdh), bea)) -> new_compare4(vxw110, vxw100, bdg, bdh, bea) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4, 4 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(ty_Maybe, dd), ce) -> new_compare22(vxw110, vxw100, new_esEs7(vxw110, vxw100, dd), dd) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_@2, cc), cd), ce) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs(@2(vxw110, vxw111), @2(vxw100, vxw101), app(app(ty_Either, cf), cg), ce) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 4, 3 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare1(vxw110, vxw100, cc, cd) -> new_compare2(vxw110, vxw100, new_esEs4(vxw110, vxw100, cc, cd), cc, cd) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_compare3(vxw110, vxw100, cf, cg) -> new_compare20(vxw110, vxw100, new_esEs5(vxw110, vxw100, cf, cg), cf, cg) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 3 >= 4, 4 >= 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_primCompAux(vxw110, vxw100, vxw43, app(ty_Maybe, beb)) -> new_compare5(vxw110, vxw100, beb) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_primCompAux(vxw110, vxw100, vxw43, app(app(ty_@2, bdc), bdd)) -> new_compare1(vxw110, vxw100, bdc, bdd) 26.11/10.22 The graph contains the following edges 1 >= 1, 2 >= 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Right(vxw110), Right(vxw100), eh, app(app(app(ty_@3, ff), fg), fh)) -> new_ltEs1(vxw110, vxw100, ff, fg, fh) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Left(vxw110), Left(vxw100), app(app(app(ty_@3, ec), ed), ee), dh) -> new_ltEs1(vxw110, vxw100, ec, ed, ee) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Right(vxw110), Right(vxw100), eh, app(app(ty_Either, fc), fd)) -> new_ltEs0(vxw110, vxw100, fc, fd) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_Either, ea), eb), dh) -> new_ltEs0(vxw110, vxw100, ea, eb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Left(vxw110), Left(vxw100), app(app(ty_@2, df), dg), dh) -> new_ltEs(vxw110, vxw100, df, dg) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Right(vxw110), Right(vxw100), eh, app(app(ty_@2, fa), fb)) -> new_ltEs(vxw110, vxw100, fa, fb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Left(vxw110), Left(vxw100), app(ty_Maybe, ef), dh) -> new_ltEs2(vxw110, vxw100, ef) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Right(vxw110), Right(vxw100), eh, app(ty_Maybe, ga)) -> new_ltEs2(vxw110, vxw100, ga) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Right(vxw110), Right(vxw100), eh, app(ty_[], gb)) -> new_ltEs3(vxw110, vxw100, gb) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs0(Left(vxw110), Left(vxw100), app(ty_[], eg), dh) -> new_ltEs3(vxw110, vxw100, eg) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(ty_Maybe, baf), hh) -> new_lt2(vxw111, vxw101, baf) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_Maybe, bbg), gd, hh) -> new_lt2(vxw110, vxw100, bbg) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_@2, bah), bba), gd, hh) -> new_lt(vxw110, vxw100, bah, bba) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(app(ty_@2, hf), hg), hh) -> new_lt(vxw111, vxw101, hf, hg) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(ty_[], bbh), gd, hh) -> new_lt3(vxw110, vxw100, bbh) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(ty_[], bag), hh) -> new_lt3(vxw111, vxw101, bag) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(app(app(ty_@3, bac), bad), bae), hh) -> new_lt1(vxw111, vxw101, bac, bad, bae) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4, 4 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(app(ty_@3, bbd), bbe), bbf), gd, hh) -> new_lt1(vxw110, vxw100, bbd, bbe, bbf) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4, 3 > 5 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), app(app(ty_Either, bbb), bbc), gd, hh) -> new_lt0(vxw110, vxw100, bbb, bbc) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 3 > 3, 3 > 4 26.11/10.22 26.11/10.22 26.11/10.22 *new_ltEs1(@3(vxw110, vxw111, vxw112), @3(vxw100, vxw101, vxw102), gc, app(app(ty_Either, baa), bab), hh) -> new_lt0(vxw111, vxw101, baa, bab) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2, 4 > 3, 4 > 4 26.11/10.22 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (29) 26.11/10.22 YES 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (30) 26.11/10.22 Obligation: 26.11/10.22 Q DP problem: 26.11/10.22 The TRS P consists of the following rules: 26.11/10.22 26.11/10.22 new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 26.11/10.22 26.11/10.22 R is empty. 26.11/10.22 Q is empty. 26.11/10.22 We have to consider all minimal (P,Q,R)-chains. 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (31) QDPSizeChangeProof (EQUIVALENT) 26.11/10.22 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.11/10.22 26.11/10.22 From the DPs we obtained the following set of size-change graphs: 26.11/10.22 *new_primEqNat(Succ(vxw3000), Succ(vxw40000)) -> new_primEqNat(vxw3000, vxw40000) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2 26.11/10.22 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (32) 26.11/10.22 YES 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (33) 26.11/10.22 Obligation: 26.11/10.22 Q DP problem: 26.11/10.22 The TRS P consists of the following rules: 26.11/10.22 26.11/10.22 new_primPlusNat(Succ(vxw4400), Succ(vxw4000000)) -> new_primPlusNat(vxw4400, vxw4000000) 26.11/10.22 26.11/10.22 R is empty. 26.11/10.22 Q is empty. 26.11/10.22 We have to consider all minimal (P,Q,R)-chains. 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (34) QDPSizeChangeProof (EQUIVALENT) 26.11/10.22 By using the subterm criterion [SUBTERM_CRITERION] together with the size-change analysis [AAECC05] we have proven that there are no infinite chains for this DP problem. 26.11/10.22 26.11/10.22 From the DPs we obtained the following set of size-change graphs: 26.11/10.22 *new_primPlusNat(Succ(vxw4400), Succ(vxw4000000)) -> new_primPlusNat(vxw4400, vxw4000000) 26.11/10.22 The graph contains the following edges 1 > 1, 2 > 2 26.11/10.22 26.11/10.22 26.11/10.22 ---------------------------------------- 26.11/10.22 26.11/10.22 (35) 26.11/10.22 YES 26.35/10.26 EOF