Formatting

This commit is contained in:
Hrvoje Jasak 2016-06-09 18:03:55 +01:00
parent 685c316758
commit b8f2798408

View file

@ -40,7 +40,7 @@ void Foam::AMGInterface::combine(const AMGInterface& coarseGi)
{
const labelList& coarseFra = coarseGi.restrictAddressing_;
forAll(restrictAddressing_, ffi)
forAll (restrictAddressing_, ffi)
{
restrictAddressing_[ffi] = coarseFra[restrictAddressing_[ffi]];
}
@ -67,7 +67,7 @@ Foam::tmp<Foam::scalarField> Foam::AMGInterface::agglomerateCoeffs
scalarField& coarseCoeffs = tcoarseCoeffs();
// Added weights to account for non-integral matching
forAll(restrictAddressing_, ffi)
forAll (restrictAddressing_, ffi)
{
coarseCoeffs[restrictAddressing_[ffi]] +=
restrictWeights_[ffi]*fineCoeffs[fineAddressing_[ffi]];