EigenLUSolver.h¶
Note
The documentation on this page was automatically extracted from the DOLFIN C++ code and may need to be edited or expanded.
-
class
EigenLUSolver¶ Parent class(es)
This class implements the direct solution (LU factorization) for linear systems of the form Ax = b.
-
EigenLUSolver(std::string method = "default")¶ Constructor
Constructor
Set operator (matrix)
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
-
std::size_t
solve(const GenericLinearOperator &A, GenericVector &x, const GenericVector &b)¶ Solve linear system Ax = b
-
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)
-
static std::map<std::string, std::string>
methods()¶ Return a list of available solver methods
-
static Parameters
default_parameters()¶ Default parameter values
-
std::string
parameter_type() const¶ Return parameter type: “krylov_solver” or “lu_solver”
-