Last change
on this file since 12009 was
11864,
checked in by bburlacu, 10 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 | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
3 | using HeuristicLab.EvolutionTracking;
|
---|
4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
5 |
|
---|
6 | namespace 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.