1 package math.utils; 2 3 public class MathUtils { 4 5 /** 6 * How small difference is considered to be "equal". 7 */ 8 public static final double EPSILON = 0.00000001; 9 10 }