You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SimpleValueGraphs is as [LightGraphs.jl](https://github.com/JuliaGraphs/LightGraphs.jl) compatible package for graphs with multiple, homogeneous vertex, edge and graph metadata. In particular it provides:
11
+
SimpleValueGraphs is a [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl) compatible package for graphs with multiple, homogeneous vertex, edge and graph metadata. In particular it provides:
12
12
- an abstract interface for graphs with metadata
13
13
- concrete implementations of mutable graphs with metadata
14
14
@@ -26,12 +26,12 @@ Compared to [MetaGraphs.jl](https://github.com/JuliaGraphs/MetaGraphs.jl) it has
26
26
```julia
27
27
using SimpleValueGraphs
28
28
29
-
usingLightGraphs: smallgraph
29
+
usingGraphs: smallgraph
30
30
using Plots
31
31
using GraphRecipes: graphplot
32
32
using Colors: RGB, Color
33
33
34
-
# Load a LightGraphs.SimpleGraph
34
+
# Load a Graphs.SimpleGraph
35
35
gs =smallgraph(:house)
36
36
37
37
# Convert to a ValGraph with vertex and edge values
@@ -58,25 +58,25 @@ graphplot(gv;
58
58
59
59
## Benchmarks
60
60
61
-
This is a comparison of running `LightGraphs.dijkstra_shortest_paths` on the [egonets-Facebook](https://snap.stanford.edu/data/egonets-Facebook.html) graph for multiple graph types.
61
+
This is a comparison of running `Graphs.dijkstra_shortest_paths` on the [egonets-Facebook](https://snap.stanford.edu/data/egonets-Facebook.html) graph for multiple graph types.
0 commit comments