Skip to content

#324 Marking during adaptation in OneDGrid

Metadata

Property Value
Reported by Andreas Dedner (A.S.Dedner@warwick.ac.uk)
Reported at Oct 22, 2007 20:23
Type Bug Report
Version Git (pre2.4) [autotools]
Operating System Unspecified / All
Last edited by Oliver Sander (oliver.sander@tu-dresden.de)
Last edited at Mar 6, 2009 11:05
Closed by Oliver Sander (oliver.sander@tu-dresden.de)
Closed at Mar 6, 2009 11:05
Closed in version 1.2
Resolution Fixed
Comment In 4905 on the trunk and 4906 on the 1.2 release branch.

Description

I thing the marking strategy in OneDGrid concerning has been coarsend/was refined does not work properly. I thing in preAdapt() something of the type for (int i=0; i<=maxLevel(); i++) { OneDEntityImp<1>* eIt; for (eIt = elements[i].begin; eIt!=NULL; eIt = eIt->succ_) { if (eIt->markState_ == OneDEntityImp<1>::COARSEN) eIt->adaptationState_ = OneDEntityImp<1>::COARSEN; else eIt->adaptationState_ = OneDEntityImp<1>::NONE; } } is missing.