aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhaas <rhaas@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2011-12-21 01:11:01 +0000
committerrhaas <rhaas@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2011-12-21 01:11:01 +0000
commitf8a49104b714ca00dc68d289c6b723c193c54911 (patch)
tree509b5b9be7184406d00104c30825c77cc856520e
parentd383e0e36f69f335494a789873d2572084f1c4a6 (diff)
schedule MoL_DecrementCounter and MoL_ResetTime before PostStepModify
to match what happens to MoL_PostStep git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@154 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
-rw-r--r--schedule.ccl6
1 files changed, 3 insertions, 3 deletions
diff --git a/schedule.ccl b/schedule.ccl
index ff2eaf5..9c33bbe 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -537,7 +537,7 @@ if (MoL_NaN_Check)
if (CCTK_Equals(ODE_Method,"Generic"))
{
- schedule MoL_GenericRKAdd AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
+ schedule MoL_GenericRKAdd AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE (MoL_PostStep MoL_PostStepModify)
{
LANG: C
} "Updates calculated with a generic method"
@@ -705,13 +705,13 @@ schedule GROUP MoL_PseudoEvolutionBoundaries AT PostRestrict AFTER MoL_PostStep
### counter, change time and timestep ###
#################################################
-schedule MoL_DecrementCounter IN MoL_Step AFTER MoL_Add BEFORE MoL_PostStep
+schedule MoL_DecrementCounter IN MoL_Step AFTER MoL_Add BEFORE (MoL_PostStep MoL_PostStepModify)
{
LANG: C
OPTIONS: LEVEL
} "Alter the counter number"
-schedule MoL_ResetTime IN MoL_Step AFTER MoL_DecrementCounter BEFORE MoL_PostStep
+schedule MoL_ResetTime IN MoL_Step AFTER MoL_DecrementCounter BEFORE (MoL_PostStep MoL_PostStepModify)
{
LANG: C
OPTIONS: LEVEL