File: Random.idl

package info (click to toggle)
python-orbit 0.3.1-12
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,492 kB
  • ctags: 801
  • sloc: sh: 9,444; ansic: 5,642; python: 1,141; makefile: 126
file content (13 lines) | stat: -rw-r--r-- 249 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Gotten from http://www.random.org/Random.idl
// --
// IDL

interface Random {

  // return non-negative long integer in the interval [0, 2^31)
  long lrand48();

  // return signed long integer in the interval [-2^31, 2^31)
  long mrand48();

};