mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-12 23:58:04 -05:00
* Add D* Lite. * Add test. Minor changes * Modified based on LGTM report * Fix linter errors * Fixes and lint. * Update README.md Made requested changes Add transform between world and grid coordinates to allow negative wold coordinates Modify to allow diagonal motion * Added display of previous and new computed path
12 lines
192 B
Python
12 lines
192 B
Python
import conftest
|
|
from PathPlanning.DStarLite import d_star_lite as m
|
|
|
|
|
|
def test_1():
|
|
m.show_animation = False
|
|
m.main()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
conftest.run_this_test(__file__)
|