From 5cf46aa63f78c9fd0b4d99f6a22c417a65186988 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Wed, 15 May 2019 10:01:54 +0100 Subject: [PATCH] STYLE: parProfiling: no tabs --- .../utilities/parProfiling/parProfiling.C | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/functionObjects/utilities/parProfiling/parProfiling.C b/src/functionObjects/utilities/parProfiling/parProfiling.C index 5ba3797594d..5c6513dcd8e 100644 --- a/src/functionObjects/utilities/parProfiling/parProfiling.C +++ b/src/functionObjects/utilities/parProfiling/parProfiling.C @@ -186,16 +186,18 @@ void Foam::functionObjects::parProfiling::report() scalar allToAllAvg = allToAllStats[2].second()/Pstream::nProcs(); Info<< type() << ':' << nl - << "\treduce : avg = " << reduceAvg << 's' << nl - << "\t min = " << reduceStats[0].second() + << incrIndent + << indent << "reduce : avg = " << reduceAvg << 's' << nl + << indent << " min = " << reduceStats[0].second() << "s (processor " << reduceStats[0].first() << ')' << nl - << "\t max = " << reduceStats[1].second() + << indent << " max = " << reduceStats[1].second() << "s (processor " << reduceStats[1].first() << ')' << nl - << "\tall-all : avg = " << allToAllAvg << 's' << nl - << "\t min = " << allToAllStats[0].second() + << indent << "all-all : avg = " << allToAllAvg << 's' << nl + << indent << " min = " << allToAllStats[0].second() << "s (processor " << allToAllStats[0].first() << ')' << nl - << "\t max = " << allToAllStats[1].second() - << "s (processor " << allToAllStats[1].first() << ')' << endl; + << indent << " max = " << allToAllStats[1].second() + << "s (processor " << allToAllStats[1].first() << ')' + << decrIndent << endl; } } -- GitLab