Removed call to double[][] solve(double[][]) from interface DecompositionSolver.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1166516 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-09-08 03:24:28 +00:00
parent 102473af94
commit 5ec76b26fa
1 changed files with 0 additions and 3 deletions

View File

@ -98,9 +98,6 @@ public class SingularValueSolverTest {
// using RealMatrix
Assert.assertEquals(0, solver.solve(b).subtract(xRef).getNorm(), normTolerance);
// using double[][]
Assert.assertEquals(0, MatrixUtils.createRealMatrix(solver.solve(b.getData())).subtract(xRef).getNorm(), normTolerance);
// using ArrayRealVector
for (int i = 0; i < b.getColumnDimension(); ++i) {
Assert.assertEquals(0,