-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrand.h
191 lines (154 loc) · 5.08 KB
/
rand.h
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* -*- C++ -*- */
/*----------------------------------------------------------------------*/
/* */
/* <<<NUOVO>>> R A N D . H */
/* */
/* MODULO DI GENERAZIONE EVENTI CASUALI */
/* */
/* Questo modulo contiene le macro per la generazione di eventi */
/* pseudocasuali: */
/* - RESET_SEED : prepara i semi della routine PSEUDO */
/* - PSEUDO : genera un numero pseudocasuale compreso */
/* tra 0 e 1 */
/* - GEN_UNIF : genera un numero intero compreso tra */
/* min e max */
/* - GEN_POISSON: genera un evento di poisson */
/* - GEN_BERNOULLI: genera un numero con prob. bernoulliana */
/* - GEN_EXP : genera un esponenziale */
/* - GEN_EXP_INT: genera un exp e lo approssima con un int */
/* - GEN_EXP_ONE: genera un exp intero di valore minimo 1 */
/* */
/*----------------------------------------------------------------------*/
#ifndef _RAND_H
#define _RAND_H
#include <math.h>
#include "global.h"
/*
* vettore contenente i semi per la generazione di eventi casuali
* inizializzato in rand.c oppure inizializzato chiamando RESET_SEED
*/
extern int lseed[11];
/*
*macro di inizializzazione semi
*/
#define RESET_SEED \
{ \
lseed[0] = 0; \
lseed[1] = 428956419; \
lseed[2] = 1954324947; \
lseed[3] = 1145661099; \
lseed[4] = 1835732737; \
lseed[5] = 794161987; \
lseed[6] = 1329531353; \
lseed[7] = 200496737; \
lseed[8] = 633816299; \
lseed[9] = 1410143363; \
lseed[10] =1282538739; \
}
/*
* MACRO di generazione casuale di un double compreso tra 0 e 1
*
* come ingresso riceve il valore IS = seme di generazione (1..10)
* come uscita assegna il valore casuale alla variabile
* double PSEUDONUM
*/
#define la 16807
#define lb15 32768
#define lb16 65536
#define lp 2147483647
#define PSEUDO(IS,PSEUDONUM) \
{ \
int lfhi,lhi,lalo,leftlo,_k,iseed; \
double _x; \
iseed = lseed [IS]; \
lhi = iseed/lb16; \
lalo = (iseed-lhi*lb16)*la; \
leftlo = lalo/lb16; \
lfhi = lhi*la + leftlo; \
_k = lfhi/lb15; \
iseed = (((lalo-leftlo*lb16)-lp)+(lfhi-_k*lb15)*lb16)+_k;\
while (iseed < 0) \
iseed += lp; \
lseed[IS] = iseed; \
_x = lseed[IS]; \
PSEUDONUM=(_x*4.656612875e-10); \
}
/*
* macro di generazione di un numero intero compreso tra due
* limiti (Min e Max)
*/
#define GEN_UNIF(IS, Min, Max, ESITO) \
{ \
double pseudonum; \
PSEUDO((IS), pseudonum); \
ESITO = (double)((Min) + pseudonum * (fabs((double)((Max) - (Min)))+1));\
}
/*
* macro di generazione di un evento di poisson
*
* restituisce come valore 0 o 1 a seconda se l'evento e` stato
* generato o meno. Il valore e` restituito in ESITO.
* richiede in ingresso il seme di generazione casuale IS e la
* probabilita` dell'evento PROB
*/
#define GEN_POISSON(IS, PROB, ESITO) \
{ \
double pseudonum; \
PSEUDO((IS),pseudonum); \
if (pseudonum > (PROB)) ESITO=0; \
else ESITO=1; \
}
/*
* macro di generazione di un evento di bernoulli
*
* restituisce un numero compreso tra 0 e TOP iterando eventi di
* poisson
*/
#define GEN_BERNOULLI(IS, TOP, PROB, ESITO) \
{ \
int NUM; \
int i; \
ESITO = 0; \
for(i=0; i<TOP; i++) \
{ \
GEN_POISSON(IS, PROB, NUM); \
ESITO += NUM; \
} \
}
/*
* macro di generazione di un double con distribuzione
* esponenziale
*/
#define GEN_EXP(IS, AVERAGE, RES) \
{ \
double pseudonum; \
PSEUDO(IS,pseudonum); \
RES = -log(pseudonum) * (double)(AVERAGE); \
}
/*
* macro di generazione di un intero con distribuzione
* esponenziale
*/
#define GEN_EXP_INT(IS, AVERAGE, RES) \
{ \
double expnum; \
GEN_EXP(IS, AVERAGE, expnum); \
RES = (int)(expnum + 0.5); \
if (RES < 0) RES=0; \
}
/*
* macro di generazione di un intero con distribuzione
* esponenziale e valore minimo 1
*/
#define GEN_EXP_ONE(IS, AVERAGE, RES) \
{ \
double expnum; \
GEN_EXP(IS, (AVERAGE-0.5), expnum); \
RES = (int)(expnum + 1); \
if (RES < 0) RES=0; \
}
int arrotonda(double x);
int transmit(double g);
int fact(int i);
int n_interf_by_poisson(double average);
#endif // _MACRO_RANDOM_H