Default constructor yielding an empty \c 0 \c x \c 0 matrix */
| 759 | |
| 760 | /** Default constructor yielding an empty \c 0 \c x \c 0 matrix */ |
| 761 | inline SparseMatrix() : m_outerSize(0), m_innerSize(0), m_outerIndex(0), m_innerNonZeros(0) { resize(0, 0); } |
| 762 | |
| 763 | /** Constructs a \a rows \c x \a cols empty matrix */ |
| 764 | inline SparseMatrix(Index rows, Index cols) : m_outerSize(0), m_innerSize(0), m_outerIndex(0), m_innerNonZeros(0) { |
nothing calls this directly
no test coverage detected