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.Encodings.PermutationEncoding/3.3/PermutationCrossover.cs

    r3376 r3659  
    4242    }
    4343    public ILookupParameter<ItemArray<Permutation>> ParentsParameter {
    44       get { return (SubScopesLookupParameter<Permutation>)Parameters["Parents"]; }
     44      get { return (ScopeTreeLookupParameter<Permutation>)Parameters["Parents"]; }
    4545    }
    4646    public ILookupParameter<Permutation> ChildParameter {
     
    5151      : base() {
    5252      Parameters.Add(new LookupParameter<IRandom>("Random", "The pseudo random number generator which should be used for stochastic crossover operators."));
    53       Parameters.Add(new SubScopesLookupParameter<Permutation>("Parents", "The parent permutations which should be crossed."));
     53      Parameters.Add(new ScopeTreeLookupParameter<Permutation>("Parents", "The parent permutations which should be crossed."));
    5454      ParentsParameter.ActualName = "Permutation";
    5555      Parameters.Add(new LookupParameter<Permutation>("Child", "The child permutation resulting from the crossover."));
Note: See TracChangeset for help on using the changeset viewer.