]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Add P Munch corrections on variable namings
authorNicolas Barnafi <nabw91@gmail.com>
Mon, 9 May 2022 23:08:18 +0000 (01:08 +0200)
committerNicolas Barnafi <nabw91@gmail.com>
Mon, 9 May 2022 23:08:18 +0000 (01:08 +0200)
include/deal.II/lac/petsc_precondition.h
source/lac/petsc_precondition.cc

index 7a27046a8ef5a71a644ed42c1b96e538d6198d5d..fc24b8e6f017decf2e83c3bc1da37aae653c7a4a 100644 (file)
@@ -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
index aa2cd5caf9d2481da878f5cbe7a0c2264e35d569..bb8eba965ffcc392b24e27cf28de5193419a6dd5 100644 (file)
@@ -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,

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.