Abstract interface satisfied by all solvers. More...
#include <roboptim/core/generic-solver.hh>
Public Types | |
| enum | solutions { SOLVER_NO_SOLUTION, SOLVER_VALUE, SOLVER_VALUE_WARNINGS, SOLVER_ERROR } |
| Define the kind of solution which has been found. More... | |
| typedef Function::vector_t | vector_t |
| Vector type imported from function class. More... | |
| typedef boost::variant< NoSolution, Result, ResultWithWarnings, SolverError > | result_t |
| Result type. More... | |
Public Member Functions | |
| void | reset () throw () |
| Force to restart the optimization. More... | |
| virtual void | solve ()=0 throw () |
| Solve the problem. More... | |
| const result_t & | minimum () throw () |
| Returns the function minimum This solves the problem automatically, if it has not yet been solved. More... | |
| virtual std::ostream & | print (std::ostream &) const throw () |
| Display the solver on the specified output stream. More... | |
| solutions | minimumType () throw () |
| Determine real minimum type. More... | |
| template<typename T > | |
| const T & | getMinimum () throw (boost::bad_get) |
| Get real result. More... | |
Constructors and destructors. | |
| GenericSolver () throw () | |
| GenericSolver (const GenericSolver &) throw () | |
| virtual | ~GenericSolver () throw () |
Protected Attributes | |
| result_t | result_ |
| /brief Optimization result. More... | |
Static Protected Attributes | |
| static log4cxx::LoggerPtr | logger |
| Pointer to function logger (see log4cxx documentation). More... | |
Abstract interface satisfied by all solvers.
| typedef boost::variant<NoSolution, Result, ResultWithWarnings, SolverError> roboptim::GenericSolver::result_t |
Result type.
Uses a Boost.Variant to represent the different possible results:
Vector type imported from function class.
|
explicit | |||||||||||||
|
explicit | ||||||||||||||
|
virtual | |||||||||||||
|
inline | |||||||||||||
Get real result.
Optimization results is wrapped in a Boost.Variant class, this method has to be used to retrieve the real result type.
| const GenericSolver::result_t & roboptim::GenericSolver::minimum | ( | ) | ||
| throw | ( | |||
| ) | ||||
Returns the function minimum This solves the problem automatically, if it has not yet been solved.
References result_, solve(), and SOLVER_NO_SOLUTION.
|
inline | |||||||||||||
Determine real minimum type.
|
virtual | ||||||||||||||
Display the solver on the specified output stream.
| o | output stream used for display |
Reimplemented in roboptim::Solver< F, C >, and roboptim::Solver< Function, boost::mpl::vector< Function > >.
Referenced by roboptim::operator<<().
| void roboptim::GenericSolver::reset | ( | ) | ||
| throw | ( | |||
| ) | ||||
|
pure virtual | |||||||||||||
Solve the problem.
Called automatically by getMinimum if required.
Implemented in roboptim::DummySolverLastState, and roboptim::DummySolver.
Referenced by minimum().
|
staticprotected |
Pointer to function logger (see log4cxx documentation).
Referenced by reset().
|
protected |
/brief Optimization result.
Referenced by minimum(), reset(), roboptim::DummySolver::solve(), and roboptim::DummySolverLastState::solve().