|
::std::size_t | degree |
| Maximum degree per vertex. More...
|
|
::std::size_t | k |
| Maximum number of tested neighbors. More...
|
|
bool | kd |
| Use kd-tree for nearest neighbor search instead of brute-force. More...
|
|
::rl::math::Real | radius |
| Maximum radius for connecting neighbors. More...
|
|
Sampler * | sampler |
|
Verifier * | verifier |
|
::rl::math::Real | duration |
| Upper bound for search [s]. More...
|
|
::rl::math::Vector * | goal |
| Goal configuration. More...
|
|
SimpleModel * | model |
|
::rl::math::Vector * | start |
| Start configuration. More...
|
|
Viewer * | viewer |
|
typedef ::boost::adjacency_list_traits< ::boost::listS, ::boost::listS, ::boost::undirectedS, ::boost::listS >::vertex_descriptor | Vertex |
|
typedef ::boost::adjacency_list< ::boost::listS, ::boost::listS, ::boost::undirectedS, VertexBundle, EdgeBundle, GraphBundle > | Graph |
|
typedef ::std::pair< const ::rl::math::Vector *, Vertex > | QueryItem |
|
typedef ::CGAL::Search_traits< ::rl::math::Real, QueryItem, const ::rl::math::Real *, CartesianIterator > | SearchTraits |
|
typedef Orthogonal_k_neighbor_search< SearchTraits, Distance > | NeighborSearch |
|
typedef NeighborSearch::Tree | NeighborSearchTree |
|
typedef ::boost::shared_ptr< NeighborSearchTree > | NeighborSearchTreePtr |
|
typedef ::std::vector< NeighborSearchTreePtr > | NearestNeighbors |
|
typedef ::boost::graph_traits< Graph >::edge_descriptor | Edge |
|
typedef ::boost::graph_traits< Graph >::edge_iterator | EdgeIterator |
|
typedef ::std::pair< EdgeIterator, EdgeIterator > | EdgeIteratorPair |
|
typedef ::boost::graph_traits< Graph >::vertex_iterator | VertexIterator |
|
typedef ::std::pair< VertexIterator, VertexIterator > | VertexIteratorPair |
|
typedef ::boost::property_map< Graph, void *VertexBundle::* >::type | VertexParentMap |
|
typedef ::boost::property_map< Graph, ::std::size_t VertexBundle::* >::type | VertexRankMap |
|
typedef ::std::pair< Vertex, ::rl::math::Real > | Neighbor |
|
typedef ::std::priority_queue< Neighbor, ::std::vector< Neighbor >, Compare > | NeighborQueue |
|
Edge | addEdge (const Vertex &u, const Vertex &v, const ::rl::math::Real &weight) |
|
void | addPoint (NearestNeighbors &nn, const QueryItem &p) |
|
Vertex | addVertex (const VectorPtr &q) |
|
void | insert (const Vertex &vertex) |
|
Vertex | begin |
|
::boost::disjoint_sets< VertexRankMap, VertexParentMap > | ds |
|
Vertex | end |
|
Graph | graph |
|
::rl::util::Timer | timer |
|
Probabilistic Roadmap using Utility-Guided Sampling.