[][src]Struct rs_graph::maxflow::pushrelabel::PushRelabel

pub struct PushRelabel<'a, G, F> where
    G: 'a + IndexDigraph<'a>, 
{ pub cnt_relabel: usize, pub use_global_relabelling: bool, // some fields omitted }

The push-relabel algorithm.

This struct contains all algorithmic working data.

Fields

cnt_relabel: usize

The number of relabel operations performed during the algorithm.

use_global_relabelling: bool

Whether to use the global relabelling heuristic.

Trait Implementations

impl<'a, G, F> MaxFlow<'a> for PushRelabel<'a, G, F> where
    G: IndexDigraph<'a>,
    F: NumAssign + Ord + Copy
[src]

type Graph = G

Type of the underlying graph.

type Flow = F

Type of flows.

fn new(g: &'a G) -> Self[src]

Return a new push-relabel algorithm data structure for the digraph g.

fn as_graph(&self) -> &'a Self::Graph[src]

Return a reference to the underlying graph.

fn value(&self) -> F[src]

Return the flow value.

The function returns 0 if the flow has not been computed, yet.

fn flow(&self, e: G::Edge) -> F[src]

Return the flow value over some edge.

The function returns 0 if the flow has not been computed, yet.

fn solve<Us>(&mut self, src: G::Node, snk: G::Node, upper: Us) where
    Us: Fn(G::Edge) -> Self::Flow
[src]

Run the push-relabel algorithm from some source to some sink node.

fn mincut(&self) -> Vec<G::Node>[src]

Return the minimal cut.

Auto Trait Implementations

impl<'a, G, F> RefUnwindSafe for PushRelabel<'a, G, F> where
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    <G as Directed<'a>>::IncidentEdge: RefUnwindSafe,
    <G as GraphType<'a>>::Node: RefUnwindSafe

impl<'a, G, F> Send for PushRelabel<'a, G, F> where
    F: Send,
    G: Sync,
    <G as Directed<'a>>::IncidentEdge: Send,
    <G as GraphType<'a>>::Node: Send

impl<'a, G, F> Sync for PushRelabel<'a, G, F> where
    F: Sync,
    G: Sync,
    <G as Directed<'a>>::IncidentEdge: Sync,
    <G as GraphType<'a>>::Node: Sync

impl<'a, G, F> Unpin for PushRelabel<'a, G, F> where
    F: Unpin,
    <G as Directed<'a>>::IncidentEdge: Unpin,
    <G as GraphType<'a>>::Node: Unpin

impl<'a, G, F> UnwindSafe for PushRelabel<'a, G, F> where
    F: UnwindSafe,
    G: RefUnwindSafe,
    <G as Directed<'a>>::IncidentEdge: UnwindSafe,
    <G as GraphType<'a>>::Node: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.