Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.TravelingSalesman/3.3/Analyzers/TSPGenealogyAnalyzer.cs @ 11638

Last change on this file since 11638 was 10300, checked in by bburlacu, 11 years ago

#1772: Cleaned up the design of the generic genealogy analyzer and related classes, created generic genealogy graph view. Added instrumentation code to TravelingSalesmapProblem.cs allowing genealogy tracking. Merged trunk changes (instrumentation for multi operators).

File size: 439 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Encodings.PermutationEncoding;
3using HeuristicLab.EvolutionTracking;
4using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
5
6namespace HeuristicLab.Problems.TravelingSalesman.Analyzers {
7  [StorableClass]
8  [Item("TSPGenealogyAnalyzer", "A genealogy analyzer for permutation encodings.")]
9  public class TSPGenealogyAnalyzer : GenealogyAnalyzer<Permutation> {
10  }
11}
Note: See TracBrowser for help on using the repository browser.