
    9iY                     H   S r SSKrSSKJr  SSKJrJr  SSKJr  SSK	r
SSKJr  SSKJr  SSKJr  S	S
/r\" S5      \
R$                  " SS9 SS j5       5       r\" S5      \
R$                  " SS9SS j5       5       rS rS rS rS rS rSSS.S jr\" S5      SS j5       rg)z Betweenness centrality measures.    N)deque)heappopheappush)count)_weight_function)py_random_state)not_implemented_forbetweenness_centralityedge_betweenness_centralityseedweight)
edge_attrsTc           	         [         R                  U S5      nU[        U 5      :X  a  SnUc  U nO)UR                  [	        U R                  5       5      U5      nU HK  nUc  [        X5      u  ppO[        XU5      u  ppU(       a  [        XiXU5      u  plM<  [        XiXU5      u  plMM     [        U[        U 5      UU R                  5       UUc  SOUS9nU$ )a5   Compute the shortest-path betweenness centrality for nodes.

Betweenness centrality of a node $v$ is the sum of the
fraction of all-pairs shortest paths that pass through $v$.

.. math::

   c_B(v) = \sum_{s, t \in V} \frac{\sigma(s, t | v)}{\sigma(s, t)}

where $V$ is the set of nodes, $\sigma(s, t)$ is the number of
shortest $(s, t)$-paths, and $\sigma(s, t | v)$ is the number of
those paths passing through some node $v$ other than $s$ and $t$.
If $s = t$, $\sigma(s, t) = 1$, and if $v \in \{s, t\}$,
$\sigma(s, t | v) = 0$ [2]_.
The denominator $\sigma(s, t)$ is a normalization factor that can be
turned off to get the raw path counts.

Parameters
----------
G : graph
    A NetworkX graph.

k : int, optional (default=None)
    If `k` is not `None`, use `k` sampled nodes as sources for the considered paths.
    The resulting sampled counts are then inflated to approximate betweenness.
    Higher values of `k` give better approximation. Must have ``k <= len(G)``.

normalized : bool, optional (default=True)
    If `True`, the betweenness values are rescaled by dividing by the number of
    possible $(s, t)$-pairs in the graph.

weight : None or string, optional (default=None)
    If `None`, all edge weights are 1.
    Otherwise holds the name of the edge attribute used as weight.
    Weights are used to calculate weighted shortest paths, so they are
    interpreted as distances.

endpoints : bool, optional (default=False)
    If `True`, include the endpoints $s$ and $t$ in the shortest path counts.
    This is taken into account when rescaling the values.

seed : integer, random_state, or None (default)
    Indicator of random number generation state.
    See :ref:`Randomness<randomness>`.
    Note that this is only used if ``k is not None``.

Returns
-------
nodes : dict
    Dictionary of nodes with betweenness centrality as the value.

See Also
--------
betweenness_centrality_subset
edge_betweenness_centrality
load_centrality

Notes
-----
The algorithm is from Ulrik Brandes [1]_.
See [4]_ for the original first published version and [2]_ for details on
algorithms for variations and related metrics.

For approximate betweenness calculations, set `k` to the number of sampled
nodes ("pivots") used as sources to estimate the betweenness values.
The formula then sums over $s$ is in these pivots, instead of over all nodes.
The resulting sum is then inflated to approximate the full sum.
For a discussion of how to choose `k` for efficiency, see [3]_.

For weighted graphs the edge weights must be greater than zero.
Zero edge weights can produce an infinite number of equal length
paths between pairs of nodes.

Directed graphs and undirected graphs count paths differently.
In directed graphs, each pair of source-target nodes is considered separately
in each direction, as the shortest paths can differ by direction.
However, in undirected graphs, each pair of nodes is considered only once,
as the shortest paths are symmetric.
This means the normalization factor to divide by is $N(N-1)$ for directed graphs
and $N(N-1)/2$ for undirected graphs, where $N = n$ (the number of nodes)
if endpoints are included and $N = n-1$ otherwise.

This algorithm is not guaranteed to be correct if edge weights
are floating point numbers. As a workaround you can use integer
numbers by multiplying the relevant edge attributes by a convenient
constant factor (e.g. 100) and converting to integers.

References
----------
.. [1] Ulrik Brandes:
   A Faster Algorithm for Betweenness Centrality.
   Journal of Mathematical Sociology 25(2):163--177, 2001.
   https://doi.org/10.1080/0022250X.2001.9990249
.. [2] Ulrik Brandes:
   On Variants of Shortest-Path Betweenness
   Centrality and their Generic Computation.
   Social Networks 30(2):136--145, 2008.
   https://doi.org/10.1016/j.socnet.2007.11.001
.. [3] Ulrik Brandes and Christian Pich:
   Centrality Estimation in Large Networks.
   International Journal of Bifurcation and Chaos 17(7):2303--2318, 2007.
   https://dx.doi.org/10.1142/S0218127407018403
.. [4] Linton C. Freeman:
   A set of measures of centrality based on betweenness.
   Sociometry 40: 35--41, 1977
   https://doi.org/10.2307/3033543

Examples
--------
Consider an undirected 3-path. Each pair of nodes has exactly one shortest
path between them. Since the graph is undirected, only ordered pairs are counted.
Of these (and when `endpoints` is `False`), none of the shortest paths pass
through 0 and 2, and only the shortest path between 0 and 2 passes through 1.
As such, the counts should be ``{0: 0, 1: 1, 2: 0}``.

>>> G = nx.path_graph(3)
>>> nx.betweenness_centrality(G, normalized=False, endpoints=False)
{0: 0.0, 1: 1.0, 2: 0.0}

If `endpoints` is `True`, we also need to count endpoints as being on the path:
$\sigma(s, t | s) = \sigma(s, t | t) = \sigma(s, t)$.
In our example, 0 is then part of two shortest paths (0 to 1 and 0 to 2);
similarly, 2 is part of two shortest paths (0 to 2 and 1 to 2).
1 is part of all three shortest paths. This makes the new raw
counts ``{0: 2, 1: 3, 2: 2}``.

>>> nx.betweenness_centrality(G, normalized=False, endpoints=True)
{0: 2.0, 1: 3.0, 2: 2.0}

With normalization, the values are divided by the number of ordered $(s, t)$-pairs.
If we are not counting endpoints, there are $n - 1$ possible choices for $s$
(all except the node we are computing betweenness centrality for), which in turn
leaves $n - 2$ possible choices for $t$ as $s \ne t$.
The total number of ordered pairs when `endpoints` is `False` is $(n - 1)(n - 2)/2 = 1$.
If `endpoints` is `True`, there are $n(n - 1)/2 = 3$ ordered $(s, t)$-pairs to divide by.

>>> nx.betweenness_centrality(G, normalized=True, endpoints=False)
{0: 0.0, 1: 1.0, 2: 0.0}
>>> nx.betweenness_centrality(G, normalized=True, endpoints=True)
{0: 0.6666666666666666, 1: 1.0, 2: 0.6666666666666666}

If the graph is directed instead, we now need to consider $(s, t)$-pairs
in both directions. Our example becomes a directed 3-path.
Without counting endpoints, we only have one path through 1 (0 to 2).
This means the raw counts are ``{0: 0, 1: 1, 2: 0}``.

>>> DG = nx.path_graph(3, create_using=nx.DiGraph)
>>> nx.betweenness_centrality(DG, normalized=False, endpoints=False)
{0: 0.0, 1: 1.0, 2: 0.0}

If we do include endpoints, the raw counts are ``{0: 2, 1: 3, 2: 2}``.

>>> nx.betweenness_centrality(DG, normalized=False, endpoints=True)
{0: 2.0, 1: 3.0, 2: 2.0}

If we want to normalize directed betweenness centrality, the raw counts
are normalized by the number of $(s, t)$-pairs. There are $n(n - 1)$
possible paths with endpoints and $(n - 1)(n - 2)$ without endpoints.
In our example, that's 6 with endpoints and 2 without endpoints.

>>> nx.betweenness_centrality(DG, normalized=True, endpoints=True)
{0: 0.3333333333333333, 1: 0.5, 2: 0.3333333333333333}
>>> nx.betweenness_centrality(DG, normalized=True, endpoints=False)
{0: 0.0, 1: 0.5, 2: 0.0}

Computing the full betweenness centrality can be costly.
This function can also be used to compute approximate betweenness centrality
by setting `k`. This only determines the number of source nodes to sample;
all nodes are targets.

For simplicity, we only consider the case where endpoints are included in the counts.
Since the partial sums only include `k` terms, instead of ``n``,
we multiply them by ``n / k``, to approximate the full sum.
As the sets of sources and targets are not the same anymore,
paths have to be counted in a directed way. We thus count each as half a path.
This ensures that the results approximate the standard betweenness for ``k == n``.

For instance, in the undirected 3-path graph case, setting ``k = 2`` (with ``seed=42``)
selects nodes 0 and 2 as sources.
This means only shortest paths starting at these nodes are considered.
The raw counts with endpoints are ``{0: 3, 1: 4, 2: 3}``. Accounting for the partial sum
and applying the undirectedness half-path correction, we get

>>> nx.betweenness_centrality(G, k=2, normalized=False, endpoints=True, seed=42)
{0: 2.25, 1: 3.0, 2: 2.25}

When normalizing, we instead want to divide by the total number of $(s, t)$-pairs.
This is $k(n - 1)$ with endpoints.

>>> nx.betweenness_centrality(G, k=2, normalized=True, endpoints=True, seed=42)
{0: 0.75, 1: 1.0, 2: 0.75}
        N)
normalizeddirected	endpointssampled_nodes)dictfromkeyslensamplelistnodes"_single_source_shortest_path_basic"_single_source_dijkstra_path_basic_accumulate_endpoints_accumulate_basic_rescaleis_directed)Gkr   r   r   r   betweennessr   sSPsigma_s                j/var/www/html/land-doc-ocr/venv/lib/python3.13/site-packages/networkx/algorithms/centrality/betweenness.pyr
   r
      s    J --3'KCF{yDOQ/>?ENA%?fMNA%2;1QONK.{qKNK  AidUK     c                 
   [         R                  U S5      nUR                  [         R                  U R                  5       S5      5        Uc  U nO)UR	                  [        U R                  5       5      U5      nU H1  nUc  [        X5      u  ppO[        XU5      u  pp[        XXXU5      nM3     U  H  nX\	 M     [        U[        U 5      UU R                  5       Uc  SOUS9nU R                  5       (       a
  [        XUS9nU$ )a  Compute betweenness centrality for edges.

Betweenness centrality of an edge $e$ is the sum of the
fraction of all-pairs shortest paths that pass through $e$.

.. math::

   c_B(e) = \sum_{s, t \in V} \frac{\sigma(s, t | e)}{\sigma(s, t)}

where $V$ is the set of nodes, $\sigma(s, t)$ is the number of
shortest $(s, t)$-paths, and $\sigma(s, t | e)$ is the number of
those paths passing through edge $e$ [1]_.
The denominator $\sigma(s, t)$ is a normalization factor that can be
turned off to get the raw path counts.

Parameters
----------
G : graph
    A NetworkX graph.

k : int, optional (default=None)
    If `k` is not `None`, use `k` sampled nodes as sources for the considered paths.
    The resulting sampled counts are then inflated to approximate betweenness.
    Higher values of `k` give better approximation. Must have ``k <= len(G)``.

normalized : bool, optional (default=True)
    If `True`, the betweenness values are rescaled by dividing by the number of
    possible $(s, t)$-pairs in the graph.

weight : None or string, optional (default=None)
    If `None`, all edge weights are 1.
    Otherwise holds the name of the edge attribute used as weight.
    Weights are used to calculate weighted shortest paths, so they are
    interpreted as distances.

seed : integer, random_state, or None (default)
    Indicator of random number generation state.
    See :ref:`Randomness<randomness>`.
    Note that this is only used if ``k is not None``.

Returns
-------
edges : dict
    Dictionary of edges with betweenness centrality as the value.

See Also
--------
betweenness_centrality
edge_betweenness_centrality_subset
edge_load

Notes
-----
The algorithm is from Ulrik Brandes [1]_.

For weighted graphs the edge weights must be greater than zero.
Zero edge weights can produce an infinite number of equal length
paths between pairs of nodes.

References
----------
.. [1] Ulrik Brandes: On Variants of Shortest-Path Betweenness
   Centrality and their Generic Computation.
   Social Networks 30(2):136--145, 2008.
   https://doi.org/10.1016/j.socnet.2007.11.001

Examples
--------
Consider an undirected 3-path. Each pair of nodes has exactly one shortest
path between them. Since the graph is undirected, only ordered pairs are counted.
Each edge has two shortest paths passing through it.
As such, the raw counts should be ``{(0, 1): 2, (1, 2): 2}``.

>>> G = nx.path_graph(3)
>>> nx.edge_betweenness_centrality(G, normalized=False)
{(0, 1): 2.0, (1, 2): 2.0}

With normalization, the values are divided by the number of ordered $(s, t)$-pairs,
which is $n(n-1)/2$. For the 3-path, this is $3(3-1)/2 = 3$.

>>> nx.edge_betweenness_centrality(G, normalized=True)
{(0, 1): 0.6666666666666666, (1, 2): 0.6666666666666666}

For a directed graph, all $(s, t)$-pairs are considered. The normalization factor
is $n(n-1)$ to reflect this.

>>> DG = nx.path_graph(3, create_using=nx.DiGraph)
>>> nx.edge_betweenness_centrality(DG, normalized=False)
{(0, 1): 2.0, (1, 2): 2.0}
>>> nx.edge_betweenness_centrality(DG, normalized=True)
{(0, 1): 0.3333333333333333, (1, 2): 0.3333333333333333}

Computing the full edge betweenness centrality can be costly.
This function can also be used to compute approximate edge betweenness centrality
by setting `k`. This determines the number of source nodes to sample.

Since the partial sums only include `k` terms, instead of ``n``,
we multiply them by ``n / k``, to approximate the full sum.
As the sets of sources and targets are not the same anymore,
paths have to be counted in a directed way. We thus count each as half a path.
This ensures that the results approximate the standard betweenness for ``k == n``.

For instance, in the undirected 3-path graph case, setting ``k = 2`` (with ``seed=42``)
selects nodes 0 and 2 as sources.
This means only shortest paths starting at these nodes are considered.
The raw counts are ``{(0, 1): 3, (1, 2): 3}``. Accounting for the partial sum
and applying the undirectedness half-path correction, we get

>>> nx.edge_betweenness_centrality(G, k=2, normalized=False, seed=42)
{(0, 1): 2.25, (1, 2): 2.25}

When normalizing, we instead want to divide by the total number of $(s, t)$-pairs.
This is $k(n-1)$, which is $4$ in our case.

>>> nx.edge_betweenness_centrality(G, k=2, normalized=True, seed=42)
{(0, 1): 0.75, (1, 2): 0.75}
r   N)r   r   r   )r   )r   r   updateedgesr   r   r   r   r   _accumulate_edgesr   r   r    is_multigraph_add_edge_keys)r!   r"   r   r   r   r#   r   r$   r%   r&   r'   r(   ns                r)   r   r      s    p --3'Kt}}QWWY45yDOQ/>?ENA%?fMNA%'!D  N AidUK 	$QFCr*   c                    / n0 nU  H  n/ X4'   M	     [         R                  U S5      n0 nSXQ'   SXa'   [        U/5      nU(       a  UR                  5       nUR	                  U5        Xd   nXT   n	X    HL  n
X;  a  UR	                  U
5        US-   Xj'   Xj   US-   :X  d  M-  XZ==   U	-  ss'   X:   R	                  U5        MN     U(       a  M  X#XV4$ )Nr         ?r      )r   r   r   popleftappend)r!   r$   r%   r&   vr'   DQDvsigmavws              r)   r   r     s    
A
A MM!S!E
AEHADqc
A
IIK	TAzAvtrAv~F"A  ! >r*   c                 n   [        X5      n/ n0 nU  H  n/ XE'   M	     [        R                  U S5      n0 nSXa'   US0n[        5       n	/ n
[	        U
S[        U	5      X45        U
(       a  [        U
5      u  ppXW;   a  M  Xe==   Xm   -  ss'   UR                  U5        XU'   X   R                  5        Ht  u  pX" X^U5      -   nX;  a4  X;  d  UX   :  a'  UX'   [	        U
U[        U	5      X^45        SXn'   U/XN'   MI  UX   :X  d  MS  Xn==   Xe   -  ss'   XN   R                  U5        Mv     U
(       a  M  X4Xg4$ )Nr   r3   r   )	r   r   r   r   r   nextr   r6   items)r!   r$   r   r%   r&   r7   r'   r8   seencr9   distr(   predr<   edgedatavw_dists                    r)   r   r     sA   a(F
A
A MM!S!E
AEHq6DA
AQDGQ"#
$QZ$6EK	!4::<KAVA(33Gzq}$'0A!Wd1gq45sDG#EH$A ( !" >r*   c                     [         R                  US5      nU(       aT  UR                  5       nSXV   -   X6   -  nX&    H  nXX==   X8   U-  -  ss'   M     Xd:w  a  X==   XV   -  ss'   U(       a  MT  X4$ Nr   r4   r   r   pop	r#   r%   r&   r'   r$   deltar<   coeffr7   s	            r)   r   r     sv    MM!QE
EEGUX)AH5((H 6Neh&N ! r*   c                     X==   [        U5      S-
  -  ss'   [        R                  US5      nU(       aW  UR                  5       nSXV   -   X6   -  nX&    H  nXX==   X8   U-  -  ss'   M     Xd:w  a  X==   XV   S-   -  ss'   U(       a  MW  X4$ )Nr4   r   )r   r   r   rI   rJ   s	            r)   r   r     s    Nc!fqj NMM!QE
EEGUX)AH5((H 6Nehl*N ! r*   c                 4   [         R                  US5      nU(       az  UR                  5       nSXV   -   X6   -  nX&    H:  nX8   U-  n	X4U ;  a  XU4==   U	-  ss'   OXU4==   U	-  ss'   XX==   U	-  ss'   M<     Xd:w  a  X==   XV   -  ss'   U(       a  Mz  U $ rG   rH   )
r#   r%   r&   r'   r$   rK   r<   rL   r7   rA   s
             r)   r.   r.     s    MM!QE
EEGUX)A5 Av[(F#q(#F#q(#HMH  6Neh&N ! r*   )r   r   c                   Uc  S O
[        U5      nU(       a  UOUS-
  nUS:  a  U $ Uc  UOUnUb  U(       aB  U(       a  SXS-
  -  -  n	OU(       d  Sn
OSn
XxU
-  -  n	U	S:w  a  U  H  nX==   U	-  ss'   M     U $ U(       a/  US:  a  SUS-
  US-
  -  -  O[        R                  nSXS-
  -  -  nO2U(       a  SOSn
US:  a
  XxS-
  U
-  -  O[        R                  nXxU
-  -  n[        U5      nU  H  nX==   X;   a  UOU-  ss'   M     U $ )Nr4      )r   mathnanset)r#   r1   r   r   r   r   r"   NK_sourcescale
correctionr7   scale_sourcescale_nonsources                 r)   r   r     s3   
 %3}+=A AEA1uIq1HyI U+,E  

J./EA: %' ! 9AAqX\a!e45488xq512"Q
<DqLq\Z78dhh*45&M!*<,/Q r*   graphc                 &   [        X5      n[        R                  U R                  S5      nU HZ  u  pVX   U   nU" XVU5      nU V	s/ s H  o" XVXU	   05      U:X  d  M  U	PM     n
n	XU4   [	        U
5      -  nU
 H	  n	XXVU	4'   M     M\     U$ s  sn	f )a  Adds the corrected betweenness centrality (BC) values for multigraphs.

Parameters
----------
G : NetworkX graph.

betweenness : dictionary
    Dictionary mapping adjacent node tuples to betweenness centrality values.

weight : string or function
    See `_weight_function` for details. Defaults to `None`.

Returns
-------
edges : dictionary
    The parameter `betweenness` including edges with keys and their
    betweenness centrality values.

The BC value is divided among edges of equal weight.
r   )r   r   r   r-   r   )r!   r#   r   _weightedge_bcur7   dwtr"   keysbcs               r)   r0   r0   .  s    , q)GmmAGGS)GDGQ1?1aqA$i 8B >1?Q 3t9,A!#Q1I   N @s   BB)NTNFN)NTNN)N)__doc__rQ   collectionsr   heapqr   r   	itertoolsr   networkxnx+networkx.algorithms.shortest_paths.weightedr   networkx.utilsr   networkx.utils.decoratorsr	   __all___dispatchabler
   r   r   r   r   r   r.   r   r0    r*   r)   <module>ro      s    &   #   H * 9#%B
C X&CG_ ' _D X&Q ' Qn2D	
$ 8<49x W   r*   