Ë
    D^(hJ  ã                   óZ   — d Z ddlmZ ddlZddlmZ dgZej                  dd„«       Zd„ Z	y)	z%Node redundancy for bipartite graphs.é    )ÚcombinationsN)ÚNetworkXErrorÚnode_redundancyc                 óŠ   ‡ — |€‰ }t        ˆ fd„|D «       «      rt        d«      ‚|D �ci c]  }|t        ‰ |«      “Œ c}S c c}w )u©  Computes the node redundancy coefficients for the nodes in the bipartite
    graph `G`.

    The redundancy coefficient of a node `v` is the fraction of pairs of
    neighbors of `v` that are both linked to other nodes. In a one-mode
    projection these nodes would be linked together even if `v` were
    not there.

    More formally, for any vertex `v`, the *redundancy coefficient of `v`* is
    defined by

    .. math::

        rc(v) = \frac{|\{\{u, w\} \subseteq N(v),
        \: \exists v' \neq  v,\: (v',u) \in E\:
        \mathrm{and}\: (v',w) \in E\}|}{ \frac{|N(v)|(|N(v)|-1)}{2}},

    where `N(v)` is the set of neighbors of `v` in `G`.

    Parameters
    ----------
    G : graph
        A bipartite graph

    nodes : list or iterable (optional)
        Compute redundancy for these nodes. The default is all nodes in G.

    Returns
    -------
    redundancy : dictionary
        A dictionary keyed by node with the node redundancy value.

    Examples
    --------
    Compute the redundancy coefficient of each node in a graph::

        >>> from networkx.algorithms import bipartite
        >>> G = nx.cycle_graph(4)
        >>> rc = bipartite.node_redundancy(G)
        >>> rc[0]
        1.0

    Compute the average redundancy for the graph::

        >>> from networkx.algorithms import bipartite
        >>> G = nx.cycle_graph(4)
        >>> rc = bipartite.node_redundancy(G)
        >>> sum(rc.values()) / len(G)
        1.0

    Compute the average redundancy for a set of nodes::

        >>> from networkx.algorithms import bipartite
        >>> G = nx.cycle_graph(4)
        >>> rc = bipartite.node_redundancy(G)
        >>> nodes = [0, 2]
        >>> sum(rc[n] for n in nodes) / len(nodes)
        1.0

    Raises
    ------
    NetworkXError
        If any of the nodes in the graph (or in `nodes`, if specified) has
        (out-)degree less than two (which would result in division by zero,
        according to the definition of the redundancy coefficient).

    References
    ----------
    .. [1] Latapy, Matthieu, ClÃ©mence Magnien, and Nathalie Del Vecchio (2008).
       Basic notions for the analysis of large two-mode networks.
       Social Networks 30(1), 31--48.

    c              3   ó@   •K  — | ]  }t        ‰|   «      d k  –— Œ y­w)é   N)Úlen)Ú.0ÚvÚGs     €úf/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/networkx/algorithms/bipartite/redundancy.pyú	<genexpr>z"node_redundancy.<locals>.<genexpr>X   s   øè ø€ Ò
(˜QŒ3ˆq�‰t‹9�q�=Ñ
(ùs   ƒzSCannot compute redundancy coefficient for a node that has fewer than two neighbors.)Úanyr   Ú_node_redundancy)r   Únodesr   s   `  r   r   r      sS   ø€ ðV €}ØˆÜ
Ó
( %Ô
(Ô(Üð2ó
ð 	
ð
 05Ö5¨!ˆAÔ  1Ó%Ñ%Ò5Ð5ùÒ5s   ©A c                 ó‚   ‡ ‡— t        ‰ ‰   «      }t        ˆ ˆfd„t        ‰ ‰   d«      D «       «      }d|z  ||dz
  z  z  S )a™  Returns the redundancy of the node `v` in the bipartite graph `G`.

    If `G` is a graph with `n` nodes, the redundancy of a node is the ratio
    of the "overlap" of `v` to the maximum possible overlap of `v`
    according to its degree. The overlap of `v` is the number of pairs of
    neighbors that have mutual neighbors themselves, other than `v`.

    `v` must have at least two neighbors in `G`.

    c              3   ól   •K  — | ]+  \  }}t        ‰|   «      t        ‰|   «      z  ‰hz
  sŒ(d –— Œ- y­w)é   N)Úset)r
   ÚuÚwr   r   s      €€r   r   z#_node_redundancy.<locals>.<genexpr>m   s8   øè ø€ ò Ùˆq�!´#°a¸±d³)¼cÀ!ÀAÁ$»iÑ2GÈAÈ3Ó1NŒñùs   ƒ)4­4r   r   )r	   Úsumr   )r   r   ÚnÚoverlaps   ``  r   r   r   a   sM   ù€ ô 	ˆAˆa‰D‹	€AÜô Ü$ Q q¡T¨1Ó-ôó €Gð �‰K˜A  Q¡™KÑ(Ð(ó    )N)
Ú__doc__Ú	itertoolsr   ÚnetworkxÚnxr   Ú__all__Ú_dispatchabler   r   © r   r   ú<module>r#      s;   ðÙ +å "ã Ý "àÐ
€ð ×ÑòR6ó ðR6ój)r   