Changeset 4202 for branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Evaluators/SymbolicRegressionPearsonsRSquaredEvaluator.cs
- Timestamp:
- 08/11/10 18:39:49 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/Evaluators/SymbolicRegressionPearsonsRSquaredEvaluator.cs
r4195 r4202 54 54 double original = originalEnumerator.Current; 55 55 if (double.IsNaN(estimated)) 56 estimated = upperEstimationLimit;56 return 0.0; 57 57 else 58 58 estimated = Math.Min(upperEstimationLimit, Math.Max(lowerEstimationLimit, estimated));
Note: See TracChangeset
for help on using the changeset viewer.