aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
diff options
context:
space:
mode:
authoryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-08-26 10:40:09 +0000
committeryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-08-26 10:40:09 +0000
commit1f543eb0efb2ef00fea2ac2829b41ec7a9994ede (patch)
treecb50e2ca38f5589bfdaeeca4297d02ce78dc6294 /src/Startup.c
parent6e38661972bac728bd5bf1887ecf521e53c2c8d0 (diff)
continuing cleaning ...
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalReduce/trunk@28 7daa882c-dc44-4453-834e-278d26b18e6a
Diffstat (limited to 'src/Startup.c')
-rw-r--r--src/Startup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 1e4477c..c3e4a67 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -24,10 +24,9 @@ int LocalReduce_Startup (void)
{
/* Register the reduction operators */
- CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Mean, "average");
+ CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Max, "maximum");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Mean, "mean");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Count, "count");
- CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Max, "maximum");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Min, "minimum");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L1, "norm1");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L2, "norm2");