coin-Cgl
|
Information about where the cut generator is invoked from. More...
#include <CglTreeInfo.hpp>
Public Member Functions | |
CglTreeInfo () | |
Default constructor. | |
CglTreeInfo (const CglTreeInfo &) | |
Copy constructor. | |
virtual CglTreeInfo * | clone () const |
Clone. | |
CglTreeInfo & | operator= (const CglTreeInfo &rhs) |
Assignment operator. | |
virtual | ~CglTreeInfo () |
Destructor. | |
virtual bool | fixes (int, int, int, bool) |
Take action if cut generator can fix a variable (toValue -1 for down, +1 for up) | |
virtual int | initializeFixing (const OsiSolverInterface *) |
Initalizes fixing arrays etc - returns >0 if we want to save info 0 if we don't and -1 if is to be used. | |
Public Attributes | |
int | level |
The level of the search tree node. | |
int | pass |
How many times the cut generator was already invoked in this search tree node. | |
int | formulation_rows |
The number of rows in the original formulation. | |
int | options |
Options 1 - treat costed integers as important 2 - switch off some stuff as variables semi-integer 4 - set global cut flag if at root node 8 - set global cut flag if at root node and first pass 16 - set global cut flag and make cuts globally valid 32 - last round of cuts did nothing - maybe be more aggressive 64 - in preprocessing stage 128 - looks like solution. | |
bool | inTree |
Set true if in tree (to avoid ambiguity at first branch) | |
OsiRowCut ** | strengthenRow |
Replacement array. | |
CoinThreadRandom * | randomNumberGenerator |
Optional pointer to thread specific random number generator. |
Information about where the cut generator is invoked from.
Definition at line 13 of file CglTreeInfo.hpp.
Default constructor.
CglTreeInfo::CglTreeInfo | ( | const CglTreeInfo & | ) |
Copy constructor.
virtual CglTreeInfo::~CglTreeInfo | ( | ) | [virtual] |
Destructor.
virtual CglTreeInfo* CglTreeInfo::clone | ( | ) | const [virtual] |
Clone.
Reimplemented in CglTreeProbingInfo.
CglTreeInfo& CglTreeInfo::operator= | ( | const CglTreeInfo & | rhs | ) |
Assignment operator.
virtual bool CglTreeInfo::fixes | ( | int | , |
int | , | ||
int | , | ||
bool | |||
) | [inline, virtual] |
Take action if cut generator can fix a variable (toValue -1 for down, +1 for up)
Reimplemented in CglTreeProbingInfo.
Definition at line 66 of file CglTreeInfo.hpp.
virtual int CglTreeInfo::initializeFixing | ( | const OsiSolverInterface * | ) | [inline, virtual] |
Initalizes fixing arrays etc - returns >0 if we want to save info 0 if we don't and -1 if is to be used.
Reimplemented in CglTreeProbingInfo.
Definition at line 69 of file CglTreeInfo.hpp.
The level of the search tree node.
Definition at line 16 of file CglTreeInfo.hpp.
How many times the cut generator was already invoked in this search tree node.
Definition at line 19 of file CglTreeInfo.hpp.
The number of rows in the original formulation.
Some generators may not want to consider already generated rows when generating new ones.
Definition at line 22 of file CglTreeInfo.hpp.
Options 1 - treat costed integers as important 2 - switch off some stuff as variables semi-integer 4 - set global cut flag if at root node 8 - set global cut flag if at root node and first pass 16 - set global cut flag and make cuts globally valid 32 - last round of cuts did nothing - maybe be more aggressive 64 - in preprocessing stage 128 - looks like solution.
Definition at line 33 of file CglTreeInfo.hpp.
bool CglTreeInfo::inTree |
Set true if in tree (to avoid ambiguity at first branch)
Definition at line 35 of file CglTreeInfo.hpp.
OsiRowCut** CglTreeInfo::strengthenRow |
Replacement array.
Before Branch and Cut it may be beneficial to strengthen rows rather than adding cuts. If this array is not NULL then the cut generator can place a pointer to the stronger cut in this array which is number of rows in size.
A null (i.e. zero elements and free rhs) cut indicates that the row is useless and can be removed.
The calling function can then replace those rows.
Definition at line 45 of file CglTreeInfo.hpp.
CoinThreadRandom* CglTreeInfo::randomNumberGenerator |
Optional pointer to thread specific random number generator.
Definition at line 47 of file CglTreeInfo.hpp.