dynetworkx.ImpulseGraph.interval

ImpulseGraph.interval()
Return a 2-tuple as (begin, end) interval of the entire
impulse graph.

Examples

>>> G = dnx.ImpulseGraph()
>>> G.add_edges_from([(1, 2, 10), (3, 7, 16)])
>>> G.interval()
(10, 16)