add LQR planning

This commit is contained in:
Atsushi Sakai
2018-05-05 09:52:18 +09:00
parent 03e76e433c
commit 96fb3171c2
2 changed files with 24 additions and 1 deletions

15
tests/test_LQR_planner.py Normal file
View File

@@ -0,0 +1,15 @@
from unittest import TestCase
import sys
sys.path.append("./PathPlanning/LQRPlanner")
from PathPlanning.LQRPlanner import LQRPlanner as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()