pub fn gmres<T: Float + StableComputation>(
a: &ArrayView2<'_, T>,
b: &ArrayView1<'_, T>,
x0: Option<&ArrayView1<'_, T>>,
restart: usize,
config: &IterativeConfig<T>,
) -> CoreResult<IterativeResult<T>>
Expand description
GMRES (Generalized Minimal Residual) method