diff options
Diffstat (limited to 'tests/general_tests/qpipopt/qpipopt_logical_2.sce')
-rw-r--r-- | tests/general_tests/qpipopt/qpipopt_logical_2.sce | 55 |
1 files changed, 32 insertions, 23 deletions
diff --git a/tests/general_tests/qpipopt/qpipopt_logical_2.sce b/tests/general_tests/qpipopt/qpipopt_logical_2.sce index d00b07b..027c9c5 100644 --- a/tests/general_tests/qpipopt/qpipopt_logical_2.sce +++ b/tests/general_tests/qpipopt/qpipopt_logical_2.sce @@ -1,44 +1,53 @@ -// A simple example without constraints -A= []; -conLB=[]; -conUB = []; -lb=[]; -ub=[]; -f=[2 -35 -47]'; -H =[5 -2 -1; -2 4 3; -1 3 5]; -nbVar = 3; -nbCon = 0; - +//Find x in R^6 such that: +// An example with constraints, variable bounds and intial guess +A= [1,-1,1,0,3,1; +-1,0,-3,-4,5,6; +2,5,3,0,1,0 +0,1,0,1,2,-1; +-1,0,2,1,1,0]; +conLB=[1;2;3;-%inf;-%inf]; +conUB = [1;2;3;-1;2.5]; +lb=[-1000;-10000; 0; -1000; -1000; -1000]; +ub=[10000; 100; 1.5; 100; 100; 1000]; +//and minimize 0.5*x'*H*x + f'*x with +f=[1; 2; 3; 4; 5; 6]; H=eye(6,6); +nbVar = 6; +nbCon = 5; +x0 = repmat(0,nbVar,1); //Output // //Optimal Solution Found. -// -// lower: [0,0,0] -// upper: [0,0,0] -// constraint: [0x0 constant] +// +// lower: [1x6 constant] +// upper: [1x6 constant] +// constraint: [1x5 constant] // // lambda // -// Iterations: 1 -// ConstrViolation: 0 +// Iterations: 13 +// ConstrViolation: 9.968D-09 // output // // 0 // // exitflag // -// - 249. +// - 14.843248 // // fopt // -// 3. -// 5. -// 7. +// 1.7975426 +// - 0.3381487 +// 0.1633880 +// - 4.9884023 +// 0.6054943 +// - 3.1155623 // // xopt -[xopt,fopt,exitflag,output,lambda]=qpipopt(nbVar,nbCon,H,f,lb,ub,A,conLB,conUB); -disp("xopt",xopt,"fopt",fopt,"exitflag",exitflag,"output",output,"lambda",lambda); +[xopt,fopt,exitflag,output,lambda]=qpipopt(nbVar,nbCon,H,f,lb,ub,A,conLB,conUB,x0); + +disp("xopt",xopt,"fopt",fopt,"exitflag",exitflag,"output",output,"lambda",lambda) |