Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/13/10 20:05:19 (14 years ago)
Author:
gkronber
Message:

Changed execution order of analyzers (algorithm analyzers after problem analyzers) #893

File:
1 edited

Legend:

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

    r3750 r3799  
    515515      VillageAnalyzer.Operators.Add(villageQualityAnalyzer);
    516516      VillageAnalyzer.Operators.Add(villageSelectionPressureAnalyzer);
    517       Analyzer.Operators.Add(qualityAnalyzer);
    518       Analyzer.Operators.Add(selectionPressureAnalyzer);
    519517      if (Problem != null) {
    520518        foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>().OrderBy(x => x.Name)) {
     
    524522        }
    525523      }
     524      Analyzer.Operators.Add(qualityAnalyzer);
     525      Analyzer.Operators.Add(selectionPressureAnalyzer);
    526526    }
    527527    #endregion
Note: See TracChangeset for help on using the changeset viewer.