pub struct LPSolveIterationUIState {
pub obj: f64,
pub best_dual_bound: Option<f64>,
pub lp_runtime: f64,
pub num_columns: usize,
pub num_total_pool_columns: usize,
pub previous_pricing_runtime: f64,
}
Fields§
§obj: f64
§best_dual_bound: Option<f64>
§lp_runtime: f64
§num_columns: usize
§num_total_pool_columns: usize
§previous_pricing_runtime: f64
Trait Implementations§
Source§impl Clone for LPSolveIterationUIState
impl Clone for LPSolveIterationUIState
Source§fn clone(&self) -> LPSolveIterationUIState
fn clone(&self) -> LPSolveIterationUIState
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 LPSolveIterationUIState
impl RefUnwindSafe for LPSolveIterationUIState
impl Send for LPSolveIterationUIState
impl Sync for LPSolveIterationUIState
impl Unpin for LPSolveIterationUIState
impl UnwindSafe for LPSolveIterationUIState
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