dynetx.DynGraph.add_star¶
-
DynGraph.
add_star
(nodes, t=None)¶ Add a star at time t.
The first node in nodes is the middle of the star. It is connected to all other nodes.
Parameters: - nodes (iterable container) – A container of nodes.
- t (snapshot id (default=None)) –
See also
Examples
>>> import dynetx as dn >>> G = dn.DynGraph() >>> G.add_star([0,1,2,3], t=0)