Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/09/14 15:11:16 (10 years ago)
Author:
bburlacu
Message:

#1772: Fixed persistence errors in the GenealogyAnalyzer and the instrumented operators, tweaked display code in the GenealogyGraphChart.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Operators/BeforeManipulatorOperator.cs

    r10822 r10830  
    3333
    3434    private const string ChildParameterName = "Child";
    35     public ILookupParameter<T> ChildParameter { get; set; }
     35
     36    public ILookupParameter<T> ChildParameter {
     37      get { return (ILookupParameter<T>)Parameters[ChildParameterName]; }
     38    }
    3639
    3740    protected BeforeManipulatorOperator(BeforeManipulatorOperator<T> original, Cloner cloner)
     
    4346
    4447    public BeforeManipulatorOperator() {
    45       ChildParameter = new LookupParameter<T>(ChildParameterName);
    46       Parameters.Add(ChildParameter);
     48      Parameters.Add(new LookupParameter<T>(ChildParameterName));
    4749    }
    4850
Note: See TracChangeset for help on using the changeset viewer.