| 38 | typedef typename internal::remove_all<MatrixType>::type NestedExpression; |
| 39 | |
| 40 | explicit SparseView(const MatrixType& mat, const Scalar& reference = Scalar(0), |
| 41 | RealScalar epsilon = NumTraits<Scalar>::dummy_precision()) |
| 42 | : m_matrix(mat), m_reference(reference), m_epsilon(epsilon) {} |
| 43 | |
| 44 | inline Index rows() const { return m_matrix.rows(); } |
| 45 | inline Index cols() const { return m_matrix.cols(); } |
nothing calls this directly
no outgoing calls
no test coverage detected