OS
2.9.3
|
The in-memory representation of a dual cone. More...
#include <OSInstance.h>
Public Member Functions | |
DualCone () | |
The DualCone class constructor. More... | |
~DualCone () | |
The DualCone class destructor. More... | |
virtual std::string | getConeName () |
bool | IsEqual (DualCone *that) |
A function to check for the equality of two objects. More... | |
bool | setRandom (double density, bool conformant, int iMin, int iMax) |
A function to make a random instance of this class. More... | |
bool | deepCopyFrom (DualCone *that) |
A function to make a deep copy of an instance of this class. More... | |
![]() | |
Cone () | |
The Cone class constructor. More... | |
~Cone () | |
The Cone class destructor. More... | |
virtual std::string | getConeInXML ()=0 |
Write a Cone object in XML format. More... | |
bool | IsEqual (Cone *that) |
A function to check for the equality of two objects. More... | |
bool | setRandom (double density, bool conformant, int iMin, int iMax) |
A function to make a random instance of this class. More... | |
bool | deepCopyFrom (Cone *that) |
A function to make a deep copy of an instance of this class. More... | |
Public Attributes | |
int | numberOfRows |
Every cone has (at least) two dimensions; no distinction is made between vector cones and matrix cones. More... | |
int | numberOfColumns |
int | numberOfOtherIndexes |
Multidimensional tensors can also form cones (the Kronecker product, for instance, can be thought of as a four-dimensional tensor). More... | |
int * | otherIndexes |
int | coneType |
The type of the cone (one of the values in ENUM_CONE_TYPE) More... | |
int | idx |
cones are referenced by an (automatically created) index More... | |
int | referenceConeIdx |
Dual cones use a reference to another, previously defined cone. More... | |
![]() | |
int | numberOfRows |
Every cone has (at least) two dimensions; no distinction is made between vector cones and matrix cones. More... | |
int | numberOfColumns |
int | numberOfOtherIndexes |
Cones can also be formed by Multidimensional tensors. More... | |
int * | otherIndexes |
ENUM_CONE_TYPE | coneType |
The type of the cone. More... | |
std::string | name |
The cone can have a name for easier identification. More... | |
int | idx |
cones are referenced by an (automatically created) index More... | |
The in-memory representation of a dual cone.
Definition at line 1403 of file OSInstance.h.
DualCone::DualCone | ( | ) |
The DualCone class constructor.
DualCone::~DualCone | ( | ) |
The DualCone class destructor.
|
virtual |
Reimplemented from Cone.
bool DualCone::IsEqual | ( | DualCone * | that | ) |
A function to check for the equality of two objects.
bool DualCone::setRandom | ( | double | density, |
bool | conformant, | ||
int | iMin, | ||
int | iMax | ||
) |
A function to make a random instance of this class.
density | corresponds to the probability that a particular child element is created |
conformant | if true enforces side constraints not enforceable in the schema (e.g., agreement of "numberOfXXX" attributes and <XXX> children) |
iMin | lowest index value (inclusive) that a variable reference in this matrix can take |
iMax | greatest index value (inclusive) that a variable reference in this matrix can take |
bool DualCone::deepCopyFrom | ( | DualCone * | that | ) |
A function to make a deep copy of an instance of this class.
that | the instance from which information is to be copied |
int DualCone::numberOfRows |
Every cone has (at least) two dimensions; no distinction is made between vector cones and matrix cones.
Definition at line 1416 of file OSInstance.h.
int DualCone::numberOfColumns |
Definition at line 1417 of file OSInstance.h.
int DualCone::numberOfOtherIndexes |
Multidimensional tensors can also form cones (the Kronecker product, for instance, can be thought of as a four-dimensional tensor).
We therefore allow additional dimensions.
Definition at line 1424 of file OSInstance.h.
int* DualCone::otherIndexes |
Definition at line 1425 of file OSInstance.h.
int DualCone::coneType |
The type of the cone (one of the values in ENUM_CONE_TYPE)
Definition at line 1428 of file OSInstance.h.
int DualCone::idx |
cones are referenced by an (automatically created) index
Definition at line 1431 of file OSInstance.h.
int DualCone::referenceConeIdx |
Dual cones use a reference to another, previously defined cone.
Definition at line 1434 of file OSInstance.h.