Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/05/12 13:22:38 (12 years ago)
Author:
jkarder
Message:

#1886:

  • added BrokenInheritanceWildcardAnalyzer
  • separated analyzers and data structure creators
  • fixed CalculateBrokenInheritanceOccurrences method
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior/3.3/Analyzers/BestIndividualSchemaAnalyzer.cs

    r8218 r8227  
    2626using HeuristicLab.Parameters;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     28using HeuristicLab.Problems.TravelingSalesman;
    2829
    2930namespace HeuristicLab.Analysis.AlgorithmBehavior {
    30   using HeuristicLab.Problems.TravelingSalesman;
    3131
    3232  /// <summary>
     
    6666    public BestIndividualSchemaAnalyzer()
    6767      : base() {
    68       Parameters.Add(new LookupParameter<ResultCollection>(ResultsParameterName, "The results collection where the analysis values should are stored."));
     68      Parameters.Add(new LookupParameter<ResultCollection>(ResultsParameterName, "The results collection where the analysis values should be stored."));
    6969    }
    7070
     
    7474
    7575    public override IOperation Apply() {
    76       var subtours = SchemaAnalyzer.ExtractSubtours(BestSolution.Permutation);
     76      var subtours = AlgorithmBehaviorHelpers.ExtractSubtours(BestSolution.Permutation);
    7777      Results.Add(new Result(SchemataParameterName, subtours));
    7878      return base.Apply();
Note: See TracChangeset for help on using the changeset viewer.