Skip to content
Snippets Groups Projects
Commit da2d35ab authored by Adrian Burri's avatar Adrian Burri
Browse files

Added routines to determine number of child an element is

git-svn-id: https://dune.mathematik.uni-freiburg.de/svn/alugrid/trunk@293 0d966ed9-3843-0410-af09-ebfb50bd7c74
parent e1224e0d
No related branches found
No related tags found
No related merge requests found
......@@ -667,6 +667,14 @@ template < class A > void Hface4Top < A > :: refineImmediate (myrule_t r) {
// ?? // Fl"ache die Situation nach der Verfeinerung vervollst"andigen.
// ??
// ?? {for (innerface_t * f = down () ; f ; f = f->next ()) f->nb = nb ; }
// * higher order
int i = 0;
for (innerface_t* f = down(); f; f = f->next(), ++i) {
f->_parRule = getrule();
f->_nChild = i;
}
this->postRefinement () ;
}
return ;
......
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