Files
wpylib/math/random/__init__.py
Wirawan Purwanto e37110b08b * Added more support for legacy 'rannyi' RNG from our Fortran codes,
including one from normal gaussian PDF.
2015-05-21 11:30:19 -04:00

14 lines
225 B
Python

#
# wpylib.math.random module
# Created: 20130814
# Wirawan Purwanto
#
import numpy
class rng_base(object):
"""Base class for random number generator."""
# Standard classes
from wpylib.math.random.rng_lcg48 import lcg48