Concept to check if a linear solver implements all the needed functions for given vector and matrix types.
More...
#include <ikarus/utils/concepts.hh>
template<typename LinearSolver, typename MatrixType, typename VectorType>
linearSolver.analyzePattern(Ax);
linearSolver.factorize(Ax);
linearSolver.solve(vec, vec);
}
LinearSolverTemplate< double > LinearSolver
Definition: linearsolver.hh:234
Concept to check if a linear solver implements all the needed functions for given vector and matrix t...
Definition: concepts.hh:218
- Template Parameters
-
LinearSolver | The linear solver type. |
MatrixType | The matrix type. |
VectorType | The vector type. |