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
Flow algorithms on top of [LightGraphs.jl](https://github.com/JuliaGraphs/LightGraphs.jl),
7
+
Flow algorithms on top of [Graphs.jl](https://github.com/JuliaGraphs/Graphs.jl),
8
8
including `maximum_flow`, `multiroute_flow` and `mincost_flow`.
9
9
See [Maximum flow problem](https://en.wikipedia.org/wiki/Maximum_flow_problem)
10
10
for a detailed description of the problem.
11
11
12
-
Documentation for this package is available [here](https://juliagraphs.github.io/LightGraphsFlows.jl/latest/). For an overview of JuliaGraphs, see [this page](https://juliagraphs.github.io/).
12
+
Documentation for this package is available [here](https://juliagraphs.github.io/GraphsFlows.jl/latest/). For an overview of JuliaGraphs, see [this page](https://juliagraphs.github.io/).
13
13
14
14
## Usage
15
15
16
16
### Maxflow
17
17
18
18
```julia
19
-
julia>using LightGraphs, LightGraphsFlows
20
-
julia>const LG = LightGraphs
21
-
julia> flow_graph = LG.DiGraph(8) # Create a flow graph
19
+
julia>using Graphs, GraphsFlows
20
+
julia> flow_graph = Graphs.DiGraph(8) # Create a flow graph
0 commit comments