29 #ifndef HPP_MANIPULATION_STEERING_METHOD_GRAPH_HH
30 #define HPP_MANIPULATION_STEERING_METHOD_GRAPH_HH
32 #include <hpp/core/problem-solver.hh>
33 #include <hpp/core/steering-method.hh>
40 namespace manipulation {
46 return steeringMethod_;
60 void init(SteeringMethodWkPtr_t weak) { core::SteeringMethod::init(weak); }
68 namespace steeringMethod {
69 using core::PathPtr_t;
72 typedef core::SteeringMethodBuilder_t SteeringMethodBuilder_t;
87 return createCopy(weak_.lock());
110 template <
typename T>
113 gsm->innerSteeringMethod(T::create(problem));
SteeringMethod(const SteeringMethod &other)
Copy constructor.
void innerSteeringMethod(const core::SteeringMethodPtr_t &sm)
Definition: graph.hh:49
core::SteeringMethodPtr_t steeringMethod_
The encapsulated steering method.
Definition: graph.hh:65
ProblemConstPtr_t problem_
A pointer to the manipulation problem.
Definition: graph.hh:63
SteeringMethod(const ProblemConstPtr_t &problem)
Constructor.
void init(SteeringMethodWkPtr_t weak)
Definition: graph.hh:60
const core::SteeringMethodPtr_t & innerSteeringMethod() const
Definition: graph.hh:45
Graph(const Graph &)
Copy constructor.
void init(GraphWkPtr_t weak)
Definition: graph.hh:100
static GraphPtr_t create(const core::ProblemConstPtr_t &problem)
Graph(const ProblemConstPtr_t &problem)
Constructor.
static GraphPtr_t createCopy(const GraphPtr_t &other)
Create copy and return shared pointer.
virtual core::SteeringMethodPtr_t copy() const
Copy instance and return shared pointer.
Definition: graph.hh:86
virtual PathPtr_t impl_compute(ConfigurationIn_t q1, ConfigurationIn_t q2) const
#define HPP_MANIPULATION_DLLAPI
Definition: config.hh:88
shared_ptr< Graph > GraphPtr_t
Definition: fwd.hh:41
shared_ptr< const Problem > ProblemConstPtr_t
Definition: fwd.hh:66
pinocchio::ConfigurationIn_t ConfigurationIn_t
Definition: fwd.hh:49
shared_ptr< SteeringMethod > SteeringMethodPtr_t
Definition: fwd.hh:112