summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-17 12:46:44 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-10-17 12:46:44 +0000
commitb83d8c3ad8b7f0b20ec1fb0304b2ab7f39990962 (patch)
treeba639615fd084b636f54ea869ca7cd90f62d2cf6 /src
parentbbd6dcd5d4f1d0409dce045bd866771ff06fca85 (diff)
Header file changes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1044 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src')
-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