OS
2.10.1
|
The in-memory representation of the <linearConstraintCoefficients> element. More...
#include <OSInstance.h>
Public Member Functions | |
LinearConstraintCoefficients () | |
The LinearConstraintCoefficients class constructor. More... | |
~LinearConstraintCoefficients () | |
The LinearConstraintCoefficients class destructor. More... | |
bool | IsEqual (LinearConstraintCoefficients *that) |
A function to check for the equality of two objects. More... | |
Public Attributes | |
int | numberOfValues |
numberOfValues is the number of nonzero elements stored in the <linearConstraintCoefficients> element More... | |
IntVector * | start |
a pointer to the start of each row or column stored in sparse format More... | |
IntVector * | rowIdx |
a pointer of row indices if the problem is stored by column More... | |
IntVector * | colIdx |
a pointer of column indices if the problem is stored by row More... | |
DoubleVector * | value |
a pointer to the array of nonzero values being stored More... | |
int | iNumberOfStartElements |
iNumberOfStartElements counts the number of elements in the <start> section of <linearConstraintCoefficients>. More... | |
The in-memory representation of the <linearConstraintCoefficients> element.
Definition at line 288 of file OSInstance.h.
LinearConstraintCoefficients::LinearConstraintCoefficients | ( | ) |
The LinearConstraintCoefficients class constructor.
LinearConstraintCoefficients::~LinearConstraintCoefficients | ( | ) |
The LinearConstraintCoefficients class destructor.
bool LinearConstraintCoefficients::IsEqual | ( | LinearConstraintCoefficients * | that | ) |
A function to check for the equality of two objects.
int LinearConstraintCoefficients::numberOfValues |
numberOfValues is the number of nonzero elements stored in the <linearConstraintCoefficients> element
Definition at line 301 of file OSInstance.h.
IntVector* LinearConstraintCoefficients::start |
a pointer to the start of each row or column stored in sparse format
Definition at line 306 of file OSInstance.h.
IntVector* LinearConstraintCoefficients::rowIdx |
a pointer of row indices if the problem is stored by column
Definition at line 309 of file OSInstance.h.
IntVector* LinearConstraintCoefficients::colIdx |
a pointer of column indices if the problem is stored by row
Definition at line 312 of file OSInstance.h.
DoubleVector* LinearConstraintCoefficients::value |
a pointer to the array of nonzero values being stored
Definition at line 315 of file OSInstance.h.
int LinearConstraintCoefficients::iNumberOfStartElements |
iNumberOfStartElements counts the number of elements in the <start> section of <linearConstraintCoefficients>.
This is useful for the parser in checking consistency of the number of start elements with variables or rows
Definition at line 322 of file OSInstance.h.