summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/max2-univ.sy
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/sygus/max2-univ.sy')
-rw-r--r--test/regress/regress0/sygus/max2-univ.sy12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/regress/regress0/sygus/max2-univ.sy b/test/regress/regress0/sygus/max2-univ.sy
new file mode 100644
index 000000000..3f8aac3b2
--- /dev/null
+++ b/test/regress/regress0/sygus/max2-univ.sy
@@ -0,0 +1,12 @@
+; EXPECT: unsat
+; COMMAND-LINE: --cegqi --no-dump-synth
+; Synthesize the maximum of 2 integers, but property has 4 variables (requires 2 passes)
+(set-logic LIA)
+(synth-fun max2 ((x Int) (y Int)) Int)
+(declare-var x Int)
+(declare-var y Int)
+(declare-var r Int)
+(declare-var w Int)
+(constraint (=> (< r 0) (=> (or (and (= x w) (= y (+ w r))) (and (= x (+ w r)) (= y w))) (= (max2 x y) w))))
+(check-synth)
+
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback