diff --git a/src/main/java/org/apache/commons/math4/fitting/WeightedObservedPoint.java b/src/main/java/org/apache/commons/math4/fitting/WeightedObservedPoint.java index a03609876..77311ee24 100644 --- a/src/main/java/org/apache/commons/math4/fitting/WeightedObservedPoint.java +++ b/src/main/java/org/apache/commons/math4/fitting/WeightedObservedPoint.java @@ -20,7 +20,7 @@ import java.io.Serializable; /** * This class is a simple container for weighted observed point in - * {@link CurveFitter curve fitting}. + * {@link AbstractCurveFitter curve fitting}. *
Instances of this class are guaranteed to be immutable.
* @since 2.0 */ diff --git a/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/PolygonsSet.java b/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/PolygonsSet.java index 696878360..7f655c7b1 100644 --- a/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/PolygonsSet.java +++ b/src/main/java/org/apache/commons/math4/geometry/euclidean/twod/PolygonsSet.java @@ -125,7 +125,7 @@ public class PolygonsSet extends AbstractRegionThis constructor does not handle polygons with a boundary * forming several disconnected paths (such as polygons with holes).
*For cases where this simple constructor applies, it is expected to - * be numerically more robust than the {@link #PolygonsSet(Collection) general + * be numerically more robust than the {@link #PolygonsSet(Collection,double) general * constructor} using {@link SubHyperplane subhyperplanes}.
*If the list is empty, the region will represent the whole * space.
@@ -186,7 +186,7 @@ public class PolygonsSet extends AbstractRegionThis constructor does not handle polygons with a boundary * forming several disconnected paths (such as polygons with holes).
*For cases where this simple constructor applies, it is expected to - * be numerically more robust than the {@link #PolygonsSet(Collection) general + * be numerically more robust than the {@link #PolygonsSet(Collection,double) general * constructor} using {@link SubHyperplane subhyperplanes}.
* @param hyperplaneThickness tolerance below which points are consider to * belong to the hyperplane (which is therefore more a slab) diff --git a/src/main/java/org/apache/commons/math4/linear/ArrayFieldVector.java b/src/main/java/org/apache/commons/math4/linear/ArrayFieldVector.java index 1378234c6..191b6859c 100644 --- a/src/main/java/org/apache/commons/math4/linear/ArrayFieldVector.java +++ b/src/main/java/org/apache/commons/math4/linear/ArrayFieldVector.java @@ -52,7 +52,7 @@ public class ArrayFieldVectordiff --git a/src/main/java/org/apache/commons/math4/optim/univariate/SimpleUnivariateValueChecker.java b/src/main/java/org/apache/commons/math4/optim/univariate/SimpleUnivariateValueChecker.java index 935e74b74..b37a5b3b2 100644 --- a/src/main/java/org/apache/commons/math4/optim/univariate/SimpleUnivariateValueChecker.java +++ b/src/main/java/org/apache/commons/math4/optim/univariate/SimpleUnivariateValueChecker.java @@ -22,7 +22,7 @@ import org.apache.commons.math4.util.FastMath; /** * Simple implementation of the - * {@link org.apache.commons.math4.optimization.ConvergenceChecker} interface + * {@link org.apache.commons.math4.optim.ConvergenceChecker} interface * that uses only objective function values. * * Convergence is considered to have been reached if either the relative diff --git a/src/main/java/org/apache/commons/math4/random/ValueServer.java b/src/main/java/org/apache/commons/math4/random/ValueServer.java index e3132f0a4..de9118a13 100644 --- a/src/main/java/org/apache/commons/math4/random/ValueServer.java +++ b/src/main/java/org/apache/commons/math4/random/ValueServer.java @@ -347,7 +347,7 @@ public class ValueServer { /** * Reseeds the random data generator. * - * @param seed Value with which to reseed the {@link RandomDataImpl} + * @param seed Value with which to reseed the {@link RandomDataGenerator} * used to generate random data. */ public void reSeed(long seed) {