summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-10-08 22:48:40 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-10-08 22:48:40 +0200
commit648f26a2fc82c4a618d68733f9f3ad6915bae37d (patch)
tree493ada6f6e365d811b66625f62527b0a035305f1 /test
parent864c976daa4ddc7df09271b7049ca7c18e5601dd (diff)
a
Diffstat (limited to 'test')
-rw-r--r--test/dijkstra.cpp2
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());
});
}