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

Commit

Permalink
revert previous
Browse files Browse the repository at this point in the history
  • Loading branch information
shueja committed Nov 14, 2023
1 parent c0551fc commit 0b5ddc9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/optimization/CasADiOpti.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ void CasADiOpti::SetInitial(const casadi::MX& expression, double value) {
opti.set_initial(expression, value);
}
void CasADiOpti::Solve() {
callback = CasADiIterCallback("f", opti.nx(), opti.ng(), opti.np());
auto callback = CasADiIterCallback("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.
Expand Down
2 changes: 0 additions & 2 deletions src/optimization/CasADiOpti.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include <optional>

#include <casadi/casadi.hpp>
#include "CasADiIterCallback.h"

#include "optimization/OptiSys.h"

Expand All @@ -15,7 +14,6 @@ class CasADiOpti {
private:
casadi::Opti opti;
std::optional<casadi::OptiSol> solution;
CasADiIterCallback callback;

public:
casadi::MX DecisionVariable();
Expand Down

0 comments on commit 0b5ddc9

Please sign in to comment.