Formatting
This commit is contained in:
parent
f5c2709b60
commit
9537d07c25
2 changed files with 9 additions and 3 deletions
|
@ -796,7 +796,10 @@ Foam::autoPtr<Foam::amgMatrix> Foam::clusterAmgPolicy::restrictMatrix() const
|
||||||
{
|
{
|
||||||
if (interfaceFields().set(intI))
|
if (interfaceFields().set(intI))
|
||||||
{
|
{
|
||||||
interfaceFields()[intI].coupledInterface().initInternalFieldTransfer
|
const lduInterface& fineInterface =
|
||||||
|
interfaceFields()[intI].coupledInterface();
|
||||||
|
|
||||||
|
fineInterface.initInternalFieldTransfer
|
||||||
(
|
(
|
||||||
Pstream::blocking,
|
Pstream::blocking,
|
||||||
child_
|
child_
|
||||||
|
@ -981,7 +984,7 @@ Foam::autoPtr<Foam::amgMatrix> Foam::clusterAmgPolicy::restrictMatrix() const
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Info<< "Finished restricting matrix" << endl;
|
||||||
// Create and return amgMatrix
|
// Create and return amgMatrix
|
||||||
return autoPtr<amgMatrix>
|
return autoPtr<amgMatrix>
|
||||||
(
|
(
|
||||||
|
|
|
@ -606,7 +606,10 @@ Foam::autoPtr<Foam::amgMatrix> Foam::pamgPolicy::restrictMatrix() const
|
||||||
{
|
{
|
||||||
if (interfaceFields().set(intI))
|
if (interfaceFields().set(intI))
|
||||||
{
|
{
|
||||||
interfaceFields()[intI].coupledInterface().initInternalFieldTransfer
|
const lduInterface& fineInterface =
|
||||||
|
interfaceFields()[intI].coupledInterface();
|
||||||
|
|
||||||
|
fineInterface.initInternalFieldTransfer
|
||||||
(
|
(
|
||||||
Pstream::blocking,
|
Pstream::blocking,
|
||||||
child_
|
child_
|
||||||
|
|
Reference in a new issue