Changeset 15289 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/ObjectPools/Random
- Timestamp:
- 07/26/17 19:34:13 (7 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP
-
Property
svn:ignore
set to
*.user
-
Property
svn:ignore
set to
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/ObjectPools/Random/SeededRandomPool.cs
r15273 r15289 12 12 public SeededRandomPool() : this(new Random().Next()) { } 13 13 14 public SeededRandomPool(int seed) : this(seed, () => new MersenneTwister()) { }14 public SeededRandomPool(int seed) : this(seed, () => new FastRandom()) { } 15 15 16 16 public SeededRandomPool(int seed, Func<IRandom> randomCreator) {
Note: See TracChangeset
for help on using the changeset viewer.