From 86c158138f7400bb89749308b340c4d3c439ff3b Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 15 Jun 2018 14:20:49 -0500 Subject: [PATCH] doc/glossary: Update trivial references to AffineConstraints --- doc/doxygen/headers/distributed.h | 6 +++--- doc/doxygen/headers/dofs.h | 2 +- doc/doxygen/headers/global_dof_index.h | 7 +++---- doc/doxygen/headers/glossary.h | 6 +++--- doc/doxygen/tutorial/tutorial.h.in | 2 +- 5 files changed, 11 insertions(+), 12 deletions(-) diff --git a/doc/doxygen/headers/distributed.h b/doc/doxygen/headers/distributed.h index 05e29eba1a..9d7233edd3 100644 --- a/doc/doxygen/headers/distributed.h +++ b/doc/doxygen/headers/distributed.h @@ -332,7 +332,7 @@ * When creating the sparsity pattern as well as when assembling the linear * system, we need to know about constraints on degrees of freedom, for * example resulting from hanging nodes or boundary conditions. Like the - * DynamicSparsityPattern class, the ConstraintMatrix can also take + * DynamicSparsityPattern class, the AffineConstraints container can also take * an IndexSet upon construction that indicates for which of the possibly very * large number of degrees of freedom it should actually store * constraints. Unlike for the sparsity pattern, these are now only those @@ -347,8 +347,8 @@ * this chain of constraints, it may not be sufficient to only store * constraints on locally active degrees of freedom but one may also need to * have constraints available on locally relevant ones. In that case, the - * ConstraintMatrix object needs to be initialized with the IndexSet produced - * by DoFTools::extract_locally_relevant_dofs() . + * AffineConstraints object needs to be initialized with the IndexSet + * produced by DoFTools::extract_locally_relevant_dofs() . * * In general, your program will continue to do something if you happen to not * store all necessary constraints on each processor: you will just generate diff --git a/doc/doxygen/headers/dofs.h b/doc/doxygen/headers/dofs.h index 28f5673b90..bece8e86a9 100644 --- a/doc/doxygen/headers/dofs.h +++ b/doc/doxygen/headers/dofs.h @@ -52,7 +52,7 @@ * In addition to the DoF handler classes, this module holds a number of * auxiliary classes not commonly used in application programs, as well as * three classes that are not directly associated with the data structures of - * the DoFHandler class. The first of these is the ConstraintMatrix class that + * the DoFHandler class. The first of these is the AffineConstraints class that * stores and treats the constraints associated with hanging nodes. Secondly, * the DoFRenumbering namespace offers functions that can reorder degrees of * freedom; among its functions are ones that sort degrees of freedom in diff --git a/doc/doxygen/headers/global_dof_index.h b/doc/doxygen/headers/global_dof_index.h index 7fa7e45f51..5046b60ad5 100644 --- a/doc/doxygen/headers/global_dof_index.h +++ b/doc/doxygen/headers/global_dof_index.h @@ -66,10 +66,9 @@ *
* The numbers of row and column are types::global_dof_index even if it is not * expected that someone will create a FullMatrix with so many entries. - * However, some functions of ConstraintMatrix are templated on the matrix - * type and thus, the - * size of a FullMatrix has to be of the same type than the size of - * SparseMatrix. + * However, some methods of the AffineConstraints class are templated on + * the matrix type and thus, the size of a FullMatrix has to be of the same + * type than the size of SparseMatrix. *
* *
@anchor GlobalDoFIndexSparseMatrix diff --git a/doc/doxygen/headers/glossary.h b/doc/doxygen/headers/glossary.h index e90470b1c1..e37bcf4336 100644 --- a/doc/doxygen/headers/glossary.h +++ b/doc/doxygen/headers/glossary.h @@ -558,7 +558,7 @@ * * 1. At the end of your assembly loop on matrices and vectors. This needs to * be done if you write entries directly or if you use - * ConstraintMatrix::distribute_local_to_global. Use VectorOperation::add. + * AffineConstraints::distribute_local_to_global. Use VectorOperation::add. * * 2. When you are done setting individual elements in a matrix/vector before * any other operations are done (adding to elements, other operations like @@ -568,8 +568,8 @@ * VectorOperation::add. * * All other operations like scaling or adding vectors, assignments, calls - * into deal.II (VectorTools, ConstraintMatrix, ...) or solvers do not require - * calls to compress(). + * into deal.II (VectorTools, AffineConstraints, ...) or solvers do not + * require calls to compress(). * * * @note Compressing is an operation that only applies to vectors whose diff --git a/doc/doxygen/tutorial/tutorial.h.in b/doc/doxygen/tutorial/tutorial.h.in index 79253ae046..de339bdb6f 100644 --- a/doc/doxygen/tutorial/tutorial.h.in +++ b/doc/doxygen/tutorial/tutorial.h.in @@ -235,7 +235,7 @@ * step-22 * Solving the Stokes equations of slow fluid flow on adaptive * meshes. More on Schur complement solvers. Advanced use of the - * ConstraintMatrix class. + * AffineConstraints class. * * * -- 2.39.5