![]() |
deal.II version 9.7.1
|
Accessor class for iterators
Definition at line 83 of file petsc_matrix_base.h.
Public Types | |
| using | size_type = types::global_dof_index |
Public Member Functions | |
| Accessor (const MatrixBase *matrix, const size_type row, const size_type index) | |
| size_type | row () const |
| size_type | index () const |
| size_type | column () const |
| PetscScalar | value () const |
Static Public Member Functions | |
| static ::ExceptionBase & | ExcBeyondEndOfMatrix () |
| static ::ExceptionBase & | ExcAccessToNonlocalRow (int arg1, int arg2, int arg3) |
Private Member Functions | |
| void | visit_present_row () |
Private Attributes | |
| MatrixBase * | matrix |
| size_type | a_row |
| size_type | a_index |
| std::shared_ptr< const std::vector< size_type > > | colnum_cache |
| std::shared_ptr< const std::vector< PetscScalar > > | value_cache |
Friends | |
| class | const_iterator |
Declare type for container size.
Definition at line 89 of file petsc_matrix_base.h.
| PETScWrappers::MatrixIterators::const_iterator::Accessor::Accessor | ( | const MatrixBase * | matrix, |
| const size_type | row, | ||
| const size_type | index ) |
Constructor. Since we use accessors only for read access, a const matrix pointer is sufficient.
| size_type PETScWrappers::MatrixIterators::const_iterator::Accessor::row | ( | ) | const |
Row number of the element represented by this object.
| size_type PETScWrappers::MatrixIterators::const_iterator::Accessor::index | ( | ) | const |
Index in row of the element represented by this object.
| size_type PETScWrappers::MatrixIterators::const_iterator::Accessor::column | ( | ) | const |
Column number of the element represented by this object.
| PetscScalar PETScWrappers::MatrixIterators::const_iterator::Accessor::value | ( | ) | const |
Value of this matrix entry.
|
private |
Discard the old row caches (they may still be used by other accessors) and generate new ones for the row pointed to presently by this accessor.
|
friend |
Definition at line 183 of file petsc_matrix_base.h.
|
mutableprivate |
The matrix accessed.
Definition at line 143 of file petsc_matrix_base.h.
|
private |
Current row number.
Definition at line 148 of file petsc_matrix_base.h.
|
private |
Current index in row.
Definition at line 153 of file petsc_matrix_base.h.
|
private |
Cache where we store the column indices of the present row. This is necessary, since PETSc makes access to the elements of its matrices rather hard, and it is much more efficient to copy all column entries of a row once when we enter it than repeatedly asking PETSc for individual ones. This also makes some sense since it is likely that we will access them sequentially anyway.
In order to make copying of iterators/accessor of acceptable performance, we keep a shared pointer to these entries so that more than one accessor can access this data if necessary.
Definition at line 167 of file petsc_matrix_base.h.
|
private |
Similar cache for the values of this row.
Definition at line 172 of file petsc_matrix_base.h.