Blame rng/vax.c

Packit 67cb25
/* rng/vax.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 vax generator MTH$RANDOM. The sequence is,
Packit 67cb25
Packit 67cb25
   x_{n+1} = (a x_n + c) mod m
Packit 67cb25
Packit 67cb25
   with a = 69069, c = 1 and m = 2^32. The seed specifies the initial
Packit 67cb25
   value, x_1.
Packit 67cb25
Packit 67cb25
   The theoretical value of x_{10001} is 3051034865.
Packit 67cb25
Packit 67cb25
   The period of this generator is 2^32. */
Packit 67cb25
Packit 67cb25
static inline unsigned long int vax_get (void *vstate);
Packit 67cb25
static double vax_get_double (void *vstate);
Packit 67cb25
static void vax_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
vax_state_t;
Packit 67cb25
Packit 67cb25
static inline unsigned long int
Packit 67cb25
vax_get (void *vstate)
Packit 67cb25
{
Packit 67cb25
  vax_state_t *state = (vax_state_t *) vstate;
Packit 67cb25
Packit 67cb25
  state->x = (69069 * state->x + 1) & 0xffffffffUL;
Packit 67cb25
Packit 67cb25
  return state->x;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static double
Packit 67cb25
vax_get_double (void *vstate)
Packit 67cb25
{
Packit 67cb25
  return vax_get (vstate) / 4294967296.0 ;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static void
Packit 67cb25
vax_set (void *vstate, unsigned long int s)
Packit 67cb25
{
Packit 67cb25
  vax_state_t *state = (vax_state_t *) vstate;
Packit 67cb25
Packit 67cb25
  /* default seed is 0. The constant term c stops the series from
Packit 67cb25
     collapsing to 0,0,0,0,0,... */
Packit 67cb25
Packit 67cb25
  state->x = s;
Packit 67cb25
Packit 67cb25
  return;
Packit 67cb25
}
Packit 67cb25
Packit 67cb25
static const gsl_rng_type vax_type =
Packit 67cb25
{"vax",                         /* name */
Packit 67cb25
 0xffffffffUL,                  /* RAND_MAX */
Packit 67cb25
 0,                             /* RAND_MIN */
Packit 67cb25
 sizeof (vax_state_t),
Packit 67cb25
 &vax_set,
Packit 67cb25
 &vax_get,
Packit 67cb25
 &vax_get_double};
Packit 67cb25
Packit 67cb25
const gsl_rng_type *gsl_rng_vax = &vax_type;