Skip to content

Commit

Permalink
Deactivate some random doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed Nov 6, 2024
1 parent f55e117 commit b993f9d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/SimpleGraphs/generators/randgraphs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ julia> using Graphs
julia> erdos_renyi(10, 0.5)
{10, 20} undirected simple Int64 graph
```
```jldoctest
```
julia> using Graphs
julia> erdos_renyi(10, 0.5, is_directed=true, seed=123)
Expand Down Expand Up @@ -186,7 +186,7 @@ graph with `n` vertices and `ne` edges.
- `seed=nothing`: set the RNG seed.
# Examples
```jldoctest
```
julia> using Graphs
julia> erdos_renyi(10, 30)
Expand Down Expand Up @@ -703,7 +703,7 @@ julia> edges(g) |> collect
Edge 2 => 3
Edge 2 => 4
```
```jldoctest
```
julia> using Graphs
julia> g = static_fitness_model(5, [1, 1, 0.5, 0.1], seed=123)
Expand Down Expand Up @@ -762,7 +762,7 @@ Time complexity is ``\\mathcal{O}(|V| + |E| log |E|)``.
- Goh K-I, Kahng B, Kim D: Universal behaviour of load distribution in scale-free networks. Phys Rev Lett 87(27):278701, 2001.
## Examples
```jldoctest
```
julia> using Graphs
julia> g = static_fitness_model(6, [1, 0.2, 0.2, 0.2], [0.1, 0.1, 0.1, 0.9]; seed=123)
Expand Down

0 comments on commit b993f9d

Please sign in to comment.