Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/27/11 09:22:20 (13 years ago)
Author:
abeham
Message:

#1465

  • updated branch from trunk
Location:
branches/histogram
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram

  • branches/histogram/HeuristicLab.Selection/3.3/SingleObjectiveSelector.cs

    r5445 r6055  
    3333  [StorableClass]
    3434  public abstract class SingleObjectiveSelector : Selector {
    35     protected ValueParameter<BoolValue> CopySelectedParameter {
    36       get { return (ValueParameter<BoolValue>)Parameters["CopySelected"]; }
     35    protected IValueParameter<BoolValue> CopySelectedParameter {
     36      get { return (IValueParameter<BoolValue>)Parameters["CopySelected"]; }
    3737    }
    3838    public IValueLookupParameter<IntValue> NumberOfSelectedSubScopesParameter {
    39       get { return (ValueLookupParameter<IntValue>)Parameters["NumberOfSelectedSubScopes"]; }
     39      get { return (IValueLookupParameter<IntValue>)Parameters["NumberOfSelectedSubScopes"]; }
    4040    }
    4141    public IValueLookupParameter<BoolValue> MaximizationParameter {
     
    6161      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the current problem is a maximization problem, otherwise false."));
    6262      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The quality value contained in each sub-scope which is used for selection."));
     63      CopySelectedParameter.Hidden = true;
    6364    }
    6465  }
Note: See TracChangeset for help on using the changeset viewer.