From: Giuseppe Pitton Date: Thu, 14 May 2015 20:02:15 +0000 (+0200) Subject: fixed comment on get_nodes/weights member functions X-Git-Tag: v8.3.0-rc1~171^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b51e6cc906f417ca3a8e493b8d0556fb7ba9acdb;p=dealii.git fixed comment on get_nodes/weights member functions --- diff --git a/include/deal.II/base/quadrature_lib.h b/include/deal.II/base/quadrature_lib.h index ad7d5b23e6..30ffcca402 100644 --- a/include/deal.II/base/quadrature_lib.h +++ b/include/deal.II/base/quadrature_lib.h @@ -534,11 +534,11 @@ public: QGaussChebyshev(const unsigned int n); private: - /// Sets the points of the quadrature formula. + /// Computes the points of the quadrature formula. static std::vector get_quadrature_points(const unsigned int n); - /// Sets the weights of the quadrature formula. + /// Computes the weights of the quadrature formula. static std::vector get_quadrature_weights(const unsigned int n); @@ -575,11 +575,11 @@ public: private: const EndPoint ep; - /// Sets the points of the quadrature formula. + /// Computes the points of the quadrature formula. static std::vector get_quadrature_points(const unsigned int n, EndPoint ep); - /// Sets the weights of the quadrature formula. + /// Computes the weights of the quadrature formula. static std::vector get_quadrature_weights(const unsigned int n, EndPoint ep); @@ -610,11 +610,11 @@ public: QGaussLobattoChebyshev(const unsigned int n); private: - /// Sets the points of the quadrature formula. + /// Computes the points of the quadrature formula. static std::vector get_quadrature_points(const unsigned int n); - /// Sets the weights of the quadrature formula. + /// Computes the weights of the quadrature formula. static std::vector get_quadrature_weights(const unsigned int n);