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

Cosmetic changes

* Remove useless lines
* Fix documentation
parent b4061725
No related branches found
No related tags found
No related merge requests found
...@@ -46,12 +46,12 @@ namespace hpp { ...@@ -46,12 +46,12 @@ namespace hpp {
/// One step of extension. /// One step of extension.
/// ///
/// A set of constraints is choosen using the graph of constraints. /// A set of constraints is chosen using the graph of constraints.
/// A constraint extension is done using a choosen set. /// A constraint extension is done using a chosen set.
/// ///
virtual void oneStep (); virtual void oneStep ();
/// Extend a the configuration q_near toward q_rand. /// Extend configuration q_near toward q_rand.
/// \param q_near the configuration to be extended. /// \param q_near the configuration to be extended.
/// \param q_rand the configuration toward extension is performed. /// \param q_rand the configuration toward extension is performed.
/// \retval validPath the longest valid path (possibly of length 0), /// \retval validPath the longest valid path (possibly of length 0),
......
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
#include "hpp/manipulation/problem.hh" #include "hpp/manipulation/problem.hh"
#include "hpp/manipulation/roadmap.hh" #include "hpp/manipulation/roadmap.hh"
#include "hpp/manipulation/roadmap-node.hh" #include "hpp/manipulation/roadmap-node.hh"
#include "hpp/manipulation/graph-steering-method.hh"
#include "hpp/manipulation/graph/edge.hh" #include "hpp/manipulation/graph/edge.hh"
#include "hpp/manipulation/graph/node-selector.hh" #include "hpp/manipulation/graph/node-selector.hh"
...@@ -186,7 +185,6 @@ namespace hpp { ...@@ -186,7 +185,6 @@ namespace hpp {
return false; return false;
} }
HPP_STOP_TIMECOUNTER (applyConstraints); HPP_STOP_TIMECOUNTER (applyConstraints);
GraphSteeringMethodPtr_t sm = problem_.steeringMethod();
core::PathPtr_t path; core::PathPtr_t path;
HPP_START_TIMECOUNTER (buildPath); HPP_START_TIMECOUNTER (buildPath);
if (!edge->build (path, *q_near, qProj_)) { if (!edge->build (path, *q_near, qProj_)) {
......
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