From 54a5099432cf5e2217d2afe6a26d2f6906f754e8 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 3 Apr 2014 22:23:42 +0000 Subject: [PATCH] No need for \f$...\f$, we have our own scripts that expand $...$ to exactly this. git-svn-id: https://svn.dealii.org/trunk@32713 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/lac/lapack_full_matrix.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/deal.II/include/deal.II/lac/lapack_full_matrix.h b/deal.II/include/deal.II/lac/lapack_full_matrix.h index ee4401d1a4..ddff7b1a09 100644 --- a/deal.II/include/deal.II/lac/lapack_full_matrix.h +++ b/deal.II/include/deal.II/lac/lapack_full_matrix.h @@ -133,13 +133,13 @@ public: /** * Return the dimension of the range space. @note The matrix is of - * dimension \f$m \times n\f$. + * dimension $m \times n$. */ unsigned int m () const; /** * Return the number of the range space. @note The matrix is of - * dimension \f$m \times n\f$. + * dimension $m \times n$. */ unsigned int n () const; @@ -469,7 +469,7 @@ public: Vector &eigenvalues, std::vector > &eigenvectors, const int itype = 1); - + /** * Same as the other compute_generalized_eigenvalues_symmetric function * except that all eigenvalues are computed and the tolerance is set @@ -661,16 +661,16 @@ private: /*---------------------- Inline functions -----------------------------------*/ template -inline -unsigned int +inline +unsigned int LAPACKFullMatrix::m () const { return this->n_rows (); } template -inline -unsigned int +inline +unsigned int LAPACKFullMatrix::n () const { return this->n_cols (); -- 2.39.5