__init__.pyi 2.1 KB

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