pub struct LPStats {
pub pivots: usize,
pub nodes: usize,
pub cuts: usize,
pub best_bound: Option<BigRational>,
pub incumbent: Option<BigRational>,
pub time_ms: u64,
}Expand description
Statistics for LP/MIP solving
Fields§
§pivots: usizeNumber of simplex pivots
nodes: usizeNumber of branch-and-bound nodes
cuts: usizeNumber of cutting planes added
best_bound: Option<BigRational>Best bound found
incumbent: Option<BigRational>Best incumbent value
time_ms: u64Solve time in milliseconds
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LPStats
impl RefUnwindSafe for LPStats
impl Send for LPStats
impl Sync for LPStats
impl Unpin for LPStats
impl UnsafeUnpin for LPStats
impl UnwindSafe for LPStats
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