mirror of
https://github.com/boostorg/graph.git
synced 2026-02-01 20:42:11 +00:00
with the other functions. Also added the remove_edge(e, g) and remove_edge(iter, g) functions. [SVN r7856]
5 lines
329 B
C++
5 lines
329 B
C++
#include <boost/graph/adjacency_list.hpp>
|
|
typedef boost::adjacency_list<boost::vecS, boost::vecS, boost::bidirectionalS, 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;
|