最优化方法实验之内点法 #include #include #define MAXDEM 10 //This is the optional model: struct MODEL { double (*g[10])(double *); //The object function double (*f)(double *); //The subject functions,the max number is 10 int stNum; //The number of subject functions } Model; //**
基本上不正确
执行倒是能执行,但是求出来的解不对头啊你的函数是f(x)=x1^2+x2^2,约束为x1-1>0吗怎么求解的结果为x1=1.25,x2=0,最优值f=1.5625呢,这明显不对啊
这个~~基本上执行不了啊~