aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-08-23 12:46:21 +0000
committeryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-08-23 12:46:21 +0000
commitc553ec5bac83b36aa57c87937d694415cd0e58c4 (patch)
tree26dbb57634fe528d08d24323df748e2ea504650d
parent904b8234a87bea91ffb8069e8f6c367f24de93d2 (diff)
minor fix
---------------------------------------------------------------------- git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalReduce/trunk@16 7daa882c-dc44-4453-834e-278d26b18e6a
-rw-r--r--src/Startup.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Startup.c b/src/Startup.c
index 0e50088..1e4477c 100644
--- a/src/Startup.c
+++ b/src/Startup.c
@@ -30,15 +30,11 @@ int LocalReduce_Startup (void)
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Max, "maximum");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Min, "minimum");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L1, "norm1");
- CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L1, "L1Norm");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L2, "norm2");
- CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L2, "L2Norm");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L3, "norm3");
- CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L3, "L3Norm");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L4, "norm4");
- CCTK_RegisterLocalArrayReductionOperator (LocalReduce_L4, "L4Norm");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_LInf, "norm_inf");
CCTK_RegisterLocalArrayReductionOperator (LocalReduce_Sum, "sum");
- printf("\n success\n");
+
return (0);
}