123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // This file is generated from PrimVector.template. DO NOT EDIT!
- // Copyright (c) 2001, 2002, 2015 Per M.A. Bothner and Brainfood Inc.
- // This is free software; for terms and warranty disclaimer see ./COPYING.
- package gnu.lists;
- import java.io.*;
- /** Simple adjustable-length vector of 64-bit doubles. */
- public class F64Vector extends SimpleVector<Double>
- implements Comparable, GVector<Double>
- {
- double[] data;
- protected static double[] empty = new double[0];
- public F64Vector() {
- data = empty;
- }
- public F64Vector(int size, double value) {
- double[] array = new double[size];
- data = array;
- if (value != 0) {
- while (--size >= 0)
- array[size] = value;
- }
- }
- public F64Vector(int size) {
- this(new double[size]);
- }
- /** Reuses the argument without making a copy. */
- public F64Vector(double[] data) {
- this.data = data;
- }
- /** Makes a copy of (part of) the argument array. */
- public F64Vector(double[] values, int offset, int length) {
- this(length);
- System.arraycopy(values, offset, data, 0, length);
- }
- /** Get the allocated length of the data buffer. */
- public int getBufferLength() {
- return data.length;
- }
- public void copyBuffer(int length) {
- int oldLength = data.length;
- if (length == -1)
- length = oldLength;
- if (oldLength != length) {
- double[] tmp = new double[length];
- System.arraycopy(data, 0, tmp, 0,
- oldLength < length ? oldLength : length);
- data = tmp;
- }
- }
- public double[] getBuffer() { return data; }
- protected void setBuffer(Object buffer) { data = (double[]) buffer; }
- public final double getDouble(int index) {
- return data[effectiveIndex(index)];
- }
- public final double getDoubleRaw(int index) {
- return data[index];
- }
- public final Double get(int index) {
- return Double.valueOf(data[effectiveIndex(index)]);
- }
- public final Double getRaw(int index) {
- return Double.valueOf(data[index]);
- }
- public final void setDouble(int index, double value) {
- checkCanWrite(); // FIXME maybe inline and fold into following
- data[effectiveIndex(index)] = value;
- }
- public final void setDoubleRaw(int index, double value) {
- data[index] = value;
- }
- @Override
- public final void setRaw(int index, Double value) {
- data[index] = value.doubleValue();
- }
- public void add(double v) {
- int sz = size();
- addSpace(sz, 1);
- setDouble(sz, v);
- }
- protected void clearBuffer(int start, int count) {
- double[] d = data;
- while (--count >= 0)
- d[start++] = 0;
- }
- @Override
- protected F64Vector newInstance(int newLength) {
- return new F64Vector(newLength < 0 ? data : new double[newLength]);
- }
- public static F64Vector castOrNull(Object obj) {
- if (obj instanceof double[])
- return new F64Vector((double[]) obj);
- if (obj instanceof F64Vector)
- return (F64Vector) obj;
- return null;
- }
- public static F64Vector cast(Object value) {
- F64Vector vec = castOrNull(value);
- if (vec == null) {
- String msg;
- if (value == null)
- msg = "cannot convert null to F64Vector";
- else
- msg = "cannot convert a "+value.getClass().getName()+" to F64Vector";
- throw new ClassCastException(msg);
- }
- return vec;
- }
- public int getElementKind() { return DOUBLE_VALUE; }
- public String getTag() { return "f64"; }
- public void consumePosRange(int iposStart, int iposEnd, Consumer out) {
- if (out.ignoring())
- return;
- int i = nextIndex(iposStart);
- int end = nextIndex(iposEnd);
- for (; i < end; i++)
- out.writeDouble(getDouble(i));
- }
- public int compareTo(Object obj) {
- F64Vector vec2 = (F64Vector) obj;
- double[] arr1 = data;
- double[] arr2 = vec2.data;
- int n1 = size();
- int n2 = vec2.size();
- int n = n1 > n2 ? n2 : n1;
- for (int i = 0; i < n; i++) {
- double v1 = arr1[effectiveIndex(i)];
- double v2 = arr2[effectiveIndex(i)];
- if (v1 != v2)
- return v1 > v2 ? 1 : -1;
- }
- return n1 - n2;
- }
- }
|