Changeset 1074
- Timestamp:
- 12/31/08 19:48:07 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification/StandardGP.cs
r1052 r1074 97 97 private double onepointShakingFactor = 1.0; 98 98 private IOperator algorithm; 99 99 100 private SequentialEngine.SequentialEngine engine; 100 101 101 public IEngine Engine { 102 102 get { return engine; } … … 104 104 105 105 public StandardGP() { 106 PopulationSize = 100 ;106 PopulationSize = 10000; 107 107 MaxGenerations = 100; 108 108 TournamentSize = 7; … … 152 152 selector.RemoveVariable("GroupSize"); 153 153 selector.GetVariableInfo("GroupSize").ActualName = "TournamentSize"; 154 LeftReducer cleanUp = new LeftReducer(); 154 155 155 156 seq.AddSubOperator(problemInjectorPlaceholder); … … 159 160 seq.AddSubOperator(initialization); 160 161 seq.AddSubOperator(mainLoop); 162 seq.AddSubOperator(cleanUp); 161 163 162 164 initialization.AddSubOperator(treeCreator);
Note: See TracChangeset
for help on using the changeset viewer.