Hock and Schittkowski problem 024 (bound and linear constraints) go PSwarm AMPL short = 0; minimize obj: ((x[1] - 3)^2 - 9) * x[2]^3 / (27*sqrt(3)) ; subject to constr1: x[1]/sqrt(3) - x[2] >= 0; subject to constr2: x[1] + sqrt(3)*x[2] >= 0; subject to constr3: -x[1] - sqrt(3)*x[2] >= -6; let x[1] := 1; let x[2] := 1/2; ]]> ############################################################################ # # Hock and Schittkowski problem 024 # ############################################################################