From 52892e00a65ce47837810273166216df6b429175 Mon Sep 17 00:00:00 2001 From: Graham Harper Date: Tue, 31 Jul 2018 01:41:21 +0000 Subject: [PATCH] Add and remove newlines in appropriate places --- include/deal.II/base/polynomials_bernardi_raugel.h | 7 ++++++- source/base/polynomials_bernardi_raugel.cc | 1 + 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/deal.II/base/polynomials_bernardi_raugel.h b/include/deal.II/base/polynomials_bernardi_raugel.h index 0c17681ef7..9b1d8b6bc2 100644 --- a/include/deal.II/base/polynomials_bernardi_raugel.h +++ b/include/deal.II/base/polynomials_bernardi_raugel.h @@ -133,6 +133,7 @@ public: std::vector> &grad_grads, std::vector> &third_derivatives, std::vector> &fourth_derivatives) const; + /** * Return the number of polynomials in the space BR(degree) without * requiring to build an object of PolynomialsBernardiRaugel. This is @@ -141,7 +142,6 @@ public: static unsigned int compute_n_pols(const unsigned int k); - private: /** * The degree of this object given to the constructor (must be 1). @@ -160,6 +160,7 @@ private: * vectors. */ const AnisotropicPolynomials polynomial_space_Q; + /** * An object representing the polynomial space of bubble * functions which forms the BR polynomials through @@ -190,6 +191,8 @@ PolynomialsBernardiRaugel::n() const return n_pols; } + + template inline unsigned int PolynomialsBernardiRaugel::degree() const @@ -197,6 +200,8 @@ PolynomialsBernardiRaugel::degree() const return 2; } + + template inline std::string PolynomialsBernardiRaugel::name() const diff --git a/source/base/polynomials_bernardi_raugel.cc b/source/base/polynomials_bernardi_raugel.cc index 1cbcd63424..67e581fcb9 100644 --- a/source/base/polynomials_bernardi_raugel.cc +++ b/source/base/polynomials_bernardi_raugel.cc @@ -49,6 +49,7 @@ PolynomialsBernardiRaugel::create_polynomials_bubble() } + template std::vector>> PolynomialsBernardiRaugel::create_polynomials_Q() -- 2.39.5