From 5ef20063da838d81f9a9020a12bb69a01975a372 Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Thu, 16 Apr 2026 22:30:17 +0300 Subject: Comment out BFS, I'm pretty sure it won't work no more --- path.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'path.h') diff --git a/path.h b/path.h index 3bf4af4..bceed05 100644 --- a/path.h +++ b/path.h @@ -8,7 +8,7 @@ extern Path (*path_func)(int, Map, size_t **, size_t, size_t, Position, Position, char **, char); /* dirs can be 4 or 8 to disallow or allow diagonal movement */ -Path breadth_first_search_path(int dirs, Map map, size_t **cell_costs, size_t width, size_t height, Position start, Position end, char **visited, char should_anim); +//Path breadth_first_search_path(int dirs, Map map, size_t **cell_costs, size_t width, size_t height, Position start, Position end, char **visited, char should_anim); Path dijkstra_path(int dirs, Map map, size_t **cell_costs, size_t width, size_t height, Position start, Position end, char **visited, char should_anim); Path astar_path(int dirs, Map map, size_t **cell_costs, size_t width, size_t height, Position start, Position end, char **visited, char should_anim); -- cgit v1.2.3