(state_data, a, size, replace, p, axis, shuffle)
| 795 | |
| 796 | |
| 797 | def _choice_rng(state_data, a, size, replace, p, axis, shuffle): |
| 798 | state = _rng_from_bitgen(state_data) |
| 799 | return state.choice(a, size=size, replace=replace, p=p, axis=axis, shuffle=shuffle) |
| 800 | |
| 801 | |
| 802 | def _choice_rs(state_data, a, size, replace, p): |
nothing calls this directly
no test coverage detected