From 6574aa5e5716bd55e0018991672d5c5a65553843 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sat, 3 Dec 2022 13:34:15 -0700 Subject: [PATCH] Remove a 'using' declaration in step-50 that is in the way. --- examples/step-50/step-50.cc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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 -- 2.39.5