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

do not forget to enable padaptivity via command line...

parent 5f4df5b4
No related branches found
No related tags found
No related merge requests found
......@@ -482,6 +482,10 @@ namespace Fem
#endif
}
bool adaptive() const
{
return estimator_.isPadaptive();
}
void prepare()
{
......@@ -593,9 +597,15 @@ namespace Fem
problem_( problem )
{}
bool adaptive() const { return false; }
bool adaptive() const
{
return pAdapt_.adaptive();
}
size_t numberOfElements() const { return 0; }
size_t numberOfElements() const
{
return 0;
}
UInt64Type globalNumberOfElements() const { return 0; }
......
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