Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/04/18 00:36:40 (6 years ago)
Author:
abeham
Message:

#1614: Added CPLEX algorithms

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/IteratedLS.cs

    r15572 r15574  
    101101      Results.Add(new Result("BestSolution", Context.BestSolution));
    102102
    103       Context.RunOperator(Analyzer, Context.Scope, token);
     103      try {
     104        Context.RunOperator(Analyzer, token);
     105      } catch (OperationCanceledException) { }
    104106    }
    105107
     
    141143
    142144        try {
    143           Context.RunOperator(Analyzer, Context.Scope, cancellationToken);
     145          Context.RunOperator(Analyzer, cancellationToken);
    144146        } catch (OperationCanceledException) { }
    145147
Note: See TracChangeset for help on using the changeset viewer.