pub struct DualSimplexStats {
pub iterations: usize,
pub pivots: usize,
pub ratio_tests: usize,
}Expand description
Dual simplex statistics
Fields§
§iterations: usizeNumber of iterations
pivots: usizeNumber of pivot operations
ratio_tests: usizeNumber of ratio tests
Trait Implementations§
Source§impl Clone for DualSimplexStats
impl Clone for DualSimplexStats
Source§fn clone(&self) -> DualSimplexStats
fn clone(&self) -> DualSimplexStats
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 DualSimplexStats
impl Debug for DualSimplexStats
Source§impl Default for DualSimplexStats
impl Default for DualSimplexStats
Source§fn default() -> DualSimplexStats
fn default() -> DualSimplexStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DualSimplexStats
impl RefUnwindSafe for DualSimplexStats
impl Send for DualSimplexStats
impl Sync for DualSimplexStats
impl Unpin for DualSimplexStats
impl UnsafeUnpin for DualSimplexStats
impl UnwindSafe for DualSimplexStats
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