1 package JSci; 2 3 /** 4 * The GlobalSettings class controls numeric behaviour. 5 * @version 1.0 6 * @author Mark Hale 7 */ 8 public final class GlobalSettings extends Object { 9 /** 10 * Zero tolerance. 11 * Note, in most cases, setting this to a non-zero value 12 * will break the transitivity of <code>equals()</code>. 13 */ 14 public static double ZERO_TOL=0.0; 15 private GlobalSettings() {} 16 } 17 18