DMatrixSlice view of an abstract matrix.
More...
#include <AbstractLinAlgPack_MatrixOpGetGMS.hpp>
Inheritance diagram for AbstractLinAlgPack::MatrixOpGetGMS:
Public Member Functions | |
| virtual const DMatrixSlice | get_gms_view () const =0 |
Get a const view of the abstract matrix in the form DenseLinAlgPack::DMatrixSlice. | |
| virtual void | free_gms_view (const DMatrixSlice *gms_view) const =0 |
Free a view of a dense matrix initialized from get_gms_view()>/tt>. | |
DMatrixSlice view of an abstract matrix.
This interface is ment to be used by MatrixOp objects that store all of their matrix elements in the local address space or can easily access all of the elements from this process.
Subclasses that store a Fortran compatible dense dense matrix can implement these methods without any dynamic memory allocations. There is no default implementation for these methods so subclasses that derive from this interface must implement these methods.
These methods should never be called directly. Instead, use the helper class type MatrixDenseEncap.
Definition at line 54 of file AbstractLinAlgPack_MatrixOpGetGMS.hpp.
|
|
Get a const view of the abstract matrix in the form
Warning! If a subclass overrides this method, it must also override Implemented in AbstractLinAlgPack::MultiVectorMutableDense. |
|
|
Free a view of a dense matrix initialized from
Postconditions:
Implemented in AbstractLinAlgPack::MultiVectorMutableDense. |
1.3.9.1