Cbc
2.10.10
|
Class for consequent bounds. More...
#include <CbcFixVariable.hpp>
Public Member Functions | |
CbcFixVariable () | |
CbcFixVariable (int numberStates, const int *states, const int *numberNewLower, const int **newLowerValue, const int **lowerColumn, const int *numberNewUpper, const int **newUpperValue, const int **upperColumn) | |
CbcFixVariable (const CbcFixVariable &rhs) | |
CbcFixVariable & | operator= (const CbcFixVariable &rhs) |
virtual CbcConsequence * | clone () const |
Clone. More... | |
virtual | ~CbcFixVariable () |
Destructor. More... | |
virtual void | applyToSolver (OsiSolverInterface *solver, int state) const |
Apply to an LP solver. More... | |
![]() | |
CbcConsequence () | |
CbcConsequence (const CbcConsequence &rhs) | |
CbcConsequence & | operator= (const CbcConsequence &rhs) |
virtual | ~CbcConsequence () |
Destructor. More... | |
Protected Attributes | |
int | numberStates_ |
Number of states. More... | |
int * | states_ |
Values of integers for various states. More... | |
int * | startLower_ |
Start of information for each state (setting new lower) More... | |
int * | startUpper_ |
Start of information for each state (setting new upper) More... | |
double * | newBound_ |
For each variable new bounds. More... | |
int * | variable_ |
Variable. More... | |
Class for consequent bounds.
When a variable is branched on it normally interacts with other variables by means of equations. There are cases where we want to step outside LP and do something more directly e.g. fix bounds. This class is for that.
A state of -9999 means at LB, +9999 means at UB, others mean if fixed to that value.
Definition at line 22 of file CbcFixVariable.hpp.
CbcFixVariable::CbcFixVariable | ( | ) |
CbcFixVariable::CbcFixVariable | ( | int | numberStates, |
const int * | states, | ||
const int * | numberNewLower, | ||
const int ** | newLowerValue, | ||
const int ** | lowerColumn, | ||
const int * | numberNewUpper, | ||
const int ** | newUpperValue, | ||
const int ** | upperColumn | ||
) |
CbcFixVariable::CbcFixVariable | ( | const CbcFixVariable & | rhs | ) |
|
virtual |
Destructor.
CbcFixVariable& CbcFixVariable::operator= | ( | const CbcFixVariable & | rhs | ) |
|
virtual |
Clone.
Implements CbcConsequence.
|
virtual |
|
protected |
Number of states.
Definition at line 52 of file CbcFixVariable.hpp.
|
protected |
Values of integers for various states.
Definition at line 54 of file CbcFixVariable.hpp.
|
protected |
Start of information for each state (setting new lower)
Definition at line 56 of file CbcFixVariable.hpp.
|
protected |
Start of information for each state (setting new upper)
Definition at line 58 of file CbcFixVariable.hpp.
|
protected |
For each variable new bounds.
Definition at line 60 of file CbcFixVariable.hpp.
|
protected |
Variable.
Definition at line 62 of file CbcFixVariable.hpp.