summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-10-12 11:37:33 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-10-12 11:37:33 +0000
commitc81c1948440b82fe833c12a17aac59eb1668a4d6 (patch)
treeaa0aea5082ade646078c6e8d4bbd2d53382736f3 /src
parent0ff2389bd500cf5161124e7d4aaf88df954f6357 (diff)
Updated to use new syntax for MainLoopIndex.
Fixed header files so prototype for above is included. Should now work on Hitachi machine. Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@1867 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src')
-rw-r--r--src/main/CactusDefaultEvolve.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/CactusDefaultEvolve.c b/src/main/CactusDefaultEvolve.c
index b3c4042e..0493191a 100644
--- a/src/main/CactusDefaultEvolve.c
+++ b/src/main/CactusDefaultEvolve.c
@@ -16,7 +16,8 @@
#include "cctk_Flesh.h"
#include "cctk_Parameter.h"
-#include "CactusIOFunctions.h"
+#include "cctk_Main.h"
+#include "cctk_IO.h"
static char *rcsid="$Header$";
@@ -120,7 +121,7 @@ int CactusDefaultEvolve(tFleshConfig *config)
/* Step each convergence level */
- ForallConvLevels(CCTK_MainLoopIndex(iteration), convergence_level)
+ ForallConvLevels(CCTK_MainLoopIndex(), convergence_level)
{
StepGH(config->GH[convergence_level]);