Skip to content
Snippets Groups Projects
Commit e148091d authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

Revert "[functions] adjust for playground removal"

This reverts commit d44a7fc7de788da73e6e0673a79c3116646bc6d3.
parent afe38dd3
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
#include "functions/expression.hh" #include "functions/expression.hh"
#include "functions/flattop.hh" #include "functions/flattop.hh"
#include "functions/ESV2007.hh" #include "functions/ESV2007.hh"
#include "playground/functions/indicator.hh"
#include "functions/spe10.hh" #include "functions/spe10.hh"
namespace Dune { namespace Dune {
...@@ -146,6 +147,7 @@ private: ...@@ -146,6 +147,7 @@ private:
typedef Functions::FlatTop<E, D, d, R, r, rC> FlattopType; typedef Functions::FlatTop<E, D, d, R, r, rC> FlattopType;
typedef Functions::ESV2007::Testcase1Force<E, D, d, R, r, rC> ESV2007Testcase1ForceType; typedef Functions::ESV2007::Testcase1Force<E, D, d, R, r, rC> ESV2007Testcase1ForceType;
typedef Functions::ESV2007::Testcase1ExactSolution<E, D, d, R, r, rC> ESV2007Testcase1ExactSolutionType; typedef Functions::ESV2007::Testcase1ExactSolution<E, D, d, R, r, rC> ESV2007Testcase1ExactSolutionType;
typedef Functions::Indicator<E, D, d, R, r, rC> IndicatorType;
typedef Functions::Spe10::Model1<E, D, d, R, r, rC> Spe10Model1Type; typedef Functions::Spe10::Model1<E, D, d, R, r, rC> Spe10Model1Type;
public: public:
...@@ -158,6 +160,7 @@ public: ...@@ -158,6 +160,7 @@ public:
ret = call_append<FlattopType>(ret); ret = call_append<FlattopType>(ret);
ret = call_append<ESV2007Testcase1ForceType>(ret); ret = call_append<ESV2007Testcase1ForceType>(ret);
ret = call_append<ESV2007Testcase1ExactSolutionType>(ret); ret = call_append<ESV2007Testcase1ExactSolutionType>(ret);
ret = call_append<IndicatorType>(ret);
ret = call_append<Spe10Model1Type>(ret); ret = call_append<Spe10Model1Type>(ret);
return ret; return ret;
} // ... available(...) } // ... available(...)
...@@ -176,6 +179,8 @@ public: ...@@ -176,6 +179,8 @@ public:
return call_default_config<ESV2007Testcase1ForceType>(sub_name); return call_default_config<ESV2007Testcase1ForceType>(sub_name);
else if (call_compare<ESV2007Testcase1ExactSolutionType>(type)) else if (call_compare<ESV2007Testcase1ExactSolutionType>(type))
return call_default_config<ESV2007Testcase1ExactSolutionType>(sub_name); return call_default_config<ESV2007Testcase1ExactSolutionType>(sub_name);
else if (call_compare<IndicatorType>(type))
return call_default_config<IndicatorType>(sub_name);
else if (call_compare<Spe10Model1Type>(type)) else if (call_compare<Spe10Model1Type>(type))
return call_default_config<Spe10Model1Type>(sub_name); return call_default_config<Spe10Model1Type>(sub_name);
else if (available().empty()) else if (available().empty())
...@@ -210,6 +215,8 @@ public: ...@@ -210,6 +215,8 @@ public:
return call_create<ESV2007Testcase1ForceType>(cfg); return call_create<ESV2007Testcase1ForceType>(cfg);
else if (call_compare<ESV2007Testcase1ExactSolutionType>(type)) else if (call_compare<ESV2007Testcase1ExactSolutionType>(type))
return call_create<ESV2007Testcase1ExactSolutionType>(cfg); return call_create<ESV2007Testcase1ExactSolutionType>(cfg);
else if (call_compare<IndicatorType>(type))
return call_create<IndicatorType>(cfg);
else if (call_compare<Spe10Model1Type>(type)) else if (call_compare<Spe10Model1Type>(type))
return call_create<Spe10Model1Type>(cfg); return call_create<Spe10Model1Type>(cfg);
else if (available().empty()) else if (available().empty())
......
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