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

Upstream changes #142

Merged
Merged
Show file tree
Hide file tree
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: 1 addition & 2 deletions command_language/demo/command_language_demo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ int main(int argc, char** argv)
QApplication app(argc, argv);

// Create Program
CompositeInstruction program(
"cartesian_program", CompositeInstructionOrder::ORDERED, ManipulatorInfo("manipulator", "base_link", "tool0"));
CompositeInstruction program("cartesian_program", ManipulatorInfo("manipulator", "base_link", "tool0"));

// Set the robot initial state
std::vector<std::string> joint_names;
Expand Down
2 changes: 1 addition & 1 deletion common/src/environment_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ void eventFilterHelper(QObject* /*obj*/,
auto state_solver = env.getStateSolver();

// We want to disable the allowed contact function for this process so it is set null
contact_manager->setIsContactAllowedFn(nullptr);
contact_manager->setContactAllowedValidator(nullptr);
tesseract_collision::ContactResultMap results;
tesseract_collision::ContactRequest request;
request.type = tesseract_collision::ContactTestType::ALL;
Expand Down
Loading