numpy 2.4.1__cp314-cp314t-win_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (932) hide show
  1. numpy/__config__.py +170 -0
  2. numpy/__config__.pyi +108 -0
  3. numpy/__init__.cython-30.pxd +1242 -0
  4. numpy/__init__.pxd +1155 -0
  5. numpy/__init__.py +955 -0
  6. numpy/__init__.pyi +6202 -0
  7. numpy/_array_api_info.py +346 -0
  8. numpy/_array_api_info.pyi +206 -0
  9. numpy/_configtool.py +39 -0
  10. numpy/_configtool.pyi +1 -0
  11. numpy/_core/__init__.py +201 -0
  12. numpy/_core/__init__.pyi +666 -0
  13. numpy/_core/_add_newdocs.py +7151 -0
  14. numpy/_core/_add_newdocs.pyi +2 -0
  15. numpy/_core/_add_newdocs_scalars.py +381 -0
  16. numpy/_core/_add_newdocs_scalars.pyi +16 -0
  17. numpy/_core/_asarray.py +130 -0
  18. numpy/_core/_asarray.pyi +43 -0
  19. numpy/_core/_dtype.py +366 -0
  20. numpy/_core/_dtype.pyi +56 -0
  21. numpy/_core/_dtype_ctypes.py +120 -0
  22. numpy/_core/_dtype_ctypes.pyi +83 -0
  23. numpy/_core/_exceptions.py +162 -0
  24. numpy/_core/_exceptions.pyi +54 -0
  25. numpy/_core/_internal.py +968 -0
  26. numpy/_core/_internal.pyi +61 -0
  27. numpy/_core/_methods.py +252 -0
  28. numpy/_core/_methods.pyi +22 -0
  29. numpy/_core/_multiarray_tests.cp314t-win_arm64.lib +0 -0
  30. numpy/_core/_multiarray_tests.cp314t-win_arm64.pyd +0 -0
  31. numpy/_core/_multiarray_umath.cp314t-win_arm64.lib +0 -0
  32. numpy/_core/_multiarray_umath.cp314t-win_arm64.pyd +0 -0
  33. numpy/_core/_operand_flag_tests.cp314t-win_arm64.lib +0 -0
  34. numpy/_core/_operand_flag_tests.cp314t-win_arm64.pyd +0 -0
  35. numpy/_core/_rational_tests.cp314t-win_arm64.lib +0 -0
  36. numpy/_core/_rational_tests.cp314t-win_arm64.pyd +0 -0
  37. numpy/_core/_simd.cp314t-win_arm64.lib +0 -0
  38. numpy/_core/_simd.cp314t-win_arm64.pyd +0 -0
  39. numpy/_core/_simd.pyi +35 -0
  40. numpy/_core/_string_helpers.py +100 -0
  41. numpy/_core/_string_helpers.pyi +12 -0
  42. numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.lib +0 -0
  43. numpy/_core/_struct_ufunc_tests.cp314t-win_arm64.pyd +0 -0
  44. numpy/_core/_type_aliases.py +131 -0
  45. numpy/_core/_type_aliases.pyi +86 -0
  46. numpy/_core/_ufunc_config.py +515 -0
  47. numpy/_core/_ufunc_config.pyi +69 -0
  48. numpy/_core/_umath_tests.cp314t-win_arm64.lib +0 -0
  49. numpy/_core/_umath_tests.cp314t-win_arm64.pyd +0 -0
  50. numpy/_core/_umath_tests.pyi +47 -0
  51. numpy/_core/arrayprint.py +1779 -0
  52. numpy/_core/arrayprint.pyi +158 -0
  53. numpy/_core/cversions.py +13 -0
  54. numpy/_core/defchararray.py +1414 -0
  55. numpy/_core/defchararray.pyi +1150 -0
  56. numpy/_core/einsumfunc.py +1650 -0
  57. numpy/_core/einsumfunc.pyi +184 -0
  58. numpy/_core/fromnumeric.py +4233 -0
  59. numpy/_core/fromnumeric.pyi +1735 -0
  60. numpy/_core/function_base.py +547 -0
  61. numpy/_core/function_base.pyi +276 -0
  62. numpy/_core/getlimits.py +462 -0
  63. numpy/_core/getlimits.pyi +124 -0
  64. numpy/_core/include/numpy/__multiarray_api.c +376 -0
  65. numpy/_core/include/numpy/__multiarray_api.h +1628 -0
  66. numpy/_core/include/numpy/__ufunc_api.c +55 -0
  67. numpy/_core/include/numpy/__ufunc_api.h +349 -0
  68. numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
  69. numpy/_core/include/numpy/_numpyconfig.h +33 -0
  70. numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
  71. numpy/_core/include/numpy/arrayobject.h +7 -0
  72. numpy/_core/include/numpy/arrayscalars.h +198 -0
  73. numpy/_core/include/numpy/dtype_api.h +547 -0
  74. numpy/_core/include/numpy/halffloat.h +70 -0
  75. numpy/_core/include/numpy/ndarrayobject.h +304 -0
  76. numpy/_core/include/numpy/ndarraytypes.h +1982 -0
  77. numpy/_core/include/numpy/npy_2_compat.h +249 -0
  78. numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
  79. numpy/_core/include/numpy/npy_3kcompat.h +374 -0
  80. numpy/_core/include/numpy/npy_common.h +989 -0
  81. numpy/_core/include/numpy/npy_cpu.h +126 -0
  82. numpy/_core/include/numpy/npy_endian.h +79 -0
  83. numpy/_core/include/numpy/npy_math.h +602 -0
  84. numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
  85. numpy/_core/include/numpy/npy_os.h +42 -0
  86. numpy/_core/include/numpy/numpyconfig.h +185 -0
  87. numpy/_core/include/numpy/random/LICENSE.txt +21 -0
  88. numpy/_core/include/numpy/random/bitgen.h +20 -0
  89. numpy/_core/include/numpy/random/distributions.h +209 -0
  90. numpy/_core/include/numpy/random/libdivide.h +2079 -0
  91. numpy/_core/include/numpy/ufuncobject.h +343 -0
  92. numpy/_core/include/numpy/utils.h +37 -0
  93. numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
  94. numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
  95. numpy/_core/lib/npymath.lib +0 -0
  96. numpy/_core/lib/pkgconfig/numpy.pc +7 -0
  97. numpy/_core/memmap.py +363 -0
  98. numpy/_core/memmap.pyi +3 -0
  99. numpy/_core/multiarray.py +1740 -0
  100. numpy/_core/multiarray.pyi +1316 -0
  101. numpy/_core/numeric.py +2758 -0
  102. numpy/_core/numeric.pyi +1276 -0
  103. numpy/_core/numerictypes.py +633 -0
  104. numpy/_core/numerictypes.pyi +196 -0
  105. numpy/_core/overrides.py +188 -0
  106. numpy/_core/overrides.pyi +47 -0
  107. numpy/_core/printoptions.py +32 -0
  108. numpy/_core/printoptions.pyi +28 -0
  109. numpy/_core/records.py +1088 -0
  110. numpy/_core/records.pyi +340 -0
  111. numpy/_core/shape_base.py +996 -0
  112. numpy/_core/shape_base.pyi +182 -0
  113. numpy/_core/strings.py +1813 -0
  114. numpy/_core/strings.pyi +536 -0
  115. numpy/_core/tests/_locales.py +72 -0
  116. numpy/_core/tests/_natype.py +144 -0
  117. numpy/_core/tests/data/astype_copy.pkl +0 -0
  118. numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
  119. numpy/_core/tests/data/recarray_from_file.fits +0 -0
  120. numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
  121. numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
  122. numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
  123. numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
  124. numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
  125. numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
  126. numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
  127. numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
  128. numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
  129. numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
  130. numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
  131. numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
  132. numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
  133. numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
  134. numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
  135. numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
  136. numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
  137. numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
  138. numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
  139. numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
  140. numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
  141. numpy/_core/tests/examples/cython/checks.pyx +373 -0
  142. numpy/_core/tests/examples/cython/meson.build +43 -0
  143. numpy/_core/tests/examples/cython/setup.py +39 -0
  144. numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
  145. numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
  146. numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
  147. numpy/_core/tests/examples/limited_api/meson.build +59 -0
  148. numpy/_core/tests/examples/limited_api/setup.py +24 -0
  149. numpy/_core/tests/test__exceptions.py +90 -0
  150. numpy/_core/tests/test_abc.py +54 -0
  151. numpy/_core/tests/test_api.py +655 -0
  152. numpy/_core/tests/test_argparse.py +90 -0
  153. numpy/_core/tests/test_array_api_info.py +113 -0
  154. numpy/_core/tests/test_array_coercion.py +928 -0
  155. numpy/_core/tests/test_array_interface.py +222 -0
  156. numpy/_core/tests/test_arraymethod.py +84 -0
  157. numpy/_core/tests/test_arrayobject.py +75 -0
  158. numpy/_core/tests/test_arrayprint.py +1324 -0
  159. numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
  160. numpy/_core/tests/test_casting_unittests.py +955 -0
  161. numpy/_core/tests/test_conversion_utils.py +209 -0
  162. numpy/_core/tests/test_cpu_dispatcher.py +48 -0
  163. numpy/_core/tests/test_cpu_features.py +450 -0
  164. numpy/_core/tests/test_custom_dtypes.py +393 -0
  165. numpy/_core/tests/test_cython.py +352 -0
  166. numpy/_core/tests/test_datetime.py +2792 -0
  167. numpy/_core/tests/test_defchararray.py +858 -0
  168. numpy/_core/tests/test_deprecations.py +460 -0
  169. numpy/_core/tests/test_dlpack.py +190 -0
  170. numpy/_core/tests/test_dtype.py +2110 -0
  171. numpy/_core/tests/test_einsum.py +1351 -0
  172. numpy/_core/tests/test_errstate.py +131 -0
  173. numpy/_core/tests/test_extint128.py +217 -0
  174. numpy/_core/tests/test_finfo.py +86 -0
  175. numpy/_core/tests/test_function_base.py +504 -0
  176. numpy/_core/tests/test_getlimits.py +171 -0
  177. numpy/_core/tests/test_half.py +593 -0
  178. numpy/_core/tests/test_hashtable.py +36 -0
  179. numpy/_core/tests/test_indexerrors.py +122 -0
  180. numpy/_core/tests/test_indexing.py +1692 -0
  181. numpy/_core/tests/test_item_selection.py +167 -0
  182. numpy/_core/tests/test_limited_api.py +102 -0
  183. numpy/_core/tests/test_longdouble.py +370 -0
  184. numpy/_core/tests/test_mem_overlap.py +933 -0
  185. numpy/_core/tests/test_mem_policy.py +453 -0
  186. numpy/_core/tests/test_memmap.py +248 -0
  187. numpy/_core/tests/test_multiarray.py +11008 -0
  188. numpy/_core/tests/test_multiprocessing.py +55 -0
  189. numpy/_core/tests/test_multithreading.py +377 -0
  190. numpy/_core/tests/test_nditer.py +3533 -0
  191. numpy/_core/tests/test_nep50_promotions.py +287 -0
  192. numpy/_core/tests/test_numeric.py +4295 -0
  193. numpy/_core/tests/test_numerictypes.py +650 -0
  194. numpy/_core/tests/test_overrides.py +800 -0
  195. numpy/_core/tests/test_print.py +202 -0
  196. numpy/_core/tests/test_protocols.py +46 -0
  197. numpy/_core/tests/test_records.py +544 -0
  198. numpy/_core/tests/test_regression.py +2677 -0
  199. numpy/_core/tests/test_scalar_ctors.py +203 -0
  200. numpy/_core/tests/test_scalar_methods.py +328 -0
  201. numpy/_core/tests/test_scalarbuffer.py +153 -0
  202. numpy/_core/tests/test_scalarinherit.py +105 -0
  203. numpy/_core/tests/test_scalarmath.py +1168 -0
  204. numpy/_core/tests/test_scalarprint.py +403 -0
  205. numpy/_core/tests/test_shape_base.py +904 -0
  206. numpy/_core/tests/test_simd.py +1345 -0
  207. numpy/_core/tests/test_simd_module.py +105 -0
  208. numpy/_core/tests/test_stringdtype.py +1855 -0
  209. numpy/_core/tests/test_strings.py +1523 -0
  210. numpy/_core/tests/test_ufunc.py +3405 -0
  211. numpy/_core/tests/test_umath.py +4962 -0
  212. numpy/_core/tests/test_umath_accuracy.py +132 -0
  213. numpy/_core/tests/test_umath_complex.py +631 -0
  214. numpy/_core/tests/test_unicode.py +369 -0
  215. numpy/_core/umath.py +60 -0
  216. numpy/_core/umath.pyi +232 -0
  217. numpy/_distributor_init.py +15 -0
  218. numpy/_distributor_init.pyi +1 -0
  219. numpy/_expired_attrs_2_0.py +78 -0
  220. numpy/_expired_attrs_2_0.pyi +61 -0
  221. numpy/_globals.py +121 -0
  222. numpy/_globals.pyi +17 -0
  223. numpy/_pyinstaller/__init__.py +0 -0
  224. numpy/_pyinstaller/__init__.pyi +0 -0
  225. numpy/_pyinstaller/hook-numpy.py +36 -0
  226. numpy/_pyinstaller/hook-numpy.pyi +6 -0
  227. numpy/_pyinstaller/tests/__init__.py +16 -0
  228. numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
  229. numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
  230. numpy/_pytesttester.py +201 -0
  231. numpy/_pytesttester.pyi +18 -0
  232. numpy/_typing/__init__.py +173 -0
  233. numpy/_typing/_add_docstring.py +153 -0
  234. numpy/_typing/_array_like.py +106 -0
  235. numpy/_typing/_char_codes.py +213 -0
  236. numpy/_typing/_dtype_like.py +114 -0
  237. numpy/_typing/_extended_precision.py +15 -0
  238. numpy/_typing/_nbit.py +19 -0
  239. numpy/_typing/_nbit_base.py +94 -0
  240. numpy/_typing/_nbit_base.pyi +39 -0
  241. numpy/_typing/_nested_sequence.py +79 -0
  242. numpy/_typing/_scalars.py +20 -0
  243. numpy/_typing/_shape.py +8 -0
  244. numpy/_typing/_ufunc.py +7 -0
  245. numpy/_typing/_ufunc.pyi +975 -0
  246. numpy/_utils/__init__.py +95 -0
  247. numpy/_utils/__init__.pyi +28 -0
  248. numpy/_utils/_convertions.py +18 -0
  249. numpy/_utils/_convertions.pyi +4 -0
  250. numpy/_utils/_inspect.py +192 -0
  251. numpy/_utils/_inspect.pyi +70 -0
  252. numpy/_utils/_pep440.py +486 -0
  253. numpy/_utils/_pep440.pyi +118 -0
  254. numpy/char/__init__.py +2 -0
  255. numpy/char/__init__.pyi +111 -0
  256. numpy/conftest.py +248 -0
  257. numpy/core/__init__.py +33 -0
  258. numpy/core/__init__.pyi +0 -0
  259. numpy/core/_dtype.py +10 -0
  260. numpy/core/_dtype.pyi +0 -0
  261. numpy/core/_dtype_ctypes.py +10 -0
  262. numpy/core/_dtype_ctypes.pyi +0 -0
  263. numpy/core/_internal.py +27 -0
  264. numpy/core/_multiarray_umath.py +57 -0
  265. numpy/core/_utils.py +21 -0
  266. numpy/core/arrayprint.py +10 -0
  267. numpy/core/defchararray.py +10 -0
  268. numpy/core/einsumfunc.py +10 -0
  269. numpy/core/fromnumeric.py +10 -0
  270. numpy/core/function_base.py +10 -0
  271. numpy/core/getlimits.py +10 -0
  272. numpy/core/multiarray.py +25 -0
  273. numpy/core/numeric.py +12 -0
  274. numpy/core/numerictypes.py +10 -0
  275. numpy/core/overrides.py +10 -0
  276. numpy/core/overrides.pyi +7 -0
  277. numpy/core/records.py +10 -0
  278. numpy/core/shape_base.py +10 -0
  279. numpy/core/umath.py +10 -0
  280. numpy/ctypeslib/__init__.py +13 -0
  281. numpy/ctypeslib/__init__.pyi +15 -0
  282. numpy/ctypeslib/_ctypeslib.py +603 -0
  283. numpy/ctypeslib/_ctypeslib.pyi +236 -0
  284. numpy/doc/ufuncs.py +138 -0
  285. numpy/dtypes.py +41 -0
  286. numpy/dtypes.pyi +630 -0
  287. numpy/exceptions.py +246 -0
  288. numpy/exceptions.pyi +27 -0
  289. numpy/f2py/__init__.py +86 -0
  290. numpy/f2py/__init__.pyi +5 -0
  291. numpy/f2py/__main__.py +5 -0
  292. numpy/f2py/__version__.py +1 -0
  293. numpy/f2py/__version__.pyi +1 -0
  294. numpy/f2py/_backends/__init__.py +9 -0
  295. numpy/f2py/_backends/__init__.pyi +5 -0
  296. numpy/f2py/_backends/_backend.py +44 -0
  297. numpy/f2py/_backends/_backend.pyi +46 -0
  298. numpy/f2py/_backends/_distutils.py +76 -0
  299. numpy/f2py/_backends/_distutils.pyi +13 -0
  300. numpy/f2py/_backends/_meson.py +244 -0
  301. numpy/f2py/_backends/_meson.pyi +62 -0
  302. numpy/f2py/_backends/meson.build.template +58 -0
  303. numpy/f2py/_isocbind.py +62 -0
  304. numpy/f2py/_isocbind.pyi +13 -0
  305. numpy/f2py/_src_pyf.py +247 -0
  306. numpy/f2py/_src_pyf.pyi +28 -0
  307. numpy/f2py/auxfuncs.py +1004 -0
  308. numpy/f2py/auxfuncs.pyi +262 -0
  309. numpy/f2py/capi_maps.py +811 -0
  310. numpy/f2py/capi_maps.pyi +33 -0
  311. numpy/f2py/cb_rules.py +665 -0
  312. numpy/f2py/cb_rules.pyi +17 -0
  313. numpy/f2py/cfuncs.py +1563 -0
  314. numpy/f2py/cfuncs.pyi +31 -0
  315. numpy/f2py/common_rules.py +143 -0
  316. numpy/f2py/common_rules.pyi +9 -0
  317. numpy/f2py/crackfortran.py +3725 -0
  318. numpy/f2py/crackfortran.pyi +266 -0
  319. numpy/f2py/diagnose.py +149 -0
  320. numpy/f2py/diagnose.pyi +1 -0
  321. numpy/f2py/f2py2e.py +788 -0
  322. numpy/f2py/f2py2e.pyi +74 -0
  323. numpy/f2py/f90mod_rules.py +269 -0
  324. numpy/f2py/f90mod_rules.pyi +16 -0
  325. numpy/f2py/func2subr.py +329 -0
  326. numpy/f2py/func2subr.pyi +7 -0
  327. numpy/f2py/rules.py +1629 -0
  328. numpy/f2py/rules.pyi +41 -0
  329. numpy/f2py/setup.cfg +3 -0
  330. numpy/f2py/src/fortranobject.c +1436 -0
  331. numpy/f2py/src/fortranobject.h +173 -0
  332. numpy/f2py/symbolic.py +1518 -0
  333. numpy/f2py/symbolic.pyi +219 -0
  334. numpy/f2py/tests/__init__.py +16 -0
  335. numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
  336. numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
  337. numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
  338. numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
  339. numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
  340. numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
  341. numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
  342. numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
  343. numpy/f2py/tests/src/block_docstring/foo.f +6 -0
  344. numpy/f2py/tests/src/callback/foo.f +62 -0
  345. numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
  346. numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
  347. numpy/f2py/tests/src/callback/gh25211.f +10 -0
  348. numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
  349. numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
  350. numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
  351. numpy/f2py/tests/src/cli/hi77.f +3 -0
  352. numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
  353. numpy/f2py/tests/src/common/block.f +11 -0
  354. numpy/f2py/tests/src/common/gh19161.f90 +10 -0
  355. numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
  356. numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
  357. numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
  358. numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
  359. numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
  360. numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
  361. numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
  362. numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
  363. numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
  364. numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
  365. numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
  366. numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
  367. numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
  368. numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
  369. numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
  370. numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
  371. numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
  372. numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
  373. numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
  374. numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
  375. numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
  376. numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
  377. numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
  378. numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
  379. numpy/f2py/tests/src/kind/foo.f90 +20 -0
  380. numpy/f2py/tests/src/mixed/foo.f +5 -0
  381. numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
  382. numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
  383. numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
  384. numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
  385. numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
  386. numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
  387. numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
  388. numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
  389. numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
  390. numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
  391. numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
  392. numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
  393. numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
  394. numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
  395. numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
  396. numpy/f2py/tests/src/quoted_character/foo.f +14 -0
  397. numpy/f2py/tests/src/regression/AB.inc +1 -0
  398. numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
  399. numpy/f2py/tests/src/regression/datonly.f90 +17 -0
  400. numpy/f2py/tests/src/regression/f77comments.f +26 -0
  401. numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
  402. numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
  403. numpy/f2py/tests/src/regression/incfile.f90 +5 -0
  404. numpy/f2py/tests/src/regression/inout.f90 +9 -0
  405. numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
  406. numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
  407. numpy/f2py/tests/src/return_character/foo77.f +45 -0
  408. numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
  409. numpy/f2py/tests/src/return_complex/foo77.f +45 -0
  410. numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
  411. numpy/f2py/tests/src/return_integer/foo77.f +56 -0
  412. numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
  413. numpy/f2py/tests/src/return_logical/foo77.f +56 -0
  414. numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
  415. numpy/f2py/tests/src/return_real/foo77.f +45 -0
  416. numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
  417. numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
  418. numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
  419. numpy/f2py/tests/src/routines/subrout.f +4 -0
  420. numpy/f2py/tests/src/routines/subrout.pyf +10 -0
  421. numpy/f2py/tests/src/size/foo.f90 +44 -0
  422. numpy/f2py/tests/src/string/char.f90 +29 -0
  423. numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
  424. numpy/f2py/tests/src/string/gh24008.f +8 -0
  425. numpy/f2py/tests/src/string/gh24662.f90 +7 -0
  426. numpy/f2py/tests/src/string/gh25286.f90 +14 -0
  427. numpy/f2py/tests/src/string/gh25286.pyf +12 -0
  428. numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
  429. numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
  430. numpy/f2py/tests/src/string/string.f +12 -0
  431. numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
  432. numpy/f2py/tests/test_abstract_interface.py +26 -0
  433. numpy/f2py/tests/test_array_from_pyobj.py +678 -0
  434. numpy/f2py/tests/test_assumed_shape.py +50 -0
  435. numpy/f2py/tests/test_block_docstring.py +20 -0
  436. numpy/f2py/tests/test_callback.py +263 -0
  437. numpy/f2py/tests/test_character.py +641 -0
  438. numpy/f2py/tests/test_common.py +23 -0
  439. numpy/f2py/tests/test_crackfortran.py +421 -0
  440. numpy/f2py/tests/test_data.py +71 -0
  441. numpy/f2py/tests/test_docs.py +66 -0
  442. numpy/f2py/tests/test_f2cmap.py +17 -0
  443. numpy/f2py/tests/test_f2py2e.py +983 -0
  444. numpy/f2py/tests/test_isoc.py +56 -0
  445. numpy/f2py/tests/test_kind.py +52 -0
  446. numpy/f2py/tests/test_mixed.py +35 -0
  447. numpy/f2py/tests/test_modules.py +83 -0
  448. numpy/f2py/tests/test_parameter.py +129 -0
  449. numpy/f2py/tests/test_pyf_src.py +43 -0
  450. numpy/f2py/tests/test_quoted_character.py +18 -0
  451. numpy/f2py/tests/test_regression.py +187 -0
  452. numpy/f2py/tests/test_return_character.py +48 -0
  453. numpy/f2py/tests/test_return_complex.py +67 -0
  454. numpy/f2py/tests/test_return_integer.py +55 -0
  455. numpy/f2py/tests/test_return_logical.py +65 -0
  456. numpy/f2py/tests/test_return_real.py +109 -0
  457. numpy/f2py/tests/test_routines.py +29 -0
  458. numpy/f2py/tests/test_semicolon_split.py +75 -0
  459. numpy/f2py/tests/test_size.py +45 -0
  460. numpy/f2py/tests/test_string.py +100 -0
  461. numpy/f2py/tests/test_symbolic.py +500 -0
  462. numpy/f2py/tests/test_value_attrspec.py +15 -0
  463. numpy/f2py/tests/util.py +442 -0
  464. numpy/f2py/use_rules.py +99 -0
  465. numpy/f2py/use_rules.pyi +9 -0
  466. numpy/fft/__init__.py +213 -0
  467. numpy/fft/__init__.pyi +38 -0
  468. numpy/fft/_helper.py +235 -0
  469. numpy/fft/_helper.pyi +44 -0
  470. numpy/fft/_pocketfft.py +1693 -0
  471. numpy/fft/_pocketfft.pyi +137 -0
  472. numpy/fft/_pocketfft_umath.cp314t-win_arm64.lib +0 -0
  473. numpy/fft/_pocketfft_umath.cp314t-win_arm64.pyd +0 -0
  474. numpy/fft/tests/__init__.py +0 -0
  475. numpy/fft/tests/test_helper.py +167 -0
  476. numpy/fft/tests/test_pocketfft.py +589 -0
  477. numpy/lib/__init__.py +97 -0
  478. numpy/lib/__init__.pyi +52 -0
  479. numpy/lib/_array_utils_impl.py +62 -0
  480. numpy/lib/_array_utils_impl.pyi +10 -0
  481. numpy/lib/_arraypad_impl.py +926 -0
  482. numpy/lib/_arraypad_impl.pyi +88 -0
  483. numpy/lib/_arraysetops_impl.py +1158 -0
  484. numpy/lib/_arraysetops_impl.pyi +462 -0
  485. numpy/lib/_arrayterator_impl.py +224 -0
  486. numpy/lib/_arrayterator_impl.pyi +45 -0
  487. numpy/lib/_datasource.py +700 -0
  488. numpy/lib/_datasource.pyi +30 -0
  489. numpy/lib/_format_impl.py +1036 -0
  490. numpy/lib/_format_impl.pyi +56 -0
  491. numpy/lib/_function_base_impl.py +5760 -0
  492. numpy/lib/_function_base_impl.pyi +2324 -0
  493. numpy/lib/_histograms_impl.py +1085 -0
  494. numpy/lib/_histograms_impl.pyi +40 -0
  495. numpy/lib/_index_tricks_impl.py +1048 -0
  496. numpy/lib/_index_tricks_impl.pyi +267 -0
  497. numpy/lib/_iotools.py +900 -0
  498. numpy/lib/_iotools.pyi +116 -0
  499. numpy/lib/_nanfunctions_impl.py +2006 -0
  500. numpy/lib/_nanfunctions_impl.pyi +48 -0
  501. numpy/lib/_npyio_impl.py +2583 -0
  502. numpy/lib/_npyio_impl.pyi +299 -0
  503. numpy/lib/_polynomial_impl.py +1465 -0
  504. numpy/lib/_polynomial_impl.pyi +338 -0
  505. numpy/lib/_scimath_impl.py +642 -0
  506. numpy/lib/_scimath_impl.pyi +93 -0
  507. numpy/lib/_shape_base_impl.py +1289 -0
  508. numpy/lib/_shape_base_impl.pyi +236 -0
  509. numpy/lib/_stride_tricks_impl.py +582 -0
  510. numpy/lib/_stride_tricks_impl.pyi +73 -0
  511. numpy/lib/_twodim_base_impl.py +1201 -0
  512. numpy/lib/_twodim_base_impl.pyi +408 -0
  513. numpy/lib/_type_check_impl.py +710 -0
  514. numpy/lib/_type_check_impl.pyi +348 -0
  515. numpy/lib/_ufunclike_impl.py +199 -0
  516. numpy/lib/_ufunclike_impl.pyi +60 -0
  517. numpy/lib/_user_array_impl.py +310 -0
  518. numpy/lib/_user_array_impl.pyi +226 -0
  519. numpy/lib/_utils_impl.py +784 -0
  520. numpy/lib/_utils_impl.pyi +22 -0
  521. numpy/lib/_version.py +153 -0
  522. numpy/lib/_version.pyi +17 -0
  523. numpy/lib/array_utils.py +7 -0
  524. numpy/lib/array_utils.pyi +6 -0
  525. numpy/lib/format.py +24 -0
  526. numpy/lib/format.pyi +24 -0
  527. numpy/lib/introspect.py +94 -0
  528. numpy/lib/introspect.pyi +3 -0
  529. numpy/lib/mixins.py +180 -0
  530. numpy/lib/mixins.pyi +78 -0
  531. numpy/lib/npyio.py +1 -0
  532. numpy/lib/npyio.pyi +5 -0
  533. numpy/lib/recfunctions.py +1681 -0
  534. numpy/lib/recfunctions.pyi +444 -0
  535. numpy/lib/scimath.py +13 -0
  536. numpy/lib/scimath.pyi +12 -0
  537. numpy/lib/stride_tricks.py +1 -0
  538. numpy/lib/stride_tricks.pyi +4 -0
  539. numpy/lib/tests/__init__.py +0 -0
  540. numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
  541. numpy/lib/tests/data/py2-objarr.npy +0 -0
  542. numpy/lib/tests/data/py2-objarr.npz +0 -0
  543. numpy/lib/tests/data/py3-objarr.npy +0 -0
  544. numpy/lib/tests/data/py3-objarr.npz +0 -0
  545. numpy/lib/tests/data/python3.npy +0 -0
  546. numpy/lib/tests/data/win64python2.npy +0 -0
  547. numpy/lib/tests/test__datasource.py +328 -0
  548. numpy/lib/tests/test__iotools.py +358 -0
  549. numpy/lib/tests/test__version.py +64 -0
  550. numpy/lib/tests/test_array_utils.py +32 -0
  551. numpy/lib/tests/test_arraypad.py +1427 -0
  552. numpy/lib/tests/test_arraysetops.py +1302 -0
  553. numpy/lib/tests/test_arrayterator.py +45 -0
  554. numpy/lib/tests/test_format.py +1054 -0
  555. numpy/lib/tests/test_function_base.py +4750 -0
  556. numpy/lib/tests/test_histograms.py +855 -0
  557. numpy/lib/tests/test_index_tricks.py +693 -0
  558. numpy/lib/tests/test_io.py +2857 -0
  559. numpy/lib/tests/test_loadtxt.py +1099 -0
  560. numpy/lib/tests/test_mixins.py +215 -0
  561. numpy/lib/tests/test_nanfunctions.py +1438 -0
  562. numpy/lib/tests/test_packbits.py +376 -0
  563. numpy/lib/tests/test_polynomial.py +325 -0
  564. numpy/lib/tests/test_recfunctions.py +1042 -0
  565. numpy/lib/tests/test_regression.py +231 -0
  566. numpy/lib/tests/test_shape_base.py +813 -0
  567. numpy/lib/tests/test_stride_tricks.py +655 -0
  568. numpy/lib/tests/test_twodim_base.py +559 -0
  569. numpy/lib/tests/test_type_check.py +473 -0
  570. numpy/lib/tests/test_ufunclike.py +97 -0
  571. numpy/lib/tests/test_utils.py +80 -0
  572. numpy/lib/user_array.py +1 -0
  573. numpy/lib/user_array.pyi +1 -0
  574. numpy/linalg/__init__.py +95 -0
  575. numpy/linalg/__init__.pyi +71 -0
  576. numpy/linalg/_linalg.py +3657 -0
  577. numpy/linalg/_linalg.pyi +548 -0
  578. numpy/linalg/_umath_linalg.cp314t-win_arm64.lib +0 -0
  579. numpy/linalg/_umath_linalg.cp314t-win_arm64.pyd +0 -0
  580. numpy/linalg/_umath_linalg.pyi +60 -0
  581. numpy/linalg/lapack_lite.cp314t-win_arm64.lib +0 -0
  582. numpy/linalg/lapack_lite.cp314t-win_arm64.pyd +0 -0
  583. numpy/linalg/lapack_lite.pyi +143 -0
  584. numpy/linalg/tests/__init__.py +0 -0
  585. numpy/linalg/tests/test_deprecations.py +21 -0
  586. numpy/linalg/tests/test_linalg.py +2442 -0
  587. numpy/linalg/tests/test_regression.py +182 -0
  588. numpy/ma/API_CHANGES.txt +135 -0
  589. numpy/ma/LICENSE +24 -0
  590. numpy/ma/README.rst +236 -0
  591. numpy/ma/__init__.py +53 -0
  592. numpy/ma/__init__.pyi +458 -0
  593. numpy/ma/core.py +8929 -0
  594. numpy/ma/core.pyi +3720 -0
  595. numpy/ma/extras.py +2266 -0
  596. numpy/ma/extras.pyi +297 -0
  597. numpy/ma/mrecords.py +762 -0
  598. numpy/ma/mrecords.pyi +96 -0
  599. numpy/ma/tests/__init__.py +0 -0
  600. numpy/ma/tests/test_arrayobject.py +40 -0
  601. numpy/ma/tests/test_core.py +6008 -0
  602. numpy/ma/tests/test_deprecations.py +65 -0
  603. numpy/ma/tests/test_extras.py +1945 -0
  604. numpy/ma/tests/test_mrecords.py +495 -0
  605. numpy/ma/tests/test_old_ma.py +939 -0
  606. numpy/ma/tests/test_regression.py +83 -0
  607. numpy/ma/tests/test_subclassing.py +469 -0
  608. numpy/ma/testutils.py +294 -0
  609. numpy/ma/testutils.pyi +69 -0
  610. numpy/matlib.py +380 -0
  611. numpy/matlib.pyi +580 -0
  612. numpy/matrixlib/__init__.py +12 -0
  613. numpy/matrixlib/__init__.pyi +3 -0
  614. numpy/matrixlib/defmatrix.py +1119 -0
  615. numpy/matrixlib/defmatrix.pyi +218 -0
  616. numpy/matrixlib/tests/__init__.py +0 -0
  617. numpy/matrixlib/tests/test_defmatrix.py +455 -0
  618. numpy/matrixlib/tests/test_interaction.py +360 -0
  619. numpy/matrixlib/tests/test_masked_matrix.py +240 -0
  620. numpy/matrixlib/tests/test_matrix_linalg.py +110 -0
  621. numpy/matrixlib/tests/test_multiarray.py +17 -0
  622. numpy/matrixlib/tests/test_numeric.py +18 -0
  623. numpy/matrixlib/tests/test_regression.py +31 -0
  624. numpy/polynomial/__init__.py +187 -0
  625. numpy/polynomial/__init__.pyi +31 -0
  626. numpy/polynomial/_polybase.py +1191 -0
  627. numpy/polynomial/_polybase.pyi +262 -0
  628. numpy/polynomial/_polytypes.pyi +501 -0
  629. numpy/polynomial/chebyshev.py +2001 -0
  630. numpy/polynomial/chebyshev.pyi +180 -0
  631. numpy/polynomial/hermite.py +1738 -0
  632. numpy/polynomial/hermite.pyi +106 -0
  633. numpy/polynomial/hermite_e.py +1640 -0
  634. numpy/polynomial/hermite_e.pyi +106 -0
  635. numpy/polynomial/laguerre.py +1673 -0
  636. numpy/polynomial/laguerre.pyi +100 -0
  637. numpy/polynomial/legendre.py +1603 -0
  638. numpy/polynomial/legendre.pyi +100 -0
  639. numpy/polynomial/polynomial.py +1625 -0
  640. numpy/polynomial/polynomial.pyi +109 -0
  641. numpy/polynomial/polyutils.py +759 -0
  642. numpy/polynomial/polyutils.pyi +307 -0
  643. numpy/polynomial/tests/__init__.py +0 -0
  644. numpy/polynomial/tests/test_chebyshev.py +618 -0
  645. numpy/polynomial/tests/test_classes.py +613 -0
  646. numpy/polynomial/tests/test_hermite.py +553 -0
  647. numpy/polynomial/tests/test_hermite_e.py +554 -0
  648. numpy/polynomial/tests/test_laguerre.py +535 -0
  649. numpy/polynomial/tests/test_legendre.py +566 -0
  650. numpy/polynomial/tests/test_polynomial.py +691 -0
  651. numpy/polynomial/tests/test_polyutils.py +123 -0
  652. numpy/polynomial/tests/test_printing.py +557 -0
  653. numpy/polynomial/tests/test_symbol.py +217 -0
  654. numpy/py.typed +0 -0
  655. numpy/random/LICENSE.md +71 -0
  656. numpy/random/__init__.pxd +14 -0
  657. numpy/random/__init__.py +213 -0
  658. numpy/random/__init__.pyi +124 -0
  659. numpy/random/_bounded_integers.cp314t-win_arm64.lib +0 -0
  660. numpy/random/_bounded_integers.cp314t-win_arm64.pyd +0 -0
  661. numpy/random/_bounded_integers.pxd +38 -0
  662. numpy/random/_bounded_integers.pyi +1 -0
  663. numpy/random/_common.cp314t-win_arm64.lib +0 -0
  664. numpy/random/_common.cp314t-win_arm64.pyd +0 -0
  665. numpy/random/_common.pxd +110 -0
  666. numpy/random/_common.pyi +16 -0
  667. numpy/random/_examples/cffi/extending.py +44 -0
  668. numpy/random/_examples/cffi/parse.py +53 -0
  669. numpy/random/_examples/cython/extending.pyx +77 -0
  670. numpy/random/_examples/cython/extending_distributions.pyx +117 -0
  671. numpy/random/_examples/cython/meson.build +53 -0
  672. numpy/random/_examples/numba/extending.py +86 -0
  673. numpy/random/_examples/numba/extending_distributions.py +67 -0
  674. numpy/random/_generator.cp314t-win_arm64.lib +0 -0
  675. numpy/random/_generator.cp314t-win_arm64.pyd +0 -0
  676. numpy/random/_generator.pyi +862 -0
  677. numpy/random/_mt19937.cp314t-win_arm64.lib +0 -0
  678. numpy/random/_mt19937.cp314t-win_arm64.pyd +0 -0
  679. numpy/random/_mt19937.pyi +27 -0
  680. numpy/random/_pcg64.cp314t-win_arm64.lib +0 -0
  681. numpy/random/_pcg64.cp314t-win_arm64.pyd +0 -0
  682. numpy/random/_pcg64.pyi +41 -0
  683. numpy/random/_philox.cp314t-win_arm64.lib +0 -0
  684. numpy/random/_philox.cp314t-win_arm64.pyd +0 -0
  685. numpy/random/_philox.pyi +36 -0
  686. numpy/random/_pickle.py +88 -0
  687. numpy/random/_pickle.pyi +43 -0
  688. numpy/random/_sfc64.cp314t-win_arm64.lib +0 -0
  689. numpy/random/_sfc64.cp314t-win_arm64.pyd +0 -0
  690. numpy/random/_sfc64.pyi +25 -0
  691. numpy/random/bit_generator.cp314t-win_arm64.lib +0 -0
  692. numpy/random/bit_generator.cp314t-win_arm64.pyd +0 -0
  693. numpy/random/bit_generator.pxd +40 -0
  694. numpy/random/bit_generator.pyi +123 -0
  695. numpy/random/c_distributions.pxd +119 -0
  696. numpy/random/lib/npyrandom.lib +0 -0
  697. numpy/random/mtrand.cp314t-win_arm64.lib +0 -0
  698. numpy/random/mtrand.cp314t-win_arm64.pyd +0 -0
  699. numpy/random/mtrand.pyi +759 -0
  700. numpy/random/tests/__init__.py +0 -0
  701. numpy/random/tests/data/__init__.py +0 -0
  702. numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
  703. numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
  704. numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
  705. numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
  706. numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
  707. numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
  708. numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
  709. numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
  710. numpy/random/tests/data/philox-testset-1.csv +1001 -0
  711. numpy/random/tests/data/philox-testset-2.csv +1001 -0
  712. numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
  713. numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
  714. numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
  715. numpy/random/tests/test_direct.py +595 -0
  716. numpy/random/tests/test_extending.py +131 -0
  717. numpy/random/tests/test_generator_mt19937.py +2825 -0
  718. numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
  719. numpy/random/tests/test_random.py +1724 -0
  720. numpy/random/tests/test_randomstate.py +2099 -0
  721. numpy/random/tests/test_randomstate_regression.py +213 -0
  722. numpy/random/tests/test_regression.py +175 -0
  723. numpy/random/tests/test_seed_sequence.py +79 -0
  724. numpy/random/tests/test_smoke.py +882 -0
  725. numpy/rec/__init__.py +2 -0
  726. numpy/rec/__init__.pyi +23 -0
  727. numpy/strings/__init__.py +2 -0
  728. numpy/strings/__init__.pyi +97 -0
  729. numpy/testing/__init__.py +22 -0
  730. numpy/testing/__init__.pyi +107 -0
  731. numpy/testing/_private/__init__.py +0 -0
  732. numpy/testing/_private/__init__.pyi +0 -0
  733. numpy/testing/_private/extbuild.py +250 -0
  734. numpy/testing/_private/extbuild.pyi +25 -0
  735. numpy/testing/_private/utils.py +2830 -0
  736. numpy/testing/_private/utils.pyi +505 -0
  737. numpy/testing/overrides.py +84 -0
  738. numpy/testing/overrides.pyi +10 -0
  739. numpy/testing/print_coercion_tables.py +207 -0
  740. numpy/testing/print_coercion_tables.pyi +26 -0
  741. numpy/testing/tests/__init__.py +0 -0
  742. numpy/testing/tests/test_utils.py +2123 -0
  743. numpy/tests/__init__.py +0 -0
  744. numpy/tests/test__all__.py +10 -0
  745. numpy/tests/test_configtool.py +51 -0
  746. numpy/tests/test_ctypeslib.py +383 -0
  747. numpy/tests/test_lazyloading.py +42 -0
  748. numpy/tests/test_matlib.py +59 -0
  749. numpy/tests/test_numpy_config.py +47 -0
  750. numpy/tests/test_numpy_version.py +54 -0
  751. numpy/tests/test_public_api.py +807 -0
  752. numpy/tests/test_reloading.py +76 -0
  753. numpy/tests/test_scripts.py +48 -0
  754. numpy/tests/test_warnings.py +79 -0
  755. numpy/typing/__init__.py +233 -0
  756. numpy/typing/__init__.pyi +3 -0
  757. numpy/typing/mypy_plugin.py +200 -0
  758. numpy/typing/tests/__init__.py +0 -0
  759. numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
  760. numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
  761. numpy/typing/tests/data/fail/array_like.pyi +15 -0
  762. numpy/typing/tests/data/fail/array_pad.pyi +6 -0
  763. numpy/typing/tests/data/fail/arrayprint.pyi +15 -0
  764. numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
  765. numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
  766. numpy/typing/tests/data/fail/char.pyi +63 -0
  767. numpy/typing/tests/data/fail/chararray.pyi +61 -0
  768. numpy/typing/tests/data/fail/comparisons.pyi +27 -0
  769. numpy/typing/tests/data/fail/constants.pyi +3 -0
  770. numpy/typing/tests/data/fail/datasource.pyi +16 -0
  771. numpy/typing/tests/data/fail/dtype.pyi +17 -0
  772. numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
  773. numpy/typing/tests/data/fail/flatiter.pyi +38 -0
  774. numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
  775. numpy/typing/tests/data/fail/histograms.pyi +12 -0
  776. numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
  777. numpy/typing/tests/data/fail/lib_function_base.pyi +60 -0
  778. numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
  779. numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
  780. numpy/typing/tests/data/fail/lib_version.pyi +6 -0
  781. numpy/typing/tests/data/fail/linalg.pyi +52 -0
  782. numpy/typing/tests/data/fail/ma.pyi +155 -0
  783. numpy/typing/tests/data/fail/memmap.pyi +5 -0
  784. numpy/typing/tests/data/fail/modules.pyi +17 -0
  785. numpy/typing/tests/data/fail/multiarray.pyi +52 -0
  786. numpy/typing/tests/data/fail/ndarray.pyi +11 -0
  787. numpy/typing/tests/data/fail/ndarray_misc.pyi +49 -0
  788. numpy/typing/tests/data/fail/nditer.pyi +8 -0
  789. numpy/typing/tests/data/fail/nested_sequence.pyi +17 -0
  790. numpy/typing/tests/data/fail/npyio.pyi +24 -0
  791. numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
  792. numpy/typing/tests/data/fail/random.pyi +62 -0
  793. numpy/typing/tests/data/fail/rec.pyi +17 -0
  794. numpy/typing/tests/data/fail/scalars.pyi +86 -0
  795. numpy/typing/tests/data/fail/shape.pyi +7 -0
  796. numpy/typing/tests/data/fail/shape_base.pyi +8 -0
  797. numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
  798. numpy/typing/tests/data/fail/strings.pyi +52 -0
  799. numpy/typing/tests/data/fail/testing.pyi +28 -0
  800. numpy/typing/tests/data/fail/twodim_base.pyi +39 -0
  801. numpy/typing/tests/data/fail/type_check.pyi +12 -0
  802. numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
  803. numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
  804. numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
  805. numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
  806. numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
  807. numpy/typing/tests/data/mypy.ini +8 -0
  808. numpy/typing/tests/data/pass/arithmetic.py +614 -0
  809. numpy/typing/tests/data/pass/array_constructors.py +138 -0
  810. numpy/typing/tests/data/pass/array_like.py +43 -0
  811. numpy/typing/tests/data/pass/arrayprint.py +37 -0
  812. numpy/typing/tests/data/pass/arrayterator.py +28 -0
  813. numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
  814. numpy/typing/tests/data/pass/comparisons.py +316 -0
  815. numpy/typing/tests/data/pass/dtype.py +57 -0
  816. numpy/typing/tests/data/pass/einsumfunc.py +36 -0
  817. numpy/typing/tests/data/pass/flatiter.py +26 -0
  818. numpy/typing/tests/data/pass/fromnumeric.py +272 -0
  819. numpy/typing/tests/data/pass/index_tricks.py +62 -0
  820. numpy/typing/tests/data/pass/lib_user_array.py +22 -0
  821. numpy/typing/tests/data/pass/lib_utils.py +19 -0
  822. numpy/typing/tests/data/pass/lib_version.py +18 -0
  823. numpy/typing/tests/data/pass/literal.py +52 -0
  824. numpy/typing/tests/data/pass/ma.py +199 -0
  825. numpy/typing/tests/data/pass/mod.py +149 -0
  826. numpy/typing/tests/data/pass/modules.py +45 -0
  827. numpy/typing/tests/data/pass/multiarray.py +77 -0
  828. numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
  829. numpy/typing/tests/data/pass/ndarray_misc.py +199 -0
  830. numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
  831. numpy/typing/tests/data/pass/nditer.py +4 -0
  832. numpy/typing/tests/data/pass/numeric.py +90 -0
  833. numpy/typing/tests/data/pass/numerictypes.py +17 -0
  834. numpy/typing/tests/data/pass/random.py +1498 -0
  835. numpy/typing/tests/data/pass/recfunctions.py +164 -0
  836. numpy/typing/tests/data/pass/scalars.py +249 -0
  837. numpy/typing/tests/data/pass/shape.py +19 -0
  838. numpy/typing/tests/data/pass/simple.py +170 -0
  839. numpy/typing/tests/data/pass/ufunc_config.py +64 -0
  840. numpy/typing/tests/data/pass/ufunclike.py +52 -0
  841. numpy/typing/tests/data/pass/ufuncs.py +16 -0
  842. numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
  843. numpy/typing/tests/data/reveal/arithmetic.pyi +719 -0
  844. numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
  845. numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
  846. numpy/typing/tests/data/reveal/arraypad.pyi +27 -0
  847. numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
  848. numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
  849. numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
  850. numpy/typing/tests/data/reveal/bitwise_ops.pyi +166 -0
  851. numpy/typing/tests/data/reveal/char.pyi +225 -0
  852. numpy/typing/tests/data/reveal/chararray.pyi +138 -0
  853. numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
  854. numpy/typing/tests/data/reveal/constants.pyi +14 -0
  855. numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
  856. numpy/typing/tests/data/reveal/datasource.pyi +23 -0
  857. numpy/typing/tests/data/reveal/dtype.pyi +132 -0
  858. numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
  859. numpy/typing/tests/data/reveal/emath.pyi +54 -0
  860. numpy/typing/tests/data/reveal/fft.pyi +37 -0
  861. numpy/typing/tests/data/reveal/flatiter.pyi +86 -0
  862. numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
  863. numpy/typing/tests/data/reveal/getlimits.pyi +53 -0
  864. numpy/typing/tests/data/reveal/histograms.pyi +25 -0
  865. numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
  866. numpy/typing/tests/data/reveal/lib_function_base.pyi +409 -0
  867. numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -0
  868. numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
  869. numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
  870. numpy/typing/tests/data/reveal/linalg.pyi +154 -0
  871. numpy/typing/tests/data/reveal/ma.pyi +1098 -0
  872. numpy/typing/tests/data/reveal/matrix.pyi +73 -0
  873. numpy/typing/tests/data/reveal/memmap.pyi +19 -0
  874. numpy/typing/tests/data/reveal/mod.pyi +178 -0
  875. numpy/typing/tests/data/reveal/modules.pyi +51 -0
  876. numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
  877. numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
  878. numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
  879. numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
  880. numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
  881. numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -0
  882. numpy/typing/tests/data/reveal/nditer.pyi +49 -0
  883. numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
  884. numpy/typing/tests/data/reveal/npyio.pyi +83 -0
  885. numpy/typing/tests/data/reveal/numeric.pyi +170 -0
  886. numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
  887. numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
  888. numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -0
  889. numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
  890. numpy/typing/tests/data/reveal/random.pyi +1546 -0
  891. numpy/typing/tests/data/reveal/rec.pyi +171 -0
  892. numpy/typing/tests/data/reveal/scalars.pyi +191 -0
  893. numpy/typing/tests/data/reveal/shape.pyi +13 -0
  894. numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
  895. numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
  896. numpy/typing/tests/data/reveal/strings.pyi +196 -0
  897. numpy/typing/tests/data/reveal/testing.pyi +198 -0
  898. numpy/typing/tests/data/reveal/twodim_base.pyi +225 -0
  899. numpy/typing/tests/data/reveal/type_check.pyi +67 -0
  900. numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
  901. numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
  902. numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
  903. numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
  904. numpy/typing/tests/test_isfile.py +38 -0
  905. numpy/typing/tests/test_runtime.py +110 -0
  906. numpy/typing/tests/test_typing.py +205 -0
  907. numpy/version.py +11 -0
  908. numpy/version.pyi +9 -0
  909. numpy-2.4.1.dist-info/DELVEWHEEL +2 -0
  910. numpy-2.4.1.dist-info/METADATA +139 -0
  911. numpy-2.4.1.dist-info/RECORD +932 -0
  912. numpy-2.4.1.dist-info/WHEEL +4 -0
  913. numpy-2.4.1.dist-info/entry_points.txt +13 -0
  914. numpy-2.4.1.dist-info/licenses/LICENSE.txt +914 -0
  915. numpy-2.4.1.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
  916. numpy-2.4.1.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
  917. numpy-2.4.1.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
  918. numpy-2.4.1.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
  919. numpy-2.4.1.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
  920. numpy-2.4.1.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
  921. numpy-2.4.1.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
  922. numpy-2.4.1.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
  923. numpy-2.4.1.dist-info/licenses/numpy/ma/LICENSE +24 -0
  924. numpy-2.4.1.dist-info/licenses/numpy/random/LICENSE.md +71 -0
  925. numpy-2.4.1.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
  926. numpy-2.4.1.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
  927. numpy-2.4.1.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
  928. numpy-2.4.1.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
  929. numpy-2.4.1.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
  930. numpy-2.4.1.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
  931. numpy.libs/msvcp140-5f1c5dd31916990d94181e07bc3afb32.dll +0 -0
  932. numpy.libs/scipy_openblas-7b69cbfd2599e6035f1310f2a72d59a6.dll +0 -0
