- Timestamp:
- 08/14/12 14:31:45 (12 years ago)
- Location:
- branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3
- Files:
-
- 4 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/DIMACS/DIMACSDataSource.cs
r8480 r8488 118 118 Vertex vSrc = graph.GetVertex(src); 119 119 Vertex vDst = graph.GetVertex(dst); 120 120 121 Edge<Vertex> edge = new Edge<Vertex>(vSrc, vDst); 121 //TODO len = weight 122 edge.Weight = len; 123 122 124 graph.AddEdge(edge); 123 125 -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/Graph/Edge.cs
r8479 r8488 16 16 get { return category; } 17 17 set { category = value; } 18 } 19 20 private float weight; 21 public float Weight { 22 get { return weight; } 23 set { weight = value; } 18 24 } 19 25 -
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning/3.3/HeuristicLab.Problems.RoutePlanning.csproj
r8480 r8488 58 58 <ItemGroup> 59 59 <Compile Include="DIMACS\DIMACSDataSource.cs" /> 60 <Compile Include="Graph\EarthDistanceCostCalculator.cs" /> 61 <Compile Include="Graph\ICostCalculator.cs" /> 60 62 <Compile Include="Graph\Edge.cs" /> 61 63 <Compile Include="Graph\Graph.cs" /> … … 65 67 <Compile Include="Graph\OsmVertex.cs" /> 66 68 <Compile Include="Graph\Route.cs" /> 69 <Compile Include="Graph\TravelTimeCostCalculator.cs" /> 67 70 <Compile Include="Graph\Vertex.cs" /> 71 <Compile Include="Osm.Data\OsmDataSource.cs" /> 68 72 <Compile Include="Osm.Data\XmlDataSource.cs" /> 69 73 <Compile Include="Osm\IDataSource.cs" />
Note: See TracChangeset
for help on using the changeset viewer.