Formatting
This commit is contained in:
parent
5874a05c7f
commit
358eb9b5e1
1 changed files with 21 additions and 21 deletions
|
@ -349,7 +349,9 @@ int main(int argc, char *argv[])
|
||||||
// Select all cells
|
// Select all cells
|
||||||
refCells.setSize(mesh.nCells());
|
refCells.setSize(mesh.nCells());
|
||||||
|
|
||||||
forAll(mesh.cells(), cellI)
|
const cellList& c = mesh.cells();
|
||||||
|
|
||||||
|
forAll (c, cellI)
|
||||||
{
|
{
|
||||||
refCells[cellI] = cellI;
|
refCells[cellI] = cellI;
|
||||||
}
|
}
|
||||||
|
@ -482,7 +484,6 @@ int main(int argc, char *argv[])
|
||||||
+ " to cells in mesh at "
|
+ " to cells in mesh at "
|
||||||
+ oldTimeName;
|
+ oldTimeName;
|
||||||
|
|
||||||
|
|
||||||
forAll (oldToNew, oldCellI)
|
forAll (oldToNew, oldCellI)
|
||||||
{
|
{
|
||||||
const labelList& added = oldToNew[oldCellI];
|
const labelList& added = oldToNew[oldCellI];
|
||||||
|
@ -506,7 +507,6 @@ int main(int argc, char *argv[])
|
||||||
|
|
||||||
newToOld.write();
|
newToOld.write();
|
||||||
|
|
||||||
|
|
||||||
// Some statistics.
|
// Some statistics.
|
||||||
|
|
||||||
printEdgeStats(mesh);
|
printEdgeStats(mesh);
|
||||||
|
|
Reference in a new issue