From 038364b77c26f911821649f24380f72b4e400861 Mon Sep 17 00:00:00 2001 From: Elias Pipping <elias.pipping@fu-berlin.de> Date: Mon, 10 Sep 2012 12:22:38 +0200 Subject: [PATCH] Rename: u_old_old -> u_old_old_ptr --- src/one-body-sample.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/one-body-sample.cc b/src/one-body-sample.cc index 1b6ce4d5..9e83c61a 100644 --- a/src/one-body-sample.cc +++ b/src/one-body-sample.cc @@ -257,7 +257,7 @@ int main(int argc, char *argv[]) { VectorType problem_rhs(finestSize); VectorType problem_iterate(finestSize); - VectorType *u_old_old = (run == 1) ? nullptr : &u_previous; + VectorType *u_old_old_ptr = (run == 1) ? nullptr : &u_previous; typedef TimeSteppingScheme<VectorType, MatrixType, decltype(dirichletFunction), dim> TS; @@ -269,11 +269,11 @@ int main(int argc, char *argv[]) { Dune::shared_ptr<TS> timeSteppingScheme; if (run == 1 || !parset.get<bool>("implicitTwoStep")) timeSteppingScheme = - Dune::make_shared<IE>(ell, stiffnessMatrix, u, u_old_old, + Dune::make_shared<IE>(ell, stiffnessMatrix, u, u_old_old_ptr, ignoreNodes, dirichletFunction, time, tau); else timeSteppingScheme = - Dune::make_shared<ITS>(ell, stiffnessMatrix, u, u_old_old, + Dune::make_shared<ITS>(ell, stiffnessMatrix, u, u_old_old_ptr, ignoreNodes, dirichletFunction, time, tau); timeSteppingScheme->setup(problem_rhs, problem_iterate, problem_A); -- GitLab