wbc
test_robot_model.hpp
Go to the documentation of this file.
1#ifndef TEST_ROBOT_MODEL_HPP
2#define TEST_ROBOT_MODEL_HPP
3
7
8namespace wbc {
12void testFK(RobotModelPtr robot_model, const std::string &tip_frame, bool verbose=false);
13void testSpaceJacobian(RobotModelPtr robot_model, const std::string &tip_frame, bool verbose=false);
14void testBodyJacobian(RobotModelPtr robot_model, const std::string &tip_frame, bool verbose=false);
15void testCoMJacobian(RobotModelPtr robot_model, bool verbose=false);
16void testDynamics(RobotModelPtr robot_model, bool verbose);
17void testInverseDynamics(RobotModelPtr robot_model, bool verbose);
18}
19#endif
The JointState class describes either the state or the command for a set of joints,...
Definition JointState.hpp:13
Definition RigidBodyState.hpp:10
Definition ContactsAccelerationConstraint.cpp:3
void testSpaceJacobian(RobotModelPtr robot_model, const string &tip_frame, bool verbose)
Definition test_robot_model.cpp:89
void printRbs(types::RigidBodyState rbs)
Definition test_robot_model.cpp:7
std::shared_ptr< RobotModel > RobotModelPtr
Definition RobotModel.hpp:315
types::RigidBodyState makeRandomFloatingBaseState()
Definition test_robot_model.cpp:27
void testCoMJacobian(RobotModelPtr robot_model, bool verbose)
Definition test_robot_model.cpp:182
types::JointState makeRandomJointState(uint n)
Definition test_robot_model.cpp:16
void testInverseDynamics(RobotModelPtr robot_model, bool verbose)
Definition test_robot_model.cpp:226
void testBodyJacobian(RobotModelPtr robot_model, const string &tip_frame, bool verbose)
Definition test_robot_model.cpp:133
void testDynamics(RobotModelPtr robot_model, bool verbose)
void testFK(RobotModelPtr robot_model, const string &tip_frame, bool verbose)
Definition test_robot_model.cpp:40