Free cookie consent management tool by TermsFeed Policy Generator

Changeset 10912 for stable


Ignore:
Timestamp:
05/28/14 15:24:48 (10 years ago)
Author:
mkommend
Message:

#2181: Merged r10826 into stable.

Location:
stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • stable

  • stable/HeuristicLab.Selection/3.3/OffspringSelector.cs

    r10644 r10912  
    9999      double maxSelPress = MaximumSelectionPressureParameter.ActualValue.Value;
    100100      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;
    102104      IScope scope = ExecutionContext.Scope;
    103105      IScope parents = scope.SubScopes[0];
Note: See TracChangeset for help on using the changeset viewer.