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

Remove unnecessary assert

parent cdd453eb
No related branches found
No related tags found
No related merge requests found
......@@ -119,8 +119,8 @@ namespace hpp {
while (!possibleEdges.empty ()) {
constraints = constraintGraph_->pathConstraint (possibleEdges.back());
constraints->offsetFromConfig(newPath (newTmin));
assert (constraints->isSatisfied (newPath (newTmin)));
if (constraints->isSatisfied (newPath (newTmax))) {
if (constraints->isSatisfied (newPath (newTmin))
&& constraints->isSatisfied (newPath (newTmax))) {
pathNoCollision->constraints (constraints);
impl_validate (pathNoCollision, reverse, validPart);
return false;
......
......@@ -31,14 +31,18 @@ namespace hpp {
PathPtr_t GraphSteeringMethod::impl_compute (ConfigurationIn_t q1, ConfigurationIn_t q2) const
{
value_type length = (*distance_) (q1,q2);
std::vector< graph::Edges_t > possibleEdges =
graph_->getEdge (graph_->getNode (q1), graph_->getNode (q2));
std::vector< graph::Edges_t > possibleEdges;
try {
possibleEdges = graph_->getEdge (graph_->getNode (q1), graph_->getNode (q2));
} catch (const std::logic_error& e) {
hppDout (error, e.what ());
return PathPtr_t ();
}
ConstraintSetPtr_t constraints;
while (!possibleEdges.empty()) {
constraints = graph_->pathConstraint (possibleEdges.back());
constraints->offsetFromConfig(q1);
assert (constraints->isSatisfied (q1));
if (constraints->isSatisfied (q2)) {
if (constraints->isSatisfied (q1) && constraints->isSatisfied (q2)) {
PathPtr_t path = core::StraightPath::create (robot_.lock(), q1, q2, length);
path->constraints (constraints);
return path;
......
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