Default constructor yielding an empty \c 0 \c x \c 0 matrix */
| 627 | |
| 628 | /** Default constructor yielding an empty \c 0 \c x \c 0 matrix */ |
| 629 | inline SparseMatrix() |
| 630 | : m_outerSize(-1), m_innerSize(0), m_outerIndex(0), m_innerNonZeros(0) |
| 631 | { |
| 632 | check_template_parameters(); |
| 633 | resize(0, 0); |
| 634 | } |
| 635 | |
| 636 | /** Constructs a \a rows \c x \a cols empty matrix */ |
| 637 | inline SparseMatrix(Index rows, Index cols) |
nothing calls this directly
no test coverage detected