summaryrefslogtreecommitdiff
path: root/doc/source/reference/random/legacy.rst
Commit message (Collapse)AuthorAgeFilesLines
* DOC: Fix for buildling with sphinx 3takanori-pskq2020-11-061-1/+2
|
* DOC: Fix the link to the quick-start in the old API functionsSebastian Berg2020-09-031-1/+1
|
* Fix typos, via a Levenshtein-style correctorBrian Wignall2019-12-191-1/+1
|
* DOC: fixes from reviewmattip2019-11-211-4/+12
|
* DOC, API: add numpy.random.__index__.pxd and document numpy.random.* funcsmattip2019-11-211-0/+60
|
* DOC: fix doc linking, was referencing private submodules.Ralf Gommers2019-08-251-10/+8
| | | | Closes gh-14359
* DOC: clean up examples.Robert Kern2019-06-271-8/+9
|
* DOC: np.random documentation cleanup and expansion.Robert Kern2019-06-271-14/+10
|
* Revert "MAINT: Implement API changes for randomgen-derived code"Kevin Sheppard2019-05-271-2/+2
| | | | This reverts commit 17e0070df93f4262908f884dca4b08cb7d0bba7f.
* MAINT: Implement API changes for randomgen-derived codemattip2019-05-201-10/+11
| | | | | | | | | | | | | | | | | | | | | 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
* DOC: tighten up documentation, add a table of comparisonmattip2019-05-201-3/+6
|
* MAINT: remove legacy, refactor legacy -> mtrand in docsmattip2019-05-201-45/+59
|
* BUG: __dealloc__ can be called without __init__ in some error modesmattip2019-05-201-0/+110
skip doctests that require scipy move original mtrand module to _mtrand adjust documentation for namespace change