mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Further standardization of loop index naming: pointI -> pointi, patchI -> patchi
This commit is contained in:
@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user