pub struct ResidualGraphResult {
pub graph: Graph,
pub capacity: Vec<f64>,
}Expand description
Result of the residual graph computation.
Fields§
§graph: GraphThe residual directed graph (same vertex count, fewer edges).
capacity: Vec<f64>Residual capacity of each edge in the new graph.
Trait Implementations§
Source§impl Clone for ResidualGraphResult
impl Clone for ResidualGraphResult
Source§fn clone(&self) -> ResidualGraphResult
fn clone(&self) -> ResidualGraphResult
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 ResidualGraphResult
impl !RefUnwindSafe for ResidualGraphResult
impl Send for ResidualGraphResult
impl !Sync for ResidualGraphResult
impl Unpin for ResidualGraphResult
impl UnsafeUnpin for ResidualGraphResult
impl UnwindSafe for ResidualGraphResult
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