Changeset 12351
- Timestamp:
- 04/28/15 15:46:32 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/VOSGA/HeuristicLab.Algorithms.VOffspringSelectionGeneticAlgorithm/OffspringSelectors/PopDivOffspringSelector.cs
r12350 r12351 260 260 } 261 261 // check if enough children have been generated 262 if (((selectionPressure.Value < maxSelPress) && (currentSuccessRatio.Value < successRatio)) || 262 if (((selectionPressure.Value < maxSelPress) && 263 (currentSuccessRatio.Value < successRatio) && 264 (population.Count < populationSize)) || 263 265 (population.Count < populationSize)) { 264 266 // more children required -> reduce left and start children generation again
Note: See TracChangeset
for help on using the changeset viewer.