/Users/kmartin/Documents/files/code/cpp/OScpp/COIN-OS/OS/src/OSCommonInterfaces/OSDefaultSolver.cpp

Go to the documentation of this file.
00001 
00017 #include "OSErrorClass.h"
00018 #include "OSDefaultSolver.h"
00019 
00020 #include<iostream>
00021 using std::cout;
00022 using std::endl;
00023 
00024 DefaultSolver::DefaultSolver():
00025         osil(""),
00026         osol(""),
00027         osrl(""),
00028         osinstance(NULL),
00029         osresult(NULL),
00030         insList(""),
00031         sSolverName(""),
00032         bCallbuildSolverInstance( false)
00033 
00034 { 
00035 
00036 
00037 }
00038 
00039 DefaultSolver::~DefaultSolver(){
00040         #ifdef DEBUG
00041         cout << "Default Solver destructor called" << endl;
00042         #endif
00043         //cout << "Start Default Solver Destructor" << endl;
00044         /* we do not delete osinstance since it is not newed in any
00045          * of the solvers, it is newed elesewhere and deleted elsewhere
00046          */
00047         //if(osinstance != NULL) delete osinstance;
00048         //osinstance = NULL;
00049         //if(osresult != NULL) delete osresult;
00050         //osresult = NULL;
00051 }
00052 

Generated on Sat Mar 29 22:38:01 2008 by  doxygen 1.5.3