pub struct IrrelevantVertex {
pub problem: String,
}Expand description
Irrelevant vertex reduction rule for planar FPT algorithms.
Fields§
§problem: StringProblem name.
Implementations§
Source§impl IrrelevantVertex
impl IrrelevantVertex
Sourcepub fn find_irrelevant_vertex(&self) -> String
pub fn find_irrelevant_vertex(&self) -> String
Returns a description of the irrelevant vertex identification step.
Sourcepub fn reduce_instance(&self) -> String
pub fn reduce_instance(&self) -> String
Returns a description of the instance reduction after removal.
Trait Implementations§
Source§impl Clone for IrrelevantVertex
impl Clone for IrrelevantVertex
Source§fn clone(&self) -> IrrelevantVertex
fn clone(&self) -> IrrelevantVertex
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 IrrelevantVertex
impl RefUnwindSafe for IrrelevantVertex
impl Send for IrrelevantVertex
impl Sync for IrrelevantVertex
impl Unpin for IrrelevantVertex
impl UnsafeUnpin for IrrelevantVertex
impl UnwindSafe for IrrelevantVertex
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