Files
PythonRobotics/tests/test_inverted_pendulum_mpc_control.py
Atsushi Sakai 64779298ff refactor: rename files and update references for inverted pendulum an… (#1171)
* refactor: rename files and update references for inverted pendulum and path tracking modules

* refactor: rename inverted pendulum control files and update type check references

* refactor: update import statements to use consistent casing for InvertedPendulum module
2025-02-21 21:40:21 +09:00

13 lines
204 B
Python

import conftest
from InvertedPendulum import inverted_pendulum_mpc_control as m
def test1():
m.show_animation = False
m.main()
if __name__ == '__main__':
conftest.run_this_test(__file__)