Changeset 16917
- Timestamp:
- 05/08/19 10:01:30 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Interval/IntervalConstraint.cs
r16900 r16917 59 59 60 60 private string target; 61 62 61 [Storable] 63 62 public string Target { … … 117 116 118 117 private bool inclusiveUpperBound; 119 120 118 [Storable] 121 119 public bool InclusiveUpperBound { … … 170 168 this.InclusiveLowerBound = original.InclusiveLowerBound; 171 169 this.InclusiveUpperBound = original.InclusiveUpperBound; 172 this. enabled = original.enabled;170 this.Enabled = original.Enabled; 173 171 } 174 172 … … 200 198 Variable, 201 199 (InclusiveLowerBound) ? "[" : "]", 202 Interval .LowerBound,203 Interval .UpperBound,200 Interval?.LowerBound, 201 Interval?.UpperBound, 204 202 (InclusiveUpperBound) ? "]" : "["); 205 203 Expression = expression; … … 210 208 Target, 211 209 (InclusiveLowerBound) ? "[" : "]", 212 Interval .LowerBound,213 Interval .UpperBound,210 Interval?.LowerBound, 211 Interval?.UpperBound, 214 212 (InclusiveUpperBound) ? "]" : "[", 215 213 GetDerivationString(numberOfDerivation));
Note: See TracChangeset
for help on using the changeset viewer.