- Timestamp:
- 11/29/12 11:18:04 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Evaluators/SymbolicDataAnalysisEvaluator.cs
r8838 r8974 145 145 double lowerEstimationLimit, double upperEstimationLimit, 146 146 IOnlineCalculator calculator, int maxRows) { 147 if (cache == null || cache. GetLength(0)< maxRows) {147 if (cache == null || cache.Length < maxRows) { 148 148 cache = new double[maxRows]; 149 149 } 150 150 151 151 // calculate linear scaling 152 // the static methods of the calculator are not used because the evaluated values should be cached for performance reasons153 152 int i = 0; 154 153 var linearScalingCalculator = new OnlineLinearScalingParameterCalculator();
Note: See TracChangeset
for help on using the changeset viewer.