Changeset 17703
- Timestamp:
- 07/28/20 21:10:02 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2825-NSGA3/HeuristicLab.Algorithms.NSGA3/3.3/NSGA3.cs
r17702 r17703 255 255 } 256 256 257 // todo: trigger this when the problem parameters change 257 258 private void SetParameters() 258 259 { … … 263 264 // Set mutation probability 264 265 MutationProbability.Value = 1.0 / Problem.Encoding.Length; 266 267 // todo: Set MaximumGenerations in Problem definition 265 268 } 266 269 … … 287 290 { 288 291 random = new MersenneTwister(); 292 if (!SetSeedRandomly.Value) 293 random.Reset(Seed.Value); 294 289 295 solutions = GetInitialPopulation(); 290 296 referencePoints = ReferencePoint.GenerateReferencePoints(random, NumberOfObjectives);
Note: See TracChangeset
for help on using the changeset viewer.