]> gcc.gnu.org Git - gcc.git/commitdiff
random (gamma_distribution): Fix typo in formula.
authorMatthias Klose <doko@debian.org>
Sat, 6 Jan 2007 09:56:37 +0000 (09:56 +0000)
committerMatthias Klose <doko@gcc.gnu.org>
Sat, 6 Jan 2007 09:56:37 +0000 (09:56 +0000)
2007-01-06  Matthias Klose  <doko@debian.org>

        * include/tr1/random (gamma_distribution): Fix typo in formula.
        * docs/doxygen/user.cfg.in: Use package amsmath.

From-SVN: r120522

libstdc++-v3/ChangeLog
libstdc++-v3/docs/doxygen/user.cfg.in
libstdc++-v3/include/tr1/random

index d1a799555531b704ed33eff3b9136927f3f86b8a..15114437ed6425f3a578c126a0a9aa2143ba7d71 100644 (file)
@@ -1,3 +1,8 @@
+2007-01-06  Matthias Klose  <doko@debian.org>
+
+       * include/tr1/random (gamma_distribution): Fix typo in formula.
+       * docs/doxygen/user.cfg.in: Use package amsmath.
+
 2006-12-29  Paolo Carlini  <pcarlini@suse.de>
 
        PR libstdc++/30226
index c5d58a02f476d668897724bd7007dd3c6f3f7460..5a0017810e192a583e9dffed2794bf5807243863 100644 (file)
@@ -902,7 +902,7 @@ PAPER_TYPE             = letter
 # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
 # packages that should be included in the LaTeX output.
 
-EXTRA_PACKAGES         = 
+EXTRA_PACKAGES         = amsmath
 
 # The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
 # the generated latex document. The header should contain everything until 
index d1963940253be679649330132fc01870022709a0..72ec79ded61fc55d47fcc2cfca0e871293c9826d 100644 (file)
@@ -2270,7 +2270,7 @@ _GLIBCXX_BEGIN_NAMESPACE(tr1)
    * @brief A gamma continuous distribution for random numbers.
    *
    * The formula for the gamma probability mass function is 
-   * @f$ p(x) = \frac{1}{\Gamma(\alpha)} x^{\alpha - 1} e^{-x} @f$.
+   * @f$ p(x) = \frac{1}{\Gamma(\alpha)} x^{\alpha - 1} e^{-x} @f$.
    */
   template<typename _RealType = double>
     class gamma_distribution
This page took 0.076356 seconds and 5 git commands to generate.