Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/01/18 23:52:39 (6 years ago)
Author:
abeham
Message:

#1614:

  • Fixed some bugs
  • Added OSGA
  • Updated ES (added recombination)
  • Reusing operators among algorihtms (RelocateEquipmentManipluator)
  • Rewrote DiscreteLocationCrossover
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LAHC/pLAHC.cs

    r15563 r15564  
    187187            result.Value = Context.BestSolution;
    188188          else Results.Add(new Result("BestSolution", Context.BestSolution));
    189           Context.RunOperator(Analyzer, Context.Scope, cancellationToken);
     189
     190          try {
     191            Context.RunOperator(Analyzer, Context.Scope, cancellationToken);
     192          } catch (OperationCanceledException) { }
    190193
    191194          if (cancellationToken.IsCancellationRequested) break;
Note: See TracChangeset for help on using the changeset viewer.