ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/random.h
(Generate patch)

Comparing ray/src/common/random.h (file contents):
Revision 1.2 by greg, Tue Sep 26 08:28:53 1989 UTC vs.
Revision 2.23 by schorsch, Sun Mar 6 01:13:17 2016 UTC

# Line 1 | Line 1
1 < /* Copyright (c) 1986 Regents of the University of California */
2 <
3 < /* SCCSid "$SunId$ LBL" */
4 <
1 > /* RCSid $Id$ */
2   /*
3 < *  random.h - header file for random(3) function.
7 < *
8 < *     10/1/85
3 > *  random.h - header file for random(3) and urand() function.
4   */
5 + #ifndef _RAD_RANDOM_H_
6 + #define _RAD_RANDOM_H_
7  
8 < extern long  random();
8 > #include <stdlib.h>
9  
10 < #define  frandom()      (random()*(1./2147483648.))
10 > #ifdef __cplusplus
11 > extern "C" {
12 > #endif
13 >
14 > #if defined(_WIN32) || defined(_WIN64)
15 > #if (RAND_MAX <= 65536)
16 > #define random()        ((long)rand()<<16^(long)rand()<<6^(long)rand()>>4)
17 > #else
18 > #define random()        rand()
19 > #endif
20 > #define srandom(s)      srand((unsigned)(s))
21 >
22 > #define frandom()       (rand()*(1./(RAND_MAX+.5)))
23 >
24 > #else
25 >
26 > #define  random()       lrand48()
27 > #define  srandom(s)     srand48((long)(s))
28 > #define  frandom()      drand48()
29 >
30 > #endif
31 >
32 > extern unsigned short   *urperm;
33 > extern int      urmask;
34 >
35 > #define  urand(i)       (urmask ? (urperm[(i)&urmask]+frandom())/(urmask+1.) \
36 >                                : frandom())
37 >
38 > extern int      initurand(int size);
39 >
40 >                                /* defined in urand.c */
41 > extern int      ilhash(int *d, int n);
42 >                                /* defined in urind.c */
43 > extern int      urind(int s, int i);
44 >                                /* defined in multisamp.c */
45 > extern void     multisamp(double t[], int n, double r);
46 >
47 >
48 > #ifdef __cplusplus
49 > }
50 > #endif
51 > #endif /* _RAD_RANDOM_H_ */
52 >

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines