libmove3d-planners
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros Groups Pages
SoftmotionReplanner.hpp
1 /*
2  * SoftmotionReplanner.hpp
3  * libmove3D-planners
4  *
5  * Created by Benjamin Vadant on 01/02/13.
6  * Based on Jim Mainprice replanningAlgorithms.hpp/cpp
7  * Copyright 2013 LAAS/CNRS. All rights reserved.
8  *
9  */
10 
11 #ifndef SOFTMOTION_REPLANNER_HPP
12 #define SOFTMOTION_REPLANNER_HPP
13 
14 #include "planner/Replanning/Replanner.hpp"
15 #include "API/Trajectory/trajectory.hpp"
16 #include "API/ConfigSpace/configuration.hpp"
17 #include "API/Roadmap/graph.hpp"
18 
19 #include "HRI_costspace/HRICS_Navigation.hpp"
20 
21 #include "utils/ConfGenerator.h"
22 
23 #include "P3d-pkg.h"
24 #include "LightPlanner-pkg.h"
25 
26 #include <string>
27 
29 {
30 public:
33 
34  bool init();
35  void run();
36 
37 private:
38  //bool init_manipulationPlanner();
39  bool computeSoftmotion(MANPIPULATION_TRAJECTORY_CONF_STR &confs, p3d_traj* traj, SM_TRAJ& smTraj);
40  bool computeSoftmotion(p3d_traj* traj);
41  bool generateNewTrajectory(const std::vector<p3d_traj*>& trajs);
42 
43  ManipulationPlanner* manipulationPlanner;
44 };
45 
46 #endif
void run()
Replan a trajectory for the entire robot using the manipulation planner the trajectory is planned usi...
Definition: SoftmotionReplanner.cpp:162
This class holds a the robot represented by a kinematic chain.
Definition: robot.hpp:42
Base replanner.
Definition: Replanner.hpp:33
Definition: SoftmotionReplanner.hpp:28