OS
2.10.1
|
The CsdpSolver class solves problems using Csdp. More...
#include <OSCsdpSolver.h>
Public Member Functions | |
CsdpSolver () | |
the CsdpSolver class constructor More... | |
virtual | ~CsdpSolver () |
the CsdpSolver class destructor More... | |
virtual void | solve () throw (ErrorClass) |
solve results in an instance being read into the Csdp data structures and optimized More... | |
virtual void | buildSolverInstance () throw (ErrorClass) |
The implementation of the virtual functions. More... | |
virtual void | setSolverOptions () throw (ErrorClass) |
The implementation of the virtual functions. More... | |
void | dataEchoCheck () |
use this for debugging, print out the instance that the solver thinks it has and compare this with the OSiL file More... | |
![]() | |
DefaultSolver () | |
default constructor. More... | |
virtual | ~DefaultSolver ()=0 |
default destructor. More... | |
Public Attributes | |
OSiLReader * | m_osilreader |
m_osilreader is an OSiLReader object used to create an osinstance from an osil string if needed More... | |
OSoLReader * | m_osolreader |
m_osolreader is an OSoLReader object used to create an osoption from an osol string if needed More... | |
![]() | |
std::string | osil |
osil holds the problem instance as a std::string More... | |
std::string | osol |
osol holds the options for the solver More... | |
std::string | osrl |
osrl holds the solution or result of the model More... | |
OSInstance * | osinstance |
osinstance holds the problem instance in-memory as an OSInstance object More... | |
OSOption * | osoption |
osoption holds the solver options in-memory as an OSOption object More... | |
OSResult * | osresult |
osresult holds the solution or result of the model in-memory as an OSResult object More... | |
std::string | sSolverName |
sSolverName is the name of the Coin solver used, e.g. More... | |
bool | bCallbuildSolverInstance |
bCallbuildSolverInstance is set to true if buildSolverService has been called More... | |
bool | bSetSolverOptions |
bSetSolverOptions is set to true if setSolverOptions has been called, false otherwise More... | |
The CsdpSolver class solves problems using Csdp.
Definition at line 72 of file OSCsdpSolver.h.
CsdpSolver::CsdpSolver | ( | ) |
the CsdpSolver class constructor
|
virtual |
the CsdpSolver class destructor
|
virtual |
solve results in an instance being read into the Csdp data structures and optimized
Implements DefaultSolver.
|
virtual |
|
virtual |
void CsdpSolver::dataEchoCheck | ( | ) |
use this for debugging, print out the instance that the solver thinks it has and compare this with the OSiL file
OSiLReader* CsdpSolver::m_osilreader |
m_osilreader is an OSiLReader object used to create an osinstance from an osil string if needed
Definition at line 127 of file OSCsdpSolver.h.
OSoLReader* CsdpSolver::m_osolreader |
m_osolreader is an OSoLReader object used to create an osoption from an osol string if needed
Definition at line 133 of file OSCsdpSolver.h.