Formatting
This commit is contained in:
parent
4d75b310c1
commit
279876e5fa
1 changed files with 16 additions and 16 deletions
|
@ -530,22 +530,22 @@ void GGIInterpolation<MasterPatch, SlavePatch>::rescaleWeightingFactors() const
|
|||
scalar curMWC = 0;
|
||||
|
||||
// Rescaling the slave weights
|
||||
if(debug)
|
||||
{
|
||||
if
|
||||
(
|
||||
uncoveredMasterFaces().size() > 0
|
||||
|| uncoveredSlaveFaces().size() > 0
|
||||
)
|
||||
{
|
||||
InfoIn
|
||||
(
|
||||
"void GGIInterpolation<MasterPatch, SlavePatch>::"
|
||||
"rescaleWeightingFactors() const"
|
||||
) << "Uncovered faces found. On master: "
|
||||
<< uncoveredMasterFaces().size()
|
||||
<< " on slave: " << uncoveredSlaveFaces().size() << endl;
|
||||
}
|
||||
if (debug)
|
||||
{
|
||||
if
|
||||
(
|
||||
uncoveredMasterFaces().size() > 0
|
||||
|| uncoveredSlaveFaces().size() > 0
|
||||
)
|
||||
{
|
||||
InfoIn
|
||||
(
|
||||
"void GGIInterpolation<MasterPatch, SlavePatch>::"
|
||||
"rescaleWeightingFactors() const"
|
||||
) << "Uncovered faces found. On master: "
|
||||
<< uncoveredMasterFaces().size()
|
||||
<< " on slave: " << uncoveredSlaveFaces().size() << endl;
|
||||
}
|
||||
}
|
||||
|
||||
forAll (saW, saWi)
|
||||
|
|
Reference in a new issue