- Timestamp:
- 08/07/12 15:35:05 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning.Test/Program.cs
r8423 r8426 22 22 string file6 = @"C:\dev\osmfiles\oberosterreich.highway.osm"; 23 23 24 //TestD(file5, 529102170, 1001363194, true, false); // inz - inz 25 //Test(file5, 529102170, 1001363194, true, false); // inz - inz 26 //Test(file6, 529102170, 1001363194, true, false); // inz - inz 27 28 //IDataSource ds = TestLoad(file6); 29 //Graph.Graph graph = new Graph.Graph(ds); 30 //TestRouter(new AStarAlgorithm(graph), 529102170, 31372732, false); // inz - hgb 31 //TestRouter(new AStarAlgorithmV2(graph), 529102170, 31372732, false); // inz - hgb 24 IDataSource ds = TestLoad(file6); 25 Graph.Graph graph = new Graph.Graph(ds); 26 TestRouter(new DijkstraAlgorithm(graph), 529102170, 31372732, false); // inz - hgb 27 TestRouter(new AStarAlgorithm(graph), 529102170, 31372732, false); // inz - hgb 28 TestRouter(new AStarAlgorithmV2(graph), 529102170, 31372732, false); // inz - hgb 29 TestRouter(new BidrectionalDijkstraAlgorithm(graph), 529102170, 31372732, false); // inz - hgb 32 30 33 31 //TestLoadAndRouter(file6, typeof(DijkstraAlgorithm), 529102170, 31372732, false, false); // inz - hgb 34 32 //TestLoadAndRouter(file6, typeof(AStarAlgorithm), 529102170, 31372732, false, false); // inz - hgb 35 //TestLoadAndRouter(file6, typeof(AStarAlgorithmV2), 529102170, 31372732, false, false); // inz - hgb 33 //TestLoadAndRouter(file6, typeof(AStarAlgorithmV2), 529102170, 31372732, false, true); // inz - hgb 34 35 //TestLoadAndRouter(file6, typeof(DijkstraAlgorithm), 529102170, 1001363194, true, false); 36 //TestLoadAndRouter(file6, typeof(AStarAlgorithm), 529102170, 1001363194, true, false); 37 //TestLoadAndRouter(file6, typeof(AStarAlgorithmV2), 529102170, 1001363194, true, false); 38 //TestLoadAndRouter(file6, typeof(BidrectionalDijkstraAlgorithm), 529102170, 1001363194, true, false); 36 39 37 40 //TestLoadAndRouter(file5, typeof(DijkstraAlgorithm), 529102170, 1001363194, true, false); 38 41 //TestLoadAndRouter(file5, typeof(BidrectionalDijkstraAlgorithm), 529102170, 1001363194, true, true); 39 TestLoadAndRouter(file6, typeof(BidrectionalDijkstraAlgorithm), 529102170, 31372732, false, true); // inz - hgb42 //TestLoadAndRouter(file6, typeof(BidrectionalDijkstraAlgorithm), 529102170, 31372732, false, true); // inz - hgb 40 43 41 44 System.Console.Read();
Note: See TracChangeset
for help on using the changeset viewer.