Changeset 10640
- Timestamp:
- 03/19/14 16:52:02 (11 years ago)
- Location:
- branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm merged: 10639
- Property svn:mergeinfo changed
-
branches/DataAnalysis.IslandAlgorithms/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithmMainLoop.cs
r10591 r10640 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 { … … 275 277 mainOperator.SelectorParameter.ActualName = SelectorParameter.Name; 276 278 mainOperator.SuccessRatioParameter.ActualName = SuccessRatioParameter.Name; 279 foreach (var offspringSelector in mainOperator.OperatorGraph.Operators.OfType<OffspringSelector>()) 280 offspringSelector.FillPopulationWithParents = true; 277 281 278 282 islandAnalyzer2.Name = "Island Analyzer (placeholder)";
Note: See TracChangeset
for help on using the changeset viewer.