summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/twolets2-orig.sy
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2015-07-25 16:40:54 +0200
committerajreynol <andrew.j.reynolds@gmail.com>2015-07-25 16:40:54 +0200
commitc0079b3110a81f2ff993b7f86782266380dd102e (patch)
treec39d61ecc3857ebe5af75bd41ef7c11353e0824a /test/regress/regress0/sygus/twolets2-orig.sy
parent7dcb635088e73b508dbe00ae7fe08dae99968416 (diff)
Add option --sygus-inv-templ for synthesizing strengthening/weakening of pre/post conditions. Dump synth by default in sygus, update regressions. Set better defaults for induction. Fix bug in related to IFF and EQUAL in sygus grammar.
Diffstat (limited to 'test/regress/regress0/sygus/twolets2-orig.sy')
-rw-r--r--test/regress/regress0/sygus/twolets2-orig.sy30
1 files changed, 15 insertions, 15 deletions
diff --git a/test/regress/regress0/sygus/twolets2-orig.sy b/test/regress/regress0/sygus/twolets2-orig.sy
index c1066277e..91bab5ece 100644
--- a/test/regress/regress0/sygus/twolets2-orig.sy
+++ b/test/regress/regress0/sygus/twolets2-orig.sy
@@ -1,25 +1,25 @@
; EXPECT: unsat
-; COMMAND-LINE: --cegqi-si
+; COMMAND-LINE: --cegqi-si --no-dump-synth
(set-logic LIA)
(synth-fun f1 ((x Int)) Int
- (
- (Start Int (
- (let ((y Int CInt) (z Int CInt)) (+ (+ y x) z))
- )
- )
- (CInt Int (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
+ (
+ (Start Int (
+ (let ((y Int CInt) (z Int CInt)) (+ (+ y x) z))
+ )
+ )
+ (CInt Int (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
- )
+ )
)
(synth-fun f2 ((x Int)) Int
- (
- (Start Int (x
- (let ((y Int Start) (z Int CInt)) (+ (+ y x) z))
- )
- )
- (CInt Int (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
+ (
+ (Start Int (x
+ (let ((y Int Start) (z Int CInt)) (+ (+ y x) z))
+ )
+ )
+ (CInt Int (0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15))
- )
+ )
)
(declare-var x1 Int)
(declare-var x2 Int)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback