]> https://gitweb.dealii.org/ - dealii.git/commitdiff
RCM: Rename some stray leftovers in source
authorMatthias Maier <tamiko@43-1.org>
Sat, 26 May 2018 02:28:54 +0000 (21:28 -0500)
committerMatthias Maier <tamiko@43-1.org>
Wed, 6 Jun 2018 15:19:38 +0000 (10:19 -0500)
include/deal.II/meshworker/assembler.h
include/deal.II/numerics/vector_tools.h
source/dofs/dof_renumbering.cc
source/fe/fe_q_base.cc
source/grid/tria.cc

index 18cff981fbcb5b6fcf9252b0157f0d5c4f293b1e..1677943df4719d859cdf04ee9fcbad038cf78a78 100644 (file)
@@ -111,7 +111,6 @@ namespace MeshWorker
     class ResidualLocalBlocksToGlobalBlocks
     {
     public:
-
       /**
        * Copy the BlockInfo and the matrix pointers into local variables.
        */
@@ -122,7 +121,8 @@ namespace MeshWorker
        * Initialize the constraints.
        */
       void
-      initialize(const AffineConstraints<typename VectorType::value_type> &constraints);
+      initialize(
+        const AffineConstraints<typename VectorType::value_type> &constraints);
 
       /**
        * Initialize the local data in the DoFInfo object used later for
index 8cc2624ff6300cee1d6d544954fcf51d5e91a659..33fb4fbc89265c05753717073c1ce193543661ef 100644 (file)
@@ -1135,7 +1135,7 @@ namespace VectorTools
 
   /**
    * Insert the (algebraic) constraints due to Dirichlet boundary conditions
-   * into a ConstraintMatrix @p constraints. This function identifies the
+   * into a AffineConstraints @p constraints. This function identifies the
    * degrees of freedom subject to Dirichlet boundary conditions, adds them to
    * the list of constrained DoFs in @p constraints and sets the respective
    * inhomogeneity to the value interpolated around the boundary. If this
@@ -1464,7 +1464,7 @@ namespace VectorTools
    * $\vec{n}\times\vec{u}=\vec{n}\times\vec{f}$, i.e. the tangential
    * components of $u$ and $f$ shall coincide.
    *
-   * If the ConstraintMatrix @p constraints contained values or other
+   * If the AffineConstraints @p constraints contained values or other
    * constraints before, the new ones are added or the old ones overwritten,
    * if a node of the boundary part to be used was already in the list of
    * constraints. This is handled by using inhomogeneous constraints. Please
@@ -1593,7 +1593,7 @@ namespace VectorTools
    *
    * The resulting constraints are then given in the solutions $x$ and $y$.
    *
-   * If the ConstraintMatrix @p constraints contained values or other
+   * If the AffineConstraints @p constraints contained values or other
    * constraints before, the new ones are added or the old ones overwritten,
    * if a node of the boundary part to be used was already in the list of
    * constraints. This is handled by using inhomogeneous constraints. Please
@@ -1748,16 +1748,17 @@ namespace VectorTools
    * i.e., normal flux constraints where $\vec u$ is a vector-valued solution
    * variable and $\vec u_\Gamma$ is a prescribed vector field whose normal
    * component we want to be equal to the normal component of the solution.
-   * These conditions have exactly the form handled by the ConstraintMatrix
-   * class, in that they relate a <i>linear combination</i> of boundary degrees
-   * of freedom to a corresponding value (the inhomogeneity of the constraint).
-   * Consequently, the current function creates a list of constraints that are
-   * written into a ConstraintMatrix. This object may already have some
+   * These conditions have exactly the form handled by the
+   * AffineConstraints class, in that they relate a <i>linear
+   * combination</i> of boundary degrees of freedom to a corresponding
+   * value (the inhomogeneity of the constraint). Consequently, the current
+   * function creates a list of constraints that are written into an
+   * AffineConstraints container. This object may already have some
    * content, for example from hanging node constraints, that remains
-   * untouched. These constraints have to be applied to the linear system like
-   * any other such constraints, i.e., you have to condense the linear system
-   * with the constraints before solving, and you have to distribute the
-   * solution vector afterwards.
+   * untouched. These constraints have to be applied to the linear system
+   * like any other such constraints, i.e., you have to condense the linear
+   * system with the constraints before solving, and you have to distribute
+   * the solution vector afterwards.
    *
    * This function treats a more general case than
    * VectorTools::compute_no_normal_flux_constraints() (which can only handle
@@ -1814,7 +1815,7 @@ namespace VectorTools
    *
    * @note When combining adaptively refined meshes with hanging node
    * constraints and boundary conditions like from the current function within
-   * one ConstraintMatrix object, the hanging node constraints should always
+   * one AffineConstraints object, the hanging node constraints should always
    * be set first, and then the boundary conditions since boundary conditions
    * are not set in the second operation on degrees of freedom that are
    * already constrained. This makes sure that the discretization remains
index 867dab690c47dde220a64333d4ee3585a3130658..285ff72b0386ada49b99cb21696eb6d8b5ab71f6 100644 (file)
@@ -35,7 +35,7 @@
 #include <deal.II/hp/fe_collection.h>
 #include <deal.II/hp/fe_values.h>
 
-#include <deal.II/lac/constraint_matrix.h>
+#include <deal.II/lac/affine_constraints.h>
 #include <deal.II/lac/dynamic_sparsity_pattern.h>
 #include <deal.II/lac/sparsity_pattern.h>
 #include <deal.II/lac/sparsity_tools.h>
@@ -96,10 +96,9 @@ namespace DoFRenumbering
                      &graph_degree)
       {
         {
-          // create intermediate sparsity pattern
-          // (faster than directly submitting
-          // indices)
-          ConstraintMatrix constraints;
+          // create intermediate sparsity pattern (faster than directly
+          // submitting indices)
+          AffineConstraints<double> constraints;
           if (use_constraints)
             DoFTools::make_hanging_node_constraints(dof_handler, constraints);
           constraints.close();
@@ -403,7 +402,7 @@ namespace DoFRenumbering
     IndexSet locally_relevant_dofs;
     DoFTools::extract_locally_relevant_dofs(dof_handler, locally_relevant_dofs);
 
-    ConstraintMatrix constraints;
+    AffineConstraints<double> constraints;
     if (use_constraints)
       {
         constraints.reinit(locally_relevant_dofs);
index 189505a9708474afdbb9978ae15160d55b9ccdd7..8d80b3375c900fd1a69978fdd8a9f1084d8b6d9e 100644 (file)
@@ -374,7 +374,7 @@ struct FE_Q_Base<PolynomialType, xdim, xspacedim>::Implementation
 
             // The following lines of code should eliminate the problems with
             // the Constraint-Matrix, which appeared for P>=4. The
-            // ConstraintMatrix class complained about different constraints
+            // AffineConstraints class complained about different constraints
             // for the same entry of the Constraint-Matrix.  Actually this
             // difference could be attributed to FP errors, as it was in the
             // range of 1.0e-16. These errors originate in the loss of
index 0b65a406a0feb4160ed84c76397b4d64f34310c4..83e900d883a8d844c41d74ff14937fdf70250414 100644 (file)
@@ -1773,7 +1773,7 @@ namespace internal
                       "and then ensure continuity of the solution by "
                       "explicitly creating constraints that the degrees "
                       "of freedom at these vertices have the same "
-                      "value, using the ConstraintMatrix class."));
+                      "value, using the AffineConstraints class."));
               }
 
           // assert there are no more
@@ -2105,7 +2105,7 @@ namespace internal
                            "and then ensure continuity of the solution by "
                            "explicitly creating constraints that the degrees "
                            "of freedom at these lines have the same "
-                           "value, using the ConstraintMatrix class."));
+                           "value, using the AffineConstraints class."));
 
             // if only one cell: line is at boundary -> give it the boundary
             // indicator zero by default
@@ -9822,7 +9822,7 @@ namespace internal
        * one share one line in 3D. This is a requirement needed for
        * the interpolation of hanging nodes, since otherwise to steps
        * of interpolation would be necessary. This would make the
-       * processes implemented in the @p ConstraintMatrix class much
+       * processes implemented in the @p AffineConstraints class much
        * more complex, since these two steps of interpolation do not
        * commute.
        */

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.