- Timestamp:
- 03/14/19 09:55:43 (6 years ago)
- Location:
- branches/2994-AutoDiffForIntervals
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveBoundedMeanSquaredErrorEvaluator.cs
r16565 r16686 70 70 boundedMse = OnlineBoundedMeanSquaredErrorCalculator.Calculate(targetValues, boundedEstimatedValues, lowestClassValue, upmostClassValue, out errorState); 71 71 } 72 if (errorState != OnlineCalculatorError.None) return Double.NaN;72 if (errorState != OnlineCalculatorError.None) return double.NaN; 73 73 return boundedMse; 74 74 } -
branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification/3.4/SingleObjective/SymbolicClassificationSingleObjectiveMeanSquaredErrorEvaluator.cs
r16565 r16686 68 68 mse = OnlineMeanSquaredErrorCalculator.Calculate(targetValues, boundedEstimatedValues, out errorState); 69 69 } 70 if (errorState != OnlineCalculatorError.None) return Double.NaN;70 if (errorState != OnlineCalculatorError.None) return double.NaN; 71 71 return mse; 72 72 } -
branches/2994-AutoDiffForIntervals/HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis/3.4/SingleObjective/SymbolicTimeSeriesPrognosisSingleObjectiveMeanSquaredErrorEvaluator.cs
r16565 r16686 83 83 } 84 84 85 if (errorState != OnlineCalculatorError.None) return Double.NaN;85 if (errorState != OnlineCalculatorError.None) return double.NaN; 86 86 else return mse; 87 87 }
Note: See TracChangeset
for help on using the changeset viewer.