williamr@2
|
1 |
/* GLIB - Library of useful routines for C programming
|
williamr@2
|
2 |
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
williamr@2
|
3 |
* Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
|
williamr@2
|
4 |
*
|
williamr@2
|
5 |
* This library is free software; you can redistribute it and/or
|
williamr@2
|
6 |
* modify it under the terms of the GNU Lesser General Public
|
williamr@2
|
7 |
* License as published by the Free Software Foundation; either
|
williamr@2
|
8 |
* version 2 of the License, or (at your option) any later version.
|
williamr@2
|
9 |
*
|
williamr@2
|
10 |
* This library is distributed in the hope that it will be useful,
|
williamr@2
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
williamr@2
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
williamr@2
|
13 |
* Lesser General Public License for more details.
|
williamr@2
|
14 |
*
|
williamr@2
|
15 |
* You should have received a copy of the GNU Lesser General Public
|
williamr@2
|
16 |
* License along with this library; if not, write to the
|
williamr@2
|
17 |
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
williamr@2
|
18 |
* Boston, MA 02111-1307, USA.
|
williamr@2
|
19 |
*/
|
williamr@2
|
20 |
|
williamr@2
|
21 |
/*
|
williamr@2
|
22 |
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
williamr@2
|
23 |
* file for a list of people on the GLib Team. See the ChangeLog
|
williamr@2
|
24 |
* files for a list of changes. These files are distributed with
|
williamr@2
|
25 |
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
williamr@2
|
26 |
*/
|
williamr@2
|
27 |
|
williamr@2
|
28 |
#ifndef __G_RAND_H__
|
williamr@2
|
29 |
#define __G_RAND_H__
|
williamr@2
|
30 |
|
williamr@2
|
31 |
#include <_ansi.h>
|
williamr@2
|
32 |
#include <glib/gtypes.h>
|
williamr@2
|
33 |
|
williamr@2
|
34 |
G_BEGIN_DECLS
|
williamr@2
|
35 |
|
williamr@2
|
36 |
typedef struct _GRand GRand;
|
williamr@2
|
37 |
|
williamr@2
|
38 |
/* GRand - a good and fast random number generator: Mersenne Twister
|
williamr@2
|
39 |
* see http://www.math.keio.ac.jp/~matumoto/emt.html for more info.
|
williamr@2
|
40 |
* The range functions return a value in the intervall [begin, end).
|
williamr@2
|
41 |
* int -> [0..2^32-1]
|
williamr@2
|
42 |
* int_range -> [begin..end-1]
|
williamr@2
|
43 |
* double -> [0..1)
|
williamr@2
|
44 |
* double_range -> [begin..end)
|
williamr@2
|
45 |
*/
|
williamr@2
|
46 |
|
williamr@2
|
47 |
IMPORT_C GRand* g_rand_new_with_seed (guint32 seed);
|
williamr@2
|
48 |
IMPORT_C GRand* g_rand_new_with_seed_array (const guint32 *seed,
|
williamr@2
|
49 |
guint seed_length);
|
williamr@2
|
50 |
IMPORT_C GRand* g_rand_new (void);
|
williamr@2
|
51 |
IMPORT_C void g_rand_free (GRand *rand_);
|
williamr@2
|
52 |
IMPORT_C GRand* g_rand_copy (GRand *rand_);
|
williamr@2
|
53 |
IMPORT_C void g_rand_set_seed (GRand *rand_,
|
williamr@2
|
54 |
guint32 seed);
|
williamr@2
|
55 |
IMPORT_C void g_rand_set_seed_array (GRand *rand_,
|
williamr@2
|
56 |
const guint32 *seed,
|
williamr@2
|
57 |
guint seed_length);
|
williamr@2
|
58 |
|
williamr@2
|
59 |
#define g_rand_boolean(rand_) ((g_rand_int (rand_) & (1 << 15)) != 0)
|
williamr@2
|
60 |
|
williamr@2
|
61 |
IMPORT_C guint32 g_rand_int (GRand *rand_);
|
williamr@2
|
62 |
IMPORT_C gint32 g_rand_int_range (GRand *rand_,
|
williamr@2
|
63 |
gint32 begin,
|
williamr@2
|
64 |
gint32 end);
|
williamr@2
|
65 |
IMPORT_C gdouble g_rand_double (GRand *rand_);
|
williamr@2
|
66 |
IMPORT_C gdouble g_rand_double_range (GRand *rand_,
|
williamr@2
|
67 |
gdouble begin,
|
williamr@2
|
68 |
gdouble end);
|
williamr@2
|
69 |
IMPORT_C void g_random_set_seed (guint32 seed);
|
williamr@2
|
70 |
|
williamr@2
|
71 |
#define g_random_boolean() ((g_random_int () & (1 << 15)) != 0)
|
williamr@2
|
72 |
|
williamr@2
|
73 |
IMPORT_C guint32 g_random_int (void);
|
williamr@2
|
74 |
IMPORT_C gint32 g_random_int_range (gint32 begin,
|
williamr@2
|
75 |
gint32 end);
|
williamr@2
|
76 |
IMPORT_C gdouble g_random_double (void);
|
williamr@2
|
77 |
IMPORT_C gdouble g_random_double_range (gdouble begin,
|
williamr@2
|
78 |
gdouble end);
|
williamr@2
|
79 |
|
williamr@2
|
80 |
|
williamr@2
|
81 |
G_END_DECLS
|
williamr@2
|
82 |
|
williamr@2
|
83 |
#endif /* __G_RAND_H__ */
|
williamr@2
|
84 |
|
williamr@2
|
85 |
|
williamr@2
|
86 |
|
williamr@2
|
87 |
|
williamr@2
|
88 |
|
williamr@2
|
89 |
|