Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug Fix : pair-collision.hxx, changing the method to check the pair_id with collisionPair.size() #1178

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion include/crocoddyl/multibody/residuals/pair-collision.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ ResidualModelPairCollisionTpl<Scalar>::ResidualModelPairCollisionTpl(
geom_model_(geom_model),
pair_id_(pair_id),
joint_id_(joint_id) {
if (static_cast<pinocchio::FrameIndex>(geom_model->ngeoms) <= pair_id) {
if (static_cast<pinocchio::FrameIndex>(geom_model->collisionPairs.size()) <=
pair_id) {
throw_pretty(
"Invalid argument: "
<< "the pair index is wrong (it does not exist in the geometry model)");
Expand Down
Loading