removed a compilation warning about unused variable
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@915816 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b97285ee1b
commit
8a687cc604
|
@ -122,7 +122,7 @@ public class EigenSolverTest extends TestCase {
|
|||
|
||||
// using RealMatrix
|
||||
RealMatrix solution=es.solve(b);
|
||||
assertEquals(0, es.solve(b).subtract(xRef).getNorm(), 2.5e-12);
|
||||
assertEquals(0, solution.subtract(xRef).getNorm(), 2.5e-12);
|
||||
|
||||
// using double[]
|
||||
for (int i = 0; i < b.getColumnDimension(); ++i) {
|
||||
|
|
Loading…
Reference in New Issue