Reference documentation for deal.II version 9.6.0
|
#include <deal.II/lac/sparsity_pattern.h>
Public Types | |
using | size_type = types::global_dof_index |
using | container_pointer_type = SparsityPattern * |
using | iterator_category |
using | value_type |
using | difference_type |
using | reference |
using | pointer |
Public Member Functions | |
Iterator (const SparsityPattern *sp, const std::size_t linear_index) | |
Iterator (const Accessor &accessor) | |
Iterator & | operator++ () |
Iterator | operator++ (int) |
Iterator & | operator-- () |
Iterator | operator-- (int) |
Iterator | operator+ (const difference_type n) const |
Iterator | operator- (const difference_type n) const |
difference_type | operator- (const Iterator &p) const |
Iterator & | operator+= (const difference_type n) |
Iterator & | operator-= (const difference_type n) |
reference | operator* () const |
pointer | operator-> () const |
std::enable_if_t< std::is_convertible_v< OtherIterator, Iterator >, bool > | operator== (const OtherIterator &right) const |
std::enable_if_t< std::is_convertible_v< OtherIterator, Iterator >, bool > | operator!= (const OtherIterator &right) const |
bool | operator<= (const Iterator &) const |
bool | operator>= (const Iterator &) const |
bool | operator< (const Iterator &) const |
bool | operator> (const Iterator &) const |
Protected Attributes | |
Accessor | accessor |
An iterator class for walking over the elements of a sparsity pattern.
The typical use for these iterators is to iterate over the elements of a sparsity pattern (or, since they also serve as the basis for iterating over the elements of an associated matrix, over the elements of a sparse matrix), or over the elements of individual rows. There is no guarantee that the elements of a row are actually traversed in an order in which column numbers monotonically increase. See the documentation of the SparsityPattern class for more information.
Definition at line 279 of file sparsity_pattern.h.
Size type.
Definition at line 285 of file sparsity_pattern.h.
Type of the stored pointer.
Definition at line 290 of file sparsity_pattern.h.
|
inherited |
Iterator category.
Definition at line 147 of file linear_index_iterator.h.
|
inherited |
An alias for the type you get when you dereference an iterator of the current kind.
Definition at line 154 of file linear_index_iterator.h.
|
inherited |
Difference type.
Definition at line 159 of file linear_index_iterator.h.
|
inherited |
Reference type.
Definition at line 164 of file linear_index_iterator.h.
|
inherited |
Pointer type.
Definition at line 169 of file linear_index_iterator.h.
SparsityPatternIterators::Iterator::Iterator | ( | const SparsityPattern * | sp, |
const std::size_t | linear_index ) |
Constructor. Create an iterator into the sparsity pattern sp
for the given global index (i.e., the index of the given element counting from the zeroth row).
SparsityPatternIterators::Iterator::Iterator | ( | const Accessor & | accessor | ) |
Constructor. Create an iterator into the sparsity pattern sp
for a given accessor.
|
inlineinherited |
Prefix increment.
Definition at line 186 of file linear_index_iterator.h.
|
inlineinherited |
Postfix increment.
Definition at line 192 of file linear_index_iterator.h.
|
inlineinherited |
Prefix decrement.
Definition at line 198 of file linear_index_iterator.h.
|
inlineinherited |
Postfix decrement.
Definition at line 204 of file linear_index_iterator.h.
|
inlineinherited |
Return an iterator that is n
entries ahead of the current one.
Definition at line 210 of file linear_index_iterator.h.
|
inlineinherited |
Return an iterator that is n
entries behind the current one.
Definition at line 216 of file linear_index_iterator.h.
|
inlineinherited |
Return the distance between the current iterator and the argument. The distance is given by how many times one has to apply operator++() to the current iterator to get the argument (for a positive return value), or operator--() (for a negative return value).
Definition at line 237 of file linear_index_iterator.h.
|
inlineinherited |
Increment the iterator position by n
.
Definition at line 222 of file linear_index_iterator.h.
|
inlineinherited |
Decrement the iterator position by n
.
Definition at line 228 of file linear_index_iterator.h.
|
inlineinherited |
Dereferencing operator.
Definition at line 243 of file linear_index_iterator.h.
|
inlineinherited |
Dereferencing operator.
Definition at line 249 of file linear_index_iterator.h.
|
inlineinherited |
Comparison operator. Returns true
if both iterators point to the same entry in the same container.
Definition at line 257 of file linear_index_iterator.h.
|
inlineinherited |
Opposite of operator==().
Definition at line 268 of file linear_index_iterator.h.
|
inlineinherited |
Comparison operator: uses the same ordering as operator<(), but also checks for equality.
This function is only valid if both iterators point into the same container.
Definition at line 280 of file linear_index_iterator.h.
|
inlineinherited |
Comparison operator: uses the same ordering as operator>(), but also checks for equality.
This function is only valid if both iterators point into the same container.
Definition at line 291 of file linear_index_iterator.h.
|
inlineinherited |
Comparison operator. Result is true if either the first row number is smaller or if the row numbers are equal and the first index is smaller.
This function is only valid if both iterators point into the same container.
Definition at line 300 of file linear_index_iterator.h.
|
inlineinherited |
Comparison operator. Works in the same way as operator<(), just the other way round.
Definition at line 308 of file linear_index_iterator.h.
|
protectedinherited |
Store an object of the accessor class.
Definition at line 325 of file linear_index_iterator.h.