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

nodesiterable container

A container of nodes.

t : snapshot id (default=None)

See Also

add_path, add_cycle

Examples

>>> import dynetx as dn
>>> G = dn.DynGraph()
>>> G.add_star([0,1,2,3], t=0)