From 016e7c5d19dbd196d2c70a0aff222cb96f7c7e43 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 3 Dec 2024 09:56:00 -0700 Subject: [PATCH] Use LA::MPI::Vector instead of TrilinosWrappers. --- Phase_field_fracture_model_in_3D/phase_field.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.39.5