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