pub struct LDSSettings {
pub columns_to_fix_each_iteration: usize,
pub selection: LDSSelection,
pub max_depth: u32,
pub max_discrepancy: i32,
pub early_termination_after_bound_leq: u32,
pub do_only_lds: bool,
}
Expand description
Settings for the limited discrepancy search
Fields§
§columns_to_fix_each_iteration: usize
§selection: LDSSelection
§max_depth: u32
§max_discrepancy: i32
§early_termination_after_bound_leq: u32
§do_only_lds: bool
Trait Implementations§
Source§impl Clone for LDSSettings
impl Clone for LDSSettings
Source§fn clone(&self) -> LDSSettings
fn clone(&self) -> LDSSettings
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 LDSSettings
impl RefUnwindSafe for LDSSettings
impl Send for LDSSettings
impl Sync for LDSSettings
impl Unpin for LDSSettings
impl UnwindSafe for LDSSettings
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