Changeset 15700 for branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch
- Timestamp:
- 01/31/18 18:14:33 (7 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/IteratedLS.cs
r15629 r15700 80 80 81 81 Context.Problem = Problem; 82 Context.BestQuality = double.NaN;83 82 Context.BestSolution = null; 84 83 … … 108 107 109 108 protected override void Run(CancellationToken cancellationToken) { 109 base.Run(cancellationToken); 110 110 var lastUpdate = ExecutionTime; 111 111 -
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/LocalSearch/MultistartLS.cs
r15574 r15700 66 66 67 67 Context.Problem = Problem; 68 Context.BestQuality = double.NaN;69 68 Context.BestSolution = null; 70 69 } 71 70 72 71 protected override void Run(CancellationToken cancellationToken) { 72 base.Run(cancellationToken); 73 73 var lastUpdate = ExecutionTime; 74 74
Note: See TracChangeset
for help on using the changeset viewer.