summaryrefslogtreecommitdiff
path: root/test/regress/regress1/arith/arith-int-010.cvc
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/arith/arith-int-010.cvc')
-rw-r--r--test/regress/regress1/arith/arith-int-010.cvc10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/regress/regress1/arith/arith-int-010.cvc b/test/regress/regress1/arith/arith-int-010.cvc
new file mode 100644
index 000000000..4ac85a984
--- /dev/null
+++ b/test/regress/regress1/arith/arith-int-010.cvc
@@ -0,0 +1,10 @@
+% EXPECT: valid
+x0, x1, x2, x3 : INT;
+ASSERT (19 * x0) + (-2 * x1) + (-29 * x2) + (-24 * x3) = 3 ;
+ASSERT (3 * x0) + (11 * x1) + (-14 * x2) + (6 * x3) = 4 ;
+ASSERT (-1 * x0) + (-22 * x1) + (4 * x2) + (5 * x3) = -22;
+ASSERT (8 * x0) + (-8 * x1) + (18 * x2) + (-14 * x3) < -20 ;
+ASSERT (22 * x0) + (27 * x1) + (6 * x2) + (-3 * x3) <= -11 ;
+ASSERT (-23 * x0) + (-29 * x1) + (-27 * x2) + (13 * x3) <= 3 ;
+ASSERT (8 * x0) + (0 * x1) + (28 * x2) + (0 * x3) >= -29 ;
+QUERY FALSE;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback