1 .\" Copyright (c) 1993 Martin Birgmeier
2 .\" All rights reserved.
4 .\" You may redistribute unmodified or modified versions of this source
5 .\" code provided that the above copyright notice and this and the
6 .\" following conditions are retained.
8 .\" This software is provided ``as is'', and comes with no warranties
9 .\" of any kind. I shall in no event be liable for anything that happens
10 .\" to anyone/anything when using this software.
12 .\" @(#)rand48.3 V1.0 MB 8 Oct 1993
13 .\" $FreeBSD: src/lib/libc/gen/rand48.3,v 1.17 2005/01/20 09:17:02 ru Exp $
28 .Nd pseudo random number generators and initialization routines
39 .Fa "unsigned short xsubi[3]"
43 .Fa "unsigned short xsubi[3]"
47 .Fa "unsigned short param[7]"
59 .Fa "unsigned short xsubi[3]"
61 .Ft "unsigned short *"
63 .Fa "unsigned short seed16v[3]"
72 family of functions generates pseudo-random numbers, using a linear
73 congruential algorithm working on integers 48 bits in size.
75 particular formula employed is
76 r(n+1) = (a * r(n) + c) mod m.
77 The default value for the multiplicand `a' is 0x5deece66d (25214903917).
78 The default value for the the addend `c' is 0xb (11).
79 The modulo is always fixed at m = 2 ** 48.
80 r(n) is called the seed of the random number generator.
82 For the six generator routines described next, the first
83 computational step is to perform a single iteration of the algorithm.
90 return values of type double.
91 The full 48 bits of r(n+1) are
92 loaded into the mantissa of the returned value, with the exponent set
93 such that the values produced lie in the interval [0.0, 1.0).
100 return values of type long in the range
102 The high-order (31) bits of
103 r(n+1) are loaded into the lower bits of the returned value, with
104 the topmost (sign) bit set to zero.
111 return values of type long in the range
113 The high-order (32) bits of
114 r(n+1) are loaded into the returned value.
122 use an internal buffer to store r(n).
124 the initial value of r(0) = 0x1234abcd330e = 20017429951246.
131 use a user-supplied buffer to store the seed r(n),
132 which consists of an array of 3 shorts, where the zeroth member
133 holds the least significant bits.
135 All functions share the same multiplicand and addend.
140 is used to initialize the internal buffer r(n) of
145 such that the 32 bits of the seed value are copied into the upper 32 bits
146 of r(n), with the lower 16 bits of r(n) arbitrarily being set to 0x330e.
147 Additionally, the constant multiplicand and addend of the algorithm are
148 reset to the default values given above.
153 also initializes the internal buffer r(n) of
158 but here all 48 bits of the seed can be specified in an array of 3 shorts,
159 where the zeroth member specifies the lowest bits.
161 the constant multiplicand and addend of the algorithm are
162 reset to the default values given above.
166 returns a pointer to an array of 3 shorts which contains the old seed.
167 This array is statically allocated; thus, its contents are lost after
173 allows full control over the multiplicand and addend used in
186 An array of 7 shorts is passed as argument; the first three shorts are
187 used to initialize the seed; the second three are used to initialize the
188 multiplicand; and the last short is used to initialize the addend.
189 It is thus not possible to use values greater than 0xffff as the addend.
191 Note that all three methods of seeding the random number generator
192 always also set the multiplicand and addend for any of the six
195 For a more powerful random number generator, see