Changeset 15310 for branches/dataset-ids-2695/HeuristicLab.Optimization
- Timestamp:
- 08/07/17 10:34:08 (7 years ago)
- Location:
- branches/dataset-ids-2695
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dataset-ids-2695
- Property svn:mergeinfo changed
/trunk/sources (added) merged: 15299-15302
- Property svn:mergeinfo changed
-
branches/dataset-ids-2695/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimization (added) merged: 15302
- Property svn:mergeinfo changed
-
branches/dataset-ids-2695/HeuristicLab.Optimization/3.3/Algorithms/BasicAlgorithm.cs
r15287 r15310 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.