Changeset 15700 for branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/RandomSearch
- Timestamp:
- 01/31/18 18:14:33 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/RandomSearch/RandomSearch.cs
r15698 r15700 54 54 } 55 55 public RandomSearch() { 56 57 56 Problem = new GQAP(); 58 57 } … … 66 65 67 66 Context.Problem = Problem; 68 Context.BestQuality = double.NaN;69 67 Context.BestSolution = null; 70 68 } 71 69 72 70 protected override void Run(CancellationToken cancellationToken) { 71 base.Run(cancellationToken); 73 72 var lastUpdate = ExecutionTime; 74 73
Note: See TracChangeset
for help on using the changeset viewer.