Changeset 1202
- Timestamp:
- 02/04/09 23:01:52 (16 years ago)
- Location:
- branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification/OffSpringSelectionGpEditor.cs
r1201 r1202 98 98 executeButton.Enabled = false; 99 99 abortButton.Enabled = true; 100 resetButton.Enabled = false; 100 101 OffspringSelectionGP.Engine.Execute(); 101 102 } -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification/OffspringSelectionGP.cs
r1201 r1202 56 56 set { 57 57 populationSize.Data = value; 58 parents.Data = value * 2;59 58 } 60 59 } … … 130 129 public OffspringSelectionGP() { 131 130 PopulationSize = 1000; 131 parents.Data = 20; 132 132 MaxGenerations = 100; 133 133 MutationRate = 0.15; … … 135 135 SelectionPressureLimit = 300; 136 136 ComparisonFactor = 1.0; 137 SuccessRatioLimit = 1.0; 137 138 MaxTreeHeight = 10; 138 139 MaxTreeSize = 100; … … 480 481 SequentialProcessor seq = new SequentialProcessor(); 481 482 OffspringAnalyzer analyzer = new OffspringAnalyzer(); 483 analyzer.GetVariableInfo("ComparisonFactor").Local = false; 484 analyzer.RemoveVariable("ComparisonFactor"); 482 485 SequentialProcessor selectedProc = new SequentialProcessor(); 483 486 OperatorExtractor crossover = new OperatorExtractor(); -
branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification/StandardGpEditor.cs
r1052 r1202 97 97 executeButton.Enabled = false; 98 98 abortButton.Enabled = true; 99 resetButton.Enabled = false; 99 100 StandardGP.Engine.Execute(); 100 101 }
Note: See TracChangeset
for help on using the changeset viewer.