diff options
Diffstat (limited to 'test/dijkstra.cpp')
-rw-r--r-- | test/dijkstra.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dijkstra.cpp b/test/dijkstra.cpp index afd2a85a..9b0ee1b6 100644 --- a/test/dijkstra.cpp +++ b/test/dijkstra.cpp @@ -30,7 +30,7 @@ void test_app::test_dijkstra() auto a = astar(); bench_run("Dijkstra", [&] { - a.Dijkstra(w, {}, 0, {{0, 0, 0}, {}}, {{1, 1, 0}, {}}, + a.Dijkstra(w, {}, 0, {{0, 0, 0}, {0, 0}}, {{1, 1, 0}, {7, 9}}, 1*TILE_MAX_DIM*iTILE_SIZE2.x()); }); } |