Changeset 15302 for trunk/sources/HeuristicLab.Optimization/3.3/Algorithms
- Timestamp:
- 08/02/17 09:52:46 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Optimization/3.3/Algorithms/BasicAlgorithm.cs
r15287 r15302 57 57 : base(original, cloner) { 58 58 results = cloner.Clone(original.Results); 59 initialized = original.initialized; 59 60 } 60 61 protected BasicAlgorithm() … … 79 80 try { 80 81 Run((object)cancellationTokenSource.Token); 81 } catch (OperationCanceledException) { 82 } catch (AggregateException ae) { 82 } 83 catch (OperationCanceledException) { 84 } 85 catch (AggregateException ae) { 83 86 OnExceptionOccurred(ae.InnerExceptions.SingleOrDefault() ?? ae); 84 } catch (Exception e) { 87 } 88 catch (Exception e) { 85 89 OnExceptionOccurred(e); 86 90 }
Note: See TracChangeset
for help on using the changeset viewer.