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

Improve exception message in Edge::direction.

parent 672720b5
No related branches found
No related tags found
No related merge requests found
...@@ -18,14 +18,15 @@ ...@@ -18,14 +18,15 @@
#include <sstream> #include <sstream>
#include <hpp/util/pointer.hh>
#include <hpp/util/exception-factory.hh>
#include <hpp/pinocchio/configuration.hh> #include <hpp/pinocchio/configuration.hh>
#include <hpp/core/path-vector.hh> #include <hpp/core/path-vector.hh>
#include <hpp/core/path-validation.hh> #include <hpp/core/path-validation.hh>
#include <hpp/constraints/differentiable-function.hh> #include <hpp/constraints/differentiable-function.hh>
#include <hpp/util/pointer.hh>
#include "hpp/manipulation/device.hh" #include "hpp/manipulation/device.hh"
#include "hpp/manipulation/problem.hh" #include "hpp/manipulation/problem.hh"
#include "hpp/manipulation/graph-steering-method.hh" #include "hpp/manipulation/graph-steering-method.hh"
...@@ -81,8 +82,11 @@ namespace hpp { ...@@ -81,8 +82,11 @@ namespace hpp {
if ( (!src_contains_q0 && !src_contains_q1) if ( (!src_contains_q0 && !src_contains_q1)
|| (!dst_contains_q0 && !dst_contains_q1) || (!dst_contains_q0 && !dst_contains_q1)
|| (!src_contains_q0 && !dst_contains_q0)) || (!src_contains_q0 && !dst_contains_q0))
throw std::runtime_error ("This path does not seem to have been " HPP_THROW (std::runtime_error,
"generated by this edge."); "Edge " << name() << " does not seem to have generated path from"
<< pinocchio::displayConfig(q0) << " to "
<< pinocchio::displayConfig(q1)
);
return !(src_contains_q0 && (!src_contains_q1 || dst_contains_q1)); return !(src_contains_q0 && (!src_contains_q1 || dst_contains_q1));
} }
...@@ -100,8 +104,11 @@ namespace hpp { ...@@ -100,8 +104,11 @@ namespace hpp {
if ( (!src_contains_q0 && !src_contains_q1) if ( (!src_contains_q0 && !src_contains_q1)
|| (!dst_contains_q0 && !dst_contains_q1) || (!dst_contains_q0 && !dst_contains_q1)
|| (!src_contains_q0 && !dst_contains_q0)) || (!src_contains_q0 && !dst_contains_q0))
throw std::runtime_error ("This path does not seem to have been " HPP_THROW (std::runtime_error,
"generated by this edge."); "Edge " << name() << " does not seem to have generated path from"
<< pinocchio::displayConfig(q0) << " to "
<< pinocchio::displayConfig(q1)
);
return !(src_contains_q0 && (!src_contains_q1 || dst_contains_q1)); return !(src_contains_q0 && (!src_contains_q1 || dst_contains_q1));
} }
......
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