Skip to content

Commit

Permalink
add generators to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
stecrotti committed Sep 27, 2024
1 parent 34f43fb commit c2ba190
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/src/bipartite.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,12 @@ inneighbors(g::BipartiteIndexedGraph, l::BipartiteGraphVertex{Left})
outneighbors(g::BipartiteIndexedGraph, i::Integer)
outneighbors(g::BipartiteIndexedGraph, v::BipartiteGraphVertex)
adjacency_matrix(g::BipartiteIndexedGraph, T::DataType=Int)
```

## Generators
```@docs
rand_bipartite_graph([rng::AbstractRNG], nleft::Integer, nright::Integer, ned::Integer)
rand_bipartite_graph([rng::AbstractRNG], nleft::Integer, nright::Integer, p::Real)
rand_regular_bipartite_graph([rng::AbstractRNG], nleft::Integer, nright::Integer, k::Integer)
rand_bipartite_tree([rng::AbstractRNG], n::Integer)
```

0 comments on commit c2ba190

Please sign in to comment.