Javadoc.
This commit is contained in:
parent
ef4596df33
commit
096cc553b6
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue