8.58/3.70 YES 10.45/4.22 proof of /export/starexec/sandbox/benchmark/theBenchmark.hs 10.45/4.22 # AProVE Commit ID: 48fb2092695e11cc9f56e44b17a92a5f88ffb256 marcel 20180622 unpublished dirty 10.45/4.22 10.45/4.22 10.45/4.22 H-Termination with start terms of the given HASKELL could be proven: 10.45/4.22 10.45/4.22 (0) HASKELL 10.45/4.22 (1) BR [EQUIVALENT, 0 ms] 10.45/4.22 (2) HASKELL 10.45/4.22 (3) COR [EQUIVALENT, 0 ms] 10.45/4.22 (4) HASKELL 10.45/4.22 (5) Narrow [SOUND, 0 ms] 10.45/4.22 (6) AND 10.45/4.22 (7) QDP 10.45/4.22 (8) QDPSizeChangeProof [EQUIVALENT, 0 ms] 10.45/4.22 (9) YES 10.45/4.22 (10) QDP 10.45/4.22 (11) QDPSizeChangeProof [EQUIVALENT, 0 ms] 10.45/4.22 (12) YES 10.45/4.22 (13) QDP 10.45/4.22 (14) QDPSizeChangeProof [EQUIVALENT, 0 ms] 10.45/4.22 (15) YES 10.45/4.22 10.45/4.22 10.45/4.22 ---------------------------------------- 10.45/4.22 10.45/4.22 (0) 10.45/4.22 Obligation: 10.45/4.22 mainModule Main 10.45/4.22 module Main where { 10.45/4.22 import qualified Prelude; 10.45/4.22 data MyBool = MyTrue | MyFalse ; 10.45/4.22 10.45/4.22 data MyInt = Pos Main.Nat | Neg Main.Nat ; 10.45/4.22 10.45/4.22 data Main.Nat = Succ Main.Nat | Zero ; 10.45/4.22 10.45/4.22 data Ordering = LT | EQ | GT ; 10.45/4.22 10.45/4.22 data Ratio a = CnPc a a ; 10.45/4.22 10.45/4.22 compareMyInt :: MyInt -> MyInt -> Ordering; 10.45/4.22 compareMyInt = primCmpInt; 10.45/4.22 10.45/4.22 compareRatio :: Ratio MyInt -> Ratio MyInt -> Ordering; 10.45/4.22 compareRatio (CnPc x y) (CnPc x' y') = compareMyInt (srMyInt x y') (srMyInt x' y); 10.45/4.22 10.45/4.22 esEsOrdering :: Ordering -> Ordering -> MyBool; 10.45/4.22 esEsOrdering LT LT = MyTrue; 10.45/4.22 esEsOrdering LT EQ = MyFalse; 10.45/4.22 esEsOrdering LT GT = MyFalse; 10.45/4.22 esEsOrdering EQ LT = MyFalse; 10.45/4.22 esEsOrdering EQ EQ = MyTrue; 10.45/4.22 esEsOrdering EQ GT = MyFalse; 10.45/4.22 esEsOrdering GT LT = MyFalse; 10.45/4.22 esEsOrdering GT EQ = MyFalse; 10.45/4.22 esEsOrdering GT GT = MyTrue; 10.45/4.22 10.45/4.22 fsEsOrdering :: Ordering -> Ordering -> MyBool; 10.45/4.22 fsEsOrdering x y = not (esEsOrdering x y); 10.45/4.22 10.45/4.22 ltEsRatio :: Ratio MyInt -> Ratio MyInt -> MyBool; 10.45/4.22 ltEsRatio x y = fsEsOrdering (compareRatio x y) GT; 10.45/4.22 10.45/4.22 not :: MyBool -> MyBool; 10.45/4.22 not MyTrue = MyFalse; 10.45/4.22 not MyFalse = MyTrue; 10.45/4.22 10.45/4.22 primCmpInt :: MyInt -> MyInt -> Ordering; 10.45/4.22 primCmpInt (Main.Pos Main.Zero) (Main.Pos Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Pos Main.Zero) (Main.Neg Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Neg Main.Zero) (Main.Pos Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Neg Main.Zero) (Main.Neg Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Pos x) (Main.Pos y) = primCmpNat x y; 10.45/4.22 primCmpInt (Main.Pos x) (Main.Neg y) = GT; 10.45/4.22 primCmpInt (Main.Neg x) (Main.Pos y) = LT; 10.45/4.22 primCmpInt (Main.Neg x) (Main.Neg y) = primCmpNat y x; 10.45/4.22 10.45/4.22 primCmpNat :: Main.Nat -> Main.Nat -> Ordering; 10.45/4.22 primCmpNat Main.Zero Main.Zero = EQ; 10.45/4.22 primCmpNat Main.Zero (Main.Succ y) = LT; 10.45/4.22 primCmpNat (Main.Succ x) Main.Zero = GT; 10.45/4.22 primCmpNat (Main.Succ x) (Main.Succ y) = primCmpNat x y; 10.45/4.22 10.45/4.22 primMulInt :: MyInt -> MyInt -> MyInt; 10.45/4.22 primMulInt (Main.Pos x) (Main.Pos y) = Main.Pos (primMulNat x y); 10.45/4.22 primMulInt (Main.Pos x) (Main.Neg y) = Main.Neg (primMulNat x y); 10.45/4.22 primMulInt (Main.Neg x) (Main.Pos y) = Main.Neg (primMulNat x y); 10.45/4.22 primMulInt (Main.Neg x) (Main.Neg y) = Main.Pos (primMulNat x y); 10.45/4.22 10.45/4.22 primMulNat :: Main.Nat -> Main.Nat -> Main.Nat; 10.45/4.22 primMulNat Main.Zero Main.Zero = Main.Zero; 10.45/4.22 primMulNat Main.Zero (Main.Succ y) = Main.Zero; 10.45/4.22 primMulNat (Main.Succ x) Main.Zero = Main.Zero; 10.45/4.22 primMulNat (Main.Succ x) (Main.Succ y) = primPlusNat (primMulNat x (Main.Succ y)) (Main.Succ y); 10.45/4.22 10.45/4.22 primPlusNat :: Main.Nat -> Main.Nat -> Main.Nat; 10.45/4.22 primPlusNat Main.Zero Main.Zero = Main.Zero; 10.45/4.22 primPlusNat Main.Zero (Main.Succ y) = Main.Succ y; 10.45/4.22 primPlusNat (Main.Succ x) Main.Zero = Main.Succ x; 10.45/4.22 primPlusNat (Main.Succ x) (Main.Succ y) = Main.Succ (Main.Succ (primPlusNat x y)); 10.45/4.22 10.45/4.22 srMyInt :: MyInt -> MyInt -> MyInt; 10.45/4.22 srMyInt = primMulInt; 10.45/4.22 10.45/4.22 } 10.45/4.22 10.45/4.22 ---------------------------------------- 10.45/4.22 10.45/4.22 (1) BR (EQUIVALENT) 10.45/4.22 Replaced joker patterns by fresh variables and removed binding patterns. 10.45/4.22 ---------------------------------------- 10.45/4.22 10.45/4.22 (2) 10.45/4.22 Obligation: 10.45/4.22 mainModule Main 10.45/4.22 module Main where { 10.45/4.22 import qualified Prelude; 10.45/4.22 data MyBool = MyTrue | MyFalse ; 10.45/4.22 10.45/4.22 data MyInt = Pos Main.Nat | Neg Main.Nat ; 10.45/4.22 10.45/4.22 data Main.Nat = Succ Main.Nat | Zero ; 10.45/4.22 10.45/4.22 data Ordering = LT | EQ | GT ; 10.45/4.22 10.45/4.22 data Ratio a = CnPc a a ; 10.45/4.22 10.45/4.22 compareMyInt :: MyInt -> MyInt -> Ordering; 10.45/4.22 compareMyInt = primCmpInt; 10.45/4.22 10.45/4.22 compareRatio :: Ratio MyInt -> Ratio MyInt -> Ordering; 10.45/4.22 compareRatio (CnPc x y) (CnPc x' y') = compareMyInt (srMyInt x y') (srMyInt x' y); 10.45/4.22 10.45/4.22 esEsOrdering :: Ordering -> Ordering -> MyBool; 10.45/4.22 esEsOrdering LT LT = MyTrue; 10.45/4.22 esEsOrdering LT EQ = MyFalse; 10.45/4.22 esEsOrdering LT GT = MyFalse; 10.45/4.22 esEsOrdering EQ LT = MyFalse; 10.45/4.22 esEsOrdering EQ EQ = MyTrue; 10.45/4.22 esEsOrdering EQ GT = MyFalse; 10.45/4.22 esEsOrdering GT LT = MyFalse; 10.45/4.22 esEsOrdering GT EQ = MyFalse; 10.45/4.22 esEsOrdering GT GT = MyTrue; 10.45/4.22 10.45/4.22 fsEsOrdering :: Ordering -> Ordering -> MyBool; 10.45/4.22 fsEsOrdering x y = not (esEsOrdering x y); 10.45/4.22 10.45/4.22 ltEsRatio :: Ratio MyInt -> Ratio MyInt -> MyBool; 10.45/4.22 ltEsRatio x y = fsEsOrdering (compareRatio x y) GT; 10.45/4.22 10.45/4.22 not :: MyBool -> MyBool; 10.45/4.22 not MyTrue = MyFalse; 10.45/4.22 not MyFalse = MyTrue; 10.45/4.22 10.45/4.22 primCmpInt :: MyInt -> MyInt -> Ordering; 10.45/4.22 primCmpInt (Main.Pos Main.Zero) (Main.Pos Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Pos Main.Zero) (Main.Neg Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Neg Main.Zero) (Main.Pos Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Neg Main.Zero) (Main.Neg Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Pos x) (Main.Pos y) = primCmpNat x y; 10.45/4.22 primCmpInt (Main.Pos x) (Main.Neg y) = GT; 10.45/4.22 primCmpInt (Main.Neg x) (Main.Pos y) = LT; 10.45/4.22 primCmpInt (Main.Neg x) (Main.Neg y) = primCmpNat y x; 10.45/4.22 10.45/4.22 primCmpNat :: Main.Nat -> Main.Nat -> Ordering; 10.45/4.22 primCmpNat Main.Zero Main.Zero = EQ; 10.45/4.22 primCmpNat Main.Zero (Main.Succ y) = LT; 10.45/4.22 primCmpNat (Main.Succ x) Main.Zero = GT; 10.45/4.22 primCmpNat (Main.Succ x) (Main.Succ y) = primCmpNat x y; 10.45/4.22 10.45/4.22 primMulInt :: MyInt -> MyInt -> MyInt; 10.45/4.22 primMulInt (Main.Pos x) (Main.Pos y) = Main.Pos (primMulNat x y); 10.45/4.22 primMulInt (Main.Pos x) (Main.Neg y) = Main.Neg (primMulNat x y); 10.45/4.22 primMulInt (Main.Neg x) (Main.Pos y) = Main.Neg (primMulNat x y); 10.45/4.22 primMulInt (Main.Neg x) (Main.Neg y) = Main.Pos (primMulNat x y); 10.45/4.22 10.45/4.22 primMulNat :: Main.Nat -> Main.Nat -> Main.Nat; 10.45/4.22 primMulNat Main.Zero Main.Zero = Main.Zero; 10.45/4.22 primMulNat Main.Zero (Main.Succ y) = Main.Zero; 10.45/4.22 primMulNat (Main.Succ x) Main.Zero = Main.Zero; 10.45/4.22 primMulNat (Main.Succ x) (Main.Succ y) = primPlusNat (primMulNat x (Main.Succ y)) (Main.Succ y); 10.45/4.22 10.45/4.22 primPlusNat :: Main.Nat -> Main.Nat -> Main.Nat; 10.45/4.22 primPlusNat Main.Zero Main.Zero = Main.Zero; 10.45/4.22 primPlusNat Main.Zero (Main.Succ y) = Main.Succ y; 10.45/4.22 primPlusNat (Main.Succ x) Main.Zero = Main.Succ x; 10.45/4.22 primPlusNat (Main.Succ x) (Main.Succ y) = Main.Succ (Main.Succ (primPlusNat x y)); 10.45/4.22 10.45/4.22 srMyInt :: MyInt -> MyInt -> MyInt; 10.45/4.22 srMyInt = primMulInt; 10.45/4.22 10.45/4.22 } 10.45/4.22 10.45/4.22 ---------------------------------------- 10.45/4.22 10.45/4.22 (3) COR (EQUIVALENT) 10.45/4.22 Cond Reductions: 10.45/4.22 The following Function with conditions 10.45/4.22 "undefined |Falseundefined; 10.45/4.22 " 10.45/4.22 is transformed to 10.45/4.22 "undefined = undefined1; 10.45/4.22 " 10.45/4.22 "undefined0 True = undefined; 10.45/4.22 " 10.45/4.22 "undefined1 = undefined0 False; 10.45/4.22 " 10.45/4.22 10.45/4.22 ---------------------------------------- 10.45/4.22 10.45/4.22 (4) 10.45/4.22 Obligation: 10.45/4.22 mainModule Main 10.45/4.22 module Main where { 10.45/4.22 import qualified Prelude; 10.45/4.22 data MyBool = MyTrue | MyFalse ; 10.45/4.22 10.45/4.22 data MyInt = Pos Main.Nat | Neg Main.Nat ; 10.45/4.22 10.45/4.22 data Main.Nat = Succ Main.Nat | Zero ; 10.45/4.22 10.45/4.22 data Ordering = LT | EQ | GT ; 10.45/4.22 10.45/4.22 data Ratio a = CnPc a a ; 10.45/4.22 10.45/4.22 compareMyInt :: MyInt -> MyInt -> Ordering; 10.45/4.22 compareMyInt = primCmpInt; 10.45/4.22 10.45/4.22 compareRatio :: Ratio MyInt -> Ratio MyInt -> Ordering; 10.45/4.22 compareRatio (CnPc x y) (CnPc x' y') = compareMyInt (srMyInt x y') (srMyInt x' y); 10.45/4.22 10.45/4.22 esEsOrdering :: Ordering -> Ordering -> MyBool; 10.45/4.22 esEsOrdering LT LT = MyTrue; 10.45/4.22 esEsOrdering LT EQ = MyFalse; 10.45/4.22 esEsOrdering LT GT = MyFalse; 10.45/4.22 esEsOrdering EQ LT = MyFalse; 10.45/4.22 esEsOrdering EQ EQ = MyTrue; 10.45/4.22 esEsOrdering EQ GT = MyFalse; 10.45/4.22 esEsOrdering GT LT = MyFalse; 10.45/4.22 esEsOrdering GT EQ = MyFalse; 10.45/4.22 esEsOrdering GT GT = MyTrue; 10.45/4.22 10.45/4.22 fsEsOrdering :: Ordering -> Ordering -> MyBool; 10.45/4.22 fsEsOrdering x y = not (esEsOrdering x y); 10.45/4.22 10.45/4.22 ltEsRatio :: Ratio MyInt -> Ratio MyInt -> MyBool; 10.45/4.22 ltEsRatio x y = fsEsOrdering (compareRatio x y) GT; 10.45/4.22 10.45/4.22 not :: MyBool -> MyBool; 10.45/4.22 not MyTrue = MyFalse; 10.45/4.22 not MyFalse = MyTrue; 10.45/4.22 10.45/4.22 primCmpInt :: MyInt -> MyInt -> Ordering; 10.45/4.22 primCmpInt (Main.Pos Main.Zero) (Main.Pos Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Pos Main.Zero) (Main.Neg Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Neg Main.Zero) (Main.Pos Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Neg Main.Zero) (Main.Neg Main.Zero) = EQ; 10.45/4.22 primCmpInt (Main.Pos x) (Main.Pos y) = primCmpNat x y; 10.45/4.22 primCmpInt (Main.Pos x) (Main.Neg y) = GT; 10.45/4.22 primCmpInt (Main.Neg x) (Main.Pos y) = LT; 10.45/4.22 primCmpInt (Main.Neg x) (Main.Neg y) = primCmpNat y x; 10.45/4.22 10.45/4.22 primCmpNat :: Main.Nat -> Main.Nat -> Ordering; 10.45/4.22 primCmpNat Main.Zero Main.Zero = EQ; 10.45/4.22 primCmpNat Main.Zero (Main.Succ y) = LT; 10.45/4.22 primCmpNat (Main.Succ x) Main.Zero = GT; 10.45/4.22 primCmpNat (Main.Succ x) (Main.Succ y) = primCmpNat x y; 10.45/4.22 10.45/4.22 primMulInt :: MyInt -> MyInt -> MyInt; 10.45/4.22 primMulInt (Main.Pos x) (Main.Pos y) = Main.Pos (primMulNat x y); 10.45/4.22 primMulInt (Main.Pos x) (Main.Neg y) = Main.Neg (primMulNat x y); 10.45/4.22 primMulInt (Main.Neg x) (Main.Pos y) = Main.Neg (primMulNat x y); 10.45/4.22 primMulInt (Main.Neg x) (Main.Neg y) = Main.Pos (primMulNat x y); 10.45/4.22 10.45/4.22 primMulNat :: Main.Nat -> Main.Nat -> Main.Nat; 10.45/4.22 primMulNat Main.Zero Main.Zero = Main.Zero; 10.45/4.22 primMulNat Main.Zero (Main.Succ y) = Main.Zero; 10.45/4.22 primMulNat (Main.Succ x) Main.Zero = Main.Zero; 10.45/4.22 primMulNat (Main.Succ x) (Main.Succ y) = primPlusNat (primMulNat x (Main.Succ y)) (Main.Succ y); 10.45/4.22 10.45/4.22 primPlusNat :: Main.Nat -> Main.Nat -> Main.Nat; 10.45/4.22 primPlusNat Main.Zero Main.Zero = Main.Zero; 10.45/4.22 primPlusNat Main.Zero (Main.Succ y) = Main.Succ y; 10.45/4.22 primPlusNat (Main.Succ x) Main.Zero = Main.Succ x; 10.45/4.22 primPlusNat (Main.Succ x) (Main.Succ y) = Main.Succ (Main.Succ (primPlusNat x y)); 10.45/4.22 10.45/4.22 srMyInt :: MyInt -> MyInt -> MyInt; 10.45/4.22 srMyInt = primMulInt; 10.45/4.22 10.45/4.22 } 10.45/4.22 10.45/4.22 ---------------------------------------- 10.45/4.22 10.45/4.22 (5) Narrow (SOUND) 10.45/4.22 Haskell To QDPs 10.45/4.22 10.45/4.22 digraph dp_graph { 10.45/4.22 node [outthreshold=100, inthreshold=100];1[label="ltEsRatio",fontsize=16,color="grey",shape="box"];1 -> 3[label="",style="dashed", color="grey", weight=3]; 10.45/4.22 3[label="ltEsRatio vx3",fontsize=16,color="grey",shape="box"];3 -> 4[label="",style="dashed", color="grey", weight=3]; 10.45/4.22 4[label="ltEsRatio vx3 vx4",fontsize=16,color="black",shape="triangle"];4 -> 5[label="",style="solid", color="black", weight=3]; 10.45/4.22 5[label="fsEsOrdering (compareRatio vx3 vx4) GT",fontsize=16,color="black",shape="box"];5 -> 6[label="",style="solid", color="black", weight=3]; 10.45/4.22 6[label="not (esEsOrdering (compareRatio vx3 vx4) GT)",fontsize=16,color="burlywood",shape="box"];516[label="vx3/CnPc vx30 vx31",fontsize=10,color="white",style="solid",shape="box"];6 -> 516[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 516 -> 7[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 7[label="not (esEsOrdering (compareRatio (CnPc vx30 vx31) vx4) GT)",fontsize=16,color="burlywood",shape="box"];517[label="vx4/CnPc vx40 vx41",fontsize=10,color="white",style="solid",shape="box"];7 -> 517[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 517 -> 8[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 8[label="not (esEsOrdering (compareRatio (CnPc vx30 vx31) (CnPc vx40 vx41)) GT)",fontsize=16,color="black",shape="box"];8 -> 9[label="",style="solid", color="black", weight=3]; 10.45/4.22 9[label="not (esEsOrdering (compareMyInt (srMyInt vx30 vx41) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];9 -> 10[label="",style="solid", color="black", weight=3]; 10.45/4.22 10[label="not (esEsOrdering (primCmpInt (srMyInt vx30 vx41) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];10 -> 11[label="",style="solid", color="black", weight=3]; 10.45/4.22 11[label="not (esEsOrdering (primCmpInt (primMulInt vx30 vx41) (srMyInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="box"];518[label="vx30/Pos vx300",fontsize=10,color="white",style="solid",shape="box"];11 -> 518[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 518 -> 12[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 519[label="vx30/Neg vx300",fontsize=10,color="white",style="solid",shape="box"];11 -> 519[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 519 -> 13[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 12[label="not (esEsOrdering (primCmpInt (primMulInt (Pos vx300) vx41) (srMyInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="box"];520[label="vx41/Pos vx410",fontsize=10,color="white",style="solid",shape="box"];12 -> 520[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 520 -> 14[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 521[label="vx41/Neg vx410",fontsize=10,color="white",style="solid",shape="box"];12 -> 521[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 521 -> 15[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 13[label="not (esEsOrdering (primCmpInt (primMulInt (Neg vx300) vx41) (srMyInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="box"];522[label="vx41/Pos vx410",fontsize=10,color="white",style="solid",shape="box"];13 -> 522[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 522 -> 16[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 523[label="vx41/Neg vx410",fontsize=10,color="white",style="solid",shape="box"];13 -> 523[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 523 -> 17[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 14[label="not (esEsOrdering (primCmpInt (primMulInt (Pos vx300) (Pos vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];14 -> 18[label="",style="solid", color="black", weight=3]; 10.45/4.22 15[label="not (esEsOrdering (primCmpInt (primMulInt (Pos vx300) (Neg vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];15 -> 19[label="",style="solid", color="black", weight=3]; 10.45/4.22 16[label="not (esEsOrdering (primCmpInt (primMulInt (Neg vx300) (Pos vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];16 -> 20[label="",style="solid", color="black", weight=3]; 10.45/4.22 17[label="not (esEsOrdering (primCmpInt (primMulInt (Neg vx300) (Neg vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];17 -> 21[label="",style="solid", color="black", weight=3]; 10.45/4.22 18 -> 270[label="",style="dashed", color="red", weight=0]; 10.45/4.22 18[label="not (esEsOrdering (primCmpInt (Pos (primMulNat vx300 vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="magenta"];18 -> 271[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 19 -> 346[label="",style="dashed", color="red", weight=0]; 10.45/4.22 19[label="not (esEsOrdering (primCmpInt (Neg (primMulNat vx300 vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="magenta"];19 -> 347[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 20 -> 346[label="",style="dashed", color="red", weight=0]; 10.45/4.22 20[label="not (esEsOrdering (primCmpInt (Neg (primMulNat vx300 vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="magenta"];20 -> 348[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 21 -> 270[label="",style="dashed", color="red", weight=0]; 10.45/4.22 21[label="not (esEsOrdering (primCmpInt (Pos (primMulNat vx300 vx410)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="magenta"];21 -> 272[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 271[label="primMulNat vx300 vx410",fontsize=16,color="burlywood",shape="triangle"];524[label="vx300/Succ vx3000",fontsize=10,color="white",style="solid",shape="box"];271 -> 524[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 524 -> 283[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 525[label="vx300/Zero",fontsize=10,color="white",style="solid",shape="box"];271 -> 525[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 525 -> 284[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 270[label="not (esEsOrdering (primCmpInt (Pos vx10) (srMyInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="triangle"];526[label="vx10/Succ vx100",fontsize=10,color="white",style="solid",shape="box"];270 -> 526[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 526 -> 285[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 527[label="vx10/Zero",fontsize=10,color="white",style="solid",shape="box"];270 -> 527[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 527 -> 286[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 347 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 347[label="primMulNat vx300 vx410",fontsize=16,color="magenta"];347 -> 359[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 346[label="not (esEsOrdering (primCmpInt (Neg vx15) (srMyInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="triangle"];528[label="vx15/Succ vx150",fontsize=10,color="white",style="solid",shape="box"];346 -> 528[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 528 -> 360[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 529[label="vx15/Zero",fontsize=10,color="white",style="solid",shape="box"];346 -> 529[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 529 -> 361[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 348 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 348[label="primMulNat vx300 vx410",fontsize=16,color="magenta"];348 -> 362[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 272 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 272[label="primMulNat vx300 vx410",fontsize=16,color="magenta"];272 -> 287[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 272 -> 288[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 283[label="primMulNat (Succ vx3000) vx410",fontsize=16,color="burlywood",shape="box"];530[label="vx410/Succ vx4100",fontsize=10,color="white",style="solid",shape="box"];283 -> 530[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 530 -> 303[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 531[label="vx410/Zero",fontsize=10,color="white",style="solid",shape="box"];283 -> 531[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 531 -> 304[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 284[label="primMulNat Zero vx410",fontsize=16,color="burlywood",shape="box"];532[label="vx410/Succ vx4100",fontsize=10,color="white",style="solid",shape="box"];284 -> 532[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 532 -> 305[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 533[label="vx410/Zero",fontsize=10,color="white",style="solid",shape="box"];284 -> 533[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 533 -> 306[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 285[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];285 -> 307[label="",style="solid", color="black", weight=3]; 10.45/4.22 286[label="not (esEsOrdering (primCmpInt (Pos Zero) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];286 -> 308[label="",style="solid", color="black", weight=3]; 10.45/4.22 359[label="vx410",fontsize=16,color="green",shape="box"];360[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];360 -> 373[label="",style="solid", color="black", weight=3]; 10.45/4.22 361[label="not (esEsOrdering (primCmpInt (Neg Zero) (srMyInt vx40 vx31)) GT)",fontsize=16,color="black",shape="box"];361 -> 374[label="",style="solid", color="black", weight=3]; 10.45/4.22 362[label="vx300",fontsize=16,color="green",shape="box"];287[label="vx410",fontsize=16,color="green",shape="box"];288[label="vx300",fontsize=16,color="green",shape="box"];303[label="primMulNat (Succ vx3000) (Succ vx4100)",fontsize=16,color="black",shape="box"];303 -> 319[label="",style="solid", color="black", weight=3]; 10.45/4.22 304[label="primMulNat (Succ vx3000) Zero",fontsize=16,color="black",shape="box"];304 -> 320[label="",style="solid", color="black", weight=3]; 10.45/4.22 305[label="primMulNat Zero (Succ vx4100)",fontsize=16,color="black",shape="box"];305 -> 321[label="",style="solid", color="black", weight=3]; 10.45/4.22 306[label="primMulNat Zero Zero",fontsize=16,color="black",shape="box"];306 -> 322[label="",style="solid", color="black", weight=3]; 10.45/4.22 307[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (primMulInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="box"];534[label="vx40/Pos vx400",fontsize=10,color="white",style="solid",shape="box"];307 -> 534[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 534 -> 323[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 535[label="vx40/Neg vx400",fontsize=10,color="white",style="solid",shape="box"];307 -> 535[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 535 -> 324[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 308[label="not (esEsOrdering (primCmpInt (Pos Zero) (primMulInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="box"];536[label="vx40/Pos vx400",fontsize=10,color="white",style="solid",shape="box"];308 -> 536[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 536 -> 325[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 537[label="vx40/Neg vx400",fontsize=10,color="white",style="solid",shape="box"];308 -> 537[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 537 -> 326[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 373[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (primMulInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="box"];538[label="vx40/Pos vx400",fontsize=10,color="white",style="solid",shape="box"];373 -> 538[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 538 -> 378[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 539[label="vx40/Neg vx400",fontsize=10,color="white",style="solid",shape="box"];373 -> 539[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 539 -> 379[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 374[label="not (esEsOrdering (primCmpInt (Neg Zero) (primMulInt vx40 vx31)) GT)",fontsize=16,color="burlywood",shape="box"];540[label="vx40/Pos vx400",fontsize=10,color="white",style="solid",shape="box"];374 -> 540[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 540 -> 380[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 541[label="vx40/Neg vx400",fontsize=10,color="white",style="solid",shape="box"];374 -> 541[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 541 -> 381[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 319 -> 332[label="",style="dashed", color="red", weight=0]; 10.45/4.22 319[label="primPlusNat (primMulNat vx3000 (Succ vx4100)) (Succ vx4100)",fontsize=16,color="magenta"];319 -> 333[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 320[label="Zero",fontsize=16,color="green",shape="box"];321[label="Zero",fontsize=16,color="green",shape="box"];322[label="Zero",fontsize=16,color="green",shape="box"];323[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (primMulInt (Pos vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];542[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];323 -> 542[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 542 -> 334[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 543[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];323 -> 543[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 543 -> 335[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 324[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (primMulInt (Neg vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];544[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];324 -> 544[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 544 -> 336[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 545[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];324 -> 545[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 545 -> 337[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 325[label="not (esEsOrdering (primCmpInt (Pos Zero) (primMulInt (Pos vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];546[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];325 -> 546[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 546 -> 338[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 547[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];325 -> 547[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 547 -> 339[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 326[label="not (esEsOrdering (primCmpInt (Pos Zero) (primMulInt (Neg vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];548[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];326 -> 548[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 548 -> 340[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 549[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];326 -> 549[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 549 -> 341[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 378[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (primMulInt (Pos vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];550[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];378 -> 550[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 550 -> 385[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 551[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];378 -> 551[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 551 -> 386[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 379[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (primMulInt (Neg vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];552[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];379 -> 552[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 552 -> 387[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 553[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];379 -> 553[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 553 -> 388[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 380[label="not (esEsOrdering (primCmpInt (Neg Zero) (primMulInt (Pos vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];554[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];380 -> 554[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 554 -> 389[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 555[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];380 -> 555[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 555 -> 390[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 381[label="not (esEsOrdering (primCmpInt (Neg Zero) (primMulInt (Neg vx400) vx31)) GT)",fontsize=16,color="burlywood",shape="box"];556[label="vx31/Pos vx310",fontsize=10,color="white",style="solid",shape="box"];381 -> 556[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 556 -> 391[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 557[label="vx31/Neg vx310",fontsize=10,color="white",style="solid",shape="box"];381 -> 557[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 557 -> 392[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 333 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 333[label="primMulNat vx3000 (Succ vx4100)",fontsize=16,color="magenta"];333 -> 342[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 333 -> 343[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 332[label="primPlusNat vx14 (Succ vx4100)",fontsize=16,color="burlywood",shape="triangle"];558[label="vx14/Succ vx140",fontsize=10,color="white",style="solid",shape="box"];332 -> 558[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 558 -> 344[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 559[label="vx14/Zero",fontsize=10,color="white",style="solid",shape="box"];332 -> 559[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 559 -> 345[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 334[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (primMulInt (Pos vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];334 -> 363[label="",style="solid", color="black", weight=3]; 10.45/4.22 335[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (primMulInt (Pos vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];335 -> 364[label="",style="solid", color="black", weight=3]; 10.45/4.22 336[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (primMulInt (Neg vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];336 -> 365[label="",style="solid", color="black", weight=3]; 10.45/4.22 337[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (primMulInt (Neg vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];337 -> 366[label="",style="solid", color="black", weight=3]; 10.45/4.22 338[label="not (esEsOrdering (primCmpInt (Pos Zero) (primMulInt (Pos vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];338 -> 367[label="",style="solid", color="black", weight=3]; 10.45/4.22 339[label="not (esEsOrdering (primCmpInt (Pos Zero) (primMulInt (Pos vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];339 -> 368[label="",style="solid", color="black", weight=3]; 10.45/4.22 340[label="not (esEsOrdering (primCmpInt (Pos Zero) (primMulInt (Neg vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];340 -> 369[label="",style="solid", color="black", weight=3]; 10.45/4.22 341[label="not (esEsOrdering (primCmpInt (Pos Zero) (primMulInt (Neg vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];341 -> 370[label="",style="solid", color="black", weight=3]; 10.45/4.22 385[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (primMulInt (Pos vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];385 -> 396[label="",style="solid", color="black", weight=3]; 10.45/4.22 386[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (primMulInt (Pos vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];386 -> 397[label="",style="solid", color="black", weight=3]; 10.45/4.22 387[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (primMulInt (Neg vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];387 -> 398[label="",style="solid", color="black", weight=3]; 10.45/4.22 388[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (primMulInt (Neg vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];388 -> 399[label="",style="solid", color="black", weight=3]; 10.45/4.22 389[label="not (esEsOrdering (primCmpInt (Neg Zero) (primMulInt (Pos vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];389 -> 400[label="",style="solid", color="black", weight=3]; 10.45/4.22 390[label="not (esEsOrdering (primCmpInt (Neg Zero) (primMulInt (Pos vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];390 -> 401[label="",style="solid", color="black", weight=3]; 10.45/4.22 391[label="not (esEsOrdering (primCmpInt (Neg Zero) (primMulInt (Neg vx400) (Pos vx310))) GT)",fontsize=16,color="black",shape="box"];391 -> 402[label="",style="solid", color="black", weight=3]; 10.45/4.22 392[label="not (esEsOrdering (primCmpInt (Neg Zero) (primMulInt (Neg vx400) (Neg vx310))) GT)",fontsize=16,color="black",shape="box"];392 -> 403[label="",style="solid", color="black", weight=3]; 10.45/4.22 342[label="Succ vx4100",fontsize=16,color="green",shape="box"];343[label="vx3000",fontsize=16,color="green",shape="box"];344[label="primPlusNat (Succ vx140) (Succ vx4100)",fontsize=16,color="black",shape="box"];344 -> 371[label="",style="solid", color="black", weight=3]; 10.45/4.22 345[label="primPlusNat Zero (Succ vx4100)",fontsize=16,color="black",shape="box"];345 -> 372[label="",style="solid", color="black", weight=3]; 10.45/4.22 363 -> 375[label="",style="dashed", color="red", weight=0]; 10.45/4.22 363[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];363 -> 376[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 364 -> 382[label="",style="dashed", color="red", weight=0]; 10.45/4.22 364[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];364 -> 383[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 365 -> 382[label="",style="dashed", color="red", weight=0]; 10.45/4.22 365[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];365 -> 384[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 366 -> 375[label="",style="dashed", color="red", weight=0]; 10.45/4.22 366[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];366 -> 377[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 367 -> 393[label="",style="dashed", color="red", weight=0]; 10.45/4.22 367[label="not (esEsOrdering (primCmpInt (Pos Zero) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];367 -> 394[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 368 -> 404[label="",style="dashed", color="red", weight=0]; 10.45/4.22 368[label="not (esEsOrdering (primCmpInt (Pos Zero) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];368 -> 405[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 369 -> 404[label="",style="dashed", color="red", weight=0]; 10.45/4.22 369[label="not (esEsOrdering (primCmpInt (Pos Zero) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];369 -> 406[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 370 -> 393[label="",style="dashed", color="red", weight=0]; 10.45/4.22 370[label="not (esEsOrdering (primCmpInt (Pos Zero) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];370 -> 395[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 396 -> 407[label="",style="dashed", color="red", weight=0]; 10.45/4.22 396[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];396 -> 408[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 397 -> 410[label="",style="dashed", color="red", weight=0]; 10.45/4.22 397[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];397 -> 411[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 398 -> 410[label="",style="dashed", color="red", weight=0]; 10.45/4.22 398[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];398 -> 412[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 399 -> 407[label="",style="dashed", color="red", weight=0]; 10.45/4.22 399[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];399 -> 409[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 400 -> 413[label="",style="dashed", color="red", weight=0]; 10.45/4.22 400[label="not (esEsOrdering (primCmpInt (Neg Zero) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];400 -> 414[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 401 -> 416[label="",style="dashed", color="red", weight=0]; 10.45/4.22 401[label="not (esEsOrdering (primCmpInt (Neg Zero) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];401 -> 417[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 402 -> 416[label="",style="dashed", color="red", weight=0]; 10.45/4.22 402[label="not (esEsOrdering (primCmpInt (Neg Zero) (Neg (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];402 -> 418[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 403 -> 413[label="",style="dashed", color="red", weight=0]; 10.45/4.22 403[label="not (esEsOrdering (primCmpInt (Neg Zero) (Pos (primMulNat vx400 vx310))) GT)",fontsize=16,color="magenta"];403 -> 415[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 371[label="Succ (Succ (primPlusNat vx140 vx4100))",fontsize=16,color="green",shape="box"];371 -> 419[label="",style="dashed", color="green", weight=3]; 10.45/4.22 372[label="Succ vx4100",fontsize=16,color="green",shape="box"];376 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 376[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];376 -> 420[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 376 -> 421[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 375[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (Pos vx16)) GT)",fontsize=16,color="black",shape="triangle"];375 -> 422[label="",style="solid", color="black", weight=3]; 10.45/4.22 383 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 383[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];383 -> 423[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 383 -> 424[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 382[label="not (esEsOrdering (primCmpInt (Pos (Succ vx100)) (Neg vx17)) GT)",fontsize=16,color="black",shape="triangle"];382 -> 425[label="",style="solid", color="black", weight=3]; 10.45/4.22 384 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 384[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];384 -> 426[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 384 -> 427[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 377 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 377[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];377 -> 428[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 377 -> 429[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 394 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 394[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];394 -> 430[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 394 -> 431[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 393[label="not (esEsOrdering (primCmpInt (Pos Zero) (Pos vx18)) GT)",fontsize=16,color="burlywood",shape="triangle"];560[label="vx18/Succ vx180",fontsize=10,color="white",style="solid",shape="box"];393 -> 560[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 560 -> 432[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 561[label="vx18/Zero",fontsize=10,color="white",style="solid",shape="box"];393 -> 561[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 561 -> 433[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 405 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 405[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];405 -> 434[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 405 -> 435[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 404[label="not (esEsOrdering (primCmpInt (Pos Zero) (Neg vx19)) GT)",fontsize=16,color="burlywood",shape="triangle"];562[label="vx19/Succ vx190",fontsize=10,color="white",style="solid",shape="box"];404 -> 562[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 562 -> 436[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 563[label="vx19/Zero",fontsize=10,color="white",style="solid",shape="box"];404 -> 563[label="",style="solid", color="burlywood", weight=9]; 10.45/4.22 563 -> 437[label="",style="solid", color="burlywood", weight=3]; 10.45/4.22 406 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 406[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];406 -> 438[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 406 -> 439[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 395 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 395[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];395 -> 440[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 395 -> 441[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 408 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 408[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];408 -> 442[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 408 -> 443[label="",style="dashed", color="magenta", weight=3]; 10.45/4.22 407[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (Pos vx20)) GT)",fontsize=16,color="black",shape="triangle"];407 -> 444[label="",style="solid", color="black", weight=3]; 10.45/4.22 411 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.22 411[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];411 -> 445[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 411 -> 446[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 410[label="not (esEsOrdering (primCmpInt (Neg (Succ vx150)) (Neg vx21)) GT)",fontsize=16,color="black",shape="triangle"];410 -> 447[label="",style="solid", color="black", weight=3]; 10.45/4.23 412 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.23 412[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];412 -> 448[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 412 -> 449[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 409 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.23 409[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];409 -> 450[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 409 -> 451[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 414 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.23 414[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];414 -> 452[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 414 -> 453[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 413[label="not (esEsOrdering (primCmpInt (Neg Zero) (Pos vx22)) GT)",fontsize=16,color="burlywood",shape="triangle"];564[label="vx22/Succ vx220",fontsize=10,color="white",style="solid",shape="box"];413 -> 564[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 564 -> 454[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 565[label="vx22/Zero",fontsize=10,color="white",style="solid",shape="box"];413 -> 565[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 565 -> 455[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 417 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.23 417[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];417 -> 456[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 417 -> 457[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 416[label="not (esEsOrdering (primCmpInt (Neg Zero) (Neg vx23)) GT)",fontsize=16,color="burlywood",shape="triangle"];566[label="vx23/Succ vx230",fontsize=10,color="white",style="solid",shape="box"];416 -> 566[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 566 -> 458[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 567[label="vx23/Zero",fontsize=10,color="white",style="solid",shape="box"];416 -> 567[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 567 -> 459[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 418 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.23 418[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];418 -> 460[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 418 -> 461[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 415 -> 271[label="",style="dashed", color="red", weight=0]; 10.45/4.23 415[label="primMulNat vx400 vx310",fontsize=16,color="magenta"];415 -> 462[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 415 -> 463[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 419[label="primPlusNat vx140 vx4100",fontsize=16,color="burlywood",shape="triangle"];568[label="vx140/Succ vx1400",fontsize=10,color="white",style="solid",shape="box"];419 -> 568[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 568 -> 464[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 569[label="vx140/Zero",fontsize=10,color="white",style="solid",shape="box"];419 -> 569[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 569 -> 465[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 420[label="vx310",fontsize=16,color="green",shape="box"];421[label="vx400",fontsize=16,color="green",shape="box"];422[label="not (esEsOrdering (primCmpNat (Succ vx100) vx16) GT)",fontsize=16,color="burlywood",shape="triangle"];570[label="vx16/Succ vx160",fontsize=10,color="white",style="solid",shape="box"];422 -> 570[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 570 -> 466[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 571[label="vx16/Zero",fontsize=10,color="white",style="solid",shape="box"];422 -> 571[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 571 -> 467[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 423[label="vx310",fontsize=16,color="green",shape="box"];424[label="vx400",fontsize=16,color="green",shape="box"];425[label="not (esEsOrdering GT GT)",fontsize=16,color="black",shape="triangle"];425 -> 468[label="",style="solid", color="black", weight=3]; 10.45/4.23 426[label="vx310",fontsize=16,color="green",shape="box"];427[label="vx400",fontsize=16,color="green",shape="box"];428[label="vx310",fontsize=16,color="green",shape="box"];429[label="vx400",fontsize=16,color="green",shape="box"];430[label="vx310",fontsize=16,color="green",shape="box"];431[label="vx400",fontsize=16,color="green",shape="box"];432[label="not (esEsOrdering (primCmpInt (Pos Zero) (Pos (Succ vx180))) GT)",fontsize=16,color="black",shape="box"];432 -> 469[label="",style="solid", color="black", weight=3]; 10.45/4.23 433[label="not (esEsOrdering (primCmpInt (Pos Zero) (Pos Zero)) GT)",fontsize=16,color="black",shape="box"];433 -> 470[label="",style="solid", color="black", weight=3]; 10.45/4.23 434[label="vx310",fontsize=16,color="green",shape="box"];435[label="vx400",fontsize=16,color="green",shape="box"];436[label="not (esEsOrdering (primCmpInt (Pos Zero) (Neg (Succ vx190))) GT)",fontsize=16,color="black",shape="box"];436 -> 471[label="",style="solid", color="black", weight=3]; 10.45/4.23 437[label="not (esEsOrdering (primCmpInt (Pos Zero) (Neg Zero)) GT)",fontsize=16,color="black",shape="box"];437 -> 472[label="",style="solid", color="black", weight=3]; 10.45/4.23 438[label="vx310",fontsize=16,color="green",shape="box"];439[label="vx400",fontsize=16,color="green",shape="box"];440[label="vx310",fontsize=16,color="green",shape="box"];441[label="vx400",fontsize=16,color="green",shape="box"];442[label="vx310",fontsize=16,color="green",shape="box"];443[label="vx400",fontsize=16,color="green",shape="box"];444[label="not (esEsOrdering LT GT)",fontsize=16,color="black",shape="triangle"];444 -> 473[label="",style="solid", color="black", weight=3]; 10.45/4.23 445[label="vx310",fontsize=16,color="green",shape="box"];446[label="vx400",fontsize=16,color="green",shape="box"];447[label="not (esEsOrdering (primCmpNat vx21 (Succ vx150)) GT)",fontsize=16,color="burlywood",shape="triangle"];572[label="vx21/Succ vx210",fontsize=10,color="white",style="solid",shape="box"];447 -> 572[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 572 -> 474[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 573[label="vx21/Zero",fontsize=10,color="white",style="solid",shape="box"];447 -> 573[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 573 -> 475[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 448[label="vx310",fontsize=16,color="green",shape="box"];449[label="vx400",fontsize=16,color="green",shape="box"];450[label="vx310",fontsize=16,color="green",shape="box"];451[label="vx400",fontsize=16,color="green",shape="box"];452[label="vx310",fontsize=16,color="green",shape="box"];453[label="vx400",fontsize=16,color="green",shape="box"];454[label="not (esEsOrdering (primCmpInt (Neg Zero) (Pos (Succ vx220))) GT)",fontsize=16,color="black",shape="box"];454 -> 476[label="",style="solid", color="black", weight=3]; 10.45/4.23 455[label="not (esEsOrdering (primCmpInt (Neg Zero) (Pos Zero)) GT)",fontsize=16,color="black",shape="box"];455 -> 477[label="",style="solid", color="black", weight=3]; 10.45/4.23 456[label="vx310",fontsize=16,color="green",shape="box"];457[label="vx400",fontsize=16,color="green",shape="box"];458[label="not (esEsOrdering (primCmpInt (Neg Zero) (Neg (Succ vx230))) GT)",fontsize=16,color="black",shape="box"];458 -> 478[label="",style="solid", color="black", weight=3]; 10.45/4.23 459[label="not (esEsOrdering (primCmpInt (Neg Zero) (Neg Zero)) GT)",fontsize=16,color="black",shape="box"];459 -> 479[label="",style="solid", color="black", weight=3]; 10.45/4.23 460[label="vx310",fontsize=16,color="green",shape="box"];461[label="vx400",fontsize=16,color="green",shape="box"];462[label="vx310",fontsize=16,color="green",shape="box"];463[label="vx400",fontsize=16,color="green",shape="box"];464[label="primPlusNat (Succ vx1400) vx4100",fontsize=16,color="burlywood",shape="box"];574[label="vx4100/Succ vx41000",fontsize=10,color="white",style="solid",shape="box"];464 -> 574[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 574 -> 480[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 575[label="vx4100/Zero",fontsize=10,color="white",style="solid",shape="box"];464 -> 575[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 575 -> 481[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 465[label="primPlusNat Zero vx4100",fontsize=16,color="burlywood",shape="box"];576[label="vx4100/Succ vx41000",fontsize=10,color="white",style="solid",shape="box"];465 -> 576[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 576 -> 482[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 577[label="vx4100/Zero",fontsize=10,color="white",style="solid",shape="box"];465 -> 577[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 577 -> 483[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 466[label="not (esEsOrdering (primCmpNat (Succ vx100) (Succ vx160)) GT)",fontsize=16,color="black",shape="box"];466 -> 484[label="",style="solid", color="black", weight=3]; 10.45/4.23 467[label="not (esEsOrdering (primCmpNat (Succ vx100) Zero) GT)",fontsize=16,color="black",shape="box"];467 -> 485[label="",style="solid", color="black", weight=3]; 10.45/4.23 468[label="not MyTrue",fontsize=16,color="black",shape="box"];468 -> 486[label="",style="solid", color="black", weight=3]; 10.45/4.23 469 -> 447[label="",style="dashed", color="red", weight=0]; 10.45/4.23 469[label="not (esEsOrdering (primCmpNat Zero (Succ vx180)) GT)",fontsize=16,color="magenta"];469 -> 487[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 469 -> 488[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 470[label="not (esEsOrdering EQ GT)",fontsize=16,color="black",shape="triangle"];470 -> 489[label="",style="solid", color="black", weight=3]; 10.45/4.23 471 -> 425[label="",style="dashed", color="red", weight=0]; 10.45/4.23 471[label="not (esEsOrdering GT GT)",fontsize=16,color="magenta"];472 -> 470[label="",style="dashed", color="red", weight=0]; 10.45/4.23 472[label="not (esEsOrdering EQ GT)",fontsize=16,color="magenta"];473[label="not MyFalse",fontsize=16,color="black",shape="triangle"];473 -> 490[label="",style="solid", color="black", weight=3]; 10.45/4.23 474[label="not (esEsOrdering (primCmpNat (Succ vx210) (Succ vx150)) GT)",fontsize=16,color="black",shape="box"];474 -> 491[label="",style="solid", color="black", weight=3]; 10.45/4.23 475[label="not (esEsOrdering (primCmpNat Zero (Succ vx150)) GT)",fontsize=16,color="black",shape="box"];475 -> 492[label="",style="solid", color="black", weight=3]; 10.45/4.23 476 -> 444[label="",style="dashed", color="red", weight=0]; 10.45/4.23 476[label="not (esEsOrdering LT GT)",fontsize=16,color="magenta"];477 -> 470[label="",style="dashed", color="red", weight=0]; 10.45/4.23 477[label="not (esEsOrdering EQ GT)",fontsize=16,color="magenta"];478 -> 422[label="",style="dashed", color="red", weight=0]; 10.45/4.23 478[label="not (esEsOrdering (primCmpNat (Succ vx230) Zero) GT)",fontsize=16,color="magenta"];478 -> 493[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 478 -> 494[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 479 -> 470[label="",style="dashed", color="red", weight=0]; 10.45/4.23 479[label="not (esEsOrdering EQ GT)",fontsize=16,color="magenta"];480[label="primPlusNat (Succ vx1400) (Succ vx41000)",fontsize=16,color="black",shape="box"];480 -> 495[label="",style="solid", color="black", weight=3]; 10.45/4.23 481[label="primPlusNat (Succ vx1400) Zero",fontsize=16,color="black",shape="box"];481 -> 496[label="",style="solid", color="black", weight=3]; 10.45/4.23 482[label="primPlusNat Zero (Succ vx41000)",fontsize=16,color="black",shape="box"];482 -> 497[label="",style="solid", color="black", weight=3]; 10.45/4.23 483[label="primPlusNat Zero Zero",fontsize=16,color="black",shape="box"];483 -> 498[label="",style="solid", color="black", weight=3]; 10.45/4.23 484[label="not (esEsOrdering (primCmpNat vx100 vx160) GT)",fontsize=16,color="burlywood",shape="triangle"];578[label="vx100/Succ vx1000",fontsize=10,color="white",style="solid",shape="box"];484 -> 578[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 578 -> 499[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 579[label="vx100/Zero",fontsize=10,color="white",style="solid",shape="box"];484 -> 579[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 579 -> 500[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 485 -> 425[label="",style="dashed", color="red", weight=0]; 10.45/4.23 485[label="not (esEsOrdering GT GT)",fontsize=16,color="magenta"];486[label="MyFalse",fontsize=16,color="green",shape="box"];487[label="vx180",fontsize=16,color="green",shape="box"];488[label="Zero",fontsize=16,color="green",shape="box"];489 -> 473[label="",style="dashed", color="red", weight=0]; 10.45/4.23 489[label="not MyFalse",fontsize=16,color="magenta"];490[label="MyTrue",fontsize=16,color="green",shape="box"];491 -> 484[label="",style="dashed", color="red", weight=0]; 10.45/4.23 491[label="not (esEsOrdering (primCmpNat vx210 vx150) GT)",fontsize=16,color="magenta"];491 -> 501[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 491 -> 502[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 492 -> 444[label="",style="dashed", color="red", weight=0]; 10.45/4.23 492[label="not (esEsOrdering LT GT)",fontsize=16,color="magenta"];493[label="vx230",fontsize=16,color="green",shape="box"];494[label="Zero",fontsize=16,color="green",shape="box"];495[label="Succ (Succ (primPlusNat vx1400 vx41000))",fontsize=16,color="green",shape="box"];495 -> 503[label="",style="dashed", color="green", weight=3]; 10.45/4.23 496[label="Succ vx1400",fontsize=16,color="green",shape="box"];497[label="Succ vx41000",fontsize=16,color="green",shape="box"];498[label="Zero",fontsize=16,color="green",shape="box"];499[label="not (esEsOrdering (primCmpNat (Succ vx1000) vx160) GT)",fontsize=16,color="burlywood",shape="box"];580[label="vx160/Succ vx1600",fontsize=10,color="white",style="solid",shape="box"];499 -> 580[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 580 -> 504[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 581[label="vx160/Zero",fontsize=10,color="white",style="solid",shape="box"];499 -> 581[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 581 -> 505[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 500[label="not (esEsOrdering (primCmpNat Zero vx160) GT)",fontsize=16,color="burlywood",shape="box"];582[label="vx160/Succ vx1600",fontsize=10,color="white",style="solid",shape="box"];500 -> 582[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 582 -> 506[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 583[label="vx160/Zero",fontsize=10,color="white",style="solid",shape="box"];500 -> 583[label="",style="solid", color="burlywood", weight=9]; 10.45/4.23 583 -> 507[label="",style="solid", color="burlywood", weight=3]; 10.45/4.23 501[label="vx210",fontsize=16,color="green",shape="box"];502[label="vx150",fontsize=16,color="green",shape="box"];503 -> 419[label="",style="dashed", color="red", weight=0]; 10.45/4.23 503[label="primPlusNat vx1400 vx41000",fontsize=16,color="magenta"];503 -> 508[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 503 -> 509[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 504[label="not (esEsOrdering (primCmpNat (Succ vx1000) (Succ vx1600)) GT)",fontsize=16,color="black",shape="box"];504 -> 510[label="",style="solid", color="black", weight=3]; 10.45/4.23 505[label="not (esEsOrdering (primCmpNat (Succ vx1000) Zero) GT)",fontsize=16,color="black",shape="box"];505 -> 511[label="",style="solid", color="black", weight=3]; 10.45/4.23 506[label="not (esEsOrdering (primCmpNat Zero (Succ vx1600)) GT)",fontsize=16,color="black",shape="box"];506 -> 512[label="",style="solid", color="black", weight=3]; 10.45/4.23 507[label="not (esEsOrdering (primCmpNat Zero Zero) GT)",fontsize=16,color="black",shape="box"];507 -> 513[label="",style="solid", color="black", weight=3]; 10.45/4.23 508[label="vx1400",fontsize=16,color="green",shape="box"];509[label="vx41000",fontsize=16,color="green",shape="box"];510 -> 484[label="",style="dashed", color="red", weight=0]; 10.45/4.23 510[label="not (esEsOrdering (primCmpNat vx1000 vx1600) GT)",fontsize=16,color="magenta"];510 -> 514[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 510 -> 515[label="",style="dashed", color="magenta", weight=3]; 10.45/4.23 511 -> 425[label="",style="dashed", color="red", weight=0]; 10.45/4.23 511[label="not (esEsOrdering GT GT)",fontsize=16,color="magenta"];512 -> 444[label="",style="dashed", color="red", weight=0]; 10.45/4.23 512[label="not (esEsOrdering LT GT)",fontsize=16,color="magenta"];513 -> 470[label="",style="dashed", color="red", weight=0]; 10.45/4.23 513[label="not (esEsOrdering EQ GT)",fontsize=16,color="magenta"];514[label="vx1000",fontsize=16,color="green",shape="box"];515[label="vx1600",fontsize=16,color="green",shape="box"];} 10.45/4.23 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (6) 10.45/4.23 Complex Obligation (AND) 10.45/4.23 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (7) 10.45/4.23 Obligation: 10.45/4.23 Q DP problem: 10.45/4.23 The TRS P consists of the following rules: 10.45/4.23 10.45/4.23 new_primMulNat(Main.Succ(vx3000), Main.Succ(vx4100)) -> new_primMulNat(vx3000, Main.Succ(vx4100)) 10.45/4.23 10.45/4.23 R is empty. 10.45/4.23 Q is empty. 10.45/4.23 We have to consider all minimal (P,Q,R)-chains. 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (8) QDPSizeChangeProof (EQUIVALENT) 10.45/4.23 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. 10.45/4.23 10.45/4.23 From the DPs we obtained the following set of size-change graphs: 10.45/4.23 *new_primMulNat(Main.Succ(vx3000), Main.Succ(vx4100)) -> new_primMulNat(vx3000, Main.Succ(vx4100)) 10.45/4.23 The graph contains the following edges 1 > 1, 2 >= 2 10.45/4.23 10.45/4.23 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (9) 10.45/4.23 YES 10.45/4.23 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (10) 10.45/4.23 Obligation: 10.45/4.23 Q DP problem: 10.45/4.23 The TRS P consists of the following rules: 10.45/4.23 10.45/4.23 new_primPlusNat(Main.Succ(vx1400), Main.Succ(vx41000)) -> new_primPlusNat(vx1400, vx41000) 10.45/4.23 10.45/4.23 R is empty. 10.45/4.23 Q is empty. 10.45/4.23 We have to consider all minimal (P,Q,R)-chains. 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (11) QDPSizeChangeProof (EQUIVALENT) 10.45/4.23 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. 10.45/4.23 10.45/4.23 From the DPs we obtained the following set of size-change graphs: 10.45/4.23 *new_primPlusNat(Main.Succ(vx1400), Main.Succ(vx41000)) -> new_primPlusNat(vx1400, vx41000) 10.45/4.23 The graph contains the following edges 1 > 1, 2 > 2 10.45/4.23 10.45/4.23 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (12) 10.45/4.23 YES 10.45/4.23 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (13) 10.45/4.23 Obligation: 10.45/4.23 Q DP problem: 10.45/4.23 The TRS P consists of the following rules: 10.45/4.23 10.45/4.23 new_not(Main.Succ(vx1000), Main.Succ(vx1600)) -> new_not(vx1000, vx1600) 10.45/4.23 10.45/4.23 R is empty. 10.45/4.23 Q is empty. 10.45/4.23 We have to consider all minimal (P,Q,R)-chains. 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (14) QDPSizeChangeProof (EQUIVALENT) 10.45/4.23 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. 10.45/4.23 10.45/4.23 From the DPs we obtained the following set of size-change graphs: 10.45/4.23 *new_not(Main.Succ(vx1000), Main.Succ(vx1600)) -> new_not(vx1000, vx1600) 10.45/4.23 The graph contains the following edges 1 > 1, 2 > 2 10.45/4.23 10.45/4.23 10.45/4.23 ---------------------------------------- 10.45/4.23 10.45/4.23 (15) 10.45/4.23 YES 10.45/4.26 EOF