Dune Core Modules (2.3.1)

preconditioner.hh
1 // -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 // vi: set et ts=4 sw=2 sts=2:
3 #ifndef DUNE_PRECONDITIONER_HH
4 #define DUNE_PRECONDITIONER_HH
5 namespace Dune {
10  //=====================================================================
24  //=====================================================================
25  template<class X, class Y>
27  public:
29  typedef X domain_type;
31  typedef Y range_type;
33  typedef typename X::field_type field_type;
34 
50  virtual void pre (X& x, Y& b) = 0;
51 
62  virtual void apply (X& v, const Y& d) = 0;
63 
72  virtual void post (X& x) = 0;
73 
74  // every abstract base class has a virtual destructor
75  virtual ~Preconditioner () {}
76  };
77 
81 }
82 #endif
Base class for matrix free definition of preconditioners.
Definition: preconditioner.hh:26
virtual void post(X &x)=0
Clean up.
virtual void apply(X &v, const Y &d)=0
Apply one step of the preconditioner to the system A(v)=d.
Y range_type
The range type of the preconditioner.
Definition: preconditioner.hh:31
X domain_type
The domain type of the preconditioner.
Definition: preconditioner.hh:29
X::field_type field_type
The field type of the preconditioner.
Definition: preconditioner.hh:33
virtual void pre(X &x, Y &b)=0
Prepare the preconditioner.
Dune namespace.
Definition: alignment.hh:14
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.80.0 (May 9, 22:29, 2024)