TODO about memory usage

This commit is contained in:
Tom Morris 2013-02-03 15:56:54 -05:00
parent 0da4214f88
commit 1033ce973e

View File

@ -77,6 +77,7 @@ abstract public class NumericBinIndex {
_min = Double.POSITIVE_INFINITY;
_max = Double.NEGATIVE_INFINITY;
// TODO: An array of doubles would be more memmory efficient - double[] allValues
List<Double> allValues = new ArrayList<Double>();
iterate(project, rowEvaluable, allValues);