Test of zeroOut method, of class SparseMatrix.
()
| 1053 | * Test of zeroOut method, of class SparseMatrix. |
| 1054 | */ |
| 1055 | @Test |
| 1056 | public void testZeroOut() |
| 1057 | { |
| 1058 | System.out.println("zeroOut"); |
| 1059 | A.zeroOut(); |
| 1060 | assertEquals(0, A.nnz()); |
| 1061 | for(int i = 0; i < A.rows(); i++) |
| 1062 | for(int j = 0; j < A.cols(); j++) |
| 1063 | assertEquals(0.0, A.get(i, j), 1e-20); |
| 1064 | } |
| 1065 | |
| 1066 | /** |
| 1067 | * Test of clone method, of class SparseMatrix. |