Cbc
2.10.10
|
Simple branching object for an integer variable. More...
#include <CbcSimpleInteger.hpp>
Public Member Functions | |
CbcIntegerBranchingObject () | |
Default constructor. More... | |
CbcIntegerBranchingObject (CbcModel *model, int variable, int way, double value) | |
Create a standard floor/ceiling branch object. More... | |
CbcIntegerBranchingObject (CbcModel *model, int variable, int way, double lowerValue, double upperValue) | |
Create a degenerate branch object. More... | |
CbcIntegerBranchingObject (const CbcIntegerBranchingObject &) | |
Copy constructor. More... | |
CbcIntegerBranchingObject & | operator= (const CbcIntegerBranchingObject &rhs) |
Assignment operator. More... | |
virtual CbcBranchingObject * | clone () const |
Clone. More... | |
virtual | ~CbcIntegerBranchingObject () |
Destructor. More... | |
void | fillPart (int variable, int way, double value) |
Does part of constructor. More... | |
virtual double | branch () |
Sets the bounds for the variable according to the current arm of the branch and advances the object state to the next arm. More... | |
virtual void | fix (OsiSolverInterface *solver, double *lower, double *upper, int branchState) const |
Update bounds in solver as in 'branch' and update given bounds. More... | |
virtual bool | tighten (OsiSolverInterface *) |
Change (tighten) bounds in object to reflect bounds in solver. More... | |
virtual void | print () |
Print something about branch - only if log level high. More... | |
const double * | downBounds () const |
Lower and upper bounds for down branch. More... | |
const double * | upBounds () const |
Lower and upper bounds for up branch. More... | |
void | setDownBounds (const double bounds[2]) |
Set lower and upper bounds for down branch. More... | |
void | setUpBounds (const double bounds[2]) |
Set lower and upper bounds for up branch. More... | |
virtual CbcBranchObjType | type () const |
Return the type (an integer identifier) of this . More... | |
virtual CbcRangeCompare | compareBranchingObject (const CbcBranchingObject *brObj, const bool replaceIfOverlap=false) |
Compare the this with brObj . More... | |
virtual double | branch ()=0 |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state. More... | |
virtual double | branch (OsiSolverInterface *) |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state. More... | |
virtual void | print () const |
Print something about branch - only if log level high. More... | |
![]() | |
CbcBranchingObject () | |
Default Constructor. More... | |
CbcBranchingObject (CbcModel *model, int variable, int way, double value) | |
Constructor. More... | |
CbcBranchingObject (const CbcBranchingObject &) | |
Copy constructor. More... | |
CbcBranchingObject & | operator= (const CbcBranchingObject &rhs) |
Assignment operator. More... | |
virtual | ~CbcBranchingObject () |
Destructor. More... | |
virtual int | fillStrongInfo (CbcStrongInfo &) |
Some branchingObjects may claim to be able to skip strong branching. More... | |
void | resetNumberBranchesLeft () |
Reset number of branches left to original. More... | |
void | setNumberBranches (int value) |
Set number of branches to do. More... | |
virtual double | branch (OsiSolverInterface *) |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state. More... | |
virtual void | previousBranch () |
Reset every information so that the branching object appears to point to the previous child. More... | |
virtual void | print () const |
Print something about branch - only if log level high. More... | |
int | variable () const |
Index identifying the associated CbcObject within its class. More... | |
int | way () const |
Get the state of the branching object. More... | |
void | way (int way) |
Set the state of the branching object. More... | |
void | setModel (CbcModel *model) |
update model More... | |
CbcModel * | model () const |
Return model. More... | |
CbcObject * | object () const |
Return pointer back to object which created. More... | |
void | setOriginalObject (CbcObject *object) |
Set pointer back to object which created. More... | |
virtual int | compareOriginalObject (const CbcBranchingObject *brObj) const |
Compare the original object of this with the original object of brObj . More... | |
Protected Attributes | |
double | down_ [2] |
Lower [0] and upper [1] bounds for the down arm (way_ = -1) More... | |
double | up_ [2] |
Lower [0] and upper [1] bounds for the up arm (way_ = 1) More... | |
![]() | |
CbcModel * | model_ |
The model that owns this branching object. More... | |
CbcObject * | originalCbcObject_ |
Pointer back to object which created. More... | |
int | variable_ |
Branching variable (0 is first integer) More... | |
int | way_ |
The state of the branching object. More... | |
Simple branching object for an integer variable.
This object can specify a two-way branch on an integer variable. For each arm of the branch, the upper and lower bounds on the variable can be independently specified.
Variable_ holds the index of the integer variable in the integerVariable_ array of the model.
Definition at line 23 of file CbcSimpleInteger.hpp.
CbcIntegerBranchingObject::CbcIntegerBranchingObject | ( | ) |
Default constructor.
CbcIntegerBranchingObject::CbcIntegerBranchingObject | ( | CbcModel * | model, |
int | variable, | ||
int | way, | ||
double | value | ||
) |
Create a standard floor/ceiling branch object.
Specifies a simple two-way branch. Let value
= x*. One arm of the branch will be lb <= x <= floor(x*), the other ceil(x*) <= x <= ub. Specify way = -1 to set the object state to perform the down arm first, way = 1 for the up arm.
CbcIntegerBranchingObject::CbcIntegerBranchingObject | ( | CbcModel * | model, |
int | variable, | ||
int | way, | ||
double | lowerValue, | ||
double | upperValue | ||
) |
Create a degenerate branch object.
Specifies a ‘one-way branch’. Calling branch() for this object will always result in lowerValue <= x <= upperValue. Used to fix a variable when lowerValue = upperValue.
CbcIntegerBranchingObject::CbcIntegerBranchingObject | ( | const CbcIntegerBranchingObject & | ) |
Copy constructor.
|
virtual |
Destructor.
CbcIntegerBranchingObject& CbcIntegerBranchingObject::operator= | ( | const CbcIntegerBranchingObject & | rhs | ) |
Assignment operator.
|
virtual |
Clone.
Implements CbcBranchingObject.
Reimplemented in CbcIntegerPseudoCostBranchingObject, and CbcDynamicPseudoCostBranchingObject.
void CbcIntegerBranchingObject::fillPart | ( | int | variable, |
int | way, | ||
double | value | ||
) |
Does part of constructor.
|
virtual |
Sets the bounds for the variable according to the current arm of the branch and advances the object state to the next arm.
Returns change in guessed objective on next branch
Implements CbcBranchingObject.
Reimplemented in CbcIntegerPseudoCostBranchingObject, and CbcDynamicPseudoCostBranchingObject.
|
virtual |
Update bounds in solver as in 'branch' and update given bounds.
branchState is -1 for 'down' +1 for 'up'
Reimplemented from CbcBranchingObject.
|
virtual |
Change (tighten) bounds in object to reflect bounds in solver.
Return true if now fixed
Reimplemented from CbcBranchingObject.
|
virtual |
Print something about branch - only if log level high.
|
inline |
Lower and upper bounds for down branch.
Definition at line 92 of file CbcSimpleInteger.hpp.
|
inline |
Lower and upper bounds for up branch.
Definition at line 97 of file CbcSimpleInteger.hpp.
|
inline |
Set lower and upper bounds for down branch.
Definition at line 102 of file CbcSimpleInteger.hpp.
|
inline |
Set lower and upper bounds for up branch.
Definition at line 107 of file CbcSimpleInteger.hpp.
|
inlinevirtual |
Return the type (an integer identifier) of this
.
Implements CbcBranchingObject.
Reimplemented in CbcIntegerPseudoCostBranchingObject, and CbcDynamicPseudoCostBranchingObject.
Definition at line 140 of file CbcSimpleInteger.hpp.
|
virtual |
Compare the this
with brObj
.
this
and brObj
must be os the same type and must have the same original object, but they may have different feasible regions. Return the appropriate CbcRangeCompare value (first argument being the sub/superset if that's the case). In case of overlap (and if replaceIfOverlap
is true) replace the current branching object with one whose feasible region is the overlap.
Implements CbcBranchingObject.
Reimplemented in CbcIntegerPseudoCostBranchingObject.
virtual double CbcBranchingObject::branch |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state.
Mainly for diagnostics, whether it is true branch or strong branching is also passed. Returns change in guessed objective on next branch
|
inline |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state.
Mainly for diagnostics, whether it is true branch or strong branching is also passed. Returns change in guessed objective on next branch
Definition at line 105 of file CbcBranchingObject.hpp.
|
inline |
Print something about branch - only if log level high.
Definition at line 132 of file CbcBranchingObject.hpp.
|
protected |
Lower [0] and upper [1] bounds for the down arm (way_ = -1)
Definition at line 157 of file CbcSimpleInteger.hpp.
|
protected |
Lower [0] and upper [1] bounds for the up arm (way_ = 1)
Definition at line 159 of file CbcSimpleInteger.hpp.