summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sygus/nia-max-square-ns.sy
blob: 5d63ab0235d5fb14f768a8cc733e7b58255da6cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; EXPECT: unsat
; COMMAND-LINE: --lang=sygus2 --cegqi-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