Wrong table size

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1169466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-09-11 14:55:50 +00:00
parent c4137c5829
commit a0b1c747b5
1 changed files with 2 additions and 2 deletions

View File

@ -3160,8 +3160,8 @@ public class FastMath {
static {
if (FastMath.USE_PRECOMPUTED_TABLES) {
EXP_FRAC_TABLE_A = new double[FastMath.EXP_INT_TABLE_LEN];
EXP_FRAC_TABLE_B = new double[FastMath.EXP_INT_TABLE_LEN];
EXP_FRAC_TABLE_A = new double[FastMath.EXP_FRAC_TABLE_LEN];
EXP_FRAC_TABLE_B = new double[FastMath.EXP_FRAC_TABLE_LEN];
final double tmp[] = new double[2];
final double recip[] = new double[2];