ó
ś£Õ\c           @   s„   d  Z  d Z d d d g Z d d l Z d d l m Z d d l m Z	 e
 d d	  Z e
 d d
  Z e d d d  Z d   Z d   Z e
 d  Z e
 d  Z d S(   s7   
Betweenness centrality measures for subsets of nodes.
s   Aric Hagberg (hagberg@lanl.gov)t   betweenness_centrality_subsett"   edge_betweenness_centrality_subsett   betweenness_centrality_sourcei’’’’N(   t"   _single_source_dijkstra_path_basic(   t"   _single_source_shortest_path_basicc   
      C   s«   t  j |  d  } xk | D]c } | d k rF t |  |  \ } } }	 n t |  | |  \ } } }	 t | | | |	 | |  } q Wt | t |   d | d |  j   } | S(   s¼  Compute betweenness centrality for a subset of nodes.

    .. math::

       c_B(v) =\sum_{s\in S, t \in T} rac{\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

    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  
      If None, all edge weights are considered equal.
      Otherwise holds the name of the edge attribute used as weight.

    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 the same
    as in betweenness_centrality() and is designed to make
    betweenness_centrality(G) be the same as
    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.
       http://www.inf.uni-konstanz.de/algo/publications/b-fabc-01.pdf
    .. [2] Ulrik Brandes: On Variants of Shortest-Path Betweenness 
       Centrality and their Generic Computation. 
       Social Networks 30(2):136-145, 2008.
       http://www.inf.uni-konstanz.de/algo/publications/b-vspbc-08.pdf
    g        t
   normalizedt   directedN(	   t   dictt   fromkeyst   Nonet   shortest_patht   dijkstrat   _accumulate_subsett   _rescalet   lent   is_directed(
   t   Gt   sourcest   targetsR   t   weightt   bt   st   St   Pt   sigma(    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyR       s    F'c         C   sā   t  j |  d  } | j t  j |  j   d   xk | D]c } | d k re t |  |  \ } } }	 n t |  | |  \ } } }	 t | | | |	 | |  } q8 Wx |  D] }
 | |
 =q¦ Wt | t	 |   d | d |  j
   } | S(   sm  Compute betweenness centrality for edges for a subset of nodes.

    .. math::

       c_B(v) =\sum_{s\in S,t \in T} rac{\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  
      If None, all edge weights are considered equal.
      Otherwise holds the name of the edge attribute used as weight.

    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.
       http://www.inf.uni-konstanz.de/algo/publications/b-fabc-01.pdf
    .. [2] Ulrik Brandes: On Variants of Shortest-Path Betweenness 
       Centrality and their Generic Computation. 
       Social Networks 30(2):136-145, 2008.
       http://www.inf.uni-konstanz.de/algo/publications/b-vspbc-08.pdf

    g        R   R   N(   R   R   t   updatet   edgesR	   R
   R   t   _accumulate_edges_subsett
   _rescale_eR   R   (   R   R   R   R   R   R   R   R   R   R   t   n(    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyR   j   s    E'c         C   s=   | d  k r |  j   } n  |  j   } t |  | | | |  S(   N(   R	   t   nodesR    (   R   R   R   R   R   (    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyR   ¾   s    c   
      C   sĢ   t  j | d  } t |  } x§ | rĒ | j   } xk | | D]_ }	 | | k r{ | |	 c | |	 | | d | | 7<q> | |	 c | | t | |  7<q> W| | k r! |  | c | | 7<q! q! W|  S(   Ni    g      š?(   R   R   t   sett   popR   (
   t   betweennessR   R   R   R   R   t   deltat
   target_sett   wt   v(    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyR   Å   s    	+&c         C   s	  t  j | d  } t |  } xä | r| j   } xØ | | D] }	 | | k rq | |	 | | d | | }
 n | | t | |  }
 |	 | f |  k r“ |  | |	 f c |
 7<n |  |	 | f c |
 7<| |	 c |
 7<q> W| | k r! |  | c | | 7<q! q! W|  S(   Ni    g      š?(   R   R   R   R    R   (   R!   R   R   R   R   R   R"   R#   R$   R%   t   c(    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyR   Ó   s    	!c         C   s   | t  k r: | d k r! d  } qS d | d | d } n | sM d d } n d  } | d  k	 r x! |  D] } |  | c | 9<qf Wn  |  S(   Ni   g      š?i   g       @(   t   TrueR	   (   R!   R   R   R   t   scaleR%   (    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyR   é   s    	c         C   s   | t  k r6 | d k r! d  } qO d | | d } n | sI d d } n d  } | d  k	 r x! |  D] } |  | c | 9<qb Wn  |  S(   Ni   g      š?g       @(   R'   R	   (   R!   R   R   R   R(   R%   (    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyR   ł   s    	(   t   __doc__t
   __author__t   __all__t   networkxt   nxt*   networkx.algorithms.centrality.betweennessR   R   R   R
   t   FalseR	   R    R   R'   R   R   R   R   R   (    (    (    si   /Users/dxp/prism/prism-games/prism-examples/smgs/car/networkx/algorithms/centrality/betweenness_subset.pyt   <module>   s    	QR		