Test of min method, of class SparseVector.
()
| 235 | * Test of min method, of class SparseVector. |
| 236 | */ |
| 237 | @Test |
| 238 | public void testMin() |
| 239 | { |
| 240 | System.out.println("min"); |
| 241 | assertEquals(0.0, x.min(), 1e-15); |
| 242 | |
| 243 | y.set(15, -5.0); |
| 244 | assertEquals(-5.0, y.min(), 1e-15); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Test of max method, of class SparseVector. |