Skip to content
Snippets Groups Projects
Commit 0c0faf7a authored by Oliver Sander's avatar Oliver Sander
Browse files

[bugfix] Properly unset all entries in the recompute_ BitSetVector

This fixes the previous patch.
parent 481ad413
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,8 @@ preprocess()
recompute_.resize(this->mgTransfer_.size());
for (size_t i=0; i<this->mgTransfer_.size(); i++)
{
recompute_[i].resize(hasObstacleHierarchy_[i]->size(), false);
recompute_[i].resize(hasObstacleHierarchy_[i]->size());
recompute_[i].unsetAll();
dynamic_cast<TruncatedMGTransfer<VectorType>*>(this->mgTransfer_[i])->setRecomputeBitField(&recompute_[i]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment