Files
PythonRobotics/tests/test_inverted_pendulum_mpc_control.py
Atsushi Sakai c99716d692 Adding all gifs to the doc 2 (#585)
* update docs

* update docs

* update docs
2021-11-28 16:00:02 +09:00

15 lines
305 B
Python

import conftest
import sys
if 'cvxpy' in sys.modules: # pragma: no cover
from Control.InvertedPendulumMPCControl \
import inverted_pendulum_mpc_control as m
def test1():
m.show_animation = False
m.main()
if __name__ == '__main__':
conftest.run_this_test(__file__)