DEADSOFTWARE

Mirror gpcp-32255
[gpcp-linux.git] / libs / java / VecR64.java
4 /** This is the runtime support for generic vectors.
5 *
6 * Written August 2004, John Gough.
7 *
8 *
9 *
10 */
12 package CP.CPJvec;
14 public class VecR64 extends VecBase
15 {
16 public double[] elms;
18 public void expand() {
19 double[] tmp = new double[this.elms.length * 2];
20 for (int i = 0; i < this.tide; i++) {
21 tmp[i] = this.elms[i];
22 }
23 this.elms = tmp;
24 }
25 }