Changeset 16071 for trunk/HeuristicLab.Algorithms.MOCMAEvolutionStrategy
- Timestamp:
- 08/10/18 10:15:16 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/HeuristicLab.Algorithms.MOCMAEvolutionStrategy/3.3/MOCMAEvolutionStrategy.cs
r15583 r16071 285 285 #region Initialization 286 286 protected override void Initialize(CancellationToken cancellationToken) { 287 if (SetSeedRandomly) Seed = new System.Random().Next();287 if (SetSeedRandomly) Seed = RandomSeedGenerator.GetSeed(); 288 288 random.Reset(Seed); 289 289 gauss = new NormalDistributedRandom(random, 0, 1);
Note: See TracChangeset
for help on using the changeset viewer.