Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/10 02:46:37 (14 years ago)
Author:
swagner
Message:

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

  • adapted analyzers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithm.cs

    r3658 r3662  
    246246      get { return (IslandOffspringSelectionGeneticAlgorithmMainLoop)IslandProcessor.Successor; }
    247247    }
    248     private PopulationBestAverageWorstQualityAnalyzer islandQualityAnalyzer;
     248    private BestAverageWorstQualityAnalyzer islandQualityAnalyzer;
    249249    //private MultipopulationBestAverageWorstQualityAnalyzer qualityAnalyzer;
    250250    #endregion
     
    471471    }
    472472    private void InitializeAnalyzers() {
    473       islandQualityAnalyzer = new PopulationBestAverageWorstQualityAnalyzer();
     473      islandQualityAnalyzer = new BestAverageWorstQualityAnalyzer();
    474474      //qualityAnalyzer = new MultipopulationBestAverageWorstQualityAnalyzer();
    475475      ParameterizeAnalyzers();
Note: See TracChangeset for help on using the changeset viewer.