Skip to content

Commit

Permalink
Missed references
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Mar 10, 2023
1 parent 46116ba commit 665499f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ bool TimeOptimalTrajectoryGeneration::computeTimeStamps(robot_trajectory::RobotT
const moveit::core::RobotModel& rmodel = group->getParentModel();
const std::vector<std::string>& vars = group->getVariableNames();
std::vector<size_t> indices;
if (!group->computeIKIndexBijection(group->getActiveJointModelNames(), indices))
if (!group->computeJointVariableIndices(group->getActiveJointModelNames(), indices))
{
RCLCPP_ERROR(LOGGER, "Failed to get active variable indices.");
}
Expand Down Expand Up @@ -991,7 +991,7 @@ bool TimeOptimalTrajectoryGeneration::computeTimeStamps(
const moveit::core::RobotModel& rmodel = group->getParentModel();
const std::vector<std::string>& vars = group->getVariableNames();
std::vector<size_t> indices;
if (!group->computeIKIndexBijection(group->getActiveJointModelNames(), indices))
if (!group->computeJointVariableIndices(group->getActiveJointModelNames(), indices))
{
RCLCPP_ERROR(LOGGER, "Failed to get active variable indices.");
}
Expand Down

0 comments on commit 665499f

Please sign in to comment.