Removed call to double[][] solve(double[][]) from interface DecompositionSolver.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1166515 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
0eac3c014c
commit
102473af94
|
@ -124,9 +124,6 @@ public class QRSolverTest {
|
|||
// using RealMatrix
|
||||
Assert.assertEquals(0, solver.solve(b).subtract(xRef).getNorm(), 2.0e-16 * xRef.getNorm());
|
||||
|
||||
// using double[][]
|
||||
Assert.assertEquals(0, MatrixUtils.createRealMatrix(solver.solve(b.getData())).subtract(xRef).getNorm(), 2.0e-16 * xRef.getNorm());
|
||||
|
||||
// using ArrayRealVector
|
||||
for (int i = 0; i < b.getColumnDimension(); ++i) {
|
||||
final RealVector x = solver.solve(b.getColumnVector(i));
|
||||
|
|
Loading…
Reference in New Issue