Ë
    D^(hò  ã                   ó¸   — d Z ddlZddlmZ ddgZ ed«       ed«       ej                  d¬	«      dd
„«       «       «       Z ej                  dd¬«      d„ «       Zy)zTFunctions related to the Mycielski Operation and the Mycielskian family
of graphs.

é    N)Únot_implemented_forÚmycielskianÚmycielski_graphÚdirectedÚ
multigraphT)Úreturns_graphc                 ó¶  ‡— t        j                  | «      }t        |«      D ]´  }|j                  «       Š|j	                  t        ‰d‰z  «      «       t        |j                  «       «      }|j                  ˆfd„|D «       «       |j                  ˆfd„|D «       «       |j                  d‰z  «       |j                  ˆfd„t        ‰«      D «       «       Œ¶ |S )a^  Returns the Mycielskian of a simple, undirected graph G

    The Mycielskian of graph preserves a graph's triangle free
    property while increasing the chromatic number by 1.

    The Mycielski Operation on a graph, :math:`G=(V, E)`, constructs a new
    graph with :math:`2|V| + 1` nodes and :math:`3|E| + |V|` edges.

    The construction is as follows:

    Let :math:`V = {0, ..., n-1}`. Construct another vertex set
    :math:`U = {n, ..., 2n}` and a vertex, `w`.
    Construct a new graph, `M`, with vertices :math:`U \bigcup V \bigcup w`.
    For edges, :math:`(u, v) \in E` add edges :math:`(u, v), (u, v + n)`, and
    :math:`(u + n, v)` to M. Finally, for all vertices :math:`u \in U`, add
    edge :math:`(u, w)` to M.

    The Mycielski Operation can be done multiple times by repeating the above
    process iteratively.

    More information can be found at https://en.wikipedia.org/wiki/Mycielskian

    Parameters
    ----------
    G : graph
        A simple, undirected NetworkX graph
    iterations : int
        The number of iterations of the Mycielski operation to
        perform on G. Defaults to 1. Must be a non-negative integer.

    Returns
    -------
    M : graph
        The Mycielskian of G after the specified number of iterations.

    Notes
    -----
    Graph, node, and edge data are not necessarily propagated to the new graph.

    é   c              3   ó2   •K  — | ]  \  }}||‰z   f–— Œ y ­w©N© ©Ú.0ÚuÚvÚns      €ú[/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/networkx/generators/mycielski.pyú	<genexpr>zmycielskian.<locals>.<genexpr>?   s   øè ø€ Ò:©¨¨1˜!˜Q ™UœÑ:ùó   ƒc              3   ó2   •K  — | ]  \  }}|‰z   |f–— Œ y ­wr   r   r   s      €r   r   zmycielskian.<locals>.<genexpr>@   s   øè ø€ Ò:©¨¨1˜!˜a™% œÑ:ùr   c              3   ó2   •K  — | ]  }|‰z   d ‰z  f–— Œ y­w)r
   Nr   )r   r   r   s     €r   r   zmycielskian.<locals>.<genexpr>B   s   øè ø€ Ò:¨A˜!˜a™%  Q¡œÑ:ùr   )	ÚnxÚconvert_node_labels_to_integersÚrangeÚnumber_of_nodesÚadd_nodes_fromÚlistÚedgesÚadd_edges_fromÚadd_node)ÚGÚ
iterationsÚMÚiÚ	old_edgesr   s        @r   r   r      s¶   ø€ ôZ 	×*Ñ*¨1Ó-€Aä�:Óò ;ˆØ×ÑÓˆØ	×Ñœ˜q ! a¡%›Ô)Ü˜Ÿ™›“Oˆ	Ø	×ÑÓ:°	Ô:Ô:Ø	×ÑÓ:°	Ô:Ô:Ø	�
‰
�1�q‘5ÔØ	×ÑÓ:´°q³Ô:Õ:ð;ð €Hó    )Úgraphsr   c                 ó®   — | dk  rt        j                  d«      ‚| dk(  rt        j                  d«      S t        t        j                  d«      | dz
  «      S )a‡  Generator for the n_th Mycielski Graph.

    The Mycielski family of graphs is an infinite set of graphs.
    :math:`M_1` is the singleton graph, :math:`M_2` is two vertices with an
    edge, and, for :math:`i > 2`, :math:`M_i` is the Mycielskian of
    :math:`M_{i-1}`.

    More information can be found at
    http://mathworld.wolfram.com/MycielskiGraph.html

    Parameters
    ----------
    n : int
        The desired Mycielski Graph.

    Returns
    -------
    M : graph
        The n_th Mycielski Graph

    Notes
    -----
    The first graph in the Mycielski sequence is the singleton graph.
    The Mycielskian of this graph is not the :math:`P_2` graph, but rather the
    :math:`P_2` graph with an extra, isolated vertex. The second Mycielski
    graph is the :math:`P_2` graph, so the first two are hard coded.
    The remaining graphs are generated using the Mycielski operation.

    é   zmust satisfy n >= 1r
   )r   ÚNetworkXErrorÚempty_graphr   Ú
path_graph)r   s    r   r   r   G   sP   € ð@ 	ˆ1‚uÜ×ÑÐ4Ó5Ð5àˆA‚vÜ�~‰~˜aÓ Ð ô œ2Ÿ=™=¨Ó+¨Q°©UÓ3Ð3r&   )r)   )	Ú__doc__Únetworkxr   Únetworkx.utilsr   Ú__all__Ú_dispatchabler   r   r   r&   r   ú<module>r2      s|   ðñó
 Ý .àÐ+Ð
,€ñ �ZÓ Ù�\Ó"Ø€×Ñ Ô%ò5ó &ó #ó !ð5ðp €×Ñ˜¨TÔ2ñ&4ó 3ñ&4r&   