-
Notifications
You must be signed in to change notification settings - Fork 0
/
random.c
53 lines (49 loc) · 1.46 KB
/
random.c
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
48
49
50
51
52
53
/*
* Copyright (C) 2012--2015 Richard Preen <[email protected]>
* See <http://arxiv.org/abs/1204.4107> for details.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
**************
* Description:
**************
* The random number generator interface module.
*
* Initialises the Mersenne Twister random number generator and provides
* abstracted functions for calculating a random floating point or integer.
*/
#include <time.h>
#include <limits.h>
#include "mt64.h"
#include "random.h"
void init_random()
{
time_t now = time(0);
unsigned char *p = (unsigned char *)&now;
unsigned seed = 0;
size_t i;
for(i = 0; i < sizeof(now); i++)
seed = (seed * (UCHAR_MAX + 2U)) + p[i];
init_genrand64(seed);
}
// not inclusive of max
int irand(int min, int max)
{
return min + (drand() * (max - min));
}
double drand()
{
// Mersenne Twister 64bit version
return genrand64_real1();
}