From 196692153c4a320db4961bd8b2574bb258248f3c Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Wed, 27 Nov 2019 14:51:03 +0100 Subject: [PATCH] [MaL] Remove unused/commented EM::operator(r, c). operator() (IndexType row, IndexType col) --- MathLib/LinAlg/Eigen/EigenMatrix.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/MathLib/LinAlg/Eigen/EigenMatrix.h b/MathLib/LinAlg/Eigen/EigenMatrix.h index 16478520e81..6237fc4977d 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; } -- GitLab