Free cookie consent management tool by TermsFeed Policy Generator

source: branches/RoutePlanning/HeuristicLab.Problems.RoutePlanning.Test/Program.cs @ 8301

Last change on this file since 8301 was 8301, checked in by spimming, 12 years ago

#1894:

  • graph routing algorithm plugin initial commit
  • load data in problem
File size: 522 bytes
Line 
1
2using HeuristicLab.Problems.RoutePlanning.Osm.Data;
3namespace HeuristicLab.Problems.RoutePlanning.Test {
4  class Program {
5    static void Main(string[] args) {
6      string filepath = @"..\..\OsmTestFiles\test.osm";
7      //string filepath = @"..\..\OsmTestFiles\testNode1.osm";
8      //string filepath = @"..\..\OsmTestFiles\testWay1.osm";
9      //string filepath = @"..\..\OsmTestFiles\testRelation1.osm";
10      XmlDataSource xmlDs = new XmlDataSource(filepath);
11      //xmlDs.ReadData();
12    }
13  }
14}
Note: See TracBrowser for help on using the repository browser.