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