From 48dea723381bb20c78e1655e4976af041eff1af9 Mon Sep 17 00:00:00 2001 From: Arun Thakur Date: Tue, 11 Jun 2024 00:55:01 +0530 Subject: [PATCH] [centrality] making changes to fix documentation --- doc/metrics/pgr_centrality.rst | 2 +- docqueries/metrics/CMakeLists.txt | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/doc/metrics/pgr_centrality.rst b/doc/metrics/pgr_centrality.rst index ae5ab13b52..4f2e321d40 100644 --- a/doc/metrics/pgr_centrality.rst +++ b/doc/metrics/pgr_centrality.rst @@ -30,7 +30,7 @@ Description The Brandes Algorithm for utilises the sparse nature of graphs to evaluating the betweenness centrality score of all edges/vertices. We use Boost's implementation which runs in :math:`\Theta(VE)` for unweighted -graphs and :math:`Theta(VE + V(V+E)log(V))` for weighted graphs and uses +graphs and :math:`\Theta(VE + V(V+E) \log V)` for weighted graphs and uses :math:`\Theta(VE)` space. Signatures diff --git a/docqueries/metrics/CMakeLists.txt b/docqueries/metrics/CMakeLists.txt index a4cf2412f7..262a6e46b2 100644 --- a/docqueries/metrics/CMakeLists.txt +++ b/docqueries/metrics/CMakeLists.txt @@ -1,7 +1,6 @@ # Do not use extensions SET(LOCAL_FILES - doc-floydWarshall - doc-johnson + centrality ) foreach (f ${LOCAL_FILES})