Changeset 15384 for stable/HeuristicLab.Algorithms.Benchmarks
- Timestamp:
- 09/28/17 08:04:05 (7 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable ¶
- Property svn:mergeinfo changed
/trunk/sources merged: 15367
- Property svn:mergeinfo changed
-
TabularUnified stable/HeuristicLab.Algorithms.Benchmarks/3.3/BenchmarkAlgorithm.cs ¶
r15292 r15384 312 312 } catch (OperationCanceledException) { 313 313 } catch (AggregateException ae) { 314 OnExceptionOccurred(ae.InnerExceptions.SingleOrDefault() ?? ae);314 ae.FlattenAndHandle(new[] { typeof(OperationCanceledException) }, e => OnExceptionOccurred(e)); 315 315 } catch (Exception e) { 316 316 OnExceptionOccurred(e);
Note: See TracChangeset
for help on using the changeset viewer.