summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bv/bool-to-bv.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/bv/bool-to-bv.smt2')
-rw-r--r--test/regress/regress0/bv/bool-to-bv.smt29
1 files changed, 9 insertions, 0 deletions
diff --git a/test/regress/regress0/bv/bool-to-bv.smt2 b/test/regress/regress0/bv/bool-to-bv.smt2
new file mode 100644
index 000000000..9d336af96
--- /dev/null
+++ b/test/regress/regress0/bv/bool-to-bv.smt2
@@ -0,0 +1,9 @@
+; COMMAND-LINE: --bool-to-bv
+; EXPECT: sat
+(set-logic QF_BV)
+(declare-fun x2 () (_ BitVec 3))
+(declare-fun x1 () (_ BitVec 3))
+(declare-fun x0 () (_ BitVec 3))
+(assert (not (bvult (bvudiv (bvudiv (bvudiv x0 x0) x1) x2) x1)))
+(assert (= #b000 x2))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback