Reference documentation for deal.II version 9.3.3
|
#include <deal.II/lac/sparse_matrix.h>
Public Types | |
using | MatrixType = const SparseMatrix< number > |
using | size_type = SparsityPatternIterators::size_type |
Public Member Functions | |
Accessor (MatrixType *matrix, const std::size_t index_within_matrix) | |
Accessor (MatrixType *matrix) | |
Accessor (const SparseMatrixIterators::Accessor< number, false > &a) | |
number | value () const |
const MatrixType & | get_matrix () const |
size_type | row () const |
size_type | index () const |
size_type | global_index () const |
size_type | column () const |
bool | is_valid_entry () const |
bool | operator== (const Accessor &) const |
bool | operator< (const Accessor &) const |
Protected Member Functions | |
void | advance () |
Static Protected Member Functions | |
static ::ExceptionBase & | DummyAccessor () |
Protected Attributes | |
const SparsityPatternBase * | container |
std::size_t | linear_index |
Private Attributes | |
MatrixType * | matrix |
Friends | |
template<typename , bool > | |
class | Iterator |
Accessor class for constant matrices, used in the const_iterators. This class builds on the accessor classes used for sparsity patterns to loop over all nonzero entries, and only adds the accessor functions to gain access to the actual value stored at a certain location.
Definition at line 131 of file sparse_matrix.h.
using SparseMatrixIterators::Accessor< number, true >::MatrixType = const SparseMatrix<number> |
Typedef for the type (including constness) of the matrix to be used here.
Definition at line 138 of file sparse_matrix.h.
SparseMatrixIterators::Accessor< number, true >::Accessor | ( | MatrixType * | matrix, |
const std::size_t | index_within_matrix | ||
) |
Constructor.
SparseMatrixIterators::Accessor< number, true >::Accessor | ( | MatrixType * | matrix | ) |
Constructor. Construct the end accessor for the given matrix.
SparseMatrixIterators::Accessor< number, true >::Accessor | ( | const SparseMatrixIterators::Accessor< number, false > & | a | ) |
Copy constructor to get from a non-const accessor to a const accessor.
number SparseMatrixIterators::Accessor< number, true >::value | ( | ) | const |
Value of this matrix entry.
const MatrixType & SparseMatrixIterators::Accessor< number, true >::get_matrix | ( | ) | const |
Return a reference to the matrix into which this accessor points. Note that in the present case, this is a constant reference.
Definition at line 181 of file sparse_matrix.h.
|
private |
Pointer to the matrix we use.
Definition at line 172 of file sparse_matrix.h.