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

ASSERT x IS_IN a;
ASSERT x 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