- Timestamp:
- 08/20/12 17:32:19 (12 years ago)
- Location:
- branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/Graph.cs
r8479 r8509 25 25 vertices.TryGetValue(id, out vertex); 26 26 return vertex; 27 } 28 29 public List<Vertex> GetVertices() { 30 return new List<Vertex>(vertices.Values); 27 31 } 28 32 -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/IGraph.cs
r8479 r8509 5 5 void AddVertex(Vertex vertex); 6 6 Vertex GetVertex(long id); 7 List<Vertex> GetVertices(); 7 8 void AddEdge(long startId, long endId); 8 9 void AddEdge(Edge<Vertex> edge);
Note: See TracChangeset
for help on using the changeset viewer.