pub struct BlasLPConfig {
pub block_size: usize,
pub zero_tolerance: f64,
pub use_pivoting: bool,
}Expand description
Configuration for BLAS operations in LP context.
Fields§
§block_size: usizeBlock size for matrix operations.
zero_tolerance: f64Tolerance for numerical zero.
use_pivoting: boolWhether to use pivoting in triangular solves.
Trait Implementations§
Source§impl Clone for BlasLPConfig
impl Clone for BlasLPConfig
Source§fn clone(&self) -> BlasLPConfig
fn clone(&self) -> BlasLPConfig
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 BlasLPConfig
impl Debug for BlasLPConfig
Auto Trait Implementations§
impl Freeze for BlasLPConfig
impl RefUnwindSafe for BlasLPConfig
impl Send for BlasLPConfig
impl Sync for BlasLPConfig
impl Unpin for BlasLPConfig
impl UnsafeUnpin for BlasLPConfig
impl UnwindSafe for BlasLPConfig
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