summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/inv-example.sy
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2016-05-18 10:06:49 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2016-05-18 10:06:49 -0500
commit2e02c1c2fb999f2f1cdefe867f843c2c46ad0ef0 (patch)
treee9234dd807818316a9029cab5badc62b6874fa67 /test/regress/regress0/sygus/inv-example.sy
parent8768c1079798599bbe27b29bc49087d45857a112 (diff)
Refactor modes for sygus+single invocation. Add option --inst-rlv-cond. Minor fixes for inst max level.
Diffstat (limited to 'test/regress/regress0/sygus/inv-example.sy')
-rw-r--r--test/regress/regress0/sygus/inv-example.sy4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/regress/regress0/sygus/inv-example.sy b/test/regress/regress0/sygus/inv-example.sy
index aafbbd987..b56425964 100644
--- a/test/regress/regress0/sygus/inv-example.sy
+++ b/test/regress/regress0/sygus/inv-example.sy
@@ -1,5 +1,5 @@
; EXPECT: unsat
-; COMMAND-LINE: --cegqi-si --no-dump-synth
+; COMMAND-LINE: --no-dump-synth
(set-logic LIA)
(synth-inv inv-f ((x Int) (y Int) (b Bool)))
(declare-primed-var x Int)
@@ -9,4 +9,4 @@
(define-fun trans-f ((x Int) (y Int) (b Bool) (x! Int) (y! Int) (b! Bool)) Bool (and (and (= b! b) (= y! x)) (ite b (= x! (+ x 10)) (= x! (+ x 12)))))
(define-fun post-f ((x Int) (y Int) (b Bool)) Bool (<= y x))
(inv-constraint inv-f pre-f trans-f post-f)
-(check-synth) \ No newline at end of file
+(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback