summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bv/bv2nat-ground.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/bv/bv2nat-ground.smt2')
-rw-r--r--test/regress/regress1/bv/bv2nat-ground.smt218
1 files changed, 18 insertions, 0 deletions
diff --git a/test/regress/regress1/bv/bv2nat-ground.smt2 b/test/regress/regress1/bv/bv2nat-ground.smt2
new file mode 100644
index 000000000..bfc22850e
--- /dev/null
+++ b/test/regress/regress1/bv/bv2nat-ground.smt2
@@ -0,0 +1,18 @@
+; COMMAND-LINE: --no-check-proofs --no-check-unsat-cores
+; EXPECT: unsat
+(set-logic QF_BVLIA)
+(set-info :status unsat)
+(declare-const a (_ BitVec 32))
+(declare-const b (_ BitVec 32))
+(declare-const c (_ BitVec 32))
+(declare-const d (_ BitVec 32))
+(declare-const e (_ BitVec 32))
+
+(assert (or (= a b) (= a c) (= a d) (= a e)))
+
+(assert (not (= (bv2nat a) (bv2nat b))))
+(assert (not (= (bv2nat a) (bv2nat c))))
+(assert (not (= (bv2nat a) (bv2nat d))))
+(assert (not (= (bv2nat a) (bv2nat e))))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback