libmove3d-planners
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Friends Macros Groups Pages
AStarReplanner.hpp
1 /*
2  * AStarReplanner.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 ASTAR_REPLANNER_HPP
12 #define ASTAR_REPLANNER_HPP
13 
14 #include "planner/Replanning/SimpleReplanner.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:
32  ~AStarReplanner();
33 
34  bool init();
35  void run();
36 
37 private:
38  HRICS::Navigation* navigation;
39 };
40 
41 #endif
Definition: HRICS_Navigation.hpp:27
This class holds a the robot represented by a kinematic chain.
Definition: robot.hpp:42
Definition: SimpleReplanner.hpp:28
Definition: AStarReplanner.hpp:28