aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-08-18 17:54:41 +0000
committeryye00 <yye00@7daa882c-dc44-4453-834e-278d26b18e6a>2004-08-18 17:54:41 +0000
commit4ef421f53e715370dd7c4bdfb601d1dde673b488 (patch)
tree910f192c6f1e24662196bc7eeaeb40d40607a966
parent3fe89e0c397b8289e7c5ef10ae14aaeafd288001 (diff)
removing references to PUGH
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalReduce/trunk@13 7daa882c-dc44-4453-834e-278d26b18e6a
-rw-r--r--src/ReductionAvg.c8
-rw-r--r--src/ReductionCount.c6
-rw-r--r--src/ReductionMax.c4
-rw-r--r--src/ReductionMin.c4
-rw-r--r--src/ReductionNorm1.c2
-rw-r--r--src/ReductionNorm2.c2
-rw-r--r--src/ReductionNorm3.c2
-rw-r--r--src/ReductionNorm4.c2
-rw-r--r--src/ReductionSum.c2
9 files changed, 16 insertions, 16 deletions
diff --git a/src/ReductionAvg.c b/src/ReductionAvg.c
index 20ec780..a393ef4 100644
--- a/src/ReductionAvg.c
+++ b/src/ReductionAvg.c
@@ -3,7 +3,7 @@
@date Thu Apr 3 11:54:53 1997
@author Thomas Radke, Paul Walker, Erik Schnetter
@desc
- Defines the PUGH reduction operator to get the average
+ Defines the reduction operator to get the average
of an arbitrary array.
@enddesc
@version $Id$
@@ -34,7 +34,7 @@ static int ReductionAvg (int num_dims,
/*@@
- @routine PUGH_ReductionAvgArrays
+ @routine ReductionAvgArrays
@author Thomas Radke
@date 19 Aug 1999
@desc
@@ -227,12 +227,12 @@ static int ReductionAvg (int num_dims,
vtypename = CCTK_VarTypeName (intypes[i]);
if (vtypename && strncmp (vtypename, "CCTK_VARIABLE_COMPLEX", 21) == 0)
{
- CCTK_WARN (1, "PUGH_ReductionAvg: Don't know how to compute "
+ CCTK_WARN (1, "ReductionAvg: Don't know how to compute "
"the average of complex variables !!!");
}
else
{
- CCTK_WARN (1, "PUGH_ReductionAvg: Unknown variable type");
+ CCTK_WARN (1, "ReductionAvg: Unknown variable type");
}
return (-1);
}
diff --git a/src/ReductionCount.c b/src/ReductionCount.c
index f774244..d96d07c 100644
--- a/src/ReductionCount.c
+++ b/src/ReductionCount.c
@@ -3,7 +3,7 @@
@date Thu Apr 3 11:54:53 1997
@author Thomas Radke
@desc
- Defines the PUGH reduction operator "count" to get the number of
+ Defines the reduction operator "count" to get the number of
grid points of an arbitrary array.
@enddesc
@version $Id$
@@ -34,11 +34,11 @@ static int ReductionCount (int num_dims,
/*@@
- @routine PUGH_ReductionCountArrays
+ @routine ReductionCountArrays
@author Thomas Radke
@date 19 Aug 1999
@desc
- Registered PUGH reduction routine for computing the counts
+ Registered reduction routine for computing the counts
of a set of arrays.
The arrays are described by their dimensions and variable type.
For the number of output values only 1 is accepted.
diff --git a/src/ReductionMax.c b/src/ReductionMax.c
index bd77a4b..51747e7 100644
--- a/src/ReductionMax.c
+++ b/src/ReductionMax.c
@@ -3,7 +3,7 @@
@date Thu Apr 3 11:54:53 1997
@author Thomas Radke, Paul Walker
@desc
- Defines the PUGH reduction operator to get the maximum
+ Defines the reduction operator to get the maximum
for a set of arbitrary arrays.
@enddesc
@version $Id$
@@ -35,7 +35,7 @@ static int ReductionMaxVal (int num_dims,
/*@@
- @routine PUGH_ReductionMaxValArrays
+ @routine ReductionMaxValArrays
@author Thomas Radke
@date 19 Aug 1999
@desc @enddesc
diff --git a/src/ReductionMin.c b/src/ReductionMin.c
index c02fa31..d049079 100644
--- a/src/ReductionMin.c
+++ b/src/ReductionMin.c
@@ -3,7 +3,7 @@
@date Thu Apr 3 11:54:53 1997
@author Thomas Radke, Paul Walker
@desc
- Defines the PUGH reduction operator to get the minimum
+ Defines the reduction operator to get the minimum
for a set of arbitrary arrays.
@enddesc
@version $Id$
@@ -35,7 +35,7 @@ static int ReductionMinVal (int num_dims,
/*@@
- @routine PUGH_ReductionMinValArrays
+ @routine ReductionMinValArrays
@author Thomas Radke
@date 19 Aug 1999
@desc
diff --git a/src/ReductionNorm1.c b/src/ReductionNorm1.c
index 15ab6a1..bcc3d3e 100644
--- a/src/ReductionNorm1.c
+++ b/src/ReductionNorm1.c
@@ -3,7 +3,7 @@
@date Thu Apr 3 11:54:53 1997
@author Thomas Radke, Paul Walker
@desc
- Defines the PUGH reduction operator to get the norm
+ Defines the reduction operator to get the norm
of an arbitrary array which is defined as:
norm1 = $\Sigma |a_i| / np$
@enddesc
diff --git a/src/ReductionNorm2.c b/src/ReductionNorm2.c
index 1371fd3..90deedc 100644
--- a/src/ReductionNorm2.c
+++ b/src/ReductionNorm2.c
@@ -3,7 +3,7 @@
@date Thu Apr 3 11:54:53 1997
@author Thomas Radke, Paul Walker
@desc
- Defines the PUGH reduction operator to get the norm
+ Defines the reduction operator to get the norm
of an arbitrary array which is defined as:
norm2 = $\sqrt{\Sigma (a_i * a_i) / np}$
@enddesc
diff --git a/src/ReductionNorm3.c b/src/ReductionNorm3.c
index 5074824..b80fb38 100644
--- a/src/ReductionNorm3.c
+++ b/src/ReductionNorm3.c
@@ -3,7 +3,7 @@
@date Tue Apr 15 2003
@author Thomas Radke
@desc
- Defines the PUGH reduction operator to get the norm
+ Defines the reduction operator to get the norm
of an arbitrary array which is defined as:
norm3 = $\sqrt[3]{\Sigma |a_i|^3 / np}$
@enddesc
diff --git a/src/ReductionNorm4.c b/src/ReductionNorm4.c
index 1179e13..823c29e 100644
--- a/src/ReductionNorm4.c
+++ b/src/ReductionNorm4.c
@@ -3,7 +3,7 @@
@date Tue Apr 15 2003
@author Thomas Radke
@desc
- Defines the PUGH reduction operator to get the norm
+ Defines the reduction operator to get the norm
of an arbitrary array which is defined as:
norm4 = $\sqrt[4]{\Sigma (a_i^4) / np}$
@enddesc
diff --git a/src/ReductionSum.c b/src/ReductionSum.c
index b795f02..b020803 100644
--- a/src/ReductionSum.c
+++ b/src/ReductionSum.c
@@ -3,7 +3,7 @@
@date Thu Apr 3 11:54:53 1997
@author Thomas Radke, Paul Walker
@desc
- Defines the PUGH reduction operator to get the sum
+ Defines the reduction operator to get the sum
of an arbitrary array.
@enddesc
@version $Id$