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.EvolutionTracking/3.4/Operators/BeforeManipulatorOperator.cs

    r11032 r11227  
    3030  [Item("AfterCrossoverOperator", "Performs an action after the crossover operator is applied.")]
    3131  public class BeforeManipulatorOperator<T> : EvolutionTrackingOperator<T>, IManipulatorOperator<T> where T : class,IItem {
    32 
    3332    private const string ChildParameterName = "Child";
    3433
     
    4342      return new BeforeManipulatorOperator<T>(this, cloner);
    4443    }
     44    [StorableConstructor]
     45    protected BeforeManipulatorOperator(bool deserializing) : base(deserializing) { }
    4546
    4647    public BeforeManipulatorOperator() {
Note: See TracChangeset for help on using the changeset viewer.