From 4b18b1c4f9848866a91a5ec558ab68bd345e2dbc Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 3 Jul 2023 08:45:16 -0600 Subject: [PATCH] Standardize on . --- include/deal.II/multigrid/mg_smoother.h | 56 ++++++++++++------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/include/deal.II/multigrid/mg_smoother.h b/include/deal.II/multigrid/mg_smoother.h index 3fc5a9e332..d1014177dd 100644 --- a/include/deal.II/multigrid/mg_smoother.h +++ b/include/deal.II/multigrid/mg_smoother.h @@ -215,10 +215,10 @@ namespace mg * common range is utilized. This way, smoothing can be restricted to * certain levels even if the matrix was generated for all levels. */ - template + template void initialize(const MGLevelObject &matrices, - const MGLevelObject & additional_data); + const MGLevelObject & additional_data); /** * Empty all vectors. @@ -326,10 +326,10 @@ public: * @p additional_data is an object of type @p RelaxationType::AdditionalData * and is handed to the initialization function of the relaxation method. */ - template + template void initialize(const MGLevelObject &matrices, - const MGLevelObject & additional_data); + const MGLevelObject & additional_data); /** * Initialize for single blocks of matrices. Of this block matrix, the block @@ -340,10 +340,10 @@ public: * @p additional_data is an object of type @p RelaxationType::AdditionalData * and is handed to the initialization function of the relaxation method. */ - template + template void initialize(const MGLevelObject &matrices, - const DATA & additional_data, + const DataType & additional_data, const unsigned int block_row, const unsigned int block_col); @@ -356,10 +356,10 @@ public: * @p additional_data is an object of type @p RelaxationType::AdditionalData * and is handed to the initialization function of the relaxation method. */ - template + template void initialize(const MGLevelObject &matrices, - const MGLevelObject & additional_data, + const MGLevelObject & additional_data, const unsigned int block_row, const unsigned int block_col); @@ -489,10 +489,10 @@ public: * PreconditionerType::AdditionalData and is handed to the initialization * function of the relaxation method. */ - template + template void initialize(const MGLevelObject &matrices, - const MGLevelObject & additional_data); + const MGLevelObject & additional_data); /** * Initialize for single blocks of matrices. Of this block matrix, the block @@ -504,10 +504,10 @@ public: * PreconditionerType::AdditionalData and is handed to the initialization * function of the relaxation method. */ - template + template void initialize(const MGLevelObject &matrices, - const DATA & additional_data, + const DataType & additional_data, const unsigned int block_row, const unsigned int block_col); @@ -521,10 +521,10 @@ public: * PreconditionerType::AdditionalData and is handed to the initialization * function of the relaxation method. */ - template + template void initialize(const MGLevelObject &matrices, - const MGLevelObject & additional_data, + const MGLevelObject & additional_data, const unsigned int block_row, const unsigned int block_col); @@ -694,11 +694,11 @@ namespace mg template - template + template inline void SmootherRelaxation::initialize( const MGLevelObject &m, - const MGLevelObject & data) + const MGLevelObject & data) { const unsigned int min = std::max(m.min_level(), data.min_level()); const unsigned int max = std::min(m.max_level(), data.max_level()); @@ -839,11 +839,11 @@ MGSmootherRelaxation::initialize( } template -template +template inline void MGSmootherRelaxation::initialize( const MGLevelObject &m, - const MGLevelObject & data) + const MGLevelObject & data) { const unsigned int min = m.min_level(); const unsigned int max = m.max_level(); @@ -866,11 +866,11 @@ MGSmootherRelaxation::initialize( } template -template +template inline void MGSmootherRelaxation::initialize( const MGLevelObject &m, - const DATA & data, + const DataType & data, const unsigned int row, const unsigned int col) { @@ -892,11 +892,11 @@ MGSmootherRelaxation::initialize( } template -template +template inline void MGSmootherRelaxation::initialize( const MGLevelObject &m, - const MGLevelObject & data, + const MGLevelObject & data, const unsigned int row, const unsigned int col) { @@ -1080,11 +1080,11 @@ MGSmootherPrecondition:: template -template +template inline void MGSmootherPrecondition::initialize( const MGLevelObject &m, - const MGLevelObject & data) + const MGLevelObject & data) { const unsigned int min = m.min_level(); const unsigned int max = m.max_level(); @@ -1110,11 +1110,11 @@ MGSmootherPrecondition::initialize( template -template +template inline void MGSmootherPrecondition::initialize( const MGLevelObject &m, - const DATA & data, + const DataType & data, const unsigned int row, const unsigned int col) { @@ -1134,11 +1134,11 @@ MGSmootherPrecondition::initialize( template -template +template inline void MGSmootherPrecondition::initialize( const MGLevelObject &m, - const MGLevelObject & data, + const MGLevelObject & data, const unsigned int row, const unsigned int col) { -- 2.39.5