Free cookie consent management tool by TermsFeed Policy Generator

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

Renamed classes of HeuristicLab.Data (#909)

File:
1 edited

Legend:

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

    r3021 r3048  
    4343      get { return (ScopeParameter)Parameters["CurrentScope"]; }
    4444    }
    45     public ValueLookupParameter<IntData> ParentsPerChildParameter {
    46       get { return (ValueLookupParameter<IntData>)Parameters["ParentsPerChild"]; }
     45    public ValueLookupParameter<IntValue> ParentsPerChildParameter {
     46      get { return (ValueLookupParameter<IntValue>)Parameters["ParentsPerChild"]; }
    4747    }
    4848    public IScope CurrentScope {
    4949      get { return CurrentScopeParameter.ActualValue; }
    5050    }
    51     public IntData ParentsPerChild {
     51    public IntValue ParentsPerChild {
    5252      get { return ParentsPerChildParameter.Value; }
    5353      set { ParentsPerChildParameter.Value = value; }
     
    5757      : base() {
    5858      Parameters.Add(new ScopeParameter("CurrentScope", "The current scope whose sub-scopes represent the parents."));
    59       Parameters.Add(new ValueLookupParameter<IntData>("ParentsPerChild", "The number of parents that should be crossed per child. Note that some of the typical crossover operators require exactly two parents.", new IntData(2)));
     59      Parameters.Add(new ValueLookupParameter<IntValue>("ParentsPerChild", "The number of parents that should be crossed per child. Note that some of the typical crossover operators require exactly two parents.", new IntValue(2)));
    6060    }
    6161
Note: See TracChangeset for help on using the changeset viewer.