Skip to content

Added eigenvector centrality #252

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
168 changes: 168 additions & 0 deletions include/boost/graph/eigenvectorCentralityBoost.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,168 @@
#ifndef BOOST_GRAPH_EIGENVECTOR_HPP
#define BOOST_GRAPH_EIGENVECTOR_HPP

#include <boost/property_map/property_map.hpp>
#include <boost/graph/graph_traits.hpp>
#include <boost/graph/properties.hpp>
#include <boost/graph/iteration_macros.hpp>
#include <boost/graph/overloading.hpp>
#include <boost/graph/detail/mpi_include.hpp>
#include <vector>

namespace boost
{
namespace graph
{

struct n_iterations
{
explicit n_iterations(std::size_t n) : n(n) {}

template < typename RankMap, typename Graph >
bool operator()(const RankMap&, const Graph&)
{
return n-- == 0;
}

private:
std::size_t n;
};

namespace detail
{
template < typename Graph, typename RankMap, typename RankMap2 >
void eigenvector_step(const Graph& g, RankMap from_rank, RankMap2 to_rank,
typename property_traits< RankMap >::value_type damping,
incidence_graph_tag)
{
typedef typename property_traits< RankMap >::value_type rank_type;

// Set new rank maps
BGL_FORALL_VERTICES_T(v, g, Graph)
put(to_rank, v, rank_type(1 - damping));

BGL_FORALL_VERTICES_T(u, g, Graph)
{
rank_type u_rank
= damping * get(from_rank, u) / (degree(u, g) * num_vertices(g));
BGL_FORALL_ADJ_T(u, v, g, Graph)
put(to_rank, v, get(to_rank, v) + u_rank);
}
}

template < typename Graph, typename RankMap, typename RankMap2 >
void eigenvector_step(const Graph& g, RankMap from_rank, RankMap2 to_rank,
typename property_traits< RankMap >::value_type damping,
bidirectional_graph_tag)
{
typedef
typename property_traits< RankMap >::value_type damping_type;
BGL_FORALL_VERTICES_T(v, g, Graph)
{
typename property_traits< RankMap >::value_type rank(0);
BGL_FORALL_INEDGES_T(v, e, g, Graph)
rank += get(from_rank, source(e, g))
/ (degree(v, g) * num_vertices(g));

put(to_rank, v, (damping_type(1) - damping) + damping * rank);
}
}
} // end namespace detail

template < typename Graph, typename RankMap, typename Done,
typename RankMap2 >
void eigenvector(const Graph& g, RankMap rank_map, Done done,
typename property_traits< RankMap >::value_type damping,
typename graph_traits< Graph >::vertices_size_type n,
RankMap2 rank_map2 BOOST_GRAPH_ENABLE_IF_MODELS_PARM(
Graph, vertex_list_graph_tag))
{
typedef typename property_traits< RankMap >::value_type rank_type;

rank_type initial_rank = rank_type(rank_type(1) / n);
BGL_FORALL_VERTICES_T(v, g, Graph) put(rank_map, v, initial_rank);

bool to_map_2 = true;
while ((to_map_2 && !done(rank_map, g))
|| (!to_map_2 && !done(rank_map2, g)))
{
typedef typename graph_traits< Graph >::traversal_category category;


if (to_map_2)
{
detail::eigenvector_step(
g, rank_map, rank_map2, damping, category());

}
else
{
detail::eigenvector_step(
g, rank_map2, rank_map, damping, category());
}
to_map_2 = !to_map_2;
}

if (!to_map_2)
{
BGL_FORALL_VERTICES_T(v, g, Graph)
put(rank_map, v, get(rank_map2, v));
}
}

template < typename Graph, typename RankMap, typename Done >
void eigenvector(const Graph& g, RankMap rank_map, Done done,
typename property_traits< RankMap >::value_type damping,
typename graph_traits< Graph >::vertices_size_type n)
{
typedef typename property_traits< RankMap >::value_type rank_type;

std::vector< rank_type > ranks2(num_vertices(g));
eigenvector(g, rank_map, done, damping, n,
make_iterator_property_map(ranks2.begin(), get(vertex_index, g)));
}

template < typename Graph, typename RankMap, typename Done >
inline void eigenvector(const Graph& g, RankMap rank_map, Done done,
typename property_traits< RankMap >::value_type damping = 0.85)
{
eigenvector(g, rank_map, done, damping, num_vertices(g));
}

template < typename Graph, typename RankMap >
inline void eigenvector(const Graph& g, RankMap rank_map)
{
eigenvector(g, rank_map, n_iterations(20));
}

// TBD: this could be _much_ more efficient, using a queue to store
// the vertices that should be reprocessed and keeping track of which
// vertices are in the queue with a property map. Baah, this only
// applies when we have a bidirectional graph.
template < typename MutableGraph >
void remove_dangling_links(
MutableGraph& g BOOST_GRAPH_ENABLE_IF_MODELS_PARM(
MutableGraph, vertex_list_graph_tag))
{
typename graph_traits< MutableGraph >::vertices_size_type old_n;
do
{
old_n = num_vertices(g);

typename graph_traits< MutableGraph >::vertex_iterator vi, vi_end;
for (boost::tie(vi, vi_end) = vertices(g); vi != vi_end;
/* in loop */)
{
typename graph_traits< MutableGraph >::vertex_descriptor v
= *vi++;
if (degree(v, g) == 0)
{
clear_vertex(v, g);
remove_vertex(v, g);
}
}
} while (num_vertices(g) < old_n);
}

}
}