2022-05-05 15:48:45 +02:00
|
|
|
|
|
2022-05-05 02:00:55 +02:00
|
|
|
|
using Logging;
|
|
|
|
|
|
|
|
|
|
namespace astar
|
|
|
|
|
{
|
|
|
|
|
public class Astar
|
|
|
|
|
{
|
|
|
|
|
private Logger logger;
|
|
|
|
|
public Astar()
|
|
|
|
|
{
|
2022-05-05 16:00:56 +02:00
|
|
|
|
this.logger = new Logger(LogType.Console, loglevel.DEBUG);
|
2022-05-05 16:02:49 +02:00
|
|
|
|
Dictionary<UInt64, Node> nodes = Importer.Import(logger);
|
|
|
|
|
|
2022-05-05 02:00:55 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|