@Test public void genericTests() {
doTests(Indexz.createProgression(10, 4, 2));
doTests(Indexz.createLength(0));
doTests(Indexz.createRandomPermutation(20));
ComputedIndex ci=new ComputedIndex(4) {
@Override
public int get(int i) {
return length-1-i;
}
};