(state_data, a, size, replace, p, axis, shuffle)
| 816 | |
| 817 | |
| 818 | def _choice_rng(state_data, a, size, replace, p, axis, shuffle): |
| 819 | state = _rng_from_bitgen(state_data) |
| 820 | return state.choice(a, size=size, replace=replace, p=p, axis=axis, shuffle=shuffle) |
| 821 | |
| 822 | |
| 823 | def _choice_rs(state_data, a, size, replace, p): |
nothing calls this directly
no test coverage detected
searching dependent graphs…