Blame rng/rand.c

Packit 67cb25
/* rng/rand.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_rng.h>
Packit 67cb25
Packit 67cb25
/* This is the old BSD rand() generator. The sequence is
Packit 67cb25
Packit 67cb25
   x_{n+1} = (a x_n + c) mod m 
Packit 67cb25
Packit 67cb25
   with a = 1103515245, c = 12345 and m = 2^31 = 2147483648. The seed
Packit 67cb25
   specifies the initial value, x_1.
Packit 67cb25
Packit 67cb25
   The theoretical value of x_{10001} is 1910041713.
Packit 67cb25
Packit 67cb25
   The period of this generator is 2^31.
Packit 67cb25
Packit 67cb25
   The rand() generator is not very good -- the low bits of successive
Packit 67cb25
   numbers are correlated. */
Packit 67cb25
Packit 67cb25
static inline unsigned long int rand_get (void *vstate);
Packit 67cb25
static double rand_get_double (void *vstate);
Packit 67cb25
static void rand_set (void *state, unsigned long int s);
Packit 67cb25
Packit 67cb25
typedef struct
Packit 67cb25
  {
Packit 67cb25
    unsigned long int x;
Packit 67cb25
  }
Packit 67cb25
rand_state_t;
Packit 67cb25
Packit 67cb25
static inline unsigned long int
Packit 67cb25
rand_get (void *vstate)
Packit 67cb25
{
Packit 67cb25
  rand_state_t *state = (rand_state_t *) vstate;
Packit 67cb25
Packit 67cb25
  /* The following line relies on unsigned 32-bit arithmetic */
Packit 67cb25
Packit 67cb25
  state->x = (1103515245 * state->x + 12345) & 0x7fffffffUL;
Packit 67cb25
Packit 67cb25
  return state->x;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static double
Packit 67cb25
rand_get_double (void *vstate)
Packit 67cb25
{
Packit 67cb25
  return rand_get (vstate) / 2147483648.0 ;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static void
Packit 67cb25
rand_set (void *vstate, unsigned long int s)
Packit 67cb25
{
Packit 67cb25
  rand_state_t *state = (rand_state_t *) vstate;
Packit 67cb25
Packit 67cb25
  state->x = s;
Packit 67cb25
Packit 67cb25
  return;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static const gsl_rng_type rand_type =
Packit 67cb25
{"rand",                        /* name */
Packit 67cb25
 0x7fffffffUL,                  /* RAND_MAX */
Packit 67cb25
 0,                             /* RAND_MIN */
Packit 67cb25
 sizeof (rand_state_t),
Packit 67cb25
 &rand_set,
Packit 67cb25
 &rand_get,
Packit 67cb25
 &rand_get_double};
Packit 67cb25
Packit 67cb25
const gsl_rng_type *gsl_rng_rand = &rand_type;