- 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/Vertex.cs
r8438 r8461 50 50 if (obj is Vertex) { 51 51 Vertex v = (obj as Vertex); 52 return this.Equals(v);52 return (this.id == v.id); //TODO: 53 53 } 54 54 return false;
Note: See TracChangeset
for help on using the changeset viewer.