2
0
mirror of https://github.com/boostorg/random.git synced 2026-01-19 04:22:17 +00:00

merge from mainline: fix synopsis (Matthias Troyer)

[SVN r22064]
This commit is contained in:
Jens Maurer
2004-01-29 22:58:21 +00:00
parent 475c723e38
commit f337dddfcc

View File

@@ -176,31 +176,31 @@ in detail which are already defined in the
<pre>
namespace boost {
template&lt;class UniformRandomNumberGenerator, class IntType = int&gt;
template&lt;class IntType = int&gt;
class uniform_smallint;
template&lt;class UniformRandomNumberGenerator, class IntType = int&gt;
template&lt;class IntType = int&gt;
class uniform_int;
template&lt;class UniformRandomNumberGenerator, class RealType = double&gt;
template&lt;class RealType = double&gt;
class uniform_01;
template&lt;class UniformRandomNumberGenerator, class RealType = double&gt;
template&lt;class RealType = double&gt;
class uniform_real;
// discrete distributions
template&lt;class UniformRandomNumberGenerator&gt;
template&lt;class RealType = double&gt;
class bernoulli_distribution;
template&lt;class UniformRandomNumberGenerator, class IntType = int&gt;
template&lt;class IntType = int&gt;
class geometric_distribution;
// continuous distributions
template&lt;class UniformRandomNumberGenerator, class RealType = double&gt;
template&lt;class RealType = double&gt;
class triangle_distribution;
template&lt;class UniformRandomNumberGenerator, class RealType = double&gt;
template&lt;class RealType = double&gt;
class exponential_distribution;
template&lt;class UniformRandomNumberGenerator, class RealType = double&gt;
template&lt;class RealType = double&gt;
class normal_distribution;
template&lt;class UniformRandomNumberGenerator, class RealType = double&gt;
template&lt;class RealType = double&gt;
class lognormal_distribution;
template&lt;class UniformRandomNumberGenerator, class RealType = double,
template&lt;class RealType = double,
class Cont = std::vector&lt;RealType&gt; &gt;
class uniform_on_sphere;
}