mirror of
https://github.com/boostorg/graph.git
synced 2026-01-26 18:42:12 +00:00
5 lines
328 B
C++
5 lines
328 B
C++
#include <boost/graph/adjacency_list.hpp>
|
|
typedef boost::adjacency_list<boost::listS, boost::listS, boost::undirectedS, boost::property<vertex_id_t, std::size_t>, boost::property<edge_id_t, std::size_t> > Graph;
|
|
typedef boost::property<vertex_id_t, std::size_t> VertexID;
|
|
typedef boost::property<edge_id_t, std::size_t> EdgeID;
|