|
DOLFIN
DOLFIN C++ interface
|
#include <KrylovSolver.h>


Public Member Functions | |
| KrylovSolver (MPI_Comm comm, std::string method="default", std::string preconditioner="default") | |
| Constructor. | |
| KrylovSolver (std::string method="default", std::string preconditioner="default") | |
| Constructor. | |
| KrylovSolver (MPI_Comm comm, std::shared_ptr< const GenericLinearOperator > A, std::string method="default", std::string preconditioner="default") | |
| Constructor. | |
| KrylovSolver (std::shared_ptr< const GenericLinearOperator > A, std::string method="default", std::string preconditioner="default") | |
| Constructor. | |
| ~KrylovSolver () | |
| Destructor. | |
| void | set_operator (std::shared_ptr< const GenericLinearOperator > A) |
| Set operator (matrix) | |
| void | set_operators (std::shared_ptr< const GenericLinearOperator > A, std::shared_ptr< const GenericLinearOperator > P) |
| Set operator (matrix) and preconditioner matrix. | |
| std::size_t | solve (GenericVector &x, const GenericVector &b) |
| Solve linear system Ax = b. | |
| std::size_t | solve (const GenericLinearOperator &A, GenericVector &x, const GenericVector &b) |
| Solve linear system Ax = b. | |
| virtual void | update_parameters (const Parameters ¶meters) |
| std::string | parameter_type () const |
| Return parameter type: "krylov_solver" or "lu_solver". | |
Public Member Functions inherited from dolfin::Variable | |
| Variable () | |
| Create unnamed variable. | |
| Variable (const std::string name, const std::string label) | |
| Create variable with given name and label. | |
| Variable (const Variable &variable) | |
| Copy constructor. | |
| virtual | ~Variable () |
| Destructor. | |
| const Variable & | operator= (const Variable &variable) |
| Assignment operator. | |
| void | rename (const std::string name, const std::string label) |
| Rename variable. | |
| std::string | name () const |
| Return name. | |
| std::string | label () const |
| Return label (description) | |
| std::size_t | id () const |
| virtual std::string | str (bool verbose) const |
| Return informal string representation (pretty-print) | |
Static Public Member Functions | |
| static Parameters | default_parameters () |
| Default parameter values. | |
Additional Inherited Members | |
Public Attributes inherited from dolfin::Variable | |
| Parameters | parameters |
| Parameters. | |
Static Protected Member Functions inherited from dolfin::GenericLinearSolver | |
| static const GenericMatrix & | require_matrix (const GenericLinearOperator &A) |
| static std::shared_ptr< const GenericMatrix > | require_matrix (std::shared_ptr< const GenericLinearOperator > A) |
This class defines an interface for a Krylov solver. The appropriate solver is chosen on the basis of the matrix/vector type.
|
inlinevirtual |
Update solver parameters (pass parameters down to wrapped implementation)
Reimplemented from dolfin::GenericLinearSolver.
1.8.13