32 #ifndef INDUSTRIAL_UTILS_H_ 33 #define INDUSTRIAL_UTILS_H_ 54 bool isSimilar(std::vector<std::string> lhs, std::vector<std::string> rhs);
65 bool isSame(
const std::vector<std::string> & lhs,
const std::vector<std::string> & rhs);
79 std::vector<std::string> &joint_names);
bool findChainJointNames(const urdf::LinkConstSharedPtr &link, bool ignore_fixed, std::vector< std::string > &joint_names)
bool isSame(const std::vector< std::string > &lhs, const std::vector< std::string > &rhs)
Checks to see if sets are the same(same members, same order) Wraps std::equal method.
bool isSimilar(std::vector< std::string > lhs, std::vector< std::string > rhs)
Checks to see if sets are similar(same members, any order) NOTE: Vectors are passed by copy because t...