| 48 | |
| 49 | public: |
| 50 | MatrixBlock(MatrixType& matrix, Index rows, Index columns, Index batches, Index start_row, Index start_column, Index start_batch) |
| 51 | : matrix_(matrix) |
| 52 | , rows_(rows) |
| 53 | , columns_(columns) |
| 54 | , batches_(batches) |
| 55 | , start_row_(start_row) |
| 56 | , start_column_(start_column) |
| 57 | , start_batch_(start_batch) |
| 58 | {} |
| 59 | |
| 60 | /** |
| 61 | * \brief Returns the number of rows of this matrix. |
nothing calls this directly
no outgoing calls
no test coverage detected