summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/arith-int-008.cvc
blob: a524b86b0d4230b8cb80b15b22f8d5669ee22c30 (plain)
1
2
3
4
5
6
7
8
9
10
11
% EXPECT: invalid
% EXIT: 10
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