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

Template parameters can be inferred

parent e73ad882
No related branches found
No related tags found
No related merge requests found
......@@ -376,8 +376,8 @@ int main(int argc, char *argv[]) {
auto const timesteps = parset.get<size_t>("timeSteps");
auto const tau = parset.get<double>("endOfTime") / timesteps;
auto const createRHS = [&](double _time, VectorType &_ell) {
assemble_neumann<GridType, GridView, SmallVector>(
leafView, p1Assembler, neumannNodes, _ell, neumannFunction, _time);
assemble_neumann<GridType>(leafView, p1Assembler, neumannNodes, _ell,
neumannFunction, _time);
_ell += gravityFunctional;
};
......
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