pub struct EvenTarjanResult {
pub graph: Graph,
pub capacity: Vec<f64>,
}Expand description
Result of the Even-Tarjan reduction.
Fields§
§graph: GraphThe reduced directed graph with 2 * vcount vertices.
capacity: Vec<f64>Edge capacities: 1.0 for vertex-split edges, f64::INFINITY
for edges derived from original edges.
Trait Implementations§
Source§impl Clone for EvenTarjanResult
impl Clone for EvenTarjanResult
Source§fn clone(&self) -> EvenTarjanResult
fn clone(&self) -> EvenTarjanResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !Freeze for EvenTarjanResult
impl !RefUnwindSafe for EvenTarjanResult
impl Send for EvenTarjanResult
impl !Sync for EvenTarjanResult
impl Unpin for EvenTarjanResult
impl UnsafeUnpin for EvenTarjanResult
impl UnwindSafe for EvenTarjanResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more