#include <SkylineStorage.h>
|
Index | allocatedSize () const |
|
void | clear () |
|
Scalar & | diag (Index i) |
|
const Scalar & | diag (Index i) const |
|
Index | diagSize () const |
|
Scalar & | lower (Index i) |
|
const Scalar & | lower (Index i) const |
|
Index & | lowerProfile (Index i) |
|
const Index & | lowerProfile (Index i) const |
|
Index | lowerProfileSize () const |
|
Index | lowerSize () const |
|
SkylineStorage & | operator= (const SkylineStorage &other) |
|
void | prune (Scalar reference, RealScalar epsilon=dummy_precision< RealScalar >()) |
|
void | reserve (Index size, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) |
|
void | reset () |
|
void | resize (Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize, float reserveSizeFactor=0) |
|
| SkylineStorage (const SkylineStorage &other) |
|
void | squeeze () |
|
void | swap (SkylineStorage &other) |
|
Scalar & | upper (Index i) |
|
const Scalar & | upper (Index i) const |
|
Index & | upperProfile (Index i) |
|
const Index & | upperProfile (Index i) const |
|
Index | upperProfileSize () const |
|
Index | upperSize () const |
|
|
static SkylineStorage | Map (Index *upperProfile, Index *lowerProfile, Scalar *diag, Scalar *upper, Scalar *lower, Index size, Index upperSize, Index lowerSize) |
|
|
Index | m_allocatedSize |
|
Scalar * | m_diag |
|
Index | m_diagSize |
|
Scalar * | m_lower |
|
Index * | m_lowerProfile |
|
Index | m_lowerProfileSize |
|
Index | m_lowerSize |
|
Scalar * | m_upper |
|
Index * | m_upperProfile |
|
Index | m_upperProfileSize |
|
Index | m_upperSize |
|
|
void | reallocate (Index diagSize, Index upperProfileSize, Index lowerProfileSize, Index upperSize, Index lowerSize) |
|
template<typename Scalar>
class Eigen::SkylineStorage< Scalar >
Stores a skyline set of values in three structures : The diagonal elements The upper elements The lower elements
The documentation for this class was generated from the following file: