// graph-tool -- a general graph modification and manipulation thingy // // Copyright (C) 2006-2017 Tiago de Paula Peixoto // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; either version 3 // of the License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . #ifndef GRAPH_EIGENVECTOR_HH #define GRAPH_EIGENVECTOR_HH #include "graph.hh" #include "graph_filtering.hh" #include "graph_util.hh" #ifndef __clang__ #include using __gnu_cxx::power; #else template Value power(Value value, int n) { return pow(value, n); } #endif namespace graph_tool { using namespace std; using namespace boost; struct get_katz { template void operator()(Graph& g, VertexIndex vertex_index, WeightMap w, CentralityMap c, PersonalizationMap beta, long double alpha, long double epsilon, size_t max_iter) const { typedef typename property_traits::value_type t_type; CentralityMap c_temp(vertex_index, num_vertices(g)); t_type delta = epsilon + 1; size_t iter = 0; while (delta >= epsilon) { delta = 0; #pragma omp parallel if (num_vertices(g) > OPENMP_MIN_THRESH) \ reduction(+:delta) parallel_vertex_loop_no_spawn (g, [&](auto v) { c_temp[v] = get(beta, v); for (const auto& e : in_or_out_edges_range(v, g)) { typename graph_traits::vertex_descriptor s; if (is_directed::apply::type::value) s = source(e, g); else s = target(e, g); c_temp[v] += alpha * get(w, e) * c[s]; } delta += abs(c_temp[v] - c[v]); }); swap(c_temp, c); ++iter; if (max_iter > 0 && iter == max_iter) break; } if (iter % 2 != 0) { parallel_vertex_loop(g, [&](auto v) {c_temp[v] = c[v];}); } } }; } #endif