Skip to content
Snippets Groups Projects
Commit bd882a3b authored by stevet's avatar stevet
Browse files

assert hessian only in qp case

parent 0bb5fbe4
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,6 @@ ResultData solve( const MatrixXd & A,
assert (!(is_nan(D)));
assert (!(is_nan(d)));
assert (!(is_nan(initGuess)));
assert (!(is_nan(Hess)));
ResultData res;
res.x = initGuess;
switch(solver)
......@@ -117,6 +116,7 @@ ResultData solve( const MatrixXd & A,
case SOLVER_QUADPROG:
//case SOLVER_QUADPROG_SPARSE:
{
assert (!(is_nan(Hess)));
std::pair<MatrixXd,VectorXd> CIp = addBoundaryConstraintsQuadProg(minBounds, maxBounds, A, b);
VectorXd ce0 = -d;
tsid::solvers::EiquadprogFast QPsolver = tsid::solvers::EiquadprogFast();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment