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:
parent
b53fa38639
commit
6f72f0544f
|
@ -343,8 +343,8 @@ public class SymmLQ
|
||||||
private boolean bIsNull;
|
private boolean bIsNull;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
MACH_PREC = Math.ulp(1.);
|
MACH_PREC = FastMath.ulp(1.);
|
||||||
CBRT_MACH_PREC = Math.cbrt(MACH_PREC);
|
CBRT_MACH_PREC = FastMath.cbrt(MACH_PREC);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue