Changeset 2683 for trunk/sources/HeuristicLab.GP.Algorithms
- Timestamp:
- 01/25/10 15:26:00 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.GP.Algorithms/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.GP.Algorithms/3.2/AlgorithmBase.cs
r2566 r2683 287 287 loop.AddSubOperator(seq); 288 288 289 seq.AddSubOperator(CreateGenerationStepHook()); 290 seq.AddSubOperator(qualityCalculator); 291 seq.AddSubOperator(loggingOperator); 292 seq.AddSubOperator(counter); 289 293 seq.AddSubOperator(childCreater); 290 294 seq.AddSubOperator(replacement); 291 seq.AddSubOperator(qualityCalculator);292 seq.AddSubOperator(CreateGenerationStepHook());293 seq.AddSubOperator(loggingOperator);294 seq.AddSubOperator(counter);295 295 seq.AddSubOperator(terminationCriterionExtractor); 296 296 seq.AddSubOperator(loop); -
trunk/sources/HeuristicLab.GP.Algorithms/3.2/OffspringSelectionGP.cs
r2385 r2683 70 70 injector.AddVariable(new HeuristicLab.Core.Variable("ComparisonFactor", new DoubleData())); 71 71 injector.AddVariable(new HeuristicLab.Core.Variable("SelectionPressureLimit", new DoubleData())); 72 injector.AddVariable(new HeuristicLab.Core.Variable("SelectionPressure", new DoubleData(1))); 72 73 injector.AddVariable(new HeuristicLab.Core.Variable("SuccessRatioLimit", new DoubleData())); 73 74 return injector;
Note: See TracChangeset
for help on using the changeset viewer.