hpp-core  4.9.0
Implement basic classes for canonical path planning for kinematic chains.
path-planner.hh
Go to the documentation of this file.
1 //
2 // Copyright (c) 2014 CNRS
3 // Authors: Florent Lamiraux
4 //
5 // This file is part of hpp-core
6 // hpp-core is free software: you can redistribute it
7 // and/or modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation, either version
9 // 3 of the License, or (at your option) any later version.
10 //
11 // hpp-core is distributed in the hope that it will be
12 // useful, but WITHOUT ANY WARRANTY; without even the implied warranty
13 // of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // General Lesser Public License for more details. You should have
15 // received a copy of the GNU Lesser General Public License along with
16 // hpp-core If not, see
17 // <http://www.gnu.org/licenses/>.
18 
19 #ifndef HPP_CORE_PATH_PLANNER_HH
20 # define HPP_CORE_PATH_PLANNER_HH
21 
22 # include <hpp/core/fwd.hh>
23 # include <hpp/core/config.hh>
24 
25 namespace hpp {
26  namespace core {
29 
34  class HPP_CORE_DLLAPI PathPlanner {
35  public:
36  virtual ~PathPlanner () {};
37 
39  virtual const RoadmapPtr_t& roadmap () const;
41  const Problem& problem () const;
45  virtual void startSolve ();
54  virtual PathVectorPtr_t solve ();
57  virtual void tryDirectPath() HPP_CORE_DEPRECATED;
59  virtual void tryConnectInitAndGoals ();
60 
62  virtual void oneStep () = 0;
64  virtual PathVectorPtr_t finishSolve (const PathVectorPtr_t& path);
66  void interrupt ();
68  void maxIterations (const unsigned long int& n);
70  void timeOut(const double& timeOut);
72  PathVectorPtr_t computePath () const;
73  protected:
77  PathPlanner (const Problem& problem);
81  PathPlanner (const Problem& problem, const RoadmapPtr_t& roadmap);
83  void init (const PathPlannerWkPtr_t& weak);
84  private:
86  const Problem& problem_;
88  const RoadmapPtr_t roadmap_;
89  bool interrupt_;
92  unsigned long int maxIterations_;
94  double timeOut_;
95 
97  PathPlannerWkPtr_t weakPtr_;
98  }; // class PathPlanner
100  } // namespace core
101 } // namespace hpp
102 #endif // HPP_CORE_PATH_PLANNER_HH
Vec3f n
Definition: problem.hh:48
Definition: path-planner.hh:34
virtual ~PathPlanner()
Definition: path-planner.hh:36
boost::shared_ptr< PathVector > PathVectorPtr_t
Definition: fwd.hh:176
boost::shared_ptr< Roadmap > RoadmapPtr_t
Definition: fwd.hh:181
constraints::Implicit NumericalConstraint HPP_CORE_DEPRECATED
Definition: fwd.hh:347