/** This is the runtime support for generic vectors. * * Written August 2004, John Gough. * * * */ package CP.CPJvec; public class VecI64 extends VecBase { public long[] elms; public void expand() { long[] tmp = new long[this.elms.length * 2]; for (int i = 0; i < this.tide; i++) { tmp[i] = this.elms[i]; } this.elms = tmp; } }