Changeset 15700 for branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Evolutionary
- Timestamp:
- 01/31/18 18:14:33 (7 years ago)
- Location:
- branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Evolutionary
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Evolutionary/EvolutionStrategy.cs
r15574 r15700 118 118 119 119 Context.NormalRand = new NormalDistributedRandom(Context.Random, 0, 1); 120 Context.Problem = Problem; 121 Context.BestQuality = double.NaN; 120 Context.Problem = Problem; 122 121 Context.BestSolution = null; 123 122 … … 149 148 150 149 protected override void Run(CancellationToken cancellationToken) { 150 base.Run(cancellationToken); 151 151 var lastUpdate = ExecutionTime; 152 152 var eq = new IntegerVectorEqualityComparer(); -
branches/1614_GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment.Algorithms/3.3/Evolutionary/OSGA.cs
r15574 r15700 92 92 93 93 Context.Problem = Problem; 94 Context.BestQuality = double.NaN;95 94 Context.BestSolution = null; 96 95 … … 122 121 123 122 protected override void Run(CancellationToken cancellationToken) { 123 base.Run(cancellationToken); 124 124 var lastUpdate = ExecutionTime; 125 125
Note: See TracChangeset
for help on using the changeset viewer.