fixed keywords used in @version tags to match checkstyle-enforced rule

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@613570 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-01-20 15:03:24 +00:00
parent 376834acf1
commit 90400c773c
73 changed files with 77 additions and 71 deletions

View File

@ -18,7 +18,7 @@ package org.apache.commons.math;
/** /**
* Error thrown when two dimensions differ. * Error thrown when two dimensions differ.
* @version $Revision:$ $Date$ * @version $Revision$ $Date$
*/ */
public class DimensionMismatchException extends MathException { public class DimensionMismatchException extends MathException {

View File

@ -18,7 +18,7 @@ package org.apache.commons.math;
/** /**
* Exeption thrown when a sample contains several entries at the same abscissa. * Exeption thrown when a sample contains several entries at the same abscissa.
* @version $Revision:$ * @version $Revision$ $Date$
*/ */
public class DuplicateSampleAbscissaException extends MathException { public class DuplicateSampleAbscissaException extends MathException {

View File

@ -20,7 +20,7 @@ package org.apache.commons.math;
import java.util.ListResourceBundle; import java.util.ListResourceBundle;
/** French localization message resources for the commons-math library. /** French localization message resources for the commons-math library.
* @version $Revision:$ * @version $Revision$ $Date$
*/ */
public class MessagesResources_fr public class MessagesResources_fr
extends ListResourceBundle { extends ListResourceBundle {

View File

@ -35,7 +35,7 @@ package org.apache.commons.math.distribution;
* </ul> * </ul>
* </p> * </p>
* *
* @version $Revision:$ * @version $Revision$ $Date$
* @since 1.2 * @since 1.2
*/ */
public interface PascalDistribution extends IntegerDistribution { public interface PascalDistribution extends IntegerDistribution {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.util.MathUtils;
/** /**
* The default implementation of {@link PascalDistribution}. * The default implementation of {@link PascalDistribution}.
* @version $Revision:$ * @version $Revision$ $Date$
* @since 1.2 * @since 1.2
*/ */
public class PascalDistributionImpl extends AbstractIntegerDistribution public class PascalDistributionImpl extends AbstractIntegerDistribution

View File

@ -32,7 +32,7 @@ package org.apache.commons.math.distribution;
* </p> * </p>
* *
* @since 1.1 * @since 1.1
* @version $Revision: 1.12 $ $Date: 2004-06-23 11:26:18 -0500 (Wed, 23 Jun 2004) $ * @version $Revision$ $Date$
*/ */
public interface WeibullDistribution extends ContinuousDistribution { public interface WeibullDistribution extends ContinuousDistribution {

View File

@ -24,7 +24,7 @@ import java.io.Serializable;
* {@link org.apache.commons.math.distribution.WeibullDistribution}. * {@link org.apache.commons.math.distribution.WeibullDistribution}.
* *
* @since 1.1 * @since 1.1
* @version $Revision: 1.13 $ $Date: 2004-07-24 16:41:37 -0500 (Sat, 24 Jul 2004) $ * @version $Revision$ $Date$
*/ */
public class WeibullDistributionImpl extends AbstractContinuousDistribution public class WeibullDistributionImpl extends AbstractContinuousDistribution
implements WeibullDistribution, Serializable { implements WeibullDistribution, Serializable {

View File

@ -27,7 +27,7 @@ import java.io.Serializable;
* solvers should adjust the value of unbounds parameters until they * solvers should adjust the value of unbounds parameters until they
* satisfy convergence criterions specific to each solver.</p> * satisfy convergence criterions specific to each solver.</p>
* *
* @version $Id: EstimatedParameter.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
/** /**
* This class represents exceptions thrown by the estimation solvers. * This class represents exceptions thrown by the estimation solvers.
* *
* @version $Id: EstimationException.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -38,7 +38,7 @@ package org.apache.commons.math.estimation;
* @see Estimator * @see Estimator
* @see WeightedMeasurement * @see WeightedMeasurement
* *
* @version $Id: EstimationProblem.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -30,7 +30,7 @@ package org.apache.commons.math.estimation;
* *
* @see EstimationProblem * @see EstimationProblem
* *
* @version $Id: Estimator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -30,7 +30,7 @@ import org.apache.commons.math.linear.RealMatrixImpl;
* squares criterion on the measurement residuals. It uses a * squares criterion on the measurement residuals. It uses a
* Gauss-Newton algorithm.</p> * Gauss-Newton algorithm.</p>
* *
* @version $Id: GaussNewtonEstimator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -92,6 +92,9 @@ import java.util.Arrays;
* @author Burton S. Garbow (original fortran) * @author Burton S. Garbow (original fortran)
* @author Kenneth E. Hillstrom (original fortran) * @author Kenneth E. Hillstrom (original fortran)
* @author Jorge J. More (original fortran) * @author Jorge J. More (original fortran)
* @version $Revision$ $Date$
*/ */
public class LevenbergMarquardtEstimator extends AbstractEstimator implements Serializable { public class LevenbergMarquardtEstimator extends AbstractEstimator implements Serializable {

View File

@ -34,6 +34,9 @@ import java.util.Iterator;
* {@link WeightedMeasurement WeightedMeasurement} for each measurement * {@link WeightedMeasurement WeightedMeasurement} for each measurement
* type. The instances of the internal classes would have access to the * type. The instances of the internal classes would have access to the
* various parameters and their current estimate.</p> * various parameters and their current estimate.</p>
* @version $Revision$ $Date$
*/ */
public class SimpleEstimationProblem implements EstimationProblem { public class SimpleEstimationProblem implements EstimationProblem {

View File

@ -44,7 +44,7 @@ import java.io.Serializable;
* *
* @see EstimationProblem * @see EstimationProblem
* *
* @version $Id: WeightedMeasurement.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
/** This class represents exceptions thrown while extractiong Cardan /** This class represents exceptions thrown while extractiong Cardan
* or Euler angles from a rotation. * or Euler angles from a rotation.
* @version $Id: CardanEulerSingularityException.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
/** This class represents exceptions thrown while building rotations /** This class represents exceptions thrown while building rotations
* from matrices. * from matrices.
* @version $Id: NotARotationMatrixException.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -80,7 +80,7 @@ import java.io.Serializable;
* <p>Rotations are guaranteed to be immutable objects.</p> * <p>Rotations are guaranteed to be immutable objects.</p>
* @version $Id: Rotation.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* @see Vector3D * @see Vector3D
* @see RotationOrder * @see RotationOrder

View File

@ -26,7 +26,7 @@ package org.apache.commons.math.geometry;
* the {@link Rotation#Rotation(RotationOrder,double,double,double)} * the {@link Rotation#Rotation(RotationOrder,double,double,double)}
* constructor or the {@link Rotation#getAngles} method. * constructor or the {@link Rotation#getAngles} method.
* @version $Id: RotationOrder.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */
public final class RotationOrder { public final class RotationOrder {

View File

@ -21,7 +21,7 @@ import java.io.Serializable;
/** This class implements vectors in a three-dimensional space. /** This class implements vectors in a three-dimensional space.
* <p>Instance of this class are guaranteed to be immutable.</p> * <p>Instance of this class are guaranteed to be immutable.</p>
* @version $Id: Vector3D.java 1716 2006-12-13 22:56:35Z luc $ * @version $Revision$ $Date$
*/ */
public class Vector3D public class Vector3D

View File

@ -33,7 +33,7 @@ import java.io.IOException;
* @see SecondOrderIntegrator * @see SecondOrderIntegrator
* @see StepHandler * @see StepHandler
* *
* @version $Id: AbstractStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -41,7 +41,7 @@ package org.apache.commons.math.ode;
* otherwise the step is rejected and a new attempt is made with a new * otherwise the step is rejected and a new attempt is made with a new
* stepsize.</p> * stepsize.</p>
* @version $Id: AdaptiveStepsizeIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -39,7 +39,7 @@ package org.apache.commons.math.ode;
* @see MidpointIntegrator * @see MidpointIntegrator
* @see ThreeEighthesIntegrator * @see ThreeEighthesIntegrator
* @version $Id: ClassicalRungeKuttaIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -39,7 +39,7 @@ package org.apache.commons.math.ode;
* @see ClassicalRungeKuttaIntegrator * @see ClassicalRungeKuttaIntegrator
* @version $Id: ClassicalRungeKuttaStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -75,7 +75,7 @@ import java.io.Serializable;
* @see StepHandler * @see StepHandler
* @see StepInterpolator * @see StepInterpolator
* @version $Id: ContinuousOutputModel.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.MathException;
* This exception is made available to users to report * This exception is made available to users to report
* the error conditions that are trigegred while computing * the error conditions that are trigegred while computing
* the differential equations. * the differential equations.
* @version $Id: DerivativeException.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */
public class DerivativeException public class DerivativeException
extends MathException { extends MathException {

View File

@ -39,7 +39,7 @@ package org.apache.commons.math.ode;
* volume 6, no 1, 1980, pp. 19-26 * volume 6, no 1, 1980, pp. 19-26
* </pre></p> * </pre></p>
* @version $Id: DormandPrince54Integrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -23,7 +23,7 @@ package org.apache.commons.math.ode;
* *
* @see DormandPrince54Integrator * @see DormandPrince54Integrator
* *
* @version $Id: DormandPrince54StepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -47,7 +47,7 @@ package org.apache.commons.math.ode;
* <i>Solving Ordinary Differential Equations</i> (Springer-Verlag, * <i>Solving Ordinary Differential Equations</i> (Springer-Verlag,
* ISBN 3-540-56670-8).</p> * ISBN 3-540-56670-8).</p>
* @version $Id: DormandPrince853Integrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -27,7 +27,7 @@ import java.io.IOException;
* *
* @see DormandPrince853Integrator * @see DormandPrince853Integrator
* *
* @version $Id: DormandPrince853StepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -33,7 +33,7 @@ import java.io.Serializable;
* @see StepHandler * @see StepHandler
* @version $Id: DummyStepHandler.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -31,7 +31,7 @@ import java.io.IOException;
* *
* @see StepHandler * @see StepHandler
* *
* @version $Id: DummyStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -50,7 +50,7 @@ package org.apache.commons.math.ode;
* evaluation is saved. For an <i>fsal</i> method, we have cs = 1 and * evaluation is saved. For an <i>fsal</i> method, we have cs = 1 and
* asi = bi for all i.</p> * asi = bi for all i.</p>
* @version $Id: EmbeddedRungeKuttaIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -42,7 +42,7 @@ package org.apache.commons.math.ode;
* @see GillIntegrator * @see GillIntegrator
* @see ThreeEighthesIntegrator * @see ThreeEighthesIntegrator
* @version $Id: EulerIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -33,7 +33,7 @@ package org.apache.commons.math.ode;
* @see EulerIntegrator * @see EulerIntegrator
* @version $Id: EulerStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -50,7 +50,7 @@ package org.apache.commons.math.ode;
* @see FirstOrderDifferentialEquations * @see FirstOrderDifferentialEquations
* @see SecondOrderDifferentialEquations * @see SecondOrderDifferentialEquations
* @version $Id: FirstOrderConverter.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -40,7 +40,7 @@ package org.apache.commons.math.ode;
* @see FirstOrderConverter * @see FirstOrderConverter
* @see SecondOrderDifferentialEquations * @see SecondOrderDifferentialEquations
* *
* @version $Id: FirstOrderDifferentialEquations.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -29,7 +29,7 @@ package org.apache.commons.math.ode;
* @see StepHandler * @see StepHandler
* @see SwitchingFunction * @see SwitchingFunction
* @version $Id: FirstOrderIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -33,7 +33,7 @@ package org.apache.commons.math.ode;
* @see StepHandler * @see StepHandler
* @see StepNormalizer * @see StepNormalizer
* @version $Id: FixedStepHandler.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -38,7 +38,7 @@ package org.apache.commons.math.ode;
* @see MidpointIntegrator * @see MidpointIntegrator
* @see ThreeEighthesIntegrator * @see ThreeEighthesIntegrator
* @version $Id: GillIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -38,7 +38,7 @@ package org.apache.commons.math.ode;
* @see GillIntegrator * @see GillIntegrator
* @version $Id: GillStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -80,7 +80,7 @@ package org.apache.commons.math.ode;
* </table> * </table>
* @author E. Hairer and G. Wanner (fortran version) * @author E. Hairer and G. Wanner (fortran version)
* @version $Id: GraggBulirschStoerIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -67,7 +67,7 @@ import java.io.IOException;
* @see GraggBulirschStoerIntegrator * @see GraggBulirschStoerIntegrator
* @version $Id: GraggBulirschStoerStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* @author E. Hairer and G. Wanner (fortran version) * @author E. Hairer and G. Wanner (fortran version)
*/ */

View File

@ -27,7 +27,7 @@ package org.apache.commons.math.ode;
* (and automatic step initialization) and continuous output. This * (and automatic step initialization) and continuous output. This
* method uses 7 functions evaluations per step.</p> * method uses 7 functions evaluations per step.</p>
* @version $Id: HighamHall54Integrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -23,7 +23,7 @@ package org.apache.commons.math.ode;
* *
* @see HighamHall54Integrator * @see HighamHall54Integrator
* *
* @version $Id: HighamHall54StepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.MathException;
/** /**
* This exception is made available to users to report * This exception is made available to users to report
* the error conditions that are triggered during integration * the error conditions that are triggered during integration
* @version $Id: IntegratorException.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */
public class IntegratorException public class IntegratorException
extends MathException { extends MathException {

View File

@ -35,7 +35,7 @@ package org.apache.commons.math.ode;
* @see ClassicalRungeKuttaIntegrator * @see ClassicalRungeKuttaIntegrator
* @see GillIntegrator * @see GillIntegrator
* @version $Id: MidpointIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -35,7 +35,7 @@ package org.apache.commons.math.ode;
* @see MidpointIntegrator * @see MidpointIntegrator
* @version $Id: MidpointStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -39,7 +39,7 @@ package org.apache.commons.math.ode;
* @see GillIntegrator * @see GillIntegrator
* @see MidpointIntegrator * @see MidpointIntegrator
* @version $Id: RungeKuttaIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -27,7 +27,7 @@ import java.io.IOException;
* @see RungeKuttaIntegrator * @see RungeKuttaIntegrator
* @see EmbeddedRungeKuttaIntegrator * @see EmbeddedRungeKuttaIntegrator
* *
* @version $Id: RungeKuttaStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -41,7 +41,7 @@ package org.apache.commons.math.ode;
* @see FirstOrderConverter * @see FirstOrderConverter
* @see FirstOrderDifferentialEquations * @see FirstOrderDifferentialEquations
* @version $Id: SecondOrderDifferentialEquations.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -27,7 +27,7 @@ package org.apache.commons.math.ode;
* @see SecondOrderDifferentialEquations * @see SecondOrderDifferentialEquations
* @version $Id: SecondOrderIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -34,7 +34,7 @@ package org.apache.commons.math.ode;
* @see SecondOrderIntegrator * @see SecondOrderIntegrator
* @see StepInterpolator * @see StepInterpolator
* @version $Id: StepHandler.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -33,7 +33,7 @@ import java.io.Externalizable;
* @see SecondOrderIntegrator * @see SecondOrderIntegrator
* @see StepHandler * @see StepHandler
* *
* @version $Id: StepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -42,7 +42,7 @@ package org.apache.commons.math.ode;
* @see StepHandler * @see StepHandler
* @see FixedStepHandler * @see FixedStepHandler
* @version $Id: StepNormalizer.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -36,7 +36,7 @@ import org.apache.commons.math.analysis.UnivariateRealSolver;
* step (and hence the step should be reduced to ensure the event * step (and hence the step should be reduced to ensure the event
* occurs at a bound rather than inside the step).</p> * occurs at a bound rather than inside the step).</p>
* *
* @version $Id: SwitchState.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */
class SwitchState implements Serializable { class SwitchState implements Serializable {

View File

@ -44,7 +44,7 @@ import org.apache.commons.math.FunctionEvaluationException;
* error (this feature is available on all integrators, including * error (this feature is available on all integrators, including
* fixed step ones).</p> * fixed step ones).</p>
* *
* @version $Id: SwitchingFunction.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -28,7 +28,7 @@ import java.util.Iterator;
* *
* @see SwitchingFunction * @see SwitchingFunction
* *
* @version $Id: SwitchingFunctionsHandler.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* *
*/ */

View File

@ -38,7 +38,7 @@ package org.apache.commons.math.ode;
* @see GillIntegrator * @see GillIntegrator
* @see MidpointIntegrator * @see MidpointIntegrator
* @version $Id: ThreeEighthesIntegrator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -40,7 +40,7 @@ package org.apache.commons.math.ode;
* @see ThreeEighthesIntegrator * @see ThreeEighthesIntegrator
* @version $Id: ThreeEighthesStepInterpolator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -25,7 +25,7 @@ package org.apache.commons.math.optimization;
* to allow the optimization algorithm to stop its search according to * to allow the optimization algorithm to stop its search according to
* the problem at hand.</p> * the problem at hand.</p>
* @version $Id: ConvergenceChecker.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -21,7 +21,7 @@ import org.apache.commons.math.MathException;
/** This class represents exceptions thrown by cost functions. /** This class represents exceptions thrown by cost functions.
* @version $Id: CostException.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -18,7 +18,7 @@
package org.apache.commons.math.optimization; package org.apache.commons.math.optimization;
/** This interface represents a cost function to be minimized. /** This interface represents a cost function to be minimized.
* @version $Id: CostFunction.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */
public interface CostFunction { public interface CostFunction {

View File

@ -69,7 +69,7 @@ import org.apache.commons.math.stat.descriptive.moment.VectorialMean;
* performed by the derived classes according to the implemented * performed by the derived classes according to the implemented
* algorithms.</p> * algorithms.</p>
* @version $Id: DirectSearchOptimizer.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* @see CostFunction * @see CostFunction
* @see NelderMead * @see NelderMead
* @see MultiDirectional * @see MultiDirectional

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.optimization;
/** This class implements the multi-directional direct search method. /** This class implements the multi-directional direct search method.
* @version $Id: MultiDirectional.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* @see NelderMead * @see NelderMead
*/ */
public class MultiDirectional public class MultiDirectional

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.optimization;
/** This class implements the Nelder-Mead direct search method. /** This class implements the Nelder-Mead direct search method.
* @version $Id: NelderMead.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
* @see MultiDirectional * @see MultiDirectional
*/ */
public class NelderMead public class NelderMead

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.optimization;
/** This class holds a point and its associated cost. /** This class holds a point and its associated cost.
* <p>This is a simple immutable container.</p> * <p>This is a simple immutable container.</p>
* @version $Id: PointCostPair.java 1709 2006-12-03 21:16:50Z luc $ * @version $Revision$ $Date$
* @see CostFunction * @see CostFunction
*/ */
public class PointCostPair { public class PointCostPair {

View File

@ -19,7 +19,7 @@ package org.apache.commons.math.random;
/** This interface represents a random generator for whole vectors. /** This interface represents a random generator for whole vectors.
* @version $Id: RandomVectorGenerator.java 1705 2006-09-17 19:57:39Z luc $ * @version $Revision$ $Date$
*/ */

View File

@ -24,7 +24,7 @@ import java.util.Arrays;
* components. Components of generated vectors follow (independent) Gaussian * components. Components of generated vectors follow (independent) Gaussian
* distributions, with parameters supplied in the constructor. * distributions, with parameters supplied in the constructor.
* *
* @version $Revision$ * @version $Revision$ $Date$
*/ */
public class UncorrelatedRandomVectorGenerator public class UncorrelatedRandomVectorGenerator

View File

@ -27,7 +27,7 @@ package org.apache.commons.math.stat.descriptive;
* the instance nor compute another statistic. * the instance nor compute another statistic.
* *
* @since 1.2 * @since 1.2
* @version $Revision: 602304 $ $Date: 2007-12-08 03:48:39 +0100 (sam., 08 déc. 2007) $ * @version $Revision$ $Date$
*/ */
public class SynchronizedSummaryStatistics extends SummaryStatistics { public class SynchronizedSummaryStatistics extends SummaryStatistics {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math.linear.RealMatrixImpl;
/** /**
* Returns the covariance matrix of the available vectors. * Returns the covariance matrix of the available vectors.
* @version $Revision:$ * @version $Revision$ $Date$
*/ */
public class VectorialCovariance implements Serializable { public class VectorialCovariance implements Serializable {

View File

@ -22,7 +22,7 @@ import org.apache.commons.math.DimensionMismatchException;
/** /**
* Returns the arithmetic mean of the available vectors. * Returns the arithmetic mean of the available vectors.
* @version $Revision:$ * @version $Revision$ $Date$
*/ */
public class VectorialMean implements Serializable { public class VectorialMean implements Serializable {

View File

@ -23,7 +23,7 @@ import org.apache.commons.math.MathException;
* <p>Two samples tests are used when the distribution is unknown <i>a priori</i> * <p>Two samples tests are used when the distribution is unknown <i>a priori</i>
* but provided by one sample. We compare the second sample against the first.</p> * but provided by one sample. We compare the second sample against the first.</p>
* *
* @version $Revision: 553603 $ $Date: 2007-07-05 20:34:45 +0200 (jeu, 05 jui 2007) $ * @version $Revision$ $Date$
*/ */
public interface UnknownDistributionChiSquareTest extends ChiSquareTest { public interface UnknownDistributionChiSquareTest extends ChiSquareTest {