Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | MAINT: remove ThreeFry BitGenerator | mattip | 2019-06-25 | 1 | -466/+0 |
| | |||||
* | MAINT: Change keyword from reserved word | Kevin Sheppard | 2019-06-07 | 1 | -4/+4 |
| | | | | | | Switch from iter to jumps Clean docstrings for consistency Remove unnecessary jump step wrapping | ||||
* | MAINT: Update PCG jump sizes | Kevin Sheppard | 2019-06-06 | 1 | -3/+5 |
| | | | | | Update pcg jump sizes Wrap advance when too large | ||||
* | MAINT: Remove remnants of bit generators | Kevin Sheppard | 2019-05-27 | 1 | -1/+1 |
| | | | | | Remove traces of the three removed bit generators Add lock to Cython examples | ||||
* | DOC: Add __all__ and document lock | Kevin Sheppard | 2019-05-27 | 1 | -0/+10 |
| | | | | | Add docstring for lock Use __all__ to discuorage unless attributes from appearing | ||||
* | MAINT: Implement API changes for randomgen-derived code | mattip | 2019-05-20 | 1 | -122/+101 |
| | | | | | | | | | | | | | | | | | | | | | remove numpy.random.gen, BRNG.generator, pcg*, rand, randn remove use_mask and Lemire's method, fix benchmarks for PCG removal convert brng to bitgen (in C) and bit_generator (in python) convert base R{NG,andom.*} to BitGenerator, fix last commit randint -> integers, remove rand, randn, random_integers RandomGenerator -> Generator, more "basic RNG" -> BitGenerator random_sample -> random, jump -> jumped, resync with randomgen Remove derived code from entropy Port over changes accepted in upstream to protect log(0.0) where relevant fix doctests for jumped, better document choice Remove Python 2.7 shims Use NPY_INLINE to simplify Fix performance.py to work Renam directory brng to bit_generators Fix examples wiht new directory structure Clarify relationship to historical RandomState Remove references to .generator Rename xoshiro256/512starstar | ||||
* | BUG: __dealloc__ can be called without __init__ in some error modes | mattip | 2019-05-20 | 1 | -9/+13 |
| | | | | | | skip doctests that require scipy move original mtrand module to _mtrand adjust documentation for namespace change | ||||
* | BENCH: convert bencmarks to asv format | mattip | 2019-05-20 | 1 | -0/+471 |
remove files that were part of the origal repo rework randomgen docs to integrate with numpy and fix some links remove convenience functions, require explicit call to gen.brng move code out of numpy.random.randomgen into numpy.random |