aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authoreschnett <eschnett@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2011-11-12 02:59:03 +0000
committereschnett <eschnett@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2011-11-12 02:59:03 +0000
commitd383e0e36f69f335494a789873d2572084f1c4a6 (patch)
tree2d8dc370235d2eb65be8b3400e426aab574f3cb7 /schedule.ccl
parentb3278d7be3154647abf4a3f0d2575778c9b54176 (diff)
Remove OldBoundary infrastructure
Remove now-unused and currently broken OldBoundary infrastructure git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@153 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl37
1 files changed, 0 insertions, 37 deletions
diff --git a/schedule.ccl b/schedule.ccl
index f40cfcc..ff2eaf5 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -428,18 +428,6 @@ schedule MoL_SetTime IN MoL_StartStep
OPTIONS: LEVEL
} "Ensure the correct time and timestep are used"
-#####################################################
-### A truncated version of the above routine to ###
-### ensure that all is correct for the OldBdry ###
-### wrapper routines when run in POSTINITIAL. ###
-#####################################################
-
-schedule MoL_SetInitialTime AT INITIAL
-{
- LANG: C
- OPTIONS: LEVEL
-} "Ensure the correct time and timestep are used - initial"
-
#################################################################
### PreStep is where physics thorns can do their own setup. ###
### This would include scheduling the function calls to ###
@@ -712,31 +700,6 @@ schedule GROUP MoL_PseudoEvolutionBoundaries AT PostRestrict AFTER MoL_PostStep
{
} "Apply boundary conditions to pseudo-evolved quantities"
-############################################################
-### Additional boundary condition bins as requested by ###
-### Yosef Zlochower. ###
-############################################################
-
-schedule GROUP MoL_OldBdry_Wrap IN MoL_PostStep
-{
-} "Wrapper group, do not schedule directly into this group"
-
-schedule GROUP MoL_OldStyleBoundaries in MoL_OldBdry_Wrap
-{
-} "Place old style boundary routines here"
-
-schedule MoL_OldBdry_SetDt IN MoL_OldBdry_Wrap BEFORE MoL_OldStyleBoundaries
-{
- LANGUAGE: C
- OPTIONS: LEVEL
-} "Store and change dt"
-
-schedule MoL_OldBdry_ResetDt IN MoL_OldBdry_Wrap AFTER MoL_OldStyleBoundaries
-{
- LANGUAGE: C
- OPTIONS: LEVEL
-} "Reset dt"
-
#################################################
### Final internal MoL stuff; decrement the ###
### counter, change time and timestep ###