Ë
    D^(h‚  ã                   óŽ   — d Z ddlZddlmZ dgZ ed«       ed«       ej                  dddœ¬	«      d
ddœd„«       «       «       Zy)zTime dependent algorithms.é    N)Únot_implemented_forÚcd_indexÚ
undirectedÚ
multigraphé   )ÚtimeÚweight)Ú
node_attrsr   c          	      óþ  ‡ ‡‡‡— t        ˆ ˆfd„‰ D «       «      st        j                  d«      ‚	 ‰ j                  ‰   ‰   |z   }‰ j                  ‰   D �ch c]  }‰ j                  |   ‰   |k  sŒ|’Œ }}|D �‡cg c]  Št        ˆ ˆfd„‰ ‰   D «       «      rdnd‘Œ  }}t         |j                  ˆ ˆfd„‰ ‰   D «       Ž «      }	|	dk(  rt        j                  d	«      ‚|€t        t        d
„ |D «       «      |	z  d«      S |D �cg c]!  }‰ j                  |   j                  |d«      ‘Œ# }
}t        t        d„ t        ||
«      D «       «      |	z  d«      S c c}w #  t        j                  d«      ‚xY wc c}w c c}w )a  Compute the CD index for `node` within the graph `G`.

    Calculates the CD index for the given node of the graph,
    considering only its predecessors who have the `time` attribute
    smaller than or equal to the `time` attribute of the `node`
    plus `time_delta`.

    Parameters
    ----------
    G : graph
       A directed networkx graph whose nodes have `time` attributes and optionally
       `weight` attributes (if a weight is not given, it is considered 1).
    node : node
       The node for which the CD index is calculated.
    time_delta : numeric or timedelta
       Amount of time after the `time` attribute of the `node`. The value of
       `time_delta` must support comparison with the `time` node attribute. For
       example, if the `time` attribute of the nodes are `datetime.datetime`
       objects, then `time_delta` should be a `datetime.timedelta` object.
    time : string (Optional, default is "time")
        The name of the node attribute that will be used for the calculations.
    weight : string (Optional, default is None)
        The name of the node attribute used as weight.

    Returns
    -------
    float
       The CD index calculated for the node `node` within the graph `G`.

    Raises
    ------
    NetworkXError
       If not all nodes have a `time` attribute or
       `time_delta` and `time` attribute types are not compatible or
       `n` equals 0.

    NetworkXNotImplemented
        If `G` is a non-directed graph or a multigraph.

    Examples
    --------
    >>> from datetime import datetime, timedelta
    >>> G = nx.DiGraph()
    >>> nodes = {
    ...     1: {"time": datetime(2015, 1, 1)},
    ...     2: {"time": datetime(2012, 1, 1), "weight": 4},
    ...     3: {"time": datetime(2010, 1, 1)},
    ...     4: {"time": datetime(2008, 1, 1)},
    ...     5: {"time": datetime(2014, 1, 1)},
    ... }
    >>> G.add_nodes_from([(n, nodes[n]) for n in nodes])
    >>> edges = [(1, 3), (1, 4), (2, 3), (3, 4), (3, 5)]
    >>> G.add_edges_from(edges)
    >>> delta = timedelta(days=5 * 365)
    >>> nx.cd_index(G, 3, time_delta=delta, time="time")
    0.5
    >>> nx.cd_index(G, 3, time_delta=delta, time="time", weight="weight")
    0.12

    Integers can also be used for the time values:
    >>> node_times = {1: 2015, 2: 2012, 3: 2010, 4: 2008, 5: 2014}
    >>> nx.set_node_attributes(G, node_times, "new_time")
    >>> nx.cd_index(G, 3, time_delta=4, time="new_time")
    0.5
    >>> nx.cd_index(G, 3, time_delta=4, time="new_time", weight="weight")
    0.12

    Notes
    -----
    This method implements the algorithm for calculating the CD index,
    as described in the paper by Funk and Owen-Smith [1]_. The CD index
    is used in order to check how consolidating or destabilizing a patent
    is, hence the nodes of the graph represent patents and the edges show
    the citations between these patents. The mathematical model is given
    below:

    .. math::
        CD_{t}=\frac{1}{n_{t}}\sum_{i=1}^{n}\frac{-2f_{it}b_{it}+f_{it}}{w_{it}},

    where `f_{it}` equals 1 if `i` cites the focal patent else 0, `b_{it}` equals
    1 if `i` cites any of the focal patents successors else 0, `n_{t}` is the number
    of forward citations in `i` and `w_{it}` is a matrix of weight for patent `i`
    at time `t`.

    The `datetime.timedelta` package can lead to off-by-one issues when converting
    from years to days. In the example above `timedelta(days=5 * 365)` looks like
    5 years, but it isn't because of leap year days. So it gives the same result
    as `timedelta(days=4 * 365)`. But using `timedelta(days=5 * 365 + 1)` gives
    a 5 year delta **for this choice of years** but may not if the 5 year gap has
    more than 1 leap year. To avoid these issues, use integers to represent years,
    or be very careful when you convert units of time.

    References
    ----------
    .. [1] Funk, Russell J., and Jason Owen-Smith.
           "A dynamic network measure of technological change."
           Management science 63, no. 3 (2017): 791-817.
           http://russellfunk.org/cdindex/static/papers/funk_ms_2017.pdf

    c              3   ó@   •K  — | ]  }‰‰j                   |   v –— Œ y ­w©N)Únodes)Ú.0ÚnÚGr   s     €€ú`/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/networkx/algorithms/time_dependent.pyú	<genexpr>zcd_index.<locals>.<genexpr>q   s   øè ø€ Ò- aˆt�q—w‘w˜q‘zÔ!Ñ-ùs   ƒz&Not all nodes have a 'time' attribute.zPAddition and comparison are not supported between 'time_delta' and 'time' types.c              3   ó,   •K  — | ]  }|‰‰   v –— Œ y ­wr   © )r   Újr   Úis     €€r   r   zcd_index.<locals>.<genexpr>€   s   øè ø€ Ò. �1˜˜!™”9Ñ.ùs   ƒéÿÿÿÿr   c              3   ó`   •K  — | ]%  }‰j                   |   j                  «       ‰hz
  –— Œ' y ­wr   )ÚpredÚkeys)r   Úsr   Únodes     €€r   r   zcd_index.<locals>.<genexpr>ƒ   s'   øè ø€ ÒD°q˜Ÿ™ ™Ÿ™Ó)¨T¨FÕ2ÑDùs   ƒ+.r   zThe cd index cannot be defined.c              3   ó    K  — | ]  }|–— Œ y ­wr   r   )r   Úbis     r   r   zcd_index.<locals>.<genexpr>‰   s   è ø€ Ò( œÑ(ùs   ‚é   c              3   ó,   K  — | ]  \  }}||z  –— Œ y ­wr   r   )r   r   Úwts      r   r   zcd_index.<locals>.<genexpr>Ž   s   è ø€ Ò?¡V R¨˜˜b�Ñ?ùs   ‚)ÚallÚnxÚNetworkXErrorr   r   ÚanyÚlenÚunionÚroundÚsumÚgetÚzip)r   r   Ú
