forked from AtsushiSakai/PythonRobotics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
inverted pendulum mpc control is added
- Loading branch information
1 parent
03e8969
commit bd5269b
Showing
2 changed files
with
19 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from unittest import TestCase | ||
|
||
import sys | ||
if 'cvxpy' in sys.modules: # pragma: no cover | ||
sys.path.append("./InvertedPendulumCart/inverted_pendulum_mpc_control/") | ||
|
||
import inverted_pendulum_mpc_control as m | ||
|
||
print(__file__) | ||
|
||
class Test(TestCase): | ||
|
||
def test1(self): | ||
m.show_animation = False | ||
m.main() |