summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus/no-mention.sy
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/sygus/no-mention.sy')
-rw-r--r--test/regress/regress1/sygus/no-mention.sy15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/regress/regress1/sygus/no-mention.sy b/test/regress/regress1/sygus/no-mention.sy
new file mode 100644
index 000000000..f964d6039
--- /dev/null
+++ b/test/regress/regress1/sygus/no-mention.sy
@@ -0,0 +1,15 @@
+; EXPECT: unsat
+; COMMAND-LINE: --sygus-out=status
+(set-logic LIA)
+
+(synth-fun p ((x Int) (y Int)) Int)
+(synth-fun m ((x Int) (y Int)) Int)
+(synth-fun n ((x Int)) Int)
+
+(declare-var x Int)
+(declare-var y Int)
+
+(constraint (>= (m x y) x))
+
+(check-synth)
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback