From: Wolfgang Bangerth Date: Tue, 3 Dec 2024 16:56:00 +0000 (-0700) Subject: Use LA::MPI::Vector instead of TrilinosWrappers. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=016e7c5d19dbd196d2c70a0aff222cb96f7c7e43;p=code-gallery.git Use LA::MPI::Vector instead of TrilinosWrappers. --- diff --git a/Phase_field_fracture_model_in_3D/phase_field.cc b/Phase_field_fracture_model_in_3D/phase_field.cc index 9b86ead..12ea189 100644 --- a/Phase_field_fracture_model_in_3D/phase_field.cc +++ b/Phase_field_fracture_model_in_3D/phase_field.cc @@ -798,7 +798,7 @@ namespace Step854 SolverControl solver_control (10000, 1e-12/** system_rhs_elastic.l2_norm()*/); - SolverCG solver (solver_control); + SolverCG solver (solver_control); LA::MPI::PreconditionAMG::AdditionalData data; #ifdef USE_PETSC_LA @@ -1007,7 +1007,7 @@ namespace Step854 SolverControl solver_control (10000, 1e-12/** system_rhs_damage.l2_norm()*/); - SolverCG solver (solver_control); + SolverCG solver (solver_control); LA::MPI::PreconditionAMG::AdditionalData data; #ifdef USE_PETSC_LA