aboutsummaryrefslogtreecommitdiff
path: root/src/SetTime.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/SetTime.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/SetTime.c')
-rw-r--r--src/SetTime.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/SetTime.c b/src/SetTime.c
index aeeee77..0516e27 100644
--- a/src/SetTime.c
+++ b/src/SetTime.c
@@ -74,11 +74,11 @@ int MoL_SetTime(CCTK_ARGUMENTS)
*Original_Delta_Time = cctkGH->CCTK_DELTA_TIME;
cctkGH->cctk_time -= cctkGH->CCTK_DELTA_TIME;
- if (CCTK_EQUALS(MoL_ODE_Method,"ICN"))
+ if (CCTK_EQUALS(ODE_Method,"ICN"))
{
cctkGH->CCTK_DELTA_TIME = 0.5*(*Original_Delta_Time);
}
- else if (CCTK_EQUALS(MoL_ODE_Method,"Generic"))
+ else if (CCTK_EQUALS(ODE_Method,"Generic"))
{
beta = RKBetaCoefficients[0];
@@ -125,7 +125,7 @@ int MoL_ResetTime(CCTK_ARGUMENTS)
cctkGH->cctk_time = (*Original_Time);
cctkGH->CCTK_DELTA_TIME = (*Original_Delta_Time);
}
- else if (CCTK_EQUALS(MoL_ODE_Method,"ICN"))
+ else if (CCTK_EQUALS(ODE_Method,"ICN"))
{
if (*MoL_Intermediate_Step == 1)
{
@@ -137,7 +137,7 @@ int MoL_ResetTime(CCTK_ARGUMENTS)
}
cctkGH->cctk_time = (*Original_Time)-0.5*(*Original_Delta_Time);
}
- else if (CCTK_EQUALS(MoL_ODE_Method,"Generic"))
+ else if (CCTK_EQUALS(ODE_Method,"Generic"))
{
cctkGH->CCTK_DELTA_TIME = RKBetaCoefficients[MoL_Intermediate_Steps -
(*MoL_Intermediate_Step)] *
@@ -158,7 +158,7 @@ int MoL_ResetTime(CCTK_ARGUMENTS)
cctkGH->cctk_time = previous_times[MoL_Intermediate_Steps -
*MoL_Intermediate_Step];
}
- else if (CCTK_EQUALS(MoL_ODE_Method,"RK2"))
+ else if (CCTK_EQUALS(ODE_Method,"RK2"))
{
if (*MoL_Intermediate_Step == 1)
{