summaryrefslogtreecommitdiff
path: root/test/regress/regress1
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-08-06 17:33:23 -0500
committerGitHub <noreply@github.com>2018-08-06 17:33:23 -0500
commit352034696fdce868452d097d155f195ea1fa949c (patch)
treed1e148eb8a0a1fdd7d029594995a626dc42cef85 /test/regress/regress1
parent4cd9597f8449bf7117cd76615f7b6a609620c0e9 (diff)
Fixes and improvements for single invocation inference (#2261)
Diffstat (limited to 'test/regress/regress1')
-rw-r--r--test/regress/regress1/sygus/constant-bool-si-all.sy14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/regress/regress1/sygus/constant-bool-si-all.sy b/test/regress/regress1/sygus/constant-bool-si-all.sy
new file mode 100644
index 000000000..eee7956f4
--- /dev/null
+++ b/test/regress/regress1/sygus/constant-bool-si-all.sy
@@ -0,0 +1,14 @@
+; EXPECT: unsat
+; COMMAND-LINE: --sygus-out=status
+(set-logic SAT)
+(synth-fun f () Bool)
+(synth-fun g () Bool)
+(synth-fun h () Bool)
+(synth-fun w () Int)
+
+(constraint (not (= w 0)))
+(constraint f)
+(constraint (not g))
+(constraint h)
+
+(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback