From 411bf8ad5185f60f8ba99625606a653902c81697 Mon Sep 17 00:00:00 2001 From: Nicolas Barnafi Date: Tue, 10 May 2022 01:08:18 +0200 Subject: [PATCH] Add P Munch corrections on variable namings --- include/deal.II/lac/petsc_precondition.h | 12 +++++------ source/lac/petsc_precondition.cc | 26 ++++++++++++------------ 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/include/deal.II/lac/petsc_precondition.h b/include/deal.II/lac/petsc_precondition.h index 7a27046a8e..fc24b8e6f0 100644 --- a/include/deal.II/lac/petsc_precondition.h +++ b/include/deal.II/lac/petsc_precondition.h @@ -977,12 +977,12 @@ namespace PETScWrappers * than what is exposed here. */ AdditionalData(const bool use_vertices = true, - const bool use_edges_ = false, - const bool use_faces_ = false, - const bool symmetric_ = false, - const unsigned int coords_cdim_ = 0, - const types::global_dof_index coords_n_ = 0, - const PetscReal * coords_data_ = nullptr); + const bool use_edges = false, + const bool use_faces = false, + const bool symmetric = false, + const unsigned int coords_cdim = 0, + const types::global_dof_index coords_n = 0, + const PetscReal * coords_data = nullptr); /** * This flag sets the use of degrees of freedom in the vertices of the diff --git a/source/lac/petsc_precondition.cc b/source/lac/petsc_precondition.cc index aa2cd5caf9..bb8eba965f 100644 --- a/source/lac/petsc_precondition.cc +++ b/source/lac/petsc_precondition.cc @@ -853,20 +853,20 @@ namespace PETScWrappers /* ----------------- PreconditionBDDC -------------------- */ PreconditionBDDC::AdditionalData::AdditionalData( - const bool use_vertices_, - const bool use_edges_, - const bool use_faces_, - const bool symmetric_, - const unsigned int coords_cdim_, - const types::global_dof_index coords_n_, - const PetscReal * coords_data_) + const bool use_vertices, + const bool use_edges, + const bool use_faces, + const bool symmetric, + const unsigned int coords_cdim, + const types::global_dof_index coords_n, + const PetscReal * coords_data) : use_vertices(use_vertices) - , use_edges(use_edges_) - , use_faces(use_faces_) - , symmetric(symmetric_) - , coords_cdim(coords_cdim_) - , coords_n(coords_n_) - , coords_data(coords_data_) + , use_edges(use_edges) + , use_faces(use_faces) + , symmetric(symmetric) + , coords_cdim(coords_cdim) + , coords_n(coords_n) + , coords_data(coords_data) {} PreconditionBDDC::PreconditionBDDC(const MPI_Comm comm, -- 2.39.5