Skip to content

Commit b993f9d

Browse files
committed
Deactivate some random doctests
1 parent f55e117 commit b993f9d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/SimpleGraphs/generators/randgraphs.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ julia> using Graphs
150150
julia> erdos_renyi(10, 0.5)
151151
{10, 20} undirected simple Int64 graph
152152
```
153-
```jldoctest
153+
```
154154
julia> using Graphs
155155
156156
julia> erdos_renyi(10, 0.5, is_directed=true, seed=123)
@@ -186,7 +186,7 @@ graph with `n` vertices and `ne` edges.
186186
- `seed=nothing`: set the RNG seed.
187187
188188
# Examples
189-
```jldoctest
189+
```
190190
julia> using Graphs
191191
192192
julia> erdos_renyi(10, 30)
@@ -703,7 +703,7 @@ julia> edges(g) |> collect
703703
Edge 2 => 3
704704
Edge 2 => 4
705705
```
706-
```jldoctest
706+
```
707707
julia> using Graphs
708708
709709
julia> g = static_fitness_model(5, [1, 1, 0.5, 0.1], seed=123)
@@ -762,7 +762,7 @@ Time complexity is ``\\mathcal{O}(|V| + |E| log |E|)``.
762762
- Goh K-I, Kahng B, Kim D: Universal behaviour of load distribution in scale-free networks. Phys Rev Lett 87(27):278701, 2001.
763763
764764
## Examples
765-
```jldoctest
765+
```
766766
julia> using Graphs
767767
768768
julia> g = static_fitness_model(6, [1, 0.2, 0.2, 0.2], [0.1, 0.1, 0.1, 0.9]; seed=123)

0 commit comments

Comments
 (0)