aboutsummaryrefslogtreecommitdiff
path: root/src/make.code.defn
diff options
context:
space:
mode:
authortradke <tradke@d60812e6-3970-4df4-986e-c251b06effeb>2003-04-15 15:30:11 +0000
committertradke <tradke@d60812e6-3970-4df4-986e-c251b06effeb>2003-04-15 15:30:11 +0000
commit2a7f167722503f0ef2a08268d7a8ed24555be1de (patch)
treeaa79d7187863aebc4d93a5d0078477321209fbb6 /src/make.code.defn
parent65d11ce0dae35439629a621b18c0b6a5d141ce8e (diff)
Added new reduction operator "count" which returns the number of grid points
of a grid variable which a reduction operator is working on. This closes PR CactusPUGH/1477. Added new reduction operators "L3Norm" and "L4Norm" to compute the L3 and L4 norm resp. Also added synonyms for some existing reduction operators: "average" = "mean", "norm1" = "L1Norm", "norm2" = "L2Norm", "norm_inf" = "LinfNorm". git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGH/PUGHReduce/trunk@40 d60812e6-3970-4df4-986e-c251b06effeb
Diffstat (limited to 'src/make.code.defn')
-rw-r--r--src/make.code.defn4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/make.code.defn b/src/make.code.defn
index b53a2d3..7e73b26 100644
--- a/src/make.code.defn
+++ b/src/make.code.defn
@@ -2,4 +2,6 @@
# $Header$
# Source files in this directory
-SRCS = ReductionAvg.c ReductionMax.c ReductionMin.c ReductionNorm1.c ReductionNorm2.c ReductionNormInf.c ReductionSum.c Startup.c Reduction.c
+SRCS = ReductionAvg.c ReductionCount.c ReductionMax.c ReductionMin.c \
+ ReductionNorm1.c ReductionNorm2.c ReductionNorm3.c ReductionNorm4.c \
+ ReductionNormInf.c ReductionSum.c Startup.c Reduction.c