| 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(); } |
| 62 | |
| 63 | // FIXME here we could return an expression of the sum |
| 64 | Scalar sum() const { /*std::cerr << "sum \n\n";*/ /*std::cerr << m_jacobian.rowwise().sum() << "\n\n";*/ return Scalar(m_values.sum(), m_jacobian.rowwise().sum()); } |
no outgoing calls
no test coverage detected