summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/IO/IOMethods.c1
-rw-r--r--src/main/CactusDefaultEvolve.c7
2 files changed, 6 insertions, 2 deletions
diff --git a/src/IO/IOMethods.c b/src/IO/IOMethods.c
index 6b558554..0c39257e 100644
--- a/src/IO/IOMethods.c
+++ b/src/IO/IOMethods.c
@@ -12,6 +12,7 @@
#include <stdio.h>
#include <stdlib.h>
+#include "cGH.h"
#include "cctk_Flesh.h"
#include "cctk_IOMethods.h"
#include "cctk_Groups.h"
diff --git a/src/main/CactusDefaultEvolve.c b/src/main/CactusDefaultEvolve.c
index bfb44047..41260f56 100644
--- a/src/main/CactusDefaultEvolve.c
+++ b/src/main/CactusDefaultEvolve.c
@@ -249,7 +249,6 @@ int CCTK_StepGH(cGH *GH)
PreStepper(GH);
EvolStepper(GH);
BoundStepper(GH);
- PostStepper(GH);
/* Advance GH->time AFTER evolving */
#ifdef DEBUG_CCTK
@@ -262,6 +261,9 @@ int CCTK_StepGH(cGH *GH)
GH->cctk_time = GH->cctk_time + GH->cctk_delta_time;
+ PostStepper(GH);
+
+
return 0;
}
@@ -315,7 +317,7 @@ void EvolStepper(cGH *GH)
@date Fri Aug 14 12:44:58 1998
@author Gerd Lanfermann
@desc
- calls RFR-CCTK_BOUND applies boudnary conditions
+ calls RFR-CCTK_BOUND applies boundary conditions
@enddesc
@calls
@calledby
@@ -348,6 +350,7 @@ void PostStepper(cGH *GH) {
/* Call the rfr with post step */
CCTK_rfrTraverse(GH, CCTK_POSTSTEP);
}
+
/*@@
@routine TerminationStepper
@date Fri Aug 14 13:07:11 1998