Last change
on this file since 11462 was
11227,
checked in by bburlacu, 10 years ago
|
#1772: Added storable attributes to all the tracking operators. Added an additional method in the genealogy analyzer which computes the relative reproductive success for each individual in the population as the ratio of its offspring which make it into the next generation.
|
File size:
627 bytes
|
Line | |
---|
1 | using HeuristicLab.Core;
|
---|
2 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
3 | using HeuristicLab.EvolutionTracking;
|
---|
4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
5 |
|
---|
6 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
|
---|
7 | [Item("SymbolicDataAnalysisGenealogyAnalyzer", "")]
|
---|
8 | [StorableClass]
|
---|
9 | public class SymbolicDataAnalysisGenealogyAnalyzer : GenealogyAnalyzer<ISymbolicExpressionTree> {
|
---|
10 | public SymbolicDataAnalysisGenealogyAnalyzer() { }
|
---|
11 |
|
---|
12 | [StorableConstructor]
|
---|
13 | protected SymbolicDataAnalysisGenealogyAnalyzer(bool deserializing) : base(deserializing) { }
|
---|
14 | }
|
---|
15 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.