forked from dworthen/prng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlea.c
46 lines (39 loc) · 807 Bytes
/
Alea.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
#include <stdio.h>
#include <stdint.h>
#include "mash.h"
const double norm32 = 2.3283064365386963e-10; // 2^-32
static double s0, s1, s2;
static int c = 1;
static inline double alea() {
double t = 2091639.0 * s0 + c * norm32; // 2^-32
s0 = s1;
s1 = s2;
return s2 = t - (c = t);
}
int main(int argc, unsigned char *argv[]) {
double buffer[256];
int i;
s0 = mash(" ");
s1 = mash(" ");
s2 = mash(" ");
for (i = 1; i < argc; i++) {
s0 -= mash(argv[i]);
if (s0 < 0.0) {
s0 += 1.0;
}
s1 -= mash(argv[i]);
if (s1 < 0.0) {
s1 += 1.0;
}
s2 -= mash(argv[i]);
if (s2 < 0.0) {
s2 += 1.0;
}
}
while (1) {
for (i = 0; i < 256; i++) {
buffer[i] = alea();
}
fwrite(buffer, sizeof buffer, 1, stdout);
}
}