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.BinaryVectorEncoding/3.3/BinaryVectorCrossover.cs

    r3520 r3659  
    4242    }
    4343    public ILookupParameter<ItemArray<BinaryVector>> ParentsParameter {
    44       get { return (SubScopesLookupParameter<BinaryVector>)Parameters["Parents"]; }
     44      get { return (ScopeTreeLookupParameter<BinaryVector>)Parameters["Parents"]; }
    4545    }
    4646    public ILookupParameter<BinaryVector> 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<BinaryVector>("Parents", "The parent vectors which should be crossed."));
     53      Parameters.Add(new ScopeTreeLookupParameter<BinaryVector>("Parents", "The parent vectors which should be crossed."));
    5454      Parameters.Add(new LookupParameter<BinaryVector>("Child", "The child vector resulting from the crossover."));
    5555    }
Note: See TracChangeset for help on using the changeset viewer.