1
- using LightGraphs
1
+ using Graphs
2
2
using SparseArrays
3
3
4
4
import Base: show, eltype, copy
5
- import LightGraphs : nv, has_edge, has_vertex, add_edge!, rem_edge!, rem_vertex!,
5
+ import Graphs : nv, has_edge, has_vertex, add_edge!, rem_edge!, rem_vertex!,
6
6
rem_vertices!, add_vertex!, add_vertices!, outneighbors, inneighbors, vertices, edges,
7
7
adjacency_matrix, src, dst, nv, edgetype
8
8
@@ -57,7 +57,7 @@ is not less than `mul`.
57
57
58
58
## Examples
59
59
```julia
60
- julia> using LightGraphs , Multigraphs
60
+ julia> using Graphs , Multigraphs
61
61
62
62
julia> mg = Multigraph(3);
63
63
@@ -82,7 +82,7 @@ Return `true` multiple edge was added successfully, otherwise return `false`.
82
82
83
83
## Examples
84
84
```julia
85
- julia> using LightGraphs , Multigraphs
85
+ julia> using Graphs , Multigraphs
86
86
87
87
julia> mg = Multigraph(3);
88
88
@@ -109,7 +109,7 @@ a multiple edge.
109
109
110
110
## Examples
111
111
```julia
112
- julia> using LightGraphs , Multigraphs
112
+ julia> using Graphs , Multigraphs
113
113
114
114
julia> mg = Multigraph(3);
115
115
@@ -139,7 +139,7 @@ Return a `MultipleEdgeIter` for `mg`.
139
139
## Examples
140
140
```jltestdoc
141
141
julia>
142
- julia> using LightGraphs , Multigraphs
142
+ julia> using Graphs , Multigraphs
143
143
144
144
julia> mg = Multigraph(path_graph(4));
145
145
0 commit comments