pub struct FgmresConfig {
pub restart: usize,
pub max_iter: usize,
pub tol: f64,
}Expand description
FGMRES configuration.
Fields§
§restart: usizeRestart parameter: maximum Arnoldi steps per cycle.
max_iter: usizeMaximum total iterations (across all restarts).
tol: f64Convergence tolerance (relative to ||b||).
Trait Implementations§
Source§impl Clone for FgmresConfig
impl Clone for FgmresConfig
Source§fn clone(&self) -> FgmresConfig
fn clone(&self) -> FgmresConfig
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 FgmresConfig
impl Debug for FgmresConfig
Auto Trait Implementations§
impl Freeze for FgmresConfig
impl RefUnwindSafe for FgmresConfig
impl Send for FgmresConfig
impl Sync for FgmresConfig
impl Unpin for FgmresConfig
impl UnsafeUnpin for FgmresConfig
impl UnwindSafe for FgmresConfig
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