| 56 | const CoeffType operator() (Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } |
| 57 | |
| 58 | CoeffType coeffRef(Index i) { return CoeffType(m_values[i], m_jacobian.col(i)); } |
| 59 | const CoeffType coeffRef(Index i) const { return CoeffType(m_values[i], m_jacobian.col(i)); } |
| 60 | |
| 61 | Index size() const { return m_values.size(); } |