Last change
on this file since 11247 was
8520,
checked in by spimming, 12 years ago
|
#1894:
- extended datasource interface to get routing graph for a specific vehicle type
- use ICostCalculator to calculate edge weights
- moved common enums in own file
- removed method to estimate cost from graph; use ICostCalculator
|
File size:
242 bytes
|
Rev | Line | |
---|
[8516] | 1 |
|
---|
[8520] | 2 | using HeuristicLab.Problems.RoutePlanning.Data.Core;
|
---|
[8516] | 3 | namespace HeuristicLab.Problems.RoutePlanning.Interfaces {
|
---|
| 4 | public interface IDataSource {
|
---|
| 5 | IGraph GetRoutingGraph();
|
---|
[8520] | 6 | IGraph GetRoutingGraph(VehicleType vehicle);
|
---|
[8516] | 7 | }
|
---|
| 8 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.