Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/24/14 16:59:22 (10 years ago)
Author:
bburlacu
Message:

#1772: Added new SymbolicDataAnalysisGenealogyView and added support for the tracing of building blocks (finding the constituent ancestral elements of a selected subtree).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/Analyzers/GenealogyAnalyzer.cs

    r10462 r10650  
    9393      get { return GenerationsParameter.ActualValue; }
    9494    }
    95     public IGenealogyGraph GenealogyGraph {
     95    public IGenealogyGraph<T> GenealogyGraph {
    9696      get {
    9797        IResult result;
    9898        if (!Results.ContainsKey(PopulationGraphParameterName)) {
    99           result = new Result(PopulationGraphParameterName, new GenealogyGraph());
     99          result = new Result(PopulationGraphParameterName, new GenealogyGraph<T>());
    100100          Results.Add(result);
    101101        } else {
    102102          result = Results[PopulationGraphParameterName];
    103103        }
    104         var graph = (IGenealogyGraph)result.Value;
     104        var graph = (IGenealogyGraph<T>)result.Value;
    105105        return graph;
    106106      }
Note: See TracChangeset for help on using the changeset viewer.