Skip to content

Commit

Permalink
Use Romeo instead of Baxter in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
florent-lamiraux committed May 14, 2020
1 parent e9792cc commit e21490c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/solver-by-substitution.cc
Original file line number Diff line number Diff line change
Expand Up @@ -760,16 +760,16 @@ BOOST_AUTO_TEST_CASE(hybrid_solver_rhs)
{
using namespace hpp::constraints;

DevicePtr_t device (makeDevice (ManipulatorArm2));
DevicePtr_t device (makeDevice (HumanoidRomeo));
BOOST_REQUIRE (device);

Configuration_t q, qrand;

JointPtr_t left = device->getJointByName ("left_w2");
JointPtr_t left = device->getJointByName ("LWristPitch");
TransformationSE3::Ptr_t frame (TransformationSE3::create
("left_w2", device, left, Transform3f::Identity()));
("LWristPitch", device, left, Transform3f::Identity()));
Transformation::Ptr_t logFrame (Transformation::create
("left_w2", device, left, Transform3f::Identity()));
("LWristPitch", device, left, Transform3f::Identity()));

// Check the logFrame if the log6 of frame.
LiegroupElement valueFrame (frame->outputSpace()),
Expand Down

0 comments on commit e21490c

Please sign in to comment.