- Timestamp:
- 05/02/19 11:02:35 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Interval.cs
r16775 r16882 38 38 39 39 public Interval(double lowerBound, double upperBound) { 40 //TODO Handle floating point issues where lowerbound is bigger than upperbound in the nth decimal place 40 41 if (lowerBound > upperBound) 41 42 throw new ArgumentException("lowerBound must be smaller than or equal to upperBound.");
Note: See TracChangeset
for help on using the changeset viewer.