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
This commit is contained in:
nirnayroy
2021-05-15 11:31:29 +05:30
committed by GitHub
parent 0e232037c7
commit 2cf4f6f001
4 changed files with 282 additions and 0 deletions

11
tests/test_dstar.py Normal file
View File

@@ -0,0 +1,11 @@
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__)