Files
wpylib/math/random/__init__.py
Wirawan Purwanto 42fdcc5253 * Added new module wpylib.math.random and its submodule (rng_lcg48).
The LCG48 generator is primarily for testing algorithms involving random
  numbers.
2013-08-14 15:29:26 -04:00

14 lines
224 B
Python

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