- Timestamp:
- 08/09/12 16:17:37 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/IGraph.cs
r8438 r8461 2 2 using System.Collections.Generic; 3 3 namespace HeuristicLab.Problems.RoutePlanning.Graph { 4 interface IGraph {4 public interface IGraph { 5 5 void AddVertex(Vertex vertex); 6 6 Vertex GetVertex(long id); 7 7 void AddEdge(long startId, long endId); 8 void AddEdge(Edge<Vertex> edge); 8 9 void RemoveEdge(long startId, long endId); 9 10 bool HasEdge(long startId, long endId);
Note: See TracChangeset
for help on using the changeset viewer.