Author: celestin
Date: Fri Sep  9 02:09:44 2011
New Revision: 1166960

URL: http://svn.apache.org/viewvc?rev=1166960&view=rev
Log:
Removed double[][] solve(double[][]) from interface DecompositionSolver.

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

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/DecompositionSolver.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/DecompositionSolver.java?rev=1166960&r1=1166959&r2=1166960&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/DecompositionSolver.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/DecompositionSolver.java
 Fri Sep  9 02:09:44 2011
@@ -57,18 +57,6 @@ public interface DecompositionSolver {
      * @throws SingularMatrixException
      * if the decomposed matrix is singular.
      */
-    double[][] solve(final double[][] 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 &times; X = B
-     * @return a matrix X that minimizes the two norm of A &times; X - B
-     * @throws org.apache.commons.math.exception.DimensionMismatchException
-     * if the matrices dimensions do not match.
-     * @throws SingularMatrixException
-     * if the decomposed matrix is singular.
-     */
     RealMatrix solve(final RealMatrix b);
 
     /**


Reply via email to