Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Interfaces/IEdge.cs @ 11986

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

#1894:

  • solution restructured
  • removed obsolete and outdated parts
File size: 150 bytes
Line 
1
2namespace HeuristicLab.Problems.RoutePlanning.Interfaces {
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.