pub enum SolveStrategy {
ExactDp,
BranchAndBound,
}Expand description
Solve strategy for one component, selected by the width bound against the pinned envelope: exact dynamic programming inside the envelope, exact branch-and-bound (within fuel) outside it.
Variants§
Trait Implementations§
Source§impl Clone for SolveStrategy
impl Clone for SolveStrategy
Source§fn clone(&self) -> SolveStrategy
fn clone(&self) -> SolveStrategy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SolveStrategy
Source§impl Debug for SolveStrategy
impl Debug for SolveStrategy
impl Eq for SolveStrategy
Source§impl PartialEq for SolveStrategy
impl PartialEq for SolveStrategy
Source§fn eq(&self, other: &SolveStrategy) -> bool
fn eq(&self, other: &SolveStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SolveStrategy
Auto Trait Implementations§
impl Freeze for SolveStrategy
impl RefUnwindSafe for SolveStrategy
impl Send for SolveStrategy
impl Sync for SolveStrategy
impl Unpin for SolveStrategy
impl UnsafeUnpin for SolveStrategy
impl UnwindSafe for SolveStrategy
Blanket Implementations§
impl<T> Allocation for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more