|
| EigenLUSolver (std::string method="default") |
| Constructor.
|
|
| EigenLUSolver (std::shared_ptr< const EigenMatrix > A, std::string method="default") |
| Constructor.
|
|
| ~EigenLUSolver () |
| Destructor.
|
|
void | set_operator (std::shared_ptr< const GenericLinearOperator > A) |
| Set operator (matrix) More...
|
|
void | set_operator (std::shared_ptr< const EigenMatrix > A) |
| Set operator (matrix)
|
|
const GenericLinearOperator & | get_operator () const |
| Get operator (matrix)
|
|
std::size_t | solve (GenericVector &x, const GenericVector &b) |
| Solve linear system Ax = b. More...
|
|
std::size_t | solve (const GenericLinearOperator &A, GenericVector &x, const GenericVector &b) |
| Solve linear system Ax = b. More...
|
|
std::size_t | solve (const EigenMatrix &A, EigenVector &x, const EigenVector &b) |
| Solve linear system Ax = b.
|
|
std::string | str (bool verbose) const |
| Return informal string representation (pretty-print) More...
|
|
std::string | parameter_type () const |
| Return parameter type: "krylov_solver" or "lu_solver". More...
|
|
virtual void | set_operator (std::shared_ptr< const GenericLinearOperator > A)=0 |
| Set operator (matrix) More...
|
|
virtual void | set_operators (std::shared_ptr< const GenericLinearOperator > A, std::shared_ptr< const GenericLinearOperator > P) |
| Set operator (matrix) and preconditioner matrix. More...
|
|
virtual std::size_t | solve (const GenericLinearOperator &A, GenericVector &x, const GenericVector &b) |
| Solve linear system Ax = b. More...
|
|
virtual std::size_t | solve (GenericVector &x, const GenericVector &b)=0 |
| Solve linear system Ax = b. More...
|
|
virtual std::string | parameter_type () const |
| Return parameter type: "krylov_solver" or "lu_solver". More...
|
|
virtual void | update_parameters (const Parameters ¶meters) |
| Update solver parameters (useful for LinearSolver wrapper) More...
|
|
| 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) More...
|
|
This class implements the direct solution (LU factorization) for linear systems of the form Ax = b.