dune-fem  2.4.1-rc
preconditioning.hh
Go to the documentation of this file.
1 #ifndef DUNE_FEM_PRECONDITIONING_HH
2 #define DUNE_FEM_PRECONDITIONING_HH
3 
4 namespace OEMSolver
5 {
6 
10  {
11  public:
14 
16  const ThisType & preconditionMatrix() const { return *this; }
17 
20  bool hasPreconditionMatrix() const { return false; }
21  };
22 
23 } // namespace OEMSolver
24 
25 #endif // #ifndef DUNE_FEM_PRECONDITIONING_HH
const ThisType & preconditionMatrix() const
return reference to precondition matrix
Definition: preconditioning.hh:16
Interface class for use of Preconditioners with the OEM solvers.
Definition: preconditioning.hh:9
bool hasPreconditionMatrix() const
Definition: preconditioning.hh:20
PreconditionInterface ThisType
type of this class
Definition: preconditioning.hh:13
Definition: oemsolver/oemsolver.hh:66