From b51e6cc906f417ca3a8e493b8d0556fb7ba9acdb Mon Sep 17 00:00:00 2001 From: Giuseppe Pitton Date: Thu, 14 May 2015 22:02:15 +0200 Subject: [PATCH] fixed comment on get_nodes/weights member functions --- include/deal.II/base/quadrature_lib.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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); -- 2.39.5