diff --git a/MathLib/LinAlg/VectorNorms.h b/MathLib/LinAlg/VectorNorms.h index 1911c3553c80c3b43d3e3118396386d3ba438aa8..eabf61e1bceff867079ded3d178dec2b5289c63d 100644 --- a/MathLib/LinAlg/VectorNorms.h +++ b/MathLib/LinAlg/VectorNorms.h @@ -73,19 +73,19 @@ inline T norm_max(T const * const v, std::size_t n) // ---------------------------------------------------------------------------- /// return L1 norm \f$ \|x\|_1 = \sum_{i=1}^n |x_i| \f$ -/// \tparam T Vector type +/// \tparam T_VEC Vector type /// \param v a vector object template<class T_VEC> inline double norm_1(const T_VEC &v) { return MathLib::norm_1(&v[0], v.size()); } /// return L2 norm (Euclidean norm) \f$ \|x\|_2 = \sqrt{\sum_{i=1}^n x_i^2} \f$ -/// \tparam T Vector type +/// \tparam T_VEC Vector type /// \param v a vector object template<class T_VEC> inline double norm_2(const T_VEC &v) { return MathLib::norm_2(&v[0], v.size()); } /// return maximum norm \f$ \|x\|_\infty = \max(|x_1|, ..., |x_n|) \f$ -/// \tparam T Vector type +/// \tparam T_VEC Vector type /// \param v a vector object template<class T_VEC> inline double norm_max(const T_VEC &v) { return MathLib::norm_max(&v[0], v.size()); } @@ -108,9 +108,9 @@ inline double norm_max(const double &v) { return norm_1(v); } /** * return norm * - * \tparam T vector type - * \tparam v a vector object - * \tparam normType norm type (default 2-norm) + * \tparam T_VEC vector type + * \param v a vector object + * \param normType norm type (default 2-norm) * \return calculated norm. If the give norm type is invalid, a negative value is returned. */ template<class T_VEC> diff --git a/NumLib/Fem/Integration/IntegrationGaussPrism.h b/NumLib/Fem/Integration/IntegrationGaussPrism.h index abdae734f2594a5a9b591301141d3449cf73aa97..23dbcb4d2215b246eec9d5f54b392992089d2b4b 100644 --- a/NumLib/Fem/Integration/IntegrationGaussPrism.h +++ b/NumLib/Fem/Integration/IntegrationGaussPrism.h @@ -63,7 +63,7 @@ public: * get coordinates of a integration point * * @param order the number of integration points - * @param pt_id the sampling point id + * @param ipg the sampling point id * @return weight */ static WeightedPoint diff --git a/NumLib/Fem/Integration/IntegrationGaussPyramid.h b/NumLib/Fem/Integration/IntegrationGaussPyramid.h index 083e379e78fd1fce58a5857ed67d457f3185323c..7005b0d68ad0c48ba5fa0bcaad1d18b3a7314d94 100644 --- a/NumLib/Fem/Integration/IntegrationGaussPyramid.h +++ b/NumLib/Fem/Integration/IntegrationGaussPyramid.h @@ -62,7 +62,7 @@ public: * get coordinates of a integration point * * @param order the number of integration points - * @param pt_id the sampling point id + * @param igp the sampling point id * @return weight */ static WeightedPoint diff --git a/NumLib/Fem/Integration/IntegrationGaussTet.h b/NumLib/Fem/Integration/IntegrationGaussTet.h index de5acabace5f89d9d7e441f605c429882490a384..cb959ba70ae6ad5d46b4fab66a567a0ef3badb49 100644 --- a/NumLib/Fem/Integration/IntegrationGaussTet.h +++ b/NumLib/Fem/Integration/IntegrationGaussTet.h @@ -62,7 +62,7 @@ public: * get coordinates of a integration point * * @param order the number of integration points - * @param pt_id the sampling point id + * @param igp the sampling point id * @return weight */ static WeightedPoint diff --git a/NumLib/Fem/Integration/IntegrationGaussTri.h b/NumLib/Fem/Integration/IntegrationGaussTri.h index 74b756635ec67e04fc44a18029199599067f40fd..9f6b587227fa287b7331308563d2596c90675dca 100644 --- a/NumLib/Fem/Integration/IntegrationGaussTri.h +++ b/NumLib/Fem/Integration/IntegrationGaussTri.h @@ -78,7 +78,7 @@ public: * get coordinates of a integration point * * @param order the number of integration points - * @param pt_id the sampling point id + * @param igp the sampling point id * @return weight */ static WeightedPoint diff --git a/NumLib/Fem/Integration/IntegrationPoint.h b/NumLib/Fem/Integration/IntegrationPoint.h index 8523e7d003c56a6c2ad3f47158acac0a4ca6d8df..99c54c81f3d563929f8d4eb687fa555ba3d621bd 100644 --- a/NumLib/Fem/Integration/IntegrationPoint.h +++ b/NumLib/Fem/Integration/IntegrationPoint.h @@ -55,7 +55,7 @@ public: /// Get coordinates of a integration point. /// /// \param order the number of integration points. - /// \param pt_id the sampling point id. + /// \param igp the sampling point id. /// \return weight static WeightedPoint getWeightedPoint(std::size_t /* order */, std::size_t /*igp*/) diff --git a/NumLib/ODESolver/MatrixTranslator.h b/NumLib/ODESolver/MatrixTranslator.h index 76970880311f22f24b019df4123cc7bef0d026c2..6fa7669d88755f049824559c2de26ad0574bf101 100644 --- a/NumLib/ODESolver/MatrixTranslator.h +++ b/NumLib/ODESolver/MatrixTranslator.h @@ -95,7 +95,6 @@ class MatrixTranslatorGeneral; * * \tparam Matrix the type of matrices occuring in the linearization of the equation. * \tparam Vector the type of the solution vector of the equation - * \tparam ODETag a tag indicating the type of equation. * * \see ODESystemTag::FirstOrderImplicitQuasilinear * \remark @@ -188,7 +187,6 @@ class MatrixTranslatorForwardEuler; * * \tparam Matrix the type of matrices occuring in the linearization of the equation. * \tparam Vector the type of the solution vector of the equation - * \tparam ODETag a tag indicating the type of equation. * * \see ODESystemTag::FirstOrderImplicitQuasilinear * \remark @@ -284,7 +282,6 @@ class MatrixTranslatorCrankNicolson; * * \tparam Matrix the type of matrices occuring in the linearization of the equation. * \tparam Vector the type of the solution vector of the equation - * \tparam ODETag a tag indicating the type of equation. * * \see ODESystemTag::FirstOrderImplicitQuasilinear * \remark