Skip to content
Snippets Groups Projects
Commit 19669215 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MaL] Remove unused/commented EM::operator(r, c).

operator() (IndexType row, IndexType col)
parent 2e54137a
No related branches found
No related tags found
No related merge requests found
......@@ -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; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment