Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

removed flow algorithms #815

Merged
merged 5 commits into from
Jan 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion benchmark/benchmarks.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ GRAPHS = Dict{String,Graph}(
include("edges.jl")
include("centrality.jl")
include("connectivity.jl")
include("max-flow.jl")
include("traversals.jl")
end
10 changes: 0 additions & 10 deletions benchmark/max-flow.jl

This file was deleted.

1 change: 0 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ makedocs(
"Matching" => "matching.md",
"Community Structures" => "community.md",
"Degeneracy" => "degeneracy.md",
"Flow and Cut" => "flowcut.md",
"Integration with other packages" => "integration.md",
"Contributing" => "contributing.md",
"Developer Notes" => "developing.md",
Expand Down
24 changes: 0 additions & 24 deletions docs/src/flowcut.md

This file was deleted.

12 changes: 0 additions & 12 deletions src/LightGraphs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,6 @@ contract,
# persistence
loadgraph, loadgraphs, savegraph, LGFormat,

# flow
maximum_flow, EdmondsKarpAlgorithm, DinicAlgorithm, BoykovKolmogorovAlgorithm, PushRelabelAlgorithm,
multiroute_flow, KishimotoAlgorithm, ExtendedMultirouteFlowAlgorithm,

# randgraphs
erdos_renyi, watts_strogatz, random_regular_graph, random_regular_digraph, random_configuration_model,
random_tournament_digraph, StochasticBlockModel, make_edgestream, nearbipartiteSBM, blockcounts,
Expand Down Expand Up @@ -223,14 +219,6 @@ include("community/label_propagation.jl")
include("community/core-periphery.jl")
include("community/clustering.jl")
include("community/cliques.jl")
include("flow/maximum_flow.jl")
include("flow/edmonds_karp.jl")
include("flow/dinic.jl")
include("flow/boykov_kolmogorov.jl")
include("flow/push_relabel.jl")
include("flow/multiroute_flow.jl")
include("flow/kishimoto.jl")
include("flow/ext_multiroute_flow.jl")
include("spanningtrees/kruskal.jl")
include("spanningtrees/prim.jl")
include("biconnectivity/articulation.jl")
Expand Down
202 changes: 0 additions & 202 deletions src/flow/boykov_kolmogorov.jl

This file was deleted.

118 changes: 0 additions & 118 deletions src/flow/dinic.jl

This file was deleted.

Loading