summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2008-04-07 03:40:42 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2008-04-07 03:40:42 +0000
commita9833d5a888148fde04946252e997b4642eb7c47 (patch)
tree25b0989668e0f9f5e3e07acd54d26c7b3f6cf157 /src/main
parent2802d63d6f953d6d53886f653d5a74ff6b2f1319 (diff)
Correct the order in which the schedule is output: The schedule bin
postinitial is executed before the recursive initialisation of finer grids, not afterwards. git-svn-id: http://svn.cactuscode.org/flesh/trunk@4477 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main')
-rw-r--r--src/main/ScheduleInterface.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/main/ScheduleInterface.c b/src/main/ScheduleInterface.c
index a652444e..46650121 100644
--- a/src/main/ScheduleInterface.c
+++ b/src/main/ScheduleInterface.c
@@ -898,16 +898,16 @@ int CCTK_SchedulePrint(const char *where)
SchedulePrint("CCTK_INITIAL$ENTRY");
SchedulePrint("CCTK_INITIAL");
SchedulePrint("CCTK_INITIAL$EXIT");
+ puts (" [CCTK_POSTINITIAL]");
+ SchedulePrint("CCTK_POSTINITIAL$ENTRY");
+ SchedulePrint("CCTK_POSTINITIAL");
+ SchedulePrint("CCTK_POSTINITIAL$EXIT");
puts (" Initialise finer grids recursively");
puts (" Restrict from finer grids");
puts (" [CCTK_POSTRESTRICTINITIAL]");
SchedulePrint("CCTK_POSTRESTRICTINITIAL$ENTRY");
SchedulePrint("CCTK_POSTRESTRICTINITIAL");
SchedulePrint("CCTK_POSTRESTRICTINITIAL$EXIT");
- puts (" [CCTK_POSTINITIAL]");
- SchedulePrint("CCTK_POSTINITIAL$ENTRY");
- SchedulePrint("CCTK_POSTINITIAL");
- SchedulePrint("CCTK_POSTINITIAL$EXIT");
puts (" [CCTK_POSTSTEP]");
SchedulePrint("CCTK_POSTSTEP$ENTRY");
SchedulePrint("CCTK_POSTSTEP");
@@ -1086,12 +1086,12 @@ int CCTK_SchedulePrintTimesToFile(const char *where, FILE *file)
SchedulePrintTimes("CCTK_INITIAL$ENTRY", &data);
SchedulePrintTimes("CCTK_INITIAL", &data);
SchedulePrintTimes("CCTK_INITIAL$EXIT", &data);
- SchedulePrintTimes("CCTK_POSTRESTRICTINITIAL$ENTRY", &data);
- SchedulePrintTimes("CCTK_POSTRESTRICTINITIAL", &data);
- SchedulePrintTimes("CCTK_POSTRESTRICTINITIAL$EXIT", &data);
SchedulePrintTimes("CCTK_POSTINITIAL$ENTRY", &data);
SchedulePrintTimes("CCTK_POSTINITIAL", &data);
SchedulePrintTimes("CCTK_POSTINITIAL$EXIT", &data);
+ SchedulePrintTimes("CCTK_POSTRESTRICTINITIAL$ENTRY", &data);
+ SchedulePrintTimes("CCTK_POSTRESTRICTINITIAL", &data);
+ SchedulePrintTimes("CCTK_POSTRESTRICTINITIAL$EXIT", &data);
SchedulePrintTimes("CCTK_RECOVER_VARIABLES", &data);
SchedulePrintTimes("CCTK_POST_RECOVER_VARIABLES", &data);
SchedulePrintTimes("CCTK_CPINITIAL", &data);