Replaced Math with FastMath.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1303649 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2012-03-22 03:51:05 +00:00
parent b53fa38639
commit 6f72f0544f
1 changed files with 2 additions and 2 deletions

View File

@ -343,8 +343,8 @@ public class SymmLQ
private boolean bIsNull;
static {
MACH_PREC = Math.ulp(1.);
CBRT_MACH_PREC = Math.cbrt(MACH_PREC);
MACH_PREC = FastMath.ulp(1.);
CBRT_MACH_PREC = FastMath.cbrt(MACH_PREC);
}
/**