pub struct BiCgStabConfig {
pub max_iter: u32,
pub tol: f64,
}Expand description
Configuration for the BiCGSTAB solver.
Fields§
§max_iter: u32Maximum number of iterations.
tol: f64Convergence tolerance (relative to ||b||).
Trait Implementations§
Source§impl Clone for BiCgStabConfig
impl Clone for BiCgStabConfig
Source§fn clone(&self) -> BiCgStabConfig
fn clone(&self) -> BiCgStabConfig
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 BiCgStabConfig
impl Debug for BiCgStabConfig
Auto Trait Implementations§
impl Freeze for BiCgStabConfig
impl RefUnwindSafe for BiCgStabConfig
impl Send for BiCgStabConfig
impl Sync for BiCgStabConfig
impl Unpin for BiCgStabConfig
impl UnsafeUnpin for BiCgStabConfig
impl UnwindSafe for BiCgStabConfig
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