aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Schnetter <schnetter@gmail.com>2013-08-06 18:19:10 -0400
committerErik Schnetter <schnetter@gmail.com>2013-08-06 18:19:10 -0400
commit94a4c0d3883162bdd70a70f1e044450b9f54c925 (patch)
treeee63cf85c0461e0f0413870ec46653d50beef850
parentc01a59ae14083f59511cac96ae7ea8f058c4bc27 (diff)
LoopControl: Correct indentation in statistics screen output
-rw-r--r--Carpet/LoopControl/src/loopcontrol.cc6
1 files 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));
}