From 94a4c0d3883162bdd70a70f1e044450b9f54c925 Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Tue, 6 Aug 2013 18:19:10 -0400 Subject: LoopControl: Correct indentation in statistics screen output --- Carpet/LoopControl/src/loopcontrol.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Carpet/LoopControl/src/loopcontrol.cc b/Carpet/LoopControl/src/loopcontrol.cc index 222d4e64f..ec5ab219e 100644 --- a/Carpet/LoopControl/src/loopcontrol.cc +++ b/Carpet/LoopControl/src/loopcontrol.cc @@ -1170,13 +1170,13 @@ void lc_statistics(CCTK_ARGUMENTS) CCTK_VInfo(CCTK_THORNSTRING, " Setups encountered: %td", nsetups); CCTK_VInfo(CCTK_THORNSTRING, " Params explored: %td", nparams); CCTK_VInfo(CCTK_THORNSTRING, - " Actual time spent: %g s", + " Actual time spent: %g s", time_actual); CCTK_VInfo(CCTK_THORNSTRING, - " Unoptimized time would have been: %g s (%+.1f%%)", + " Unoptimized time would have been: %g s (%+.1f%%)", time_default, 100.0 * (time_default / time_actual - 1.0)); CCTK_VInfo(CCTK_THORNSTRING, - " Ideal time could have been: %g s (%+.1f%%)", + " Ideal time could have been: %g s (%+.1f%%)", time_best, 100.0 * (time_best / time_actual - 1.0)); } -- cgit v1.2.3