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 11:02:02 UTC

svn commit: r1197474 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear: PreconditionedIterativeLinearSolver.java SymmLQ.java

Author: sebb
Date: Fri Nov  4 10:02:02 2011
New Revision: 1197474

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

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

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/PreconditionedIterativeLinearSolver.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/PreconditionedIterativeLinearSolver.java?rev=1197474&r1=1197473&r2=1197474&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/PreconditionedIterativeLinearSolver.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/PreconditionedIterativeLinearSolver.java Fri Nov  4 10:02:02 2011
@@ -71,7 +71,7 @@ public abstract class PreconditionedIter
      * @throws DimensionMismatchException if {@code m}, {@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(final RealLinearOperator a,
@@ -154,7 +154,7 @@ public abstract class PreconditionedIter
      * @throws DimensionMismatchException if {@code m} or {@code b} 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,
@@ -182,7 +182,7 @@ public abstract class PreconditionedIter
      * @throws DimensionMismatchException if {@code m}, {@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,

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SymmLQ.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SymmLQ.java?rev=1197474&r1=1197473&r2=1197474&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SymmLQ.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SymmLQ.java Fri Nov  4 10:02:02 2011
@@ -839,7 +839,7 @@ public class SymmLQ
      * definite.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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.
      */
     @Override
@@ -892,7 +892,7 @@ public class SymmLQ
      * definite.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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(final RealLinearOperator a,
@@ -929,7 +929,7 @@ public class SymmLQ
      * definite.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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.
      */
     @Override
@@ -959,7 +959,7 @@ public class SymmLQ
      * {@code true}, and {@code a} is not self-adjoint.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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.
      */
     @Override
@@ -1004,7 +1004,7 @@ public class SymmLQ
      * {@code true}, and {@code a} is not self-adjoint.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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(final RealLinearOperator a, final RealVector b,
@@ -1034,7 +1034,7 @@ public class SymmLQ
      * {@code true}, and {@code a} is not self-adjoint.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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.
      */
     @Override
@@ -1069,7 +1069,7 @@ public class SymmLQ
      * definite.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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.
      */
     @Override
@@ -1122,7 +1122,7 @@ public class SymmLQ
      * definite.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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 solveInPlace(final RealLinearOperator a,
@@ -1190,7 +1190,7 @@ public class SymmLQ
      * {@code true}, and {@code a} or {@code m} is not self-adjoint.
      * @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
      * @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.
      */
     @Override