Removed sole(double[]) from the DecompositionSolver interface (see JIRA MATH-653).

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1165188 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-09-05 07:07:55 +00:00
parent 5cfa8ccf09
commit b919c5ed1f
1 changed files with 0 additions and 12 deletions

View File

@ -35,18 +35,6 @@ package org.apache.commons.math.linear;
*/
public interface DecompositionSolver {
/** 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.
*/
double[] solve(final double[] b);
/** Solve the linear equation A &times; X = B for matrices A.
* <p>The A matrix is implicit, it is provided by the underlying
* decomposition algorithm.</p>