Skip to content

Commit

Permalink
Fix bug for which warm_starting parameter was ignored in osqp plugin (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
LoreMoretti authored Nov 12, 2024
1 parent 8465681 commit 1a3c6e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/osqp/QpSolversEigenOsqp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ bool OsqpSolver::setBooleanParameter(const std::string& settingName, bool value)
{
osqpEigenSolver.settings()->setWarmStart(value);
return true;
} else if (settingName == "warm_start")
} else if (settingName == "warm_starting")
{
osqpEigenSolver.settings()->setWarmStart(value);
return true;
Expand Down

0 comments on commit 1a3c6e6

Please sign in to comment.