Skip to content
Snippets Groups Projects
Commit ebf5dea1 authored by Timo Koch's avatar Timo Koch
Browse files

[bugfix] Reset boundary dof marker after grid adaption

parent 4667ac34
No related branches found
No related tags found
1 merge request!1007[bugfix][box] Reset boundary dof marker after grid adaption
......@@ -148,7 +148,7 @@ public:
scvs_.resize(numElements);
scvfs_.resize(numElements);
boundaryDofIndices_.resize(numDofs(), false);
boundaryDofIndices_.assign(numDofs(), false);
numScv_ = 0;
numScvf_ = 0;
......@@ -345,7 +345,7 @@ public:
{
ParentType::update();
boundaryDofIndices_.resize(numDofs(), false);
boundaryDofIndices_.assign(numDofs(), false);
// save global data on the grid's scvs and scvfs
// TODO do we need those information?
......
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