Skip to content

Commit 23fa376

Browse files
author
earlaud
committed
Roughly tune contact weight in test
1 parent 2ee11a9 commit 23fa376

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/inverse_dynamics.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ BOOST_AUTO_TEST_CASE(KinodynamicsID_contact)
6464
KinodynamicsID solver(
6565
model_handler, KinodynamicsID::Settings::Default()
6666
.set_w_base(10.0)
67-
.set_w_posture(1e-2)
68-
.set_w_contact_motion(1e-5)
69-
.set_w_contact_force(1.0));
67+
.set_w_posture(1.0)
68+
.set_w_contact_force(1.0)
69+
.set_w_contact_motion(1e-1));
7070

7171
const Eigen::VectorXd q_target = model_handler.getReferenceState().head(model_handler.getModel().nq);
7272
Eigen::VectorXd f_target = Eigen::VectorXd::Zero(4 * 3);

0 commit comments

Comments
 (0)