\internal * Resize the nonzero vector to \a size */
| 642 | /** \internal |
| 643 | * Resize the nonzero vector to \a size */ |
| 644 | void resizeNonZeros(Index size) |
| 645 | { |
| 646 | m_data.resize(size); |
| 647 | } |
| 648 | |
| 649 | /** \returns a const expression of the diagonal coefficients. */ |
| 650 | const ConstDiagonalReturnType diagonal() const { return ConstDiagonalReturnType(*this); } |
no test coverage detected