Skip to content
Snippets Groups Projects
Commit cdd2a8ec authored by hauser's avatar hauser
Browse files

Now its possible to balance load on any level.

[[Imported from SVN: r8149]]
parent c1c506f9
No related branches found
No related tags found
No related merge requests found
......@@ -375,14 +375,16 @@ static void CenterOfMass (ELEMENT *e, DOUBLE *pos)
static void InheritPartition (ELEMENT *e)
{
int i;
ELEMENT *SonList[MAX_SONS];
for(i=0; i<SONS_OF_ELEM(e); i++)
{
ELEMENT *son = SON(e,i);
if (son==NULL) break;
PARTITION(son) = PARTITION(e);
InheritPartition(son);
if (GetAllSons(e,SonList)==0)
{
for(i=0; SonList[i]!=NULL; i++)
{
PARTITION(SonList[i]) = PARTITION(e);
InheritPartition(SonList[i]);
}
}
}
......@@ -455,6 +457,11 @@ int NS_PREFIX BalanceGridRCB (MULTIGRID *theMG, int level)
}
ENDDEBUG
for (i=0, e=FIRSTELEMENT(theGrid); e!=NULL; i++, e=SUCCE(e))
{
InheritPartition (e);
}
Release(theHeap,FROM_TOP,MarkKey);
}
......
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