5.5.3. networkx.generators.random_graphs.dense_gnm_random_graph

networkx.generators.random_graphs.dense_gnm_random_graph(n, m, seed=None)[source]

Returns a G_{n,m} random graph.

In the G_{n,m} model, a graph is chosen uniformly at random from the set of all graphs with n nodes and m edges.

This algorithm should be faster than gnm_random_graph() for dense graphs.

Parameters:

n : int

The number of nodes.

m : int

The number of edges.

seed : int, optional

Seed for random number generator (default=None).

See also

gnm_random_graph

Notes

Algorithm by Keith M. Briggs Mar 31, 2006. Inspired by Knuth’s Algorithm S (Selection sampling technique), in section 3.4.2 of [R1078].

References

[R1078](1, 2) Donald E. Knuth, The Art of Computer Programming, Volume 2/Seminumerical algorithms, Third Edition, Addison-Wesley, 1997.