Home
last modified time | relevance | path

Searched refs:EXP_FRAC_TABLE_A (Results 1 – 1 of 1) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java65 private static final double EXP_FRAC_TABLE_A[] = new double[1025]; field in FastMath
231 for (i = 0; i < EXP_FRAC_TABLE_A.length; i++) {
233 EXP_FRAC_TABLE_A[i] = tmp[0];
773 final double fracPartA = EXP_FRAC_TABLE_A[intFrac]; in exp()
869 double tempA = EXP_FRAC_TABLE_A[intFrac] - 1.0; in expm1()