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.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs

    r3658 r3662  
    204204      get { return (IslandGeneticAlgorithmMainLoop)IslandProcessor.Successor; }
    205205    }
    206     private PopulationBestAverageWorstQualityAnalyzer islandQualityAnalyzer;
     206    private BestAverageWorstQualityAnalyzer islandQualityAnalyzer;
    207207    //private MultipopulationBestAverageWorstQualityAnalyzer qualityAnalyzer;
    208208    #endregion
     
    398398    }
    399399    private void InitializeAnalyzers() {
    400       islandQualityAnalyzer = new PopulationBestAverageWorstQualityAnalyzer();
     400      islandQualityAnalyzer = new BestAverageWorstQualityAnalyzer();
    401401      //qualityAnalyzer = new MultipopulationBestAverageWorstQualityAnalyzer();
    402402      ParameterizeAnalyzers();
Note: See TracChangeset for help on using the changeset viewer.