summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sets/sets-tuple-poly.cvc
blob: 3f8662ef7d069d1d5a5b27c9b478e03d5267e9fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
% COMMAND-LINE:
% EXPECT: sat
OPTION "sets-ext";
OPTION "logic" "ALL_SUPPORTED";

a : SET OF [REAL, INT];
b : SET OF [INT, REAL];

x : [ REAL, REAL ];

ASSERT NOT x = (0.0,0.0);

ASSERT (x.0, FLOOR(x.1)) IS_IN a;
ASSERT (FLOOR(x.0), x.1) IS_IN b;

ASSERT NOT x.0 = x.1;

CHECKSAT;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback