summaryrefslogtreecommitdiff
path: root/test/regress/regress0/rels/rel_symbolic_2_1.cvc
blob: 082604dc24fb1427c81dd7c2bb550a32cfe41598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
% EXPECT: sat
OPTION "logic" "ALL_SUPPORTED";
IntPair: TYPE = [INT, INT];
x : SET OF IntPair;
y : SET OF IntPair;
r : SET OF IntPair;

d : IntPair;
ASSERT d = (1,3);
ASSERT (1,3) IS_IN y;

a : IntPair;
ASSERT a IS_IN x;

e : IntPair;
ASSERT e = (4,3);

ASSERT r = (x JOIN y);

ASSERT NOT (e IS_IN r);
CHECKSAT;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback