uastar
uastar copied to clipboard
Minimal A* implementation in C. No dynamic memory allocation.
Results
2
uastar issues
Sort by
recently updated
recently updated
newest added
Hi, I noticed the call to the scoring function in path_finder_find_step reverses the col and row arguments. `path_finder->f_score[n] = path_finder->f_score[n] + path_finder->score_func(path_finder, n / path_finder->cols, n % path_finder->cols, data);` Looks...