aboutsummaryrefslogtreecommitdiff
path: root/src/IndexArrays.c
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 /src/IndexArrays.c
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 'src/IndexArrays.c')
-rw-r--r--src/IndexArrays.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/IndexArrays.c b/src/IndexArrays.c
index 01820eb..2f843be 100644
--- a/src/IndexArrays.c
+++ b/src/IndexArrays.c
@@ -221,7 +221,7 @@ void MoL_SetupIndexArrays(CCTK_ARGUMENTS)
{
CCTK_WARN(0, "Failed to malloc 100 characters!");
}
- if (CCTK_EQUALS(MoL_ODE_Method,"Generic"))
+ if (CCTK_EQUALS(ODE_Method,"Generic"))
{
if (CCTK_EQUALS(Generic_Type,"ICN"))
{
@@ -237,18 +237,18 @@ void MoL_SetupIndexArrays(CCTK_ARGUMENTS)
CCTK_WARN(0, "Generic_Type not recognized!");
}
}
- else if (CCTK_EQUALS(MoL_ODE_Method,"RK2"))
+ else if (CCTK_EQUALS(ODE_Method,"RK2"))
{
sprintf(infoline, "Runge-Kutta 2");
}
- else if (CCTK_EQUALS(MoL_ODE_Method,"ICN"))
+ else if (CCTK_EQUALS(ODE_Method,"ICN"))
{
sprintf(infoline, "Iterative Crank Nicholson with %i iterations",
MoL_Intermediate_Steps);
}
else
{
- CCTK_WARN(0, "MoL_ODE_Method not recognized!");
+ CCTK_WARN(0, "ODE_Method not recognized!");
}
CCTK_VInfo(CCTK_THORNSTRING, "Using %s as the time integrator.", infoline);