pub enum NodeSelection {
BestFirst,
DepthFirst,
BestEstimate,
}Expand description
Node selection strategy for branch-and-bound
Variants§
BestFirst
Best-first: prioritize nodes with best bound
DepthFirst
Depth-first: explore deepest nodes first
BestEstimate
Best-estimate: prioritize by estimated objective
Trait Implementations§
Source§impl Clone for NodeSelection
impl Clone for NodeSelection
Source§fn clone(&self) -> NodeSelection
fn clone(&self) -> NodeSelection
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 NodeSelection
Source§impl Debug for NodeSelection
impl Debug for NodeSelection
Source§impl Default for NodeSelection
impl Default for NodeSelection
Source§fn default() -> NodeSelection
fn default() -> NodeSelection
Returns the “default value” for a type. Read more
impl Eq for NodeSelection
Source§impl PartialEq for NodeSelection
impl PartialEq for NodeSelection
impl StructuralPartialEq for NodeSelection
Auto Trait Implementations§
impl Freeze for NodeSelection
impl RefUnwindSafe for NodeSelection
impl Send for NodeSelection
impl Sync for NodeSelection
impl Unpin for NodeSelection
impl UnsafeUnpin for NodeSelection
impl UnwindSafe for NodeSelection
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