DyLP
1.9.4
|
The dylp warm start class. More...
#include <OsiDylpWarmStartBasis.hpp>
Public Member Functions | |
Methods to get and set basis information. | |
Methods for structural and artificial variables are inherited from CoinWarmStartBasis. Constraint status is coded using the CoinWarmStartBasis::Status codes. Active constraints are coded as atLowerBound, inactive as isFree. | |
int | numberActiveConstraints () const |
Return the number of active constraints. More... | |
Status | getConStatus (int i) const |
Return the status of the specified constraint. More... | |
void | setConStatus (int i, Status st) |
Set the status of the specified constraint. More... | |
char * | getConstraintStatus () |
Return the status array for constraints. More... | |
const char * | getConstraintStatus () const |
const overload for getConstraintStatus() More... | |
void | setPhase (dyphase_enum phase) |
Set the lp phase for this basis. More... | |
dyphase_enum | getPhase () const |
Get the lp phase for this basis. More... | |
Basis `diff' methods | |
CoinWarmStartDiff * | generateDiff (const CoinWarmStart *const oldCWS) const |
Generate a `diff' that can convert oldBasis to this basis. More... | |
void | applyDiff (const CoinWarmStartDiff *const cwsdDiff) |
Apply diff to this basis. More... | |
Methods to modify the warm start object | |
void | setSize (int ns, int na) |
Set basis capacity; existing basis is discarded. More... | |
void | resize (int numRows, int numCols) |
Set basis capacity; existing basis is maintained. More... | |
void | compressRows (int tgtCnt, const int *tgts) |
Delete a set of rows from the basis. More... | |
void | deleteRows (int number, const int *which) |
Delete a set of rows from the basis. More... | |
virtual void | mergeBasis (const CoinWarmStartBasis *src, const XferVec *xferRows, const XferVec *xferCols) |
Merge entries from a source basis into this basis. More... | |
Constructors, destructors, and related functions | |
OsiDylpWarmStartBasis () | |
Default constructor (empty object) More... | |
OsiDylpWarmStartBasis (int ns, int na, const char *sStat, const char *aStat, const char *cStat=0) | |
Constructs a warm start object with the specified status arrays. More... | |
OsiDylpWarmStartBasis (const CoinWarmStartBasis &cwsb) | |
Construct an OsiDylpWarmStartBasis from a CoinWarmStartBasis. More... | |
OsiDylpWarmStartBasis (const OsiDylpWarmStartBasis &ws) | |
Copy constructor. More... | |
CoinWarmStart * | clone () const |
`Virtual constructor' More... | |
~OsiDylpWarmStartBasis () | |
Destructor. More... | |
OsiDylpWarmStartBasis & | operator= (const OsiDylpWarmStartBasis &rhs) |
Assignment. More... | |
void | assignBasisStatus (int ns, int na, char *&sStat, char *&aStat, char *&cStat) |
Assign the status vectors to be the warm start information. More... | |
void | assignBasisStatus (int ns, int na, char *&sStat, char *&aStat) |
Assign the status vectors to be the warm start information. More... | |
Miscellaneous methods | |
void | print () const |
Prints in readable format (for debug) More... | |
void | checkBasis (CoinMessageHandler *msghandler=NULL) const |
Performs basis consistency checks (for debug) More... | |
The dylp warm start class.
This derived class is necessary because dylp by default works with a subset of the full constraint system. The warm start object needs to contain a list of the active constraints in addition to the status information included in CoinWarmStartBasis. It is also convenient to include the solver phase in the warm start object.
Definition at line 44 of file OsiDylpWarmStartBasis.hpp.
OsiDylpWarmStartBasis::OsiDylpWarmStartBasis | ( | ) |
Default constructor (empty object)
OsiDylpWarmStartBasis::OsiDylpWarmStartBasis | ( | int | ns, |
int | na, | ||
const char * | sStat, | ||
const char * | aStat, | ||
const char * | cStat = 0 |
||
) |
Constructs a warm start object with the specified status arrays.
OsiDylpWarmStartBasis::OsiDylpWarmStartBasis | ( | const CoinWarmStartBasis & | cwsb | ) |
Construct an OsiDylpWarmStartBasis from a CoinWarmStartBasis.
OsiDylpWarmStartBasis::OsiDylpWarmStartBasis | ( | const OsiDylpWarmStartBasis & | ws | ) |
Copy constructor.
OsiDylpWarmStartBasis::~OsiDylpWarmStartBasis | ( | ) |
Destructor.
int OsiDylpWarmStartBasis::numberActiveConstraints | ( | ) | const |
Return the number of active constraints.
|
inline |
Return the status of the specified constraint.
Definition at line 64 of file OsiDylpWarmStartBasis.hpp.
|
inline |
Set the status of the specified constraint.
Definition at line 72 of file OsiDylpWarmStartBasis.hpp.
|
inline |
Return the status array for constraints.
Definition at line 81 of file OsiDylpWarmStartBasis.hpp.
|
inline |
const
overload for getConstraintStatus()
Definition at line 89 of file OsiDylpWarmStartBasis.hpp.
|
inline |
Set the lp phase for this basis.
Definition at line 96 of file OsiDylpWarmStartBasis.hpp.
|
inline |
Get the lp phase for this basis.
Definition at line 100 of file OsiDylpWarmStartBasis.hpp.
CoinWarmStartDiff* OsiDylpWarmStartBasis::generateDiff | ( | const CoinWarmStart *const | oldCWS | ) | const |
Generate a `diff' that can convert oldBasis to this basis.
void OsiDylpWarmStartBasis::applyDiff | ( | const CoinWarmStartDiff *const | cwsdDiff | ) |
Apply diff
to this basis.
void OsiDylpWarmStartBasis::setSize | ( | int | ns, |
int | na | ||
) |
Set basis capacity; existing basis is discarded.
void OsiDylpWarmStartBasis::resize | ( | int | numRows, |
int | numCols | ||
) |
Set basis capacity; existing basis is maintained.
void OsiDylpWarmStartBasis::compressRows | ( | int | tgtCnt, |
const int * | tgts | ||
) |
Delete a set of rows from the basis.
void OsiDylpWarmStartBasis::deleteRows | ( | int | number, |
const int * | which | ||
) |
Delete a set of rows from the basis.
|
virtual |
Merge entries from a source basis into this basis.
The vector xferCols (xferRows) specifies runs of entries to be taken from the source basis and placed in this basis. Each entry is a CoinTriple, with first specifying the starting source index of a run, second specifying the starting destination index, and third specifying the run length.
CoinWarmStart* OsiDylpWarmStartBasis::clone | ( | ) | const |
`Virtual constructor'
OsiDylpWarmStartBasis& OsiDylpWarmStartBasis::operator= | ( | const OsiDylpWarmStartBasis & | rhs | ) |
Assignment.
void OsiDylpWarmStartBasis::assignBasisStatus | ( | int | ns, |
int | na, | ||
char *& | sStat, | ||
char *& | aStat, | ||
char *& | cStat | ||
) |
Assign the status vectors to be the warm start information.
void OsiDylpWarmStartBasis::assignBasisStatus | ( | int | ns, |
int | na, | ||
char *& | sStat, | ||
char *& | aStat | ||
) |
Assign the status vectors to be the warm start information.
void OsiDylpWarmStartBasis::print | ( | ) | const |
Prints in readable format (for debug)
void OsiDylpWarmStartBasis::checkBasis | ( | CoinMessageHandler * | msghandler = NULL | ) | const |
Performs basis consistency checks (for debug)