Collections of row cuts and column cuts. More...
#include <OsiCuts.hpp>
Classes | |
class | const_iterator |
Const Iterator. More... | |
class | iterator |
Iterator. More... | |
class | OsiCutCompare |
Public Member Functions | |
Inserting a cut into collection | |
void | insert (const OsiRowCut &rc) |
Insert a row cut. | |
void | insertIfNotDuplicate (OsiRowCut &rc, CoinAbsFltEq treatAsSame=CoinAbsFltEq(1.0e-12)) |
Insert a row cut unless it is a duplicate - cut may get sorted. | |
void | insertIfNotDuplicate (OsiRowCut &rc, CoinRelFltEq treatAsSame) |
Insert a row cut unless it is a duplicate - cut may get sorted. | |
void | insert (const OsiColCut &cc) |
Insert a column cut. | |
void | insert (OsiRowCut *&rcPtr) |
Insert a row cut. | |
void | insert (OsiColCut *&ccPtr) |
Insert a column cut. | |
void | insert (const OsiCuts &cs) |
Insert a set of cuts. | |
Number of cuts in collection | |
int | sizeRowCuts () const |
Number of row cuts in collection. | |
int | sizeColCuts () const |
Number of column cuts in collection. | |
int | sizeCuts () const |
Number of cuts in collection. | |
Debug stuff | |
void | printCuts () const |
Print cuts in collection. | |
Get a cut from collection | |
OsiRowCut * | rowCutPtr (int i) |
Get pointer to i'th row cut. | |
const OsiRowCut * | rowCutPtr (int i) const |
Get const pointer to i'th row cut. | |
OsiColCut * | colCutPtr (int i) |
Get pointer to i'th column cut. | |
const OsiColCut * | colCutPtr (int i) const |
Get const pointer to i'th column cut. | |
OsiRowCut & | rowCut (int i) |
Get reference to i'th row cut. | |
const OsiRowCut & | rowCut (int i) const |
Get const reference to i'th row cut. | |
OsiColCut & | colCut (int i) |
Get reference to i'th column cut. | |
const OsiColCut & | colCut (int i) const |
Get const reference to i'th column cut. | |
const OsiCut * | mostEffectiveCutPtr () const |
Get const pointer to the most effective cut. | |
OsiCut * | mostEffectiveCutPtr () |
Get pointer to the most effective cut. | |
Deleting cut from collection | |
void | eraseRowCut (int i) |
Remove i'th row cut from collection. | |
void | eraseColCut (int i) |
Remove i'th column cut from collection. | |
OsiRowCut * | rowCutPtrAndZap (int i) |
Get pointer to i'th row cut and remove ptr from collection. | |
void | dumpCuts () |
Clear all row cuts without deleting them. | |
void | eraseAndDumpCuts (const std::vector< int > to_erase) |
Selective delete and clear for row cuts. | |
Sorting collection | |
void | sort () |
Cuts with greatest effectiveness are first. | |
Iterators | |
Example of using an iterator to sum effectiveness of all cuts in the collection. double sumEff=0.0; for ( OsiCuts::iterator it=cuts.begin(); it!=cuts.end(); ++it ) sumEff+= (*it)->effectiveness(); | |
iterator | begin () |
Get iterator to beginning of collection. | |
const_iterator | begin () const |
Get const iterator to beginning of collection. | |
iterator | end () |
Get iterator to end of collection. | |
const_iterator | end () const |
Get const iterator to end of collection. | |
Constructors and destructors | |
OsiCuts () | |
Default constructor. | |
OsiCuts (const OsiCuts &) | |
Copy constructor. | |
OsiCuts & | operator= (const OsiCuts &rhs) |
Assignment operator. | |
virtual | ~OsiCuts () |
Destructor. |
Private Member Functions | |
Private methods | |
void | gutsOfCopy (const OsiCuts &source) |
Copy internal data. | |
void | gutsOfDestructor () |
Delete internal data. |
Private Attributes | |
Private member data | |
OsiVectorRowCutPtr | rowCutPtrs_ |
Vector of row cuts pointers. | |
OsiVectorColCutPtr | colCutPtrs_ |
Vector of column cuts pointers. |
Friends | |
void | OsiCutsUnitTest () |
A function that tests the methods in the OsiCuts class. |
Collections of row cuts and column cuts.
Definition at line 20 of file OsiCuts.hpp.
OsiCuts::OsiCuts | ( | ) |
Default constructor.
OsiCuts::OsiCuts | ( | const OsiCuts & | ) |
Copy constructor.
|
virtual |
Destructor.
|
inline |
Insert a row cut.
Definition at line 307 of file OsiCuts.hpp.
void OsiCuts::insertIfNotDuplicate | ( | OsiRowCut & | rc, |
CoinAbsFltEq | treatAsSame = CoinAbsFltEq(1.0e-12) |
||
) |
Insert a row cut unless it is a duplicate - cut may get sorted.
Duplicate is defined as CoinAbsFltEq says same
void OsiCuts::insertIfNotDuplicate | ( | OsiRowCut & | rc, |
CoinRelFltEq | treatAsSame | ||
) |
Insert a row cut unless it is a duplicate - cut may get sorted.
Duplicate is defined as CoinRelFltEq says same
|
inline |
Insert a column cut.
Definition at line 313 of file OsiCuts.hpp.
|
inline |
Insert a row cut.
The OsiCuts object takes control of the cut object. On return, rcPtr
is NULL.
Definition at line 320 of file OsiCuts.hpp.
|
inline |
Insert a column cut.
The OsiCuts object takes control of the cut object. On return ccPtr
is NULL.
Definition at line 325 of file OsiCuts.hpp.
|
inline |
Insert a set of cuts.
Definition at line 348 of file OsiCuts.hpp.
|
inline |
Number of row cuts in collection.
Definition at line 375 of file OsiCuts.hpp.
|
inline |
Number of column cuts in collection.
Definition at line 377 of file OsiCuts.hpp.
|
inline |
Number of cuts in collection.
Definition at line 379 of file OsiCuts.hpp.
|
inline |
Print cuts in collection.
Definition at line 424 of file OsiCuts.hpp.
|
inline |
Get pointer to i'th row cut.
Definition at line 387 of file OsiCuts.hpp.
|
inline |
Get const pointer to i'th row cut.
Definition at line 385 of file OsiCuts.hpp.
|
inline |
Get pointer to i'th column cut.
Definition at line 388 of file OsiCuts.hpp.
|
inline |
Get const pointer to i'th column cut.
Definition at line 386 of file OsiCuts.hpp.
|
inline |
Get reference to i'th row cut.
Definition at line 392 of file OsiCuts.hpp.
|
inline |
Get const reference to i'th row cut.
Definition at line 390 of file OsiCuts.hpp.
|
inline |
Get reference to i'th column cut.
Definition at line 393 of file OsiCuts.hpp.
|
inline |
Get const reference to i'th column cut.
Definition at line 391 of file OsiCuts.hpp.
|
inline |
Get const pointer to the most effective cut.
Definition at line 398 of file OsiCuts.hpp.
|
inline |
Get pointer to the most effective cut.
Definition at line 404 of file OsiCuts.hpp.
|
inline |
Remove i'th row cut from collection.
Definition at line 443 of file OsiCuts.hpp.
|
inline |
Remove i'th column cut from collection.
Definition at line 448 of file OsiCuts.hpp.
|
inline |
Get pointer to i'th row cut and remove ptr from collection.
Definition at line 455 of file OsiCuts.hpp.
|
inline |
Clear all row cuts without deleting them.
Handy in case one wants to use CGL without managing cuts in one of the OSI containers. Client is ultimately responsible for deleting the data structures holding the row cuts.
Definition at line 462 of file OsiCuts.hpp.
|
inline |
Selective delete and clear for row cuts.
Deletes the cuts specified in to_erase
then clears remaining cuts without deleting them. A hybrid of eraseRowCut(int) and dumpCuts(). Client is ultimately responsible for deleting the data structures for row cuts not specified in to_erase
.
Definition at line 466 of file OsiCuts.hpp.
|
inline |
Cuts with greatest effectiveness are first.
Definition at line 365 of file OsiCuts.hpp.
|
inline |
Get iterator to beginning of collection.
Definition at line 248 of file OsiCuts.hpp.
|
inline |
Get const iterator to beginning of collection.
Definition at line 250 of file OsiCuts.hpp.
|
inline |
Get iterator to end of collection.
Definition at line 252 of file OsiCuts.hpp.
|
inline |
Get const iterator to end of collection.
Definition at line 254 of file OsiCuts.hpp.
|
private |
Copy internal data.
|
private |
Delete internal data.
|
friend |
A function that tests the methods in the OsiCuts class.
The only reason for it not to be a member method is that this way it doesn't have to be compiled into the library. And that's a gain, because the library should be compiled with optimization on, but this method should be compiled with debugging.
|
private |
Vector of row cuts pointers.
Definition at line 296 of file OsiCuts.hpp.
|
private |
Vector of column cuts pointers.
Definition at line 298 of file OsiCuts.hpp.