* Added new module wpylib.math.random and its submodule (rng_lcg48).
The LCG48 generator is primarily for testing algorithms involving random numbers.
This commit is contained in:
13
math/random/__init__.py
Normal file
13
math/random/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
#
|
||||
# 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
|
||||
Reference in New Issue
Block a user