diff --git a/MathLib/LinAlg/Eigen/EigenMatrix.h b/MathLib/LinAlg/Eigen/EigenMatrix.h index 16478520e817851541943707bac9097c93cb4861..6237fc4977d18d1307ffdc4427727d0e60c16782 100644 --- a/MathLib/LinAlg/Eigen/EigenMatrix.h +++ b/MathLib/LinAlg/Eigen/EigenMatrix.h @@ -129,17 +129,6 @@ public: return _mat.coeff(row, col); } - // TODO This method is currently used nowhere. - // I disabled it in order to simplify the interface of this class, - // especially since our other matrix classes lack this operator. - /* - /// get value. This function returns zero if the element doesn't exist. - double operator() (IndexType row, IndexType col) const - { - return get(row, col); - } - */ - /// return always true, i.e. the matrix is always ready for use bool isAssembled() const { return true; }