Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/10 00:47:32 (14 years ago)
Author:
swagner
Message:

Worked on refactoring of algorithm analysis and tracing (#999)

  • removed SubScopesSubScopesLookupParameter
  • adapted SubScopesLookupParameter and renamed it into ScopeTreeLookupParameter
File:
1 edited

Legend:

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

    r3376 r3659  
    3636    private string actualName;
    3737
    38     public SubScopesLookupParameter<DoubleValue> ValueParameter {
    39       get { return (SubScopesLookupParameter<DoubleValue>)Parameters["Value"]; }
     38    public ScopeTreeLookupParameter<DoubleValue> ValueParameter {
     39      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Value"]; }
    4040    }
    4141    public ValueLookupParameter<BoolValue> DescendingParameter {
     
    5151    public SubScopesSorter()
    5252      : base() {
    53       Parameters.Add(new SubScopesLookupParameter<DoubleValue>("Value", "The values contained in each sub-scope acording which the sub-scopes of the current scope are sorted."));
     53      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Value", "The values contained in each sub-scope acording which the sub-scopes of the current scope are sorted."));
    5454      Parameters.Add(new ValueLookupParameter<BoolValue>("Descending", "True if the sub-scopes should be sorted in descending order, otherwise false."));
    5555      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope whose sub-scopes are sorted."));
Note: See TracChangeset for help on using the changeset viewer.