Changeset 10826 for trunk/sources
- Timestamp:
- 05/08/14 16:56:16 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Selection/3.3/OffspringSelector.cs
r10643 r10826 99 99 double maxSelPress = MaximumSelectionPressureParameter.ActualValue.Value; 100 100 double successRatio = SuccessRatioParameter.ActualValue.Value; 101 bool fillPopulationWithParents = FillPopulationWithParentsParameter.ActualValue.Value; 101 bool fillPopulationWithParents = false; 102 if (FillPopulationWithParentsParameter.ActualValue != null) 103 fillPopulationWithParents = FillPopulationWithParentsParameter.ActualValue.Value; 102 104 IScope scope = ExecutionContext.Scope; 103 105 IScope parents = scope.SubScopes[0];
Note: See TracChangeset
for help on using the changeset viewer.