|
nxpp
Header-only graph utilities on top of Boost Graph Library
|
Centrality algorithms and compatibility aliases for the graph wrapper. More...
#include "graph.hpp"

Go to the source code of this file.
Functions | |
| template<typename GraphWrapper > | |
| auto | nxpp::pagerank (const GraphWrapper &G) |
Deprecated free-function alias for G.pagerank(). | |
| template<typename GraphWrapper > | |
| auto | nxpp::degree_centrality (const GraphWrapper &G) |
Deprecated free-function alias for G.degree_centrality(). | |
| template<typename GraphWrapper > | |
| auto | nxpp::betweenness_centrality (const GraphWrapper &G) |
Deprecated free-function alias for G.betweenness_centrality(). | |
Centrality algorithms and compatibility aliases for the graph wrapper.
| auto nxpp::betweenness_centrality | ( | const GraphWrapper & | G | ) |
Deprecated free-function alias for G.betweenness_centrality().
| G | Graph wrapper on which to compute normalized betweenness centrality. |
indexed_lookup_map<NodeID, double> result returned by G.betweenness_centrality(). References nxpp::betweenness_centrality().
Referenced by nxpp::betweenness_centrality().
| auto nxpp::degree_centrality | ( | const GraphWrapper & | G | ) |
Deprecated free-function alias for G.degree_centrality().
| G | Graph wrapper on which to compute normalized degree centrality. |
indexed_lookup_map<NodeID, double> result returned by G.degree_centrality(). References nxpp::degree_centrality().
Referenced by nxpp::degree_centrality().
| auto nxpp::pagerank | ( | const GraphWrapper & | G | ) |
Deprecated free-function alias for G.pagerank().
| G | Graph wrapper on which to compute PageRank. |
indexed_lookup_map<NodeID, double> result returned by G.pagerank(). References nxpp::pagerank().
Referenced by nxpp::pagerank().