summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/arith-int-042.cvc
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/arith/integers/arith-int-042.cvc')
-rw-r--r--test/regress/regress0/arith/integers/arith-int-042.cvc10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/regress/regress0/arith/integers/arith-int-042.cvc b/test/regress/regress0/arith/integers/arith-int-042.cvc
new file mode 100644
index 000000000..df9314482
--- /dev/null
+++ b/test/regress/regress0/arith/integers/arith-int-042.cvc
@@ -0,0 +1,10 @@
+% EXPECT: valid
+% EXIT: 20
+x0, x1, x2, x3 : INT;
+ASSERT (-9 * x0) + (25 * x1) + (0 * x2) + (13 * x3) = 17 ;
+ASSERT (-6 * x0) + (32 * x1) + (2 * x2) + (-32 * x3) = -5 ;
+ASSERT (19 * x0) + (25 * x1) + (-32 * x2) + (-29 * x3) <= 14 ;
+ASSERT (6 * x0) + (22 * x1) + (-24 * x2) + (-6 * x3) < -21 ;
+ASSERT (-18 * x0) + (-21 * x1) + (-29 * x2) + (12 * x3) > 17 ;
+ASSERT (-25 * x0) + (-5 * x1) + (-22 * x2) + (-7 * x3) > -21;
+QUERY FALSE;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback