hpp-core  4.9.0
Implement basic classes for canonical path planning for kinematic chains.
plan-and-optimize.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_PLAN_AND_OPTIMIZE_HH
20 # define HPP_CORE_PLAN_AND_OPTIMIZE_HH
21 
22 # include <vector>
23 # include <hpp/core/config.hh>
24 # include <hpp/core/path-planner.hh>
25 
26 namespace hpp {
27  namespace core {
30 
35  class HPP_CORE_DLLAPI PlanAndOptimize : public PathPlanner
36  {
37  public:
39  static PlanAndOptimizePtr_t create (const PathPlannerPtr_t& pathPlanner);
41  virtual void startSolve ();
43  virtual void oneStep ();
45  virtual PathVectorPtr_t finishSolve (const PathVectorPtr_t& path);
46  void addPathOptimizer (const PathOptimizerPtr_t& optimizer);
47  protected:
48  PlanAndOptimize (const PathPlannerPtr_t& pathPlanner);
49  private:
50  typedef std::vector <PathOptimizerPtr_t> Optimizers_t;
51  const PathPlannerPtr_t pathPlanner_;
52  Optimizers_t optimizers_;
53  }; // class PlanAndOptimize
55  } // namespace core
56 } // namespace hpp
57 
58 # endif // HPP_CORE_PLAN_AND_OPTIMIZE_HH
Definition: plan-and-optimize.hh:35
ObjectFactory * create(ObjectFactory *parent=NULL, const XMLElement *element=NULL)
Definition: path-planner.hh:34
boost::shared_ptr< PlanAndOptimize > PlanAndOptimizePtr_t
Definition: fwd.hh:178
boost::shared_ptr< PathPlanner > PathPlannerPtr_t
Definition: fwd.hh:174
boost::shared_ptr< PathOptimizer > PathOptimizerPtr_t
Definition: fwd.hh:173
boost::shared_ptr< PathVector > PathVectorPtr_t
Definition: fwd.hh:176