You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2011/11/04 10:58:23 UTC

svn commit: r1197470 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolver.java

Author: sebb
Date: Fri Nov  4 09:58:23 2011
New Revision: 1197470

URL: http://svn.apache.org/viewvc?rev=1197470&view=rev
Log:
Javadoc

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolver.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolver.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolver.java?rev=1197470&r1=1197469&r2=1197470&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolver.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/IterativeLinearSolver.java Fri Nov  4 09:58:23 2011
@@ -114,7 +114,7 @@ public abstract class IterativeLinearSol
      * @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 IterativeLinearSol
      * @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 IterativeLinearSol
      * @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,