Changeset 15367 for trunk/sources/HeuristicLab.Optimization/3.3/Algorithms
- Timestamp:
- 09/18/17 12:18:47 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Optimization/3.3/Algorithms/BasicAlgorithm.cs ΒΆ
r15302 r15367 84 84 } 85 85 catch (AggregateException ae) { 86 OnExceptionOccurred(ae.InnerExceptions.SingleOrDefault() ?? ae);86 ae.FlattenAndHandle(new[] { typeof(OperationCanceledException) }, e => OnExceptionOccurred(e)); 87 87 } 88 88 catch (Exception e) {
Note: See TracChangeset
for help on using the changeset viewer.