summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-05-14 11:33:14 -0500
committerGitHub <noreply@github.com>2018-05-14 11:33:14 -0500
commitc308c094548bcd9bee59e33334d147a9afe97018 (patch)
tree0191612aa290c1f3bcf915f140e0494cbb12d1e9 /test/regress/regress1/sygus
parent33420e77e9f7ee7a429708db3a7f6c28aef7d0ec (diff)
Add regressions, change defaults. (#1911)
Diffstat (limited to 'test/regress/regress1/sygus')
-rw-r--r--test/regress/regress1/sygus/large-const-simp.sy13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/regress/regress1/sygus/large-const-simp.sy b/test/regress/regress1/sygus/large-const-simp.sy
new file mode 100644
index 000000000..31f660b2a
--- /dev/null
+++ b/test/regress/regress1/sygus/large-const-simp.sy
@@ -0,0 +1,13 @@
+; EXPECT: unsat
+; COMMAND-LINE: --cegqi-si=none --sygus-out=status --sygus-add-const-grammar
+(set-logic LIA)
+
+(synth-fun lc ((x Int)) Int)
+
+(declare-var x Int)
+(declare-var y Int)
+
+(constraint (> (lc x) 1500))
+(constraint (< (lc x) 1600))
+
+(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback