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/GenealogyGraph/Interfaces/IGenealogyGraph.cs

    r10300 r10650  
    2525namespace HeuristicLab.EvolutionTracking {
    2626  public interface IGenealogyGraph : IDirectedGraph {
    27     Dictionary<double, LinkedList<IGenealogyGraphNode>> Ranks { get; set; }
     27    Dictionary<double, LinkedList<IGenealogyGraphNode>> Ranks { get; }
    2828  }
    2929
    30   public interface IGenealogyGraph<T> : IDirectedGraph
    31     where T : class,IItem {
    32     Dictionary<double, LinkedList<IGenealogyGraphNode<T>>> Ranks { get; set; }
    33   }
     30  public interface IGenealogyGraph<T> : IGenealogyGraph where T : class,IItem { }
    3431}
Note: See TracChangeset for help on using the changeset viewer.