blob: d34e28bf3c73e51358cee981a9e0f2d996c84a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "app.hpp"
#include "path-search.hpp"
namespace floormat {
void test_app::test_dijkstra()
{
auto w = world();
auto a = astar();
a.Dijkstra(w, {}, 0, {{0, 0, 0}, {}}, {{1, 1, 0}, {}},
1*TILE_MAX_DIM*iTILE_SIZE2.x());
}
} // namespace floormat
|