From ec8f7cd912284c71ffee26f60313c554f4e158c6 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 31 Aug 1999 07:38:19 +0000 Subject: [PATCH] Doc update. More references. git-svn-id: https://svn.dealii.org/trunk@1715 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/include/base/quadrature_lib.h | 34 +++++++++++++++------- 1 file changed, 24 insertions(+), 10 deletions(-) diff --git a/deal.II/base/include/base/quadrature_lib.h b/deal.II/base/include/base/quadrature_lib.h index 91098017a8..aef5ab7805 100644 --- a/deal.II/base/include/base/quadrature_lib.h +++ b/deal.II/base/include/base/quadrature_lib.h @@ -12,7 +12,9 @@ /** * 2-Point-Gauss quadrature formula, exact for polynomials of degree 3. * - * Reference: Ward Cheney, David Kincaid: Numerical Mathematics and Computing. + * Reference: Ward Cheney, David Kincaid: "Numerical Mathematics and Computing". + * For a comprehensive list of Gaussian quadrature formulae, see also: + * A. H. Strout, D. Secrest: "Gaussian Quadrature Formulas" */ template class QGauss2 : public Quadrature @@ -26,7 +28,9 @@ class QGauss2 : public Quadrature /** * 3-Point-Gauss quadrature formula, exact for polynomials of degree 5. * - * Reference: Ward Cheney, David Kincaid: Numerical Mathematics and Computing. + * Reference: Ward Cheney, David Kincaid: "Numerical Mathematics and Computing". + * For a comprehensive list of Gaussian quadrature formulae, see also: + * A. H. Strout, D. Secrest: "Gaussian Quadrature Formulas" */ template class QGauss3 : public Quadrature @@ -40,7 +44,9 @@ class QGauss3 : public Quadrature /** * 4-Point-Gauss quadrature formula, exact for polynomials of degree 7. * - * Reference: Ward Cheney, David Kincaid: Numerical Mathematics and Computing. + * Reference: Ward Cheney, David Kincaid: "Numerical Mathematics and Computing". + * For a comprehensive list of Gaussian quadrature formulae, see also: + * A. H. Strout, D. Secrest: "Gaussian Quadrature Formulas" */ template class QGauss4 : public Quadrature @@ -55,7 +61,9 @@ class QGauss4 : public Quadrature /** * 5-Point-Gauss quadrature formula, exact for polynomials of degree 9. * - * Reference: Ward Cheney, David Kincaid: Numerical Mathematics and Computing. + * Reference: Ward Cheney, David Kincaid: "Numerical Mathematics and Computing". + * For a comprehensive list of Gaussian quadrature formulae, see also: + * A. H. Strout, D. Secrest: "Gaussian Quadrature Formulas" */ template class QGauss5 : public Quadrature @@ -73,8 +81,10 @@ class QGauss5 : public Quadrature * and higher degree. If anyone finds them, please replace the existing * numbers by these expressions. * - * Reference: J. E. Akin: Application and Implementation of Finite - * Element Methods + * Reference: J. E. Akin: "Application and Implementation of Finite + * Element Methods" + * For a comprehensive list of Gaussian quadrature formulae, see also: + * A. H. Strout, D. Secrest: "Gaussian Quadrature Formulas" */ template class QGauss6 : public Quadrature @@ -92,8 +102,10 @@ class QGauss6 : public Quadrature * and higher degree. If anyone finds them, please replace the existing * numbers by these expressions. * - * Reference: J. E. Akin: Application and Implementation of Finite - * Element Methods + * Reference: J. E. Akin: "Application and Implementation of Finite + * Element Methods" + * For a comprehensive list of Gaussian quadrature formulae, see also: + * A. H. Strout, D. Secrest: "Gaussian Quadrature Formulas" */ template class QGauss7 : public Quadrature @@ -111,8 +123,10 @@ class QGauss7 : public Quadrature * and higher degree. If anyone finds them, please replace the existing * numbers by these expressions. * - * Reference: J. E. Akin: Application and Implementation of Finite - * Element Methods + * Reference: J. E. Akin: "Application and Implementation of Finite + * Element Methods" + * For a comprehensive list of Gaussian quadrature formulae, see also: + * A. H. Strout, D. Secrest: "Gaussian Quadrature Formulas" */ template class QGauss8 : public Quadrature -- 2.39.5