This commit is contained in:
2026-04-10 15:06:59 +02:00
parent 3031b7153b
commit e5a4711004
7806 changed files with 1918528 additions and 335 deletions

View File

@@ -0,0 +1,54 @@
import numpy as np
from scipy._lib._util import IntNumber
from typing import Literal
def _initialize_v(
v : np.ndarray,
dim : IntNumber,
bits: IntNumber
) -> None: ...
def _cscramble (
dim : IntNumber,
bits: IntNumber,
ltm : np.ndarray,
sv: np.ndarray
) -> None: ...
def _fill_p_cumulative(
p: np.ndarray,
p_cumulative: np.ndarray
) -> None: ...
def _draw(
n : IntNumber,
num_gen: IntNumber,
dim: IntNumber,
scale: float,
sv: np.ndarray,
quasi: np.ndarray,
sample: np.ndarray
) -> None: ...
def _fast_forward(
n: IntNumber,
num_gen: IntNumber,
dim: IntNumber,
sv: np.ndarray,
quasi: np.ndarray
) -> None: ...
def _categorize(
draws: np.ndarray,
p_cumulative: np.ndarray,
result: np.ndarray
) -> None: ...
_MAXDIM: Literal[21201]
_MAXDEG: Literal[18]
def _test_find_index(
p_cumulative: np.ndarray,
size: int,
value: float
) -> int: ...