Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / lib / python2.4 / lib-old / rand.py
CommitLineData
86530b38
AT
1# Module 'rand'
2# Don't use unless you want compatibility with C's rand()!
3
4import whrandom
5
6def srand(seed):
7 whrandom.seed(seed%256, seed/256%256, seed/65536%256)
8
9def rand():
10 return int(whrandom.random() * 32768.0) % 32768
11
12def choice(seq):
13 return seq[rand() % len(seq)]