From: Wolfgang Bangerth Date: Sat, 3 Dec 2022 20:34:15 +0000 (-0700) Subject: Remove a 'using' declaration in step-50 that is in the way. X-Git-Tag: v9.5.0-rc1~761^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14532%2Fhead;p=dealii.git Remove a 'using' declaration in step-50 that is in the way. --- diff --git a/examples/step-50/step-50.cc b/examples/step-50/step-50.cc index f07a70f08d..38cd0325c2 100644 --- a/examples/step-50/step-50.cc +++ b/examples/step-50/step-50.cc @@ -388,10 +388,9 @@ private: // We will use the following types throughout the program. First the // matrix-based types, after that the matrix-free classes. For the // matrix-free implementation, we use @p float for the level operators. - using MatrixType = LA::MPI::SparseMatrix; - using VectorType = LA::MPI::Vector; - using PreconditionAMG = LA::MPI::PreconditionAMG; - using PreconditionJacobi = LA::MPI::PreconditionJacobi; + using MatrixType = LA::MPI::SparseMatrix; + using VectorType = LA::MPI::Vector; + using PreconditionAMG = LA::MPI::PreconditionAMG; using MatrixFreeLevelMatrix = MatrixFreeOperators::LaplaceOperator< dim, @@ -1006,7 +1005,7 @@ void LaplaceProblem::solve() PreconditionIdentity> coarse_grid_solver(coarse_solver, mf_mg_matrix[0], identity); - using Smoother = dealii::PreconditionJacobi; + using Smoother = PreconditionJacobi; MGSmootherPrecondition