Skip to content
Snippets Groups Projects
Commit b93ad929 authored by Markus Blatt's avatar Markus Blatt
Browse files

Perparation of smoothers was wrong for only 2 levels in the hierarchy.

[[Imported from SVN: r493]]
parent e1e85818
No related branches found
No related tags found
No related merge requests found
......@@ -213,9 +213,9 @@ namespace Dune
DIterator lhs = lhs_->finest();
if(rhs!=rhs_->coarsest()) {
smoother->pre(*lhs,*rhs);
for(++smoother, ++lhs, ++rhs; smoother != coarsest; ++smoother, ++lhs, ++rhs)
for(; smoother != coarsest; ++smoother, ++lhs, ++rhs)
smoother->pre(*lhs,*rhs);
smoother->pre(*lhs,*rhs);
}
if(buildHierarchy_) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment