Files
PythonRobotics/tests/test_cgmres_nmpc.py
2019-01-07 11:36:59 +09:00

16 lines
311 B
Python

from unittest import TestCase
import sys
if 'cvxpy' in sys.modules:
sys.path.append("./PathTracking/cgmres_nmpc/")
from PathTracking.cgmres_nmpc import cgmres_nmpc as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()