From 096cc553b697c47bc453496694edb599066ced74 Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Tue, 24 Dec 2019 13:12:36 +0100 Subject: [PATCH] Javadoc. --- .../apache/commons/math4/linear/IterativeLinearSolver.java | 6 +++--- .../math4/linear/PreconditionedIterativeLinearSolver.java | 6 +++--- src/main/java/org/apache/commons/math4/linear/SymmLQ.java | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/main/java/org/apache/commons/math4/linear/IterativeLinearSolver.java b/src/main/java/org/apache/commons/math4/linear/IterativeLinearSolver.java index 877d48b63..995ee5136 100644 --- a/src/main/java/org/apache/commons/math4/linear/IterativeLinearSolver.java +++ b/src/main/java/org/apache/commons/math4/linear/IterativeLinearSolver.java @@ -113,7 +113,7 @@ public abstract class IterativeLinearSolver { * inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} */ public RealVector solve(final RealLinearOperator a, final RealVector b) @@ -139,7 +139,7 @@ public abstract class IterativeLinearSolver { * dimensions inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} */ public RealVector solve(RealLinearOperator a, RealVector b, RealVector x0) @@ -164,7 +164,7 @@ public abstract class IterativeLinearSolver { * dimensions inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} */ public abstract RealVector solveInPlace(RealLinearOperator a, RealVector b, diff --git a/src/main/java/org/apache/commons/math4/linear/PreconditionedIterativeLinearSolver.java b/src/main/java/org/apache/commons/math4/linear/PreconditionedIterativeLinearSolver.java index 31f538dae..d968540a9 100644 --- a/src/main/java/org/apache/commons/math4/linear/PreconditionedIterativeLinearSolver.java +++ b/src/main/java/org/apache/commons/math4/linear/PreconditionedIterativeLinearSolver.java @@ -86,7 +86,7 @@ public abstract class PreconditionedIterativeLinearSolver * {@code x0} have dimensions inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} */ public RealVector solve(final RealLinearOperator a, @@ -167,7 +167,7 @@ public abstract class PreconditionedIterativeLinearSolver * dimensions inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} */ public RealVector solve(RealLinearOperator a, RealLinearOperator m, @@ -195,7 +195,7 @@ public abstract class PreconditionedIterativeLinearSolver * {@code x0} have dimensions inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} */ public abstract RealVector solveInPlace(RealLinearOperator a, diff --git a/src/main/java/org/apache/commons/math4/linear/SymmLQ.java b/src/main/java/org/apache/commons/math4/linear/SymmLQ.java index 7411427d6..9de08b410 100644 --- a/src/main/java/org/apache/commons/math4/linear/SymmLQ.java +++ b/src/main/java/org/apache/commons/math4/linear/SymmLQ.java @@ -954,7 +954,7 @@ public class SymmLQ * inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} * @throws NonSelfAdjointOperatorException if {@link #getCheck()} is * {@code true}, and {@code a} or {@code m} is not self-adjoint @@ -1042,7 +1042,7 @@ public class SymmLQ * inconsistent with {@code a} * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} * @throws NonSelfAdjointOperatorException if {@link #getCheck()} is * {@code true}, and {@code a} is not self-adjoint @@ -1132,7 +1132,7 @@ public class SymmLQ * have dimensions inconsistent with {@code a}. * @throws MaxCountExceededException at exhaustion of the iteration count, * unless a custom - * {@link org.apache.commons.math4.util.Incrementor.MaxCountExceededCallback callback} + * {@link org.apache.commons.math4.util.IntegerSequence.Incrementor.MaxCountExceededCallback callback} * has been set at construction of the {@link IterationManager} * @throws NonSelfAdjointOperatorException if {@link #getCheck()} is * {@code true}, and {@code a} or {@code m} is not self-adjoint