Function rs_graph::classes::star

source ·
pub fn star<G>(n: usize) -> Gwhere
    G: Graph + Buildable,
Expand description

Returns a star graph with n rays.

The center node will be the first node. This is equivalent to complete_bipartite(1,n).

If G is a digraph, the source of all edges will be the center node.