the KnitroSolver class solves problems using Knitro. More...
#include <OSKnitroSolver.h>
Public Member Functions | |
KnitroSolver () | |
the KnitroSolver class constructor | |
~KnitroSolver () | |
the KnitroSolver class constructor | |
virtual void | buildSolverInstance () throw (ErrorClass) |
buildSolverInstance is a virtual function -- the actual solvers will implement their own buildSolverInstance method -- the solver instance is the instance the individual solver sees in its API | |
virtual void | setSolverOptions () throw (ErrorClass) |
The implementation of the virtual functions. | |
virtual void | solve () throw (ErrorClass) |
solve results in an instance being read into the Knitro data structrues and optimized | |
void | dataEchoCheck () |
use this for debugging, print out the instance that the solver thinks it has and compare this with the OSiL file | |
Private Member Functions | |
Methods to block default compiler methods. | |
The compiler automatically generates the following three methods. Since the default compiler implementation is generally not what you want (for all but the most simple classes), we usually put the declarations of these methods in the private section and never implement them. This prevents the compiler from implementing an incorrect "default" behavior without us knowing. (See Scott Meyers book, "Effective C++") | |
KnitroSolver (const KnitroSolver &) | |
KnitroSolver & | operator= (const KnitroSolver &) |
Private Attributes | |
OSrLWriter * | osrlwriter |
std::string | knitroErrorMsg |
the KnitroSolver class solves problems using Knitro.
Definition at line 144 of file OSKnitroSolver.h.
KnitroSolver::KnitroSolver | ( | ) |
the KnitroSolver class constructor
Definition at line 573 of file OSKnitroSolver.cpp.
KnitroSolver::~KnitroSolver | ( | ) |
the KnitroSolver class constructor
Definition at line 617 of file OSKnitroSolver.cpp.
KnitroSolver::KnitroSolver | ( | const KnitroSolver & | ) | [private] |
void KnitroSolver::buildSolverInstance | ( | ) | throw (ErrorClass) [virtual] |
buildSolverInstance is a virtual function -- the actual solvers will implement their own buildSolverInstance method -- the solver instance is the instance the individual solver sees in its API
Implements DefaultSolver.
Definition at line 582 of file OSKnitroSolver.cpp.
void KnitroSolver::setSolverOptions | ( | ) | throw (ErrorClass) [virtual] |
void KnitroSolver::solve | ( | ) | throw (ErrorClass) [virtual] |
solve results in an instance being read into the Knitro data structrues and optimized
Implements DefaultSolver.
Definition at line 633 of file OSKnitroSolver.cpp.
void KnitroSolver::dataEchoCheck | ( | ) |
use this for debugging, print out the instance that the solver thinks it has and compare this with the OSiL file
Definition at line 878 of file OSKnitroSolver.cpp.
KnitroSolver& KnitroSolver::operator= | ( | const KnitroSolver & | ) | [private] |
OSrLWriter* KnitroSolver::osrlwriter [private] |
Definition at line 180 of file OSKnitroSolver.h.
std::string KnitroSolver::knitroErrorMsg [private] |
Definition at line 197 of file OSKnitroSolver.h.