
    wg                     V    d Z ddlmZ ddlZdgZ ej                  dd      d        Zy)z 
Generators for interval graph.
    )SequenceNinterval_graphT)graphsreturns_graphc                    t        |       } | D ]D  }t        |t              rt        |      dk(  st	        d      |d   |d   kD  s8t        d|        t        j                         }| D cg c]  }t        |       }}|j                  |       |rB|j                         x\  }}}|D ]%  }|\  }}	||k\  s|	|k\  s|j                  ||       ' |rB|S c c}w )ao  Generates an interval graph for a list of intervals given.

    In graph theory, an interval graph is an undirected graph formed from a set
    of closed intervals on the real line, with a vertex for each interval
    and an edge between vertices whose intervals intersect.
    It is the intersection graph of the intervals.

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

    Parameters
    ----------
    intervals : a sequence of intervals, say (l, r) where l is the left end,
    and r is the right end of the closed interval.

    Returns
    -------
    G : networkx graph

    Examples
    --------
    >>> intervals = [(-2, 3), [1, 4], (2, 3), (4, 6)]
    >>> G = nx.interval_graph(intervals)
    >>> sorted(G.edges)
    [((-2, 3), (1, 4)), ((-2, 3), (2, 3)), ((1, 4), (2, 3)), ((1, 4), (4, 6))]

    Raises
    ------
    :exc:`TypeError`
        if `intervals` contains None or an element which is not
        collections.abc.Sequence or not a length of 2.
    :exc:`ValueError`
        if `intervals` contains an interval such that min1 > max1
        where min1,max1 = interval
       zZEach interval must have length 2, and be a collections.abc.Sequence such as tuple or list.r      z*Interval must have lower value first. Got )list
isinstancer   len	TypeError
ValueErrornxGraphtupleadd_nodes_frompopadd_edge)
	intervalsintervalgraphtupled_intervalsmin1max1	interval1	interval2min2max2s
             g/home/mcse/projects/flask/flask-venv/lib/python3.12/site-packages/networkx/generators/interval_graph.pyr   r      s    J YI V8X.3x=A3EB  A;!$I(TUUV HHJE8ABHhBB	)*
!1!5!5!77
dY) 	5I"JD$t|y)4	5  L Cs   -C)__doc__collections.abcr   networkxr   __all___dispatchabler        r   <module>r'      s=    % 
 T29 39r&   