Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking/3.4/GenealogyGraph/Interfaces/IGenealogyGraph.cs @ 10271

Last change on this file since 10271 was 10271, checked in by bburlacu, 10 years ago

#1772: Fixed namespaces.

File size: 355 bytes
Line 
1using System.Collections.Generic;
2
3namespace HeuristicLab.EvolutionTracking {
4  public interface IGenealogyGraph<TVertex> : IDirectedGraph<TVertex> where TVertex : class, IGenealogyGraphNode {
5    Dictionary<double, LinkedList<TVertex>> Ranks { get; set; }
6  }
7
8  public interface IGenealogyGraph : IGenealogyGraph<IGenealogyGraphNode> {
9  }
10}
Note: See TracBrowser for help on using the repository browser.