graph/test/csr_graph_test.cpp
Douglas Gregor 549f85c80f Compressed sparse row graph type
[SVN r31865]
2005-12-01 18:24:00 +00:00

205 lines
7.5 KiB
C++

// Copyright 2005 The Trustees of Indiana University.
// Use, modification and distribution is subject to 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)
// Authors: Jeremiah Willcock
// Douglas Gregor
// Andrew Lumsdaine
// Test for the compressed sparse row graph type
#include <boost/graph/compressed_sparse_row_graph.hpp>
#include <boost/test/minimal.hpp>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/erdos_renyi_generator.hpp>
#include <boost/graph/graph_utility.hpp>
#include <boost/random/linear_congruential.hpp>
#include <cassert>
#include <iostream>
#include <vector>
#include <algorithm>
#include <ctime>
#include <boost/lexical_cast.hpp>
#include <boost/iterator/transform_iterator.hpp>
#include <boost/limits.hpp>
// Algorithms to test against
#include <boost/graph/betweenness_centrality.hpp>
#include <boost/graph/kruskal_min_spanning_tree.hpp>
typedef boost::adjacency_list<> Graph;
typedef boost::erdos_renyi_iterator<boost::minstd_rand, Graph> ERGen;
typedef boost::compressed_sparse_row_graph<> CSRGraph;
template <class G1, class VI1, class G2, class VI2, class IsomorphismMap>
void assert_graphs_equal(const G1& g1, const VI1& vi1,
const G2& g2, const VI2& vi2,
const IsomorphismMap& iso) {
BOOST_CHECK (num_vertices(g1) == num_vertices(g2));
BOOST_CHECK (num_edges(g1) == num_edges(g2));
typedef typename boost::graph_traits<G1>::vertex_iterator vertiter1;
{
vertiter1 i, iend;
for (boost::tie(i, iend) = vertices(g1); i != iend; ++i) {
typename boost::graph_traits<G1>::vertex_descriptor v1 = *i;
typename boost::graph_traits<G2>::vertex_descriptor v2 = iso[v1];
BOOST_CHECK (vi1[v1] == vi2[v2]);
BOOST_CHECK (out_degree(v1, g1) == out_degree(v2, g2));
std::vector<std::size_t> edges1(out_degree(v1, g1));
typename boost::graph_traits<G1>::out_edge_iterator oe1, oe1end;
for (boost::tie(oe1, oe1end) = out_edges(v1, g1); oe1 != oe1end; ++oe1) {
BOOST_CHECK (source(*oe1, g1) == v1);
edges1.push_back(vi1[target(*oe1, g1)]);
}
std::vector<std::size_t> edges2(out_degree(v2, g2));
typename boost::graph_traits<G2>::out_edge_iterator oe2, oe2end;
for (boost::tie(oe2, oe2end) = out_edges(v2, g2); oe2 != oe2end; ++oe2) {
BOOST_CHECK (source(*oe2, g2) == v2);
edges2.push_back(vi2[target(*oe2, g2)]);
}
std::sort(edges1.begin(), edges1.end());
std::sort(edges2.begin(), edges2.end());
BOOST_CHECK (edges1 == edges2);
}
}
{
std::vector<std::pair<std::size_t, std::size_t> > all_edges1;
std::vector<std::pair<std::size_t, std::size_t> > all_edges2;
typename boost::graph_traits<G1>::edge_iterator ei1, ei1end;
for (boost::tie(ei1, ei1end) = edges(g1); ei1 != ei1end; ++ei1)
all_edges1.push_back(std::make_pair(vi1[source(*ei1, g1)],
vi1[target(*ei1, g1)]));
typename boost::graph_traits<G2>::edge_iterator ei2, ei2end;
for (boost::tie(ei2, ei2end) = edges(g2); ei2 != ei2end; ++ei2)
all_edges2.push_back(std::make_pair(vi2[source(*ei2, g2)],
vi2[target(*ei2, g2)]));
std::sort(all_edges1.begin(), all_edges1.end());
std::sort(all_edges2.begin(), all_edges2.end());
BOOST_CHECK (all_edges1 == all_edges2);
}
}
template<typename Graph, typename VertexIndexMap>
class edge_to_index_pair
{
typedef typename boost::graph_traits<Graph>::vertices_size_type
vertices_size_type;
typedef typename boost::graph_traits<Graph>::edge_descriptor edge_descriptor;
public:
typedef std::pair<vertices_size_type, vertices_size_type> result_type;
edge_to_index_pair() : g(0), index() { }
edge_to_index_pair(const Graph& g, const VertexIndexMap& index)
: g(&g), index(index)
{ }
result_type operator()(edge_descriptor e) const
{
return result_type(get(index, source(e, *g)), get(index, target(e, *g)));
}
private:
const Graph* g;
VertexIndexMap index;
};
template<typename Graph, typename VertexIndexMap>
edge_to_index_pair<Graph, VertexIndexMap>
make_edge_to_index_pair(const Graph& g, const VertexIndexMap& index)
{
return edge_to_index_pair<Graph, VertexIndexMap>(g, index);
}
template<typename Graph>
edge_to_index_pair
<Graph,
typename boost::property_map<Graph,boost::vertex_index_t>::const_type>
make_edge_to_index_pair(const Graph& g)
{
typedef typename boost::property_map<Graph,
boost::vertex_index_t>::const_type
VertexIndexMap;
return edge_to_index_pair<Graph, VertexIndexMap>(g,
get(boost::vertex_index,
g));
}
void test(int nnodes, double density, int seed)
{
std::cout << "Seed = " << seed << std::endl;
boost::minstd_rand gen(seed);
std::cout << "Testing " << nnodes << " density " << density << std::endl;
// Check copying of a graph
Graph g(ERGen(gen, nnodes, density), ERGen(), nnodes);
CSRGraph g2(g);
BOOST_CHECK((std::size_t)std::distance(edges(g2).first, edges(g2).second)
== num_edges(g2));
assert_graphs_equal(g, boost::identity_property_map(),
g2, boost::identity_property_map(),
boost::identity_property_map());
// Check constructing a graph from iterators
CSRGraph g3(nnodes,
boost::make_transform_iterator(edges(g2).first,
make_edge_to_index_pair(g2)),
boost::make_transform_iterator(edges(g2).second,
make_edge_to_index_pair(g2)));
BOOST_CHECK((std::size_t)std::distance(edges(g3).first, edges(g3).second)
== num_edges(g3));
assert_graphs_equal(g2, boost::identity_property_map(),
g3, boost::identity_property_map(),
boost::identity_property_map());
// Run brandes_betweenness_centrality, which touches on a whole lot
// of things, including VertexListGraph and IncidenceGraph
using namespace boost;
std::vector<double> vertex_centralities(num_vertices(g3));
std::vector<double> edge_centralities(num_edges(g3));
brandes_betweenness_centrality
(g3,
make_iterator_property_map(vertex_centralities.begin(),
get(vertex_index, g3)),
make_iterator_property_map(edge_centralities.begin(),
get(edge_index, g3)));
// Invert the edge centralities and use these as weights to
// Kruskal's MST algorithm, which will test the EdgeListGraph
// capabilities.
double max_val = (std::numeric_limits<double>::max)();
for (std::size_t i = 0; i < num_edges(g3); ++i)
edge_centralities[i] =
edge_centralities[i] == 0.0? max_val : 1.0 / edge_centralities[i];
typedef graph_traits<CSRGraph>::edge_descriptor edge_descriptor;
std::vector<edge_descriptor> mst_edges;
mst_edges.reserve(num_vertices(g3));
kruskal_minimum_spanning_tree
(g3, std::back_inserter(mst_edges),
weight_map(make_iterator_property_map(edge_centralities.begin(),
get(edge_index, g3))));
}
int test_main(int argc, char* argv[])
{
// Optionally accept a seed value
int seed = time(0);
if (argc > 1) seed = boost::lexical_cast<int>(argv[1]);
test(1000, 0.05, seed);
test(1000, 0.0, seed);
test(1000, 0.1, seed);
test(1000, 0.001, seed);
return 0;
}