summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sets/sets-tuple-poly.cvc
blob: 4cac9a24edd9428eed0b7a14d2614f47ddd50738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
% 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