19template < OperatorLike OperatorT >
Dummy operator for testing concepts. Implements apply_impl as a no-op.
Definition operator.hpp:167
Dummy vector class for concept checks and testing. Implements required vector operations as no-ops.
Definition vector.hpp:210
"Identity solver" for linear systems.
Definition identity_solver.hpp:21
DstOf< OperatorType > RHSVectorType
Right-hand side vector type.
Definition identity_solver.hpp:28
void solve_impl(OperatorType &A, SolutionVectorType &x, const RHSVectorType &b)
Solve the linear system by assigning the right-hand side to the solution. Implements .
Definition identity_solver.hpp:35
OperatorT OperatorType
Operator type to be solved.
Definition identity_solver.hpp:24
SrcOf< OperatorType > SolutionVectorType
Solution vector type.
Definition identity_solver.hpp:26
Definition block_preconditioner_2x2.hpp:7
Operator::SrcVectorType SrcOf
Alias for the source vector type of an operator.
Definition operator.hpp:145
Operator::DstVectorType DstOf
Alias for the destination vector type of an operator.
Definition operator.hpp:149
void assign(Vector &y, const ScalarOf< Vector > &c0)
Assign a scalar value to a vector. Implements: .
Definition vector.hpp:97