| 150 | } |
| 151 | |
| 152 | void resize(Index rows, Index cols) |
| 153 | { |
| 154 | EIGEN_ONLY_USED_FOR_DEBUG(rows); |
| 155 | EIGEN_ONLY_USED_FOR_DEBUG(cols); |
| 156 | eigen_assert(rows == this->rows() && cols == this->cols() |
| 157 | && "SparseSelfadjointView::resize() does not actually allow to resize."); |
| 158 | } |
| 159 | |
| 160 | protected: |
| 161 |
no test coverage detected