gsl_rng__waterman14.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* rng/waterman14.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 106-108
  26. *
  27. * It is called "Waterman".
  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. #define AA 1566083941UL
  36. #define MM 0xffffffffUL /* 2 ^ 32 - 1 */
  37. static inline unsigned long int ran_get (void *vstate);
  38. static double ran_get_double (void *vstate);
  39. static void ran_set (void *state, unsigned long int s);
  40. typedef struct
  41. {
  42. unsigned long int x;
  43. }
  44. ran_state_t;
  45. static inline unsigned long int
  46. ran_get (void *vstate)
  47. {
  48. ran_state_t *state = (ran_state_t *) vstate;
  49. state->x = (AA * state->x) & MM;
  50. return state->x;
  51. }
  52. static double
  53. ran_get_double (void *vstate)
  54. {
  55. ran_state_t *state = (ran_state_t *) vstate;
  56. return ran_get (state) / 4294967296.0;
  57. }
  58. static void
  59. ran_set (void *vstate, unsigned long int s)
  60. {
  61. ran_state_t *state = (ran_state_t *) vstate;
  62. if (s == 0)
  63. s = 1; /* default seed is 1 */
  64. state->x = s & MM;
  65. return;
  66. }
  67. static const gsl_rng_type ran_type = {
  68. "waterman14", /* name */
  69. MM, /* RAND_MAX */
  70. 1, /* RAND_MIN */
  71. sizeof (ran_state_t),
  72. &ran_set,
  73. &ran_get,
  74. &ran_get_double
  75. };
  76. const gsl_rng_type *gsl_rng_waterman14 = &ran_type;