Bugfix: Reading of zone meshes in parallel; load balancing
This commit is contained in:
parent
7d5a3f22f3
commit
35e0a53d62
1 changed files with 17 additions and 13 deletions
|
@ -164,9 +164,12 @@ ZoneMesh<ZoneType, MeshType>::ZoneMesh
|
|||
mesh_(mesh),
|
||||
zoneMapPtr_(NULL)
|
||||
{
|
||||
PtrList<entry> zoneEntries(is);
|
||||
|
||||
if (!zoneEntries.empty())
|
||||
{
|
||||
PtrList<ZoneType>& zones = *this;
|
||||
|
||||
PtrList<entry> zoneEntries(is);
|
||||
zones.setSize(zoneEntries.size());
|
||||
|
||||
forAll(zones, zoneI)
|
||||
|
@ -183,6 +186,7 @@ ZoneMesh<ZoneType, MeshType>::ZoneMesh
|
|||
)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Reference in a new issue