Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v8plus / lib / python2.4 / lib-old / rand.py
CommitLineData
920dae64
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)]