summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sygus/nia-max-square-ns.sy
blob: 96baab7fe32df5dc1b269c5e120596fda8328acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; EXPECT: unsat
; COMMAND-LINE: --cegqi-si=all --no-dump-synth --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