source: trunk/gsdl/src/mgpp/lib/random.h@ 855

Last change on this file since 855 was 855, checked in by sjboddie, 24 years ago

Rodgers new C++ mg

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1/**************************************************************************
2 *
3 * random.h -- pseudo random number generator
4 * Copyright (C) 1994 Chris Wallace ([email protected])
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * $Id: random.h 855 2000-01-14 02:17:52Z sjboddie $
21 *
22 **************************************************************************/
23
24/*
25$Log$
26Revision 1.1 2000/01/14 02:17:15 sjboddie
27Rodgers new C++ mg
28
29Revision 1.1 1999/10/11 02:55:22 cs025
30Base install of MG-PP
31
32Revision 1.1 1999/08/10 21:16:58 sjboddie
33renamed mg-1.3d directory mg
34
35Revision 1.1 1998/11/17 09:32:21 rjmcnab
36*** empty log message ***
37
38*/
39
40#ifndef RANDOM_H
41#define RANDOM_H
42
43/*
44 * A random number generator called as a function by
45 * random (iseed) or irandm (iseed)
46 * The parameter should be a pointer to a 2-element long vector.
47 * The first function returns a double uniform in 0 .. 1.
48 * The second returns a long integer uniform in 0 .. 2**31-1
49 * Both update iseed[] in exactly the same way.
50 * iseed[] must be a 2-element integer vector.
51 * The initial value of the second element may be anything.
52 *
53 * The period of the random sequence is 2**32 * (2**32-1)
54 * The table mt[0:127] is defined by mt[i] = 69069 ** (128-i)
55 */
56
57double random (long is [2]);
58long irandm (long is [2]);
59
60#endif
Note: See TracBrowser for help on using the repository browser.