remove trailing space from some files

This commit is contained in:
Mark Olesen
2009-12-04 13:39:35 +01:00
parent 24543185dc
commit 5e972c772f
341 changed files with 780 additions and 780 deletions

View File

@ -65,7 +65,7 @@ public:
// Constructors
//- Construct given the decomposition dictionary
//- Construct given the decomposition dictionary
// and the derived type name
geomDecomp
(

View File

@ -66,7 +66,7 @@ Foam::manualDecomp::manualDecomp(const dictionary& decompositionDict)
Foam::manualDecomp::manualDecomp
(
const dictionary& decompositionDict,
const dictionary& decompositionDict,
const polyMesh& mesh
)
:

View File

@ -252,14 +252,14 @@ Foam::labelList Foam::simpleGeomDecomp::decompose
pointIndices,
UList<scalar>::less(rotatedPoints.component(vector::X))
);
const scalar summedWeights = sum(weights);
assignToProcessorGroup
(
processorGroups,
n_.x(),
pointIndices,
weights,
processorGroups,
n_.x(),
pointIndices,
weights,
summedWeights
);
@ -280,9 +280,9 @@ Foam::labelList Foam::simpleGeomDecomp::decompose
assignToProcessorGroup
(
processorGroups,
n_.y(),
pointIndices,
weights,
n_.y(),
pointIndices,
weights,
summedWeights
);
@ -302,10 +302,10 @@ Foam::labelList Foam::simpleGeomDecomp::decompose
assignToProcessorGroup
(
processorGroups,
n_.z(),
pointIndices,
weights,
processorGroups,
n_.z(),
pointIndices,
weights,
summedWeights
);
@ -315,5 +315,5 @@ Foam::labelList Foam::simpleGeomDecomp::decompose
}
return finalDecomp;
}
}
// ************************************************************************* //

View File

@ -54,7 +54,7 @@ class simpleGeomDecomp
void assignToProcessorGroup
(
labelList& processorGroup,
labelList& processorGroup,
const label nProcGroup,
const labelList& indices,
const scalarField& weights,