Class for matrix space for SumMatrix. More...
#include <IpSumMatrix.hpp>
Public Member Functions | |
Index | NTerms () const |
Accessor functions to get the number of terms in the sum. | |
void | SetTermSpace (Index term_idx, const MatrixSpace &mat_space) |
Set the appropriate matrix space for each term. | |
SmartPtr< const MatrixSpace > | GetTermSpace (Index term_idx) const |
Get the matrix space for a particular term. | |
SumMatrix * | MakeNewSumMatrix () const |
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. | |
Constructors / Destructors | |
SumMatrixSpace (Index nrows, Index ncols, Index nterms) | |
Constructor, given the number of row and columns, as well as the number of terms in the sum. | |
virtual | ~SumMatrixSpace () |
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. | |
SumMatrixSpace () | |
Default constructor. | |
SumMatrixSpace (const SumMatrixSpace &) | |
Copy Constructor. | |
SumMatrixSpace & | operator= (const SumMatrixSpace &) |
Default Assignment Operator. | |
Private Attributes | |
const Index | nterms_ |
std::vector< SmartPtr< const MatrixSpace > > | term_spaces_ |
Class for matrix space for SumMatrix.
Definition at line 131 of file IpSumMatrix.hpp.
Constructor, given the number of row and columns, as well as the number of terms in the sum.
Definition at line 139 of file IpSumMatrix.hpp.
|
inlinevirtual |
Destructor.
Definition at line 149 of file IpSumMatrix.hpp.
|
private |
Default constructor.
|
private |
Copy Constructor.
|
inline |
Accessor functions to get the number of terms in the sum.
Definition at line 154 of file IpSumMatrix.hpp.
void Ipopt::SumMatrixSpace::SetTermSpace | ( | Index | term_idx, |
const MatrixSpace & | mat_space | ||
) |
Set the appropriate matrix space for each term.
This must be called for each term or a runtime error will occur.
SmartPtr< const MatrixSpace > Ipopt::SumMatrixSpace::GetTermSpace | ( | Index | term_idx | ) | const |
Get the matrix space for a particular term.
SumMatrix * Ipopt::SumMatrixSpace::MakeNewSumMatrix | ( | ) | const |
Method for creating a new matrix of this specific type.
Pure virtual method for creating a new Matrix of the corresponding type.
Implements Ipopt::MatrixSpace.
|
private |
Default Assignment Operator.
Definition at line 202 of file IpSumMatrix.hpp.
|
private |
Definition at line 204 of file IpSumMatrix.hpp.