Add missing svn:keywords properties.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1435539 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-01-19 13:27:24 +00:00
parent d77c3d456a
commit 08e227ad3a
39 changed files with 39 additions and 39 deletions

View File

@ -21,7 +21,7 @@ package org.apache.commons.math3.optim;
*
* @param <PAIR> Type of (point, value) pair.
*
* @version $Id: AbstractConvergenceChecker.java 1370215 2012-08-07 12:38:59Z sebb $
* @version $Id$
* @since 3.0
*/
public abstract class AbstractConvergenceChecker<PAIR>

View File

@ -40,7 +40,7 @@ package org.apache.commons.math3.optim;
* @see org.apache.commons.math3.optim.SimpleValueChecker
* @see org.apache.commons.math3.optim.SimpleVectorValueChecker
*
* @version $Id: ConvergenceChecker.java 1364392 2012-07-22 18:27:12Z tn $
* @version $Id$
* @since 3.0
*/
public interface ConvergenceChecker<PAIR> {

View File

@ -22,7 +22,7 @@ package org.apache.commons.math3.optim;
* <br/>
* Immutable class.
*
* @version $Id: InitialGuess.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.1
*/
public class InitialGuess implements OptimizationData {

View File

@ -23,7 +23,7 @@ package org.apache.commons.math3.optim;
* arguments and perform the appropriate cast in order to access the data
* they need.
*
* @version $Id: OptimizationData.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.1
*/
public interface OptimizationData {}

View File

@ -25,7 +25,7 @@ import org.apache.commons.math3.util.Pair;
*
* @see PointVectorValuePair
* @see org.apache.commons.math3.analysis.MultivariateFunction
* @version $Id: PointValuePair.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.0
*/
public class PointValuePair extends Pair<double[], Double> implements Serializable {

View File

@ -25,7 +25,7 @@ import org.apache.commons.math3.util.Pair;
*
* @see PointValuePair
* @see org.apache.commons.math3.analysis.MultivariateVectorFunction
* @version $Id: PointVectorValuePair.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.0
*/
public class PointVectorValuePair extends Pair<double[], double[]> implements Serializable {

View File

@ -25,7 +25,7 @@ import java.util.Arrays;
* <br/>
* Immutable class.
*
* @version $Id: SimpleBounds.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.1
*/
public class SimpleBounds implements OptimizationData {

View File

@ -36,7 +36,7 @@ import org.apache.commons.math3.exception.NotStrictlyPositiveException;
* @param <PAIR> Type of the (point, value) pair.
* The type of the "value" part of the pair (not used by this class).
*
* @version $Id: SimplePointChecker.java 1413127 2012-11-24 04:37:30Z psteitz $
* @version $Id$
* @since 3.0
*/
public class SimplePointChecker<PAIR extends Pair<double[], ? extends Object>>

View File

@ -33,7 +33,7 @@ import org.apache.commons.math3.exception.NotStrictlyPositiveException;
* method will also return {@code true} if the number of iterations has been set
* (see {@link #SimpleValueChecker(double,double,int) this constructor}).
*
* @version $Id: SimpleValueChecker.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.0
*/
public class SimpleValueChecker

View File

@ -33,7 +33,7 @@ import org.apache.commons.math3.exception.NotStrictlyPositiveException;
* method will also return {@code true} if the number of iterations has been set
* (see {@link #SimpleVectorValueChecker(double,double,int) this constructor}).
*
* @version $Id: SimpleVectorValueChecker.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.0
*/
public class SimpleVectorValueChecker

View File

@ -43,7 +43,7 @@ import org.apache.commons.math3.linear.ArrayRealVector;
* are the coordinates of the current point and v is the value of the constraint.
* </p>
*
* @version $Id: LinearConstraint.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class LinearConstraint implements Serializable {

View File

@ -37,7 +37,7 @@ import org.apache.commons.math3.optim.OptimizationData;
* the x<sub>i</sub> are the coordinates of the current point.
* </p>
*
* @version $Id: LinearObjectiveFunction.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class LinearObjectiveFunction

View File

@ -26,7 +26,7 @@ import org.apache.commons.math3.optim.nonlinear.scalar.MultivariateOptimizer;
/**
* Base class for implementing linear optimizers.
*
* @version $Id: AbstractLinearOptimizer.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.1
*/
public abstract class LinearOptimizer

View File

@ -22,7 +22,7 @@ import org.apache.commons.math3.exception.util.LocalizedFormats;
/**
* This class represents exceptions thrown by optimizers when no solution fulfills the constraints.
*
* @version $Id: NoFeasibleSolutionException.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class NoFeasibleSolutionException extends MathIllegalStateException {

View File

@ -19,7 +19,7 @@ package org.apache.commons.math3.optim.linear;
/**
* Types of relationships between two cells in a Solver {@link LinearConstraint}.
*
* @version $Id: Relationship.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public enum Relationship {

View File

@ -25,7 +25,7 @@ import org.apache.commons.math3.util.Precision;
/**
* Solves a linear problem using the "Two-Phase Simplex" method.
*
* @version $Id: SimplexSolver.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class SimplexSolver extends LinearOptimizer {

View File

@ -58,7 +58,7 @@ import org.apache.commons.math3.util.Precision;
* a1: Artificial variable</br>
* RHS: Right hand side</br>
* </p>
* @version $Id: SimplexTableau.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
class SimplexTableau implements Serializable {

View File

@ -22,7 +22,7 @@ import org.apache.commons.math3.exception.util.LocalizedFormats;
/**
* This class represents exceptions thrown by optimizers when a solution escapes to infinity.
*
* @version $Id: UnboundedSolutionException.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class UnboundedSolutionException extends MathIllegalStateException {

View File

@ -22,7 +22,7 @@ import org.apache.commons.math3.optim.OptimizationData;
* Goal type for an optimization problem (minimization or maximization of
* a scalar function.
*
* @version $Id: GoalType.java 1364392 2012-07-22 18:27:12Z tn $
* @version $Id$
* @since 2.0
*/
public enum GoalType implements OptimizationData {

View File

@ -48,7 +48,7 @@ import org.apache.commons.math3.linear.RealMatrix;
*
* @see MultivariateFunction
* @see MultivariateVectorFunction
* @version $Id: LeastSquaresConverter.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/

View File

@ -75,7 +75,7 @@ import org.apache.commons.math3.util.MathUtils;
*
* @see MultivariateFunctionPenaltyAdapter
*
* @version $Id: MultivariateFunctionMappingAdapter.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.0
*/
public class MultivariateFunctionMappingAdapter

View File

@ -62,7 +62,7 @@ import org.apache.commons.math3.util.MathUtils;
*
* @see MultivariateFunctionMappingAdapter
*
* @version $Id: MultivariateFunctionPenaltyAdapter.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.0
*/
public class MultivariateFunctionPenaltyAdapter

View File

@ -39,7 +39,7 @@ import org.apache.commons.math3.util.FastMath;
* It also supports optional preconditioning.
* </p>
*
* @version $Id: NonLinearConjugateGradientOptimizer.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class NonLinearConjugateGradientOptimizer

View File

@ -20,7 +20,7 @@ package org.apache.commons.math3.optim.nonlinear.scalar.gradient;
/**
* This interface represents a preconditioner for differentiable scalar
* objective function optimizers.
* @version $Id: Preconditioner.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public interface Preconditioner {

View File

@ -45,7 +45,7 @@ import org.apache.commons.math3.optim.OptimizationData;
* this class.
*
* @see SimplexOptimizer
* @version $Id: AbstractSimplex.java 1397759 2012-10-13 01:12:58Z erans $
* @version $Id$
* @since 3.0
*/
public abstract class AbstractSimplex implements OptimizationData {

View File

@ -44,7 +44,7 @@ import org.apache.commons.math3.optim.nonlinear.scalar.MultivariateOptimizer;
* derivative-based optimizer when the derivatives are approximated by
* finite differences.
*
* @version $Id: BOBYQAOptimizer.java 1413131 2012-11-24 04:44:02Z psteitz $
* @version $Id$
* @since 3.0
*/
public class BOBYQAOptimizer

View File

@ -73,7 +73,7 @@ import org.apache.commons.math3.util.MathArrays;
* <li><a href="http://en.wikipedia.org/wiki/CMA-ES">Wikipedia</a></li>
* </ul>
*
* @version $Id: CMAESOptimizer.java 1400108 2012-10-19 14:20:16Z erans $
* @version $Id$
* @since 3.0
*/
public class CMAESOptimizer

View File

@ -24,7 +24,7 @@ import org.apache.commons.math3.optim.PointValuePair;
/**
* This class implements the multi-directional direct search method.
*
* @version $Id: MultiDirectionalSimplex.java 1364392 2012-07-22 18:27:12Z tn $
* @version $Id$
* @since 3.0
*/
public class MultiDirectionalSimplex extends AbstractSimplex {

View File

@ -24,7 +24,7 @@ import org.apache.commons.math3.analysis.MultivariateFunction;
/**
* This class implements the Nelder-Mead simplex algorithm.
*
* @version $Id: NelderMeadSimplex.java 1364392 2012-07-22 18:27:12Z tn $
* @version $Id$
* @since 3.0
*/
public class NelderMeadSimplex extends AbstractSimplex {

View File

@ -47,7 +47,7 @@ import org.apache.commons.math3.optim.univariate.UnivariateObjectiveFunction;
* The internal line search optimizer is a {@link BrentOptimizer} with a
* convergence checker set to {@link SimpleUnivariateValueChecker}.
*
* @version $Id: PowellOptimizer.java 1413594 2012-11-26 13:16:39Z erans $
* @version $Id$
* @since 2.2
*/
public class PowellOptimizer

View File

@ -78,7 +78,7 @@ import org.apache.commons.math3.optim.nonlinear.scalar.MultivariateOptimizer;
* MultivariateFunctionPenaltyAdapter}.
* </p>
*
* @version $Id: SimplexOptimizer.java 1397759 2012-10-13 01:12:58Z erans $
* @version $Id$
* @since 3.0
*/
public class SimplexOptimizer extends MultivariateOptimizer {

View File

@ -25,7 +25,7 @@ import org.apache.commons.math3.optim.OptimizationData;
* <br/>
* Immutable class.
*
* @version $Id: Target.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.1
*/
public class Target implements OptimizationData {

View File

@ -26,7 +26,7 @@ import org.apache.commons.math3.linear.NonSquareMatrixException;
* <br/>
* Immutable class.
*
* @version $Id: Weight.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 3.1
*/
public class Weight implements OptimizationData {

View File

@ -39,7 +39,7 @@ import org.apache.commons.math3.optim.PointVectorValuePair;
* is faster but QR decomposition is more robust for difficult problems.
* </p>
*
* @version $Id: GaussNewtonOptimizer.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*
*/

View File

@ -101,7 +101,7 @@ import org.apache.commons.math3.util.FastMath;
* <ol></td></tr>
* </table>
*
* @version $Id: LevenbergMarquardtOptimizer.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class LevenbergMarquardtOptimizer

View File

@ -28,7 +28,7 @@ import org.apache.commons.math3.optim.nonlinear.scalar.GoalType;
* This code is based on a Python implementation (from <em>SciPy</em>,
* module {@code optimize.py} v0.5).
*
* @version $Id: BracketFinder.java 1413186 2012-11-24 13:47:59Z erans $
* @version $Id$
* @since 2.2
*/
public class BracketFinder {

View File

@ -38,7 +38,7 @@ import org.apache.commons.math3.optim.nonlinear.scalar.GoalType;
* <li>to ensure that the best point encountered is the one returned.</li>
* </ul>
*
* @version $Id: BrentOptimizer.java 1416643 2012-12-03 19:37:14Z tn $
* @version $Id$
* @since 2.0
*/
public class BrentOptimizer extends UnivariateOptimizer {

View File

@ -35,7 +35,7 @@ import org.apache.commons.math3.optim.AbstractConvergenceChecker;
* has been set (see {@link #SimpleUnivariateValueChecker(double,double,int)
* this constructor}).
*
* @version $Id: SimpleUnivariateValueChecker.java 1413171 2012-11-24 11:11:10Z erans $
* @version $Id$
* @since 3.1
*/
public class SimpleUnivariateValueChecker

View File

@ -24,7 +24,7 @@ import java.io.Serializable;
* point.
* This is a simple immutable container.
*
* @version $Id: UnivariatePointValuePair.java 1364392 2012-07-22 18:27:12Z tn $
* @version $Id$
* @since 3.0
*/
public class UnivariatePointValuePair implements Serializable {