mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-11 12:38:02 -05:00
* 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
12 lines
182 B
Python
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__)
|