Changeset 17555
- Timestamp:
- 05/25/20 15:43:46 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression/3.4/SymbolicRegressionSolution.cs
r17553 r17555 99 99 100 100 public IntervalCollection ModelBoundsCollection { 101 get => (IntervalCollection)this[ModelBoundsResultName].Value; 101 get { 102 if (!ContainsKey(ModelBoundsResultName)) return null; 103 return (IntervalCollection)this[ModelBoundsResultName].Value; 104 } 102 105 private set { 103 if (ContainsKey(ModelBoundsResultName)) 106 if (ContainsKey(ModelBoundsResultName)) { 104 107 this[ModelBoundsResultName].Value = value; 108 } else { 109 Add(new Result(ModelBoundsResultName, "Results concerning the derivation of symbolic regression solution", value)); 110 } 111 105 112 } 106 113 }
Note: See TracChangeset
for help on using the changeset viewer.