summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bags/disequality.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/bags/disequality.smt2')
-rw-r--r--test/regress/regress1/bags/disequality.smt214
1 files changed, 14 insertions, 0 deletions
diff --git a/test/regress/regress1/bags/disequality.smt2 b/test/regress/regress1/bags/disequality.smt2
new file mode 100644
index 000000000..e49935fac
--- /dev/null
+++ b/test/regress/regress1/bags/disequality.smt2
@@ -0,0 +1,14 @@
+(set-logic ALL)
+(set-info :status sat)
+(declare-fun A () (Bag Int))
+(declare-fun B () (Bag Int))
+(declare-fun C () (Bag Int))
+(declare-fun x () Int)
+(declare-fun y () Int)
+(assert (distinct A B C))
+(assert (> (bag.count x A) 0))
+(assert (> (bag.count y B) 0))
+(assert (= (bag.count x A) (bag.count x B)))
+(assert (= (bag.count y A) (bag.count y B)))
+(assert (distinct x y))
+(check-sat) \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback