pub struct BasisUpdateConfig {
pub use_forrest_tomlin: bool,
pub refactorize_freq: usize,
pub steepest_edge: bool,
}Expand description
Configuration for basis updates.
Fields§
§use_forrest_tomlin: boolUse Forrest-Tomlin updates.
refactorize_freq: usizeRefactorize after this many updates.
steepest_edge: boolEnable steepest-edge pricing.
Trait Implementations§
Source§impl Clone for BasisUpdateConfig
impl Clone for BasisUpdateConfig
Source§fn clone(&self) -> BasisUpdateConfig
fn clone(&self) -> BasisUpdateConfig
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 BasisUpdateConfig
impl Debug for BasisUpdateConfig
Auto Trait Implementations§
impl Freeze for BasisUpdateConfig
impl RefUnwindSafe for BasisUpdateConfig
impl Send for BasisUpdateConfig
impl Sync for BasisUpdateConfig
impl Unpin for BasisUpdateConfig
impl UnsafeUnpin for BasisUpdateConfig
impl UnwindSafe for BasisUpdateConfig
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