Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/10 00:47:32 (15 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.Algorithms.EvolutionStrategy/3.3/EvolutionStrategyMainLoop.cs

    r3620 r3659  
    4444      get { return (ValueLookupParameter<BoolValue>)Parameters["Maximization"]; }
    4545    }
    46     public SubScopesLookupParameter<DoubleValue> QualityParameter {
    47       get { return (SubScopesLookupParameter<DoubleValue>)Parameters["Quality"]; }
     46    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
     47      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
    4848    }
    4949    public ValueLookupParameter<DoubleValue> BestKnownQualityParameter {
     
    106106      Parameters.Add(new ValueLookupParameter<IRandom>("Random", "A pseudo random number generator."));
    107107      Parameters.Add(new ValueLookupParameter<BoolValue>("Maximization", "True if the problem is a maximization problem, otherwise false."));
    108       Parameters.Add(new SubScopesLookupParameter<DoubleValue>("Quality", "The value which represents the quality of a solution."));
     108      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The value which represents the quality of a solution."));
    109109      Parameters.Add(new ValueLookupParameter<DoubleValue>("BestKnownQuality", "The best known quality value found so far."));
    110110      Parameters.Add(new ValueLookupParameter<IntValue>("PopulationSize", "µ (mu) - the size of the population."));
Note: See TracChangeset for help on using the changeset viewer.