SymMatrixSpace base class, corresponding to the SymMatrix base class. More...
#include <IpSymMatrix.hpp>
Public Member Functions | |
virtual SymMatrix * | MakeNewSymMatrix () const =0 |
Pure virtual method for creating a new matrix of this specific type. | |
virtual Matrix * | MakeNew () const |
Pure virtual method for creating a new Matrix of the corresponding type. | |
Index | Dim () const |
Accessor method for the dimension of the matrices in this matrix space. | |
Constructors/Destructors | |
SymMatrixSpace (Index dim) | |
Constructor, given the dimension (identical to the number of rows and columns). | |
virtual | ~SymMatrixSpace () |
Destructor. | |
Public Member Functions inherited from Ipopt::MatrixSpace | |
Index | NRows () const |
Accessor function for the number of rows. | |
Index | NCols () const |
Accessor function for the number of columns. | |
bool | IsMatrixFromSpace (const Matrix &matrix) const |
Method to test if a given matrix belongs to a particular matrix space. | |
MatrixSpace (Index nRows, Index nCols) | |
Constructor, given the number rows and columns of all matrices generated by this MatrixSpace. | |
virtual | ~MatrixSpace () |
Destructor. | |
Public Member Functions inherited from Ipopt::ReferencedObject | |
ReferencedObject () | |
virtual | ~ReferencedObject () |
Index | ReferenceCount () const |
void | AddRef (const Referencer *referencer) const |
void | ReleaseRef (const Referencer *referencer) const |
Private Member Functions | |
Default Compiler Generated Methods | |
(Hidden to avoid implicit creation/calling). These methods are not implemented and we do not want the compiler to implement them for us, so we declare them private and do not define them. This ensures that they will not be implicitly created/called. | |
SymMatrixSpace () | |
Default constructor. | |
SymMatrixSpace (const SymMatrixSpace &) | |
SymMatrixSpace & | operator= (const SymMatrixSpace &) |
Default Assignment Operator. | |
SymMatrixSpace base class, corresponding to the SymMatrix base class.
Definition at line 85 of file IpSymMatrix.hpp.
|
inline |
Constructor, given the dimension (identical to the number of rows and columns).
Definition at line 93 of file IpSymMatrix.hpp.
|
inlinevirtual |
Destructor.
Definition at line 100 of file IpSymMatrix.hpp.
|
private |
Default constructor.
|
private |
Pure virtual method for creating a new matrix of this specific type.
Implemented in Ipopt::CompoundSymMatrixSpace, Ipopt::DenseSymMatrixSpace, Ipopt::DiagMatrixSpace, Ipopt::IdentityMatrixSpace, Ipopt::LowRankUpdateSymMatrixSpace, Ipopt::SumSymMatrixSpace, Ipopt::SymScaledMatrixSpace, Ipopt::ZeroSymMatrixSpace, and Ipopt::SymTMatrixSpace.
Pure virtual method for creating a new Matrix of the corresponding type.
Implements Ipopt::MatrixSpace.
Reimplemented in Ipopt::SymScaledMatrixSpace, and Ipopt::ZeroSymMatrixSpace.
Definition at line 107 of file IpSymMatrix.hpp.
|
inline |
Accessor method for the dimension of the matrices in this matrix space.
Definition at line 115 of file IpSymMatrix.hpp.
|
private |
Default Assignment Operator.