superlu_options_t

Struct superlu_options_t 

Source
#[repr(C)]
pub struct superlu_options_t {
Show 27 fields pub Fact: fact_t, pub Equil: yes_no_t, pub ColPerm: colperm_t, pub Trans: trans_t, pub IterRefine: IterRefine_t, pub DiagPivotThresh: c_double, pub SymmetricMode: yes_no_t, pub PivotGrowth: yes_no_t, pub ConditionNumber: yes_no_t, pub RowPerm: rowperm_t, pub ILU_DropRule: c_int, pub ILU_DropTol: c_double, pub ILU_FillFactor: c_double, pub ILU_Norm: norm_t, pub ILU_FillTol: c_double, pub ILU_MILU: milu_t, pub ILU_MILU_Dim: c_double, pub ParSymbFact: yes_no_t, pub ReplaceTinyPivot: yes_no_t, pub SolveInitialized: yes_no_t, pub RefineInitialized: yes_no_t, pub PrintStat: yes_no_t, pub nnzL: c_int, pub nnzU: c_int, pub num_lookaheads: c_int, pub lookahead_etree: yes_no_t, pub SymPattern: yes_no_t,
}

Fields§

§Fact: fact_t§Equil: yes_no_t§ColPerm: colperm_t§Trans: trans_t§IterRefine: IterRefine_t§DiagPivotThresh: c_double§SymmetricMode: yes_no_t§PivotGrowth: yes_no_t§ConditionNumber: yes_no_t§RowPerm: rowperm_t§ILU_DropRule: c_int§ILU_DropTol: c_double§ILU_FillFactor: c_double§ILU_Norm: norm_t§ILU_FillTol: c_double§ILU_MILU: milu_t§ILU_MILU_Dim: c_double§ParSymbFact: yes_no_t§ReplaceTinyPivot: yes_no_t§SolveInitialized: yes_no_t§RefineInitialized: yes_no_t§PrintStat: yes_no_t§nnzL: c_int§nnzU: c_int§num_lookaheads: c_int§lookahead_etree: yes_no_t§SymPattern: yes_no_t

Trait Implementations§

Source§

impl Clone for superlu_options_t

Source§

fn clone(&self) -> superlu_options_t

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for superlu_options_t

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.