- Timestamp:
- 02/28/19 17:19:18 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Interval.cs
r16628 r16633 37 37 public Interval(double lowerBound, double upperBound) { 38 38 if (lowerBound > upperBound) 39 throw new ArgumentException(" LowerBound must be smaller than UpperBound.");39 throw new ArgumentException("lowerBound must be smaller than or equal to upperBound."); 40 40 41 41 this.LowerBound = lowerBound;
Note: See TracChangeset
for help on using the changeset viewer.