
    wg8                     t    d Z ddlZddlmZ dgZ ed       ed      ej                  dd                     Zy)	z(Functions for finding chains in a graph.    N)not_implemented_forchain_decompositiondirected
multigraphc           
   #   ,  K   d	d}d }||| vrt        j                  d| d       || |      \  }}t               }|D ]O  }|j                  |       d |j	                  |d      D        }|D ]  \  }}	t         ||||	|            }
|
  Q yw)
ua  Returns the chain decomposition of a graph.

    The *chain decomposition* of a graph with respect a depth-first
    search tree is a set of cycles or paths derived from the set of
    fundamental cycles of the tree in the following manner. Consider
    each fundamental cycle with respect to the given tree, represented
    as a list of edges beginning with the nontree edge oriented away
    from the root of the tree. For each fundamental cycle, if it
    overlaps with any previous fundamental cycle, just take the initial
    non-overlapping segment, which is a path instead of a cycle. Each
    cycle or path is called a *chain*. For more information, see [1]_.

    Parameters
    ----------
    G : undirected graph

    root : node (optional)
       A node in the graph `G`. If specified, only the chain
       decomposition for the connected component containing this node
       will be returned. This node indicates the root of the depth-first
       search tree.

    Yields
    ------
    chain : list
       A list of edges representing a chain. There is no guarantee on
       the orientation of the edges in each chain (for example, if a
       chain includes the edge joining nodes 1 and 2, the chain may
       include either (1, 2) or (2, 1)).

    Raises
    ------
    NodeNotFound
       If `root` is not in the graph `G`.

    Examples
    --------
    >>> G = nx.Graph([(0, 1), (1, 4), (3, 4), (3, 5), (4, 5)])
    >>> list(nx.chain_decomposition(G))
    [[(4, 5), (5, 3), (3, 4)]]

    Notes
    -----
    The worst-case running time of this implementation is linear in the
    number of nodes and number of edges [1]_.

    References
    ----------
    .. [1] Jens M. Schmidt (2013). "A simple test on 2-vertex-
       and 2-edge-connectivity." *Information Processing Letters*,
       113, 241–244. Elsevier. <https://doi.org/10.1016/j.ipl.2013.01.016>

    Nc                    t        j                         }g }t        j                  | |      D ]  \  }}}|dk(  rc||k(  r%|j                  |d       |j	                  |       6|j                  ||       |j                  ||d       |j	                  |       o|dk(  r|||   vr|j                  ||d        ||fS )	a+  Builds a directed graph composed of cycles from the given graph.

        `G` is an undirected simple graph. `root` is a node in the graph
        from which the depth-first search is started.

        This function returns both the depth-first search cycle graph
        (as a :class:`~networkx.DiGraph`) and the list of nodes in
        depth-first preorder. The depth-first search cycle graph is a
        directed graph whose edges are the edges of `G` oriented toward
        the root if the edge is a tree edge and away from the root if
        the edge is a non-tree edge. If `root` is not specified, this
        performs a depth-first search on each connected component of `G`
        and returns a directed forest instead.

        If `root` is not in the graph, this raises :exc:`KeyError`.

        )sourceforwardN)parentF)nontreer   T)nxDiGraphdfs_labeled_edgesadd_nodeappendadd_edge)GrootHnodesuvds          _/home/mcse/projects/flask/flask-venv/lib/python3.12/site-packages/networkx/algorithms/chains.py_dfs_cycle_forestz.chain_decomposition.<locals>._dfs_cycle_forestC   s    > JJL++Ad; 	GAq!I~ 6JJqJ.LLOJJqJ+JJq!UJ3LLO iAQqTM

1a
. )	* %x    c              3      K   ||vr0||f |j                  |       || j                  |   d   }}||vr0||f yw)a  Generate the chain starting from the given nontree edge.

        `G` is a DFS cycle graph as constructed by
        :func:`_dfs_cycle_graph`. The edge (`u`, `v`) is a nontree edge
        that begins a chain. `visited` is a set representing the nodes
        in `G` that have already been visited.

        This function yields the edges in an initial segment of the
        fundamental cycle of `G` starting with the nontree edge (`u`,
        `v`) that includes all the edges up until the first node that
        appears in `visited`. The tree edges are given by the 'parent'
        node attribute. The `visited` set is updated to add each node in
        an edge yielded by this function.

        r   N)addr   )r   r   r   visiteds       r   _build_chainz)chain_decomposition.<locals>._build_chain{   sO       wQ$JKKNaggaj*qA w d
s   4>>z
Root node z is not in graphc              3   2   K   | ]  \  }}}|s
||f  y wN ).0r   r   r   s       r   	<genexpr>z&chain_decomposition.<locals>.<genexpr>   s     KGAq!!QKs   	r   )datar"   )r   NodeNotFoundsetr   	out_edgeslist)r   r   r   r    r   r   r   r   edgesr   chains              r   r   r   	   s     t6p. DMoo
4&0@ABB
 !D)HAu eG AKq{{19{'EK 	DAq aAw78EK			s   BBr"   )__doc__networkxr   networkx.utilsr   __all___dispatchabler   r#   r   r   <module>r2      sL    .  . 
! Z \"`  # !`r   