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

[function] minor fix

parent 30b1b32f
No related branches found
No related tags found
No related merge requests found
...@@ -48,10 +48,10 @@ Dune::ParameterTree createSampleDescription(const std::string type) ...@@ -48,10 +48,10 @@ Dune::ParameterTree createSampleDescription(const std::string type)
} else if (type == "function.expression") { } else if (type == "function.expression") {
typedef Stuff::Function::Expression<D, d, R, r> FunctionType; typedef Stuff::Function::Expression<D, d, R, r> FunctionType;
return FunctionType::createSampleDescription(); return FunctionType::createSampleDescription();
} else if (type == "function.parametric.separable.default") { } else if (type == "function.separable.default") {
typedef Stuff::Function::SeparableDefault<D, d, R, r> FunctionType; typedef Stuff::Function::SeparableDefault<D, d, R, r> FunctionType;
return FunctionType::createSampleDescription(); return FunctionType::createSampleDescription();
} else if (type == "function.parametric.separable.checkerboard") { } else if (type == "function.separable.checkerboard") {
typedef Stuff::Function::SeparableCheckerboard<D, d, R, r> FunctionType; typedef Stuff::Function::SeparableCheckerboard<D, d, R, r> FunctionType;
return FunctionType::createSampleDescription(); return FunctionType::createSampleDescription();
} else } else
......
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