Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG/ENH: ALlow bit generators to supply their own ctor | Kevin Sheppard | 2022-07-19 | 1 | -26/+23 |
| | | | | | | | Allow bit generators to supply their own constructors to enable Generator objects using arbitrary bit generators to be supported closes #22012 | ||||
* | Add space after argument name | Oscar Gustafsson | 2022-04-03 | 1 | -3/+3 |
| | |||||
* | ENH: Add PCG64DXSM implementation. | Robert Kern | 2021-05-04 | 1 | -1/+2 |
| | |||||
* | DOC: Nupydoc format space before `:` in Parameters | Matthias Bussonnier | 2021-01-31 | 1 | -3/+3 |
| | | | | Missing `s` in two spellings. | ||||
* | API: move bit_generator and generator to be private | mattip | 2019-10-11 | 1 | -1/+1 |
| | |||||
* | API: make BitGenerators private | mattip | 2019-10-11 | 1 | -4/+4 |
| | |||||
* | Fixed default BitGenerator name | Giuseppe Cuccu | 2019-08-06 | 1 | -3/+3 |
| | |||||
* | ENH: Add SFC64 BitGenerator. | Robert Kern | 2019-06-25 | 1 | -0/+2 |
| | |||||
* | MAINT: remove xoshiro* BitGenerators | mattip | 2019-06-26 | 1 | -4/+0 |
| | |||||
* | MAINT: remove ThreeFry BitGenerator | mattip | 2019-06-25 | 1 | -2/+0 |
| | |||||
* | MAINT: remove pcg32 BitGenerator | mattip | 2019-06-25 | 1 | -2/+0 |
| | |||||
* | MAINT: remove dSFMT | mattip | 2019-06-16 | 1 | -2/+0 |
| | |||||
* | STY: Clean up code | Kevin Sheppard | 2019-05-27 | 1 | -3/+7 |
| | | | | | | Pep8 fixes Remove unused imports Fix name error | ||||
* | Revert "MAINT: Implement API changes for randomgen-derived code" | Kevin Sheppard | 2019-05-27 | 1 | -6/+10 |
| | | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f. | ||||
* | MAINT: remove threefry32, xoroshiro128, xorshift1024 BitGenerators | mattip | 2019-05-20 | 1 | -6/+0 |
| | |||||
* | MAINT: Implement API changes for randomgen-derived code | mattip | 2019-05-20 | 1 | -53/+38 |
| | | | | | | | | | | | | | | | | | | | | | 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 | ||||
* | BENCH: convert bencmarks to asv format | mattip | 2019-05-20 | 1 | -0/+103 |
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 |