long[] test32 = { 40, 44, 45, 34, 35, 33, 38, 36 };
long[] test3 = { 0, 2, 13, 15, 11, 7, 6, 1 };
long[] test25 = { 42, 24, 26, 27, 10, 8, 30, 43 };
//
ArrayList npixList = new ArrayList();
npixList = pt.neighbours_nest(nside, ipix);
for (int i = 0; i < npixList.size(); i++) {
assertEquals("ip = " + ((Long) npixList.get( i)).longValue(),
test25[ i], ((Long) npixList.get( i)).longValue(), 1e-10);
}
ipix = 17;