ENH: renumberMesh: do not print frontWidth if not calculated

This commit is contained in:
mattijs
2012-03-30 09:56:25 +01:00
parent fbf03b524c
commit b8eb3cae7d

View File

@ -641,9 +641,12 @@ int main(int argc, char *argv[])
Info<< "Mesh size: " << mesh.globalData().nTotalCells() << nl
<< "Before renumbering :" << nl
<< " band : " << band << nl
<< " profile : " << profile << nl
<< " rms frontwidth : " << rmsFrontwidth << nl
<< endl;
<< " profile : " << profile << nl;
if (doFrontWidth)
{
Info<< " rms frontwidth : " << rmsFrontwidth << nl;
}
Info<< endl;
bool sortCoupledFaceCells = false;
bool writeMaps = false;