//
// Implementation of a random number generator that draws from a
// gaussian distribution.  The underlying (uniform deviate)
// pseudorandom number generator is the Park and Miller "Minimum
// standard" generator with Bayes-Durham shuffle
//
// Copyright (c) 2001 Wesley H. Huang.  All rights reserved.
//
#ifndef _RAND_H_
#define _RAND_H_

float gaussian(float mean, float stdev);
void myRandSeed(long s);


#endif
