mt64.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. A C-program for MT19937-64 (2004/9/29 version).
  3. Coded by Takuji Nishimura and Makoto Matsumoto.
  4. This is a 64-bit version of Mersenne Twister pseudorandom number
  5. generator.
  6. Before using, initialize the state by using init_genrand64(seed)
  7. or init_by_array64(init_key, key_length).
  8. Copyright (C) 2004, Makoto Matsumoto and Takuji Nishimura,
  9. All rights reserved.
  10. Redistribution and use in source and binary forms, with or without
  11. modification, are permitted provided that the following conditions
  12. are met:
  13. 1. Redistributions of source code must retain the above copyright
  14. notice, this list of conditions and the following disclaimer.
  15. 2. Redistributions in binary form must reproduce the above copyright
  16. notice, this list of conditions and the following disclaimer in the
  17. documentation and/or other materials provided with the distribution.
  18. 3. The names of its contributors may not be used to endorse or promote
  19. products derived from this software without specific prior written
  20. permission.
  21. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  22. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  23. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  24. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  25. CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  26. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  27. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  28. PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  29. LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  30. NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  31. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  32. References:
  33. T. Nishimura, ``Tables of 64-bit Mersenne Twisters''
  34. ACM Transactions on Modeling and
  35. Computer Simulation 10. (2000) 348--357.
  36. M. Matsumoto and T. Nishimura,
  37. ``Mersenne Twister: a 623-dimensionally equidistributed
  38. uniform pseudorandom number generator''
  39. ACM Transactions on Modeling and
  40. Computer Simulation 8. (Jan. 1998) 3--30.
  41. Any feedback is very welcome.
  42. http://www.math.hiroshima-u.ac.jp/~m-mat/MT/emt.html
  43. email: m-mat @ math.sci.hiroshima-u.ac.jp (remove spaces)
  44. */
  45. /* initializes mt[NN] with a seed */
  46. void init_genrand64(unsigned long long seed);
  47. /* initialize by an array with array-length */
  48. /* init_key is the array for initializing keys */
  49. /* key_length is its length */
  50. void init_by_array64(unsigned long long init_key[],
  51. unsigned long long key_length);
  52. /* generates a random number on [0, 2^64-1]-interval */
  53. unsigned long long genrand64_int64(void);
  54. /* generates a random number on [0, 2^63-1]-interval */
  55. long long genrand64_int63(void);
  56. /* generates a random number on [0,1]-real-interval */
  57. double genrand64_real1(void);
  58. /* generates a random number on [0,1)-real-interval */
  59. double genrand64_real2(void);
  60. /* generates a random number on (0,1)-real-interval */
  61. double genrand64_real3(void);