From dc3e323e1452fe93763d1d9f84b6ef1e3dde683b Mon Sep 17 00:00:00 2001 From: Oliver Sander <oliver.sander@tu-dresden.de> Date: Tue, 17 Jan 2017 16:53:34 +0100 Subject: [PATCH] Move the MultigridStep class into the Dune::Solvers namespace ... and import it back out, again. --- dune/solvers/iterationsteps/multigridstep.hh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dune/solvers/iterationsteps/multigridstep.hh b/dune/solvers/iterationsteps/multigridstep.hh index 7c4a7c44..50f3f32c 100644 --- a/dune/solvers/iterationsteps/multigridstep.hh +++ b/dune/solvers/iterationsteps/multigridstep.hh @@ -12,6 +12,10 @@ #include "lineariterationstep.hh" +namespace Dune { + + namespace Solvers { + /** \brief A linear multigrid step */ template< class MatrixType, @@ -228,6 +232,14 @@ bool preprocessCalled; }; + } // namespace Solvers + +} // namespace Dune + + +// For backward compatibility: will be removed eventually +using Dune::Solvers::MultigridStep; + #include "multigridstep.cc" #endif -- GitLab