Releases: bashtage/randomgen
Releases · bashtage/randomgen
Release 1.14.2
This point release contains minor improvements
- Support for generating randoms using a legacy scheme that can fully mimic NumPY
- Remove access to global random generator state
- Small performance fixes
Release 1.14.1
This point release has minor improvements:
- Improved performance of 0 parameter distributions
- Build wheels for travis using multibuild
Release 1.14
I am pleased to announce the first official release of randomgen. The version number reflects the NumPy compatibility target.
- Release based on
RandomState
in NumPy 1.14. - Successor to
randomstate
using a new architecture. - Similar structure to
RandomState
usingRandomGenerator
- Pluggable basic RNG
- Low-level interface via CFFI or CTypes
- Passes all tests still relevant for
RandomState
usingMT19937
Release 0.3
- Release to trigger doc build
Release 0.2
Re-release of 0.1 to allow docs to correctly build.
Release 0.1
Initial release with new structure:
- RandomGenerator with all of the complex generators
- Basic RNGs (MT19937, PCG64, ...) containing the core random generators
- Interfaces for CFFI and CTypes
- Documentation
- Examples showing how to extend