Skip to content
Snippets Groups Projects
Commit 271b98a9 authored by Robert K's avatar Robert K
Browse files

added missing constructor.

parent ada4b641
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,8 @@ public:
typedef std::pair< OdeSolverInterfaceType* , HelmHoltzOperatorType* > solverpair_t ;
typedef SmartOdeSolverParameters ParameterType;
/////////////////////////////////////////////////////////////////////////
// ODE solvers from dune-fem/dune/fem/solver/rungekutta
/////////////////////////////////////////////////////////////////////////
......
......@@ -11,6 +11,10 @@ namespace Dune {
struct SmartOdeSolverParameters : public DuneODE :: ODEParameters
{
SmartOdeSolverParameters( const std::string keyPrefix = "fem.ode" )
: DuneODE :: ODEParameters( keyPrefix )
{}
using DuneODE :: ODEParameters :: keyPrefix_;
virtual double explicitFactor() const
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment