Changeset 8639 for trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective
- Timestamp:
- 09/13/12 09:48:24 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SingleObjective/Evaluators/SymbolicRegressionSingleObjectiveEvaluator.cs
r8635 r8639 78 78 double estimated = estimatedValuesEnumerator.Current; 79 79 cache[i] = estimated; 80 linearScalingCalculator.Add(estimated, target); 80 if (!double.IsNaN(estimated) && !double.IsInfinity(estimated)) 81 linearScalingCalculator.Add(estimated, target); 81 82 i++; 82 83 }
Note: See TracChangeset
for help on using the changeset viewer.