2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-27 19:02:12 +00:00
Files
graph/test/graph_type.hpp
Jeremy Siek c0176700a6 removed some redundant files
[SVN r11514]
2001-11-01 20:59:19 +00:00

5 lines
330 B
C++

#include <boost/graph/adjacency_list.hpp>
typedef boost::adjacency_list<boost::slistS, boost::slistS, 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;