Skip to content
Snippets Groups Projects
Commit 513fa66f authored by Stefan Girke's avatar Stefan Girke
Browse files

use correct default value

parent 01d9fc54
No related branches found
No related tags found
No related merge requests found
...@@ -101,8 +101,8 @@ namespace Dune ...@@ -101,8 +101,8 @@ namespace Dune
virtual bool method () const virtual bool method () const
{ {
const std::string names[] = { "none", "generic", "callback" }; const std::string names[] = { "none", "generic", "callback" };
// default value is none // default value is generic
return Fem::Parameter::getEnum( keyPrefix_ + "method", names, 0 ); return Fem::Parameter::getEnum( keyPrefix_ + "method", names, 1 );
} }
virtual bool adaptive () const virtual bool adaptive () 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