- Timestamp:
- 02/08/19 14:11:07 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Parser/IntervalConstraint.cs
r16592 r16596 15 15 public string Variable { get; set; } 16 16 public int NumberOfDerivation { get; set; } 17 18 public IntervalConstraint() { } 19 20 public IntervalConstraint(string expression, string definition, Interval interval, bool inclusiveLowerBound, bool inclusiveUpperBound, bool isDerivation, string variable, int numberOfDerivation) { 21 Expression = expression; 22 Definition = definition; 23 Interval = interval; 24 InclusiveLowerBound = inclusiveLowerBound; 25 InclusiveUpperBound = inclusiveUpperBound; 26 IsDerivation = isDerivation; 27 Variable = variable; 28 NumberOfDerivation = numberOfDerivation; 29 } 17 30 } 18 31 }
Note: See TracChangeset
for help on using the changeset viewer.