Free cookie consent management tool by TermsFeed Policy Generator

Changeset 15317 for stable


Ignore:
Timestamp:
08/09/17 18:39:58 (7 years ago)
Author:
abeham
Message:

#2816: merged to stable

Location:
stable
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Optimization

  • stable/HeuristicLab.Optimization/3.3/Algorithms/BasicAlgorithm.cs

    r15292 r15317  
    5757      : base(original, cloner) {
    5858      results = cloner.Clone(original.Results);
     59      initialized = original.initialized;
    5960    }
    6061    protected BasicAlgorithm()
     
    7980      try {
    8081        Run((object)cancellationTokenSource.Token);
    81       } catch (OperationCanceledException) {
    82       } catch (AggregateException ae) {
     82      }
     83      catch (OperationCanceledException) {
     84      }
     85      catch (AggregateException ae) {
    8386        OnExceptionOccurred(ae.InnerExceptions.SingleOrDefault() ?? ae);
    84       } catch (Exception e) {
     87      }
     88      catch (Exception e) {
    8589        OnExceptionOccurred(e);
    8690      }
Note: See TracChangeset for help on using the changeset viewer.