summaryrefslogtreecommitdiff
path: root/src/main/CactusDefaultEvolve.c
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-01 15:13:58 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-06-01 15:13:58 +0000
commit4a2f8a2b44f74e5108818d70f071b6341b8dea62 (patch)
treec3e6c384e7c3f24ef2913400919d8535af604d03 /src/main/CactusDefaultEvolve.c
parent44484a6f3f722cca2883b9285568ad0e5b894867 (diff)
Mainly changes to include missing header files so that there are less
warnings when all warnings switched on (also better style 8-). Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@542 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/CactusDefaultEvolve.c')
-rw-r--r--src/main/CactusDefaultEvolve.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/main/CactusDefaultEvolve.c b/src/main/CactusDefaultEvolve.c
index 0e41b4ce..e2411fe1 100644
--- a/src/main/CactusDefaultEvolve.c
+++ b/src/main/CactusDefaultEvolve.c
@@ -15,6 +15,8 @@
#include "cctk.h"
#include "declare_parameters.h"
#include "rfr_constants.h"
+#include "rfrInterface.h"
+
#include "CactusIOFunctions.h"
static char *rcsid="$Id$";
@@ -42,6 +44,10 @@ static char *rcsid="$Id$";
int cactus_terminate;
static int cactus_terminate_global = 0;
#define TERMINATION_RAISED_BRDCAST 4
+
+/* Local function prototypes. */
+
+int CCTK_StepGH(cGH *GH);
/*@@
@@ -145,7 +151,7 @@ int CactusDefaultEvolve(tFleshConfig *config)
CactusStopTimer(config->timer[OUTPUT]);
-#ifdef 0
+#if 0
ConvergenceReport(config->GH, iteration);
TerminationStepper(config->GH[0]);
@@ -182,7 +188,8 @@ int CactusDefaultEvolve(tFleshConfig *config)
@calledby main
@@*/
-int CCTK_StepGH(cGH *GH) {
+int CCTK_StepGH(cGH *GH)
+{
void PreStepper(cGH *GH);
void EvolStepper(cGH *GH);
@@ -331,7 +338,7 @@ void TerminationStepper(cGH *GH) {
int cactus_terminate_global;
cactus_terminate_global=cactus_terminate;
-#ifdef 0
+#if 0
#ifdef MPI
MPI_Allreduce(&cactus_terminate,&cactus_terminate_global,1,
MPI_INT,MPI_LOR,GH->PUGH_COMM_WORLD);