From 595e470d70fed31c513b358d61a4f8f6ff86b020 Mon Sep 17 00:00:00 2001
From: Robert Burrell Donkin LUDecompose()
to recompute the decomposition
* before using any of the methods above.
*
- * @version $Revision: 1.4 $ $Date: 2003/07/30 21:58:10 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:09:45 $
*/
public class RealMatrixImpl implements RealMatrix, Serializable {
diff --git a/src/java/org/apache/commons/math/random/EmpiricalDistribution.java b/src/java/org/apache/commons/math/random/EmpiricalDistribution.java
index 40e04524d..9b519d912 100644
--- a/src/java/org/apache/commons/math/random/EmpiricalDistribution.java
+++ b/src/java/org/apache/commons/math/random/EmpiricalDistribution.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -80,7 +80,7 @@ import org.apache.commons.math.stat.Univariate;
* build grouped frequnecy histograms representing the input data or to
* generate random values "like" those in the input file -- i.e., the values
* generated will follow the distribution of the values in the file.
- * @version $Revision: 1.5 $ $Date: 2003/09/17 19:29:31 $
+ * @version $Revision: 1.6 $ $Date: 2003/10/13 08:10:01 $
*/
public interface EmpiricalDistribution {
diff --git a/src/java/org/apache/commons/math/random/EmpiricalDistributionImpl.java b/src/java/org/apache/commons/math/random/EmpiricalDistributionImpl.java
index e5c37535f..5242c04bf 100644
--- a/src/java/org/apache/commons/math/random/EmpiricalDistributionImpl.java
+++ b/src/java/org/apache/commons/math/random/EmpiricalDistributionImpl.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -89,7 +89,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
* entry per line.
*
sigma
* mu
every time.* The default windowSize is "infinite" -- i.e., all values added are included * in all computations. - * @version $Revision: 1.9 $ $Date: 2003/09/17 19:19:09 $ + * @version $Revision: 1.10 $ $Date: 2003/10/13 08:10:56 $ */ public interface Univariate extends Applyable{ /** diff --git a/src/java/org/apache/commons/math/stat/UnivariateImpl.java b/src/java/org/apache/commons/math/stat/UnivariateImpl.java index d0223e0fd..47e70f0de 100644 --- a/src/java/org/apache/commons/math/stat/UnivariateImpl.java +++ b/src/java/org/apache/commons/math/stat/UnivariateImpl.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -67,7 +67,7 @@ import org.apache.commons.math.util.FixedDoubleArray; * Integers, floats and longs can be added, but they will be converted * to doubles by addValue(). * - * @version $Revision: 1.21 $ $Date: 2003/09/27 04:13:33 $ + * @version $Revision: 1.22 $ $Date: 2003/10/13 08:10:56 $ */ public class UnivariateImpl extends AbstractUnivariate diff --git a/src/java/org/apache/commons/math/stat/univariate/AbstractStorelessUnivariateStatistic.java b/src/java/org/apache/commons/math/stat/univariate/AbstractStorelessUnivariateStatistic.java index 004558902..b3a208c0a 100644 --- a/src/java/org/apache/commons/math/stat/univariate/AbstractStorelessUnivariateStatistic.java +++ b/src/java/org/apache/commons/math/stat/univariate/AbstractStorelessUnivariateStatistic.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -59,7 +59,7 @@ package org.apache.commons.math.stat.univariate; * Provides the ability to extend polymophically so that * indiviual statistics do not need to implement these methods unless * there are better algorithms for handling the calculation. - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:57 $ */ public abstract class AbstractStorelessUnivariateStatistic extends AbstractUnivariateStatistic diff --git a/src/java/org/apache/commons/math/stat/univariate/AbstractUnivariateStatistic.java b/src/java/org/apache/commons/math/stat/univariate/AbstractUnivariateStatistic.java index c543cd2ab..7d7b63e3d 100644 --- a/src/java/org/apache/commons/math/stat/univariate/AbstractUnivariateStatistic.java +++ b/src/java/org/apache/commons/math/stat/univariate/AbstractUnivariateStatistic.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -57,7 +57,7 @@ package org.apache.commons.math.stat.univariate; * Abstract Implementation for UnivariateStatistics. * Provides the ability to extend polymophically so that * indiviual statistics do not need to implement these methods. - * @version $Revision: 1.6 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.7 $ $Date: 2003/10/13 08:10:57 $ */ public abstract class AbstractUnivariateStatistic implements UnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/StorelessUnivariateStatistic.java b/src/java/org/apache/commons/math/stat/univariate/StorelessUnivariateStatistic.java index 952ac6064..bd24ca1a8 100644 --- a/src/java/org/apache/commons/math/stat/univariate/StorelessUnivariateStatistic.java +++ b/src/java/org/apache/commons/math/stat/univariate/StorelessUnivariateStatistic.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ package org.apache.commons.math.stat.univariate; * implemented using it. If a Statistic cannot be implemented in a Storeless * approach it should implement the UnivariateStatistic interface directly * instead. - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:57 $ */ public interface StorelessUnivariateStatistic extends UnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/UnivariateStatistic.java b/src/java/org/apache/commons/math/stat/univariate/UnivariateStatistic.java index ed8f7bb2d..0daf472f6 100644 --- a/src/java/org/apache/commons/math/stat/univariate/UnivariateStatistic.java +++ b/src/java/org/apache/commons/math/stat/univariate/UnivariateStatistic.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -58,7 +58,7 @@ package org.apache.commons.math.stat.univariate; * double[] based content using an implemented statistical approach. * The interface provides two "stateless" simple methods to calculate * a statistic from a double[] based parameter. - * @version $Revision: 1.6 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.7 $ $Date: 2003/10/13 08:10:57 $ */ public interface UnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/FirstMoment.java b/src/java/org/apache/commons/math/stat/univariate/moment/FirstMoment.java index ae74119ee..be804728e 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/FirstMoment.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/FirstMoment.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatis * * recursive strategy * . Both incremental and evaluation strategies currently use this approach. - * @version $Revision: 1.6 $ $Date: 2003/08/09 04:03:40 $ + * @version $Revision: 1.7 $ $Date: 2003/10/13 08:10:57 $ */ public class FirstMoment extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/FourthMoment.java b/src/java/org/apache/commons/math/stat/univariate/moment/FourthMoment.java index 687301352..c5026e858 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/FourthMoment.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/FourthMoment.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -58,7 +58,7 @@ package org.apache.commons.math.stat.univariate.moment; * * recursive strategy * . Both incremental and evaluation strategies currently use this approach. - * @version $Revision: 1.8 $ $Date: 2003/09/07 03:12:56 $ + * @version $Revision: 1.9 $ $Date: 2003/10/13 08:10:57 $ */ public class FourthMoment extends ThirdMoment { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java b/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java index bcf9d61eb..236b369e2 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/GeometricMean.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -58,7 +58,7 @@ import org.apache.commons.math.stat.univariate.summary.SumOfLogs; /** * Returns the * geometric mean of the available values - * @version $Revision: 1.9 $ $Date: 2003/08/09 04:03:40 $ + * @version $Revision: 1.10 $ $Date: 2003/10/13 08:10:57 $ */ public class GeometricMean extends SumOfLogs { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java b/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java index c390857d4..0b30bc37b 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/Kurtosis.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ import org .AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.9 $ $Date: 2003/09/17 19:29:29 $ + * @version $Revision: 1.10 $ $Date: 2003/10/13 08:10:57 $ */ public class Kurtosis extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/Mean.java b/src/java/org/apache/commons/math/stat/univariate/moment/Mean.java index 3cddafec3..faea49fbe 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/Mean.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/Mean.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -65,7 +65,7 @@ import org.apache.commons.math.stat.univariate.summary.Sum; /** * Returns the * arithmetic mean of the available values. - * @version $Revision: 1.8 $ $Date: 2003/08/09 04:03:40 $ + * @version $Revision: 1.9 $ $Date: 2003/10/13 08:10:57 $ */ public class Mean extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/SecondMoment.java b/src/java/org/apache/commons/math/stat/univariate/moment/SecondMoment.java index dfd7c6417..ca64b8c9a 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/SecondMoment.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/SecondMoment.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -58,7 +58,7 @@ package org.apache.commons.math.stat.univariate.moment; * * recursive strategy * . Both incremental and evaluation strategies currently use this approach. - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:40 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class SecondMoment extends FirstMoment { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java b/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java index 22729093b..f8e9de955 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/Skewness.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -56,7 +56,7 @@ package org.apache.commons.math.stat.univariate.moment; import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.9 $ $Date: 2003/09/17 19:29:29 $ + * @version $Revision: 1.10 $ $Date: 2003/10/13 08:10:58 $ */ public class Skewness extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/StandardDeviation.java b/src/java/org/apache/commons/math/stat/univariate/moment/StandardDeviation.java index 393ba5590..31dfef03c 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/StandardDeviation.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/StandardDeviation.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -55,7 +55,7 @@ package org.apache.commons.math.stat.univariate.moment; /** * - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:40 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class StandardDeviation extends Variance { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/ThirdMoment.java b/src/java/org/apache/commons/math/stat/univariate/moment/ThirdMoment.java index 6328d3015..231c8d60f 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/ThirdMoment.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/ThirdMoment.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -58,7 +58,7 @@ package org.apache.commons.math.stat.univariate.moment; * * recursive strategy * . Both incremental and evaluation strategies currently use this approach. - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:40 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class ThirdMoment extends SecondMoment { diff --git a/src/java/org/apache/commons/math/stat/univariate/moment/Variance.java b/src/java/org/apache/commons/math/stat/univariate/moment/Variance.java index 50bd88654..ab25b3e5a 100644 --- a/src/java/org/apache/commons/math/stat/univariate/moment/Variance.java +++ b/src/java/org/apache/commons/math/stat/univariate/moment/Variance.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -57,7 +57,7 @@ import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatis /** * - * @version $Revision: 1.9 $ $Date: 2003/09/07 03:12:56 $ + * @version $Revision: 1.10 $ $Date: 2003/10/13 08:10:58 $ */ public class Variance extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/rank/Max.java b/src/java/org/apache/commons/math/stat/univariate/rank/Max.java index 32e1ea4ef..aed343e5e 100644 --- a/src/java/org/apache/commons/math/stat/univariate/rank/Max.java +++ b/src/java/org/apache/commons/math/stat/univariate/rank/Max.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ import org .AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class Max extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/rank/Median.java b/src/java/org/apache/commons/math/stat/univariate/rank/Median.java index a931e9756..63ece7163 100644 --- a/src/java/org/apache/commons/math/stat/univariate/rank/Median.java +++ b/src/java/org/apache/commons/math/stat/univariate/rank/Median.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -55,7 +55,7 @@ package org.apache.commons.math.stat.univariate.rank; /** - * @version $Revision: 1.4 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.5 $ $Date: 2003/10/13 08:10:58 $ */ public class Median extends Percentile { diff --git a/src/java/org/apache/commons/math/stat/univariate/rank/Min.java b/src/java/org/apache/commons/math/stat/univariate/rank/Min.java index 12ae83bf9..95c0c5227 100644 --- a/src/java/org/apache/commons/math/stat/univariate/rank/Min.java +++ b/src/java/org/apache/commons/math/stat/univariate/rank/Min.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ import org .AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class Min extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/rank/Percentile.java b/src/java/org/apache/commons/math/stat/univariate/rank/Percentile.java index 178525d4d..99dbd648b 100644 --- a/src/java/org/apache/commons/math/stat/univariate/rank/Percentile.java +++ b/src/java/org/apache/commons/math/stat/univariate/rank/Percentile.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -57,7 +57,7 @@ import java.util.Arrays; import org.apache.commons.math.stat.univariate.AbstractUnivariateStatistic; /** - * @version $Revision: 1.5 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.6 $ $Date: 2003/10/13 08:10:58 $ */ public class Percentile extends AbstractUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/summary/Product.java b/src/java/org/apache/commons/math/stat/univariate/summary/Product.java index 8c243646b..4e694521e 100644 --- a/src/java/org/apache/commons/math/stat/univariate/summary/Product.java +++ b/src/java/org/apache/commons/math/stat/univariate/summary/Product.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ import org .AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class Product extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/summary/Sum.java b/src/java/org/apache/commons/math/stat/univariate/summary/Sum.java index 81346673b..4ae17d4bb 100644 --- a/src/java/org/apache/commons/math/stat/univariate/summary/Sum.java +++ b/src/java/org/apache/commons/math/stat/univariate/summary/Sum.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -56,7 +56,7 @@ package org.apache.commons.math.stat.univariate.summary; import org.apache.commons.math.stat.univariate.AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.9 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.10 $ $Date: 2003/10/13 08:10:58 $ */ public class Sum extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/summary/SumOfLogs.java b/src/java/org/apache/commons/math/stat/univariate/summary/SumOfLogs.java index 37477f3a4..ddb1e7146 100644 --- a/src/java/org/apache/commons/math/stat/univariate/summary/SumOfLogs.java +++ b/src/java/org/apache/commons/math/stat/univariate/summary/SumOfLogs.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ import org .AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class SumOfLogs extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/stat/univariate/summary/SumOfSquares.java b/src/java/org/apache/commons/math/stat/univariate/summary/SumOfSquares.java index 852a0aa4c..6dab95c27 100644 --- a/src/java/org/apache/commons/math/stat/univariate/summary/SumOfSquares.java +++ b/src/java/org/apache/commons/math/stat/univariate/summary/SumOfSquares.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -62,7 +62,7 @@ import org .AbstractStorelessUnivariateStatistic; /** - * @version $Revision: 1.7 $ $Date: 2003/08/09 04:03:41 $ + * @version $Revision: 1.8 $ $Date: 2003/10/13 08:10:58 $ */ public class SumOfSquares extends AbstractStorelessUnivariateStatistic { diff --git a/src/java/org/apache/commons/math/util/BeanTransformer.java b/src/java/org/apache/commons/math/util/BeanTransformer.java index a1e121381..a94666d16 100644 --- a/src/java/org/apache/commons/math/util/BeanTransformer.java +++ b/src/java/org/apache/commons/math/util/BeanTransformer.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -59,7 +59,7 @@ import org.apache.commons.logging.LogFactory; /** * Uses PropertyUtils to map a Bean getter to a double value. - * @version $Revision: 1.6 $ $Date: 2003/09/27 04:13:34 $ + * @version $Revision: 1.7 $ $Date: 2003/10/13 08:11:23 $ */ public class BeanTransformer implements NumberTransformer { diff --git a/src/java/org/apache/commons/math/util/ContinuedFraction.java b/src/java/org/apache/commons/math/util/ContinuedFraction.java index bb8201c88..05b7b584c 100644 --- a/src/java/org/apache/commons/math/util/ContinuedFraction.java +++ b/src/java/org/apache/commons/math/util/ContinuedFraction.java @@ -17,11 +17,11 @@ * distribution. * * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: + * any, must include the following acknowledgement: * "This product includes software developed by the * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. + * Alternately, this acknowledgement may appear in the software itself, + * if and wherever such third-party acknowledgements normally appear. * * 4. The names "The Jakarta Project", "Commons", and "Apache Software * Foundation" must not be used to endorse or promote products derived @@ -64,7 +64,7 @@ import org.apache.commons.math.analysis.ConvergenceException; *
double transform(Object o)
method.
- * @version $Revision: 1.3 $ $Date: 2003/07/09 20:04:12 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:11:23 $
*/
public class TransformerMap implements NumberTransformer {
diff --git a/src/test/org/apache/commons/math/MathConfigurationExceptionTest.java b/src/test/org/apache/commons/math/MathConfigurationExceptionTest.java
index f981fdd82..ae7b81247 100644
--- a/src/test/org/apache/commons/math/MathConfigurationExceptionTest.java
+++ b/src/test/org/apache/commons/math/MathConfigurationExceptionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:09:07 $
*/
public class MathConfigurationExceptionTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/MathExceptionTest.java b/src/test/org/apache/commons/math/MathExceptionTest.java
index 3dd428cf1..988ace5ce 100644
--- a/src/test/org/apache/commons/math/MathExceptionTest.java
+++ b/src/test/org/apache/commons/math/MathExceptionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:09:07 $
*/
public class MathExceptionTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/TestUtils.java b/src/test/org/apache/commons/math/TestUtils.java
index d1a91ed89..99945274c 100644
--- a/src/test/org/apache/commons/math/TestUtils.java
+++ b/src/test/org/apache/commons/math/TestUtils.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math;
import junit.framework.Assert;
/**
- * @version $Revision: 1.2 $ $Date: 2003/09/17 19:29:32 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:09:07 $
*/
public class TestUtils {
/**
diff --git a/src/test/org/apache/commons/math/analysis/BisectionSolverTest.java b/src/test/org/apache/commons/math/analysis/BisectionSolverTest.java
index 8fa597323..23ae1d272 100644
--- a/src/test/org/apache/commons/math/analysis/BisectionSolverTest.java
+++ b/src/test/org/apache/commons/math/analysis/BisectionSolverTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -58,7 +58,7 @@ import org.apache.commons.math.MathException;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.3 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:09:07 $
*/
public final class BisectionSolverTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/analysis/ConvergenceExceptionTest.java b/src/test/org/apache/commons/math/analysis/ConvergenceExceptionTest.java
index b4002c0e5..779057689 100644
--- a/src/test/org/apache/commons/math/analysis/ConvergenceExceptionTest.java
+++ b/src/test/org/apache/commons/math/analysis/ConvergenceExceptionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.analysis;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:09:07 $
*/
public class ConvergenceExceptionTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/analysis/InterpolatorTest.java b/src/test/org/apache/commons/math/analysis/InterpolatorTest.java
index 5b3b1d6e9..8c4e2576b 100644
--- a/src/test/org/apache/commons/math/analysis/InterpolatorTest.java
+++ b/src/test/org/apache/commons/math/analysis/InterpolatorTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -62,7 +62,7 @@ import junit.framework.TestSuite;
/**
* Test the interpolation framework.
*
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:09:07 $
*/
public class InterpolatorTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/analysis/QuinticFunction.java b/src/test/org/apache/commons/math/analysis/QuinticFunction.java
index 412c5edb2..b6217560c 100644
--- a/src/test/org/apache/commons/math/analysis/QuinticFunction.java
+++ b/src/test/org/apache/commons/math/analysis/QuinticFunction.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -58,7 +58,7 @@ import org.apache.commons.math.MathException;
/**
* Auxillary class for testing solvers.
*
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:09:08 $
*/
public class QuinticFunction implements UnivariateRealFunction {
diff --git a/src/test/org/apache/commons/math/analysis/RealSolverTest.java b/src/test/org/apache/commons/math/analysis/RealSolverTest.java
index 278264c61..329c9a805 100644
--- a/src/test/org/apache/commons/math/analysis/RealSolverTest.java
+++ b/src/test/org/apache/commons/math/analysis/RealSolverTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -69,7 +69,7 @@ import junit.framework.TestSuite;
* default absolute accuracy of 10E-8 for sinus and the quintic function around
* zero, and 5..10 iterations for the other zeros.
*
- * @version $Revision: 1.4 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:09:08 $
*/
public final class RealSolverTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/analysis/SinFunction.java b/src/test/org/apache/commons/math/analysis/SinFunction.java
index 5f4477445..366ab9d75 100644
--- a/src/test/org/apache/commons/math/analysis/SinFunction.java
+++ b/src/test/org/apache/commons/math/analysis/SinFunction.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -63,7 +63,7 @@ import org.apache.commons.math.MathException;
* which means linear approximation (Regula Falsi) will converge
* quadratically.
*
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:09:08 $
*/
public class SinFunction implements UnivariateRealFunction {
diff --git a/src/test/org/apache/commons/math/analysis/UnivariateRealSolverUtilsTest.java b/src/test/org/apache/commons/math/analysis/UnivariateRealSolverUtilsTest.java
index 8865fcd16..13364ce37 100644
--- a/src/test/org/apache/commons/math/analysis/UnivariateRealSolverUtilsTest.java
+++ b/src/test/org/apache/commons/math/analysis/UnivariateRealSolverUtilsTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -59,7 +59,7 @@ import org.apache.commons.math.MathException;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:09:08 $
*/
public class UnivariateRealSolverUtilsTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/beans/Patient.java b/src/test/org/apache/commons/math/beans/Patient.java
index 834af3024..37b7d0c40 100644
--- a/src/test/org/apache/commons/math/beans/Patient.java
+++ b/src/test/org/apache/commons/math/beans/Patient.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -54,7 +54,7 @@
package org.apache.commons.math.beans;
/**
- * @version $Revision: 1.2 $ $Date: 2003/09/17 19:29:32 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:09:08 $
*/
public class Patient {
diff --git a/src/test/org/apache/commons/math/beans/VitalStats.java b/src/test/org/apache/commons/math/beans/VitalStats.java
index 04db6a4ac..3bcd24673 100644
--- a/src/test/org/apache/commons/math/beans/VitalStats.java
+++ b/src/test/org/apache/commons/math/beans/VitalStats.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -54,7 +54,7 @@
package org.apache.commons.math.beans;
/**
- * @version $Revision: 1.2 $ $Date: 2003/09/17 19:29:32 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:09:08 $
*/
public class VitalStats {
diff --git a/src/test/org/apache/commons/math/distribution/BinomialDistributionTest.java b/src/test/org/apache/commons/math/distribution/BinomialDistributionTest.java
index 1d3424a88..cff5ff15b 100644
--- a/src/test/org/apache/commons/math/distribution/BinomialDistributionTest.java
+++ b/src/test/org/apache/commons/math/distribution/BinomialDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -56,7 +56,7 @@ package org.apache.commons.math.stat.distribution;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:30 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:38 $
*/
public class BinomialDistributionTest extends TestCase {
private BinomialDistribution b;
diff --git a/src/test/org/apache/commons/math/distribution/ChiSquareDistributionTest.java b/src/test/org/apache/commons/math/distribution/ChiSquareDistributionTest.java
index e1f0d6df1..1d97f3f24 100644
--- a/src/test/org/apache/commons/math/distribution/ChiSquareDistributionTest.java
+++ b/src/test/org/apache/commons/math/distribution/ChiSquareDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.stat.distribution;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:30 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:38 $
*/
public class ChiSquareDistributionTest extends TestCase {
private ChiSquaredDistribution chiSquare;
diff --git a/src/test/org/apache/commons/math/distribution/DistributionFactoryImplTest.java b/src/test/org/apache/commons/math/distribution/DistributionFactoryImplTest.java
index 4a32f906b..d7e5f412a 100644
--- a/src/test/org/apache/commons/math/distribution/DistributionFactoryImplTest.java
+++ b/src/test/org/apache/commons/math/distribution/DistributionFactoryImplTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.stat.distribution;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.9 $ $Date: 2003/09/17 19:29:30 $
+ * @version $Revision: 1.10 $ $Date: 2003/10/13 08:08:38 $
*/
public class DistributionFactoryImplTest extends TestCase {
/** */
diff --git a/src/test/org/apache/commons/math/distribution/ExponentialDistributionTest.java b/src/test/org/apache/commons/math/distribution/ExponentialDistributionTest.java
index 2536afc6c..6ef3b9a39 100644
--- a/src/test/org/apache/commons/math/distribution/ExponentialDistributionTest.java
+++ b/src/test/org/apache/commons/math/distribution/ExponentialDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -58,7 +58,7 @@ import org.apache.commons.math.TestUtils;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:30 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:38 $
*/
public class ExponentialDistributionTest extends TestCase {
private ExponentialDistribution exp;
diff --git a/src/test/org/apache/commons/math/distribution/FDistributionTest.java b/src/test/org/apache/commons/math/distribution/FDistributionTest.java
index e11f3d88b..8afe0f898 100644
--- a/src/test/org/apache/commons/math/distribution/FDistributionTest.java
+++ b/src/test/org/apache/commons/math/distribution/FDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -56,7 +56,7 @@ package org.apache.commons.math.stat.distribution;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.2 $ $Date: 2003/09/17 19:29:30 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:08:38 $
*/
public class FDistributionTest extends TestCase {
private FDistribution f;
diff --git a/src/test/org/apache/commons/math/distribution/GammaDistributionTest.java b/src/test/org/apache/commons/math/distribution/GammaDistributionTest.java
index e46114a92..24cc6b387 100644
--- a/src/test/org/apache/commons/math/distribution/GammaDistributionTest.java
+++ b/src/test/org/apache/commons/math/distribution/GammaDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.stat.distribution;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.5 $ $Date: 2003/09/27 04:13:33 $
+ * @version $Revision: 1.6 $ $Date: 2003/10/13 08:08:38 $
*/
public class GammaDistributionTest extends TestCase {
public void testProbabilities(){
diff --git a/src/test/org/apache/commons/math/distribution/HypergeometricDistributionTest.java b/src/test/org/apache/commons/math/distribution/HypergeometricDistributionTest.java
index 4814943bf..aa06a678b 100644
--- a/src/test/org/apache/commons/math/distribution/HypergeometricDistributionTest.java
+++ b/src/test/org/apache/commons/math/distribution/HypergeometricDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.stat.distribution;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/17 19:19:09 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:08:38 $
*/
public class HypergeometricDistributionTest extends TestCase {
private HypergeometricDistribution h;
diff --git a/src/test/org/apache/commons/math/distribution/TDistributionTest.java b/src/test/org/apache/commons/math/distribution/TDistributionTest.java
index 49c3cd858..3a792e01c 100644
--- a/src/test/org/apache/commons/math/distribution/TDistributionTest.java
+++ b/src/test/org/apache/commons/math/distribution/TDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -56,7 +56,7 @@ package org.apache.commons.math.stat.distribution;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:30 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:38 $
*/
public class TDistributionTest extends TestCase {
private TDistribution t;
diff --git a/src/test/org/apache/commons/math/linear/RealMatrixImplTest.java b/src/test/org/apache/commons/math/linear/RealMatrixImplTest.java
index d3fd4974b..726b0aa1b 100644
--- a/src/test/org/apache/commons/math/linear/RealMatrixImplTest.java
+++ b/src/test/org/apache/commons/math/linear/RealMatrixImplTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -60,7 +60,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the {@link RealMatrixImpl} class.
*
- * @version $Revision: 1.3 $ $Date: 2003/07/07 23:19:22 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:07:26 $
*/
public final class RealMatrixImplTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/random/EmpiricalDistributionTest.java b/src/test/org/apache/commons/math/random/EmpiricalDistributionTest.java
index 2c64faa36..8059bb2ab 100644
--- a/src/test/org/apache/commons/math/random/EmpiricalDistributionTest.java
+++ b/src/test/org/apache/commons/math/random/EmpiricalDistributionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -65,7 +65,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
/**
* Test cases for the EmpiricalDistribution class
*
- * @version $Revision: 1.2 $ $Date: 2003/07/07 23:19:21 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:07:52 $
*/
public final class EmpiricalDistributionTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/random/RandomDataTest.java b/src/test/org/apache/commons/math/random/RandomDataTest.java
index 0264b9ce3..029271e07 100644
--- a/src/test/org/apache/commons/math/random/RandomDataTest.java
+++ b/src/test/org/apache/commons/math/random/RandomDataTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -68,7 +68,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
/**
* Test cases for the RandomData class.
*
- * @version $Revision: 1.3 $ $Date: 2003/09/26 19:30:33 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:07:52 $
*/
public final class RandomDataTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/random/ValueServerTest.java b/src/test/org/apache/commons/math/random/ValueServerTest.java
index c6836bf38..c85407128 100644
--- a/src/test/org/apache/commons/math/random/ValueServerTest.java
+++ b/src/test/org/apache/commons/math/random/ValueServerTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -64,7 +64,7 @@ import org.apache.commons.math.stat.UnivariateImpl;
/**
* Test cases for the ValueServer class.
*
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:07:52 $
*/
public final class ValueServerTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/special/BetaTest.java b/src/test/org/apache/commons/math/special/BetaTest.java
index f8f286841..e51236603 100644
--- a/src/test/org/apache/commons/math/special/BetaTest.java
+++ b/src/test/org/apache/commons/math/special/BetaTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -56,7 +56,7 @@ package org.apache.commons.math.special;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.2 $ $Date: 2003/09/17 19:29:31 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:08:06 $
*/
public class BetaTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/special/GammaTest.java b/src/test/org/apache/commons/math/special/GammaTest.java
index 8579d8e57..fa8b63be1 100644
--- a/src/test/org/apache/commons/math/special/GammaTest.java
+++ b/src/test/org/apache/commons/math/special/GammaTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -58,7 +58,7 @@ import org.apache.commons.math.TestUtils;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:31 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:06 $
*/
public class GammaTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/stat/BeanListUnivariateImplTest.java b/src/test/org/apache/commons/math/stat/BeanListUnivariateImplTest.java
index 30d331d16..fb3048e95 100644
--- a/src/test/org/apache/commons/math/stat/BeanListUnivariateImplTest.java
+++ b/src/test/org/apache/commons/math/stat/BeanListUnivariateImplTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -65,7 +65,7 @@ import org.apache.commons.math.beans.*;
/**
* Test cases for the {@link BeanListUnivariateImpl} class.
*
- * @version $Revision: 1.5 $ $Date: 2003/09/27 04:13:33 $
+ * @version $Revision: 1.6 $ $Date: 2003/10/13 08:08:38 $
*/
public final class BeanListUnivariateImplTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/BivariateRegressionTest.java b/src/test/org/apache/commons/math/stat/BivariateRegressionTest.java
index 4918673c5..3c45d3496 100644
--- a/src/test/org/apache/commons/math/stat/BivariateRegressionTest.java
+++ b/src/test/org/apache/commons/math/stat/BivariateRegressionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -59,7 +59,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the TestStatistic class.
*
- * @version $Revision: 1.4 $ $Date: 2003/07/07 23:19:19 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:38 $
*/
public final class BivariateRegressionTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/CertifiedDataTest.java b/src/test/org/apache/commons/math/stat/CertifiedDataTest.java
index b5350bdec..4049c8e28 100644
--- a/src/test/org/apache/commons/math/stat/CertifiedDataTest.java
+++ b/src/test/org/apache/commons/math/stat/CertifiedDataTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -64,7 +64,7 @@ import java.io.InputStreamReader;
import org.apache.commons.logging.*;
/**
* Test cases for the {@link Univariate} class.
- * @version $Revision: 1.7 $ $Date: 2003/07/07 23:25:14 $
+ * @version $Revision: 1.8 $ $Date: 2003/10/13 08:08:38 $
*/
public class CertifiedDataTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/FrequencyTest.java b/src/test/org/apache/commons/math/stat/FrequencyTest.java
index 0fe4e11e4..a955c49a3 100644
--- a/src/test/org/apache/commons/math/stat/FrequencyTest.java
+++ b/src/test/org/apache/commons/math/stat/FrequencyTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -64,7 +64,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the {@link Frequency} class.
*
- * @version $Revision: 1.3 $ $Date: 2003/09/27 04:13:33 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:38 $
*/
public final class FrequencyTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/ListUnivariateImplTest.java b/src/test/org/apache/commons/math/stat/ListUnivariateImplTest.java
index 704c4aa86..373a1b57a 100644
--- a/src/test/org/apache/commons/math/stat/ListUnivariateImplTest.java
+++ b/src/test/org/apache/commons/math/stat/ListUnivariateImplTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -63,7 +63,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the {@link Univariate} class.
*
- * @version $Revision: 1.5 $ $Date: 2003/07/07 23:19:19 $
+ * @version $Revision: 1.6 $ $Date: 2003/10/13 08:08:38 $
*/
public final class ListUnivariateImplTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/MixedListUnivariateImplTest.java b/src/test/org/apache/commons/math/stat/MixedListUnivariateImplTest.java
index 51f9fa60e..1c6572ae3 100644
--- a/src/test/org/apache/commons/math/stat/MixedListUnivariateImplTest.java
+++ b/src/test/org/apache/commons/math/stat/MixedListUnivariateImplTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -64,7 +64,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the {@link Univariate} class.
*
- * @version $Revision: 1.1 $ $Date: 2003/07/09 21:45:24 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:08:38 $
*/
public final class MixedListUnivariateImplTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/StatUtilsTest.java b/src/test/org/apache/commons/math/stat/StatUtilsTest.java
index 19b6a6ca0..a3d779d33 100644
--- a/src/test/org/apache/commons/math/stat/StatUtilsTest.java
+++ b/src/test/org/apache/commons/math/stat/StatUtilsTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -59,7 +59,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the {@link StatUtils} class.
- * @version $Revision: 1.6 $ $Date: 2003/07/09 21:45:24 $
+ * @version $Revision: 1.7 $ $Date: 2003/10/13 08:08:38 $
*/
public final class StatUtilsTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/StoreUnivariateImplTest.java b/src/test/org/apache/commons/math/stat/StoreUnivariateImplTest.java
index a2536aa7f..60e255c4e 100644
--- a/src/test/org/apache/commons/math/stat/StoreUnivariateImplTest.java
+++ b/src/test/org/apache/commons/math/stat/StoreUnivariateImplTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -63,7 +63,7 @@ import org.apache.commons.math.random.RandomDataImpl;
/**
* Test cases for the {@link Univariate} class.
*
- * @version $Revision: 1.5 $ $Date: 2003/07/07 23:19:19 $
+ * @version $Revision: 1.6 $ $Date: 2003/10/13 08:08:38 $
*/
public final class StoreUnivariateImplTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/TestStatisticTest.java b/src/test/org/apache/commons/math/stat/TestStatisticTest.java
index f0fb43a6d..a11ea8bc2 100644
--- a/src/test/org/apache/commons/math/stat/TestStatisticTest.java
+++ b/src/test/org/apache/commons/math/stat/TestStatisticTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -59,7 +59,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the TestStatistic class.
*
- * @version $Revision: 1.3 $ $Date: 2003/07/07 23:19:19 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:38 $
*/
public final class TestStatisticTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/UnivariateImplTest.java b/src/test/org/apache/commons/math/stat/UnivariateImplTest.java
index eb94ca95f..2653151e5 100644
--- a/src/test/org/apache/commons/math/stat/UnivariateImplTest.java
+++ b/src/test/org/apache/commons/math/stat/UnivariateImplTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -60,7 +60,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the {@link Univariate} class.
*
- * @version $Revision: 1.7 $ $Date: 2003/09/17 19:29:32 $
+ * @version $Revision: 1.8 $ $Date: 2003/10/13 08:08:38 $
*/
public final class UnivariateImplTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/univariate/InteractionTest.java b/src/test/org/apache/commons/math/stat/univariate/InteractionTest.java
index f25d3d000..d60bba689 100644
--- a/src/test/org/apache/commons/math/stat/univariate/InteractionTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/InteractionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -62,7 +62,7 @@ import org.apache.commons.math.stat.univariate.moment.Variance;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:28 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:38 $
*/
public class InteractionTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/univariate/StorelessUnivariateStatisticAbstractTest.java b/src/test/org/apache/commons/math/stat/univariate/StorelessUnivariateStatisticAbstractTest.java
index fb0838c7f..7ffac41f4 100644
--- a/src/test/org/apache/commons/math/stat/univariate/StorelessUnivariateStatisticAbstractTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/StorelessUnivariateStatisticAbstractTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -56,7 +56,7 @@ package org.apache.commons.math.stat.univariate;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:28 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:38 $
*/
public abstract class StorelessUnivariateStatisticAbstractTest
extends UnivariateStatisticAbstractTest {
diff --git a/src/test/org/apache/commons/math/stat/univariate/UnivariateStatisticAbstractTest.java b/src/test/org/apache/commons/math/stat/univariate/UnivariateStatisticAbstractTest.java
index 2dc997452..5cfd563b5 100644
--- a/src/test/org/apache/commons/math/stat/univariate/UnivariateStatisticAbstractTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/UnivariateStatisticAbstractTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ import junit.framework.TestCase;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:28 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:38 $
*/
public abstract class UnivariateStatisticAbstractTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/stat/univariate/moment/GeometricMeanTest.java b/src/test/org/apache/commons/math/stat/univariate/moment/GeometricMeanTest.java
index fb4152625..65cd17bcf 100644
--- a/src/test/org/apache/commons/math/stat/univariate/moment/GeometricMeanTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/moment/GeometricMeanTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:38 $
*/
public class GeometricMeanTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/moment/KurtosisTest.java b/src/test/org/apache/commons/math/stat/univariate/moment/KurtosisTest.java
index ee3cf3192..2dc3d5f66 100644
--- a/src/test/org/apache/commons/math/stat/univariate/moment/KurtosisTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/moment/KurtosisTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:38 $
*/
public class KurtosisTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/moment/MeanTest.java b/src/test/org/apache/commons/math/stat/univariate/moment/MeanTest.java
index 4be8ffdcb..d5d1421aa 100644
--- a/src/test/org/apache/commons/math/stat/univariate/moment/MeanTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/moment/MeanTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:38 $
*/
public class MeanTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/moment/SkewnessTest.java b/src/test/org/apache/commons/math/stat/univariate/moment/SkewnessTest.java
index 91157b1eb..7a282b021 100644
--- a/src/test/org/apache/commons/math/stat/univariate/moment/SkewnessTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/moment/SkewnessTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -62,7 +62,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
*
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class SkewnessTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/moment/StandardDeviationTest.java b/src/test/org/apache/commons/math/stat/univariate/moment/StandardDeviationTest.java
index f89d3fd65..76360a6fe 100644
--- a/src/test/org/apache/commons/math/stat/univariate/moment/StandardDeviationTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/moment/StandardDeviationTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -62,7 +62,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
*
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class StandardDeviationTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/moment/VarianceTest.java b/src/test/org/apache/commons/math/stat/univariate/moment/VarianceTest.java
index 51d4b9bc0..26d64d1b6 100644
--- a/src/test/org/apache/commons/math/stat/univariate/moment/VarianceTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/moment/VarianceTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -62,7 +62,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
*
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:27 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class VarianceTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/rank/MaxTest.java b/src/test/org/apache/commons/math/stat/univariate/rank/MaxTest.java
index 31a1ca55f..77409a54b 100644
--- a/src/test/org/apache/commons/math/stat/univariate/rank/MaxTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/rank/MaxTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class MaxTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/rank/MedianTest.java b/src/test/org/apache/commons/math/stat/univariate/rank/MedianTest.java
index 6a86c9639..090d34902 100644
--- a/src/test/org/apache/commons/math/stat/univariate/rank/MedianTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/rank/MedianTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatisticAbstractTest;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:39 $
*/
public class MedianTest extends UnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/rank/MinTest.java b/src/test/org/apache/commons/math/stat/univariate/rank/MinTest.java
index 8f493a67a..c03e5c082 100644
--- a/src/test/org/apache/commons/math/stat/univariate/rank/MinTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/rank/MinTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class MinTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/rank/PercentileTest.java b/src/test/org/apache/commons/math/stat/univariate/rank/PercentileTest.java
index bbc97513e..33fc406d9 100644
--- a/src/test/org/apache/commons/math/stat/univariate/rank/PercentileTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/rank/PercentileTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatisticAbstractTest;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:08:39 $
*/
public class PercentileTest extends UnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/summary/ProductTest.java b/src/test/org/apache/commons/math/stat/univariate/summary/ProductTest.java
index be539e34d..cf48e9796 100644
--- a/src/test/org/apache/commons/math/stat/univariate/summary/ProductTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/summary/ProductTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:31 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class ProductTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/summary/SumLogTest.java b/src/test/org/apache/commons/math/stat/univariate/summary/SumLogTest.java
index 11db0adb5..471cfbd09 100644
--- a/src/test/org/apache/commons/math/stat/univariate/summary/SumLogTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/summary/SumLogTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:31 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class SumLogTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/summary/SumSqTest.java b/src/test/org/apache/commons/math/stat/univariate/summary/SumSqTest.java
index 0a38bd1ae..0a47c09d5 100644
--- a/src/test/org/apache/commons/math/stat/univariate/summary/SumSqTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/summary/SumSqTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:31 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class SumSqTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/stat/univariate/summary/SumTest.java b/src/test/org/apache/commons/math/stat/univariate/summary/SumTest.java
index f8f066ca1..e8fdce2ec 100644
--- a/src/test/org/apache/commons/math/stat/univariate/summary/SumTest.java
+++ b/src/test/org/apache/commons/math/stat/univariate/summary/SumTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatistic;
/**
* Test cases for the {@link UnivariateStatistic} class.
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:31 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:08:39 $
*/
public class SumTest extends StorelessUnivariateStatisticAbstractTest{
diff --git a/src/test/org/apache/commons/math/util/BeanTransformerTest.java b/src/test/org/apache/commons/math/util/BeanTransformerTest.java
index e9a9e5ce0..97a39a558 100644
--- a/src/test/org/apache/commons/math/util/BeanTransformerTest.java
+++ b/src/test/org/apache/commons/math/util/BeanTransformerTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -59,7 +59,7 @@ import org.apache.commons.math.TestUtils;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:07:11 $
*/
public class BeanTransformerTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/util/ContinuedFractionTest.java b/src/test/org/apache/commons/math/util/ContinuedFractionTest.java
index 0f2b260a3..a63ad6e61 100644
--- a/src/test/org/apache/commons/math/util/ContinuedFractionTest.java
+++ b/src/test/org/apache/commons/math/util/ContinuedFractionTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -56,7 +56,7 @@ package org.apache.commons.math.util;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.2 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:07:11 $
*/
public class ContinuedFractionTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/util/ContractableDoubleArrayTest.java b/src/test/org/apache/commons/math/util/ContractableDoubleArrayTest.java
index 9b377895a..dc166b7b5 100644
--- a/src/test/org/apache/commons/math/util/ContractableDoubleArrayTest.java
+++ b/src/test/org/apache/commons/math/util/ContractableDoubleArrayTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.util;
/**
* This class contains test cases for the ExpandableDoubleArray.
*
- * @version $Revision: 1.2 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:07:11 $
*/
public class ContractableDoubleArrayTest extends ExpandableDoubleArrayTest {
diff --git a/src/test/org/apache/commons/math/util/DefaultTransformerTest.java b/src/test/org/apache/commons/math/util/DefaultTransformerTest.java
index bf48fc692..d5a34c4e3 100644
--- a/src/test/org/apache/commons/math/util/DefaultTransformerTest.java
+++ b/src/test/org/apache/commons/math/util/DefaultTransformerTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -61,7 +61,7 @@ import org.apache.commons.math.TestUtils;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:07:11 $
*/
public class DefaultTransformerTest extends TestCase {
/**
diff --git a/src/test/org/apache/commons/math/util/DoubleArrayAbstractTest.java b/src/test/org/apache/commons/math/util/DoubleArrayAbstractTest.java
index b0d645c09..7da9c2147 100644
--- a/src/test/org/apache/commons/math/util/DoubleArrayAbstractTest.java
+++ b/src/test/org/apache/commons/math/util/DoubleArrayAbstractTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -60,7 +60,7 @@ import junit.framework.TestCase;
/**
* This class contains test cases for the ExpandableDoubleArray.
*
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:07:11 $
*/
public abstract class DoubleArrayAbstractTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/util/ExpandableDoubleArrayTest.java b/src/test/org/apache/commons/math/util/ExpandableDoubleArrayTest.java
index ec6f25b60..f2da36ce4 100644
--- a/src/test/org/apache/commons/math/util/ExpandableDoubleArrayTest.java
+++ b/src/test/org/apache/commons/math/util/ExpandableDoubleArrayTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.util;
/**
* This class contains test cases for the ExpandableDoubleArray.
*
- * @version $Revision: 1.3 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.4 $ $Date: 2003/10/13 08:07:11 $
*/
public class ExpandableDoubleArrayTest extends DoubleArrayAbstractTest {
diff --git a/src/test/org/apache/commons/math/util/FixedDoubleArrayTest.java b/src/test/org/apache/commons/math/util/FixedDoubleArrayTest.java
index d34eb90ed..77f911a08 100644
--- a/src/test/org/apache/commons/math/util/FixedDoubleArrayTest.java
+++ b/src/test/org/apache/commons/math/util/FixedDoubleArrayTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.util;
/**
* This class contains test cases for the ExpandableDoubleArray.
*
- * @version $Revision: 1.4 $ $Date: 2003/09/17 19:29:29 $
+ * @version $Revision: 1.5 $ $Date: 2003/10/13 08:07:11 $
*/
public class FixedDoubleArrayTest extends DoubleArrayAbstractTest {
diff --git a/src/test/org/apache/commons/math/util/MathUtilsTest.java b/src/test/org/apache/commons/math/util/MathUtilsTest.java
index 5e4bbe048..79de411b8 100644
--- a/src/test/org/apache/commons/math/util/MathUtilsTest.java
+++ b/src/test/org/apache/commons/math/util/MathUtilsTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -60,7 +60,7 @@ import junit.framework.TestSuite;
/**
* Test cases for the MathUtils class.
*
- * @version $Revision: 1.2 $ $Date: 2003/07/07 23:19:22 $
+ * @version $Revision: 1.3 $ $Date: 2003/10/13 08:07:11 $
*/
public final class MathUtilsTest extends TestCase {
diff --git a/src/test/org/apache/commons/math/util/TestBean.java b/src/test/org/apache/commons/math/util/TestBean.java
index 54b92ca5a..1ed76e068 100644
--- a/src/test/org/apache/commons/math/util/TestBean.java
+++ b/src/test/org/apache/commons/math/util/TestBean.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -55,7 +55,7 @@
package org.apache.commons.math.util;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:07:11 $
*/
public class TestBean {
private Double x = new Double(1.0);
diff --git a/src/test/org/apache/commons/math/util/TransformerMapTest.java b/src/test/org/apache/commons/math/util/TransformerMapTest.java
index e16fa9949..5740d6d97 100644
--- a/src/test/org/apache/commons/math/util/TransformerMapTest.java
+++ b/src/test/org/apache/commons/math/util/TransformerMapTest.java
@@ -17,11 +17,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgement:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgement may appear in the software itself,
+ * if and wherever such third-party acknowledgements normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -57,7 +57,7 @@ package org.apache.commons.math.util;
import junit.framework.TestCase;
/**
- * @version $Revision: 1.1 $ $Date: 2003/09/27 04:13:34 $
+ * @version $Revision: 1.2 $ $Date: 2003/10/13 08:07:11 $
*/
public class TransformerMapTest extends TestCase {
/**