Further standardization of loop index naming: pointI -> pointi, patchI -> patchi

This commit is contained in:
Henry Weller
2016-05-18 21:20:42 +01:00
parent ac632e7984
commit 67de20df25
365 changed files with 4877 additions and 4877 deletions

View File

@ -273,13 +273,13 @@ void Foam::multiLevelDecomp::decompose
label nPoints = 0;
labelList nOutsideConnections(n, 0);
forAll(pointPoints, pointI)
forAll(pointPoints, pointi)
{
if ((dist[pointI] / nNext) == blockI)
if ((dist[pointi] / nNext) == blockI)
{
nPoints++;
const labelList& pPoints = pointPoints[pointI];
const labelList& pPoints = pointPoints[pointi];
forAll(pPoints, i)
{