Skip to content

Releases: bashtage/randomgen

Release 1.14.2

27 Mar 10:07
Compare
Choose a tag to compare

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

18 Mar 09:19
Compare
Choose a tag to compare

This point release has minor improvements:

  • Improved performance of 0 parameter distributions
  • Build wheels for travis using multibuild

Release 1.14

15 Mar 14:19
Compare
Choose a tag to compare

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 using RandomGenerator
  • Pluggable basic RNG
  • Low-level interface via CFFI or CTypes
  • Passes all tests still relevant for RandomState using MT19937

Release 0.3

15 Mar 11:03
Compare
Choose a tag to compare
  • Release to trigger doc build

Release 0.2

14 Mar 22:29
Compare
Choose a tag to compare

Re-release of 0.1 to allow docs to correctly build.

Release 0.1

14 Mar 19:49
Compare
Choose a tag to compare

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