source:
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/IEdge.cs
@
8434
Last change on this file since 8434 was 8429, checked in by spimming, 12 years ago | |
---|---|
File size: 145 bytes |
Line | |
---|---|
1 | |
2 | namespace HeuristicLab.Problems.RoutePlanning.Graph { |
3 | public interface IEdge<T> { |
4 | T Source { get; } |
5 | T Target { get; } |
6 | } |
7 | } |
Note: See TracBrowser
for help on using the repository browser.