Hello,
i'm trying to use Mosek to solve a QP problem.
minimize: 0.5*x*Q*x_t + c*x_t
(no constraints on x)
whereas Q=A*A_t, i.e. is positive semi definite by construction.
I followed the C-Api example:
http://docs.mosek.com/6.0/capi/node007.html#250330792However, I found Mosek to be quite unstable while solving the system.
In many situations I can compute a correct solution, however there are also many configurations of Q and c where I can not get a solution.
Namely the computation fails in many cases because
MSKsolstae solsta;
r = MSK_getsolsta(task, MSK_SOL_ITR, &solsta);
The solsta is often MSK_SOL_STA_UNKNOWN after this call.
I can not find any information in the documentation how this can happen, i.e. what is causing the problem?
Could anybody help me please?
Regards Tobias