time_deltar   r	   Útarget_dater   r   Úbr   Úweightss   `` `  `    r   r   r   	   sv  û€ ôP Ô-¨1Ô-Ô-Ü×ÑÐGÓHÐHð	
à—g‘g˜d‘m DÑ)¨JÑ6ˆàŸ6™6 $™<ÖK�a¨1¯7©7°1©:°dÑ+;¸{Ó+J’ÐKˆÐKð @D×D¸!ŒsÔ. a¨¡gÔ.Ô.‰°AÑ	5ÐD€AÐDô 	ˆJˆD�J‰JÔD¸A¸d¹GÔDÐEÓF€AØˆA‚vÜ×ÑÐ@ÓAÐAð €~Ü”SÑ( aÔ(Ó(¨1Ñ,¨aÓ0Ð0ð 7;Ö;°�1—7‘7˜1‘:—>‘> &¨!Õ,Ð;ˆÐ;Ü”SÑ?¬s°1°g«Ô?Ó?À!ÑCÀQÓGÐGùò- Løð
Ü×Ñð ó
ð 	
üò 	Eùò <s/   °&E ÁEÁ1EÁ5E Á<#E5Ä&E:ÅE ÅE2)Ú__doc__Únetworkxr$   Únetworkx.utilsr   Ú__all__Ú_dispatchabler   r   ó    r   ú<module>r7      s^   ðÙ  ã Ý .àˆ,€ñ �\Ó"Ù�\Ó"Ø€×Ñ d°aÑ8Ô9Ø*0¸ó BHó :ó #ó #ñBHr6   