Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/15/10 23:49:54 (14 years ago)
Author:
swagner
Message:

Renamed classes of HeuristicLab.Data (#909)

File:
1 edited

Legend:

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

    r3017 r3048  
    3333  [Creatable("Test")]
    3434  public class SubScopesCreator : SingleSuccessorOperator {
    35     public ValueLookupParameter<IntData> NumberOfSubScopesParameter {
    36       get { return (ValueLookupParameter<IntData>)Parameters["NumberOfSubScopes"]; }
     35    public ValueLookupParameter<IntValue> NumberOfSubScopesParameter {
     36      get { return (ValueLookupParameter<IntValue>)Parameters["NumberOfSubScopes"]; }
    3737    }
    3838    protected ScopeParameter CurrentScopeParameter {
     
    4545    public SubScopesCreator()
    4646      : base() {
    47       Parameters.Add(new ValueLookupParameter<IntData>("NumberOfSubScopes", "The number of new and empty sub-scopes which should be added to the current scope."));
     47      Parameters.Add(new ValueLookupParameter<IntValue>("NumberOfSubScopes", "The number of new and empty sub-scopes which should be added to the current scope."));
    4848      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope to which the new and empty sub-scopes are added."));
    4949    }
Note: See TracChangeset for help on using the changeset viewer.