pub fn cgs<F>(
a: &dyn LinearOperator<F>,
b: &[F],
options: CGSOptions<F>,
) -> SparseResult<CGSResult<F>>Expand description
Conjugate Gradient Squared solver (CGS)
Implementation following the algorithm from “Templates for the Solution of Linear Systems” by Barrett et al. This is for non-symmetric linear systems.