Formatting

This commit is contained in:
Hrvoje Jasak 2019-09-25 09:11:22 +01:00
parent e6cba04e58
commit c23b98b17b

View file

@ -119,14 +119,14 @@ void Foam::ggiAMGInterfaceField::updateInterfaceMatrix
if (switchToLhs) if (switchToLhs)
{ {
forAll(faceCells, elemI) forAll (faceCells, elemI)
{ {
result[faceCells[elemI]] += coeffs[elemI]*pnf[elemI]; result[faceCells[elemI]] += coeffs[elemI]*pnf[elemI];
} }
} }
else else
{ {
forAll(faceCells, elemI) forAll (faceCells, elemI)
{ {
result[faceCells[elemI]] -= coeffs[elemI]*pnf[elemI]; result[faceCells[elemI]] -= coeffs[elemI]*pnf[elemI];
} }