diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 05:01:14 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-25 05:01:14 +0100 |
commit | 7c1791841c13db2f3b92a3b5a790daf2a816cc35 (patch) | |
tree | a63149688a5d4133c9ce10244e85d81ed96a6ffe /src | |
parent | 50e42d74c9b25e2ec4c6b9fd3434f431c0b5c3d9 (diff) |
rename astar -> search-astar
Diffstat (limited to 'src')
-rw-r--r-- | src/dijkstra.cpp | 2 | ||||
-rw-r--r-- | src/search-astar.hpp (renamed from src/astar.hpp) | 0 | ||||
-rw-r--r-- | src/search.cpp | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/src/dijkstra.cpp b/src/dijkstra.cpp index 1f353e30..15232f90 100644 --- a/src/dijkstra.cpp +++ b/src/dijkstra.cpp @@ -1,4 +1,4 @@ -#include "astar.hpp" +#include "search-astar.hpp" #include "search-bbox.hpp" #include "compat/format.hpp" #include "compat/vector-wrapper.hpp" diff --git a/src/astar.hpp b/src/search-astar.hpp index 7c48c5db..7c48c5db 100644 --- a/src/astar.hpp +++ b/src/search-astar.hpp diff --git a/src/search.cpp b/src/search.cpp index 9f497134..f879260b 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1,6 +1,6 @@ #include "search.hpp" #include "search-bbox.hpp" -#include "astar.hpp" +#include "search-astar.hpp" #include "global-coords.hpp" #include "world.hpp" #include "pass-mode.hpp" |