Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/16/14 16:37:56 (10 years ago)
Author:
bburlacu
Message:

#1772: Small changes to the GenealogyGraph. Added generic Fragment class and interface. Added the SymbolicDataAnalysisPopulationDiversityAnalyzer. Added specialized tracking operators for symbolic data analysis. Merged trunk changes.

File:
1 edited

Legend:

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

    r10300 r10347  
    2121
    2222using HeuristicLab.Core;
     23using HeuristicLab.Parameters;
    2324using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2425
     
    2930    where T : class,IItem {
    3031
     32    private const string CurrentScopeParameterName = "CurrentScope";
     33
     34    public ScopeParameter CurrentScopeParameter {
     35      get { return (ScopeParameter)Parameters[CurrentScopeParameterName]; }
     36    }
     37    public IScope CurrentScope { get { return CurrentScopeParameter.ActualValue; } }
     38
    3139    public override IOperation Apply() {
    3240      return base.Apply();
Note: See TracChangeset for help on using the changeset viewer.