aboutsummaryrefslogtreecommitdiff
path: root/src/Output.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Output.c')
-rw-r--r--src/Output.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Output.c b/src/Output.c
index eca295d..d1d9241 100644
--- a/src/Output.c
+++ b/src/Output.c
@@ -60,7 +60,9 @@ void TimerReport_Output(CCTK_ARGUMENTS)
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
- if (next || out_at == cctk_iteration || (out_every && cctk_iteration%out_every == 0))
+ if (next ||
+ out_at == cctk_iteration ||
+ (out_every && cctk_iteration%out_every == 0))
{
CCTK_VInfo(CCTK_THORNSTRING,
@@ -89,12 +91,15 @@ void TimerReport_Checkpoint(CCTK_ARGUMENTS)
DECLARE_CCTK_ARGUMENTS;
DECLARE_CCTK_PARAMETERS;
- if (before_checkpoint)
+ if (before_checkpoint &&
+ (checkpoint_every && cctk_iteration%checkpoint_every == 0))
{
+
CCTK_VInfo(CCTK_THORNSTRING,
"Timer Report before checkpointing at iteration %d, time %g",
cctk_iteration, (double)cctk_time);
CCTK_SchedulePrintTimes(NULL);
+
}
}