- Timestamp:
- 05/28/14 15:24:48 (10 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10826
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Selection/3.3/OffspringSelector.cs
r10644 r10912 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.