Changeset 16904 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression
- Timestamp:
- 05/07/19 12:09:34 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SymbolicRegressionSolution.cs
r16851 r16904 98 98 } 99 99 100 public NamedIntervalsIntervalEvaluationCollection {101 get { return ( NamedIntervals)this[IntervalEvaluationResultName].Value; }100 public IntervalCollection IntervalEvaluationCollection { 101 get { return (IntervalCollection)this[IntervalEvaluationResultName].Value; } 102 102 private set { this[IntervalEvaluationResultName].Value = value; } 103 103 } … … 127 127 estimationLimitResults.Add(new Result(TestNaNEvaluationsResultName, "", new IntValue())); 128 128 Add(new Result(EstimationLimitsResultsResultName, "Results concerning the estimation limits of symbolic regression solution", estimationLimitResults)); 129 Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new NamedIntervals()));129 Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new IntervalCollection())); 130 130 RecalculateResults(); 131 131 } … … 147 147 estimationLimitResults.Add(new Result(TestNaNEvaluationsResultName, "", new IntValue())); 148 148 Add(new Result(EstimationLimitsResultsResultName, "Results concerning the estimation limits of symbolic regression solution", estimationLimitResults)); 149 Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new NamedIntervals()));149 Add(new Result(IntervalEvaluationResultName, "Results concerning the derivation of symbolic regression solution", new IntervalCollection())); 150 150 CalculateResults(); 151 151 } … … 174 174 } 175 175 176 private static NamedIntervalsCalculateModelIntervals(ISymbolicRegressionSolution solution) {177 var intervalEvaluation = new NamedIntervals();176 private static IntervalCollection CalculateModelIntervals(ISymbolicRegressionSolution solution) { 177 var intervalEvaluation = new IntervalCollection(); 178 178 var interpreter = new IntervalInterpreter(); 179 179 var problemData = solution.ProblemData;
Note: See TracChangeset
for help on using the changeset viewer.