We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 478366c commit cffcaf4Copy full SHA for cffcaf4
python/tests/lipm_test.py
@@ -14,7 +14,7 @@ def assertNumpyEqual(self, a, b, msg=None, epsilon=1e-6):
14
def test_lipm(self):
15
problem = placo.Problem()
16
17
- lipm = placo.LIPM(problem, 64, 0.1, np.array([0.0, 0.0]), np.array([0.0, 0.0]), np.array([0.0, 0.0]))
+ lipm = placo.LIPM(problem, 0.1, 64, 0.0, np.array([0.0, 0.0]), np.array([0.0, 0.0]), np.array([0.0, 0.0]))
18
19
problem.add_constraint(lipm.pos(64) == np.array([1.0, -1.0]))
20
problem.add_constraint(lipm.vel(64) == np.array([0.0, 0.0]))
0 commit comments