Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 11864 was 11864, checked in by bburlacu, 9 years ago

#1772: Improved functionality of the SymbolicDataAnalysisGenealogyGraphView in terms of graph navigation and display of useful information. Fixed save of tree image to file in the SymbolicExpressionTreeChart.

File size: 589 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    public TSPGenealogyAnalyzer() { }
11
12    [StorableConstructor]
13    protected TSPGenealogyAnalyzer(bool deserializing) : base(deserializing) { }
14  }
15}
Note: See TracBrowser for help on using the repository browser.