From 4472f27a22880a93a6d276c5cf6119057f9c2379 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 4 May 2004 13:56:05 +0000 Subject: [PATCH] Rename the name of the module. git-svn-id: https://svn.dealii.org/trunk@9177 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/petsc_full_matrix.h | 2 +- deal.II/lac/include/lac/petsc_matrix_base.h | 4 ++-- .../lac/petsc_parallel_sparse_matrix.h | 2 +- .../lac/include/lac/petsc_parallel_vector.h | 4 ++-- deal.II/lac/include/lac/petsc_precondition.h | 16 +++++++------- deal.II/lac/include/lac/petsc_solver.h | 22 +++++++++---------- deal.II/lac/include/lac/petsc_sparse_matrix.h | 2 +- deal.II/lac/include/lac/petsc_vector.h | 2 +- deal.II/lac/include/lac/petsc_vector_base.h | 10 ++++----- 9 files changed, 32 insertions(+), 32 deletions(-) diff --git a/deal.II/lac/include/lac/petsc_full_matrix.h b/deal.II/lac/include/lac/petsc_full_matrix.h index a5a0f376a2..7f4344ba74 100644 --- a/deal.II/lac/include/lac/petsc_full_matrix.h +++ b/deal.II/lac/include/lac/petsc_full_matrix.h @@ -24,7 +24,7 @@ namespace PETScWrappers { -/*! @addtogroup PETSc +/*! @addtogroup PETScWrappers *@{ */ diff --git a/deal.II/lac/include/lac/petsc_matrix_base.h b/deal.II/lac/include/lac/petsc_matrix_base.h index 04bfbbf847..32cbcb0cf9 100644 --- a/deal.II/lac/include/lac/petsc_matrix_base.h +++ b/deal.II/lac/include/lac/petsc_matrix_base.h @@ -42,7 +42,7 @@ namespace PETScWrappers * surprisingly only shows the nonzero elements of the matrix, not all * elements. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Guido Kanschat, Roy Stogner, Wolfgang Bangerth, 2004 */ class const_iterator @@ -277,7 +277,7 @@ namespace PETScWrappers * call SparseMatrix::compress() once at the end of the assembly stage and * before the matrix is actively used. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class MatrixBase diff --git a/deal.II/lac/include/lac/petsc_parallel_sparse_matrix.h b/deal.II/lac/include/lac/petsc_parallel_sparse_matrix.h index 8c13bed9c8..297d16a857 100644 --- a/deal.II/lac/include/lac/petsc_parallel_sparse_matrix.h +++ b/deal.II/lac/include/lac/petsc_parallel_sparse_matrix.h @@ -44,7 +44,7 @@ namespace PETScWrappers * to individual elements in the documentation to the parallel vector * class. These comments apply here as well. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SparseMatrix : public MatrixBase diff --git a/deal.II/lac/include/lac/petsc_parallel_vector.h b/deal.II/lac/include/lac/petsc_parallel_vector.h index 3b416cc130..566f7d96a7 100644 --- a/deal.II/lac/include/lac/petsc_parallel_vector.h +++ b/deal.II/lac/include/lac/petsc_parallel_vector.h @@ -30,7 +30,7 @@ namespace PETScWrappers * Namespace for PETSc classes that work in parallel over MPI, such as * distributed vectors and matrices. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ namespace MPI @@ -135,7 +135,7 @@ namespace PETScWrappers * operations at the same time, for example by placing zero additions if * necessary. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class Vector : public VectorBase diff --git a/deal.II/lac/include/lac/petsc_precondition.h b/deal.II/lac/include/lac/petsc_precondition.h index 015764f04c..447191e0a8 100644 --- a/deal.II/lac/include/lac/petsc_precondition.h +++ b/deal.II/lac/include/lac/petsc_precondition.h @@ -37,7 +37,7 @@ namespace PETScWrappers * only to allow a similar interface than already used for the deal.II solver * and preconditioner classes. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionerBase @@ -103,7 +103,7 @@ namespace PETScWrappers * A class that implements the interface to use the PETSc Jacobi * preconditioner. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionJacobi : public PreconditionerBase @@ -156,7 +156,7 @@ namespace PETScWrappers * the matrix for preconditioning. This can be changed, as is explained in the * relevant section of the PETSc manual, but is not implemented here. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionBlockJacobi : public PreconditionerBase @@ -202,7 +202,7 @@ namespace PETScWrappers * A class that implements the interface to use the PETSc SOR * preconditioner. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionSOR : public PreconditionerBase @@ -265,7 +265,7 @@ namespace PETScWrappers * A class that implements the interface to use the PETSc SSOR * preconditioner. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionSSOR : public PreconditionerBase @@ -328,7 +328,7 @@ namespace PETScWrappers * A class that implements the interface to use the PETSc Eisenstat * preconditioner. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionEisenstat : public PreconditionerBase @@ -391,7 +391,7 @@ namespace PETScWrappers * A class that implements the interface to use the PETSc Incomplete Cholesky * preconditioner. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionICC : public PreconditionerBase @@ -454,7 +454,7 @@ namespace PETScWrappers * A class that implements the interface to use the PETSc ILU * preconditioner. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class PreconditionILU : public PreconditionerBase diff --git a/deal.II/lac/include/lac/petsc_solver.h b/deal.II/lac/include/lac/petsc_solver.h index 9dc7ca4a43..c527127e26 100644 --- a/deal.II/lac/include/lac/petsc_solver.h +++ b/deal.II/lac/include/lac/petsc_solver.h @@ -37,7 +37,7 @@ namespace PETScWrappers * classes simply set the right flags to select one solver or another, or to * set certain parameters for individual solvers. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverBase @@ -148,7 +148,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc Richardson * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverRichardson : public SolverBase @@ -230,7 +230,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc Chebychev * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverChebychev : public SolverBase @@ -296,7 +296,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc CG * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverCG : public SolverBase @@ -362,7 +362,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc BiCG * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverBiCG : public SolverBase @@ -511,7 +511,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc BiCGStab * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverBicgstab : public SolverBase @@ -577,7 +577,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc CG Squared * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverCGS : public SolverBase @@ -643,7 +643,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc TFQMR * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverTFQMR : public SolverBase @@ -714,7 +714,7 @@ namespace PETScWrappers * with an error indicating failure to converge with PETSc 2.1.6 and * prior. This should be fixed in later versions of PETSc, though. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverTCQMR : public SolverBase @@ -780,7 +780,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc CR * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverCR : public SolverBase @@ -846,7 +846,7 @@ namespace PETScWrappers * An implementation of the solver interface using the PETSc Least Squares * solver. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SolverLSQR : public SolverBase diff --git a/deal.II/lac/include/lac/petsc_sparse_matrix.h b/deal.II/lac/include/lac/petsc_sparse_matrix.h index d8185dee7e..83c8c87442 100644 --- a/deal.II/lac/include/lac/petsc_sparse_matrix.h +++ b/deal.II/lac/include/lac/petsc_sparse_matrix.h @@ -34,7 +34,7 @@ namespace PETScWrappers * virtual functions). Only the functions creating a matrix of specific type * differ, and are implemented in this particular class. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class SparseMatrix : public MatrixBase diff --git a/deal.II/lac/include/lac/petsc_vector.h b/deal.II/lac/include/lac/petsc_vector.h index 4fb0580ecc..fdf7ea8307 100644 --- a/deal.II/lac/include/lac/petsc_vector.h +++ b/deal.II/lac/include/lac/petsc_vector.h @@ -36,7 +36,7 @@ namespace PETScWrappers * functions). Only the functions creating a vector of specific type differ, * and are implemented in this particular class. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class Vector : public VectorBase diff --git a/deal.II/lac/include/lac/petsc_vector_base.h b/deal.II/lac/include/lac/petsc_vector_base.h index 1f982401b7..cb67fcde13 100644 --- a/deal.II/lac/include/lac/petsc_vector_base.h +++ b/deal.II/lac/include/lac/petsc_vector_base.h @@ -32,7 +32,7 @@ template class Vector; /** * A namespace in which wrapper classes for PETSc objects reside. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ namespace PETScWrappers @@ -44,7 +44,7 @@ namespace PETScWrappers /** * A namespace for internal implementation details of the PETScWrapper * members. - * @ingroup PETSc + * @ingroup PETScWrappers */ namespace internal { @@ -65,7 +65,7 @@ namespace PETScWrappers * scalar value of this element. It also * has a variety of assignment operator * for writing to this one element. - * @ingroup PETSc + * @ingroup PETScWrappers */ class VectorReference { @@ -200,7 +200,7 @@ namespace PETScWrappers * after vector assembly. Therefore, you need to call Vector::compress() * before you actually use the vector. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ class VectorBase @@ -662,7 +662,7 @@ namespace PETScWrappers * of the C++ standard library which uses a temporary object. The * function simply exchanges the data of the two vectors. * - * @ingroup PETSc + * @ingroup PETScWrappers * @author Wolfgang Bangerth, 2004 */ inline -- 2.39.5