-
Notifications
You must be signed in to change notification settings - Fork 104
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
Fixed issue where we were trying to reduce the error in two places #383
Fixed issue where we were trying to reduce the error in two places #383
Conversation
In fixing this error pointed out in the other PR, I also noticed in the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approved pending pipeline passes
Looks like the |
Looks like this fixed one of the |
The test that is still failing locally for me in the if (is_target_active_)
err = tesseract_common::calcTransformErrorJac(source_tf, target_tf);
else
err = tesseract_common::calcTransformErrorJac(target_tf, source_tf); to if (is_target_active_)
err = tesseract_common::calcTransformError(source_tf, target_tf);
else
err = tesseract_common::calcTransformError(target_tf, source_tf); In the Without that change, basically every single waypoint fails:
|
Seems to be working now, right? Only thing left are some clang-tidy warnings, as for Jammy the clang-tidy is newer and catches some more issues. (Or you commit as is and I'll make a separate PR fixing these clang-tidy issues, as I'm on Jammy.) |
Everything in this repo is working fine, but this change was motivated because of a discovered 2 failing tests in @Levi-Armstrong, do you have a recommendation on how we should best proceed? |
I am looking into it and I think I know what the issue is. I will let you know what I find. |
ac685dc
into
tesseract-robotics:master
Issue causing failed tests in
tesseract_planning
, pointed out in tesseract-robotics/tesseract_planning#389.