Skip to content
Snippets Groups Projects
Commit b8eb3cae authored by mattijs's avatar mattijs
Browse files

ENH: renumberMesh: do not print frontWidth if not calculated

parent fbf03b52
Branches
Tags
No related merge requests found
...@@ -641,9 +641,12 @@ int main(int argc, char *argv[]) ...@@ -641,9 +641,12 @@ int main(int argc, char *argv[])
Info<< "Mesh size: " << mesh.globalData().nTotalCells() << nl Info<< "Mesh size: " << mesh.globalData().nTotalCells() << nl
<< "Before renumbering :" << nl << "Before renumbering :" << nl
<< " band : " << band << nl << " band : " << band << nl
<< " profile : " << profile << nl << " profile : " << profile << nl;
<< " rms frontwidth : " << rmsFrontwidth << nl if (doFrontWidth)
<< endl; {
Info<< " rms frontwidth : " << rmsFrontwidth << nl;
}
Info<< endl;
bool sortCoupledFaceCells = false; bool sortCoupledFaceCells = false;
bool writeMaps = false; bool writeMaps = false;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment