Changeset 10955
- Timestamp:
- 06/05/14 11:59:22 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisSingleObjectivePruningAnalyzer.cs
r10470 r10955 148 148 if (end > count) end = count; 149 149 150 if (PopulationSlice.Start > 1 || PopulationSlice.End > 1) throw new ArgumentOutOfRangeException("The slice bounds should be expressed as unit percentages."); 150 151 if (start >= end) throw new ArgumentOutOfRangeException("Invalid PopulationSlice bounds."); 151 152 return new IntRange(start, end);
Note: See TracChangeset
for help on using the changeset viewer.