Removed call to double[][] solve(double[][]) from interface DecompositionSolver.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1166512 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aeb0f8329e
commit
a2f25ddb6e
|
@ -81,9 +81,6 @@ public class CholeskySolverTest {
|
|||
// 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,
|
||||
|
|
Loading…
Reference in New Issue