summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/sygus')
-rw-r--r--test/regress/regress0/sygus/Makefile.am3
-rw-r--r--test/regress/regress0/sygus/hd-sdiv.sy16
2 files changed, 1 insertions, 18 deletions
diff --git a/test/regress/regress0/sygus/Makefile.am b/test/regress/regress0/sygus/Makefile.am
index b503a65b8..695c52cc6 100644
--- a/test/regress/regress0/sygus/Makefile.am
+++ b/test/regress/regress0/sygus/Makefile.am
@@ -50,8 +50,7 @@ TESTS = commutative.sy \
no-mention.sy \
max2-univ.sy \
strings-small.sy \
- strings-unconstrained.sy \
- hd-sdiv.sy
+ strings-unconstrained.sy
# sygus tests currently taking too long for make regress
EXTRA_DIST = $(TESTS) \
diff --git a/test/regress/regress0/sygus/hd-sdiv.sy b/test/regress/regress0/sygus/hd-sdiv.sy
deleted file mode 100644
index 019b48a1c..000000000
--- a/test/regress/regress0/sygus/hd-sdiv.sy
+++ /dev/null
@@ -1,16 +0,0 @@
-; EXPECT: unsat
-; COMMAND-LINE: --cegqi-si=none --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