pub struct PlanarGraphFPT {
pub parameter: String,
}Expand description
Bidimensionality-based FPT algorithm for planar graphs.
Fields§
§parameter: StringParameter name (e.g., “treewidth”, “feedback-vertex-set-size”).
Implementations§
Source§impl PlanarGraphFPT
impl PlanarGraphFPT
Sourcepub fn bidimensionality(&self) -> String
pub fn bidimensionality(&self) -> String
Returns a description of the bidimensionality property.
Sourcepub fn subexponential_fpt(&self) -> String
pub fn subexponential_fpt(&self) -> String
Returns a description of the subexponential FPT algorithm.
Trait Implementations§
Source§impl Clone for PlanarGraphFPT
impl Clone for PlanarGraphFPT
Source§fn clone(&self) -> PlanarGraphFPT
fn clone(&self) -> PlanarGraphFPT
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 PlanarGraphFPT
impl RefUnwindSafe for PlanarGraphFPT
impl Send for PlanarGraphFPT
impl Sync for PlanarGraphFPT
impl Unpin for PlanarGraphFPT
impl UnsafeUnpin for PlanarGraphFPT
impl UnwindSafe for PlanarGraphFPT
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