Skip to content
Snippets Groups Projects
Commit 4153ca0a authored by Praetorius, Simon's avatar Praetorius, Simon
Browse files

add changeIndex to track grid changes

parent 4fddde92
No related branches found
No related tags found
No related merge requests found
......@@ -81,6 +81,13 @@ namespace AMDiS
vec->postAdapt(refined_);
}
grid_->postAdapt();
changeIndex_++;
}
/// Returns the grid change index, see \ref changeIndex.
unsigned long changeIndex() const
{
return changeIndex_;
}
private:
......@@ -88,6 +95,10 @@ namespace AMDiS
std::list<DOFVectorInterface*> data_;
bool mightCoarsen_ = false;
bool refined_ = false;
/// This index is incremented every time the grid is changed, e.g. by
/// refinement or coarsening.
unsigned long changeIndex_ = 0;
};
} // end namespace AMDiS
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