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