summaryrefslogtreecommitdiff
path: root/src/main/CactusDefaultEvolve.c
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-12-16 09:33:32 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-12-16 09:33:32 +0000
commit5474a8b61f3f7d0398c8a36c77a479df4121bd7e (patch)
tree0ce5288d01b2cf8c1e3d7a590673f4c75565afb5 /src/main/CactusDefaultEvolve.c
parent733e54845f85ea06e807edcc03ee95c1617692f0 (diff)
Removing the schedule point BOUND which isn't needed now.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@1196 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/CactusDefaultEvolve.c')
-rw-r--r--src/main/CactusDefaultEvolve.c25
1 files changed, 1 insertions, 24 deletions
diff --git a/src/main/CactusDefaultEvolve.c b/src/main/CactusDefaultEvolve.c
index 34bde167..0719b0a4 100644
--- a/src/main/CactusDefaultEvolve.c
+++ b/src/main/CactusDefaultEvolve.c
@@ -229,7 +229,7 @@ int CactusDefaultEvolve(tFleshConfig *config)
int the main iteration loop. Makes calls to the individual
routines for each rfr step.
@enddesc
- @calls PreStepper, EvolStepper, PostStepper, BoundStepper
+ @calls PreStepper, EvolStepper, PostStepper
@calledby main
@@*/
@@ -239,8 +239,6 @@ int CCTK_StepGH(cGH *GH)
void PreStepper(cGH *GH);
void EvolStepper(cGH *GH);
void PostStepper(cGH *GH);
- void BoundStepper(cGH *GH);
-
/* Advance GH->iteration BEFORE evolving */
#ifdef DEBUG_CCTK
@@ -255,7 +253,6 @@ int CCTK_StepGH(cGH *GH)
PreStepper(GH);
EvolStepper(GH);
- BoundStepper(GH);
/* Advance GH->time AFTER evolving */
#ifdef DEBUG_CCTK
@@ -318,26 +315,6 @@ void EvolStepper(cGH *GH)
}
-
- /*@@
- @routine BoundStepper
- @date Fri Aug 14 12:44:58 1998
- @author Gerd Lanfermann
- @desc
- calls RFR-CCTK_BOUND applies boundary conditions
- @enddesc
- @calls
- @calledby
- @history
-
- @endhistory
-
-@@*/
-
-void BoundStepper(cGH *GH) {
- CCTK_rfrTraverse(GH,CCTK_BOUND);
-}
-
/*@@
@routine PostStepper
@date Fri Aug 14 12:45:39 1998