diff options
Diffstat (limited to 'path.h')
| -rw-r--r-- | path.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,4 +21,8 @@ char **visited_new(size_t width, size_t height); void visited_clear(char **visited, size_t width, size_t height); void visited_free(char **visited, size_t height); +/* Helper funcs for the cost_so_far array */ +size_t **cost_so_far_new(size_t width, size_t height); +void cost_so_far_free(size_t **cost_so_far, size_t height); + #endif /* ASTAR_H_ */ |
