Skip to content

Commit

Permalink
code fix on wrong substitution
Browse files Browse the repository at this point in the history
  • Loading branch information
toru-kuga authored and v4hn committed Aug 16, 2021
1 parent 9503bfb commit 12f1199
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moveit_core/kinematic_constraints/src/utils.cpp
Expand Up @@ -145,8 +145,8 @@ moveit_msgs::Constraints constructGoalConstraints(const moveit::core::RobotState
{
goal.joint_constraints[i].joint_name = jmg->getVariableNames()[i];
goal.joint_constraints[i].position = vals[i];
goal.joint_constraints[i].tolerance_above = tolerance_below;
goal.joint_constraints[i].tolerance_below = tolerance_above;
goal.joint_constraints[i].tolerance_above = tolerance_above;
goal.joint_constraints[i].tolerance_below = tolerance_below;
goal.joint_constraints[i].weight = 1.0;
}

Expand Down

0 comments on commit 12f1199

Please sign in to comment.