Author: celestin
Date: Thu Sep 8 03:23:19 2011
New Revision: 1166513
URL: http://svn.apache.org/viewvc?rev=1166513&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/EigenSolverTest.java
Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenSolverTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenSolverTest.java?rev=1166513&r1=1166512&r2=1166513&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenSolverTest.java
(original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math/linear/EigenSolverTest.java
Thu Sep 8 03:23:19 2011
@@ -120,10 +120,6 @@ public class EigenSolverTest {
RealMatrix solution=es.solve(b);
Assert.assertEquals(0, solution.subtract(xRef).getNorm(), 2.5e-12);
- // using double[][]
- solution = MatrixUtils.createRealMatrix(es.solve(b.getData()));
- Assert.assertEquals(0, solution.subtract(xRef).getNorm(), 2.5e-12);
-
// using RealVector
for (int i = 0; i < b.getColumnDimension(); ++i) {
Assert.assertEquals(0,
|