Expand description
Iterative solvers for linear systems
This module provides Krylov subspace methods for solving large sparse systems:
Re-exports§
pub use gmres_pipelined::gmres_pipelined;
Modules§
- gmres_
pipelined - Pipelined GMRES solver (p-GMRES)
Structs§
- BiCgstab
Config - BiCGSTAB solver configuration
- BiCgstab
Solution - BiCGSTAB solver result
- CgConfig
- CG solver configuration
- CgSolution
- CG solver result
- CgsConfig
- CGS solver configuration
- CgsSolution
- CGS solver result
- Gmres
Config - GMRES solver configuration
- Gmres
Solution - GMRES solver result
Functions§
- bicgstab
- Solve Ax = b using the BiCGSTAB method
- cg
- Solve Ax = b using the Conjugate Gradient method
- cgs
- Solve Ax = b using the CGS method
- gmres
- Solve Ax = b using the restarted GMRES method
- gmres_
preconditioned - GMRES solver with preconditioner
- gmres_
preconditioned_ with_ guess - GMRES solver with preconditioner and initial guess
- gmres_
with_ guess - Solve Ax = b using GMRES with an initial guess