
    wgx$                         d 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j                  d	      dd
       Z ej                  d	      	 dd       Zd Zd ZddZddZy)z5Betweenness centrality measures for subsets of nodes.    N)_add_edge_keys)"_single_source_dijkstra_path_basic)"_single_source_shortest_path_basicbetweenness_centrality_subset"edge_betweenness_centrality_subsetweight)
edge_attrsc           	          t         j                  | d      }|D ]8  }|t        | |      \  }}}	}
nt        | ||      \  }}}	}
t	        ||||	||      }: t        |t        |       || j                               }|S )a(  Compute betweenness centrality for a subset of nodes.

    .. math::

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

    where $S$ is the set of sources, $T$ is the set of targets,
    $\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.

    sources: list of nodes
      Nodes to use as sources for shortest paths in betweenness

    targets: list of nodes
      Nodes to use as targets for shortest paths in betweenness

    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.

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

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

    Notes
    -----
    The basic algorithm is from [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.

    The normalization might seem a little strange but it is
    designed to make betweenness_centrality(G) be the same as
    betweenness_centrality_subset(G,sources=G.nodes(),targets=G.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.

    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
            
normalizeddirected)dictfromkeysshortest_pathdijkstra_accumulate_subset_rescalelenis_directed)Gsourcestargetsr   r   bsSPsigma_s              v/home/mcse/projects/flask/flask-venv/lib/python3.12/site-packages/networkx/algorithms/centrality/betweenness_subset.pyr   r      s    l 	aA ;>*1a0NAq%%aF3NAq%q!Qq':; 	CFzAMMOLAH    c           	         t         j                  | d      }|j                  t         j                  | j                         d             |D ]8  }|t	        | |      \  }}}	}
nt        | ||      \  }}}	}
t        ||||	||      }: | D ]  }||=  t        |t        |       || j                               }| j                         rt        | ||      }|S )a  Compute betweenness centrality for edges for a subset of nodes.

    .. math::

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

    where $S$ is the set of sources, $T$ is the set of targets,
    $\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.

    sources: list of nodes
      Nodes to use as sources for shortest paths in betweenness

    targets: list of nodes
      Nodes to use as targets for shortest paths in betweenness

    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.

    Returns
    -------
    edges : dictionary
       Dictionary of edges with Betweenness centrality as the value.

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

    Notes
    -----
    The basic algorithm is from [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.

    The normalization might seem a little strange but it is the same
    as in edge_betweenness_centrality() and is designed to make
    edge_betweenness_centrality(G) be the same as
    edge_betweenness_centrality_subset(G,sources=G.nodes(),targets=G.nodes()).

    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
    r   r   )r   )r   r   updateedgesr   r   _accumulate_edges_subset
_rescale_er   r   is_multigraphr   )r   r   r   r   r   r   r   r   r   r   r   ns               r    r   r   v   s    L 	aAHHT]]1779c*+ A>*1a0NAq%%aF3NAq%$Q1eQ@A  aD1c!fammoNA1a/Hr!   c                    t         j                  |d      }t        |      |hz
  }|rc|j                         }||v r||   dz   ||   z  }	n||   ||   z  }	||   D ]  }
||
xx   ||
   |	z  z  cc<    ||k7  r| |xx   ||   z  cc<   |rc| S )Nr         ?)r   r   setpop)betweennessr   r   r   r   r   delta
target_setwcoeffvs              r    r   r      s    MM!S!EW#J
EEG
?1X^uQx/E!HuQx'E1 	)A!Ha5((H	)6NeAh&N  r!   c                 n   t         j                  |d      }t        |      }|r|j                         }||   D ]a  }	||v r||	   ||   z  d||   z   z  }
n||   t	        ||         z  }
|	|f| vr| ||	fxx   |
z  cc<   n| |	|fxx   |
z  cc<   ||	xx   |
z  cc<   c ||k7  r| |xx   ||   z  cc<   |r| S )*edge_betweenness_centrality_subset helper.r   r*   )r   r   r+   r,   r   )r-   r   r   r   r   r   r.   r/   r0   r2   cs              r    r%   r%      s    MM!QEWJ
EEG1 		AJ1Xa(S58^<!Hs1Q4y(1v[(QF#q(#QF#q(#!HMH		 6NeAh&N  r!   c                 r    |r|dk  rd}nd|dz
  |dz
  z  z  }n|sd}nd}|| D ]  }| |xx   |z  cc<    | S )z%betweenness_centrality_subset helper.   Nr*            ? r-   r(   r   r   scaler2   s         r    r   r      s^    6EAEa!e,-EEE 	$ANe#N	$r!   c                 l    |r|dk  rd}nd||dz
  z  z  }n|sd}nd}|| D ]  }| |xx   |z  cc<    | S )r4   r8   Nr*   r9   r:   r;   s         r    r&   r&     sY    6E1A;'EEE 	$ANe#N	$r!   )FN)F)__doc__networkxnx*networkx.algorithms.centrality.betweennessr   r   r   r   r   __all___dispatchabler   r   r   r%   r   r&   r:   r!   r    <module>rD      s    ; 
 $( X&^ '^B X&26S 'Sl *$r!   