Author: celestin
Date: Mon Sep  5 07:07:55 2011
New Revision: 1165188

URL: http://svn.apache.org/viewvc?rev=1165188&view=rev
Log:
Removed sole(double[]) from the DecompositionSolver interface (see JIRA 
MATH-653).

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=1165188&r1=1165187&r2=1165188&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
 Mon Sep  5 07:07:55 2011
@@ -45,18 +45,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 vector 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.
-     */
     RealVector solve(final RealVector b);
 
     /** Solve the linear equation A &times; X = B for matrices A.


Reply via email to