aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: ff8c0f793bbf7dc21da576a6891b8605742df8e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 /*@@
   @file      Startup.c
   @date      
   @author    
   @desc
              Startup routines for LocalReduce.
   @enddesc
   @version   $Id$
@@*/

#include "cctk.h"

static const char *rcsid="$Id$";

CCTK_FILEVERSION(CactusBase_LocalReduce_Startup_c)


/* prototypes of routines defined in this source file */
int LocalReduce_Startup(void);


int LocalReduce_Startup (void)
{
  /* Register the reduction operators */

  CCTK_RegisterReductionArrayOperator (Local_ReductionAvgArrays,     "average");

  return (0);
}