#include <lanelet2_core/primitives/LaneletOrArea.h>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/filtered_graph.hpp>
#include <map>
#include <utility>
#include "lanelet2_routing/Exceptions.h"
#include "lanelet2_routing/Forward.h"
Go to the source code of this file.
|
using | lanelet::routing::internal::FilteredGraphDesc = std::pair< size_t, RelationType > |
|
template<typename BaseGraphT > |
using | lanelet::routing::internal::FilteredGraphT = boost::filtered_graph< BaseGraphT, EdgeCostFilter< BaseGraphT > > |
|
template<typename BaseGraphT > |
using | lanelet::routing::internal::FilteredGraphTraits = boost::graph_traits< FilteredGraphT< BaseGraphT > > |
|
using | lanelet::routing::internal::FilteredRouteGraph = FilteredGraphT< RouteGraphType > |
|
using | lanelet::routing::internal::FilteredRoutingGraph = FilteredGraphT< GraphType > |
|
using | lanelet::routing::internal::GraphTraits = boost::graph_traits< GraphType > |
|
using | lanelet::routing::internal::GraphType = boost::adjacency_list< boost::vecS, boost::vecS, boost::bidirectionalS, VertexInfo, EdgeInfo > |
| General graph type definitions. More...
|
|
using | lanelet::routing::internal::LaneletOrAreaToVertex = std::unordered_map< ConstLaneletOrArea, std::uint32_t > |
|
using | lanelet::routing::internal::RouteGraphType = boost::adjacency_list< boost::vecS, boost::vecS, boost::bidirectionalS, RouteVertexInfo, EdgeInfo > |
|