Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/29/14 02:17:14 (10 years ago)
Author:
bburlacu
Message:

#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:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/SymbolicDataAnalysisGenealogyAnalyzer.cs

    r10300 r11227  
    44using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    55
    6 namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Analyzers {
     6namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
     7  [Item("SymbolicDataAnalysisGenealogyAnalyzer", "")]
    78  [StorableClass]
    8   [Item("SymbolicDataAnalysisGenealogyAnalyzer", "")]
    99  public class SymbolicDataAnalysisGenealogyAnalyzer : GenealogyAnalyzer<ISymbolicExpressionTree> {
     10    public SymbolicDataAnalysisGenealogyAnalyzer() { }
     11
     12    [StorableConstructor]
     13    protected SymbolicDataAnalysisGenealogyAnalyzer(bool deserializing) : base(deserializing) { }
    1014  }
    1115}
Note: See TracChangeset for help on using the changeset viewer.