__init__.pyi 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. from ._generator import Generator
  2. from ._generator import default_rng
  3. from ._mt19937 import MT19937
  4. from ._pcg64 import PCG64, PCG64DXSM
  5. from ._philox import Philox
  6. from ._sfc64 import SFC64
  7. from .bit_generator import BitGenerator
  8. from .bit_generator import SeedSequence
  9. from .mtrand import (
  10. RandomState,
  11. beta,
  12. binomial,
  13. bytes,
  14. chisquare,
  15. choice,
  16. dirichlet,
  17. exponential,
  18. f,
  19. gamma,
  20. geometric,
  21. get_bit_generator, # noqa: F401
  22. get_state,
  23. gumbel,
  24. hypergeometric,
  25. laplace,
  26. logistic,
  27. lognormal,
  28. logseries,
  29. multinomial,
  30. multivariate_normal,
  31. negative_binomial,
  32. noncentral_chisquare,
  33. noncentral_f,
  34. normal,
  35. pareto,
  36. permutation,
  37. poisson,
  38. power,
  39. rand,
  40. randint,
  41. randn,
  42. random,
  43. random_integers,
  44. random_sample,
  45. ranf,
  46. rayleigh,
  47. sample,
  48. seed,
  49. set_bit_generator, # noqa: F401
  50. set_state,
  51. shuffle,
  52. standard_cauchy,
  53. standard_exponential,
  54. standard_gamma,
  55. standard_normal,
  56. standard_t,
  57. triangular,
  58. uniform,
  59. vonmises,
  60. wald,
  61. weibull,
  62. zipf,
  63. )
  64. __all__ = [
  65. "beta",
  66. "binomial",
  67. "bytes",
  68. "chisquare",
  69. "choice",
  70. "dirichlet",
  71. "exponential",
  72. "f",
  73. "gamma",
  74. "geometric",
  75. "get_state",
  76. "gumbel",
  77. "hypergeometric",
  78. "laplace",
  79. "logistic",
  80. "lognormal",
  81. "logseries",
  82. "multinomial",
  83. "multivariate_normal",
  84. "negative_binomial",
  85. "noncentral_chisquare",
  86. "noncentral_f",
  87. "normal",
  88. "pareto",
  89. "permutation",
  90. "poisson",
  91. "power",
  92. "rand",
  93. "randint",
  94. "randn",
  95. "random",
  96. "random_integers",
  97. "random_sample",
  98. "ranf",
  99. "rayleigh",
  100. "sample",
  101. "seed",
  102. "set_state",
  103. "shuffle",
  104. "standard_cauchy",
  105. "standard_exponential",
  106. "standard_gamma",
  107. "standard_normal",
  108. "standard_t",
  109. "triangular",
  110. "uniform",
  111. "vonmises",
  112. "wald",
  113. "weibull",
  114. "zipf",
  115. "Generator",
  116. "RandomState",
  117. "SeedSequence",
  118. "MT19937",
  119. "Philox",
  120. "PCG64",
  121. "PCG64DXSM",
  122. "SFC64",
  123. "default_rng",
  124. "BitGenerator",
  125. ]