1Blurb::
2Selection of a random number generator
3
4Description::
5The \c rng keyword is used to indicate a choice of random number generator.
6
7<b> Default Behavior </b>
8
9If specified, the \c rng keyword must be accompanied by either \c
10rnum2 (pseudo-random numbers) or \c mt19937 (random numbers generated
11by the Mersenne twister).  Otherwise, \c mt19937, the Mersenne twister
12is used by default.
13
14<b> Usage Tips </b>
15
16The default is recommended, as the Mersenne twister is a higher
17quality random number generator.
18
19Topics::
20Examples::
21\verbatim
22method
23  sampling
24    sample_type lhs
25    samples = 10
26    seed = 98765
27    rng rnum2
28\endverbatim
29Theory::
30Faq::
31See_Also::
32