summaryrefslogtreecommitdiff
path: root/test/regress/regress0/parser/bv_arity_smt2.6.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/parser/bv_arity_smt2.6.smt2')
-rw-r--r--test/regress/regress0/parser/bv_arity_smt2.6.smt213
1 files changed, 13 insertions, 0 deletions
diff --git a/test/regress/regress0/parser/bv_arity_smt2.6.smt2 b/test/regress/regress0/parser/bv_arity_smt2.6.smt2
new file mode 100644
index 000000000..437d80f56
--- /dev/null
+++ b/test/regress/regress0/parser/bv_arity_smt2.6.smt2
@@ -0,0 +1,13 @@
+; COMMAND-LINE: --strict-parsing
+(set-info :status unsat)
+(set-logic QF_BV)
+(declare-const x (_ BitVec 8))
+(declare-const y (_ BitVec 8))
+(declare-const z (_ BitVec 8))
+(assert (or (not (= (bvadd x y z) (bvadd (bvadd x y) z)))
+ (not (= (bvmul x y z) (bvmul (bvmul x y) z)))
+ (not (= (bvand x y z) (bvand (bvand x y) z)))
+ (not (= (bvor x y z) (bvor (bvor x y) z)))
+ (not (= (bvxor x y z) (bvxor (bvxor x y) z)))
+ (not (= (bvxnor x y z) (bvxnor (bvxnor x y) z)))))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback