STYLE: less verbose output of available procs in redistributePar

This commit is contained in:
Mark Olesen 2017-12-22 12:50:55 +01:00
parent 3787d45c12
commit e60a77442c

View File

@ -2545,7 +2545,8 @@ int main(int argc, char *argv[])
haveMesh[Pstream::myProcNo()] = isFile(meshPath);
Pstream::gatherList(haveMesh);
Pstream::scatterList(haveMesh);
Info<< "Per processor mesh availability : " << haveMesh << endl;
Info<< "Per processor mesh availability:" << nl
<< " " << flatOutput(haveMesh) << nl << endl;
// Addressing back to reconstructed mesh as xxxProcAddressing.
@ -2898,7 +2899,8 @@ int main(int argc, char *argv[])
haveMesh[Pstream::myProcNo()] = isFile(meshPath);
Pstream::gatherList(haveMesh);
Pstream::scatterList(haveMesh);
Info<< "Per processor mesh availability : " << haveMesh << endl;
Info<< "Per processor mesh availability:" << nl
<< " " << flatOutput(haveMesh) << nl << endl;
// Load mesh (or create dummy one)
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@ -2930,7 +2932,7 @@ int main(int argc, char *argv[])
fvMesh& mesh = meshPtr();
label nOldCells = mesh.nCells();
const label nOldCells = mesh.nCells();
//Pout<< "Loaded mesh : nCells:" << nOldCells
// << " nPatches:" << mesh.boundaryMesh().size() << endl;