Changeset 15317 for stable/HeuristicLab.Optimization
- Timestamp:
- 08/09/17 18:39:58 (7 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 15302
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Optimization merged: 15302
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Optimization/3.3/Algorithms/BasicAlgorithm.cs
r15292 r15317 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.