#This is problem 4.2 from #http://www.cs.cas.cz/ics/reports/v798-00.ps # use NDA_MIN var x1 := -2; var x2 := -1; var f{1..3}; option substout 1; s.t. f1def: f[1] = x1^2+x2^2+x1*x2-1; s.t. f2def: f[2] = sin(x1); s.t. f3def: f[3] = -cos(x1); minimize obj{i in 1..3}: f[i]; s.t. c1: -3*x1-x2-2.5 >=0;