summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/integers/arith-int-078.cvc
blob: d6563829025c66dd8c0a7242ed2e2b2f74f4df59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
% EXPECT: valid
% EXIT: 20
x0, x1, x2, x3 : INT;
ASSERT  (17 * x0) + (-14 * x1) + (13 * x2) + (13 * x3) = -18 ;
ASSERT  (13 * x0) + (16 * x1) + (-12 * x2) + (19 * x3) = -20 ;
ASSERT  (-28 * x0) + (20 * x1) + (-9 * x2) + (9 * x3) = -3 ;
ASSERT  (24 * x0) + (22 * x1) + (24 * x2) + (20 * x3) = 5;
ASSERT (-1 * x0) + (-12 * x1) + (20 * x2) + (26 * x3) >= 22 ;
ASSERT  (-23 * x0) + (-20 * x1) + (-8 * x2) + (1 * x3) < 2 ;
ASSERT  (5 * x0) + (-27 * x1) + (-24 * x2) + (25 * x3) > -21 ;
ASSERT  (1 * x0) + (-8 * x1) + (-17 * x2) + (-27 * x3) < -24 ;
QUERY FALSE;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback