// //Non Liner planning command //This method is based on SUMT algorithm. // //Syntax with parameters only. nlp / loop=100 init: x1=1.0; init: x2=1.0; cond:3*x1**2+2*x1*x2+x2**2<=15; cond:x1**3+2*x1*x2+x2**2>=15; min:x1**3+2*x2**3; cond:x1>=0; cond:x2>=0; ; //Syntax with defineFile; nlp defineFile; //defineFile defines Non Liner formulas as follow. --------------------------------------- # nlp minimum; init: x1=1.0; init: x2=1.0; cond:3*x1**2+2*x1*x2+x2**2<=15; cond:x1**3+2*x1*x2+x2**2>=15; min:x1**3+2*x2**3; cond:x1>=0; cond:x2>=0; ---------------------------------------- // //Quation //nlp fomulas needs min or max definition. //init: defines initial value. //cond: defines restrict condition. //# is comment line which can used in defineFile only. //