aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrhaas <rhaas@e296648e-0e4f-0410-bd07-d597d9acff87>2012-11-27 17:52:52 +0000
committerrhaas <rhaas@e296648e-0e4f-0410-bd07-d597d9acff87>2012-11-27 17:52:52 +0000
commitcd5c6636a7961ca94f6a904eef72a3134f401efa (patch)
tree39541293e4e22f90d7cd4a2cae146a1ebd7fc9a5 /src
parentaf9fa790afbdde1298c7e7059dfa992f137fc4aa (diff)
add dtlapse_evolution and dtshift_evolution method options
This attached patch actually does two things: 1. adds dtlapse_evolution method and dtshift_evolution method options 'exact' to the respective ADMBase keywords 2. schedules metric initialization in MoL_PostStep (in addition to CCTK_PRESTEP) which is in line with what the current gauge initialization routine does git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinInitialData/Exact/trunk@284 e296648e-0e4f-0410-bd07-d597d9acff87
Diffstat (limited to 'src')
-rw-r--r--src/gauge.F774
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gauge.F77 b/src/gauge.F77
index 3735455..93ceb6a 100644
--- a/src/gauge.F77
+++ b/src/gauge.F77
@@ -82,8 +82,8 @@ C
if ( is_later_slice ) then
set_lapse = CCTK_Equals(lapse_evolution_method, "exact").ne.0
set_shift = CCTK_Equals(shift_evolution_method, "exact").ne.0
- set_dtlapse = .false.
- set_dtshift = .false.
+ set_dtlapse = CCTK_Equals(dtlapse_evolution_method, "exact").ne.0
+ set_dtshift = CCTK_Equals(dtshift_evolution_method, "exact").ne.0
end if
if ( set_lapse .or. set_shift .or. set_dtlapse .or. set_dtshift) then