Skip to content
Snippets Groups Projects
Commit bcdc12f5 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Clean up typedefs

parent 5edc5bbd
No related branches found
No related tags found
No related merge requests found
......@@ -297,9 +297,8 @@
<<setupBoundary>>;
// Set up functions for time-dependent boundary conditions
typedef SharedPointerMap
<std::string, Dune::VirtualFunction<double, double> > FunctionMap;
FunctionMap functions;
typedef Dune::VirtualFunction<double, double> FunctionType;
SharedPointerMap <std::string, FunctionType> functions;
initPython(functions);
auto const &dirichletFunction = functions.get("dirichletCondition");
auto const &neumannFunction = functions.get("neumannCondition");
......
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