package com.lgc.wsh.util;
/** Constants required by a test. See the JTK for the full class. */
public class MathPlus {
  /** The smallest float value e such that (1+e) does not equal 1. */
  public static final float FLT_EPSILON = 1.19209290e-07f;

  /** The smallest double value e such that (1+e) does not equal 1. */
  public static final double DBL_EPSILON = 2.2204460492503131e-16d;
}

