base.CommonConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jstat Show documentation
Show all versions of jstat Show documentation
Java Library for Statistical Analysis.
The newest version!
package base;
public final class CommonConstants {
public static double getTol(){return CommonConstants.tol;}
public static void setTol(double tol){CommonConstants.tol = tol;}
protected static double tol = 1.0e-8;
private CommonConstants(){}
}