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