
    wg/8                     F   d Z ddlmZ ddlmZmZ ddlmZ ddlZ	ddl
mZ ddlmZ ddlmZ d	d
gZ ed       e	j"                  d      	 dd              Z ed       e	j"                  d      dd              Zd Zd Zd Zd Zd ZddZddZ ed      dd       Zy)z Betweenness centrality measures.    )deque)heappopheappush)countN)_weight_function)py_random_state)not_implemented_forbetweenness_centralityedge_betweenness_centrality   weight)
edge_attrsc                    t         j                  | d      }|| }n)|j                  t        | j	                               |      }|D ]O  }|t        | |      \  }	}
}}nt        | ||      \  }	}
}}|rt        ||	|
||      \  }}>t        ||	|
||      \  }}Q t        |t        |       || j                         ||      }|S )u  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, t$.
    If $s = t$, $\sigma(s, t) = 1$, and if $v \in {s, t}$,
    $\sigma(s, t|v) = 0$ [2]_.

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

    k : int, optional (default=None)
      If k is not None use k node samples to estimate betweenness.
      The value of k <= n where n is the number of nodes in the graph.
      Higher values give better approximation.

    normalized : bool, optional
      If True the betweenness values are normalized by `2/((n-1)(n-2))`
      for graphs, and `1/((n-1)(n-2))` for directed graphs where `n`
      is the number of nodes in G.

    weight : None or string, optional (default=None)
      If None, all edge weights are considered equal.
      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
      If True include the endpoints in the shortest path counts.

    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 : dictionary
       Dictionary of nodes with betweenness centrality as the value.

    See Also
    --------
    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=#samples to use
    k nodes ("pivots") to estimate the betweenness values. For an estimate
    of the number of pivots needed 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.

    The total number of paths between source and target is counted
    differently for directed and undirected graphs. Directed paths
    are easy to count. Undirected paths are tricky: should a path
    from "u" to "v" count as 1 undirected path or as 2 directed paths?

    For betweenness_centrality we report the number of undirected
    paths when G is undirected.

    For betweenness_centrality_subset the reporting is different.
    If the source and target subsets are the same, then we want
    to count undirected paths. But if the source and target subsets
    differ -- for example, if sources is {0} and targets is {1},
    then we are only counting the paths in one direction. They are
    undirected paths but we are counting them in a directed way.
    To count them as undirected paths, each should count as half a path.

    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 (eg 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
            )
normalizeddirectedk	endpoints)dictfromkeyssamplelistnodes"_single_source_shortest_path_basic"_single_source_dijkstra_path_basic_accumulate_endpoints_accumulate_basic_rescalelenis_directed)Gr   r   r   r   seedbetweennessr   sSPsigma_s                o/home/mcse/projects/flask/flask-venv/lib/python3.12/site-packages/networkx/algorithms/centrality/betweenness.pyr
   r
      s    d --3'KyDOQ/ 
L>?1ENAq%?1fMNAq%2;1eQONK.{Aq%KNK
L A
K        c                    t         j                  | d      }|j                  t         j                  | j                         d             || }n)|j	                  t        | j                               |      }|D ]7  }|t        | |      \  }}	}
}nt        | ||      \  }}	}
}t        |||	|
|      }9 | D ]  }||=  t        |t        |       || j                               }| j                         rt        | ||      }|S )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$ [2]_.

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

    k : int, optional (default=None)
      If k is not None use k node samples to estimate betweenness.
      The value of k <= n where n is the number of nodes in the graph.
      Higher values give better approximation.

    normalized : bool, optional
      If True the betweenness values are normalized by $2/(n(n-1))$
      for graphs, and $1/(n(n-1))$ for directed graphs where $n$
      is the number of nodes in G.

    weight : None or string, optional (default=None)
      If None, all edge weights are considered equal.
      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 : dictionary
       Dictionary of edges with betweenness centrality as the value.

    See Also
    --------
    betweenness_centrality
    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]  A Faster Algorithm for Betweenness Centrality. Ulrik Brandes,
       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
    r   )r   r   )r   )r   r   updateedgesr   r   r   r   r   _accumulate_edges
_rescale_er   r    is_multigraph_add_edge_keys)r!   r   r   r   r"   r#   r   r$   r%   r&   r'   r(   ns                r)   r   r      s    L --3'Kt}}QWWY45yDOQ/ E>?1ENAq%?1fMNAq%'Q5!DE  NSV
Q]]_K 	$QFCr*   c                    g }i }| D ]  }g ||<   	 t         j                  | d      }i }d||<   d||<   t        |g      }|r|j                         }|j	                  |       ||   }||   }	| |   D ]L  }
|
|vr|j	                  |
       |dz   ||
