An interface to IPOPT, fully hiding its implementation. More...
#include <ipopt_solver.h>
Public Member Functions | |
int | GetReturnStatus () |
Get the return status for the optimization. | |
double | GetTotalWallclockTime () |
Get the total wall clock time for the optimization, including function evaluations. | |
IpoptSolver () | |
void | SetOption (const std::string &name, const std::string &value) |
void | SetOption (const std::string &name, int value) |
void | SetOption (const std::string &name, double value) |
void | Solve (Problem &nlp) override |
Creates an IpoptAdapter and solves the NLP. | |
virtual | ~IpoptSolver () |
Private Attributes | |
std::shared_ptr < Ipopt::IpoptApplication > | ipopt_app_ |
int | status_ |
An interface to IPOPT, fully hiding its implementation.
To set specific options, see: https://www.coin-or.org/Ipopt/documentation/node40.html
Definition at line 48 of file ipopt_solver.h.
Definition at line 32 of file ipopt_solver.cc.
virtual ifopt::IpoptSolver::~IpoptSolver | ( | ) | [virtual] |
Get the return status for the optimization.
Definition at line 114 of file ipopt_solver.cc.
double ifopt::IpoptSolver::GetTotalWallclockTime | ( | ) |
Get the total wall clock time for the optimization, including function evaluations.
Definition at line 108 of file ipopt_solver.cc.
void ifopt::IpoptSolver::SetOption | ( | const std::string & | name, |
const std::string & | value | ||
) |
Set options for the IPOPT solver. A complete list can be found here: https://www.coin-or.org/Ipopt/documentation/node40.html
Definition at line 90 of file ipopt_solver.cc.
void ifopt::IpoptSolver::SetOption | ( | const std::string & | name, |
int | value | ||
) |
Definition at line 96 of file ipopt_solver.cc.
void ifopt::IpoptSolver::SetOption | ( | const std::string & | name, |
double | value | ||
) |
Definition at line 102 of file ipopt_solver.cc.
void ifopt::IpoptSolver::Solve | ( | Problem & | nlp | ) | [override, virtual] |
Creates an IpoptAdapter and solves the NLP.
[in/out] | nlp The specific problem. |
Implements ifopt::Solver.
Definition at line 64 of file ipopt_solver.cc.
std::shared_ptr<Ipopt::IpoptApplication> ifopt::IpoptSolver::ipopt_app_ [private] |
Definition at line 76 of file ipopt_solver.h.
int ifopt::IpoptSolver::status_ [private] |
Definition at line 77 of file ipopt_solver.h.