Changeset 15032 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/PushInterpreterPool.cs
- Timestamp:
- 06/12/17 14:11:43 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Interpreter/PushInterpreterPool.cs
r15017 r15032 14 14 15 15 public PushInterpreterPool(IReadOnlyPushConfiguration config = null) 16 : this(Environment.ProcessorCount * 2, 1024, null, config) {16 : this(Environment.ProcessorCount * 4, 1024, null, config) { 17 17 } 18 18 … … 34 34 var interpreter = pool.Allocate(); 35 35 interpreter.Random = random ?? new MersenneTwister(); 36 interpreter.Reset(); 36 37 37 38 return interpreter;
Note: See TracChangeset
for help on using the changeset viewer.