Changeset 11972 for branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GeneticProgramming/StandardGP.cs
- Timestamp:
- 02/09/15 09:48:30 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Problems.GrammaticalOptimization/HeuristicLab.Algorithms.GeneticProgramming/StandardGP.cs
r11895 r11972 29 29 // default parameter values 30 30 PopulationSize = 1000; 31 TournamentGroupSize = 7;31 TournamentGroupSize = 4; 32 32 MutationRate = 0.15; 33 33 MaxSolutionSize = 100; … … 65 65 66 66 ga.Problem = hlProblem; 67 //ga.Problem.SolutionCreatorParameter.ActualValue = new FullTreeCreator(); 67 68 var mutator = (MultiSymbolicExpressionTreeManipulator)ga.MutatorParameter.ValidValues.Single(op => op.Name == "MultiSymbolicExpressionTreeManipulator"); 68 69 foreach (var op in mutator.Operators) {
Note: See TracChangeset
for help on using the changeset viewer.