Author: erans
Date: Sun Sep 11 01:30:11 2011
New Revision: 1167660
URL: http://svn.apache.org/viewvc?rev=1167660&view=rev
Log:
MATH-650
Setting "INIT_TABLES" to "false" (in order to use preset tables), as was the
case prior to revision 1167657.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java?rev=1167660&r1=1167659&r2=1167660&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/FastMath.java
Sun Sep 11 01:30:11 2011
@@ -77,7 +77,7 @@ public class FastMath {
private static final int EXP_INT_TABLE_MAX_INDEX = 750;
private static final int EXP_INT_TABLE_LEN = EXP_INT_TABLE_MAX_INDEX * 2;
- private static final boolean INIT_TABLES = true;
+ private static final boolean INIT_TABLES = false;
// Enclose large data table in nested static class so it's only loaded on
first access
private static class ExpIntTable {