summaryrefslogtreecommitdiff
path: root/test/regress/regress1
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2019-12-04 14:34:46 -0600
committerGitHub <noreply@github.com>2019-12-04 14:34:46 -0600
commit42d1c64f7d7af06d988bf4f6bf3f20836c78a8eb (patch)
tree87999e54bd96bd1c4ac9702af8b3a439f58bb745 /test/regress/regress1
parentf3d40cc254026805259c511dd706d87a130c807e (diff)
Fix single invocation solution construction for multiple function case (#3516)
Diffstat (limited to 'test/regress/regress1')
-rw-r--r--test/regress/regress1/sygus/issue3514.smt213
1 files changed, 13 insertions, 0 deletions
diff --git a/test/regress/regress1/sygus/issue3514.smt2 b/test/regress/regress1/sygus/issue3514.smt2
new file mode 100644
index 000000000..dd6011df9
--- /dev/null
+++ b/test/regress/regress1/sygus/issue3514.smt2
@@ -0,0 +1,13 @@
+; EXPECT: sat
+; COMMAND-LINE: --sygus-inference
+(set-logic ALL)
+(assert
+ (forall ((a Real))
+ (exists ((b Real))
+ (exists ((c Real))
+ (and
+ (< (+ a c) 0.0)
+ (or (distinct a 0.0) (= b 5.0))
+ (distinct (+ b c) 1.0)
+ (< c 1))))))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback