You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by md...@apache.org on 2003/07/09 22:02:44 UTC

cvs commit: jakarta-commons-sandbox/math/src/java/org/apache/commons/math MathConfigurationException.java MathException.java

mdiggory    2003/07/09 13:02:44

  Modified:    math/src/java/org/apache/commons/math/analysis
                        UnivariateRealInterpolator.java
                        SplineInterpolator.java RootFinding.java
                        CubicSplineFunction.java
                        UnivariateRealFunction.java BrentSolver.java
                        UnivariateFunction.java
                        UnivariateRealSolverImpl.java
                        ConvergenceException.java
                        UnivariateRealSolverFactory.java
                        UnivariateRealSolver.java BisectionSolver.java
                        SecantSolver.java
               math/src/java/org/apache/commons/math
                        MathConfigurationException.java MathException.java
  Log:
  Removing @author tags, adding missing @version tags.
  
  Revision  Changes    Path
  1.2       +1 -2      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealInterpolator.java
  
  Index: UnivariateRealInterpolator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealInterpolator.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- UnivariateRealInterpolator.java	25 Jun 2003 01:29:18 -0000	1.1
  +++ UnivariateRealInterpolator.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -58,8 +58,7 @@
   /**
    *  Interface for interpolating a data set.
    *  
  - *  * @author pietsch at apache.org
  - *
  + * @version $Revision$ $Date$
    */
   public interface UnivariateRealInterpolator {
   
  
  
  
  1.2       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/SplineInterpolator.java
  
  Index: SplineInterpolator.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/SplineInterpolator.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- SplineInterpolator.java	25 Jun 2003 01:29:18 -0000	1.1
  +++ SplineInterpolator.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -56,7 +56,7 @@
   /**
    * Computes a natural spline interpolation for the data set.
    *
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    *
    */
   public class SplineInterpolator implements UnivariateRealInterpolator {
  
  
  
  1.3       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/RootFinding.java
  
  Index: RootFinding.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/RootFinding.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RootFinding.java	5 Jul 2003 18:05:02 -0000	1.2
  +++ RootFinding.java	9 Jul 2003 20:02:43 -0000	1.3
  @@ -58,7 +58,7 @@
   /**
    * Utility class comprised of root finding techniques.
    *
  - * @author Brent Worden
  + * @version $Revision$ $Date$
    */
   public class RootFinding {
       /** Maximum allowed numerical error. */
  
  
  
  1.2       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/CubicSplineFunction.java
  
  Index: CubicSplineFunction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/CubicSplineFunction.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- CubicSplineFunction.java	25 Jun 2003 01:29:18 -0000	1.1
  +++ CubicSplineFunction.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -64,7 +64,7 @@
    * polynominal coefficents are used.
    * Arguments outside of the domain cause an IllegalArgumentException.
    * 
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    *
    */
   public class CubicSplineFunction implements UnivariateRealFunction {
  
  
  
  1.2       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealFunction.java
  
  Index: UnivariateRealFunction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealFunction.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- UnivariateRealFunction.java	24 Jun 2003 03:01:40 -0000	1.1
  +++ UnivariateRealFunction.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -62,7 +62,7 @@
    * that derivatives are evaluated after the value, the evaluation algorithm
    * should throw an InvalidStateException if it can't cope with this.
    *  
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    */
   public interface UnivariateRealFunction {
   
  
  
  
  1.3       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/BrentSolver.java
  
  Index: BrentSolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/BrentSolver.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- BrentSolver.java	5 Jul 2003 18:05:02 -0000	1.2
  +++ BrentSolver.java	9 Jul 2003 20:02:43 -0000	1.3
  @@ -61,7 +61,7 @@
    * It will only search for one zero in the given interval.
    * The function is supposed to be continuous but not necessarily smooth.
    *  
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    */
   public class BrentSolver extends UnivariateRealSolverImpl {
       /**
  
  
  
  1.2       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateFunction.java
  
  Index: UnivariateFunction.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateFunction.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- UnivariateFunction.java	22 Jun 2003 03:57:53 -0000	1.1
  +++ UnivariateFunction.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -54,7 +54,7 @@
   package org.apache.commons.math.analysis;
   
   /**
  - * @author Brent Worden
  + * @version $Revision$ $Date$
    */
   public interface UnivariateFunction {
       // TODO: More documentation
  
  
  
  1.3       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealSolverImpl.java
  
  Index: UnivariateRealSolverImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealSolverImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UnivariateRealSolverImpl.java	5 Jul 2003 18:05:02 -0000	1.2
  +++ UnivariateRealSolverImpl.java	9 Jul 2003 20:02:43 -0000	1.3
  @@ -60,7 +60,7 @@
    * Provide a default implementation for several functions useful to generic
    * solvers.
    *  
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    */
   public abstract class UnivariateRealSolverImpl
       implements UnivariateRealSolver {
  
  
  
  1.2       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/ConvergenceException.java
  
  Index: ConvergenceException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/ConvergenceException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- ConvergenceException.java	22 Jun 2003 03:57:53 -0000	1.1
  +++ ConvergenceException.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -57,7 +57,7 @@
    * Error thrown when a numerical computation can not be performed because the
    * numerical result failed to converge to a finite value.
    * 
  - * @author Brent Worden
  + * @version $Revision$ $Date$
    */
   public class ConvergenceException extends RuntimeException {
       /**
  
  
  
  1.2       +2 -4      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealSolverFactory.java
  
  Index: UnivariateRealSolverFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealSolverFactory.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- UnivariateRealSolverFactory.java	24 Jun 2003 03:01:40 -0000	1.1
  +++ UnivariateRealSolverFactory.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -59,16 +59,14 @@
   import org.apache.commons.math.MathException;
   
   /**
  - * @author pietsch at apache.org
  - *
    * A factory to easily get a default solver and some convenience
    * functions.
    * Because solvers are easily reusable, the factory does not
    * store configuration data and creates preconfigured solvers
    * (this may be controversial, because the configuration data
    * may also be used for the default solver used by the static
  - * solve() method).
  - * 
  + * solve() method). 
  + * @version $Revision$ $Date$
    */
   public class UnivariateRealSolverFactory {
       protected UnivariateRealSolverFactory() {
  
  
  
  1.3       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealSolver.java
  
  Index: UnivariateRealSolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/UnivariateRealSolver.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- UnivariateRealSolver.java	5 Jul 2003 18:05:02 -0000	1.2
  +++ UnivariateRealSolver.java	9 Jul 2003 20:02:43 -0000	1.3
  @@ -60,7 +60,7 @@
    * functions.
    * An implementation will only search for one zero in the given interval.
    *  
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    */
   public interface UnivariateRealSolver {
   
  
  
  
  1.2       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/BisectionSolver.java
  
  Index: BisectionSolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/BisectionSolver.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BisectionSolver.java	5 Jul 2003 18:05:02 -0000	1.1
  +++ BisectionSolver.java	9 Jul 2003 20:02:43 -0000	1.2
  @@ -60,7 +60,7 @@
    * functions.  It will only search for one zero in the given interval.  The
    * function is supposed to be continuous but not necessarily smooth.
    *  
  - * @author Brent Worden
  + * @version $Revision$ $Date$
    */
   public class BisectionSolver extends UnivariateRealSolverImpl {
       /**
  
  
  
  1.3       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/SecantSolver.java
  
  Index: SecantSolver.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/analysis/SecantSolver.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- SecantSolver.java	5 Jul 2003 18:05:02 -0000	1.2
  +++ SecantSolver.java	9 Jul 2003 20:02:43 -0000	1.3
  @@ -63,7 +63,7 @@
    * It will only search for one zero in the given interval.
    * The function is supposed to be continuous but not necessarily smooth.
    *  
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    */
   public class SecantSolver extends UnivariateRealSolverImpl {
       /**
  
  
  
  1.4       +1 -2      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/MathConfigurationException.java
  
  Index: MathConfigurationException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/MathConfigurationException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MathConfigurationException.java	27 Jun 2003 04:29:42 -0000	1.3
  +++ MathConfigurationException.java	9 Jul 2003 20:02:44 -0000	1.4
  @@ -56,8 +56,7 @@
   /**
    * Signals a configuration problem with any of the factory methods.
    * 
  - * @author pietsch at apache.org
  - *
  + * @version $Revision$ $Date$
    */
   public class MathConfigurationException extends MathException {
   
  
  
  
  1.4       +1 -1      jakarta-commons-sandbox/math/src/java/org/apache/commons/math/MathException.java
  
  Index: MathException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/math/src/java/org/apache/commons/math/MathException.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- MathException.java	27 Jun 2003 04:29:42 -0000	1.3
  +++ MathException.java	9 Jul 2003 20:02:44 -0000	1.4
  @@ -56,7 +56,7 @@
   /**
    * A generic exception indicating problems in the math package.
    *  
  - * @author pietsch at apache.org
  + * @version $Revision$ $Date$
    */
   public class MathException extends Exception {
   
  
  
  

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