pub struct FPTMethod {
pub name: String,
pub problem: String,
pub parameter: String,
pub runtime_base: f64,
}Expand description
FPT (fixed-parameter tractable) algorithm with single-exponential runtime.
Fields§
§name: String§problem: String§parameter: String§runtime_base: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FPTMethod
impl RefUnwindSafe for FPTMethod
impl Send for FPTMethod
impl Sync for FPTMethod
impl Unpin for FPTMethod
impl UnsafeUnpin for FPTMethod
impl UnwindSafe for FPTMethod
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