write_solution

Function write_solution 

Source
pub fn write_solution<'a, W, G, T, Fs>(
    w: W,
    g: &'a G,
    flow: Fs,
    value: T,
) -> Result<()>
where W: Write, G: IndexDigraph, T: Display + Zero, Fs: Fn(G::Edge<'a>) -> T,
Expand description

Write a solution of a min-cost-flow problem.