blob: 194e10bc759908b0ccf92c33ec093e4558d870ab (
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
48
49
50
51
52
53
54
55
56
|
#include <libmary.h>
#include <arithmetical.h>
unsigned int random_seed;
void randomSeed(unsigned int seed)
{
random_seed = seed;
return;
}
// random algorithm using linear congruential method
unsigned int random(void)
{
int hi,lo,x;
x = random_seed;
if(x == 0)x = 123459876L;
hi = x / 127773L;
lo = x % 127773L;
x = 16807L * lo - 2836L * hi;
if(x < 0)x += 0x7FFFFFFFL;
random_seed = x;
return (x % ((unsigned long int)0x7FFFFFFFL + 1));
}
// random algorithm using Fibonacci-LFSR
unsigned int random_LFSR(void)
{
unsigned int shift_bit;
shift_bit = (random_seed & 0x0001) ^
((random_seed & 0x0004) >> 2) ^
((random_seed & 0x0008) >> 3) ^
((random_seed & 0x0020) >> 5);
random_seed = (random_seed >> 1) | (shift_bit << 15);
return random_seed;
}
long random(long max_num)
{
if(max_num ==0) return 0;
return random() % max_num;
}
long random(long min_num, long max_num)
{
if(min_num >= max_num)return 0;
if(max_num == 0) return 0;
return random( max_num - min_num ) + min_num;
}
|