blob: b01ee0d5ed9bb6aac3d5ab8a5d15d89a007c41cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// qpipopt infeasibility test
H = [2 0;0 8];
f = [0 -32];
A = [-1 0; 0, -1; 1 1];
conUB = [-6 -6 11];
conLB = -1*[%inf %inf %inf];
nbVar = 2;
nbCon = 3;
ub = [%inf %inf];
lb = -1*ub;
// Output
//Converged to a point of local infeasibility.
// lamda =
//
// lower: [0x0 constant]
// upper: [0x0 constant]
// constraint: [0x0 constant]
// output =
//
// Iterations: -1
// ConstrViolation: 0.3752562
// exitflag =
//
// 5
// fopt =
//
// - 21.80307
// xopt =
//
// 5.6247453
// 5.6247438
[xopt,fopt,exitflag,output,lamda] = qpipopt(nbVar,nbCon,H,f,lb,ub,A,conLB,conUB)
|