Changeset 16880 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation
- Timestamp:
- 05/02/19 08:36:49 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Parser/IntervalConstraint.cs
r16830 r16880 38 38 } 39 39 } 40 public string Definition { get; set; } 40 41 private string definition; 42 43 public string Definition { 44 get => definition; 45 set { 46 if (value != definition) { 47 definition = value; 48 OnChanged(EventArgs.Empty); 49 } 50 } 51 } 41 52 public Interval Interval { get; set; } 42 53 private bool inclusiveLowerBound;
Note: See TracChangeset
for help on using the changeset viewer.