summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/hd-sdiv.sy
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/sygus/hd-sdiv.sy')
-rw-r--r--test/regress/regress0/sygus/hd-sdiv.sy16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/regress/regress0/sygus/hd-sdiv.sy b/test/regress/regress0/sygus/hd-sdiv.sy
new file mode 100644
index 000000000..3ac9334b2
--- /dev/null
+++ b/test/regress/regress0/sygus/hd-sdiv.sy
@@ -0,0 +1,16 @@
+; EXPECT: unsat
+; COMMAND-LINE: --cegqi --no-cegqi-si --no-dump-synth
+(set-logic BV)
+
+(define-fun hd01 ((x (BitVec 32))) (BitVec 32) (bvand x #x00000001))
+
+(synth-fun f ((x (BitVec 32))) (BitVec 32)
+ ((Start (BitVec 32) ((bvsdiv Start Start)
+ (bvand Start Start)
+ x
+ #x00000001))))
+
+(declare-var y (BitVec 32))
+(constraint (= (hd01 y) (f y)))
+(check-synth)
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback