Author: celestin
Date: Mon Sep 19 08:31:01 2011
New Revision: 1172510
URL: http://svn.apache.org/viewvc?rev=1172510&view=rev
Log:
Suppressed lines which were only commented out.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java?rev=1172510&r1=1172509&r2=1172510&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java
Mon Sep 19 08:31:01 2011
@@ -47,18 +47,6 @@ public interface FieldDecompositionSolve
* @throws SingularMatrixException
* if the decomposed matrix is singular.
*/
- //T[] solve(final T[] b);
-
- /** Solve the linear equation A × X = B for matrices A.
- * <p>The A matrix is implicit, it is provided by the underlying
- * decomposition algorithm.</p>
- * @param b right-hand side of the equation A × X = B
- * @return a vector X that minimizes the two norm of A × X - B
- * @throws org.apache.commons.math.exception.DimensionMismatchException
- * if the matrices dimensions do not match.
- * @throws SingularMatrixException
- * if the decomposed matrix is singular.
- */
FieldVector<T> solve(final FieldVector<T> b);
/** Solve the linear equation A × X = B for matrices A.