source: trunk/indexers/mg/lib/random.h@ 3745

Last change on this file since 3745 was 3745, checked in by mdewsnip, 21 years ago

Addition of MG package for search and retrieval

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 1.8 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 3745 2003-02-20 21:20:24Z mdewsnip $
21 *
22 **************************************************************************/
23
24/*
25$Log$
26Revision 1.1 2003/02/20 21:14:16 mdewsnip
27Addition of MG package for search and retrieval
28
29Revision 1.1 1999/08/10 21:16:58 sjboddie
30renamed mg-1.3d directory mg
31
32Revision 1.1 1998/11/17 09:32:21 rjmcnab
33*** empty log message ***
34
35*/
36
37#ifndef RANDOM_H
38#define RANDOM_H
39
40/*
41 * A random number generator called as a function by
42 * random (iseed) or irandm (iseed)
43 * The parameter should be a pointer to a 2-element long vector.
44 * The first function returns a double uniform in 0 .. 1.
45 * The second returns a long integer uniform in 0 .. 2**31-1
46 * Both update iseed[] in exactly the same way.
47 * iseed[] must be a 2-element integer vector.
48 * The initial value of the second element may be anything.
49 *
50 * The period of the random sequence is 2**32 * (2**32-1)
51 * The table mt[0:127] is defined by mt[i] = 69069 ** (128-i)
52 */
53
54double random (long is [2]);
55long irandm (long is [2]);
56
57#endif
Note: See TracBrowser for help on using the repository browser.