pub struct MainParamsII {
pub preconditioner: i32,
pub iterative_solver: i32,
pub reserved1: i32,
pub reserved2: f64,
pub output_level: i32,
pub reserved3: i32,
pub reserved4: i32,
}Expand description
Main parameters II (solver options)
Fields§
§preconditioner: i32Preconditioner type (0=ILU, 1=row scaling)
iterative_solver: i32Iterative solver (0=CGS, 1=BiCGSTAB)
reserved1: i32Reserved
reserved2: f64Reserved
output_level: i32Output level
reserved3: i32Reserved
reserved4: i32Reserved
Trait Implementations§
Source§impl Clone for MainParamsII
impl Clone for MainParamsII
Source§fn clone(&self) -> MainParamsII
fn clone(&self) -> MainParamsII
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 moreSource§impl Debug for MainParamsII
impl Debug for MainParamsII
Source§impl Default for MainParamsII
impl Default for MainParamsII
Source§fn default() -> MainParamsII
fn default() -> MainParamsII
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MainParamsII
impl RefUnwindSafe for MainParamsII
impl Send for MainParamsII
impl Sync for MainParamsII
impl Unpin for MainParamsII
impl UnwindSafe for MainParamsII
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more