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:
parent
102473af94
commit
5ec76b26fa
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue