From baba0069d4aa4207c5186237c5d4a053e6bc96fe Mon Sep 17 00:00:00 2001 From: Mark Olesen <Mark.Olesen@esi-group.com> Date: Wed, 4 Jul 2018 09:13:11 +0200 Subject: [PATCH] BUG: inconsistent AMI information (issue #860) - use "min:xxx" format for AMIInterpolation as well --- .../AMIInterpolation/AMIInterpolation/AMIInterpolation.C | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C index 910efba4e83..b2552fb6103 100644 --- a/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C +++ b/src/meshTools/AMIInterpolation/AMIInterpolation/AMIInterpolation.C @@ -196,9 +196,9 @@ void Foam::AMIInterpolation<SourcePatch, TargetPatch>::normaliseWeights Info<< indent << "AMI: Patch " << patchName << " sum(weights)" - << " min = " << gMin(wghtSum) - << " max = " << gMax(wghtSum) - << " average = " << gAverage(wghtSum) << nl; + << " min:" << gMin(wghtSum) + << " max:" << gMax(wghtSum) + << " average:" << gAverage(wghtSum) << nl; const label nLow = returnReduce(nLowWeight, sumOp<label>()); -- GitLab