(state_data, a, size, replace, p)
| 798 | |
| 799 | |
| 800 | def _choice_rs(state_data, a, size, replace, p): |
| 801 | state = array_creation_dispatch.RandomState(state_data) |
| 802 | return state.choice(a, size=size, replace=replace, p=p) |
| 803 | |
| 804 | |
| 805 | def _choice_validate_params(state, a, size, replace, p, axis, chunks): |
nothing calls this directly
no test coverage detected