summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus
diff options
context:
space:
mode:
authorHaniel Barbosa <hanielbbarbosa@gmail.com>2018-08-22 12:18:14 -0500
committerAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-08-22 12:18:14 -0500
commit9557a5b17781e23e61f9393289fb77dd00386258 (patch)
treeeee93c76e932d9a0f8a517514a9184984f3034f6 /test/regress/regress0/sygus
parentc74797f4cbded274e2dca6fee5e0efb439da03f5 (diff)
Adds regression test for automatic generation of SyGuS BV grammars (#2345)
Diffstat (limited to 'test/regress/regress0/sygus')
-rw-r--r--test/regress/regress0/sygus/hd-05-d1-prog-nogrammar.sy10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/regress/regress0/sygus/hd-05-d1-prog-nogrammar.sy b/test/regress/regress0/sygus/hd-05-d1-prog-nogrammar.sy
new file mode 100644
index 000000000..71af1e916
--- /dev/null
+++ b/test/regress/regress0/sygus/hd-05-d1-prog-nogrammar.sy
@@ -0,0 +1,10 @@
+; COMMAND-LINE: --sygus-out=status --cegqi-si=none
+; EXPECT: unsat
+
+(set-logic BV)
+
+(synth-fun f ((x (BitVec 32))) (BitVec 32))
+
+(declare-var x (BitVec 32))
+(constraint (= (bvor x #x00000001) (f x)))
+(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback