From f337dddfccec974ec6dc9bd4293618fcf2bcca3d Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Thu, 29 Jan 2004 22:58:21 +0000 Subject: [PATCH] merge from mainline: fix synopsis (Matthias Troyer) [SVN r22064] --- random-distributions.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/random-distributions.html b/random-distributions.html index 89c05f0..a77a421 100644 --- a/random-distributions.html +++ b/random-distributions.html @@ -176,31 +176,31 @@ in detail which are already defined in the
 namespace boost {
-  template<class UniformRandomNumberGenerator, class IntType = int>
+  template<class IntType = int>
   class uniform_smallint;
-  template<class UniformRandomNumberGenerator, class IntType = int>
+  template<class IntType = int>
   class uniform_int;
-  template<class UniformRandomNumberGenerator, class RealType = double>
+  template<class RealType = double>
   class uniform_01;
-  template<class UniformRandomNumberGenerator, class RealType = double>
+  template<class RealType = double>
   class uniform_real;
 
   // discrete distributions
-  template<class UniformRandomNumberGenerator>
+  template<class RealType = double>
   class bernoulli_distribution;
-  template<class UniformRandomNumberGenerator, class IntType = int>
+  template<class IntType = int>
   class geometric_distribution;
 
   // continuous distributions
-  template<class UniformRandomNumberGenerator, class RealType = double>
+  template<class RealType = double>
   class triangle_distribution;
-  template<class UniformRandomNumberGenerator, class RealType = double>
+  template<class RealType = double>
   class exponential_distribution;
-  template<class UniformRandomNumberGenerator, class RealType = double>
+  template<class RealType = double>
   class normal_distribution;
-  template<class UniformRandomNumberGenerator, class RealType = double>
+  template<class RealType = double>
   class lognormal_distribution;
-  template<class UniformRandomNumberGenerator, class RealType = double,
+  template<class RealType = double,
     class Cont = std::vector<RealType> >
   class uniform_on_sphere;
 }