Test of isSparse method, of class ShiftedVec.
()
| 522 | * Test of isSparse method, of class ShiftedVec. |
| 523 | */ |
| 524 | @Test |
| 525 | public void testIsSparse() |
| 526 | { |
| 527 | System.out.println("isSparse"); |
| 528 | assertTrue(new ShiftedVec(a_base, shift_a).isSparse()); |
| 529 | assertFalse(new ShiftedVec(a_dense, shift_a).isSparse()); |
| 530 | } |
| 531 | |
| 532 | /** |
| 533 | * Test of clone method, of class ShiftedVec. |