#include <OsiBranchingObject.hpp>
Inheritance diagram for OsiBranchingObject:
Public Member Functions | |
OsiBranchingObject () | |
Default Constructor. | |
OsiBranchingObject (OsiSolverInterface *solver, double value) | |
Constructor. | |
OsiBranchingObject (const OsiBranchingObject &) | |
Copy constructor. | |
OsiBranchingObject & | operator= (const OsiBranchingObject &rhs) |
Assignment operator. | |
virtual OsiBranchingObject * | clone () const =0 |
Clone. | |
virtual | ~OsiBranchingObject () |
Destructor. | |
int | numberBranches () const |
The number of branch arms created for this branching object. | |
int | numberBranchesLeft () const |
The number of branch arms left for this branching object. | |
void | incrementNumberBranchesLeft () |
Increment the number of branch arms left for this branching object. | |
void | setNumberBranchesLeft (int) |
Set the number of branch arms left for this branching object Just for forcing. | |
void | decrementNumberBranchesLeft () |
Decrement the number of branch arms left for this branching object. | |
virtual double | branch (OsiSolverInterface *solver)=0 |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state. | |
virtual double | branch () |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state. | |
virtual bool | boundBranch () const |
Return true if branch should fix variables. | |
int | branchIndex () const |
Get the state of the branching object This is just the branch index. | |
void | setBranchingIndex (int branchIndex) |
Set the state of the branching object. | |
double | value () const |
Current value. | |
const OsiObject * | originalObject () const |
Return pointer back to object which created. | |
void | setOriginalObject (const OsiObject *object) |
Set pointer back to object which created. | |
virtual void | checkIsCutoff (double) |
Double checks in case node can change its mind! Returns objective value Can change objective etc. | |
int | columnNumber () const |
For debug. | |
virtual void | print (const OsiSolverInterface *=NULL) const |
Print something about branch - only if log level high. | |
Protected Attributes | |
double | value_ |
Current value - has some meaning about branch. | |
const OsiObject * | originalObject_ |
Pointer back to object which created. | |
int | numberBranches_ |
Number of branches. | |
short | branchIndex_ |
The state of the branching object. |
In the abstract, an OsiBranchingObject contains instructions for how to branch. We want an abstract class so that we can describe how to branch on simple objects (e.g., integers) and more exotic objects (e.g., cliques or hyperplanes).
The branch() method is the crucial routine: it is expected to be able to step through a set of branch arms, executing the actions required to create each subproblem in turn. The base class is primarily virtual to allow for a wide range of problem modifications.
See OsiObject for an overview of the two classes (OsiObject and OsiBranchingObject) which make up Osi's branching model.
Definition at line 251 of file OsiBranchingObject.hpp.
OsiBranchingObject::OsiBranchingObject | ( | ) |
Default Constructor.
OsiBranchingObject::OsiBranchingObject | ( | OsiSolverInterface * | solver, | |
double | value | |||
) |
Constructor.
OsiBranchingObject::OsiBranchingObject | ( | const OsiBranchingObject & | ) |
Copy constructor.
virtual OsiBranchingObject::~OsiBranchingObject | ( | ) | [virtual] |
Destructor.
OsiBranchingObject& OsiBranchingObject::operator= | ( | const OsiBranchingObject & | rhs | ) |
Assignment operator.
virtual OsiBranchingObject* OsiBranchingObject::clone | ( | ) | const [pure virtual] |
Clone.
Implemented in OsiIntegerBranchingObject, OsiSOSBranchingObject, and OsiLotsizeBranchingObject.
int OsiBranchingObject::numberBranches | ( | ) | const [inline] |
The number of branch arms created for this branching object.
Definition at line 274 of file OsiBranchingObject.hpp.
References numberBranches_.
Referenced by OsiHotInfo::downChange(), OsiHotInfo::downIterationCount(), OsiHotInfo::downStatus(), OsiHotInfo::setDownChange(), OsiHotInfo::setDownStatus(), OsiHotInfo::setUpChange(), OsiHotInfo::setUpStatus(), OsiHotInfo::upChange(), OsiHotInfo::upIterationCount(), and OsiHotInfo::upStatus().
int OsiBranchingObject::numberBranchesLeft | ( | ) | const [inline] |
The number of branch arms left for this branching object.
Definition at line 278 of file OsiBranchingObject.hpp.
References branchIndex_, and numberBranches_.
void OsiBranchingObject::incrementNumberBranchesLeft | ( | ) | [inline] |
Increment the number of branch arms left for this branching object.
Definition at line 282 of file OsiBranchingObject.hpp.
References numberBranches_.
void OsiBranchingObject::setNumberBranchesLeft | ( | int | ) | [inline] |
Set the number of branch arms left for this branching object Just for forcing.
Definition at line 288 of file OsiBranchingObject.hpp.
References numberBranches_.
void OsiBranchingObject::decrementNumberBranchesLeft | ( | ) | [inline] |
Decrement the number of branch arms left for this branching object.
Definition at line 292 of file OsiBranchingObject.hpp.
References branchIndex_.
virtual double OsiBranchingObject::branch | ( | OsiSolverInterface * | solver | ) | [pure virtual] |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state.
Returns change in guessed objective on next branch
Implemented in OsiTwoWayBranchingObject, OsiIntegerBranchingObject, OsiSOSBranchingObject, and OsiLotsizeBranchingObject.
virtual double OsiBranchingObject::branch | ( | ) | [inline, virtual] |
Execute the actions required to branch, as specified by the current state of the branching object, and advance the object's state.
Returns change in guessed objective on next branch
Definition at line 306 of file OsiBranchingObject.hpp.
virtual bool OsiBranchingObject::boundBranch | ( | ) | const [inline, virtual] |
int OsiBranchingObject::branchIndex | ( | ) | const [inline] |
Get the state of the branching object This is just the branch index.
Definition at line 314 of file OsiBranchingObject.hpp.
References branchIndex_.
void OsiBranchingObject::setBranchingIndex | ( | int | branchIndex | ) | [inline] |
Set the state of the branching object.
Definition at line 319 of file OsiBranchingObject.hpp.
References branchIndex_.
double OsiBranchingObject::value | ( | ) | const [inline] |
const OsiObject* OsiBranchingObject::originalObject | ( | ) | const [inline] |
Return pointer back to object which created.
Definition at line 327 of file OsiBranchingObject.hpp.
References originalObject_.
void OsiBranchingObject::setOriginalObject | ( | const OsiObject * | object | ) | [inline] |
Set pointer back to object which created.
Definition at line 330 of file OsiBranchingObject.hpp.
References originalObject_.
virtual void OsiBranchingObject::checkIsCutoff | ( | double | ) | [inline, virtual] |
Double checks in case node can change its mind! Returns objective value Can change objective etc.
Definition at line 335 of file OsiBranchingObject.hpp.
int OsiBranchingObject::columnNumber | ( | ) | const |
For debug.
virtual void OsiBranchingObject::print | ( | const OsiSolverInterface * | = NULL |
) | const [inline, virtual] |
Print something about branch - only if log level high.
Definition at line 340 of file OsiBranchingObject.hpp.
double OsiBranchingObject::value_ [protected] |
Current value - has some meaning about branch.
Definition at line 345 of file OsiBranchingObject.hpp.
Referenced by value().
const OsiObject* OsiBranchingObject::originalObject_ [protected] |
Pointer back to object which created.
Definition at line 348 of file OsiBranchingObject.hpp.
Referenced by originalObject(), and setOriginalObject().
int OsiBranchingObject::numberBranches_ [protected] |
Number of branches.
Definition at line 352 of file OsiBranchingObject.hpp.
Referenced by incrementNumberBranchesLeft(), numberBranches(), numberBranchesLeft(), and setNumberBranchesLeft().
short OsiBranchingObject::branchIndex_ [protected] |
The state of the branching object.
i.e. branch index This starts at 0 when created
Definition at line 357 of file OsiBranchingObject.hpp.
Referenced by branchIndex(), decrementNumberBranchesLeft(), numberBranchesLeft(), setBranchingIndex(), and OsiTwoWayBranchingObject::way().