Test of set method, of class VecWithNorm.
()
| 81 | * Test of set method, of class VecWithNorm. |
| 82 | */ |
| 83 | @Test |
| 84 | public void testSet() |
| 85 | { |
| 86 | System.out.println("set"); |
| 87 | int index = 16; |
| 88 | double val = Math.PI; |
| 89 | x.set(index, val); |
| 90 | xNrmd.set(index, val); |
| 91 | |
| 92 | assertEquals(x.pNorm(2), xNrmd.pNorm(2), 1e-6); |
| 93 | } |
| 94 | |
| 95 | /** |
| 96 | * Test of clone method, of class VecWithNorm. |