Author: celestin
Date: Thu Sep  8 03:23:44 2011
New Revision: 1166514

URL: http://svn.apache.org/viewvc?rev=1166514&view=rev
Log:
Removed call to double[][] solve(double[][]) from interface DecompositionSolver.

Modified:
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/LUSolverTest.java

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/LUSolverTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/LUSolverTest.java?rev=1166514&r1=1166513&r2=1166514&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/LUSolverTest.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/LUSolverTest.java
 Thu Sep  8 03:23:44 2011
@@ -137,9 +137,6 @@ public class LUSolverTest {
         // using RealMatrix
         Assert.assertEquals(0, solver.solve(b).subtract(xRef).getNorm(), 
1.0e-13);
 
-        // using double[][]
-        Assert.assertEquals(0, 
MatrixUtils.createRealMatrix(solver.solve(b.getData())).subtract(xRef).getNorm(),
 1.0e-13);
-
         // using ArrayRealVector
         for (int i = 0; i < b.getColumnDimension(); ++i) {
             Assert.assertEquals(0,


Reply via email to