@Test
public void testGetIntInt()
{
// create matrix;
ByteBuffer bb = ByteBuffer.allocateDirect(10*Double.SIZE);
IDoubleArray a = new ForeignBufferDoubleArray(bb, 5, 5);
// set values
for(int i = 0; i < 5; i++)
for(int j = 0; j < 5; j++) {
a.set(i, j, i+j);
}
// compare values
for(int i = 0; i < 5; i++)
for(int j = 0; j < 5; j++) {
double d = a.get(i, j);
Assert.assertEquals(i+j, d, 0);
}
}