some more cleanup and reorganisation

This commit is contained in:
Benoit Jacob
2007-12-17 07:25:11 +00:00
parent 9314b8e024
commit f75a0c5179
28 changed files with 138 additions and 102 deletions

View File

@@ -51,9 +51,9 @@ template<typename Lhs, typename Rhs> class Sum : NoOperatorEquals,
int _rows() const { return m_lhs.rows(); }
int _cols() const { return m_lhs.cols(); }
Scalar _read(int row, int col) const
Scalar _coeff(int row, int col) const
{
return m_lhs.read(row, col) + m_rhs.read(row, col);
return m_lhs.coeff(row, col) + m_rhs.coeff(row, col);
}
protected: