summaryrefslogtreecommitdiff
path: root/src/main/CactusDefaultEvolve.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-25 10:05:56 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2000-01-25 10:05:56 +0000
commita7f55c01ae632147f667efbbfdaaa509e2be01ed (patch)
tree6ad9034c4dcbb7590c31bcb66169991679a09a93 /src/main/CactusDefaultEvolve.c
parent29bfcbaba503af41067f6ea16f506d1d0190bd06 (diff)
CCTK function name changes
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1297 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/CactusDefaultEvolve.c')
-rw-r--r--src/main/CactusDefaultEvolve.c21
1 files changed, 7 insertions, 14 deletions
diff --git a/src/main/CactusDefaultEvolve.c b/src/main/CactusDefaultEvolve.c
index 98b43dda..880dc8a8 100644
--- a/src/main/CactusDefaultEvolve.c
+++ b/src/main/CactusDefaultEvolve.c
@@ -12,8 +12,7 @@
#include <stdio.h>
#include "cctk_Flesh.h"
-#include "cctk.h"
-#include "cctk_parameters.h"
+#include "cctk_Parameters.h"
#include "rfrConstants.h"
#include "rfrInterface.h"
@@ -47,7 +46,7 @@ static int cactus_terminate_global = 0;
/* Local function prototypes. */
-int CCTK_StepGH(cGH *GH);
+int StepGH(cGH *GH);
/* the iteration counter used in the evolution loop */
@@ -162,7 +161,7 @@ int CactusDefaultEvolve(tFleshConfig *config)
ForallConvLevels(iteration, convergence_level)
{
- CCTK_StepGH(config->GH[convergence_level]);
+ StepGH(config->GH[convergence_level]);
/*
CCTK_InfoOutput(config->GH[convergence_level], convergence_level);
*/
@@ -217,14 +216,8 @@ int CactusDefaultEvolve(tFleshConfig *config)
/************************************************************************/
-/* The following routines have been nicked from 3.0 for the moment. */
-
-
-
-
-
/*@@
- @routine CStepper
+ @routine StepGH
@date Fri Aug 14 12:39:49 1998
@author Gerd Lanfermann
@desc
@@ -236,7 +229,7 @@ int CactusDefaultEvolve(tFleshConfig *config)
@calledby main
@@*/
-int CCTK_StepGH(cGH *GH)
+int StepGH(cGH *GH)
{
void PreStepper(cGH *GH);
@@ -246,7 +239,7 @@ int CCTK_StepGH(cGH *GH)
/* Advance GH->iteration BEFORE evolving */
#ifdef DEBUG_CCTK
CCTK_PRINTSEPARATOR
- printf("In CCTK_StepGH\n--------------\n");
+ printf("In StepGH\n--------------\n");
printf(" Advancing GH->iteration to %lu = %lu + 1\n",(GH->cctk_iteration+1),
GH->cctk_iteration);
CCTK_PRINTSEPARATOR
@@ -260,7 +253,7 @@ int CCTK_StepGH(cGH *GH)
/* Advance GH->time AFTER evolving */
#ifdef DEBUG_CCTK
CCTK_PRINTSEPARATOR
- printf("In CCTK_StepGH\n--------------\n");
+ printf("In StepGH\n--------------\n");
printf(" Advancing GH->cctk_time %f = %f + %f\n",GH->cctk_time+GH->cctk_delta_time,
GH->cctk_time,GH->cctk_delta_time);
CCTK_PRINTSEPARATOR