Reference documentation for deal.II version 9.1.0-pre
Classes | Public Types | Public Member Functions | Private Attributes | Friends | List of all members
SparseMatrixIterators::Accessor< number, false > Class Template Reference

#include <deal.II/lac/sparse_matrix.h>

Inheritance diagram for SparseMatrixIterators::Accessor< number, false >:
[legend]

Classes

class  Reference
 

Public Types

using MatrixType = SparseMatrix< number >
 

Public Member Functions

 Accessor (MatrixType *matrix, const std::size_t index)
 
 Accessor (MatrixType *matrix)
 
Reference value () const
 
MatrixTypeget_matrix () const
 
- Public Member Functions inherited from SparsityPatternIterators::Accessor
 Accessor (const SparsityPattern *matrix, const std::size_t index_within_sparsity)
 
 Accessor (const SparsityPattern *matrix)
 
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
 

Private Attributes

MatrixTypematrix
 

Friends

template<typename , bool >
class Iterator
 

Additional Inherited Members

- Protected Member Functions inherited from SparsityPatternIterators::Accessor
void advance ()
 
- Protected Attributes inherited from SparsityPatternIterators::Accessor
const SparsityPatternsparsity_pattern
 
std::size_t index_within_sparsity
 

Detailed Description

template<typename number>
class SparseMatrixIterators::Accessor< number, false >

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 191 of file sparse_matrix.h.

Member Typedef Documentation

template<typename number >
using SparseMatrixIterators::Accessor< number, false >::MatrixType = SparseMatrix<number>

Typedef for the type (including constness) of the matrix to be used here.

Definition at line 275 of file sparse_matrix.h.

Constructor & Destructor Documentation

template<typename number >
SparseMatrixIterators::Accessor< number, false >::Accessor ( MatrixType matrix,
const std::size_t  index 
)

Constructor.

template<typename number >
SparseMatrixIterators::Accessor< number, false >::Accessor ( MatrixType matrix)

Constructor. Construct the end accessor for the given matrix.

Member Function Documentation

template<typename number >
Reference SparseMatrixIterators::Accessor< number, false >::value ( ) const

Value of this matrix entry, returned as a read- and writable reference.

template<typename number >
MatrixType& SparseMatrixIterators::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.

Friends And Related Function Documentation

template<typename number >
template<typename , bool >
friend class Iterator
friend

Make iterator class a friend.

Definition at line 315 of file sparse_matrix.h.

Member Data Documentation

template<typename number >
MatrixType* SparseMatrixIterators::Accessor< number, false >::matrix
private

Pointer to the matrix we use.

Definition at line 304 of file sparse_matrix.h.


The documentation for this class was generated from the following file: