mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 23:37:56 -05:00
19 lines
422 B
Python
19 lines
422 B
Python
from unittest import TestCase
|
|
|
|
import sys
|
|
sys.path.append("./PathPlanning/ModelPredictiveTrajectoryGenerator/")
|
|
sys.path.append("./PathPlanning/StateLatticePlanner/")
|
|
|
|
from PathPlanning.StateLatticePlanner import state_lattice_planner as m
|
|
|
|
m.table_path = "./PathPlanning/StateLatticePlanner/lookuptable.csv"
|
|
|
|
print(__file__)
|
|
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|