gsl_rng__fishman20.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /* rng/fishman20.c
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation; either version 3 of the License, or (at
  6. * your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  16. */
  17. /*
  18. * This generator is taken from
  19. *
  20. * Donald E. Knuth
  21. * The Art of Computer Programming
  22. * Volume 2
  23. * Third Edition
  24. * Addison-Wesley
  25. * Page 108
  26. *
  27. * It is called "Fishman"
  28. *
  29. * This implementation copyright (C) 2001 Carlo Perassi
  30. * and (C) 2003 Heiko Bauke.
  31. */
  32. #include "gsl__config.h"
  33. #include <stdlib.h>
  34. #include "gsl_rng.h"
  35. static inline unsigned long int ran_get (void *vstate);
  36. static double ran_get_double (void *vstate);
  37. static void ran_set (void *state, unsigned long int s);
  38. static const long int m = 2147483647, a = 48271, q = 44488, r = 3399;
  39. typedef struct
  40. {
  41. unsigned long int x;
  42. }
  43. ran_state_t;
  44. static inline unsigned long int
  45. ran_get (void *vstate)
  46. {
  47. ran_state_t *state = (ran_state_t *) vstate;
  48. const unsigned long int x = state->x;
  49. const long int h = x / q;
  50. const long int t = a * (x - h * q) - h * r;
  51. if (t < 0)
  52. {
  53. state->x = t + m;
  54. }
  55. else
  56. {
  57. state->x = t;
  58. }
  59. return state->x;
  60. }
  61. static double
  62. ran_get_double (void *vstate)
  63. {
  64. ran_state_t *state = (ran_state_t *) vstate;
  65. return ran_get (state) / 2147483647.0;
  66. }
  67. static void
  68. ran_set (void *vstate, unsigned long int s)
  69. {
  70. ran_state_t *state = (ran_state_t *) vstate;
  71. if ((s%m) == 0)
  72. s = 1; /* default seed is 1 */
  73. state->x = s & m;
  74. return;
  75. }
  76. static const gsl_rng_type ran_type = {
  77. "fishman20", /* name */
  78. 2147483646, /* RAND_MAX */
  79. 1, /* RAND_MIN */
  80. sizeof (ran_state_t),
  81. &ran_set,
  82. &ran_get,
  83. &ran_get_double
  84. };
  85. const gsl_rng_type *gsl_rng_fishman20 = &ran_type;