]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/graph/test/graph_type.hpp
f987b80c450aa5ff2be20bb0b1b65ac8568b80a8
[ceph.git] / ceph / src / boost / libs / graph / test / graph_type.hpp
1 //=======================================================================
2 // Copyright 2002 Indiana University.
3 // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek
4 //
5 // Distributed under the Boost Software License, Version 1.0. (See
6 // accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
8 //=======================================================================
9
10 #include <boost/graph/adjacency_list.hpp>
11 typedef boost::adjacency_list<boost::setS, boost::setS, boost::undirectedS, boost::property<vertex_id_t, std::size_t>, boost::property<edge_id_t, std::size_t> > Graph;
12 typedef boost::property<vertex_id_t, std::size_t> VertexId;
13 typedef boost::property<edge_id_t, std::size_t> EdgeID;