rs_graph/maxflow/
mod.rs

1// Copyright (c) 2015, 2016, 2017, 2018, 2020, 2021, 2022 Frank Fischer <frank-fischer@shadow-soft.de>
2//
3// This program is free software: you can redistribute it and/or
4// modify it under the terms of the GNU General Public License as
5// published by the Free Software Foundation, either version 3 of the
6// License, or (at your option) any later version.
7//
8// This program is distributed in the hope that it will be useful, but
9// WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11// General Public License for more details.
12//
13// You should have received a copy of the GNU General Public License
14// along with this program.  If not, see  <http://www.gnu.org/licenses/>
15//
16
17//! Maximum Network Flow algorithms.
18
19pub mod edmondskarp;
20pub use self::edmondskarp::{edmondskarp, EdmondsKarp};
21
22pub mod dinic;
23pub use self::dinic::{dinic, Dinic};
24
25pub mod pushrelabel;
26pub use self::pushrelabel::{pushrelabel, PushRelabel};