<   ||
   |dz   k(  s,||
xx   |	z  cc<   ||
   j	                  |       N |r||||fS )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E!HAaDqc
A
IIK	qTq1 	AzAv!trAv~aF"!A	  a>r*   c                 v   t        | |      }g }i }| D ]  }g ||<   	 t        j                  | d      }i }d||<   t        }t        }	|di}
t               }g } ||dt        |      ||f       |r |	|      \  }}}}||v r||xx   ||   z  cc<   |j                  |       |||<   | |   j                         D ]v  \  }}| ||||      z   }||vr3||
vs||
|   k  r'||
|<    |||t        |      ||f       d||<   |g||<   J||
|   k(  sS||xx   ||   z  cc<   ||   j                  |       x |r||||fS )Nr   r5   r   )	r   r   r   r   r   r   nextr8   items)r!   r$   r   r%   r&   r9   r'   r:   pushpopseencr;   distr(   predr>   edgedatavw_dists                      r)   r   r     s   a(F
A
A !MM!S!E
AE!HD
Cq6DA
AQQA
 Vq$6aE$K	!Q4::< 		KAxVAq(33Gzq}$q'0A!QQ$q'1a01as!DG#aE!H$!A		 " a>r*   c                     t         j                  |d      }|rS|j                         }d||   z   ||   z  }||   D ]  }||xx   ||   |z  z  cc<    ||k7  r| |xx   ||   z  cc<   |rS| |fS Nr   r6   r   r   rC   	r#   r%   r&   r'   r$   deltar>   coeffr9   s	            r)   r   r   =  s    MM!QE
EEGU1Xq)1 	)A!Ha5((H	)6NeAh&N  r*   c                    | |xx   t        |      dz
  z  cc<   t        j                  |d      }|rV|j                         }d||   z   ||   z  }||   D ]  }||xx   ||   |z  z  cc<    ||k7  r| |xx   ||   dz   z  cc<   |rV| |fS )Nr6   r   )r   r   r   rC   rM   s	            r)   r   r   I  s    Nc!fqj NMM!QE
EEGU1Xq)1 	)A!Ha5((H	)6NeAhl*N  r*   c                 *   t         j                  |d      }|rz|j                         }d||   z   ||   z  }||   D ]<  }||   |z  }	||f| vr| ||fxx   |	z  cc<   n| ||fxx   |	z  cc<   ||xx   |	z  cc<   > ||k7  r| |xx   ||   z  cc<   |rz| S rK   rL   )
r#   r%   r&   r'   r$   rN   r>   rO   r9   rE   s
             r)   r/   r/   V  s    MM!QE
EEGU1Xq)1 	Aa5 A1v[(QF#q(#QF#q(#!HMH	 6NeAh&N  r*   c                     |r-|r|dk  rd }n*d||dz
  z  z  }n|dk  rd }nd|dz
  |dz
  z  z  }n|sd}nd }||||z  |z  }| D ]  }| |xx   |z  cc<    | S )N   r6         ? )r#   r3   r   r   r   r   scaler9   s           r)   r   r   g  s    1u Q!a%[)!VE!a%AE*+EEE=AIME 	$ANe#N	$r*   c                     |r|dk  rd }nd||dz
  z  z  }n|sd}nd }||||z  |z  }| D ]  }| |xx   |z  cc<    | S )Nr6   rT   rU   )r#   r3   r   r   r   rV   r9   s          r)   r0   r0     sk    6Ea!e%EEE=AIME 	$ANe#N	$r*   graphc                 (   t        | |      }t        j                  | j                  d      }|D ][  \  }}| |   |   } ||||      }|D 	cg c]  }	 ||||	||	   i      |k(  s|	 }
}	|||f   t	        |
      z  }|
D ]
  }	|||||	f<    ] |S c c}	w )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ur9   dwtr   keysbcs               r)   r2   r2     s    , q&)GmmAGGS)G $1aDGQ1?a1q!A$i 8B >??!Q 3t9, 	$A!#GQ1I	$$ N @s   B#B)NTNFN)NTNN)FNF)FN)N)__doc__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   r2   rU   r*   r)   <module>rl      s    &  #   H * 9#%B
C X&CGI ' IX X&[ ' [B2!H	
"2& W   r*   