All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.util.IcedDouble Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.util;

import water.Iced;

public class IcedDouble extends Iced {
  public double _val;
  public IcedDouble(double v){_val = v;}
  @Override public boolean equals( Object o ) {
    return o instanceof IcedDouble && ((IcedDouble) o)._val == _val;
  }
  @Override public int hashCode() { return new Double(_val).hashCode(); }
  @Override public String toString() { return Double.toString(_val); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy