Robotics Library  0.7.0
Public Member Functions | List of all members
rl::plan::RrtCon Class Reference

RRT-Connect1. More...

#include <RrtCon.h>

Inheritance diagram for rl::plan::RrtCon:
Inheritance graph
[legend]

Public Member Functions

 RrtCon ()
 
virtual ~RrtCon ()
 
virtual ::std::string getName () const
 
bool solve ()
 Find collision free path. More...
 
- Public Member Functions inherited from rl::plan::RrtGoalBias
 RrtGoalBias ()
 
virtual ~RrtGoalBias ()
 
virtual ::std::string getName () const
 
virtual void seed (const ::std::mt19937::result_type &value)
 
- Public Member Functions inherited from rl::plan::Rrt
 Rrt (const ::std::size_t &trees=1)
 
virtual ~Rrt ()
 
NearestNeighborsgetNearestNeighbors (const ::std::size_t &i) const
 
virtual ::std::size_t getNumEdges () const
 
virtual ::std::size_t getNumVertices () const
 
virtual VectorList getPath ()
 Get solution path. More...
 
virtual void reset ()
 Reset planner. More...
 
void setNearestNeighbors (NearestNeighbors *nearestNeighbors, const ::std::size_t &i)
 
- Public Member Functions inherited from rl::plan::Planner
 Planner ()
 
virtual ~Planner ()
 
bool verify ()
 Vertify that start and goal configuration are within joint limits and collision free. More...
 

Additional Inherited Members

- Public Attributes inherited from rl::plan::RrtGoalBias
::rl::math::Real probability
 Probability of choosing goal configuration. More...
 
- Public Attributes inherited from rl::plan::Rrt
::rl::math::Real delta
 Configuration step size. More...
 
::rl::math::Real epsilon
 Epsilon for configuration comparison. More...
 
Samplersampler
 
- Public Attributes inherited from rl::plan::Planner
::std::chrono::steady_clock::duration duration
 Upper bound for search. More...
 
::rl::math::Vectorgoal
 Goal configuration. More...
 
SimpleModelmodel
 
::rl::math::Vectorstart
 Start configuration. More...
 
Viewerviewer
 
- Protected Types inherited from rl::plan::Rrt
typedef ::boost::adjacency_list< ::boost::listS, ::boost::listS, ::boost::bidirectionalS, ::std::shared_ptr< VertexBundle >, ::boost::no_property, TreeBundleTree
 
typedef ::boost::adjacency_list_traits< ::boost::listS, ::boost::listS, ::boost::bidirectionalS, ::boost::listS >::vertex_descriptor Vertex
 
typedef ::boost::graph_traits< Tree >::edge_descriptor Edge
 
typedef ::boost::graph_traits< Tree >::edge_iterator EdgeIterator
 
typedef ::std::pair< EdgeIterator, EdgeIteratorEdgeIteratorPair
 
typedef ::std::pair< ::rl::math::Real, VertexNeighbor
 
typedef ::boost::graph_traits< Tree >::vertex_iterator VertexIterator
 
typedef ::std::pair< VertexIterator, VertexIteratorVertexIteratorPair
 
- Protected Member Functions inherited from rl::plan::RrtGoalBias
virtual ::rl::math::Vector choose ()
 
::std::uniform_real_distribution< ::rl::math::Real >::result_type rand ()
 
- Protected Member Functions inherited from rl::plan::Rrt
virtual Edge addEdge (const Vertex &u, const Vertex &v, Tree &tree)
 
virtual Vertex addVertex (Tree &tree, const VectorPtr &q)
 
bool areEqual (const ::rl::math::Vector &lhs, const ::rl::math::Vector &rhs) const
 
virtual ::rl::math::Vector choose ()
 
virtual Vertex connect (Tree &tree, const Neighbor &nearest, const ::rl::math::Vector &chosen)
 
virtual Vertex extend (Tree &tree, const Neighbor &nearest, const ::rl::math::Vector &chosen)
 
virtual Neighbor nearest (const Tree &tree, const ::rl::math::Vector &chosen)
 
- Static Protected Member Functions inherited from rl::plan::Rrt
static VertexBundleget (const Tree &tree, const Vertex &v)
 
- Protected Attributes inherited from rl::plan::RrtGoalBias
::std::uniform_real_distribution< ::rl::math::RealrandDistribution
 
::std::mt19937 randEngine
 
- Protected Attributes inherited from rl::plan::Rrt
::std::vector< Vertexbegin
 
::std::vector< Vertexend
 
::std::vector< Treetree
 
- Protected Attributes inherited from rl::plan::Planner
::std::chrono::steady_clock::time_point time
 

Detailed Description

RRT-Connect1.

James J. Kuffner, Jr. and Steven M. LaValle. RRT-connect: An efficient approach to single-query path planning. In Proceedings of the IEEE International Conference on Robotics and Automation, pages 995-1001, April 2000.

http://dx.doi.org/10.1109/ROBOT.2000.844730

Constructor & Destructor Documentation

◆ RrtCon()

rl::plan::RrtCon::RrtCon ( )

◆ ~RrtCon()

rl::plan::RrtCon::~RrtCon ( )
virtual

Member Function Documentation

◆ getName()

std::string rl::plan::RrtCon::getName ( ) const
virtual

Reimplemented from rl::plan::Rrt.

◆ solve()

bool rl::plan::RrtCon::solve ( )
virtual

Find collision free path.

Reimplemented from rl::plan::Rrt.


The documentation for this class was generated from the following files: