- Timestamp:
- 07/20/12 18:58:28 (12 years ago)
- Location:
- branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/Graph.cs
r8308 r8314 35 35 foreach (Vertex<Node> neighbor in vertices) { 36 36 float weight = GetWeight(edge, vertex, neighbor); 37 neighbors[neighbor. Id] = weight;37 neighbors[neighbor.Node.Id] = weight; 38 38 } 39 39 } 40 return n ull;40 return neighbors; 41 41 } 42 42 -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/HeuristicLab.Problems.RoutePlanning.csproj
r8308 r8314 59 59 <Compile Include="Graph\Graph.cs" /> 60 60 <Compile Include="Graph\IEdge.cs" /> 61 <Compile Include="Graph\Route.cs" /> 61 62 <Compile Include="Graph\Vertex.cs" /> 62 63 <Compile Include="Osm.Data\XmlDataSource.cs" />
Note: See TracChangeset
for help on using the changeset viewer.