From 4d547eaceb12596c853fa0acae890ab3f2b30df3 Mon Sep 17 00:00:00 2001 From: heister Date: Wed, 7 Nov 2012 22:59:44 +0000 Subject: [PATCH] fix changed typedefs git-svn-id: https://svn.dealii.org/branches/branch_unify_linear_algebra@27477 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-40/step-40.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/examples/step-40/step-40.cc b/deal.II/examples/step-40/step-40.cc index a501a58f4b..8d62aa5f79 100644 --- a/deal.II/examples/step-40/step-40.cc +++ b/deal.II/examples/step-40/step-40.cc @@ -209,9 +209,9 @@ namespace Step40 ConstraintMatrix constraints; - LA::SparseMatrix system_matrix; - LA::Vector locally_relevant_solution; - LA::Vector system_rhs; + LA::MPI::SparseMatrix system_matrix; + LA::MPI::Vector locally_relevant_solution; + LA::MPI::Vector system_rhs; ConditionalOStream pcout; }; @@ -601,7 +601,7 @@ namespace Step40 template void LaplaceProblem::solve () { - LA::Vector + LA::MPI::Vector completely_distributed_solution (mpi_communicator, dof_handler.n_dofs(), dof_handler.n_locally_owned_dofs()); @@ -613,7 +613,7 @@ namespace Step40 // Ask for a symmetric preconditioner by // setting the first parameter in // AdditionalData to true. - LA::PreconditionAMG + LA::MPI::PreconditionAMG preconditioner(system_matrix, PETScWrappers::PreconditionBoomerAMG::AdditionalData(true)); -- 2.39.5