Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Algorithms.GraphRouting/3.3/IRouter.cs @ 8481

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

#1894:

  • get neighbors for specific node
  • method to calculate weight between two nodes
  • interface for router
  • Dijkstra algorithm initial commit
  • Utils methods added
File size: 154 bytes
Line 
1
2namespace HeuristicLab.Algorithms.GraphRouting {
3  public interface IRouter {
4    long[] Calculate(long sourceNodeId, long targetNodeId);
5  }
6}
Note: See TracBrowser for help on using the repository browser.