// (C) Copyright 2007-2009 Andrew Sutton // // Use, modification and distribution are subject to the // Boost Software License, Version 1.0 (See accompanying file // LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include #include #include using namespace std; using namespace boost; // number of vertices in the graph static const unsigned N = 5; template struct vertex_vector { typedef graph_traits traits; typedef vector type; }; template void build_graph(Graph& g, typename vertex_vector::type& v) { // add vertices for(size_t i = 0; i < N; ++i) { v[i] = add_vertex(g); } // add edges add_edge(v[0], v[1], g); add_edge(v[1], v[2], g); add_edge(v[2], v[0], g); add_edge(v[3], v[4], g); add_edge(v[4], v[0], g); } template void test_undirected() { typedef typename graph_traits::vertex_descriptor Vertex; typedef typename graph_traits::edge_descriptor Edge; typedef exterior_vertex_property CentralityProperty; typedef typename CentralityProperty::container_type CentralityContainer; typedef typename CentralityProperty::map_type CentralityMap; typedef exterior_vertex_property DistanceProperty; typedef typename DistanceProperty::matrix_type DistanceMatrix; typedef typename DistanceProperty::matrix_map_type DistanceMatrixMap; typedef constant_property_map WeightMap; Graph g; vector v(N); build_graph(g, v); CentralityContainer centralities(num_vertices(g)); DistanceMatrix distances(num_vertices(g)); CentralityMap cm(centralities, g); DistanceMatrixMap dm(distances, g); WeightMap wm(1); floyd_warshall_all_pairs_shortest_paths(g, dm, weight_map(wm)); all_closeness_centralities(g, dm, cm); BOOST_ASSERT(cm[v[0]] == double(1)/5); BOOST_ASSERT(cm[v[1]] == double(1)/7); BOOST_ASSERT(cm[v[2]] == double(1)/7); BOOST_ASSERT(cm[v[3]] == double(1)/9); BOOST_ASSERT(cm[v[4]] == double(1)/6); } template void test_directed() { typedef typename graph_traits::vertex_descriptor Vertex; typedef typename graph_traits::edge_descriptor Edge; typedef exterior_vertex_property CentralityProperty; typedef typename CentralityProperty::container_type CentralityContainer; typedef typename CentralityProperty::map_type CentralityMap; typedef exterior_vertex_property DistanceProperty; typedef typename DistanceProperty::matrix_type DistanceMatrix; typedef typename DistanceProperty::matrix_map_type DistanceMatrixMap; typedef constant_property_map WeightMap; Graph g; vector v(N); build_graph(g, v); CentralityContainer centralities(num_vertices(g)); DistanceMatrix distances(num_vertices(g)); CentralityMap cm(centralities, g); DistanceMatrixMap dm(distances, g); WeightMap wm(1); floyd_warshall_all_pairs_shortest_paths(g, dm, weight_map(wm)); all_closeness_centralities(g, dm, cm); BOOST_ASSERT(cm[v[0]] == double(0)); BOOST_ASSERT(cm[v[1]] == double(0)); BOOST_ASSERT(cm[v[2]] == double(0)); BOOST_ASSERT(cm[v[3]] == double(1)/10); BOOST_ASSERT(cm[v[4]] == double(0)); } int main(int, char *[]) { typedef undirected_graph<> Graph; typedef directed_graph<> Digraph; test_undirected(); test_directed(); }