summaryrefslogtreecommitdiff
path: root/src/include/cctk_Schedule.h
diff options
context:
space:
mode:
authorschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2009-12-05 04:09:12 +0000
committerschnetter <schnetter@17b73243-c579-4c4c-a9d2-2d5706c11dac>2009-12-05 04:09:12 +0000
commite1d64c86a158f57ef5c65e85051fb786a0df63be (patch)
tree19ede291f9371ff7c733e895eb9c63ae7aa9bd28 /src/include/cctk_Schedule.h
parent44ab1cbc5d0982f4a16ffd664d67a4a7df4ff218 (diff)
Add new schedule modes meta_early, meta_late, global_early, and
global_late. These modes can then be used in Carpet, where they will simplify traversing the schedule tree when local, level, and global mode routines are mixed. git-svn-id: http://svn.cactuscode.org/flesh/trunk@4589 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/include/cctk_Schedule.h')
-rw-r--r--src/include/cctk_Schedule.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/cctk_Schedule.h b/src/include/cctk_Schedule.h
index ed6bcb2a..b9ce40e6 100644
--- a/src/include/cctk_Schedule.h
+++ b/src/include/cctk_Schedule.h
@@ -26,13 +26,16 @@ typedef struct
cFunctionType type;
int n_SyncGroups;
-
int *SyncGroups;
/* Option Flags */
int meta;
+ int meta_early;
+ int meta_late;
int global;
+ int global_early;
+ int global_late;
int level;
int singlemap;
int local;