From: bangerth Date: Fri, 18 Feb 2011 22:16:51 +0000 (+0000) Subject: Re-introduce setting old_old_stokes_solution = old_stokes_solution. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e650f3e463eb3fbb2813b1644e71bb07ea347947;p=dealii-svn.git Re-introduce setting old_old_stokes_solution = old_stokes_solution. git-svn-id: https://svn.dealii.org/trunk@23403 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index 014370aa60..ec9b66fe23 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -3623,9 +3623,8 @@ void BoussinesqFlowProblem::run (const std::string parameter_filename) // otherwise prepare for the // next time step - TrilinosWrappers::MPI::BlockVector old_old_stokes_solution (old_stokes_solution); - old_old_stokes_solution.block(0).reinit(old_stokes_solution.block(0),false,true); - old_old_stokes_solution.block(1).reinit(old_stokes_solution.block(1),false,true); + TrilinosWrappers::MPI::BlockVector old_old_stokes_solution; + old_old_stokes_solution = old_stokes_solution; old_stokes_solution = stokes_solution; old_old_temperature_solution = old_temperature_solution; old_temperature_solution = temperature_solution;