Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/05/10 02:02:51 (14 years ago)
Author:
swagner
Message:

Worked on refactoring of algorithm analysis and tracing (#999)

  • added interfaces to specify on which scope level an analyzer can be applied
  • adapted MultiAnalyzer
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Analysis/3.3/PopulationBestAverageWorstQualityAnalyzer.cs

    r3616 r3618  
    3232  /// An operator which analyzes the best, average and worst solution quality in the current population.
    3333  /// </summary>
    34   [Item("BestAverageWorstQualityAnalyzer", "An operator which analyzes the best, average and worst solution quality in the current population.")]
     34  [Item("PopulationBestAverageWorstQualityAnalyzer", "An operator which analyzes the best, average and worst solution quality in the current population.")]
    3535  [StorableClass]
    36   public sealed class BestAverageWorstQualityAnalyzer : AlgorithmOperator, IAnalyzer {
     36  public sealed class PopulationBestAverageWorstQualityAnalyzer : AlgorithmOperator, IPopulationAnalyzer {
    3737    #region Parameter properties
    3838    public ValueLookupParameter<BoolValue> MaximizationParameter {
     
    6969
    7070    [StorableConstructor]
    71     private BestAverageWorstQualityAnalyzer(bool deserializing) : base() { }
    72     public BestAverageWorstQualityAnalyzer()
     71    private PopulationBestAverageWorstQualityAnalyzer(bool deserializing) : base() { }
     72    public PopulationBestAverageWorstQualityAnalyzer()
    7373      : base() {
    7474      Initialize();
Note: See TracChangeset for help on using the changeset viewer.