numerics
Loading...
Searching...
No Matches
solvers.hpp
Go to the documentation of this file.
1/// @file solvers.hpp
2/// @brief Umbrella include for all linear solvers
3///
4/// Including this header provides every solver in the library.
5/// Individual headers (cg.hpp, gauss_seidel.hpp, jacobi.hpp, krylov.hpp)
6/// can also be included directly.
7#pragma once
8
10#include "linalg/solvers/cg.hpp"
Conjugate gradient solvers (dense and matrix-free)
Gauss-Seidel iterative solver.
Jacobi iterative solver.
Restarted GMRES – a Krylov subspace solver for general Ax = b.
Common result type shared by all iterative solvers.