Skip to content

Commit

Permalink
Merge pull request #4900 from davydden/mf_operator_fix
Browse files Browse the repository at this point in the history
fix a minor bug in MatrixFreeOperators::Base::vmult_interface_down()
  • Loading branch information
kronbichler committed Aug 18, 2017
2 parents 3057d72 + 3683cf3 commit 5a5d769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/deal.II/matrix_free/operators.h
Expand Up @@ -1312,7 +1312,7 @@ namespace MatrixFreeOperators
.local_element(edge_constrained_indices[j][i])
= edge_constrained_values[j][i].first;
}
for ( ; c<dst.local_size(); ++c)
for ( ; c<subblock(dst,j).local_size(); ++c)
subblock(dst,j).local_element(c) = 0.;
}
}
Expand Down

0 comments on commit 5a5d769

Please sign in to comment.