BundleSpacePropagator.h
1 #ifndef OMPL_MULTILEVEL_PLANNERS_BUNDLESPACE_PROPAGATORS_
2 #define OMPL_MULTILEVEL_PLANNERS_BUNDLESPACE_PROPAGATORS_
3 #include <ompl/multilevel/datastructures/BundleSpaceGraph.h>
4 
5 namespace ompl
6 {
7  namespace multilevel
8  {
10 
11  OMPL_CLASS_FORWARD(BundleSpaceGraph);
13 
15  {
16  public:
18  BundleSpacePropagator() = delete;
20 
21  virtual ~BundleSpacePropagator();
22 
23  virtual bool steer(const Configuration *from, const Configuration *to, Configuration *result) = 0;
24 
25  protected:
26  BundleSpaceGraph *bundleSpaceGraph_;
27  };
28  }
29 }
30 
31 #endif
A graph on a Bundle-space.
Main namespace. Contains everything in this library.
Definition: AppBase.h:21