From: heister Date: Wed, 7 Nov 2012 22:59:44 +0000 (+0000) Subject: fix changed typedefs X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d547eaceb12596c853fa0acae890ab3f2b30df3;p=dealii-svn.git fix changed typedefs git-svn-id: https://svn.dealii.org/branches/branch_unify_linear_algebra@27477 0785d39b-7218-0410-832d-ea1e28bc413d --- 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));