summaryrefslogtreecommitdiff
path: root/test/regress/regress0/rels/rel_tp_join_int_0.cvc
blob: 6ab678881d99eb293ccffdbcd157782242349c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
% EXPECT: unsat
% crash on this
OPTION "logic" "ALL";
IntPair: TYPE = [INT, INT];
w : SET OF IntPair;
x : SET OF IntPair;
y : SET OF IntPair;
z : SET OF IntPair;
r : SET OF IntPair;

t : INT;
u : INT;

ASSERT 4 < t AND t < 6;
ASSERT 4 < u AND u < 6;

ASSERT (1, u) IS_IN x;
ASSERT (t, 3) IS_IN y;

a : IntPair;
ASSERT a = (1,3);

ASSERT NOT (a IS_IN  (x JOIN y));


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