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

Constness

parent 6e80e84e
No related branches found
No related tags found
No related merge requests found
......@@ -334,8 +334,7 @@ int main(int argc, char *argv[]) {
auto const timesteps = parset.get<size_t>("timeSteps");
auto const tau = parset.get<double>("endOfTime") / timesteps;
auto createRHS = [&](double _time, VectorType &_ell) {
auto const createRHS = [&](double _time, VectorType &_ell) {
assemble_neumann<GridType, GridView, SmallVector, P1Basis>(
leafView, p1Basis, neumannNodes, _ell, neumannFunction, _time);
_ell += gravityFunctional;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment