summaryrefslogtreecommitdiff
path: root/src/main/CactusDefaultInitialise.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-20 09:09:16 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-03-20 09:09:16 +0000
commit4152578de0c44a749a516ae1a93d6068ecfc8b7a (patch)
tree14bf35abe612921399ed7fcce5ec9014a8ddfacf /src/main/CactusDefaultInitialise.c
parent63094597315ec215e8c81a60595954986926c89f (diff)
Setting GH->iteration to 1 (but this needs to be sorted out)
Adding rfr entry point to paramcheck before INITIAL git-svn-id: http://svn.cactuscode.org/flesh/trunk@405 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/CactusDefaultInitialise.c')
-rw-r--r--src/main/CactusDefaultInitialise.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/main/CactusDefaultInitialise.c b/src/main/CactusDefaultInitialise.c
index 1747ca91..36486327 100644
--- a/src/main/CactusDefaultInitialise.c
+++ b/src/main/CactusDefaultInitialise.c
@@ -88,7 +88,10 @@ int Cactus_InitialiseGH(cGH *GH)
/* Initialise time */
GH->time = cctk_initial_time;
-
+
+ /* FIXME */
+ GH->iteration = 1;
+
/* Setup the rfr_top on this GH */
@@ -116,8 +119,11 @@ int Cactus_InitialiseGH(cGH *GH)
/* Do various rfr traversals. Will tidy up later. */
+ /* FIXME : PARAM_CHECK SHOULD BE BEFORE HERE */
+ CCTK_rfrTraverse(GH, CACTUS_PARAMCHECK);
+
CCTK_rfrTraverse(GH, CACTUS_BASEGRID);
- CCTK_rfrTraverse(GH,CACTUS_INITIAL0);
+ CCTK_rfrTraverse(GH, CACTUS_INITIAL0);
/* Loops like this should go eventually... */
for (Rstep = CACTUS_INITIAL; Rstep <= CACTUS_INITIAL9; Rstep++)