Skip to content
Snippets Groups Projects
Commit 6f53f9db authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Update to modification in hpp-core,

  - make ProblemSolver::initializeProblem virtual,
  - use shared pointers for ConfigurationShooter.
parent 702b4178
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ namespace hpp {
}
protected:
void initializeProblem (ProblemPtr_t problem);
virtual void initializeProblem (ProblemPtr_t problem);
private:
DevicePtr_t robot_;
......
......@@ -208,7 +208,7 @@ namespace hpp {
ManipulationPlanner::ManipulationPlanner (const Problem& problem,
const core::RoadmapPtr_t& roadmap) :
core::PathPlanner (problem, roadmap),
shooter_ (new core::BasicConfigurationShooter (problem.robot ())),
shooter_ (problem.configurationShooter()),
problem_ (problem), qProj_ (problem.robot ()->configSize ())
{}
......
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