Open SteveDiamond opened 10 years ago
Thanks for the examples. I think this may be a scaling issue since the problem goes away when K
is somewhat smaller or if you increase feastol
and/or reltol
a bit. We'll look into this.
On a different note, I noticed that the first row of G, h
corresponds to the linear inequality constraint 0 <= 1
(equivalently, 0 + s[0] == 1
) which means that it can be removed.
The solution to both of these problems is
-K/2
. In both cases CVXOPT runs into numerical issues for largeK
. Theget_problem_data
lines give the arguments passed to CVXOPT by CVXPY. CVXPY uses the LDL KKT solver with iterative refinement.