summaryrefslogtreecommitdiff
path: root/src/main/ScheduleInterface.c
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-06-23 17:49:01 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-06-23 17:49:01 +0000
commit6083011322738fde28d265edb1360c3186034beb (patch)
tree3a28b83959e5d8993db1b55e7a27486af07ae945 /src/main/ScheduleInterface.c
parente5c5e77380b36039d81e55dc5f1b195f1ca4c7e4 (diff)
Add option flag for 'local' mode.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3788 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/main/ScheduleInterface.c')
-rw-r--r--src/main/ScheduleInterface.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/main/ScheduleInterface.c b/src/main/ScheduleInterface.c
index cf0a34ae..76359b81 100644
--- a/src/main/ScheduleInterface.c
+++ b/src/main/ScheduleInterface.c
@@ -814,10 +814,10 @@ int CCTKi_ScheduleGHInit(void *GH)
if (n_scheduled_storage_groups>0)
{
CCTK_GroupStorageIncrease(GH,
- n_scheduled_storage_groups,
- scheduled_storage_groups,
- scheduled_storage_groups_timelevels,
- NULL);
+ n_scheduled_storage_groups,
+ scheduled_storage_groups,
+ scheduled_storage_groups_timelevels,
+ NULL);
}
for(i = 0; i < n_scheduled_comm_groups; i++)
@@ -1633,6 +1633,10 @@ static int ParseOption(t_attribute *attribute,
{
attribute->FunctionData.singlemap = 1;
}
+ else if(CCTK_Equals(option, "LOCAL"))
+ {
+ attribute->FunctionData.local = 1;
+ }
else
{
CCTK_Warn(1,__LINE__,__FILE__,"Cactus",