aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-07-07 09:12:36 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-07-07 09:12:36 +0000
commitba2fe21b1c1379619f3eee1c6080b0812b2f6761 (patch)
tree5286b56cd4e11af8b879f2c77e556b6168e0b164 /schedule.ccl
parent8b767a625c0366ee60d55ca483abc793e28a0d68 (diff)
Hopefully this will fix the problem with recovering from checkpoints.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@19 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl17
1 files changed, 17 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index b50d92d..6f552b4 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -69,6 +69,11 @@ schedule MoL_SetupIndexArrays AT Initial
LANG: C
} "Set up the MoL bookkeeping index arrays"
+schedule MoL_SetupIndexArrays AT Recover_Variables
+{
+ LANG: C
+} "Set up the MoL bookkeeping index arrays"
+
################################################
### Initialize the coefficients for the RK ###
### arrays if required ###
@@ -82,6 +87,13 @@ if (CCTK_Equals(ODE_Method,"Generic"))
STORAGE: RKAlphaCoefficients
STORAGE: RKBetaCoefficients
} "Initialize the generic Runge-Kutta coefficients"
+
+ schedule MoL_SetupRKCoefficients AT Recover_Variables
+ {
+ LANG: C
+ STORAGE: RKAlphaCoefficients
+ STORAGE: RKBetaCoefficients
+ } "Initialize the generic Runge-Kutta coefficients"
}
#################################################
@@ -94,6 +106,11 @@ schedule GROUP MoL_Register AT PostInitial
LANG:C
} "The group where physics thorns register variables with MoL"
+schedule GROUP MoL_Register AT Post_Recover_Variables
+{
+ LANG:C
+} "The group where physics thorns register variables with MoL"
+
schedule MoL_FillAllLevels AT PostInitial AFTER MoL_Register
{
LANG:C