Changed o.a.c.m3.linear.SymmLQ according to MATH-771 (bis).

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1306150 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2012-03-28 04:18:44 +00:00
parent c23d010ce1
commit 731daf82cf

View File

@ -913,14 +913,14 @@ public class SymmLQ
*/ */
@Override @Override
public RealVector solve(final RealLinearOperator a, public RealVector solve(final RealLinearOperator a,
final RealLinearOperator minv, final RealVector b) throws final RealLinearOperator m, final RealVector b) throws
NullArgumentException, NonSquareOperatorException, NullArgumentException, NonSquareOperatorException,
DimensionMismatchException, MaxCountExceededException, DimensionMismatchException, MaxCountExceededException,
NonSelfAdjointOperatorException, NonPositiveDefiniteOperatorException, NonSelfAdjointOperatorException, NonPositiveDefiniteOperatorException,
IllConditionedOperatorException { IllConditionedOperatorException {
MathUtils.checkNotNull(a); MathUtils.checkNotNull(a);
final RealVector x = new ArrayRealVector(a.getColumnDimension()); final RealVector x = new ArrayRealVector(a.getColumnDimension());
return solveInPlace(a, minv, b, x, false, 0.); return solveInPlace(a, m, b, x, false, 0.);
} }
/** /**