mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
ENH: Consistency updates after Foundation merge and code tidying
This commit is contained in:
@ -142,7 +142,7 @@ Foam::parLagrangianRedistributor::redistributeLagrangianPositions
|
||||
{
|
||||
// List of lists of particles to be transfered for all of the
|
||||
// neighbour processors
|
||||
List<IDLList<passiveParticle> > particleTransferLists
|
||||
List<IDLList<passiveParticle>> particleTransferLists
|
||||
(
|
||||
Pstream::nProcs()
|
||||
);
|
||||
@ -185,7 +185,7 @@ Foam::parLagrangianRedistributor::redistributeLagrangianPositions
|
||||
|
||||
|
||||
// Start sending. Sets number of bytes transferred
|
||||
labelListList allNTrans(Pstream::nProcs());
|
||||
labelList allNTrans(Pstream::nProcs());
|
||||
pBufs.finishedSends(allNTrans);
|
||||
|
||||
|
||||
@ -208,7 +208,7 @@ Foam::parLagrangianRedistributor::redistributeLagrangianPositions
|
||||
// Retrieve from receive buffers
|
||||
forAll(allNTrans, procI)
|
||||
{
|
||||
label nRec = allNTrans[procI][Pstream::myProcNo()];
|
||||
label nRec = allNTrans[procI];
|
||||
|
||||
//Pout<< "From processor " << procI << " receiving bytes " << nRec
|
||||
// << endl;
|
||||
|
||||
Reference in New Issue
Block a user