Skip to content
Snippets Groups Projects
Commit aee74b90 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Edge::build: Fix bug introduced by merge 015e0107

parent 9c3ea5d8
No related branches found
No related tags found
No related merge requests found
...@@ -290,17 +290,7 @@ namespace hpp { ...@@ -290,17 +290,7 @@ namespace hpp {
} }
hppDout(info, "q2 does not satisfy the constraints"); hppDout(info, "q2 does not satisfy the constraints");
} }
core::SteeringMethodPtr_t sm (steeringMethod_->get()); return false;
if (!sm) {
buildPathConstraint ();
}
if (!sm) {
std::ostringstream oss;
oss << "No steering method set in edge " << name () << ".";
throw std::runtime_error (oss.str ().c_str ());
}
path = (*sm) (q1, q2);
return path;
} }
bool Edge::applyConstraints (core::NodePtr_t nnear, ConfigurationOut_t q) const bool Edge::applyConstraints (core::NodePtr_t nnear, ConfigurationOut_t q) const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment