#include <StableSetLPSolution.hh>
Public Member Functions | |
StableSetLPSolution (ABA_MASTER *master, ABA_SUB *sub, int numberOfNodes, double *xVal) | |
~StableSetLPSolution () | |
StableSetMaster * | stableSetMaster () const |
ABA_SUB * | sub () const |
Definition at line 34 of file StableSetLPSolution.hh.
|
Constructor.
Definition at line 31 of file StableSetLPSolution.cpp. 00032 : 00033 ABA_LPSOLUTION<ABA_VARIABLE,ABA_CONSTRAINT> (master), 00034 m_sub(sub) 00035 { 00036 // Number of nodes. 00037 nVarCon_ = numberOfNodes; 00038 00039 // Initialize zVal_. 00040 zVal_.realloc(numberOfNodes); 00041 for (int i=0; i<nVarCon_; i++) { 00042 zVal_[i] = xVal[i]; 00043 } 00044 }
|
|
Destructor. Definition at line 50 of file StableSetLPSolution.cpp.
|
|
Get stable set master.
Definition at line 59 of file StableSetLPSolution.cpp. Referenced by StableSetModKSeparator::applyRanking(), and StableSetModKSeparator::separate(). 00059 { 00060 return (StableSetMaster*)master_; 00061 }
|
|
Return the current subproblem.
Definition at line 69 of file StableSetLPSolution.cpp. Referenced by StableSetModKSeparator::applyRanking(), StableSetModKSeparator::separate(), and CliqueHeuristicsSeparator::separate().
|