mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: use updated HashTable methods
This commit is contained in:
committed by
Andrew Heather
parent
5dcced7b86
commit
d9727fad1c
@ -102,7 +102,7 @@ void Foam::fileFormats::ensightMeshReader::readIDs
|
||||
foamToElem.resize(sz+nShapes);
|
||||
if (doRead)
|
||||
{
|
||||
elemToFoam.resize(sz+nShapes);
|
||||
elemToFoam.reserve(elemToFoam.size()+nShapes);
|
||||
for (label shapei = 0; shapei < nShapes; shapei++)
|
||||
{
|
||||
label elemi;
|
||||
|
||||
@ -76,14 +76,14 @@ label nCells = 0;
|
||||
|
||||
bool hangingNodes = false;
|
||||
|
||||
pointField points(0);
|
||||
faceList faces(0);
|
||||
labelList owner(0);
|
||||
labelList neighbour(0);
|
||||
pointField points;
|
||||
faceList faces;
|
||||
labelList owner;
|
||||
labelList neighbour;
|
||||
|
||||
// Group type and name
|
||||
Map<word> groupType(128);
|
||||
Map<word> groupName(128);
|
||||
Map<word> groupType;
|
||||
Map<word> groupName;
|
||||
|
||||
// Point groups
|
||||
DynamicList<label> pointGroupZoneID;
|
||||
|
||||
Reference in New Issue
Block a user