Skip to content
Snippets Groups Projects
Commit 5750cf1b authored by Max Kahnt's avatar Max Kahnt
Browse files

Revert "Fix TruncatedBlockGSStep localExactSolve."

This reverts commit b6475d8e.
parent b6475d8e
Branches
Tags
No related merge requests found
......@@ -301,9 +301,8 @@ public:
typename MBlock::row_type::Iterator inner_it = A[i].begin();
typename MBlock::row_type::Iterator inner_end = A[i].end();
for(; inner_it!=inner_end; ++inner_it)
if (ignore[i] && inner_it.index()==i)
if (inner_it.index()==i and *inner_it==0.0)
{
assert(*inner_it == 0.0);
*inner_it = 1.0;
b[i] = x[i];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment