You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ce...@apache.org on 2012/03/28 06:18:45 UTC

svn commit: r1306150 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java

Author: celestin
Date: Wed Mar 28 04:18:44 2012
New Revision: 1306150

URL: http://svn.apache.org/viewvc?rev=1306150&view=rev
Log:
Changed o.a.c.m3.linear.SymmLQ according to MATH-771 (bis).

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

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java?rev=1306150&r1=1306149&r2=1306150&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SymmLQ.java Wed Mar 28 04:18:44 2012
@@ -913,14 +913,14 @@ public class SymmLQ
      */
     @Override
     public RealVector solve(final RealLinearOperator a,
-        final RealLinearOperator minv, final RealVector b) throws
+        final RealLinearOperator m, final RealVector b) throws
         NullArgumentException, NonSquareOperatorException,
         DimensionMismatchException, MaxCountExceededException,
         NonSelfAdjointOperatorException, NonPositiveDefiniteOperatorException,
         IllConditionedOperatorException {
         MathUtils.checkNotNull(a);
         final RealVector x = new ArrayRealVector(a.getColumnDimension());
-        return solveInPlace(a, minv, b, x, false, 0.);
+        return solveInPlace(a, m, b, x, false, 0.);
     }
 
     /**