Changeset 14733 for branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Creator
- Timestamp:
- 03/08/17 11:57:42 (8 years ago)
- Location:
- branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Creator
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Creator/IPushProgramCreator.cs
r14727 r14733 13 13 public interface IPushProgramCreator : ISolutionCreator 14 14 { 15 PushProgram CreateProgram(IRandom random, IReadonlyPush GpConfiguration config);15 PushProgram CreateProgram(IRandom random, IReadonlyPushConfiguration config); 16 16 } 17 17 } -
branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Creator/PointsBasedPushProgramCreator.cs
r14727 r14733 23 23 } 24 24 25 public PushProgram CreateProgram(IRandom random, IReadonlyPush GpConfiguration config) {25 public PushProgram CreateProgram(IRandom random, IReadonlyPushConfiguration config) { 26 26 return CodeGenerator.RandomProgram(10, random, config); 27 27 }
Note: See TracChangeset
for help on using the changeset viewer.