You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ps...@apache.org on 2004/02/18 04:24:20 UTC

cvs commit: jakarta-commons/math/src/test/org/apache/commons/math/analysis BisectionSolverTest.java ConvergenceExceptionTest.java InterpolatorTest.java PolynomialFunctionTest.java

psteitz     2004/02/17 19:24:20

  Modified:    math/src/experimental/org/apache/commons/math/analysis
                        DerivativeOperatorFactory.java
                        DerivativeOperatorFactoryTest.java
                        UnivariateRealFunctionProxy.java
                        UnivariateRealFunctionUtils.java
                        UnivariateRealFunctionUtilsTest.java
               math/src/experimental/org/apache/commons/math/analysis/derivative
                        AbstractDifferenceDerivative.java
                        BackwardDifferenceDerivative.java
                        CenterDifferenceDerivative.java
                        ForwardDifferenceDerivative.java
               math/src/experimental/org/apache/commons/math/function
                        Compilable.java DefaultContext.java Evaluation.java
                        EvaluationContext.java EvaluationException.java
                        Variable.java
               math/src/experimental/org/apache/commons/math/function/simple
                        Add.java Divide.java Equals.java Multiply.java
                        Power.java Sqrt.java Subtract.java
               math/src/experimental/org/apache/commons/math/linear
                        CholeskySolver.java CholeskySolverTest.java
                        Decomposer.java Decomposition.java
                        DecompositionFactory.java RealVector.java
               math/src/java/org/apache/commons/math
                        ConvergenceException.java
                        MathConfigurationException.java MathException.java
               math/src/java/org/apache/commons/math/analysis
                        BisectionSolver.java BrentSolver.java
                        CubicSplineFunction.java PolynomialFunction.java
                        SecantSolver.java SplineInterpolator.java
               math/src/java/org/apache/commons/math/linear RealMatrix.java
                        RealMatrixImpl.java
               math/src/java/org/apache/commons/math/special Beta.java
               math/src/test/org/apache/commons/math/analysis
                        BisectionSolverTest.java
                        ConvergenceExceptionTest.java InterpolatorTest.java
                        PolynomialFunctionTest.java
  Log:
  Restored original copyright date.
  
  Revision  Changes    Path
  1.3       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/DerivativeOperatorFactory.java
  
  Index: DerivativeOperatorFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/DerivativeOperatorFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DerivativeOperatorFactory.java	29 Jan 2004 16:48:47 -0000	1.2
  +++ DerivativeOperatorFactory.java	18 Feb 2004 03:24:19 -0000	1.3
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java
  
  Index: DerivativeOperatorFactoryTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/DerivativeOperatorFactoryTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DerivativeOperatorFactoryTest.java	29 Jan 2004 16:54:05 -0000	1.3
  +++ DerivativeOperatorFactoryTest.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/UnivariateRealFunctionProxy.java
  
  Index: UnivariateRealFunctionProxy.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/UnivariateRealFunctionProxy.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UnivariateRealFunctionProxy.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ UnivariateRealFunctionProxy.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/UnivariateRealFunctionUtils.java
  
  Index: UnivariateRealFunctionUtils.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/UnivariateRealFunctionUtils.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UnivariateRealFunctionUtils.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ UnivariateRealFunctionUtils.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/UnivariateRealFunctionUtilsTest.java
  
  Index: UnivariateRealFunctionUtilsTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/UnivariateRealFunctionUtilsTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UnivariateRealFunctionUtilsTest.java	29 Jan 2004 16:48:47 -0000	1.3
  +++ UnivariateRealFunctionUtilsTest.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java
  
  Index: AbstractDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/AbstractDifferenceDerivative.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- AbstractDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  +++ AbstractDifferenceDerivative.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java
  
  Index: BackwardDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/BackwardDifferenceDerivative.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- BackwardDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  +++ BackwardDifferenceDerivative.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java
  
  Index: CenterDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/CenterDifferenceDerivative.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CenterDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  +++ CenterDifferenceDerivative.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java
  
  Index: ForwardDifferenceDerivative.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/analysis/derivative/ForwardDifferenceDerivative.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ForwardDifferenceDerivative.java	29 Jan 2004 16:54:04 -0000	1.3
  +++ ForwardDifferenceDerivative.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/Compilable.java
  
  Index: Compilable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/Compilable.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Compilable.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Compilable.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/DefaultContext.java
  
  Index: DefaultContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/DefaultContext.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- DefaultContext.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ DefaultContext.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/Evaluation.java
  
  Index: Evaluation.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/Evaluation.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Evaluation.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Evaluation.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationContext.java
  
  Index: EvaluationContext.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationContext.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- EvaluationContext.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ EvaluationContext.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.6       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationException.java
  
  Index: EvaluationException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/EvaluationException.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- EvaluationException.java	29 Jan 2004 16:54:04 -0000	1.5
  +++ EvaluationException.java	18 Feb 2004 03:24:19 -0000	1.6
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/Variable.java
  
  Index: Variable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/Variable.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Variable.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Variable.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Add.java
  
  Index: Add.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Add.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Add.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Add.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Divide.java
  
  Index: Divide.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Divide.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Divide.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Divide.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Equals.java
  
  Index: Equals.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Equals.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Equals.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Equals.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Multiply.java
  
  Index: Multiply.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Multiply.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Multiply.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Multiply.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Power.java
  
  Index: Power.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Power.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Power.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Power.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Sqrt.java
  
  Index: Sqrt.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Sqrt.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Sqrt.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Sqrt.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Subtract.java
  
  Index: Subtract.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/function/simple/Subtract.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Subtract.java	29 Jan 2004 16:54:04 -0000	1.4
  +++ Subtract.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/CholeskySolver.java
  
  Index: CholeskySolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/CholeskySolver.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CholeskySolver.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ CholeskySolver.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/CholeskySolverTest.java
  
  Index: CholeskySolverTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/CholeskySolverTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CholeskySolverTest.java	29 Jan 2004 16:48:48 -0000	1.3
  +++ CholeskySolverTest.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposer.java
  
  Index: Decomposer.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposer.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Decomposer.java	29 Jan 2004 16:54:05 -0000	1.4
  +++ Decomposer.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposition.java
  
  Index: Decomposition.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/Decomposition.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Decomposition.java	29 Jan 2004 16:54:05 -0000	1.3
  +++ Decomposition.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/DecompositionFactory.java
  
  Index: DecompositionFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/DecompositionFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- DecompositionFactory.java	29 Jan 2004 16:54:05 -0000	1.3
  +++ DecompositionFactory.java	18 Feb 2004 03:24:19 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.3       +1 -1      jakarta-commons/math/src/experimental/org/apache/commons/math/linear/RealVector.java
  
  Index: RealVector.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/experimental/org/apache/commons/math/linear/RealVector.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RealVector.java	29 Jan 2004 16:48:48 -0000	1.2
  +++ RealVector.java	18 Feb 2004 03:24:19 -0000	1.3
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.10      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/ConvergenceException.java
  
  Index: ConvergenceException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/ConvergenceException.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ConvergenceException.java	29 Jan 2004 16:48:49 -0000	1.9
  +++ ConvergenceException.java	18 Feb 2004 03:24:19 -0000	1.10
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.15      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/MathConfigurationException.java
  
  Index: MathConfigurationException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/MathConfigurationException.java,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- MathConfigurationException.java	29 Jan 2004 16:48:49 -0000	1.14
  +++ MathConfigurationException.java	18 Feb 2004 03:24:19 -0000	1.15
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.14      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/MathException.java
  
  Index: MathException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/MathException.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- MathException.java	29 Jan 2004 16:48:49 -0000	1.13
  +++ MathException.java	18 Feb 2004 03:24:19 -0000	1.14
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.11      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/analysis/BisectionSolver.java
  
  Index: BisectionSolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/analysis/BisectionSolver.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- BisectionSolver.java	29 Jan 2004 16:48:49 -0000	1.10
  +++ BisectionSolver.java	18 Feb 2004 03:24:19 -0000	1.11
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.12      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/analysis/BrentSolver.java
  
  Index: BrentSolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/analysis/BrentSolver.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- BrentSolver.java	29 Jan 2004 16:48:49 -0000	1.11
  +++ BrentSolver.java	18 Feb 2004 03:24:19 -0000	1.12
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.12      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/analysis/CubicSplineFunction.java
  
  Index: CubicSplineFunction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/analysis/CubicSplineFunction.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- CubicSplineFunction.java	29 Jan 2004 16:48:49 -0000	1.11
  +++ CubicSplineFunction.java	18 Feb 2004 03:24:19 -0000	1.12
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.5       +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/analysis/PolynomialFunction.java
  
  Index: PolynomialFunction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/analysis/PolynomialFunction.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PolynomialFunction.java	29 Jan 2004 16:48:49 -0000	1.4
  +++ PolynomialFunction.java	18 Feb 2004 03:24:19 -0000	1.5
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.12      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/analysis/SecantSolver.java
  
  Index: SecantSolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/analysis/SecantSolver.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- SecantSolver.java	29 Jan 2004 16:48:49 -0000	1.11
  +++ SecantSolver.java	18 Feb 2004 03:24:19 -0000	1.12
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.14      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/analysis/SplineInterpolator.java
  
  Index: SplineInterpolator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/analysis/SplineInterpolator.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- SplineInterpolator.java	29 Jan 2004 16:48:49 -0000	1.13
  +++ SplineInterpolator.java	18 Feb 2004 03:24:19 -0000	1.14
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.12      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrix.java
  
  Index: RealMatrix.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrix.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- RealMatrix.java	29 Jan 2004 16:48:49 -0000	1.11
  +++ RealMatrix.java	18 Feb 2004 03:24:19 -0000	1.12
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.14      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrixImpl.java
  
  Index: RealMatrixImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrixImpl.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- RealMatrixImpl.java	29 Jan 2004 16:48:49 -0000	1.13
  +++ RealMatrixImpl.java	18 Feb 2004 03:24:19 -0000	1.14
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.17      +2 -2      jakarta-commons/math/src/java/org/apache/commons/math/special/Beta.java
  
  Index: Beta.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/special/Beta.java,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- Beta.java	29 Jan 2004 16:48:46 -0000	1.16
  +++ Beta.java	18 Feb 2004 03:24:20 -0000	1.17
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.10      +2 -2      jakarta-commons/math/src/test/org/apache/commons/math/analysis/BisectionSolverTest.java
  
  Index: BisectionSolverTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/test/org/apache/commons/math/analysis/BisectionSolverTest.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- BisectionSolverTest.java	29 Jan 2004 16:48:49 -0000	1.9
  +++ BisectionSolverTest.java	18 Feb 2004 03:24:20 -0000	1.10
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.8       +2 -2      jakarta-commons/math/src/test/org/apache/commons/math/analysis/ConvergenceExceptionTest.java
  
  Index: ConvergenceExceptionTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/test/org/apache/commons/math/analysis/ConvergenceExceptionTest.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ConvergenceExceptionTest.java	29 Jan 2004 16:48:49 -0000	1.7
  +++ ConvergenceExceptionTest.java	18 Feb 2004 03:24:20 -0000	1.8
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.13      +2 -2      jakarta-commons/math/src/test/org/apache/commons/math/analysis/InterpolatorTest.java
  
  Index: InterpolatorTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/test/org/apache/commons/math/analysis/InterpolatorTest.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- InterpolatorTest.java	17 Feb 2004 04:33:16 -0000	1.12
  +++ InterpolatorTest.java	18 Feb 2004 03:24:20 -0000	1.13
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  
  1.4       +2 -2      jakarta-commons/math/src/test/org/apache/commons/math/analysis/PolynomialFunctionTest.java
  
  Index: PolynomialFunctionTest.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/test/org/apache/commons/math/analysis/PolynomialFunctionTest.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PolynomialFunctionTest.java	29 Jan 2004 16:48:49 -0000	1.3
  +++ PolynomialFunctionTest.java	18 Feb 2004 03:24:20 -0000	1.4
  @@ -1,6 +1,6 @@
   /*
    * 
  - * Copyright (c) 2004 The Apache Software Foundation. All rights reserved.
  + * Copyright (c) 2003-2004 The Apache Software Foundation. All rights reserved.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License"); you may not
    * use this file except in compliance with the License. You may obtain a copy
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org