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

[function.spe10.model1] removed dummy

parent 5c3a6b15
No related branches found
No related tags found
No related merge requests found
......@@ -20,33 +20,10 @@ namespace Stuff {
// default, to allow for specialization
template <class DomainFieldImp, int domainDim, class RangeFieldImp, int rangeDim>
class FunctionSpe10Model1 : public FunctionInterface<DomainFieldImp, domainDim, RangeFieldImp, rangeDim>
class FunctionSpe10Model1
{
public:
FunctionSpe10Model1() = delete;
static Dune::ParameterTree createSampleDescription(const std::string /*subName*/ = "")
{
DUNE_THROW(Dune::NotImplemented,
"\n" << Dune::Stuff::Common::colorStringRed("ERROR:")
<< " FunctionSpe10Model1 not implemented for this combination of dimDomain = "
<< domainDim
<< " and rangeDim = "
<< rangeDim
<< "!");
}
static FunctionSpe10Model1<DomainFieldImp, domainDim, RangeFieldImp, rangeDim>*
create(const Dune::Stuff::Common::ExtendedParameterTree /*description*/)
{
DUNE_THROW(Dune::NotImplemented,
"\n" << Dune::Stuff::Common::colorStringRed("ERROR:")
<< " FunctionSpe10Model1 not implemented for this combination of dimDomain = "
<< domainDim
<< " and rangeDim = "
<< rangeDim
<< "!");
}
}; // class FunctionSpe10Model1
......
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