pub struct LadderStats {
pub nodes: usize,
pub max_depth: usize,
pub cut_closures: usize,
pub pruned: usize,
}Expand description
What a laddered branch-and-cut search did: how many subcubes (nodes) it visited, how deep it laddered, and how many subtrees a certified cut closed outright.
Fields§
§nodes: usize§max_depth: usize§cut_closures: usize§pruned: usizeTrait Implementations§
Source§impl Clone for LadderStats
impl Clone for LadderStats
Source§fn clone(&self) -> LadderStats
fn clone(&self) -> LadderStats
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 moreSource§impl Debug for LadderStats
impl Debug for LadderStats
Source§impl PartialEq for LadderStats
impl PartialEq for LadderStats
Source§fn eq(&self, other: &LadderStats) -> bool
fn eq(&self, other: &LadderStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LadderStats
impl Eq for LadderStats
impl StructuralPartialEq for LadderStats
Auto Trait Implementations§
impl Freeze for LadderStats
impl RefUnwindSafe for LadderStats
impl Send for LadderStats
impl Sync for LadderStats
impl Unpin for LadderStats
impl UnsafeUnpin for LadderStats
impl UnwindSafe for LadderStats
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