summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus/nia-max-square-ns.sy
blob: 1177be5e771d095a35a0e1829b5819088bfd248b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; EXPECT: unsat
; COMMAND-LINE: --lang=sygus2 --sygus-si=all --sygus-out=status --nl-ext-tplanes
(set-logic NIA)

(synth-fun max ((x Int) (y Int)) Int)

(declare-var x Int)
(declare-var y Int)

(constraint (>= (max x y) (* x x)))
(constraint (>= (max x y) (* y y)))

(check-synth)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback