aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl10
1 files changed, 9 insertions, 1 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 2902d30..f0f19a4 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -3,6 +3,12 @@
if (cartoon_active)
{
+ schedule Cartoon2D_CheckTensorTypes at PARAMCHECK
+ {
+ LANG: C
+ OPTIONS: meta
+ } "Check tensor type definitions for consistency"
+
if (allow_grid_resize)
{
schedule Cartoon2D_SetGrid at CCTK_RECOVER_PARAMETERS
@@ -14,16 +20,18 @@ if (cartoon_active)
schedule Cartoon2D_RegisterSymmetries in SymmetryRegister
{
LANG: C
+ OPTIONS: global
} "Register symmetry boundaries"
schedule Cartoon2D_CheckParameters at CCTK_PARAMCHECK
{
LANG: C
+ OPTIONS: meta
} "Check Cartoon2D parameters"
# Apply cartoon boundary conditions after physical boundaries:
schedule Cartoon_ApplyBoundaries in BoundaryConditions after Boundary_ApplyPhysicalBCs
{
LANG: C
- } "Execute Cartoon boundary conditions"
+ } "Apply Cartoon boundary conditions"
}