blob: 6ee5edfbdf917b4a8bf390804f0b30983b2066c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#ifndef FC_SOLVE__RAND_H
#define FC_SOLVE__RAND_H
#ifdef __cplusplus
extern "C" {
#endif
struct fcs_rand_struct
{
unsigned long seed;
};
typedef struct fcs_rand_struct fcs_rand_t;
extern fcs_rand_t * freecell_solver_rand_alloc(unsigned int seed);
extern void freecell_solver_rand_free(fcs_rand_t * rand);
extern void freecell_solver_rand_srand(fcs_rand_t * rand, unsigned int seed);
static inline int freecell_solver_rand_rand15(fcs_rand_t * rand)
{
rand->seed = (rand->seed * 214013 + 2531011);
return (rand->seed >> 16) & 0x7fff;
}
/*
*
* This function constructs a larger integral number of out of two
* 15-bit ones.
*
* */
static inline int freecell_solver_rand_get_random_number(fcs_rand_t * rand)
{
int one, two;
one = freecell_solver_rand_rand15(rand);
two = freecell_solver_rand_rand15(rand);
return (one | (two << 15));
}
#ifdef __cplusplus
}
#endif
#endif
|