summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/inv-unused.sy
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/sygus/inv-unused.sy')
-rw-r--r--test/regress/regress0/sygus/inv-unused.sy13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/regress/regress0/sygus/inv-unused.sy b/test/regress/regress0/sygus/inv-unused.sy
deleted file mode 100644
index 91ba95d39..000000000
--- a/test/regress/regress0/sygus/inv-unused.sy
+++ /dev/null
@@ -1,13 +0,0 @@
-; EXPECT: unsat
-; COMMAND-LINE: --sygus-out=status
-(set-logic LIA)
-(synth-inv inv-f ((x Int) (y Int) (b Bool)))
-(declare-primed-var x Int)
-(declare-primed-var y Int)
-(declare-primed-var b Bool)
-(define-fun pre-f ((x Int) (y Int) (b Bool)) Bool (and (>= x 5) (<= x 9)))
-(define-fun trans-f ((x Int) (y Int) (b Bool) (x! Int) (y! Int) (b! Bool)) Bool (= x! (+ x 1)))
-(define-fun post-f ((x Int) (y Int) (b Bool)) Bool (> x 0))
-(inv-constraint inv-f pre-f trans-f post-f)
-; invariant does not depend on arguments y and b
-(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback