New path_find_visualize(), to aid debugging

This commit is contained in:
Markus Armbruster 2011-02-21 22:49:44 +01:00
parent 18dd516076
commit 2fc9dfc526
2 changed files with 77 additions and 0 deletions

View file

@ -73,6 +73,9 @@ extern void path_find_from(coord, coord, natid, int);
extern double path_find_to(coord, coord);
extern double path_find(coord, coord, coord, coord, natid, int);
extern size_t path_find_route(char *, size_t, coord, coord, coord, coord);
#ifdef PATH_FIND_DEBUG
extern void path_find_visualize(coord, coord, coord, coord);
#endif
#ifdef PATH_FIND_STATS
extern void path_find_print_stats(void);
#else