pub enum FvsAlgorithm {
Greedy,
}Expand description
Algorithm choice for computing the feedback vertex set.
Variants§
Greedy
Greedy heuristic: iteratively remove the highest-degree vertex from each discovered cycle.
Trait Implementations§
Source§impl Clone for FvsAlgorithm
impl Clone for FvsAlgorithm
Source§fn clone(&self) -> FvsAlgorithm
fn clone(&self) -> FvsAlgorithm
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 moreSource§impl Debug for FvsAlgorithm
impl Debug for FvsAlgorithm
Source§impl PartialEq for FvsAlgorithm
impl PartialEq for FvsAlgorithm
impl Copy for FvsAlgorithm
impl Eq for FvsAlgorithm
impl StructuralPartialEq for FvsAlgorithm
Auto Trait Implementations§
impl Freeze for FvsAlgorithm
impl RefUnwindSafe for FvsAlgorithm
impl Send for FvsAlgorithm
impl Sync for FvsAlgorithm
impl Unpin for FvsAlgorithm
impl UnsafeUnpin for FvsAlgorithm
impl UnwindSafe for FvsAlgorithm
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