mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 09:08:01 -05:00
16 lines
311 B
Python
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()
|