DenseLinAlgPack::DMatrixSliceSym view of a symmetry abstract matrix.
More...
#include <AbstractLinAlgPack_MatrixSymOpGetGMSSymMutable.hpp>
Inheritance diagram for AbstractLinAlgPack::MatrixSymOpGetGMSSymMutable:
Public Member Functions | |
| virtual DenseLinAlgPack::DMatrixSliceSym | get_sym_gms_view ()=0 |
Get a non-const view of the symmetric abstract matrix in the form DenseLinAlgPack::DenseLinAlgPack::DMatrixSliceSym. | |
| virtual void | commit_sym_gms_view (DenseLinAlgPack::DMatrixSliceSym *sym_gms_view)=0 |
Free a view of a dense matrix initialized from get_sym_gms_view()>/tt>. | |
DenseLinAlgPack::DMatrixSliceSym view of a symmetry abstract matrix.
This interface is ment to be used by MatrixSymOp objects that store all of their matrix elements in the local address space or can easily access all of the elements from this process and can modify the elements in their data structures.
Subclasses that store a BLAS compatible dense symmetric 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 MatrixDenseSymMutableEncap.
Definition at line 52 of file AbstractLinAlgPack_MatrixSymOpGetGMSSymMutable.hpp.
|
|
Get a non-const view of the symmetric abstract matrix in the form
Warning! If a subclass overrides this method, it must also override |
|
|
Free a view of a dense matrix initialized from
Postconditions:
|
1.3.9.1