mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-11 09:48:08 -05:00
* Update greedy_best_first_search.py parent_index should be pind. other wise it cann't work * add breadth first search test * Add greedy best first search test
12 lines
228 B
Python
12 lines
228 B
Python
import conftest
|
|
from PathPlanning.GreedyBestFirstSearch import greedy_best_first_search as m
|
|
|
|
|
|
def test_1():
|
|
m.show_animation = False
|
|
m.main()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|