class template
<random>

std::geometric_distribution

template <class IntType = int> class geometric_distribution;
Geometric distribution
Random number distribution that produces integers according to a geometric discrete distribution, which is described by the following probability mass function:



This distribution produces positive random integers where each value represents the number of unsuccessful trials before a first success in a sequence of trials, each with a probability of success equal to p.

The distribution parameter, p, is set on construction.

To produce a random value following this distribution, call its member function operator().

Its analogous continuous distribution is the exponential_distribution.

Template parameters

IntType
An integer type. Aliased as member type result_type.
By default, this is int.

Member types

The following aliases are member types of geometric_distribution:

member typedefinitionnotes
result_typeThe first template parameter (IntType)The type of the numbers generated (defaults to int)
param_typenot specifiedThe type returned by member param.

Member functions


Distribution parameters:


Non-member functions


Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// geometric_distribution
#include <iostream>
#include <random>

int main()
{
  const int nrolls = 10000; // number of experiments
  const int nstars = 100;   // maximum number of stars to distribute

  std::default_random_engine generator;
  std::geometric_distribution<int> distribution(0.3);

  int p[10]={};

  for (int i=0; i<nrolls; ++i) {
    int number = distribution(generator);
    if (number<10) ++p[number];
  }

  std::cout << "geometric_distribution (0.3):" << std::endl;
  for (int i=0; i<10; ++i)
    std::cout << i << ": " << std::string(p[i]*nstars/nrolls,'*') << std::endl;

  return 0;
}

Possible output:
geometric_distribution (0.3):
0: *****************************
1: *********************
2: **************
3: *********
4: *******
5: *****
6: ***
7: **
8: *
9: *


See also