dune-pdelab
2.4.1
|
Base parameter class for time stepping scheme parameters. More...
#include <dune/pdelab/instationary/onestepparameter.hh>
Public Types | |
typedef R | RealType |
Public Member Functions | |
virtual bool | implicit () const =0 |
Return true if method is implicit. More... | |
virtual unsigned | s () const =0 |
Return number of stages of the method. More... | |
virtual R | a (int r, int i) const =0 |
Return entries of the A matrix. More... | |
virtual R | b (int r, int i) const =0 |
Return entries of the B matrix. More... | |
virtual R | d (int r) const =0 |
Return entries of the d Vector. More... | |
virtual std::string | name () const =0 |
Return name of the scheme. More... | |
virtual | ~TimeSteppingParameterInterface () |
every abstract base class has a virtual destructor More... | |
Base parameter class for time stepping scheme parameters.
R | C++ type of the floating point parameters |