aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-05-25 14:59:54 +0000
committerhawke <hawke@578cdeb0-5ea1-4b81-8215-5a3b8777ee0b>2003-05-25 14:59:54 +0000
commit49731c4b006be632a84b9a54284682fcb03bd896 (patch)
tree4d4bf94345d818b22d0c7311c1d04a159d7aad35 /schedule.ccl
parent24e2bf00aac01104dd269c9279920e1a516ca20d (diff)
Change MoL_ODE_Method parameter to ODE_Method to be consistent with original MoL. Don't know why I did this in the first place.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusNumerical/MoL/trunk@15 578cdeb0-5ea1-4b81-8215-5a3b8777ee0b
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl10
1 files changed, 5 insertions, 5 deletions
diff --git a/schedule.ccl b/schedule.ccl
index c787cc2..e6430f2 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -32,7 +32,7 @@ if (MoL_Memory_Always_On)
### storage for the coefficient arrays ###
############################################################
-if (CCTK_Equals(MoL_ODE_Method,"Generic"))
+if (CCTK_Equals(ODE_Method,"Generic"))
{
STORAGE: RKAlphaCoefficients
STORAGE: RKBetaCoefficients
@@ -74,7 +74,7 @@ schedule MoL_SetupIndexArrays AT Initial
### arrays if required ###
################################################
-if (CCTK_Equals(MoL_ODE_Method,"Generic"))
+if (CCTK_Equals(ODE_Method,"Generic"))
{
schedule MoL_SetupRKCoefficients AT Initial
{
@@ -208,21 +208,21 @@ schedule GROUP MoL_CalcRHS IN MoL_Step
### The time integrator performs the update here ###
######################################################
-if (CCTK_Equals(MoL_ODE_Method,"Generic"))
+if (CCTK_Equals(ODE_Method,"Generic"))
{
schedule MoL_GenericRKAdd AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
{
LANG: C
} "Updates calculated with a generic method"
}
-else if (CCTK_Equals(MoL_ODE_Method,"RK2"))
+else if (CCTK_Equals(ODE_Method,"RK2"))
{
schedule MoL_RK2Add AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
{
LANG: C
} "Updates calculated with the efficient Runge-Kutta 2 method"
}
-else if (CCTK_Equals(MoL_ODE_Method,"ICN"))
+else if (CCTK_Equals(ODE_Method,"ICN"))
{
schedule MoL_ICNAdd AS MoL_Add IN MoL_Step AFTER MoL_CalcRHS BEFORE MoL_PostStep
{