Blame rng/ran0.c

Packit 67cb25
/* rng/ran0.c
Packit 67cb25
 * 
Packit 67cb25
 * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough
Packit 67cb25
 * 
Packit 67cb25
 * This program is free software; you can redistribute it and/or modify
Packit 67cb25
 * it under the terms of the GNU General Public License as published by
Packit 67cb25
 * the Free Software Foundation; either version 3 of the License, or (at
Packit 67cb25
 * your option) any later version.
Packit 67cb25
 * 
Packit 67cb25
 * This program is distributed in the hope that it will be useful, but
Packit 67cb25
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 67cb25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 67cb25
 * General Public License for more details.
Packit 67cb25
 * 
Packit 67cb25
 * You should have received a copy of the GNU General Public License
Packit 67cb25
 * along with this program; if not, write to the Free Software
Packit 67cb25
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Packit 67cb25
 */
Packit 67cb25
Packit 67cb25
#include <config.h>
Packit 67cb25
#include <stdlib.h>
Packit 67cb25
#include <gsl/gsl_errno.h>
Packit 67cb25
#include <gsl/gsl_rng.h>
Packit 67cb25
Packit 67cb25
/* This is an implementation of the algorithm used in Numerical
Packit 67cb25
   Recipe's ran0 generator. It is the same as MINSTD with an XOR mask
Packit 67cb25
   of 123459876 on the seed.
Packit 67cb25
Packit 67cb25
   The period of this generator is 2^31.  
Packit 67cb25
Packit 67cb25
   Note, if you choose a seed of 123459876 it would give a degenerate
Packit 67cb25
   series 0,0,0,0, ...  I've made that into an error. */
Packit 67cb25
Packit 67cb25
static inline unsigned long int ran0_get (void *vstate);
Packit 67cb25
static double ran0_get_double (void *vstate);
Packit 67cb25
static void ran0_set (void *state, unsigned long int s);
Packit 67cb25
Packit 67cb25
static const long int m = 2147483647, a = 16807, q = 127773, r = 2836;
Packit 67cb25
static const unsigned long int mask = 123459876;
Packit 67cb25
Packit 67cb25
typedef struct
Packit 67cb25
  {
Packit 67cb25
    unsigned long int x;
Packit 67cb25
  }
Packit 67cb25
ran0_state_t;
Packit 67cb25
Packit 67cb25
static inline unsigned long int
Packit 67cb25
ran0_get (void *vstate)
Packit 67cb25
{
Packit 67cb25
  ran0_state_t *state = (ran0_state_t *) vstate;
Packit 67cb25
Packit 67cb25
  const unsigned long int x = state->x;
Packit 67cb25
Packit 67cb25
  const long int h = x / q;
Packit 67cb25
  const long int t = a * (x - h * q) - h * r;
Packit 67cb25
Packit 67cb25
  if (t < 0)
Packit 67cb25
    {
Packit 67cb25
      state->x = t + m;
Packit 67cb25
    }
Packit 67cb25
  else
Packit 67cb25
    {
Packit 67cb25
      state->x = t;
Packit 67cb25
    }
Packit 67cb25
Packit 67cb25
  return state->x;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static double
Packit 67cb25
ran0_get_double (void *vstate)
Packit 67cb25
{
Packit 67cb25
  return ran0_get (vstate) / 2147483647.0 ;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static void
Packit 67cb25
ran0_set (void *vstate, unsigned long int s)
Packit 67cb25
{
Packit 67cb25
  ran0_state_t *state = (ran0_state_t *) vstate;
Packit 67cb25
Packit 67cb25
  if (s == mask)
Packit 67cb25
    {
Packit 67cb25
      GSL_ERROR_VOID ("ran0 should not use seed == mask", 
Packit 67cb25
                                GSL_EINVAL);
Packit 67cb25
    }
Packit 67cb25
Packit 67cb25
  state->x = s ^ mask;
Packit 67cb25
Packit 67cb25
  return;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static const gsl_rng_type ran0_type =
Packit 67cb25
{"ran0",                        /* name */
Packit 67cb25
 2147483646,                    /* RAND_MAX */
Packit 67cb25
 1,                             /* RAND_MIN */
Packit 67cb25
 sizeof (ran0_state_t),
Packit 67cb25
 &ran0_set,
Packit 67cb25
 &ran0_get,
Packit 67cb25
 &ran0_get_double};
Packit 67cb25
Packit 67cb25
const gsl_rng_type *gsl_rng_ran0 = &ran0_type;