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 LS, typename M, typename V>
linearSolver.analyzePattern(A);
linearSolver.factorize(A);
linearSolver.solve(vec, vec);
}
Concept to check if a linear solver implements all the needed functions for given vector and matrix t...
Definition: concepts.hh:215
- Template Parameters
-
LS | The linear solver type. |
M | The matrix type. |
V | The vector type. |