// Copyright (c) 2008 Michael Miceli and Christopher Miceli // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef AP_GRAPH_HPP #define AP_GRAPH_HPP #define BOOST_NO_HASH #include #include namespace AllPairs { struct VertexProperty { std::string name; }; struct EdgeProperty { double weight; }; typedef boost::adjacency_list Graph; typedef boost::graph_traits::vertex_descriptor Vertex; typedef boost::graph_traits::edge_descriptor Edge; } #endif //AP_GRAPH_HPP