mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Correct for SP build
This commit is contained in:
@ -91,10 +91,10 @@ void Foam::cyclicACMIPolyPatch::resetAMI
|
||||
);
|
||||
|
||||
srcMask_ =
|
||||
min(1.0 - tolerance_, max(tolerance_, AMI().srcWeightsSum()));
|
||||
min(scalar(1) - tolerance_, max(tolerance_, AMI().srcWeightsSum()));
|
||||
|
||||
tgtMask_ =
|
||||
min(1.0 - tolerance_, max(tolerance_, AMI().tgtWeightsSum()));
|
||||
min(scalar(1) - tolerance_, max(tolerance_, AMI().tgtWeightsSum()));
|
||||
|
||||
forAll(Sf, faceI)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user