dune-istl 3.0-git
|
Provides access to an iterator over an arbitrary subset of matrix rows. More...
#include <dune/istl/colcompmatrix.hh>
Classes | |
class | const_iterator |
The matrix row iterator type. More... | |
Public Types | |
typedef M | Matrix |
the type of the matrix class. | |
typedef S | RowIndexSet |
the type of the set of valid row indices. | |
Public Member Functions | |
MatrixRowSubset (const Matrix &m, const RowIndexSet &s) | |
Construct an row set over all matrix rows. | |
const Matrix & | matrix () const |
const RowIndexSet & | rowIndexSet () const |
const_iterator | begin () const |
Get the row iterator at the first row. | |
const_iterator | end () const |
Get the row iterator at the end of all rows. | |
Provides access to an iterator over an arbitrary subset of matrix rows.
M | The type of the matrix. |
S | the type of the set of valid row indices. |
the type of the matrix class.
the type of the set of valid row indices.
|
inline |
Construct an row set over all matrix rows.
m | The matrix for which we manage the rows. |
s | The set of row indices we manage. |
|
inline |
Get the row iterator at the first row.
|
inline |
Get the row iterator at the end of all rows.
|
inline |