Files
PythonRobotics/tests/test_dstar.py
nirnayroy 2cf4f6f001 Added D* Search to path planning folder (#490)
* changes

* updated docs and readme

* Update a_star.py

* Update a_star.py

* Create test_dstar.py

* trailing loc

* Update dstar.py

* Update dstar.py

* Update dstar.py

* Update dstar.py

* Update dstar.py

* newline

* corrected changes requested

* 13, five, 21

* corrected changes

* latest

* linted

* lint

* removed diff
2021-05-15 15:01:29 +09:00

12 lines
182 B
Python

import conftest
from PathPlanning.DStar import dstar as m
def test_1():
m.show_animation = False
m.main()
if __name__ == '__main__':
conftest.run_this_test(__file__)