use crate::num::traits::{Num, NumAssign};
use crate::traits::{GraphType, IndexDigraph, IndexGraph};
use crate::vec::EdgeVec;
pub trait MaxFlow<'a> {
type Graph: IndexGraph<'a>;
type Flow: Num + Ord;
fn new(g: &'a Self::Graph) -> Self;
fn as_graph(&self) -> &'a Self::Graph;
fn value(&self) -> Self::Flow;
fn flow(&self, a: <Self::Graph as GraphType<'a>>::Edge) -> Self::Flow;
fn flow_vec(&self) -> EdgeVec<'a, &'a Self::Graph, Self::Flow> {
EdgeVec::new_with(self.as_graph(), |e| self.flow(e))
}
fn solve<Us>(
&mut self,
src: <Self::Graph as GraphType<'a>>::Node,
snk: <Self::Graph as GraphType<'a>>::Node,
upper: Us,
) where
Us: Fn(<Self::Graph as GraphType<'a>>::Edge) -> Self::Flow;
fn mincut(&self) -> Vec<<Self::Graph as GraphType<'a>>::Node>;
}
pub fn solve<'a, G, F, Us, M>(
g: &'a G,
src: G::Node,
snk: G::Node,
upper: Us,
) -> (F, EdgeVec<'a, &'a G, F>, Vec<G::Node>)
where
G: IndexGraph<'a>,
F: Num + Ord + Copy,
Us: Fn(G::Edge) -> F,
M: 'a + MaxFlow<'a, Graph = G, Flow = F>,
{
let mut maxflow = M::new(g);
maxflow.solve(src, snk, upper);
(maxflow.value(), maxflow.flow_vec(), maxflow.mincut())
}
pub fn edmondskarp<'a, G, F, Us>(
g: &'a G,
src: G::Node,
snk: G::Node,
upper: Us,
) -> (F, EdgeVec<&'a G, F>, Vec<G::Node>)
where
G: IndexDigraph<'a>,
F: 'a + NumAssign + Ord + Copy,
Us: Fn(G::Edge) -> F,
{
solve::<G, F, Us, EdmondsKarp<G, F>>(g, src, snk, upper)
}
pub fn dinic<'a, G, F, Us>(g: &'a G, src: G::Node, snk: G::Node, upper: Us) -> (F, EdgeVec<'a, &'a G, F>, Vec<G::Node>)
where
G: IndexDigraph<'a>,
F: 'a + NumAssign + Ord + Copy,
Us: Fn(G::Edge) -> F,
{
solve::<G, F, Us, Dinic<G, F>>(g, src, snk, upper)
}
pub fn pushrelabel<'a, G, F, Us>(
g: &'a G,
src: G::Node,
snk: G::Node,
upper: Us,
) -> (F, EdgeVec<'a, &'a G, F>, Vec<G::Node>)
where
G: IndexDigraph<'a>,
F: 'a + NumAssign + Ord + Copy,
Us: Fn(G::Edge) -> F,
{
solve::<G, F, Us, PushRelabel<G, F>>(g, src, snk, upper)
}
pub mod edmondskarp;
pub use self::edmondskarp::EdmondsKarp;
pub mod dinic;
pub use self::dinic::Dinic;
pub mod pushrelabel;
pub use self::pushrelabel::PushRelabel;