From 6083011322738fde28d265edb1360c3186034beb Mon Sep 17 00:00:00 2001 From: tradke Date: Wed, 23 Jun 2004 17:49:01 +0000 Subject: Add option flag for 'local' mode. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3788 17b73243-c579-4c4c-a9d2-2d5706c11dac --- src/main/ScheduleInterface.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/main/ScheduleInterface.c') 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", -- cgit v1.2.3