Skip to content

Commit cffcaf4

Browse files
committedMar 12, 2025
Fixing LIPM test
1 parent 478366c commit cffcaf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/tests/lipm_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def assertNumpyEqual(self, a, b, msg=None, epsilon=1e-6):
1414
def test_lipm(self):
1515
problem = placo.Problem()
1616

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]))
17+
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]))
1818

1919
problem.add_constraint(lipm.pos(64) == np.array([1.0, -1.0]))
2020
problem.add_constraint(lipm.vel(64) == np.array([0.0, 0.0]))

0 commit comments

Comments
 (0)
Please sign in to comment.