Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/19/10 17:33:12 (14 years ago)
Author:
abeham
Message:

Updated Gender Specific Selection, Offspring Selector and other changes related to the OSGA #976
Removed old OS plugin, removed SelectedSubScopesLookupParameter

File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Operators/3.3/WeightedParentsQualityComparator.cs

    r3407 r3413  
    3030
    3131namespace HeuristicLab.Optimization.Operators {
    32   [Item("ParentsQualityComparator", "Compares the quality against that of its parents (assumes the parents are subscopes to the child scope). This operator works with any number of subscopes > 0.")]
     32  [Item("WeightedParentsQualityComparator", "Compares the quality against that of its parents (assumes the parents are subscopes to the child scope). This operator works with any number of subscopes > 0.")]
    3333  [StorableClass]
    34   public class ParentsQualityComparator : SingleSuccessorOperator, ISubScopesQualityComparator {
     34  public class WeightedParentsQualityComparator : SingleSuccessorOperator, ISubScopesQualityComparator {
    3535    public IValueLookupParameter<BoolValue> MaximizationParameter {
    3636      get { return (IValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
     
    4949    }
    5050
    51     public ParentsQualityComparator()
     51    public WeightedParentsQualityComparator()
    5252      : base() {
    5353      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, false otherwise"));
Note: See TracChangeset for help on using the changeset viewer.