From f8a49104b714ca00dc68d289c6b723c193c54911 Mon Sep 17 00:00:00 2001 From: rhaas Date: Wed, 21 Dec 2011 01:11:01 +0000 Subject: 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 --- schedule.ccl | 6 +++--- 1 file 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 -- cgit v1.2.3