Changeset 16886
- Timestamp:
- 05/02/19 12:49:03 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Parser/IntervalConstraint.cs
r16881 r16886 29 29 public class IntervalConstraint : NamedItem { 30 30 private string expression; 31 [Storable] 31 32 public string Expression { 32 33 get => expression; … … 38 39 } 39 40 } 40 41 41 private string definition; 42 [Storable] 42 43 public string Definition { 43 44 get => definition; … … 49 50 } 50 51 } 52 [Storable] 51 53 public Interval Interval { get; set; } 52 54 private bool inclusiveLowerBound; 55 [Storable] 53 56 public bool InclusiveLowerBound { 54 57 get => inclusiveLowerBound; … … 60 63 } 61 64 } 65 [Storable] 62 66 public bool InclusiveUpperBound { get; set; } 67 [Storable] 63 68 public bool IsDerivation { get; set; } 64 69 65 70 private string variable; 71 [Storable] 66 72 public string Variable { 67 73 get => variable; … … 75 81 76 82 public int numberOfDerivation; 83 [Storable] 77 84 public int NumberOfDerivation { 78 85 get => numberOfDerivation; … … 86 93 87 94 private bool enabled; 95 [Storable] 88 96 public bool Enabled { 89 97 get => enabled; … … 95 103 } 96 104 } 105 106 [StorableConstructor] 107 protected IntervalConstraint(StorableConstructorFlag _) : base(_) { } 97 108 98 109 public IntervalConstraint(string expression, string definition, Interval interval, bool inclusiveLowerBound,
Note: See TracChangeset
for help on using the changeset viewer.