Changeset 15574 for branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch
- Timestamp:
- 01/04/18 00:36:40 (7 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/IteratedLS.cs
r15572 r15574 101 101 Results.Add(new Result("BestSolution", Context.BestSolution)); 102 102 103 Context.RunOperator(Analyzer, Context.Scope, token); 103 try { 104 Context.RunOperator(Analyzer, token); 105 } catch (OperationCanceledException) { } 104 106 } 105 107 … … 141 143 142 144 try { 143 Context.RunOperator(Analyzer, Context.Scope,cancellationToken);145 Context.RunOperator(Analyzer, cancellationToken); 144 146 } catch (OperationCanceledException) { } 145 147 -
branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/MultistartLS.cs
r15572 r15574 108 108 109 109 try { 110 Context.RunOperator(Analyzer, Context.Scope,cancellationToken);110 Context.RunOperator(Analyzer, cancellationToken); 111 111 } catch (OperationCanceledException) { } 112 112
Note: See TracChangeset
for help on using the changeset viewer.