Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/10 03:24:43 (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.Problems.TravelingSalesman/3.3/TravelingSalesmanProblem.cs

    r3662 r3663  
    124124      get { return operators; }
    125125    }
    126     private PopulationBestTSPSolutionAnalyzer BestTSPSolutionAnalyzer {
    127       get { return operators.OfType<PopulationBestTSPSolutionAnalyzer>().FirstOrDefault(); }
     126    private BestTSPSolutionAnalyzer BestTSPSolutionAnalyzer {
     127      get { return operators.OfType<BestTSPSolutionAnalyzer>().FirstOrDefault(); }
    128128    }
    129129    #endregion
     
    280280    private void InitializeOperators() {
    281281      operators = new List<IOperator>();
    282       operators.Add(new PopulationBestTSPSolutionAnalyzer());
     282      operators.Add(new BestTSPSolutionAnalyzer());
    283283      ParameterizeAnalyzer();
    284284      operators.AddRange(ApplicationManager.Manager.GetInstances<IPermutationOperator>().Cast<IOperator>());
Note: See TracChangeset for help on using the changeset viewer.