Skip to content
Snippets Groups Projects
Commit f7a0f62a authored by Elias Pipping's avatar Elias Pipping
Browse files

Tests: Cleanup

parent c2400532
No related branches found
No related tags found
No related merge requests found
......@@ -45,15 +45,13 @@ template<class MatrixType, class DiscFuncType, class BitVectorType>
inline
void BlockGSStep<MatrixType, DiscFuncType, BitVectorType>::iterate_step(int i)
{
const MatrixType& mat = *this->mat_;
auto const &ignore_i = this->ignore()[i];
if (ignore_i.all())
return;
VectorBlock r;
residual(i, r);
const auto& mat_ii = mat[i][i];
const auto& mat_ii = (*this->mat_)[i][i];
// Compute correction v = A_{i,i}^{-1} r[i]
VectorBlock v;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment