summaryrefslogtreecommitdiff
path: root/test/regress/regress0/rels/joinImg_0.cvc
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/rels/joinImg_0.cvc')
-rw-r--r--test/regress/regress0/rels/joinImg_0.cvc34
1 files changed, 0 insertions, 34 deletions
diff --git a/test/regress/regress0/rels/joinImg_0.cvc b/test/regress/regress0/rels/joinImg_0.cvc
deleted file mode 100644
index b3dc944fd..000000000
--- a/test/regress/regress0/rels/joinImg_0.cvc
+++ /dev/null
@@ -1,34 +0,0 @@
-% EXPECT: unsat
-OPTION "logic" "ALL";
-OPTION "sets-ext";
-IntPair: TYPE = [INT, INT];
-x : SET OF IntPair;
-y : SET OF IntPair;
-r : SET OF IntPair;
-
-t : SET OF [INT];
-
-z : IntPair;
-ASSERT z = (1,2);
-zt : IntPair;
-ASSERT zt = (2,1);
-v : IntPair;
-ASSERT v = (1,1);
-a : IntPair;
-ASSERT a = (1,5);
-
-ASSERT (1, 7) IS_IN x;
-ASSERT z IS_IN x;
-
-ASSERT (7, 5) IS_IN y;
-
-ASSERT t = (x JOIN_IMAGE 2);
-
-ASSERT TUPLE(3) IS_IN (x JOIN_IMAGE 2);
-
-ASSERT NOT(TUPLE(1) IS_IN (x JOIN_IMAGE 2));
-
-ASSERT TUPLE(4) IS_IN (x JOIN_IMAGE 2);
-
-ASSERT TUPLE(1) IS_IN (x JOIN_IMAGE 1);
-CHECKSAT;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback