2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-28 19:22:11 +00:00
Files
graph/test/graph_type.hpp
Jeremy Siek b41490bdc8 auto-gen version with slist had accidentally been checked in.
Changed to a graph type using list instead


[SVN r9373]
2001-03-02 01:07:18 +00:00

5 lines
327 B
C++

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