Dummy solver for concept checks and testing. Implements solve_impl as a no-op. More...
#include <solver.hpp>
Public Types | |
| using | OperatorType = OperatorT |
| Operator type to be solved. | |
| using | SolutionVectorType = SrcOf< OperatorType > |
| Solution vector type. | |
| using | RHSVectorType = DstOf< OperatorType > |
| Right-hand side vector type. | |
Public Member Functions | |
| void | solve_impl (const OperatorType &A, SolutionVectorType &x, const RHSVectorType &b) const |
| Dummy solve_impl, does nothing. | |
Dummy solver for concept checks and testing. Implements solve_impl as a no-op.
| using terra::linalg::solvers::detail::DummySolver< OperatorT >::OperatorType = OperatorT |
Operator type to be solved.
| using terra::linalg::solvers::detail::DummySolver< OperatorT >::RHSVectorType = DstOf< OperatorType > |
Right-hand side vector type.
| using terra::linalg::solvers::detail::DummySolver< OperatorT >::SolutionVectorType = SrcOf< OperatorType > |
Solution vector type.
|
inline |
Dummy solve_impl, does nothing.
| A | Operator. |
| x | Solution vector. |
| b | Right-hand side vector. |