- Timestamp:
- 03/19/14 16:47:51 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs
r9592 r10639 20 20 #endregion 21 21 22 using System.Linq; 22 23 using HeuristicLab.Common; 23 24 using HeuristicLab.Core; … … 28 29 using HeuristicLab.Parameters; 29 30 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 using HeuristicLab.Selection; 30 32 31 33 namespace HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm { … … 265 267 mainOperator.SelectorParameter.ActualName = SelectorParameter.Name; 266 268 mainOperator.SuccessRatioParameter.ActualName = SuccessRatioParameter.Name; 269 foreach (var offspringSelector in mainOperator.OperatorGraph.Operators.OfType<OffspringSelector>()) 270 offspringSelector.FillPopulationWithParents = true; 267 271 268 272 islandAnalyzer2.Name = "Island Analyzer (placeholder)";
Note: See TracChangeset
for help on using the changeset viewer.