aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
authorschnetter <schnetter@b7a48df3-cbbf-4440-997f-b4b717c9f7fc>2003-10-30 17:32:02 +0000
committerschnetter <schnetter@b7a48df3-cbbf-4440-997f-b4b717c9f7fc>2003-10-30 17:32:02 +0000
commitbb2a1f5af1ff444f76031aa12ee6cdc309e6d33a (patch)
treec50b44021dd92ff2c43c25316d405370f3903e40 /schedule.ccl
parented954040b8313656e91d9ae38d907a049c9dd2b0 (diff)
Fix typo in comment
git-svn-id: http://svn.einsteintoolkit.org/cactus/EinsteinAnalysis/ADMConstraints/trunk@95 b7a48df3-cbbf-4440-997f-b4b717c9f7fc
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl13
1 files changed, 13 insertions, 0 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 30e5fdf..aede05b 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -23,12 +23,24 @@ if (constraints_persist)
schedule ADMConstraints at CCTK_POSTSTEP
{
LANG: Fortran
+ SYNC: hamiltonian, normalized_hamiltonian, momentum
} "Evaluate ADM constraints for use in other routines"
schedule GROUP ApplyBCs as ADMConstraints_ApplyBCs at CCTK_POSTSTEP after ADMConstraints
{
SYNC: hamiltonian, normalized_hamiltonian, momentum
} "Apply (symmetry) boundary conditions"
+
+ STORAGE: hamiltonian, normalized_hamiltonian, momentum
+ schedule ADMConstraints at POSTRESTRICT
+ {
+ LANG: Fortran
+ SYNC: hamiltonian, normalized_hamiltonian, momentum
+ } "Evaluate ADM constraints for use in other routines"
+
+ schedule GROUP ApplyBCs as ADMConstraints_ApplyBCs at POSTRESTRICT after ADMConstraints
+ {
+ } "Apply (symmetry) boundary conditions"
}
else
{
@@ -42,6 +54,7 @@ else
schedule ADMConstraints in ADMConstraintsGroup
{
LANG: Fortran
+ SYNC: hamiltonian, normalized_hamiltonian, momentum
} "Evaluate ADM constraints"
schedule GROUP ApplyBCs as ADMConstraints_ApplyBCs in ADMConstraintsGroup after ADMConstraints