Suppressed lines which were only commented out.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1172510 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-09-19 08:31:01 +00:00
parent 0b279a4e3a
commit 8162c7428b
1 changed files with 0 additions and 12 deletions

View File

@ -37,18 +37,6 @@ import org.apache.commons.math.FieldElement;
*/
public interface FieldDecompositionSolver<T extends FieldElement<T>> {
/** 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>
* @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.
*/
//T[] solve(final T[] 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>