@@ -0,0 +1,1498 @@
1
+ from __future__ import annotations
2
+
3
+ from typing import Any
4
+
5
+ import numpy as np
6
+
7
+ SEED_NONE = None
8
+ SEED_INT = 4579435749574957634658964293569
9
+ SEED_ARR: np.ndarray[Any, np.dtype[np.int64]] = np.array([1, 2, 3, 4], dtype=np.int64)
10
+ SEED_ARRLIKE: list[int] = [1, 2, 3, 4]
11
+ SEED_SEED_SEQ: np.random.SeedSequence = np.random.SeedSequence(0)
12
+ SEED_MT19937: np.random.MT19937 = np.random.MT19937(0)
13
+ SEED_PCG64: np.random.PCG64 = np.random.PCG64(0)
14
+ SEED_PHILOX: np.random.Philox = np.random.Philox(0)
15
+ SEED_SFC64: np.random.SFC64 = np.random.SFC64(0)
16
+
17
+ # default rng
18
+ np.random.default_rng()
19
+ np.random.default_rng(SEED_NONE)
20
+ np.random.default_rng(SEED_INT)
21
+ np.random.default_rng(SEED_ARR)
22
+ np.random.default_rng(SEED_ARRLIKE)
23
+ np.random.default_rng(SEED_SEED_SEQ)
24
+ np.random.default_rng(SEED_MT19937)
25
+ np.random.default_rng(SEED_PCG64)
26
+ np.random.default_rng(SEED_PHILOX)
27
+ np.random.default_rng(SEED_SFC64)
28
+
29
+ # Seed Sequence
30
+ np.random.SeedSequence(SEED_NONE)
31
+ np.random.SeedSequence(SEED_INT)
32
+ np.random.SeedSequence(SEED_ARR)
33
+ np.random.SeedSequence(SEED_ARRLIKE)
34
+
35
+ # Bit Generators
36
+ np.random.MT19937(SEED_NONE)
37
+ np.random.MT19937(SEED_INT)
38
+ np.random.MT19937(SEED_ARR)
39
+ np.random.MT19937(SEED_ARRLIKE)
40
+ np.random.MT19937(SEED_SEED_SEQ)
41
+
42
+ np.random.PCG64(SEED_NONE)
43
+ np.random.PCG64(SEED_INT)
44
+ np.random.PCG64(SEED_ARR)
45
+ np.random.PCG64(SEED_ARRLIKE)
46
+ np.random.PCG64(SEED_SEED_SEQ)
47
+
48
+ np.random.Philox(SEED_NONE)
49
+ np.random.Philox(SEED_INT)
50
+ np.random.Philox(SEED_ARR)
51
+ np.random.Philox(SEED_ARRLIKE)
52
+ np.random.Philox(SEED_SEED_SEQ)
53
+
54
+ np.random.SFC64(SEED_NONE)
55
+ np.random.SFC64(SEED_INT)
56
+ np.random.SFC64(SEED_ARR)
57
+ np.random.SFC64(SEED_ARRLIKE)
58
+ np.random.SFC64(SEED_SEED_SEQ)
59
+
60
+ seed_seq: np.random.bit_generator.SeedSequence = np.random.SeedSequence(SEED_NONE)
61
+ seed_seq.spawn(10)
62
+ seed_seq.generate_state(3)
63
+ seed_seq.generate_state(3, "u4")
64
+ seed_seq.generate_state(3, "uint32")
65
+ seed_seq.generate_state(3, "u8")
66
+ seed_seq.generate_state(3, "uint64")
67
+ seed_seq.generate_state(3, np.uint32)
68
+ seed_seq.generate_state(3, np.uint64)
69
+
70
+
71
+ def_gen: np.random.Generator = np.random.default_rng()
72
+
73
+ D_arr_0p1: np.ndarray[Any, np.dtype[np.float64]] = np.array([0.1])
74
+ D_arr_0p5: np.ndarray[Any, np.dtype[np.float64]] = np.array([0.5])
75
+ D_arr_0p9: np.ndarray[Any, np.dtype[np.float64]] = np.array([0.9])
76
+ D_arr_1p5: np.ndarray[Any, np.dtype[np.float64]] = np.array([1.5])
77
+ I_arr_10: np.ndarray[Any, np.dtype[np.int_]] = np.array([10], dtype=np.int_)
78
+ I_arr_20: np.ndarray[Any, np.dtype[np.int_]] = np.array([20], dtype=np.int_)
79
+ D_arr_like_0p1: list[float] = [0.1]
80
+ D_arr_like_0p5: list[float] = [0.5]
81
+ D_arr_like_0p9: list[float] = [0.9]
82
+ D_arr_like_1p5: list[float] = [1.5]
83
+ I_arr_like_10: list[int] = [10]
84
+ I_arr_like_20: list[int] = [20]
85
+ D_2D_like: list[list[float]] = [[1, 2], [2, 3], [3, 4], [4, 5.1]]
86
+ D_2D: np.ndarray[Any, np.dtype[np.float64]] = np.array(D_2D_like)
87
+
88
+ S_out: np.ndarray[Any, np.dtype[np.float32]] = np.empty(1, dtype=np.float32)
89
+ D_out: np.ndarray[Any, np.dtype[np.float64]] = np.empty(1)
90
+
91
+ def_gen.standard_normal()
92
+ def_gen.standard_normal(dtype=np.float32)
93
+ def_gen.standard_normal(dtype="float32")
94
+ def_gen.standard_normal(dtype="double")
95
+ def_gen.standard_normal(dtype=np.float64)
96
+ def_gen.standard_normal(size=None)
97
+ def_gen.standard_normal(size=1)
98
+ def_gen.standard_normal(size=1, dtype=np.float32)
99
+ def_gen.standard_normal(size=1, dtype="f4")
100
+ def_gen.standard_normal(size=1, dtype="float32", out=S_out)
101
+ def_gen.standard_normal(dtype=np.float32, out=S_out)
102
+ def_gen.standard_normal(size=1, dtype=np.float64)
103
+ def_gen.standard_normal(size=1, dtype="float64")
104
+ def_gen.standard_normal(size=1, dtype="f8")
105
+ def_gen.standard_normal(out=D_out)
106
+ def_gen.standard_normal(size=1, dtype="float64")
107
+ def_gen.standard_normal(size=1, dtype="float64", out=D_out)
108
+
109
+ def_gen.random()
110
+ def_gen.random(dtype=np.float32)
111
+ def_gen.random(dtype="float32")
112
+ def_gen.random(dtype="double")
113
+ def_gen.random(dtype=np.float64)
114
+ def_gen.random(size=None)
115
+ def_gen.random(size=1)
116
+ def_gen.random(size=1, dtype=np.float32)
117
+ def_gen.random(size=1, dtype="f4")
118
+ def_gen.random(size=1, dtype="float32", out=S_out)
119
+ def_gen.random(dtype=np.float32, out=S_out)
120
+ def_gen.random(size=1, dtype=np.float64)
121
+ def_gen.random(size=1, dtype="float64")
122
+ def_gen.random(size=1, dtype="f8")
123
+ def_gen.random(out=D_out)
124
+ def_gen.random(size=1, dtype="float64")
125
+ def_gen.random(size=1, dtype="float64", out=D_out)
126
+
127
+ def_gen.standard_cauchy()
128
+ def_gen.standard_cauchy(size=None)
129
+ def_gen.standard_cauchy(size=1)
130
+
131
+ def_gen.standard_exponential()
132
+ def_gen.standard_exponential(method="inv")
133
+ def_gen.standard_exponential(dtype=np.float32)
134
+ def_gen.standard_exponential(dtype="float32")
135
+ def_gen.standard_exponential(dtype="double")
136
+ def_gen.standard_exponential(dtype=np.float64)
137
+ def_gen.standard_exponential(size=None)
138
+ def_gen.standard_exponential(size=None, method="inv")
139
+ def_gen.standard_exponential(size=1, method="inv")
140
+ def_gen.standard_exponential(size=1, dtype=np.float32)
141
+ def_gen.standard_exponential(size=1, dtype="f4", method="inv")
142
+ def_gen.standard_exponential(size=1, dtype="float32", out=S_out)
143
+ def_gen.standard_exponential(dtype=np.float32, out=S_out)
144
+ def_gen.standard_exponential(size=1, dtype=np.float64, method="inv")
145
+ def_gen.standard_exponential(size=1, dtype="float64")
146
+ def_gen.standard_exponential(size=1, dtype="f8")
147
+ def_gen.standard_exponential(out=D_out)
148
+ def_gen.standard_exponential(size=1, dtype="float64")
149
+ def_gen.standard_exponential(size=1, dtype="float64", out=D_out)
150
+
151
+ def_gen.zipf(1.5)
152
+ def_gen.zipf(1.5, size=None)
153
+ def_gen.zipf(1.5, size=1)
154
+ def_gen.zipf(D_arr_1p5)
155
+ def_gen.zipf(D_arr_1p5, size=1)
156
+ def_gen.zipf(D_arr_like_1p5)
157
+ def_gen.zipf(D_arr_like_1p5, size=1)
158
+
159
+ def_gen.weibull(0.5)
160
+ def_gen.weibull(0.5, size=None)
161
+ def_gen.weibull(0.5, size=1)
162
+ def_gen.weibull(D_arr_0p5)
163
+ def_gen.weibull(D_arr_0p5, size=1)
164
+ def_gen.weibull(D_arr_like_0p5)
165
+ def_gen.weibull(D_arr_like_0p5, size=1)
166
+
167
+ def_gen.standard_t(0.5)
168
+ def_gen.standard_t(0.5, size=None)
169
+ def_gen.standard_t(0.5, size=1)
170
+ def_gen.standard_t(D_arr_0p5)
171
+ def_gen.standard_t(D_arr_0p5, size=1)
172
+ def_gen.standard_t(D_arr_like_0p5)
173
+ def_gen.standard_t(D_arr_like_0p5, size=1)
174
+
175
+ def_gen.poisson(0.5)
176
+ def_gen.poisson(0.5, size=None)
177
+ def_gen.poisson(0.5, size=1)
178
+ def_gen.poisson(D_arr_0p5)
179
+ def_gen.poisson(D_arr_0p5, size=1)
180
+ def_gen.poisson(D_arr_like_0p5)
181
+ def_gen.poisson(D_arr_like_0p5, size=1)
182
+
183
+ def_gen.power(0.5)
184
+ def_gen.power(0.5, size=None)
185
+ def_gen.power(0.5, size=1)
186
+ def_gen.power(D_arr_0p5)
187
+ def_gen.power(D_arr_0p5, size=1)
188
+ def_gen.power(D_arr_like_0p5)
189
+ def_gen.power(D_arr_like_0p5, size=1)
190
+
191
+ def_gen.pareto(0.5)
192
+ def_gen.pareto(0.5, size=None)
193
+ def_gen.pareto(0.5, size=1)
194
+ def_gen.pareto(D_arr_0p5)
195
+ def_gen.pareto(D_arr_0p5, size=1)
196
+ def_gen.pareto(D_arr_like_0p5)
197
+ def_gen.pareto(D_arr_like_0p5, size=1)
198
+
199
+ def_gen.chisquare(0.5)
200
+ def_gen.chisquare(0.5, size=None)
201
+ def_gen.chisquare(0.5, size=1)
202
+ def_gen.chisquare(D_arr_0p5)
203
+ def_gen.chisquare(D_arr_0p5, size=1)
204
+ def_gen.chisquare(D_arr_like_0p5)
205
+ def_gen.chisquare(D_arr_like_0p5, size=1)
206
+
207
+ def_gen.exponential(0.5)
208
+ def_gen.exponential(0.5, size=None)
209
+ def_gen.exponential(0.5, size=1)
210
+ def_gen.exponential(D_arr_0p5)
211
+ def_gen.exponential(D_arr_0p5, size=1)
212
+ def_gen.exponential(D_arr_like_0p5)
213
+ def_gen.exponential(D_arr_like_0p5, size=1)
214
+
215
+ def_gen.geometric(0.5)
216
+ def_gen.geometric(0.5, size=None)
217
+ def_gen.geometric(0.5, size=1)
218
+ def_gen.geometric(D_arr_0p5)
219
+ def_gen.geometric(D_arr_0p5, size=1)
220
+ def_gen.geometric(D_arr_like_0p5)
221
+ def_gen.geometric(D_arr_like_0p5, size=1)
222
+
223
+ def_gen.logseries(0.5)
224
+ def_gen.logseries(0.5, size=None)
225
+ def_gen.logseries(0.5, size=1)
226
+ def_gen.logseries(D_arr_0p5)
227
+ def_gen.logseries(D_arr_0p5, size=1)
228
+ def_gen.logseries(D_arr_like_0p5)
229
+ def_gen.logseries(D_arr_like_0p5, size=1)
230
+
231
+ def_gen.rayleigh(0.5)
232
+ def_gen.rayleigh(0.5, size=None)
233
+ def_gen.rayleigh(0.5, size=1)
234
+ def_gen.rayleigh(D_arr_0p5)
235
+ def_gen.rayleigh(D_arr_0p5, size=1)
236
+ def_gen.rayleigh(D_arr_like_0p5)
237
+ def_gen.rayleigh(D_arr_like_0p5, size=1)
238
+
239
+ def_gen.standard_gamma(0.5)
240
+ def_gen.standard_gamma(0.5, size=None)
241
+ def_gen.standard_gamma(0.5, dtype="float32")
242
+ def_gen.standard_gamma(0.5, size=None, dtype="float32")
243
+ def_gen.standard_gamma(0.5, size=1)
244
+ def_gen.standard_gamma(D_arr_0p5)
245
+ def_gen.standard_gamma(D_arr_0p5, dtype="f4")
246
+ def_gen.standard_gamma(0.5, size=1, dtype="float32", out=S_out)
247
+ def_gen.standard_gamma(D_arr_0p5, dtype=np.float32, out=S_out)
248
+ def_gen.standard_gamma(D_arr_0p5, size=1)
249
+ def_gen.standard_gamma(D_arr_like_0p5)
250
+ def_gen.standard_gamma(D_arr_like_0p5, size=1)
251
+ def_gen.standard_gamma(0.5, out=D_out)
252
+ def_gen.standard_gamma(D_arr_like_0p5, out=D_out)
253
+ def_gen.standard_gamma(D_arr_like_0p5, size=1)
254
+ def_gen.standard_gamma(D_arr_like_0p5, size=1, out=D_out, dtype=np.float64)
255
+
256
+ def_gen.vonmises(0.5, 0.5)
257
+ def_gen.vonmises(0.5, 0.5, size=None)
258
+ def_gen.vonmises(0.5, 0.5, size=1)
259
+ def_gen.vonmises(D_arr_0p5, 0.5)
260
+ def_gen.vonmises(0.5, D_arr_0p5)
261
+ def_gen.vonmises(D_arr_0p5, 0.5, size=1)
262
+ def_gen.vonmises(0.5, D_arr_0p5, size=1)
263
+ def_gen.vonmises(D_arr_like_0p5, 0.5)
264
+ def_gen.vonmises(0.5, D_arr_like_0p5)
265
+ def_gen.vonmises(D_arr_0p5, D_arr_0p5)
266
+ def_gen.vonmises(D_arr_like_0p5, D_arr_like_0p5)
267
+ def_gen.vonmises(D_arr_0p5, D_arr_0p5, size=1)
268
+ def_gen.vonmises(D_arr_like_0p5, D_arr_like_0p5, size=1)
269
+
270
+ def_gen.wald(0.5, 0.5)
271
+ def_gen.wald(0.5, 0.5, size=None)
272
+ def_gen.wald(0.5, 0.5, size=1)
273
+ def_gen.wald(D_arr_0p5, 0.5)
274
+ def_gen.wald(0.5, D_arr_0p5)
275
+ def_gen.wald(D_arr_0p5, 0.5, size=1)
276
+ def_gen.wald(0.5, D_arr_0p5, size=1)
277
+ def_gen.wald(D_arr_like_0p5, 0.5)
278
+ def_gen.wald(0.5, D_arr_like_0p5)
279
+ def_gen.wald(D_arr_0p5, D_arr_0p5)
280
+ def_gen.wald(D_arr_like_0p5, D_arr_like_0p5)
281
+ def_gen.wald(D_arr_0p5, D_arr_0p5, size=1)
282
+ def_gen.wald(D_arr_like_0p5, D_arr_like_0p5, size=1)
283
+
284
+ def_gen.uniform(0.5, 0.5)
285
+ def_gen.uniform(0.5, 0.5, size=None)
286
+ def_gen.uniform(0.5, 0.5, size=1)
287
+ def_gen.uniform(D_arr_0p5, 0.5)
288
+ def_gen.uniform(0.5, D_arr_0p5)
289
+ def_gen.uniform(D_arr_0p5, 0.5, size=1)
290
+ def_gen.uniform(0.5, D_arr_0p5, size=1)
291
+ def_gen.uniform(D_arr_like_0p5, 0.5)
292
+ def_gen.uniform(0.5, D_arr_like_0p5)
293
+ def_gen.uniform(D_arr_0p5, D_arr_0p5)
294
+ def_gen.uniform(D_arr_like_0p5, D_arr_like_0p5)
295
+ def_gen.uniform(D_arr_0p5, D_arr_0p5, size=1)
296
+ def_gen.uniform(D_arr_like_0p5, D_arr_like_0p5, size=1)
297
+
298
+ def_gen.beta(0.5, 0.5)
299
+ def_gen.beta(0.5, 0.5, size=None)
300
+ def_gen.beta(0.5, 0.5, size=1)
301
+ def_gen.beta(D_arr_0p5, 0.5)
302
+ def_gen.beta(0.5, D_arr_0p5)
303
+ def_gen.beta(D_arr_0p5, 0.5, size=1)
304
+ def_gen.beta(0.5, D_arr_0p5, size=1)
305
+ def_gen.beta(D_arr_like_0p5, 0.5)
306
+ def_gen.beta(0.5, D_arr_like_0p5)
307
+ def_gen.beta(D_arr_0p5, D_arr_0p5)
308
+ def_gen.beta(D_arr_like_0p5, D_arr_like_0p5)
309
+ def_gen.beta(D_arr_0p5, D_arr_0p5, size=1)
310
+ def_gen.beta(D_arr_like_0p5, D_arr_like_0p5, size=1)
311
+
312
+ def_gen.f(0.5, 0.5)
313
+ def_gen.f(0.5, 0.5, size=None)
314
+ def_gen.f(0.5, 0.5, size=1)
315
+ def_gen.f(D_arr_0p5, 0.5)
316
+ def_gen.f(0.5, D_arr_0p5)
317
+ def_gen.f(D_arr_0p5, 0.5, size=1)
318
+ def_gen.f(0.5, D_arr_0p5, size=1)
319
+ def_gen.f(D_arr_like_0p5, 0.5)
320
+ def_gen.f(0.5, D_arr_like_0p5)
321
+ def_gen.f(D_arr_0p5, D_arr_0p5)
322
+ def_gen.f(D_arr_like_0p5, D_arr_like_0p5)
323
+ def_gen.f(D_arr_0p5, D_arr_0p5, size=1)
324
+ def_gen.f(D_arr_like_0p5, D_arr_like_0p5, size=1)
325
+
326
+ def_gen.gamma(0.5, 0.5)
327
+ def_gen.gamma(0.5, 0.5, size=None)
328
+ def_gen.gamma(0.5, 0.5, size=1)
329
+ def_gen.gamma(D_arr_0p5, 0.5)
330
+ def_gen.gamma(0.5, D_arr_0p5)
331
+ def_gen.gamma(D_arr_0p5, 0.5, size=1)
332
+ def_gen.gamma(0.5, D_arr_0p5, size=1)
333
+ def_gen.gamma(D_arr_like_0p5, 0.5)
334
+ def_gen.gamma(0.5, D_arr_like_0p5)
335
+ def_gen.gamma(D_arr_0p5, D_arr_0p5)
336
+ def_gen.gamma(D_arr_like_0p5, D_arr_like_0p5)
337
+ def_gen.gamma(D_arr_0p5, D_arr_0p5, size=1)
338
+ def_gen.gamma(D_arr_like_0p5, D_arr_like_0p5, size=1)
339
+
340
+ def_gen.gumbel(0.5, 0.5)
341
+ def_gen.gumbel(0.5, 0.5, size=None)
342
+ def_gen.gumbel(0.5, 0.5, size=1)
343
+ def_gen.gumbel(D_arr_0p5, 0.5)
344
+ def_gen.gumbel(0.5, D_arr_0p5)
345
+ def_gen.gumbel(D_arr_0p5, 0.5, size=1)
346
+ def_gen.gumbel(0.5, D_arr_0p5, size=1)
347
+ def_gen.gumbel(D_arr_like_0p5, 0.5)
348
+ def_gen.gumbel(0.5, D_arr_like_0p5)
349
+ def_gen.gumbel(D_arr_0p5, D_arr_0p5)
350
+ def_gen.gumbel(D_arr_like_0p5, D_arr_like_0p5)
351
+ def_gen.gumbel(D_arr_0p5, D_arr_0p5, size=1)
352
+ def_gen.gumbel(D_arr_like_0p5, D_arr_like_0p5, size=1)
353
+
354
+ def_gen.laplace(0.5, 0.5)
355
+ def_gen.laplace(0.5, 0.5, size=None)
356
+ def_gen.laplace(0.5, 0.5, size=1)
357
+ def_gen.laplace(D_arr_0p5, 0.5)
358
+ def_gen.laplace(0.5, D_arr_0p5)
359
+ def_gen.laplace(D_arr_0p5, 0.5, size=1)
360
+ def_gen.laplace(0.5, D_arr_0p5, size=1)
361
+ def_gen.laplace(D_arr_like_0p5, 0.5)
362
+ def_gen.laplace(0.5, D_arr_like_0p5)
363
+ def_gen.laplace(D_arr_0p5, D_arr_0p5)
364
+ def_gen.laplace(D_arr_like_0p5, D_arr_like_0p5)
365
+ def_gen.laplace(D_arr_0p5, D_arr_0p5, size=1)
366
+ def_gen.laplace(D_arr_like_0p5, D_arr_like_0p5, size=1)
367
+
368
+ def_gen.logistic(0.5, 0.5)
369
+ def_gen.logistic(0.5, 0.5, size=None)
370
+ def_gen.logistic(0.5, 0.5, size=1)
371
+ def_gen.logistic(D_arr_0p5, 0.5)
372
+ def_gen.logistic(0.5, D_arr_0p5)
373
+ def_gen.logistic(D_arr_0p5, 0.5, size=1)
374
+ def_gen.logistic(0.5, D_arr_0p5, size=1)
375
+ def_gen.logistic(D_arr_like_0p5, 0.5)
376
+ def_gen.logistic(0.5, D_arr_like_0p5)
377
+ def_gen.logistic(D_arr_0p5, D_arr_0p5)
378
+ def_gen.logistic(D_arr_like_0p5, D_arr_like_0p5)
379
+ def_gen.logistic(D_arr_0p5, D_arr_0p5, size=1)
380
+ def_gen.logistic(D_arr_like_0p5, D_arr_like_0p5, size=1)
381
+
382
+ def_gen.lognormal(0.5, 0.5)
383
+ def_gen.lognormal(0.5, 0.5, size=None)
384
+ def_gen.lognormal(0.5, 0.5, size=1)
385
+ def_gen.lognormal(D_arr_0p5, 0.5)
386
+ def_gen.lognormal(0.5, D_arr_0p5)
387
+ def_gen.lognormal(D_arr_0p5, 0.5, size=1)
388
+ def_gen.lognormal(0.5, D_arr_0p5, size=1)
389
+ def_gen.lognormal(D_arr_like_0p5, 0.5)
390
+ def_gen.lognormal(0.5, D_arr_like_0p5)
391
+ def_gen.lognormal(D_arr_0p5, D_arr_0p5)
392
+ def_gen.lognormal(D_arr_like_0p5, D_arr_like_0p5)
393
+ def_gen.lognormal(D_arr_0p5, D_arr_0p5, size=1)
394
+ def_gen.lognormal(D_arr_like_0p5, D_arr_like_0p5, size=1)
395
+
396
+ def_gen.noncentral_chisquare(0.5, 0.5)
397
+ def_gen.noncentral_chisquare(0.5, 0.5, size=None)
398
+ def_gen.noncentral_chisquare(0.5, 0.5, size=1)
399
+ def_gen.noncentral_chisquare(D_arr_0p5, 0.5)
400
+ def_gen.noncentral_chisquare(0.5, D_arr_0p5)
401
+ def_gen.noncentral_chisquare(D_arr_0p5, 0.5, size=1)
402
+ def_gen.noncentral_chisquare(0.5, D_arr_0p5, size=1)
403
+ def_gen.noncentral_chisquare(D_arr_like_0p5, 0.5)
404
+ def_gen.noncentral_chisquare(0.5, D_arr_like_0p5)
405
+ def_gen.noncentral_chisquare(D_arr_0p5, D_arr_0p5)
406
+ def_gen.noncentral_chisquare(D_arr_like_0p5, D_arr_like_0p5)
407
+ def_gen.noncentral_chisquare(D_arr_0p5, D_arr_0p5, size=1)
408
+ def_gen.noncentral_chisquare(D_arr_like_0p5, D_arr_like_0p5, size=1)
409
+
410
+ def_gen.normal(0.5, 0.5)
411
+ def_gen.normal(0.5, 0.5, size=None)
412
+ def_gen.normal(0.5, 0.5, size=1)
413
+ def_gen.normal(D_arr_0p5, 0.5)
414
+ def_gen.normal(0.5, D_arr_0p5)
415
+ def_gen.normal(D_arr_0p5, 0.5, size=1)
416
+ def_gen.normal(0.5, D_arr_0p5, size=1)
417
+ def_gen.normal(D_arr_like_0p5, 0.5)
418
+ def_gen.normal(0.5, D_arr_like_0p5)
419
+ def_gen.normal(D_arr_0p5, D_arr_0p5)
420
+ def_gen.normal(D_arr_like_0p5, D_arr_like_0p5)
421
+ def_gen.normal(D_arr_0p5, D_arr_0p5, size=1)
422
+ def_gen.normal(D_arr_like_0p5, D_arr_like_0p5, size=1)
423
+
424
+ def_gen.triangular(0.1, 0.5, 0.9)
425
+ def_gen.triangular(0.1, 0.5, 0.9, size=None)
426
+ def_gen.triangular(0.1, 0.5, 0.9, size=1)
427
+ def_gen.triangular(D_arr_0p1, 0.5, 0.9)
428
+ def_gen.triangular(0.1, D_arr_0p5, 0.9)
429
+ def_gen.triangular(D_arr_0p1, 0.5, D_arr_like_0p9, size=1)
430
+ def_gen.triangular(0.1, D_arr_0p5, 0.9, size=1)
431
+ def_gen.triangular(D_arr_like_0p1, 0.5, D_arr_0p9)
432
+ def_gen.triangular(0.5, D_arr_like_0p5, 0.9)
433
+ def_gen.triangular(D_arr_0p1, D_arr_0p5, 0.9)
434
+ def_gen.triangular(D_arr_like_0p1, D_arr_like_0p5, 0.9)
435
+ def_gen.triangular(D_arr_0p1, D_arr_0p5, D_arr_0p9, size=1)
436
+ def_gen.triangular(D_arr_like_0p1, D_arr_like_0p5, D_arr_like_0p9, size=1)
437
+
438
+ def_gen.noncentral_f(0.1, 0.5, 0.9)
439
+ def_gen.noncentral_f(0.1, 0.5, 0.9, size=None)
440
+ def_gen.noncentral_f(0.1, 0.5, 0.9, size=1)
441
+ def_gen.noncentral_f(D_arr_0p1, 0.5, 0.9)
442
+ def_gen.noncentral_f(0.1, D_arr_0p5, 0.9)
443
+ def_gen.noncentral_f(D_arr_0p1, 0.5, D_arr_like_0p9, size=1)
444
+ def_gen.noncentral_f(0.1, D_arr_0p5, 0.9, size=1)
445
+ def_gen.noncentral_f(D_arr_like_0p1, 0.5, D_arr_0p9)
446
+ def_gen.noncentral_f(0.5, D_arr_like_0p5, 0.9)
447
+ def_gen.noncentral_f(D_arr_0p1, D_arr_0p5, 0.9)
448
+ def_gen.noncentral_f(D_arr_like_0p1, D_arr_like_0p5, 0.9)
449
+ def_gen.noncentral_f(D_arr_0p1, D_arr_0p5, D_arr_0p9, size=1)
450
+ def_gen.noncentral_f(D_arr_like_0p1, D_arr_like_0p5, D_arr_like_0p9, size=1)
451
+
452
+ def_gen.binomial(10, 0.5)
453
+ def_gen.binomial(10, 0.5, size=None)
454
+ def_gen.binomial(10, 0.5, size=1)
455
+ def_gen.binomial(I_arr_10, 0.5)
456
+ def_gen.binomial(10, D_arr_0p5)
457
+ def_gen.binomial(I_arr_10, 0.5, size=1)
458
+ def_gen.binomial(10, D_arr_0p5, size=1)
459
+ def_gen.binomial(I_arr_like_10, 0.5)
460
+ def_gen.binomial(10, D_arr_like_0p5)
461
+ def_gen.binomial(I_arr_10, D_arr_0p5)
462
+ def_gen.binomial(I_arr_like_10, D_arr_like_0p5)
463
+ def_gen.binomial(I_arr_10, D_arr_0p5, size=1)
464
+ def_gen.binomial(I_arr_like_10, D_arr_like_0p5, size=1)
465
+
466
+ def_gen.negative_binomial(10, 0.5)
467
+ def_gen.negative_binomial(10, 0.5, size=None)
468
+ def_gen.negative_binomial(10, 0.5, size=1)
469
+ def_gen.negative_binomial(I_arr_10, 0.5)
470
+ def_gen.negative_binomial(10, D_arr_0p5)
471
+ def_gen.negative_binomial(I_arr_10, 0.5, size=1)
472
+ def_gen.negative_binomial(10, D_arr_0p5, size=1)
473
+ def_gen.negative_binomial(I_arr_like_10, 0.5)
474
+ def_gen.negative_binomial(10, D_arr_like_0p5)
475
+ def_gen.negative_binomial(I_arr_10, D_arr_0p5)
476
+ def_gen.negative_binomial(I_arr_like_10, D_arr_like_0p5)
477
+ def_gen.negative_binomial(I_arr_10, D_arr_0p5, size=1)
478
+ def_gen.negative_binomial(I_arr_like_10, D_arr_like_0p5, size=1)
479
+
480
+ def_gen.hypergeometric(20, 20, 10)
481
+ def_gen.hypergeometric(20, 20, 10, size=None)
482
+ def_gen.hypergeometric(20, 20, 10, size=1)
483
+ def_gen.hypergeometric(I_arr_20, 20, 10)
484
+ def_gen.hypergeometric(20, I_arr_20, 10)
485
+ def_gen.hypergeometric(I_arr_20, 20, I_arr_like_10, size=1)
486
+ def_gen.hypergeometric(20, I_arr_20, 10, size=1)
487
+ def_gen.hypergeometric(I_arr_like_20, 20, I_arr_10)
488
+ def_gen.hypergeometric(20, I_arr_like_20, 10)
489
+ def_gen.hypergeometric(I_arr_20, I_arr_20, 10)
490
+ def_gen.hypergeometric(I_arr_like_20, I_arr_like_20, 10)
491
+ def_gen.hypergeometric(I_arr_20, I_arr_20, I_arr_10, size=1)
492
+ def_gen.hypergeometric(I_arr_like_20, I_arr_like_20, I_arr_like_10, size=1)
493
+
494
+ I_int64_100: np.ndarray[Any, np.dtype[np.int64]] = np.array([100], dtype=np.int64)
495
+
496
+ def_gen.integers(0, 100)
497
+ def_gen.integers(100)
498
+ def_gen.integers([100])
499
+ def_gen.integers(0, [100])
500
+
501
+ I_bool_low: np.ndarray[Any, np.dtype[np.bool]] = np.array([0], dtype=np.bool)
502
+ I_bool_low_like: list[int] = [0]
503
+ I_bool_high_open: np.ndarray[Any, np.dtype[np.bool]] = np.array([1], dtype=np.bool)
504
+ I_bool_high_closed: np.ndarray[Any, np.dtype[np.bool]] = np.array([1], dtype=np.bool)
505
+
506
+ def_gen.integers(2, dtype=bool)
507
+ def_gen.integers(0, 2, dtype=bool)
508
+ def_gen.integers(1, dtype=bool, endpoint=True)
509
+ def_gen.integers(0, 1, dtype=bool, endpoint=True)
510
+ def_gen.integers(I_bool_low_like, 1, dtype=bool, endpoint=True)
511
+ def_gen.integers(I_bool_high_open, dtype=bool)
512
+ def_gen.integers(I_bool_low, I_bool_high_open, dtype=bool)
513
+ def_gen.integers(0, I_bool_high_open, dtype=bool)
514
+ def_gen.integers(I_bool_high_closed, dtype=bool, endpoint=True)
515
+ def_gen.integers(I_bool_low, I_bool_high_closed, dtype=bool, endpoint=True)
516
+ def_gen.integers(0, I_bool_high_closed, dtype=bool, endpoint=True)
517
+
518
+ def_gen.integers(2, dtype=np.bool)
519
+ def_gen.integers(0, 2, dtype=np.bool)
520
+ def_gen.integers(1, dtype=np.bool, endpoint=True)
521
+ def_gen.integers(0, 1, dtype=np.bool, endpoint=True)
522
+ def_gen.integers(I_bool_low_like, 1, dtype=np.bool, endpoint=True)
523
+ def_gen.integers(I_bool_high_open, dtype=np.bool)
524
+ def_gen.integers(I_bool_low, I_bool_high_open, dtype=np.bool)
525
+ def_gen.integers(0, I_bool_high_open, dtype=np.bool)
526
+ def_gen.integers(I_bool_high_closed, dtype=np.bool, endpoint=True)
527
+ def_gen.integers(I_bool_low, I_bool_high_closed, dtype=np.bool, endpoint=True)
528
+ def_gen.integers(0, I_bool_high_closed, dtype=np.bool, endpoint=True)
529
+
530
+ I_u1_low: np.ndarray[Any, np.dtype[np.uint8]] = np.array([0], dtype=np.uint8)
531
+ I_u1_low_like: list[int] = [0]
532
+ I_u1_high_open: np.ndarray[Any, np.dtype[np.uint8]] = np.array([255], dtype=np.uint8)
533
+ I_u1_high_closed: np.ndarray[Any, np.dtype[np.uint8]] = np.array([255], dtype=np.uint8)
534
+
535
+ def_gen.integers(256, dtype="u1")
536
+ def_gen.integers(0, 256, dtype="u1")
537
+ def_gen.integers(255, dtype="u1", endpoint=True)
538
+ def_gen.integers(0, 255, dtype="u1", endpoint=True)
539
+ def_gen.integers(I_u1_low_like, 255, dtype="u1", endpoint=True)
540
+ def_gen.integers(I_u1_high_open, dtype="u1")
541
+ def_gen.integers(I_u1_low, I_u1_high_open, dtype="u1")
542
+ def_gen.integers(0, I_u1_high_open, dtype="u1")
543
+ def_gen.integers(I_u1_high_closed, dtype="u1", endpoint=True)
544
+ def_gen.integers(I_u1_low, I_u1_high_closed, dtype="u1", endpoint=True)
545
+ def_gen.integers(0, I_u1_high_closed, dtype="u1", endpoint=True)
546
+
547
+ def_gen.integers(256, dtype="uint8")
548
+ def_gen.integers(0, 256, dtype="uint8")
549
+ def_gen.integers(255, dtype="uint8", endpoint=True)
550
+ def_gen.integers(0, 255, dtype="uint8", endpoint=True)
551
+ def_gen.integers(I_u1_low_like, 255, dtype="uint8", endpoint=True)
552
+ def_gen.integers(I_u1_high_open, dtype="uint8")
553
+ def_gen.integers(I_u1_low, I_u1_high_open, dtype="uint8")
554
+ def_gen.integers(0, I_u1_high_open, dtype="uint8")
555
+ def_gen.integers(I_u1_high_closed, dtype="uint8", endpoint=True)
556
+ def_gen.integers(I_u1_low, I_u1_high_closed, dtype="uint8", endpoint=True)
557
+ def_gen.integers(0, I_u1_high_closed, dtype="uint8", endpoint=True)
558
+
559
+ def_gen.integers(256, dtype=np.uint8)
560
+ def_gen.integers(0, 256, dtype=np.uint8)
561
+ def_gen.integers(255, dtype=np.uint8, endpoint=True)
562
+ def_gen.integers(0, 255, dtype=np.uint8, endpoint=True)
563
+ def_gen.integers(I_u1_low_like, 255, dtype=np.uint8, endpoint=True)
564
+ def_gen.integers(I_u1_high_open, dtype=np.uint8)
565
+ def_gen.integers(I_u1_low, I_u1_high_open, dtype=np.uint8)
566
+ def_gen.integers(0, I_u1_high_open, dtype=np.uint8)
567
+ def_gen.integers(I_u1_high_closed, dtype=np.uint8, endpoint=True)
568
+ def_gen.integers(I_u1_low, I_u1_high_closed, dtype=np.uint8, endpoint=True)
569
+ def_gen.integers(0, I_u1_high_closed, dtype=np.uint8, endpoint=True)
570
+
571
+ I_u2_low: np.ndarray[Any, np.dtype[np.uint16]] = np.array([0], dtype=np.uint16)
572
+ I_u2_low_like: list[int] = [0]
573
+ I_u2_high_open: np.ndarray[Any, np.dtype[np.uint16]] = np.array([65535], dtype=np.uint16)
574
+ I_u2_high_closed: np.ndarray[Any, np.dtype[np.uint16]] = np.array([65535], dtype=np.uint16)
575
+
576
+ def_gen.integers(65536, dtype="u2")
577
+ def_gen.integers(0, 65536, dtype="u2")
578
+ def_gen.integers(65535, dtype="u2", endpoint=True)
579
+ def_gen.integers(0, 65535, dtype="u2", endpoint=True)
580
+ def_gen.integers(I_u2_low_like, 65535, dtype="u2", endpoint=True)
581
+ def_gen.integers(I_u2_high_open, dtype="u2")
582
+ def_gen.integers(I_u2_low, I_u2_high_open, dtype="u2")
583
+ def_gen.integers(0, I_u2_high_open, dtype="u2")
584
+ def_gen.integers(I_u2_high_closed, dtype="u2", endpoint=True)
585
+ def_gen.integers(I_u2_low, I_u2_high_closed, dtype="u2", endpoint=True)
586
+ def_gen.integers(0, I_u2_high_closed, dtype="u2", endpoint=True)
587
+
588
+ def_gen.integers(65536, dtype="uint16")
589
+ def_gen.integers(0, 65536, dtype="uint16")
590
+ def_gen.integers(65535, dtype="uint16", endpoint=True)
591
+ def_gen.integers(0, 65535, dtype="uint16", endpoint=True)
592
+ def_gen.integers(I_u2_low_like, 65535, dtype="uint16", endpoint=True)
593
+ def_gen.integers(I_u2_high_open, dtype="uint16")
594
+ def_gen.integers(I_u2_low, I_u2_high_open, dtype="uint16")
595
+ def_gen.integers(0, I_u2_high_open, dtype="uint16")
596
+ def_gen.integers(I_u2_high_closed, dtype="uint16", endpoint=True)
597
+ def_gen.integers(I_u2_low, I_u2_high_closed, dtype="uint16", endpoint=True)
598
+ def_gen.integers(0, I_u2_high_closed, dtype="uint16", endpoint=True)
599
+
600
+ def_gen.integers(65536, dtype=np.uint16)
601
+ def_gen.integers(0, 65536, dtype=np.uint16)
602
+ def_gen.integers(65535, dtype=np.uint16, endpoint=True)
603
+ def_gen.integers(0, 65535, dtype=np.uint16, endpoint=True)
604
+ def_gen.integers(I_u2_low_like, 65535, dtype=np.uint16, endpoint=True)
605
+ def_gen.integers(I_u2_high_open, dtype=np.uint16)
606
+ def_gen.integers(I_u2_low, I_u2_high_open, dtype=np.uint16)
607
+ def_gen.integers(0, I_u2_high_open, dtype=np.uint16)
608
+ def_gen.integers(I_u2_high_closed, dtype=np.uint16, endpoint=True)
609
+ def_gen.integers(I_u2_low, I_u2_high_closed, dtype=np.uint16, endpoint=True)
610
+ def_gen.integers(0, I_u2_high_closed, dtype=np.uint16, endpoint=True)
611
+
612
+ I_u4_low: np.ndarray[Any, np.dtype[np.uint32]] = np.array([0], dtype=np.uint32)
613
+ I_u4_low_like: list[int] = [0]
614
+ I_u4_high_open: np.ndarray[Any, np.dtype[np.uint32]] = np.array([4294967295], dtype=np.uint32)
615
+ I_u4_high_closed: np.ndarray[Any, np.dtype[np.uint32]] = np.array([4294967295], dtype=np.uint32)
616
+
617
+ def_gen.integers(4294967296, dtype="u4")
618
+ def_gen.integers(0, 4294967296, dtype="u4")
619
+ def_gen.integers(4294967295, dtype="u4", endpoint=True)
620
+ def_gen.integers(0, 4294967295, dtype="u4", endpoint=True)
621
+ def_gen.integers(I_u4_low_like, 4294967295, dtype="u4", endpoint=True)
622
+ def_gen.integers(I_u4_high_open, dtype="u4")
623
+ def_gen.integers(I_u4_low, I_u4_high_open, dtype="u4")
624
+ def_gen.integers(0, I_u4_high_open, dtype="u4")
625
+ def_gen.integers(I_u4_high_closed, dtype="u4", endpoint=True)
626
+ def_gen.integers(I_u4_low, I_u4_high_closed, dtype="u4", endpoint=True)
627
+ def_gen.integers(0, I_u4_high_closed, dtype="u4", endpoint=True)
628
+
629
+ def_gen.integers(4294967296, dtype="uint32")
630
+ def_gen.integers(0, 4294967296, dtype="uint32")
631
+ def_gen.integers(4294967295, dtype="uint32", endpoint=True)
632
+ def_gen.integers(0, 4294967295, dtype="uint32", endpoint=True)
633
+ def_gen.integers(I_u4_low_like, 4294967295, dtype="uint32", endpoint=True)
634
+ def_gen.integers(I_u4_high_open, dtype="uint32")
635
+ def_gen.integers(I_u4_low, I_u4_high_open, dtype="uint32")
636
+ def_gen.integers(0, I_u4_high_open, dtype="uint32")
637
+ def_gen.integers(I_u4_high_closed, dtype="uint32", endpoint=True)
638
+ def_gen.integers(I_u4_low, I_u4_high_closed, dtype="uint32", endpoint=True)
639
+ def_gen.integers(0, I_u4_high_closed, dtype="uint32", endpoint=True)
640
+
641
+ def_gen.integers(4294967296, dtype=np.uint32)
642
+ def_gen.integers(0, 4294967296, dtype=np.uint32)
643
+ def_gen.integers(4294967295, dtype=np.uint32, endpoint=True)
644
+ def_gen.integers(0, 4294967295, dtype=np.uint32, endpoint=True)
645
+ def_gen.integers(I_u4_low_like, 4294967295, dtype=np.uint32, endpoint=True)
646
+ def_gen.integers(I_u4_high_open, dtype=np.uint32)
647
+ def_gen.integers(I_u4_low, I_u4_high_open, dtype=np.uint32)
648
+ def_gen.integers(0, I_u4_high_open, dtype=np.uint32)
649
+ def_gen.integers(I_u4_high_closed, dtype=np.uint32, endpoint=True)
650
+ def_gen.integers(I_u4_low, I_u4_high_closed, dtype=np.uint32, endpoint=True)
651
+ def_gen.integers(0, I_u4_high_closed, dtype=np.uint32, endpoint=True)
652
+
653
+ I_u8_low: np.ndarray[Any, np.dtype[np.uint64]] = np.array([0], dtype=np.uint64)
654
+ I_u8_low_like: list[int] = [0]
655
+ I_u8_high_open: np.ndarray[Any, np.dtype[np.uint64]] = np.array([18446744073709551615], dtype=np.uint64)
656
+ I_u8_high_closed: np.ndarray[Any, np.dtype[np.uint64]] = np.array([18446744073709551615], dtype=np.uint64)
657
+
658
+ def_gen.integers(18446744073709551616, dtype="u8")
659
+ def_gen.integers(0, 18446744073709551616, dtype="u8")
660
+ def_gen.integers(18446744073709551615, dtype="u8", endpoint=True)
661
+ def_gen.integers(0, 18446744073709551615, dtype="u8", endpoint=True)
662
+ def_gen.integers(I_u8_low_like, 18446744073709551615, dtype="u8", endpoint=True)
663
+ def_gen.integers(I_u8_high_open, dtype="u8")
664
+ def_gen.integers(I_u8_low, I_u8_high_open, dtype="u8")
665
+ def_gen.integers(0, I_u8_high_open, dtype="u8")
666
+ def_gen.integers(I_u8_high_closed, dtype="u8", endpoint=True)
667
+ def_gen.integers(I_u8_low, I_u8_high_closed, dtype="u8", endpoint=True)
668
+ def_gen.integers(0, I_u8_high_closed, dtype="u8", endpoint=True)
669
+
670
+ def_gen.integers(18446744073709551616, dtype="uint64")
671
+ def_gen.integers(0, 18446744073709551616, dtype="uint64")
672
+ def_gen.integers(18446744073709551615, dtype="uint64", endpoint=True)
673
+ def_gen.integers(0, 18446744073709551615, dtype="uint64", endpoint=True)
674
+ def_gen.integers(I_u8_low_like, 18446744073709551615, dtype="uint64", endpoint=True)
675
+ def_gen.integers(I_u8_high_open, dtype="uint64")
676
+ def_gen.integers(I_u8_low, I_u8_high_open, dtype="uint64")
677
+ def_gen.integers(0, I_u8_high_open, dtype="uint64")
678
+ def_gen.integers(I_u8_high_closed, dtype="uint64", endpoint=True)
679
+ def_gen.integers(I_u8_low, I_u8_high_closed, dtype="uint64", endpoint=True)
680
+ def_gen.integers(0, I_u8_high_closed, dtype="uint64", endpoint=True)
681
+
682
+ def_gen.integers(18446744073709551616, dtype=np.uint64)
683
+ def_gen.integers(0, 18446744073709551616, dtype=np.uint64)
684
+ def_gen.integers(18446744073709551615, dtype=np.uint64, endpoint=True)
685
+ def_gen.integers(0, 18446744073709551615, dtype=np.uint64, endpoint=True)
686
+ def_gen.integers(I_u8_low_like, 18446744073709551615, dtype=np.uint64, endpoint=True)
687
+ def_gen.integers(I_u8_high_open, dtype=np.uint64)
688
+ def_gen.integers(I_u8_low, I_u8_high_open, dtype=np.uint64)
689
+ def_gen.integers(0, I_u8_high_open, dtype=np.uint64)
690
+ def_gen.integers(I_u8_high_closed, dtype=np.uint64, endpoint=True)
691
+ def_gen.integers(I_u8_low, I_u8_high_closed, dtype=np.uint64, endpoint=True)
692
+ def_gen.integers(0, I_u8_high_closed, dtype=np.uint64, endpoint=True)
693
+
694
+ I_i1_low: np.ndarray[Any, np.dtype[np.int8]] = np.array([-128], dtype=np.int8)
695
+ I_i1_low_like: list[int] = [-128]
696
+ I_i1_high_open: np.ndarray[Any, np.dtype[np.int8]] = np.array([127], dtype=np.int8)
697
+ I_i1_high_closed: np.ndarray[Any, np.dtype[np.int8]] = np.array([127], dtype=np.int8)
698
+
699
+ def_gen.integers(128, dtype="i1")
700
+ def_gen.integers(-128, 128, dtype="i1")
701
+ def_gen.integers(127, dtype="i1", endpoint=True)
702
+ def_gen.integers(-128, 127, dtype="i1", endpoint=True)
703
+ def_gen.integers(I_i1_low_like, 127, dtype="i1", endpoint=True)
704
+ def_gen.integers(I_i1_high_open, dtype="i1")
705
+ def_gen.integers(I_i1_low, I_i1_high_open, dtype="i1")
706
+ def_gen.integers(-128, I_i1_high_open, dtype="i1")
707
+ def_gen.integers(I_i1_high_closed, dtype="i1", endpoint=True)
708
+ def_gen.integers(I_i1_low, I_i1_high_closed, dtype="i1", endpoint=True)
709
+ def_gen.integers(-128, I_i1_high_closed, dtype="i1", endpoint=True)
710
+
711
+ def_gen.integers(128, dtype="int8")
712
+ def_gen.integers(-128, 128, dtype="int8")
713
+ def_gen.integers(127, dtype="int8", endpoint=True)
714
+ def_gen.integers(-128, 127, dtype="int8", endpoint=True)
715
+ def_gen.integers(I_i1_low_like, 127, dtype="int8", endpoint=True)
716
+ def_gen.integers(I_i1_high_open, dtype="int8")
717
+ def_gen.integers(I_i1_low, I_i1_high_open, dtype="int8")
718
+ def_gen.integers(-128, I_i1_high_open, dtype="int8")
719
+ def_gen.integers(I_i1_high_closed, dtype="int8", endpoint=True)
720
+ def_gen.integers(I_i1_low, I_i1_high_closed, dtype="int8", endpoint=True)
721
+ def_gen.integers(-128, I_i1_high_closed, dtype="int8", endpoint=True)
722
+
723
+ def_gen.integers(128, dtype=np.int8)
724
+ def_gen.integers(-128, 128, dtype=np.int8)
725
+ def_gen.integers(127, dtype=np.int8, endpoint=True)
726
+ def_gen.integers(-128, 127, dtype=np.int8, endpoint=True)
727
+ def_gen.integers(I_i1_low_like, 127, dtype=np.int8, endpoint=True)
728
+ def_gen.integers(I_i1_high_open, dtype=np.int8)
729
+ def_gen.integers(I_i1_low, I_i1_high_open, dtype=np.int8)
730
+ def_gen.integers(-128, I_i1_high_open, dtype=np.int8)
731
+ def_gen.integers(I_i1_high_closed, dtype=np.int8, endpoint=True)
732
+ def_gen.integers(I_i1_low, I_i1_high_closed, dtype=np.int8, endpoint=True)
733
+ def_gen.integers(-128, I_i1_high_closed, dtype=np.int8, endpoint=True)
734
+
735
+ I_i2_low: np.ndarray[Any, np.dtype[np.int16]] = np.array([-32768], dtype=np.int16)
736
+ I_i2_low_like: list[int] = [-32768]
737
+ I_i2_high_open: np.ndarray[Any, np.dtype[np.int16]] = np.array([32767], dtype=np.int16)
738
+ I_i2_high_closed: np.ndarray[Any, np.dtype[np.int16]] = np.array([32767], dtype=np.int16)
739
+
740
+ def_gen.integers(32768, dtype="i2")
741
+ def_gen.integers(-32768, 32768, dtype="i2")
742
+ def_gen.integers(32767, dtype="i2", endpoint=True)
743
+ def_gen.integers(-32768, 32767, dtype="i2", endpoint=True)
744
+ def_gen.integers(I_i2_low_like, 32767, dtype="i2", endpoint=True)
745
+ def_gen.integers(I_i2_high_open, dtype="i2")
746
+ def_gen.integers(I_i2_low, I_i2_high_open, dtype="i2")
747
+ def_gen.integers(-32768, I_i2_high_open, dtype="i2")
748
+ def_gen.integers(I_i2_high_closed, dtype="i2", endpoint=True)
749
+ def_gen.integers(I_i2_low, I_i2_high_closed, dtype="i2", endpoint=True)
750
+ def_gen.integers(-32768, I_i2_high_closed, dtype="i2", endpoint=True)
751
+
752
+ def_gen.integers(32768, dtype="int16")
753
+ def_gen.integers(-32768, 32768, dtype="int16")
754
+ def_gen.integers(32767, dtype="int16", endpoint=True)
755
+ def_gen.integers(-32768, 32767, dtype="int16", endpoint=True)
756
+ def_gen.integers(I_i2_low_like, 32767, dtype="int16", endpoint=True)
757
+ def_gen.integers(I_i2_high_open, dtype="int16")
758
+ def_gen.integers(I_i2_low, I_i2_high_open, dtype="int16")
759
+ def_gen.integers(-32768, I_i2_high_open, dtype="int16")
760
+ def_gen.integers(I_i2_high_closed, dtype="int16", endpoint=True)
761
+ def_gen.integers(I_i2_low, I_i2_high_closed, dtype="int16", endpoint=True)
762
+ def_gen.integers(-32768, I_i2_high_closed, dtype="int16", endpoint=True)
763
+
764
+ def_gen.integers(32768, dtype=np.int16)
765
+ def_gen.integers(-32768, 32768, dtype=np.int16)
766
+ def_gen.integers(32767, dtype=np.int16, endpoint=True)
767
+ def_gen.integers(-32768, 32767, dtype=np.int16, endpoint=True)
768
+ def_gen.integers(I_i2_low_like, 32767, dtype=np.int16, endpoint=True)
769
+ def_gen.integers(I_i2_high_open, dtype=np.int16)
770
+ def_gen.integers(I_i2_low, I_i2_high_open, dtype=np.int16)
771
+ def_gen.integers(-32768, I_i2_high_open, dtype=np.int16)
772
+ def_gen.integers(I_i2_high_closed, dtype=np.int16, endpoint=True)
773
+ def_gen.integers(I_i2_low, I_i2_high_closed, dtype=np.int16, endpoint=True)
774
+ def_gen.integers(-32768, I_i2_high_closed, dtype=np.int16, endpoint=True)
775
+
776
+ I_i4_low: np.ndarray[Any, np.dtype[np.int32]] = np.array([-2147483648], dtype=np.int32)
777
+ I_i4_low_like: list[int] = [-2147483648]
778
+ I_i4_high_open: np.ndarray[Any, np.dtype[np.int32]] = np.array([2147483647], dtype=np.int32)
779
+ I_i4_high_closed: np.ndarray[Any, np.dtype[np.int32]] = np.array([2147483647], dtype=np.int32)
780
+
781
+ def_gen.integers(2147483648, dtype="i4")
782
+ def_gen.integers(-2147483648, 2147483648, dtype="i4")
783
+ def_gen.integers(2147483647, dtype="i4", endpoint=True)
784
+ def_gen.integers(-2147483648, 2147483647, dtype="i4", endpoint=True)
785
+ def_gen.integers(I_i4_low_like, 2147483647, dtype="i4", endpoint=True)
786
+ def_gen.integers(I_i4_high_open, dtype="i4")
787
+ def_gen.integers(I_i4_low, I_i4_high_open, dtype="i4")
788
+ def_gen.integers(-2147483648, I_i4_high_open, dtype="i4")
789
+ def_gen.integers(I_i4_high_closed, dtype="i4", endpoint=True)
790
+ def_gen.integers(I_i4_low, I_i4_high_closed, dtype="i4", endpoint=True)
791
+ def_gen.integers(-2147483648, I_i4_high_closed, dtype="i4", endpoint=True)
792
+
793
+ def_gen.integers(2147483648, dtype="int32")
794
+ def_gen.integers(-2147483648, 2147483648, dtype="int32")
795
+ def_gen.integers(2147483647, dtype="int32", endpoint=True)
796
+ def_gen.integers(-2147483648, 2147483647, dtype="int32", endpoint=True)
797
+ def_gen.integers(I_i4_low_like, 2147483647, dtype="int32", endpoint=True)
798
+ def_gen.integers(I_i4_high_open, dtype="int32")
799
+ def_gen.integers(I_i4_low, I_i4_high_open, dtype="int32")
800
+ def_gen.integers(-2147483648, I_i4_high_open, dtype="int32")
801
+ def_gen.integers(I_i4_high_closed, dtype="int32", endpoint=True)
802
+ def_gen.integers(I_i4_low, I_i4_high_closed, dtype="int32", endpoint=True)
803
+ def_gen.integers(-2147483648, I_i4_high_closed, dtype="int32", endpoint=True)
804
+
805
+ def_gen.integers(2147483648, dtype=np.int32)
806
+ def_gen.integers(-2147483648, 2147483648, dtype=np.int32)
807
+ def_gen.integers(2147483647, dtype=np.int32, endpoint=True)
808
+ def_gen.integers(-2147483648, 2147483647, dtype=np.int32, endpoint=True)
809
+ def_gen.integers(I_i4_low_like, 2147483647, dtype=np.int32, endpoint=True)
810
+ def_gen.integers(I_i4_high_open, dtype=np.int32)
811
+ def_gen.integers(I_i4_low, I_i4_high_open, dtype=np.int32)
812
+ def_gen.integers(-2147483648, I_i4_high_open, dtype=np.int32)
813
+ def_gen.integers(I_i4_high_closed, dtype=np.int32, endpoint=True)
814
+ def_gen.integers(I_i4_low, I_i4_high_closed, dtype=np.int32, endpoint=True)
815
+ def_gen.integers(-2147483648, I_i4_high_closed, dtype=np.int32, endpoint=True)
816
+
817
+ I_i8_low: np.ndarray[Any, np.dtype[np.int64]] = np.array([-9223372036854775808], dtype=np.int64)
818
+ I_i8_low_like: list[int] = [-9223372036854775808]
819
+ I_i8_high_open: np.ndarray[Any, np.dtype[np.int64]] = np.array([9223372036854775807], dtype=np.int64)
820
+ I_i8_high_closed: np.ndarray[Any, np.dtype[np.int64]] = np.array([9223372036854775807], dtype=np.int64)
821
+
822
+ def_gen.integers(9223372036854775808, dtype="i8")
823
+ def_gen.integers(-9223372036854775808, 9223372036854775808, dtype="i8")
824
+ def_gen.integers(9223372036854775807, dtype="i8", endpoint=True)
825
+ def_gen.integers(-9223372036854775808, 9223372036854775807, dtype="i8", endpoint=True)
826
+ def_gen.integers(I_i8_low_like, 9223372036854775807, dtype="i8", endpoint=True)
827
+ def_gen.integers(I_i8_high_open, dtype="i8")
828
+ def_gen.integers(I_i8_low, I_i8_high_open, dtype="i8")
829
+ def_gen.integers(-9223372036854775808, I_i8_high_open, dtype="i8")
830
+ def_gen.integers(I_i8_high_closed, dtype="i8", endpoint=True)
831
+ def_gen.integers(I_i8_low, I_i8_high_closed, dtype="i8", endpoint=True)
832
+ def_gen.integers(-9223372036854775808, I_i8_high_closed, dtype="i8", endpoint=True)
833
+
834
+ def_gen.integers(9223372036854775808, dtype="int64")
835
+ def_gen.integers(-9223372036854775808, 9223372036854775808, dtype="int64")
836
+ def_gen.integers(9223372036854775807, dtype="int64", endpoint=True)
837
+ def_gen.integers(-9223372036854775808, 9223372036854775807, dtype="int64", endpoint=True)
838
+ def_gen.integers(I_i8_low_like, 9223372036854775807, dtype="int64", endpoint=True)
839
+ def_gen.integers(I_i8_high_open, dtype="int64")
840
+ def_gen.integers(I_i8_low, I_i8_high_open, dtype="int64")
841
+ def_gen.integers(-9223372036854775808, I_i8_high_open, dtype="int64")
842
+ def_gen.integers(I_i8_high_closed, dtype="int64", endpoint=True)
843
+ def_gen.integers(I_i8_low, I_i8_high_closed, dtype="int64", endpoint=True)
844
+ def_gen.integers(-9223372036854775808, I_i8_high_closed, dtype="int64", endpoint=True)
845
+
846
+ def_gen.integers(9223372036854775808, dtype=np.int64)
847
+ def_gen.integers(-9223372036854775808, 9223372036854775808, dtype=np.int64)
848
+ def_gen.integers(9223372036854775807, dtype=np.int64, endpoint=True)
849
+ def_gen.integers(-9223372036854775808, 9223372036854775807, dtype=np.int64, endpoint=True)
850
+ def_gen.integers(I_i8_low_like, 9223372036854775807, dtype=np.int64, endpoint=True)
851
+ def_gen.integers(I_i8_high_open, dtype=np.int64)
852
+ def_gen.integers(I_i8_low, I_i8_high_open, dtype=np.int64)
853
+ def_gen.integers(-9223372036854775808, I_i8_high_open, dtype=np.int64)
854
+ def_gen.integers(I_i8_high_closed, dtype=np.int64, endpoint=True)
855
+ def_gen.integers(I_i8_low, I_i8_high_closed, dtype=np.int64, endpoint=True)
856
+ def_gen.integers(-9223372036854775808, I_i8_high_closed, dtype=np.int64, endpoint=True)
857
+
858
+
859
+ def_gen.bit_generator
860
+
861
+ def_gen.bytes(2)
862
+
863
+ def_gen.choice(5)
864
+ def_gen.choice(5, 3)
865
+ def_gen.choice(5, 3, replace=True)
866
+ def_gen.choice(5, 3, p=[1 / 5] * 5)
867
+ def_gen.choice(5, 3, p=[1 / 5] * 5, replace=False)
868
+
869
+ def_gen.choice(["pooh", "rabbit", "piglet", "Christopher"])
870
+ def_gen.choice(["pooh", "rabbit", "piglet", "Christopher"], 3)
871
+ def_gen.choice(["pooh", "rabbit", "piglet", "Christopher"], 3, p=[1 / 4] * 4)
872
+ def_gen.choice(["pooh", "rabbit", "piglet", "Christopher"], 3, replace=True)
873
+ def_gen.choice(["pooh", "rabbit", "piglet", "Christopher"], 3, replace=False, p=np.array([1 / 8, 1 / 8, 1 / 2, 1 / 4]))
874
+
875
+ def_gen.dirichlet([0.5, 0.5])
876
+ def_gen.dirichlet(np.array([0.5, 0.5]))
877
+ def_gen.dirichlet(np.array([0.5, 0.5]), size=3)
878
+
879
+ def_gen.multinomial(20, [1 / 6.0] * 6)
880
+ def_gen.multinomial(20, np.array([0.5, 0.5]))
881
+ def_gen.multinomial(20, [1 / 6.0] * 6, size=2)
882
+ def_gen.multinomial([[10], [20]], [1 / 6.0] * 6, size=(2, 2))
883
+ def_gen.multinomial(np.array([[10], [20]]), np.array([0.5, 0.5]), size=(2, 2))
884
+
885
+ def_gen.multivariate_hypergeometric([3, 5, 7], 2)
886
+ def_gen.multivariate_hypergeometric(np.array([3, 5, 7]), 2)
887
+ def_gen.multivariate_hypergeometric(np.array([3, 5, 7]), 2, size=4)
888
+ def_gen.multivariate_hypergeometric(np.array([3, 5, 7]), 2, size=(4, 7))
889
+ def_gen.multivariate_hypergeometric([3, 5, 7], 2, method="count")
890
+ def_gen.multivariate_hypergeometric(np.array([3, 5, 7]), 2, method="marginals")
891
+
892
+ def_gen.multivariate_normal([0.0], [[1.0]])
893
+ def_gen.multivariate_normal([0.0], np.array([[1.0]]))
894
+ def_gen.multivariate_normal(np.array([0.0]), [[1.0]])
895
+ def_gen.multivariate_normal([0.0], np.array([[1.0]]))
896
+
897
+ def_gen.permutation(10)
898
+ def_gen.permutation([1, 2, 3, 4])
899
+ def_gen.permutation(np.array([1, 2, 3, 4]))
900
+ def_gen.permutation(D_2D, axis=1)
901
+ def_gen.permuted(D_2D)
902
+ def_gen.permuted(D_2D_like)
903
+ def_gen.permuted(D_2D, axis=1)
904
+ def_gen.permuted(D_2D, out=D_2D)
905
+ def_gen.permuted(D_2D_like, out=D_2D)
906
+ def_gen.permuted(D_2D_like, out=D_2D)
907
+ def_gen.permuted(D_2D, axis=1, out=D_2D)
908
+
909
+ def_gen.shuffle(np.arange(10))
910
+ def_gen.shuffle([1, 2, 3, 4, 5])
911
+ def_gen.shuffle(D_2D, axis=1)
912
+
913
+ def_gen.__str__()
914
+ def_gen.__repr__()
915
+ def_gen.__setstate__(dict(def_gen.bit_generator.state))
916
+
917
+ # RandomState
918
+ random_st: np.random.RandomState = np.random.RandomState()
919
+
920
+ random_st.standard_normal()
921
+ random_st.standard_normal(size=None)
922
+ random_st.standard_normal(size=1)
923
+
924
+ random_st.random()
925
+ random_st.random(size=None)
926
+ random_st.random(size=1)
927
+
928
+ random_st.standard_cauchy()
929
+ random_st.standard_cauchy(size=None)
930
+ random_st.standard_cauchy(size=1)
931
+
932
+ random_st.standard_exponential()
933
+ random_st.standard_exponential(size=None)
934
+ random_st.standard_exponential(size=1)
935
+
936
+ random_st.zipf(1.5)
937
+ random_st.zipf(1.5, size=None)
938
+ random_st.zipf(1.5, size=1)
939
+ random_st.zipf(D_arr_1p5)
940
+ random_st.zipf(D_arr_1p5, size=1)
941
+ random_st.zipf(D_arr_like_1p5)
942
+ random_st.zipf(D_arr_like_1p5, size=1)
943
+
944
+ random_st.weibull(0.5)
945
+ random_st.weibull(0.5, size=None)
946
+ random_st.weibull(0.5, size=1)
947
+ random_st.weibull(D_arr_0p5)
948
+ random_st.weibull(D_arr_0p5, size=1)
949
+ random_st.weibull(D_arr_like_0p5)
950
+ random_st.weibull(D_arr_like_0p5, size=1)
951
+
952
+ random_st.standard_t(0.5)
953
+ random_st.standard_t(0.5, size=None)
954
+ random_st.standard_t(0.5, size=1)
955
+ random_st.standard_t(D_arr_0p5)
956
+ random_st.standard_t(D_arr_0p5, size=1)
957
+ random_st.standard_t(D_arr_like_0p5)
958
+ random_st.standard_t(D_arr_like_0p5, size=1)
959
+
960
+ random_st.poisson(0.5)
961
+ random_st.poisson(0.5, size=None)
962
+ random_st.poisson(0.5, size=1)
963
+ random_st.poisson(D_arr_0p5)
964
+ random_st.poisson(D_arr_0p5, size=1)
965
+ random_st.poisson(D_arr_like_0p5)
966
+ random_st.poisson(D_arr_like_0p5, size=1)
967
+
968
+ random_st.power(0.5)
969
+ random_st.power(0.5, size=None)
970
+ random_st.power(0.5, size=1)
971
+ random_st.power(D_arr_0p5)
972
+ random_st.power(D_arr_0p5, size=1)
973
+ random_st.power(D_arr_like_0p5)
974
+ random_st.power(D_arr_like_0p5, size=1)
975
+
976
+ random_st.pareto(0.5)
977
+ random_st.pareto(0.5, size=None)
978
+ random_st.pareto(0.5, size=1)
979
+ random_st.pareto(D_arr_0p5)
980
+ random_st.pareto(D_arr_0p5, size=1)
981
+ random_st.pareto(D_arr_like_0p5)
982
+ random_st.pareto(D_arr_like_0p5, size=1)
983
+
984
+ random_st.chisquare(0.5)
985
+ random_st.chisquare(0.5, size=None)
986
+ random_st.chisquare(0.5, size=1)
987
+ random_st.chisquare(D_arr_0p5)
988
+ random_st.chisquare(D_arr_0p5, size=1)
989
+ random_st.chisquare(D_arr_like_0p5)
990
+ random_st.chisquare(D_arr_like_0p5, size=1)
991
+
992
+ random_st.exponential(0.5)
993
+ random_st.exponential(0.5, size=None)
994
+ random_st.exponential(0.5, size=1)
995
+ random_st.exponential(D_arr_0p5)
996
+ random_st.exponential(D_arr_0p5, size=1)
997
+ random_st.exponential(D_arr_like_0p5)
998
+ random_st.exponential(D_arr_like_0p5, size=1)
999
+
1000
+ random_st.geometric(0.5)
1001
+ random_st.geometric(0.5, size=None)
1002
+ random_st.geometric(0.5, size=1)
1003
+ random_st.geometric(D_arr_0p5)
1004
+ random_st.geometric(D_arr_0p5, size=1)
1005
+ random_st.geometric(D_arr_like_0p5)
1006
+ random_st.geometric(D_arr_like_0p5, size=1)
1007
+
1008
+ random_st.logseries(0.5)
1009
+ random_st.logseries(0.5, size=None)
1010
+ random_st.logseries(0.5, size=1)
1011
+ random_st.logseries(D_arr_0p5)
1012
+ random_st.logseries(D_arr_0p5, size=1)
1013
+ random_st.logseries(D_arr_like_0p5)
1014
+ random_st.logseries(D_arr_like_0p5, size=1)
1015
+
1016
+ random_st.rayleigh(0.5)
1017
+ random_st.rayleigh(0.5, size=None)
1018
+ random_st.rayleigh(0.5, size=1)
1019
+ random_st.rayleigh(D_arr_0p5)
1020
+ random_st.rayleigh(D_arr_0p5, size=1)
1021
+ random_st.rayleigh(D_arr_like_0p5)
1022
+ random_st.rayleigh(D_arr_like_0p5, size=1)
1023
+
1024
+ random_st.standard_gamma(0.5)
1025
+ random_st.standard_gamma(0.5, size=None)
1026
+ random_st.standard_gamma(0.5, size=1)
1027
+ random_st.standard_gamma(D_arr_0p5)
1028
+ random_st.standard_gamma(D_arr_0p5, size=1)
1029
+ random_st.standard_gamma(D_arr_like_0p5)
1030
+ random_st.standard_gamma(D_arr_like_0p5, size=1)
1031
+ random_st.standard_gamma(D_arr_like_0p5, size=1)
1032
+
1033
+ random_st.vonmises(0.5, 0.5)
1034
+ random_st.vonmises(0.5, 0.5, size=None)
1035
+ random_st.vonmises(0.5, 0.5, size=1)
1036
+ random_st.vonmises(D_arr_0p5, 0.5)
1037
+ random_st.vonmises(0.5, D_arr_0p5)
1038
+ random_st.vonmises(D_arr_0p5, 0.5, size=1)
1039
+ random_st.vonmises(0.5, D_arr_0p5, size=1)
1040
+ random_st.vonmises(D_arr_like_0p5, 0.5)
1041
+ random_st.vonmises(0.5, D_arr_like_0p5)
1042
+ random_st.vonmises(D_arr_0p5, D_arr_0p5)
1043
+ random_st.vonmises(D_arr_like_0p5, D_arr_like_0p5)
1044
+ random_st.vonmises(D_arr_0p5, D_arr_0p5, size=1)
1045
+ random_st.vonmises(D_arr_like_0p5, D_arr_like_0p5, size=1)
1046
+
1047
+ random_st.wald(0.5, 0.5)
1048
+ random_st.wald(0.5, 0.5, size=None)
1049
+ random_st.wald(0.5, 0.5, size=1)
1050
+ random_st.wald(D_arr_0p5, 0.5)
1051
+ random_st.wald(0.5, D_arr_0p5)
1052
+ random_st.wald(D_arr_0p5, 0.5, size=1)
1053
+ random_st.wald(0.5, D_arr_0p5, size=1)
1054
+ random_st.wald(D_arr_like_0p5, 0.5)
1055
+ random_st.wald(0.5, D_arr_like_0p5)
1056
+ random_st.wald(D_arr_0p5, D_arr_0p5)
1057
+ random_st.wald(D_arr_like_0p5, D_arr_like_0p5)
1058
+ random_st.wald(D_arr_0p5, D_arr_0p5, size=1)
1059
+ random_st.wald(D_arr_like_0p5, D_arr_like_0p5, size=1)
1060
+
1061
+ random_st.uniform(0.5, 0.5)
1062
+ random_st.uniform(0.5, 0.5, size=None)
1063
+ random_st.uniform(0.5, 0.5, size=1)
1064
+ random_st.uniform(D_arr_0p5, 0.5)
1065
+ random_st.uniform(0.5, D_arr_0p5)
1066
+ random_st.uniform(D_arr_0p5, 0.5, size=1)
1067
+ random_st.uniform(0.5, D_arr_0p5, size=1)
1068
+ random_st.uniform(D_arr_like_0p5, 0.5)
1069
+ random_st.uniform(0.5, D_arr_like_0p5)
1070
+ random_st.uniform(D_arr_0p5, D_arr_0p5)
1071
+ random_st.uniform(D_arr_like_0p5, D_arr_like_0p5)
1072
+ random_st.uniform(D_arr_0p5, D_arr_0p5, size=1)
1073
+ random_st.uniform(D_arr_like_0p5, D_arr_like_0p5, size=1)
1074
+
1075
+ random_st.beta(0.5, 0.5)
1076
+ random_st.beta(0.5, 0.5, size=None)
1077
+ random_st.beta(0.5, 0.5, size=1)
1078
+ random_st.beta(D_arr_0p5, 0.5)
1079
+ random_st.beta(0.5, D_arr_0p5)
1080
+ random_st.beta(D_arr_0p5, 0.5, size=1)
1081
+ random_st.beta(0.5, D_arr_0p5, size=1)
1082
+ random_st.beta(D_arr_like_0p5, 0.5)
1083
+ random_st.beta(0.5, D_arr_like_0p5)
1084
+ random_st.beta(D_arr_0p5, D_arr_0p5)
1085
+ random_st.beta(D_arr_like_0p5, D_arr_like_0p5)
1086
+ random_st.beta(D_arr_0p5, D_arr_0p5, size=1)
1087
+ random_st.beta(D_arr_like_0p5, D_arr_like_0p5, size=1)
1088
+
1089
+ random_st.f(0.5, 0.5)
1090
+ random_st.f(0.5, 0.5, size=None)
1091
+ random_st.f(0.5, 0.5, size=1)
1092
+ random_st.f(D_arr_0p5, 0.5)
1093
+ random_st.f(0.5, D_arr_0p5)
1094
+ random_st.f(D_arr_0p5, 0.5, size=1)
1095
+ random_st.f(0.5, D_arr_0p5, size=1)
1096
+ random_st.f(D_arr_like_0p5, 0.5)
1097
+ random_st.f(0.5, D_arr_like_0p5)
1098
+ random_st.f(D_arr_0p5, D_arr_0p5)
1099
+ random_st.f(D_arr_like_0p5, D_arr_like_0p5)
1100
+ random_st.f(D_arr_0p5, D_arr_0p5, size=1)
1101
+ random_st.f(D_arr_like_0p5, D_arr_like_0p5, size=1)
1102
+
1103
+ random_st.gamma(0.5, 0.5)
1104
+ random_st.gamma(0.5, 0.5, size=None)
1105
+ random_st.gamma(0.5, 0.5, size=1)
1106
+ random_st.gamma(D_arr_0p5, 0.5)
1107
+ random_st.gamma(0.5, D_arr_0p5)
1108
+ random_st.gamma(D_arr_0p5, 0.5, size=1)
1109
+ random_st.gamma(0.5, D_arr_0p5, size=1)
1110
+ random_st.gamma(D_arr_like_0p5, 0.5)
1111
+ random_st.gamma(0.5, D_arr_like_0p5)
1112
+ random_st.gamma(D_arr_0p5, D_arr_0p5)
1113
+ random_st.gamma(D_arr_like_0p5, D_arr_like_0p5)
1114
+ random_st.gamma(D_arr_0p5, D_arr_0p5, size=1)
1115
+ random_st.gamma(D_arr_like_0p5, D_arr_like_0p5, size=1)
1116
+
1117
+ random_st.gumbel(0.5, 0.5)
1118
+ random_st.gumbel(0.5, 0.5, size=None)
1119
+ random_st.gumbel(0.5, 0.5, size=1)
1120
+ random_st.gumbel(D_arr_0p5, 0.5)
1121
+ random_st.gumbel(0.5, D_arr_0p5)
1122
+ random_st.gumbel(D_arr_0p5, 0.5, size=1)
1123
+ random_st.gumbel(0.5, D_arr_0p5, size=1)
1124
+ random_st.gumbel(D_arr_like_0p5, 0.5)
1125
+ random_st.gumbel(0.5, D_arr_like_0p5)
1126
+ random_st.gumbel(D_arr_0p5, D_arr_0p5)
1127
+ random_st.gumbel(D_arr_like_0p5, D_arr_like_0p5)
1128
+ random_st.gumbel(D_arr_0p5, D_arr_0p5, size=1)
1129
+ random_st.gumbel(D_arr_like_0p5, D_arr_like_0p5, size=1)
1130
+
1131
+ random_st.laplace(0.5, 0.5)
1132
+ random_st.laplace(0.5, 0.5, size=None)
1133
+ random_st.laplace(0.5, 0.5, size=1)
1134
+ random_st.laplace(D_arr_0p5, 0.5)
1135
+ random_st.laplace(0.5, D_arr_0p5)
1136
+ random_st.laplace(D_arr_0p5, 0.5, size=1)
1137
+ random_st.laplace(0.5, D_arr_0p5, size=1)
1138
+ random_st.laplace(D_arr_like_0p5, 0.5)
1139
+ random_st.laplace(0.5, D_arr_like_0p5)
1140
+ random_st.laplace(D_arr_0p5, D_arr_0p5)
1141
+ random_st.laplace(D_arr_like_0p5, D_arr_like_0p5)
1142
+ random_st.laplace(D_arr_0p5, D_arr_0p5, size=1)
1143
+ random_st.laplace(D_arr_like_0p5, D_arr_like_0p5, size=1)
1144
+
1145
+ random_st.logistic(0.5, 0.5)
1146
+ random_st.logistic(0.5, 0.5, size=None)
1147
+ random_st.logistic(0.5, 0.5, size=1)
1148
+ random_st.logistic(D_arr_0p5, 0.5)
1149
+ random_st.logistic(0.5, D_arr_0p5)
1150
+ random_st.logistic(D_arr_0p5, 0.5, size=1)
1151
+ random_st.logistic(0.5, D_arr_0p5, size=1)
1152
+ random_st.logistic(D_arr_like_0p5, 0.5)
1153
+ random_st.logistic(0.5, D_arr_like_0p5)
1154
+ random_st.logistic(D_arr_0p5, D_arr_0p5)
1155
+ random_st.logistic(D_arr_like_0p5, D_arr_like_0p5)
1156
+ random_st.logistic(D_arr_0p5, D_arr_0p5, size=1)
1157
+ random_st.logistic(D_arr_like_0p5, D_arr_like_0p5, size=1)
1158
+
1159
+ random_st.lognormal(0.5, 0.5)
1160
+ random_st.lognormal(0.5, 0.5, size=None)
1161
+ random_st.lognormal(0.5, 0.5, size=1)
1162
+ random_st.lognormal(D_arr_0p5, 0.5)
1163
+ random_st.lognormal(0.5, D_arr_0p5)
1164
+ random_st.lognormal(D_arr_0p5, 0.5, size=1)
1165
+ random_st.lognormal(0.5, D_arr_0p5, size=1)
1166
+ random_st.lognormal(D_arr_like_0p5, 0.5)
1167
+ random_st.lognormal(0.5, D_arr_like_0p5)
1168
+ random_st.lognormal(D_arr_0p5, D_arr_0p5)
1169
+ random_st.lognormal(D_arr_like_0p5, D_arr_like_0p5)
1170
+ random_st.lognormal(D_arr_0p5, D_arr_0p5, size=1)
1171
+ random_st.lognormal(D_arr_like_0p5, D_arr_like_0p5, size=1)
1172
+
1173
+ random_st.noncentral_chisquare(0.5, 0.5)
1174
+ random_st.noncentral_chisquare(0.5, 0.5, size=None)
1175
+ random_st.noncentral_chisquare(0.5, 0.5, size=1)
1176
+ random_st.noncentral_chisquare(D_arr_0p5, 0.5)
1177
+ random_st.noncentral_chisquare(0.5, D_arr_0p5)
1178
+ random_st.noncentral_chisquare(D_arr_0p5, 0.5, size=1)
1179
+ random_st.noncentral_chisquare(0.5, D_arr_0p5, size=1)
1180
+ random_st.noncentral_chisquare(D_arr_like_0p5, 0.5)
1181
+ random_st.noncentral_chisquare(0.5, D_arr_like_0p5)
1182
+ random_st.noncentral_chisquare(D_arr_0p5, D_arr_0p5)
1183
+ random_st.noncentral_chisquare(D_arr_like_0p5, D_arr_like_0p5)
1184
+ random_st.noncentral_chisquare(D_arr_0p5, D_arr_0p5, size=1)
1185
+ random_st.noncentral_chisquare(D_arr_like_0p5, D_arr_like_0p5, size=1)
1186
+
1187
+ random_st.normal(0.5, 0.5)
1188
+ random_st.normal(0.5, 0.5, size=None)
1189
+ random_st.normal(0.5, 0.5, size=1)
1190
+ random_st.normal(D_arr_0p5, 0.5)
1191
+ random_st.normal(0.5, D_arr_0p5)
1192
+ random_st.normal(D_arr_0p5, 0.5, size=1)
1193
+ random_st.normal(0.5, D_arr_0p5, size=1)
1194
+ random_st.normal(D_arr_like_0p5, 0.5)
1195
+ random_st.normal(0.5, D_arr_like_0p5)
1196
+ random_st.normal(D_arr_0p5, D_arr_0p5)
1197
+ random_st.normal(D_arr_like_0p5, D_arr_like_0p5)
1198
+ random_st.normal(D_arr_0p5, D_arr_0p5, size=1)
1199
+ random_st.normal(D_arr_like_0p5, D_arr_like_0p5, size=1)
1200
+
1201
+ random_st.triangular(0.1, 0.5, 0.9)
1202
+ random_st.triangular(0.1, 0.5, 0.9, size=None)
1203
+ random_st.triangular(0.1, 0.5, 0.9, size=1)
1204
+ random_st.triangular(D_arr_0p1, 0.5, 0.9)
1205
+ random_st.triangular(0.1, D_arr_0p5, 0.9)
1206
+ random_st.triangular(D_arr_0p1, 0.5, D_arr_like_0p9, size=1)
1207
+ random_st.triangular(0.1, D_arr_0p5, 0.9, size=1)
1208
+ random_st.triangular(D_arr_like_0p1, 0.5, D_arr_0p9)
1209
+ random_st.triangular(0.5, D_arr_like_0p5, 0.9)
1210
+ random_st.triangular(D_arr_0p1, D_arr_0p5, 0.9)
1211
+ random_st.triangular(D_arr_like_0p1, D_arr_like_0p5, 0.9)
1212
+ random_st.triangular(D_arr_0p1, D_arr_0p5, D_arr_0p9, size=1)
1213
+ random_st.triangular(D_arr_like_0p1, D_arr_like_0p5, D_arr_like_0p9, size=1)
1214
+
1215
+ random_st.noncentral_f(0.1, 0.5, 0.9)
1216
+ random_st.noncentral_f(0.1, 0.5, 0.9, size=None)
1217
+ random_st.noncentral_f(0.1, 0.5, 0.9, size=1)
1218
+ random_st.noncentral_f(D_arr_0p1, 0.5, 0.9)
1219
+ random_st.noncentral_f(0.1, D_arr_0p5, 0.9)
1220
+ random_st.noncentral_f(D_arr_0p1, 0.5, D_arr_like_0p9, size=1)
1221
+ random_st.noncentral_f(0.1, D_arr_0p5, 0.9, size=1)
1222
+ random_st.noncentral_f(D_arr_like_0p1, 0.5, D_arr_0p9)
1223
+ random_st.noncentral_f(0.5, D_arr_like_0p5, 0.9)
1224
+ random_st.noncentral_f(D_arr_0p1, D_arr_0p5, 0.9)
1225
+ random_st.noncentral_f(D_arr_like_0p1, D_arr_like_0p5, 0.9)
1226
+ random_st.noncentral_f(D_arr_0p1, D_arr_0p5, D_arr_0p9, size=1)
1227
+ random_st.noncentral_f(D_arr_like_0p1, D_arr_like_0p5, D_arr_like_0p9, size=1)
1228
+
1229
+ random_st.binomial(10, 0.5)
1230
+ random_st.binomial(10, 0.5, size=None)
1231
+ random_st.binomial(10, 0.5, size=1)
1232
+ random_st.binomial(I_arr_10, 0.5)
1233
+ random_st.binomial(10, D_arr_0p5)
1234
+ random_st.binomial(I_arr_10, 0.5, size=1)
1235
+ random_st.binomial(10, D_arr_0p5, size=1)
1236
+ random_st.binomial(I_arr_like_10, 0.5)
1237
+ random_st.binomial(10, D_arr_like_0p5)
1238
+ random_st.binomial(I_arr_10, D_arr_0p5)
1239
+ random_st.binomial(I_arr_like_10, D_arr_like_0p5)
1240
+ random_st.binomial(I_arr_10, D_arr_0p5, size=1)
1241
+ random_st.binomial(I_arr_like_10, D_arr_like_0p5, size=1)
1242
+
1243
+ random_st.negative_binomial(10, 0.5)
1244
+ random_st.negative_binomial(10, 0.5, size=None)
1245
+ random_st.negative_binomial(10, 0.5, size=1)
1246
+ random_st.negative_binomial(I_arr_10, 0.5)
1247
+ random_st.negative_binomial(10, D_arr_0p5)
1248
+ random_st.negative_binomial(I_arr_10, 0.5, size=1)
1249
+ random_st.negative_binomial(10, D_arr_0p5, size=1)
1250
+ random_st.negative_binomial(I_arr_like_10, 0.5)
1251
+ random_st.negative_binomial(10, D_arr_like_0p5)
1252
+ random_st.negative_binomial(I_arr_10, D_arr_0p5)
1253
+ random_st.negative_binomial(I_arr_like_10, D_arr_like_0p5)
1254
+ random_st.negative_binomial(I_arr_10, D_arr_0p5, size=1)
1255
+ random_st.negative_binomial(I_arr_like_10, D_arr_like_0p5, size=1)
1256
+
1257
+ random_st.hypergeometric(20, 20, 10)
1258
+ random_st.hypergeometric(20, 20, 10, size=None)
1259
+ random_st.hypergeometric(20, 20, 10, size=1)
1260
+ random_st.hypergeometric(I_arr_20, 20, 10)
1261
+ random_st.hypergeometric(20, I_arr_20, 10)
1262
+ random_st.hypergeometric(I_arr_20, 20, I_arr_like_10, size=1)
1263
+ random_st.hypergeometric(20, I_arr_20, 10, size=1)
1264
+ random_st.hypergeometric(I_arr_like_20, 20, I_arr_10)
1265
+ random_st.hypergeometric(20, I_arr_like_20, 10)
1266
+ random_st.hypergeometric(I_arr_20, I_arr_20, 10)
1267
+ random_st.hypergeometric(I_arr_like_20, I_arr_like_20, 10)
1268
+ random_st.hypergeometric(I_arr_20, I_arr_20, I_arr_10, size=1)
1269
+ random_st.hypergeometric(I_arr_like_20, I_arr_like_20, I_arr_like_10, size=1)
1270
+
1271
+ random_st.randint(0, 100)
1272
+ random_st.randint(100)
1273
+ random_st.randint([100])
1274
+ random_st.randint(0, [100])
1275
+
1276
+ random_st.randint(2, dtype=bool)
1277
+ random_st.randint(0, 2, dtype=bool)
1278
+ random_st.randint(I_bool_high_open, dtype=bool)
1279
+ random_st.randint(I_bool_low, I_bool_high_open, dtype=bool)
1280
+ random_st.randint(0, I_bool_high_open, dtype=bool)
1281
+
1282
+ random_st.randint(2, dtype=np.bool)
1283
+ random_st.randint(0, 2, dtype=np.bool)
1284
+ random_st.randint(I_bool_high_open, dtype=np.bool)
1285
+ random_st.randint(I_bool_low, I_bool_high_open, dtype=np.bool)
1286
+ random_st.randint(0, I_bool_high_open, dtype=np.bool)
1287
+
1288
+ random_st.randint(256, dtype="u1")
1289
+ random_st.randint(0, 256, dtype="u1")
1290
+ random_st.randint(I_u1_high_open, dtype="u1")
1291
+ random_st.randint(I_u1_low, I_u1_high_open, dtype="u1")
1292
+ random_st.randint(0, I_u1_high_open, dtype="u1")
1293
+
1294
+ random_st.randint(256, dtype="uint8")
1295
+ random_st.randint(0, 256, dtype="uint8")
1296
+ random_st.randint(I_u1_high_open, dtype="uint8")
1297
+ random_st.randint(I_u1_low, I_u1_high_open, dtype="uint8")
1298
+ random_st.randint(0, I_u1_high_open, dtype="uint8")
1299
+
1300
+ random_st.randint(256, dtype=np.uint8)
1301
+ random_st.randint(0, 256, dtype=np.uint8)
1302
+ random_st.randint(I_u1_high_open, dtype=np.uint8)
1303
+ random_st.randint(I_u1_low, I_u1_high_open, dtype=np.uint8)
1304
+ random_st.randint(0, I_u1_high_open, dtype=np.uint8)
1305
+
1306
+ random_st.randint(65536, dtype="u2")
1307
+ random_st.randint(0, 65536, dtype="u2")
1308
+ random_st.randint(I_u2_high_open, dtype="u2")
1309
+ random_st.randint(I_u2_low, I_u2_high_open, dtype="u2")
1310
+ random_st.randint(0, I_u2_high_open, dtype="u2")
1311
+
1312
+ random_st.randint(65536, dtype="uint16")
1313
+ random_st.randint(0, 65536, dtype="uint16")
1314
+ random_st.randint(I_u2_high_open, dtype="uint16")
1315
+ random_st.randint(I_u2_low, I_u2_high_open, dtype="uint16")
1316
+ random_st.randint(0, I_u2_high_open, dtype="uint16")
1317
+
1318
+ random_st.randint(65536, dtype=np.uint16)
1319
+ random_st.randint(0, 65536, dtype=np.uint16)
1320
+ random_st.randint(I_u2_high_open, dtype=np.uint16)
1321
+ random_st.randint(I_u2_low, I_u2_high_open, dtype=np.uint16)
1322
+ random_st.randint(0, I_u2_high_open, dtype=np.uint16)
1323
+
1324
+ random_st.randint(4294967296, dtype="u4")
1325
+ random_st.randint(0, 4294967296, dtype="u4")
1326
+ random_st.randint(I_u4_high_open, dtype="u4")
1327
+ random_st.randint(I_u4_low, I_u4_high_open, dtype="u4")
1328
+ random_st.randint(0, I_u4_high_open, dtype="u4")
1329
+
1330
+ random_st.randint(4294967296, dtype="uint32")
1331
+ random_st.randint(0, 4294967296, dtype="uint32")
1332
+ random_st.randint(I_u4_high_open, dtype="uint32")
1333
+ random_st.randint(I_u4_low, I_u4_high_open, dtype="uint32")
1334
+ random_st.randint(0, I_u4_high_open, dtype="uint32")
1335
+
1336
+ random_st.randint(4294967296, dtype=np.uint32)
1337
+ random_st.randint(0, 4294967296, dtype=np.uint32)
1338
+ random_st.randint(I_u4_high_open, dtype=np.uint32)
1339
+ random_st.randint(I_u4_low, I_u4_high_open, dtype=np.uint32)
1340
+ random_st.randint(0, I_u4_high_open, dtype=np.uint32)
1341
+
1342
+
1343
+ random_st.randint(18446744073709551616, dtype="u8")
1344
+ random_st.randint(0, 18446744073709551616, dtype="u8")
1345
+ random_st.randint(I_u8_high_open, dtype="u8")
1346
+ random_st.randint(I_u8_low, I_u8_high_open, dtype="u8")
1347
+ random_st.randint(0, I_u8_high_open, dtype="u8")
1348
+
1349
+ random_st.randint(18446744073709551616, dtype="uint64")
1350
+ random_st.randint(0, 18446744073709551616, dtype="uint64")
1351
+ random_st.randint(I_u8_high_open, dtype="uint64")
1352
+ random_st.randint(I_u8_low, I_u8_high_open, dtype="uint64")
1353
+ random_st.randint(0, I_u8_high_open, dtype="uint64")
1354
+
1355
+ random_st.randint(18446744073709551616, dtype=np.uint64)
1356
+ random_st.randint(0, 18446744073709551616, dtype=np.uint64)
1357
+ random_st.randint(I_u8_high_open, dtype=np.uint64)
1358
+ random_st.randint(I_u8_low, I_u8_high_open, dtype=np.uint64)
1359
+ random_st.randint(0, I_u8_high_open, dtype=np.uint64)
1360
+
1361
+ random_st.randint(128, dtype="i1")
1362
+ random_st.randint(-128, 128, dtype="i1")
1363
+ random_st.randint(I_i1_high_open, dtype="i1")
1364
+ random_st.randint(I_i1_low, I_i1_high_open, dtype="i1")
1365
+ random_st.randint(-128, I_i1_high_open, dtype="i1")
1366
+
1367
+ random_st.randint(128, dtype="int8")
1368
+ random_st.randint(-128, 128, dtype="int8")
1369
+ random_st.randint(I_i1_high_open, dtype="int8")
1370
+ random_st.randint(I_i1_low, I_i1_high_open, dtype="int8")
1371
+ random_st.randint(-128, I_i1_high_open, dtype="int8")
1372
+
1373
+ random_st.randint(128, dtype=np.int8)
1374
+ random_st.randint(-128, 128, dtype=np.int8)
1375
+ random_st.randint(I_i1_high_open, dtype=np.int8)
1376
+ random_st.randint(I_i1_low, I_i1_high_open, dtype=np.int8)
1377
+ random_st.randint(-128, I_i1_high_open, dtype=np.int8)
1378
+
1379
+ random_st.randint(32768, dtype="i2")
1380
+ random_st.randint(-32768, 32768, dtype="i2")
1381
+ random_st.randint(I_i2_high_open, dtype="i2")
1382
+ random_st.randint(I_i2_low, I_i2_high_open, dtype="i2")
1383
+ random_st.randint(-32768, I_i2_high_open, dtype="i2")
1384
+ random_st.randint(32768, dtype="int16")
1385
+ random_st.randint(-32768, 32768, dtype="int16")
1386
+ random_st.randint(I_i2_high_open, dtype="int16")
1387
+ random_st.randint(I_i2_low, I_i2_high_open, dtype="int16")
1388
+ random_st.randint(-32768, I_i2_high_open, dtype="int16")
1389
+ random_st.randint(32768, dtype=np.int16)
1390
+ random_st.randint(-32768, 32768, dtype=np.int16)
1391
+ random_st.randint(I_i2_high_open, dtype=np.int16)
1392
+ random_st.randint(I_i2_low, I_i2_high_open, dtype=np.int16)
1393
+ random_st.randint(-32768, I_i2_high_open, dtype=np.int16)
1394
+
1395
+ random_st.randint(2147483648, dtype="i4")
1396
+ random_st.randint(-2147483648, 2147483648, dtype="i4")
1397
+ random_st.randint(I_i4_high_open, dtype="i4")
1398
+ random_st.randint(I_i4_low, I_i4_high_open, dtype="i4")
1399
+ random_st.randint(-2147483648, I_i4_high_open, dtype="i4")
1400
+
1401
+ random_st.randint(2147483648, dtype="int32")
1402
+ random_st.randint(-2147483648, 2147483648, dtype="int32")
1403
+ random_st.randint(I_i4_high_open, dtype="int32")
1404
+ random_st.randint(I_i4_low, I_i4_high_open, dtype="int32")
1405
+ random_st.randint(-2147483648, I_i4_high_open, dtype="int32")
1406
+
1407
+ random_st.randint(2147483648, dtype=np.int32)
1408
+ random_st.randint(-2147483648, 2147483648, dtype=np.int32)
1409
+ random_st.randint(I_i4_high_open, dtype=np.int32)
1410
+ random_st.randint(I_i4_low, I_i4_high_open, dtype=np.int32)
1411
+ random_st.randint(-2147483648, I_i4_high_open, dtype=np.int32)
1412
+
1413
+ random_st.randint(9223372036854775808, dtype="i8")
1414
+ random_st.randint(-9223372036854775808, 9223372036854775808, dtype="i8")
1415
+ random_st.randint(I_i8_high_open, dtype="i8")
1416
+ random_st.randint(I_i8_low, I_i8_high_open, dtype="i8")
1417
+ random_st.randint(-9223372036854775808, I_i8_high_open, dtype="i8")
1418
+
1419
+ random_st.randint(9223372036854775808, dtype="int64")
1420
+ random_st.randint(-9223372036854775808, 9223372036854775808, dtype="int64")
1421
+ random_st.randint(I_i8_high_open, dtype="int64")
1422
+ random_st.randint(I_i8_low, I_i8_high_open, dtype="int64")
1423
+ random_st.randint(-9223372036854775808, I_i8_high_open, dtype="int64")
1424
+
1425
+ random_st.randint(9223372036854775808, dtype=np.int64)
1426
+ random_st.randint(-9223372036854775808, 9223372036854775808, dtype=np.int64)
1427
+ random_st.randint(I_i8_high_open, dtype=np.int64)
1428
+ random_st.randint(I_i8_low, I_i8_high_open, dtype=np.int64)
1429
+ random_st.randint(-9223372036854775808, I_i8_high_open, dtype=np.int64)
1430
+
1431
+ bg: np.random.BitGenerator = random_st._bit_generator
1432
+
1433
+ random_st.bytes(2)
1434
+
1435
+ random_st.choice(5)
1436
+ random_st.choice(5, 3)
1437
+ random_st.choice(5, 3, replace=True)
1438
+ random_st.choice(5, 3, p=[1 / 5] * 5)
1439
+ random_st.choice(5, 3, p=[1 / 5] * 5, replace=False)
1440
+
1441
+ random_st.choice(["pooh", "rabbit", "piglet", "Christopher"])
1442
+ random_st.choice(["pooh", "rabbit", "piglet", "Christopher"], 3)
1443
+ random_st.choice(["pooh", "rabbit", "piglet", "Christopher"], 3, p=[1 / 4] * 4)
1444
+ random_st.choice(["pooh", "rabbit", "piglet", "Christopher"], 3, replace=True)
1445
+ random_st.choice(["pooh", "rabbit", "piglet", "Christopher"], 3, replace=False, p=np.array([1 / 8, 1 / 8, 1 / 2, 1 / 4]))
1446
+
1447
+ random_st.dirichlet([0.5, 0.5])
1448
+ random_st.dirichlet(np.array([0.5, 0.5]))
1449
+ random_st.dirichlet(np.array([0.5, 0.5]), size=3)
1450
+
1451
+ random_st.multinomial(20, [1 / 6.0] * 6)
1452
+ random_st.multinomial(20, np.array([0.5, 0.5]))
1453
+ random_st.multinomial(20, [1 / 6.0] * 6, size=2)
1454
+
1455
+ random_st.multivariate_normal([0.0], [[1.0]])
1456
+ random_st.multivariate_normal([0.0], np.array([[1.0]]))
1457
+ random_st.multivariate_normal(np.array([0.0]), [[1.0]])
1458
+ random_st.multivariate_normal([0.0], np.array([[1.0]]))
1459
+
1460
+ random_st.permutation(10)
1461
+ random_st.permutation([1, 2, 3, 4])
1462
+ random_st.permutation(np.array([1, 2, 3, 4]))
1463
+ random_st.permutation(D_2D)
1464
+
1465
+ random_st.shuffle(np.arange(10))
1466
+ random_st.shuffle([1, 2, 3, 4, 5])
1467
+ random_st.shuffle(D_2D)
1468
+
1469
+ np.random.RandomState(SEED_PCG64)
1470
+ np.random.RandomState(0)
1471
+ np.random.RandomState([0, 1, 2])
1472
+ random_st.__str__()
1473
+ random_st.__repr__()
1474
+ random_st_state = random_st.__getstate__()
1475
+ random_st.__setstate__(random_st_state)
1476
+ random_st.seed()
1477
+ random_st.seed(1)
1478
+ random_st.seed([0, 1])
1479
+ random_st_get_state = random_st.get_state()
1480
+ random_st_get_state_legacy = random_st.get_state(legacy=True)
1481
+ random_st.set_state(random_st_get_state)
1482
+
1483
+ random_st.rand()
1484
+ random_st.rand(1)
1485
+ random_st.rand(1, 2)
1486
+ random_st.randn()
1487
+ random_st.randn(1)
1488
+ random_st.randn(1, 2)
1489
+ random_st.random_sample()
1490
+ random_st.random_sample(1)
1491
+ random_st.random_sample(size=(1, 2))
1492
+
1493
+ random_st.tomaxint()
1494
+ random_st.tomaxint(1)
1495
+ random_st.tomaxint((1,))
1496
+
1497
+ np.random.mtrand.set_bit_generator(SEED_PCG64)
1498
+ np.random.mtrand.get_bit_generator()