Reference documentation for deal.II version 8.5.1
|
#include <deal.II/lac/chunk_sparse_matrix.h>
Classes | |
class | Reference |
Public Types | |
typedef ChunkSparseMatrix< number > | MatrixType |
Public Member Functions | |
Accessor (MatrixType *matrix, const unsigned int row) | |
Accessor (MatrixType *matrix) | |
Reference | value () const |
MatrixType & | get_matrix () const |
Public Member Functions inherited from ChunkSparsityPatternIterators::Accessor | |
Accessor (const ChunkSparsityPattern *matrix, const unsigned int row) | |
Accessor (const ChunkSparsityPattern *matrix) | |
unsigned int | row () const |
std::size_t | reduced_index () const |
unsigned int | column () const |
bool | is_valid_entry () const |
bool | operator== (const Accessor &) const |
bool | operator< (const Accessor &) const |
Private Attributes | |
MatrixType * | matrix |
Friends | |
template<typename , bool > | |
class | Iterator |
Additional Inherited Members | |
Protected Member Functions inherited from ChunkSparsityPatternIterators::Accessor | |
void | advance () |
Protected Attributes inherited from ChunkSparsityPatternIterators::Accessor | |
const ChunkSparsityPattern * | sparsity_pattern |
SparsityPatternIterators::Accessor | reduced_accessor |
unsigned int | chunk_row |
unsigned int | chunk_col |
Accessor class for non-constant matrices, used in the 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 148 of file chunk_sparse_matrix.h.
typedef ChunkSparseMatrix<number> ChunkSparseMatrixIterators::Accessor< number, false >::MatrixType |
Typedef for the type (including constness) of the matrix to be used here.
Definition at line 226 of file chunk_sparse_matrix.h.
ChunkSparseMatrixIterators::Accessor< number, false >::Accessor | ( | MatrixType * | matrix, |
const unsigned int | row | ||
) |
Constructor.
ChunkSparseMatrixIterators::Accessor< number, false >::Accessor | ( | MatrixType * | matrix | ) |
Constructor. Construct the end accessor for the given matrix.
Reference ChunkSparseMatrixIterators::Accessor< number, false >::value | ( | ) | const |
Value of this matrix entry, returned as a read- and writable reference.
MatrixType& ChunkSparseMatrixIterators::Accessor< number, false >::get_matrix | ( | ) | const |
Return a reference to the matrix into which this accessor points. Note that in the present case, this is a non-constant reference.
Make iterator class a friend.
Definition at line 265 of file chunk_sparse_matrix.h.
|
private |
Pointer to the matrix we use.
Definition at line 254 of file chunk_sparse_matrix.h.