Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/IEdge.cs @ 8300

Last change on this file since 8300 was 8300, checked in by spimming, 12 years ago

#1894:

  • graph data structures added
  • method to get the ways for a specific node
File size: 160 bytes
Line 
1
2namespace HeuristicLab.Problems.RoutePlanning.Graph {
3  public interface IEdge<Vertex> {
4    Vertex Source { get; }
5    Vertex Target { get; }
6  }
7}
Note: See TracBrowser for help on using the repository browser.