git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1197470 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-11-04 09:58:23 +00:00
parent b6040640af
commit aa27c5dc08
1 changed files with 3 additions and 3 deletions

View File

@ -114,7 +114,7 @@ public abstract class IterativeLinearSolver {
* @throws DimensionMismatchException if {@code b} has dimensions
* inconsistent with {@code a}.
* @throws MaxCountExceededException at exhaustion of the iteration count,
* unless a custom {@link MaxCountExceededCallback callback} has been set at
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
* construction.
*/
public RealVector solve(RealLinearOperator a, RealVector b)
@ -139,7 +139,7 @@ public abstract class IterativeLinearSolver {
* @throws DimensionMismatchException if {@code b} or {@code x0} have
* dimensions inconsistent with {@code a}.
* @throws MaxCountExceededException at exhaustion of the iteration count,
* unless a custom {@link MaxCountExceededCallback callback} has been set at
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
* construction.
*/
public RealVector solve(RealLinearOperator a, RealVector b, RealVector x0)
@ -163,7 +163,7 @@ public abstract class IterativeLinearSolver {
* @throws DimensionMismatchException if {@code b} or {@code x0} have
* dimensions inconsistent with {@code a}.
* @throws MaxCountExceededException at exhaustion of the iteration count,
* unless a custom {@link MaxCountExceededCallback callback} has been set at
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
* construction.
*/
public abstract RealVector solveInPlace(RealLinearOperator a, RealVector b,