4#include <deal.II/lac/sparse_matrix.h>
13 void init(
const SparseMatrixType &matrix)
15 throw std::runtime_error(
"AbstractLinearSolver::init: not implemented");
20 throw std::runtime_error(
"AbstractLinearSolver::invert: not implemented");
24 int solve(
const VectorType &src,
const VectorType &dst,
const double tol)
26 throw std::runtime_error(
"AbstractLinearSolver::solve: not implemented");
Definition abstract_linear_solver.hh:9
bool invert()
Definition abstract_linear_solver.hh:18
int solve(const VectorType &src, const VectorType &dst, const double tol)
Definition abstract_linear_solver.hh:24
void init(const SparseMatrixType &matrix)
Definition abstract_linear_solver.hh:13
AbstractLinearSolver()
Definition abstract_linear_solver.hh:11
Definition complex_math.hh:14