Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
maybe this time
Browse files Browse the repository at this point in the history
  • Loading branch information
shueja committed Nov 14, 2023
1 parent 1a900d4 commit 494628d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/optimization/CasADiOpti.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ void CasADiOpti::SetInitial(const casadi::MX& expression, double value) {
opti.set_initial(expression, value);
}
void CasADiOpti::Solve() {
auto callback = new CasADiIterCallback("f", opti.nx(), opti.ng(), opti.np());
CasADiIterCallback cb("f", opti.nx(), opti.ng(), opti.np());
#ifdef DEBUG_OUTPUT
// I don't try-catch this next line since it should always work.
// I'm assuming the dynamic lib is on the path and casadi can find it.
auto pluginOptions = casadi::Dict();
pluginOptions["iteration_callback"] = *callback;
pluginOptions["iteration_callback"] = cb;
//auto reference = &pluginOptions["iteration_callback"];
opti.solver("ipopt", pluginOptions);
#else
Expand Down

0 comments on commit 494628d

Please sign in to comment.