summaryrefslogtreecommitdiff
path: root/numpy/random/tests
Commit message (Expand)AuthorAgeFilesLines
* BUG: random: Create a legacy implementation of random.binomial.Warren Weckesser2019-09-161-1/+17
* Merge pull request #13829 from kianasun/add-permutation-axisMatti Picus2019-09-161-0/+45
|\
| * ENH: Improve permutation and shuffle functions on a given axisKexuan Sun2019-09-141-0/+45
* | Merge pull request #14498 from mattip/random-namespaceRalf Gommers2019-09-151-21/+1
|\ \
| * | MAINT: remove the entropy c-extension modulemattip2019-09-131-21/+1
| |/
* | BUG: Fix randint when range is 2**32Kevin Sheppard2019-09-141-0/+11
|/
* BUG: Fix segfault in `random.permutation(x)` when x is a string. (#14241)Maxwell Aladago2019-08-222-0/+28
* test shuffle keywordGuillaume Horel2019-07-111-0/+3
* fix testsGuillaume Horel2019-07-111-2/+2
* fix testsGuillaume Horel2019-07-111-1/+1
* fix testsGuillaume Horel2019-07-111-2/+2
* ENH: Rename tests for default_rngRobert Kern2019-06-292-2/+2
* ENH: Rename default_gen to default_rngRobert Kern2019-06-292-13/+13
* BUG: Ensure consistent interpretation of uint64 states. (#13861)Robert Kern2019-06-281-1/+15
* ENH: np.random.default_gen() (#13840)Robert Kern2019-06-282-1/+61
* ENH: Add SFC64 BitGenerator.Robert Kern2019-06-254-3/+2032
* BUG: Fix missing SeedSequence import.Charles Harris2019-06-251-1/+3
* MAINT: Fix bad merge.Charles Harris2019-06-251-6/+0
* MAINT: remove leftover files, fix docsmattip2019-06-262-2002/+0
* ENH: use SeedSequence to generate entropy for seedingmattip2019-06-2612-6679/+6547
* MAINT: remove xoshiro* BitGeneratorsmattip2019-06-267-4069/+7
* MAINT: remove ThreeFry BitGeneratormattip2019-06-254-2039/+2
* MAINT: remove pcg32 BitGeneratormattip2019-06-252-29/+2
* MAINT: remove dSFMTmattip2019-06-164-2097/+2
* MAINT: random: Rewrite the hypergeometric distribution.Warren Weckesser2019-06-142-13/+11
* BUG: Make ``Generator._masked`` flag default to ``False``. (#13774)Bernardt Duvenhage2019-06-131-27/+26
* MAINT: Update PCG jump sizesKevin Sheppard2019-06-061-0/+14
* BUG: Fix random.choice when probability is not C contiguous (#13716)jeremiedbb2019-06-062-0/+58
* BUG: Ensure Windows choice returns int32Kevin Sheppard2019-06-021-0/+11
* MAINT: Misc. typo fixes (#13664)luzpaz2019-05-311-1/+1
* BUG: Fix RandomState argument nameKevin Sheppard2019-05-291-0/+6
* BUG/MAINT: Disallow non-native byteorder in random intsKevin Sheppard2019-05-282-0/+13
* Merge pull request #13163 from mattip/randomgenSebastian Berg2019-05-2825-12/+21793
|\
| * MAINT: fix for dtype specificationmattip2019-05-282-4/+4
| * STY: Clean up codeKevin Sheppard2019-05-275-67/+89
| * Revert "MAINT: Implement API changes for randomgen-derived code"Kevin Sheppard2019-05-276-2/+4106
| * MAINT: Remove remnants of bit generatorsKevin Sheppard2019-05-277-6007/+1
| * BUG: Change renamed attributeKevin Sheppard2019-05-231-1/+1
| * MAINT: Remove test_against_numpyKevin Sheppard2019-05-231-557/+0
| * ENH: Split poisson_lam_maxKevin Sheppard2019-05-233-3/+4
| * MAINT: remove tomaxint, random_sample from generatormattip2019-05-233-28/+0
| * BUG: test, fix missing return to deprecated functionmattip2019-05-231-1/+8
| * MAINT: remove threefry32, xoroshiro128, xorshift1024 BitGeneratorsmattip2019-05-202-96/+6
| * BUG: Ensure integer-type stream on 32bitKevin Sheppard2019-05-202-6/+65
| * MAINT: Implement API changes for randomgen-derived codemattip2019-05-2015-4839/+619
| * ENH: Add closed generator to randintKevin Sheppard2019-05-202-74/+117
| * BUG: Cast high to Python int to avoid overflowKevin Sheppard2019-05-201-0/+8
| * ENH: Add fast path for randint broadcastingKevin Sheppard2019-05-202-1/+31
| * ENH: Finish hypergeometric 0Kevin Sheppard2019-05-201-2/+2
| * ENH: Improvce choice without replacementKevin Sheppard2019-05-202-5/+28